~scottydelicious666/brewtarget/brewtarget

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(1,'5.5 gal - All Grain - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,1,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(2,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,1,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(3,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,23.658823625,100.0,'',2.839058838,100.0,1.085,0,1,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(4,'5.5 gal - Extract (half boil) - Ideal',13.248941233,20.81976479,37.8541178,0.0,0.0,10.409882395,0.0,13.636363650773,60.0,'true',0.0,13.24894123,100.0,'',2.839058838,100.0,1.08490256801065,0,1,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(5,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(6,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(7,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(8,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(9,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(10,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(11,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(12,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(13,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(14,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(15,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(16,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(17,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(18,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(19,'5.5 gal - All Grain - 10 gal Igloo Cooler',25.55152952,20.81976479,37.8541178,4.08233133,0.3,0.0,1.892705892,13.636363650773,60.0,'true',0.0,0.0,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(20,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.05759444206,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(21,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.97810079468,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(22,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.87210926484,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(23,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.45506267896,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(24,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.00081326536,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(25,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.22793797216,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(26,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.69419491118,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(27,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.01595491248,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(28,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.4254306748,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(29,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.94403208866,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(30,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.49735349862,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(31,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,22.51562926744,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(32,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,21.30051208606,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "equipment" (id,name,boil_size,batch_size,tun_volume,tun_weight,tun_specific_heat,top_up_water,trub_chiller_loss,evap_rate,boil_time,calc_boil_volume,lauter_deadspace,top_up_kettle,hop_utilization,notes,real_evap_rate,boiling_point,absorption,deleted,display,folder) VALUES(33,'5.5 gal - Extract - Ideal',23.658823628,20.81976479,37.8541178,0.0,0.0,0.0,0.0,13.636363650773,60.0,'true',0.0,18.67722172252,100.0,'',2.839058838,100.0,1.085,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(1,'Acid Malt','Grain',0.0,58.7,3.0,'false','Germany','','',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(2,'Amber Malt','Grain',0.0,75.0,22.0,'false','United Kingdom','','',0.0,0.0,0.0,0.0,20.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(3,'Aromatic Malt','Grain',0.0,78.0,26.0,'false','Belgium','','Used at rates of up to 10%, Aromatic malt will lend a distinct, almost exaggerated malt aroma and flavor to the finished Ales and Lagers. Aromatic malt also has a rich color and is high in diastatic power for aid in starch conversion. D/C Aromatic malt. As the name suggests, adds aromatics to a beer.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(4,'Barley Hulls','Adjunct',0.0,0.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(5,'Barley, Flaked','Grain',0.0,70.0,2.0,'false','US','','Adds proteins to promote hean retention and mouth feel. Commonly used Dry Stouts.',0.0,0.0,0.0,0.0,20.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(6,'Barley, Raw','Grain',0.0,60.9,2.0,'false','US','','',0.0,0.0,0.0,0.0,15.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(7,'Barley, Torrefied','Grain',0.0,79.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(8,'Biscuit Malt','Grain',0.0,79.0,23.0,'false','Belgium','','Biscuit is a unique malt thats lightly roasted, lending the subtle properties of black and chocolate malts. Used at the rate of 3 to 15 %, it is designed to improve the bread and biscuits, or toasted flavor and aroma characteristics to Lagers and Ales.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(9,'Black (Patent) Malt','Grain',0.0,55.0,500.0,'false','US','','The darkest of all malts, use sparingly to add deep color and roast-charcoal flavor. Use no more than 1 to 3%. Best used in trace amounts only, for color. Almost any contribution that Black Patent gives to beer can be obtained from using another malt with less harsh flavor impacts.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(10,'Black Barley (Roast Barley)','Grain',0.0,55.0,500.0,'false','US','','Use 10 to 12% to impart a distinct, roasted flavor to Stouts. Other dark beers also benefit from smaller quantities (2 - 6%).',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(11,'Briess - 2 Row Brewers Malt','Grain',0.0,80.5,1.8,'false','US','Briess','DP 140. Base malt for all beer styles.
Contributes light straw color.
Slightly higher yield than 6-Row Malt.
Slightly lower protein than 6-Row Malt.
Malted in small batches, making it an excellent fit for small batch craft brewing.',1.0,4.2,140.0,11.5,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(12,'Briess - 2 Row Carapils Malt','Grain',0.0,75.0,1.5,'false','US','Briess','Use up to 5% for increased foam, improved head retention and enhanced mouthfeel in any beer style.',1.0,6.5,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(13,'Briess - 6 Row Brewers Malt','Grain',0.0,78.0,1.8,'false','US','Briess','DP 180. Base malt for all beer styles. Contributes light straw color. More husk than 2-Row Malt. Higher enzymes than 2-Row malt. Well suited for high adjunct brewing.',1.5,4.7,180.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(14,'Briess - Aromatic Malt','Grain',0.0,77.0,20.0,'false','US','Briess','DP 20. Deep golden with orange hues.',1.0,2.5,20.0,11.7,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(15,'Briess - Ashburne Mild Malt','Grain',0.0,79.0,5.3,'false','US','Briess','DP 65. 2-Row specialty base malt.
Use as a base malt or high percentage specialty malt.
Typically used in Mild Ale, Brown Ale, Belgian Ale and Barley Wine.
Slightly darker with a higher dextrin level than Pale Ale Malt.
Will lend a higher residual maltiness/ mouthfeel.',2.0,3.5,65.0,11.7,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(16,'Briess - Black Barley','Grain',0.0,55.0,500.0,'false','US','Briess','Contributes color and rich, sharp flavor characteristic of Stouts and some Porters. Impacts foam color.',1.0,6.0,0.0,0.0,7.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(17,'Briess - Black Malt','Grain',0.0,55.0,500.0,'false','US','Briess','Color adjustment for all beer styles. Use with other roasted malts for mild flavored dark beers. Has little impact on foam color.',1.0,6.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(18,'Briess - Black Malted Barley Flour','Grain',0.0,55.0,500.0,'false','US','Briess','Color adjustment for all beer styles.',1.0,6.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(19,'Briess - Blackprinz Malt','Grain',0.0,78.0,500.0,'false','US','Briess','Bitterless black malt that can be used in any recipe calling for debittered black malt. Blackprinz® Malt delivers colors plus more roasted flavor than Midnight Wheat Malt.',1.0,6.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(20,'Briess - Bonlander Munich Malt','Grain',0.0,78.0,10.0,'false','US','Briess','DP 40. Golden leaning toward orange hues.',2.0,3.3,40.0,11.7,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(21,'Briess - Carabrown Malt','Grain',0.0,79.0,55.0,'false','US','Briess','Begins slightly sweet.
Delivers an array of toasted flavors.
Smooth and clean with a slightly dry finish.
Light brown/orange color contributions. ',1.0,2.2,0.0,0.0,25.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(22,'Briess - Caracrystal Wheat Malt','Grain',0.0,78.0,55.0,'false','US','Briess','Sweet, smooth, malty, bready, subtle caramel, dark toast.
Exceptionally clean finish.
Orange to mahogany color.',1.0,4.0,0.0,0.0,25.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(23,'Briess - Carapils Malt','Grain',0.0,74.0,1.3,'false','US','Briess','Use up to 5% for increased foam, improved head retention and enhanced mouthfeel in any beer style.',1.0,6.5,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(24,'Briess - Chocolate Malt','Grain',0.0,60.0,350.0,'false','US','Briess','Use in all beer styles for color adjustment. Use 1-10% for desired color in Porter and Stout. The rich roasted coffee, cocoa flavor is very complementary when used in higher percentages in Porters, Stouts, Brown Ales, and other dark beers.',1.0,6.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(25,'Briess - Dark Chocolate Malt','Grain',0.0,60.0,420.0,'false','US','Briess','2-Row. The chocolate flavor is very complementary when used in higher percentages in Porter, Stout, Brown Ale, Dunkels and other dark beers. Use in all styles for color. Contributes brown hues.',1.0,5.5,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(26,'Briess - Extra Special Malt','Grain',0.0,73.0,130.0,'false','US','Briess','Complex flavored 2-Row Biscuit-style Malt. This hybrid drum roasted malt has an array of both caramel and dry roasted flavors. Use to develop flavors associated with darker, high gravity beers like Doppelbock. Equally well suited for mid to dark Belgian style ales. Adds complexity to Abbey styles and darker styles like dry Irish Stouts and Porters. Contributes dark reed to deep copper colors. At higher usage it contributes lighter brown hues.',1.0,2.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(27,'Briess - Midnight Wheat Malt','Grain',0.0,55.0,550.0,'false','US','Briess','Bitterless black malt that can be used in any recipe calling for debittered black malt. Midnight Wheat Malt is the smoothest source of black color of any malt available.',1.0,6.5,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(28,'Briess - Munich Malt 10L','Grain',0.0,77.0,10.0,'false','US','Briess','DP 40. Golden leaning toward orange hues.',1.0,3.3,40.0,12.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(29,'Briess - Munich Malt 20L','Grain',0.0,74.0,20.0,'false','US','Briess','DP 20. Deep golden with orange hues.',1.0,2.7,20.0,12.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(30,'Briess - Pale Ale Malt','Grain',0.0,80.0,3.5,'false','US','Briess','DP 85. Use as a rich malty 2-Row base malt. Contributes golden color.  A fully modified, high extract, low protein malt.
Not just a darker 2-Row Base Malt. Its very unique recipe results in the development of a very unique flavor.  Sufficient enzymes to suport the inclusion of event the most demanding specialty malts without extending the brewing cycle.',1.5,4.0,85.0,11.7,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(31,'Briess - Pilsen Malt','Grain',0.0,80.5,1.2,'false','US','Briess','DP 140. Lightest colored base malt available. Produces very light colored, clean, crisp wort.
Use as 2-Row base malt for all beer styles.  Excellent choice for lagers. Allows the full flavor of specialty malts to shine through.
',2.5,4.5,140.0,11.3,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(32,'Briess - Roasted Barley','Grain',0.0,55.0,300.0,'false','US','Briess','Contributes color and rich, sharp flavor characteristic of Stouts and some Porters. Impacts foam color.',1.0,5.0,0.0,0.0,7.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(33,'Briess - Rye Malt','Grain',0.0,80.0,3.7,'false','US','Briess','DP 105. Rye Malt isn''t just for rye beer styles. Although brewing a traditional rye beer is exceptionally rewarding, try adding Rye Malt to light- and medium-colored and flavored beers for complexity. Or fire up your new distillery and use it to make a single malt whiskey.',1.0,4.5,105.0,10.5,35.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(34,'Briess - Smoked Malt','Grain',0.0,80.5,5.0,'false','US','Briess','DP 140. Briess Smoked Malt is produced using cherry wood. The result is a very smooth, smoky flavored, enzyme-active kilned malt.',1.0,6.0,140.0,12.0,60.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(35,'Briess - Special Roast Malt','Grain',0.0,72.0,40.0,'false','US','Briess','Complex flavored Biscuit-style Malt. With its characteristic and bold sourdough flavor, it will contribute an exciting layer of flavor to Nut Brown Ales, Porters and other dark beer styles. ',1.0,2.5,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(36,'Briess - Victory Malt','Grain',0.0,75.0,28.0,'false','US','Briess','Biscuit Malt. Well suited for Nut Brown Ales & other dark beers. Its clean flavor makes it equally well suited for ales and lagers alike. Use in small amounts to add complexity to lighter colored ales and lagers.',1.0,2.5,0.0,0.0,25.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(37,'Briess - Vienna Malt','Grain',0.0,77.5,3.5,'false','US','Briess','DP 130. Use as a base malt or high percentage specialty malt.
Contributes hues learning toward golden/light orange.
Typically used in Vienna, Oktoberfest, Marzen, Alt and all dark lagers.',1.0,3.8,130.0,12.0,90.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(38,'Briess - Wheat Malt, Red','Grain',0.0,81.0,2.3,'false','US','Briess','DP 180.
Use as part or all of base malt in wheat beers.
Runs efficiently through the brewhouse with slightly higher protein than White Wheat Malt.
Often used in Hefeweizen and other traditional wheat styles due to a distinctive, characteristic wheat flour flavor. 
Improves head and foam retention in any beer style.',2.0,4.0,180.0,13.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(39,'Briess - Wheat Malt, White','Grain',0.0,85.0,2.5,'false','US','Briess','DP 160. Use as part or all of base malt in wheat beers. Improves head and foam retention in any beer style.',1.0,4.0,160.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(40,'Briess DME - Bavarian Wheat','Dry Extract',0.0,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(41,'Briess DME - Golden Light','Dry Extract',0.0,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(42,'Briess DME - Maltoferm A-6001 (Black Malt Extract)','Dry Extract',0.0,95.0,500.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(43,'Briess DME - Pilsen Light','Dry Extract',0.0,95.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(44,'Briess DME - Sparkling Amber','Dry Extract',0.0,95.0,10.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(45,'Briess DME - Traditional Dark','Dry Extract',0.0,95.0,30.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(46,'Briess LME - Golden Light','Extract',0.0,78.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(47,'Briess LME - Maltoferm A-6000 (Black Malt Extract)','Extract',0.0,78.0,500.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(48,'Briess LME - Munich','Extract',0.0,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(49,'Briess LME - Pilsen Light','Extract',0.0,78.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(50,'Briess LME - Sparkling Amber','Extract',0.0,78.0,10.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(51,'Briess LME - Sweet Brown Rice Syrup','Extract',0.0,75.0,2.0,'false','US','','Gluten free',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(52,'Briess LME - Traditional Dark','Extract',0.0,78.0,30.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(53,'Briess LME - White Sorghum Syrup','Extract',0.0,75.0,3.0,'false','US','','Gluten free',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(54,'Brown Malt (British Chocolate)','Grain',0.0,70.0,65.0,'false','United Kingdom','','Ideal for British Porters and Brown or Mild Ales and even Stouts. It''s a little darker than domestic Chocolate malt yet it has a slightly smoother character in the roast flavor and aroma profiles.',0.0,0.0,0.0,0.0,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(55,'Brown Sugar, Dark','Sugar',0.0,100.0,50.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(56,'Brown Sugar, Light','Sugar',0.0,100.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(57,'Brumalt','Grain',0.0,71.7,23.0,'false','Germany','','Dark German malt developed to add malt flavor of Alt, Marzen and Oktoberfest beers. Helps create authentic maltiness without having to do a decoction mash. Rarely available for homebrewers.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(58,'Candi Sugar, Amber','Sugar',0.0,78.3,75.0,'false','Belgium','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(59,'Candi Sugar, Clear','Sugar',0.0,78.3,1.0,'false','Belgium','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(60,'Candi Sugar, Dark','Sugar',0.0,78.3,275.0,'false','Belgium','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(61,'Cane (Beet) Sugar','Sugar',0.0,100.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,7.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(62,'Cara-Pils/Dextrine','Grain',0.0,72.0,2.0,'false','US','','Dextrins lend body, mouth feel and palate fullness to beers, as well as foam stability. Carapils must be mashed with pale malt, due to its lack of enzymes. Use 5 to 20% for these properties without adding color.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(63,'Caraamber','Grain',0.0,75.0,30.0,'false','US','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(64,'Carafa','Grain',0.0,70.0,337.0,'false','Germany','','',1.5,4.0,0.0,11.7,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(65,'Carafa II','Grain',0.0,70.0,412.0,'false','Germany','','',1.5,4.0,0.0,11.7,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(66,'Carafa III','Grain',0.0,70.0,525.0,'false','Germany','','',1.5,4.0,0.0,11.7,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(67,'Carafoam','Grain',0.0,72.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(68,'Caramel/Crystal Malt - 10L','Grain',0.0,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(69,'Caramel/Crystal Malt - 120L','Grain',0.0,72.0,120.0,'false','US','','Dark Crystal will lend a complex sharp caramel flavor and aroma to beers. Used in smaller quantities this malt will add color and slight sweetness to beers, while heavier concentrations are well suited to strong beers.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(70,'Caramel/Crystal Malt - 20L','Grain',0.0,75.0,20.0,'false','US','','This Crystal malt will provide a golden color and a sweet, mild caramel flavor.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(71,'Caramel/Crystal Malt - 30L','Grain',0.0,75.0,30.0,'false','US','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(72,'Caramel/Crystal Malt - 40L','Grain',0.0,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(73,'Caramel/Crystal Malt - 60L','Grain',0.0,74.0,60.0,'false','US','','This Medium Crystal malt will lend a well rounded caramel flavor, color and sweetness. This Crystal malt is a good choice if you''re not sure which variety to use.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(74,'Caramel/Crystal Malt - 80L','Grain',0.0,74.0,80.0,'false','US','','This Crystal malt will lend a well a pronounced caramel flavor, color and sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(75,'Caramunich Malt','Grain',0.0,71.7,56.0,'false','Belgium','','Use Caramunich for a deeper color, caramelized sugars and contribute a rich malt aroma.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(76,'Carared','Grain',0.0,75.0,20.0,'false','US','','',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(77,'Caravienne Malt','Grain',0.0,73.9,22.0,'false','Belgium','','Impart a rich, caramel-sweet aroma and promotes a fuller flavor. Excellent all purpose caramel malt that can be used in high percentages (up to 15%) without leaving the beer too caramel/sweet.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(78,'Carawheat (GR)','Grain',0.0,68.0,40.0,'false','','','',0.0,6.5,0.0,0.0,0.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(79,'Chocolate Malt (UK)','Grain',0.0,73.0,450.0,'false','United Kingdom','','Ideal for British Porters and Brown or Mild Ales and even Stouts. It''s a little darker than US Chocolate malt yet it has a slightly smoother character in the roast flavor and aroma profiles.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(80,'Chocolate Malt (US)','Grain',0.0,60.0,350.0,'false','US','','Being the least roasted of the black malts, Chocolate malt will add a dark color and pleasant roast flavor. Small quantities lend a nutty flavor and deep, ruby red color while higher amounts lend a black color and smooth, roasted flavor. Use 3 to 12%.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(81,'Coopers LME - Amber','Extract',0.0,78.0,16.4,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(82,'Coopers LME - Dark','Extract',0.0,78.0,65.9,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(83,'Coopers LME - Light','Extract',0.0,78.0,3.4,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(84,'Coopers LME - Wheat','Extract',0.0,78.0,4.5,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(85,'Corn Sugar (Dextrose)','Sugar',0.0,100.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(86,'Corn Syrup','Sugar',0.0,78.3,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(87,'Corn, Flaked','Grain',0.0,80.0,1.0,'false','US','','The most common adjunct in American Lagers and Cream ales. Lightens both color and body.',0.0,0.0,0.0,0.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(88,'Dark Liquid Extract','Extract',0.0,78.0,18.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(89,'Dememera Sugar','Sugar',0.0,100.0,2.0,'false','United Kingdom','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(90,'Dry Extract (DME) - Amber','Dry Extract',0.0,95.0,13.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(91,'Dry Extract (DME) - Dark','Dry Extract',0.0,95.0,18.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(92,'Dry Extract (DME) - Extra Light','Dry Extract',0.0,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(93,'Dry Extract (DME) - Light','Dry Extract',0.0,95.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(94,'Dry Extract (DME) - Wheat','Dry Extract',0.0,95.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(95,'Grits','Adjunct',0.0,80.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(96,'Honey','Extract',0.0,75.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(97,'Honey Malt','Grain',0.0,80.0,25.0,'false','Canada','','This Canadian malt imparts a honey-like flavor. It also also sometimes called Brumalt. 
Intensely sweet - adds a sweet malty flavor sometimes associated with honey. ',2.0,3.8,0.0,10.5,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(98,'Invert Sugar','Sugar',0.0,100.0,0.0,'false','United Kingdom','','Sucrose (table sugar) that has been inverted with heat and acid to form a mixture of fructose and glucose.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(99,'Liquid Extract (LME) - Amber','Extract',0.0,78.0,13.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(100,'Liquid Extract (LME) - Pale','Extract',0.0,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(101,'Liquid Extract (LME) - Pilsner','Extract',0.0,78.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(102,'Liquid Extract (LME) - Wheat','Extract',0.0,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(103,'Maple Syrup','Sugar',0.0,65.2,35.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(104,'Melanoiden Malt','Grain',0.0,80.0,20.0,'false','Germany','','',0.0,0.0,0.0,0.0,15.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(105,'Mild Malt','Grain',0.0,80.0,4.0,'false','United Kingdom','','',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(106,'Milk Sugar (Lactose)','Sugar',0.0,76.1,0.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(107,'Molasses','Sugar',0.0,78.3,80.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(108,'Munich Malt','Grain',0.0,80.0,9.0,'false','Germany','','Although kilned, Munich still retains sufficient enzymes for 100% of the grain bill, or it can be used at a percentage of the total malt content for its full, malty flavor and aroma.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(109,'Munich Malt - 10L','Grain',0.0,77.0,10.0,'false','US','','Although kilned, Munich still retains sufficient enzymes for 100% of the grain bill, or it can be used at a percentage of the total malt content for its full, malty flavor and aroma.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(110,'Munich Malt - 20L','Grain',0.0,75.0,20.0,'false','US','','A little darker than German Munich malt and adds a deeper color and fuller malt profile. Great for Dark and amber lagers, blend Munich with German Pils or Domestic 2 Row at the rate of 10 to 60% of the total grain bill.',0.0,0.0,0.0,0.0,80.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(111,'Muntons DME - Amber','Dry Extract',0.0,95.0,13.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(112,'Muntons DME - Dark','Dry Extract',0.0,95.0,22.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(113,'Muntons DME - Extra Dark','Dry Extract',0.0,95.0,38.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(114,'Muntons DME - Extra Light','Dry Extract',0.0,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(115,'Muntons DME - Light','Dry Extract',0.0,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(116,'Muntons DME - Wheat','Dry Extract',0.0,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(117,'Muntons LME - Amber','Extract',0.0,78.0,7.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(118,'Muntons LME - Dark','Extract',0.0,78.0,2.1,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(119,'Muntons LME - Extra Light','Extract',0.0,78.0,2.8,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(120,'Muntons LME - Light','Extract',0.0,78.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(121,'Muntons LME - Wheat','Extract',0.0,78.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(122,'Oats, Flaked','Grain',0.0,80.0,1.0,'false','US','','Oats will improve mouth feel and add a creamy head. Commonly used in Oatmeal Stout.',0.0,0.0,0.0,0.0,30.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(123,'Oats, Malted','Grain',0.0,80.0,1.0,'false','US','','Use to make wheat and weizen beers at 40-60% for wheat and 35-65% for Bavarian weizens. Small amounts at about 3-6 % aid in head retention to any beer without altering final flavor. Use with a highly modified malt to insure diastatic enzymes. Protein rest highly recommended due to very high protein content.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(124,'Pale Malt (2 Row) Bel','Grain',0.0,80.0,3.0,'false','Belgium','','',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(125,'Pale Malt (2 Row) UK','Grain',0.0,78.0,3.0,'false','United Kingdom','','Fully modified British malt, easily converted by a single temperature mash. Preferred by many brewers for authentic English ales. This malt has undergone higher kilning than Domestic 2 Row and is lower in diastatic power so keep adjuncts at a lower percentage.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(126,'Pale Malt (2 Row) US','Grain',0.0,79.0,2.0,'false','US','','A variety of malt that forms two seed rows along the stem on the grain head. Well modified with a high diastatic power allows mashing with up to 35% grain adjuncts. Because it is fairly neutral 2-Row makes an excellent base malt and is known as the "workhorse" of many recipes. Greater starch per weight ratio than 6-Row. Protein rest recommended to avoid chill-haze. Also know as Klages.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(127,'Pale Malt (6 Row) US','Grain',0.0,76.0,2.0,'false','US','','This malt variety forms six distinct seed rows on the grain head. Very high diastatic power allows mashing with up to 60% grain adjuncts, great if added diastatic strength is needed in a recipe. 6-Row also has greater husks per weight ratio than 2-Row. Protein rest recommended to avoid chill-haze.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(128,'Peat Smoked Malt','Grain',0.0,74.0,3.0,'false','United Kingdom','','Smoked over peat moss for a soft sweet, earty smoked character. Imparts a soft peaty smoke flavor for strong Scottish ales.',0.0,0.0,0.0,0.0,20.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(129,'Pilsner (2 Row) Bel','Grain',0.0,79.0,2.0,'false','Belgium','','This is an excellent base malt for many styles, including full flavored Lagers, Belgian Ales and Belgian Wheat beers.',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(130,'Pilsner (2 Row) Ger','Grain',0.0,81.0,2.0,'false','Germany','','',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(131,'Pilsner (2 Row) UK','Grain',0.0,78.0,1.0,'false','United Kingdom','','',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(132,'Rahr - 2 Row Malt','Grain',0.0,80.0,2.0,'false','US','','',1.0,4.0,120.0,11.5,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(133,'Rahr - 6 Row Malt','Grain',0.0,79.0,25.0,'false','US','','',1.0,4.2,140.0,15.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(134,'Rahr - Pale Ale Malt','Grain',0.0,79.0,40.0,'false','US','','',1.0,4.5,120.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(135,'Rahr - Premium Pilsner Malt','Grain',0.0,80.0,2.0,'false','US','','',1.0,4.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(136,'Rahr - Red Wheat Malt','Grain',0.0,85.0,45.0,'false','US','','',1.0,4.5,0.0,12.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(137,'Rahr - White Wheat Malt','Grain',0.0,85.0,45.0,'false','US','','',1.0,4.5,0.0,12.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(138,'Rauch Malt (Germany)','Grain',0.0,81.0,2.0,'false','Germany','','German malt is smoked over a beechwood fire for a drier, sharper, obvious more wood-smoked flavor. Imparts a distinct smoked character for German Rauch beers.',0.0,0.0,0.0,10.0,100.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(139,'Rice Extract Syrup','Extract',0.0,69.6,7.0,'false','US','','',0.0,0.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(140,'Rice Hulls','Adjunct',0.0,0.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(141,'Rice, Flaked','Grain',0.0,70.0,1.0,'false','US','','Another popular adjunct in American Lagers. Lightens both color and body.',0.0,0.0,0.0,0.0,25.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(142,'Roasted Barley','Grain',0.0,55.0,300.0,'false','US','','Use 10 to 12% to impart a distinct, roasted flavor to Stouts. Other dark beers also benefit from smaller quantities (2 - 6%).',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(143,'Rye Malt','Grain',0.0,63.0,5.0,'false','US','','Imparts a distinct sharp flavor.',0.0,0.0,0.0,0.0,15.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(144,'Rye, Flaked','Grain',0.0,78.3,2.0,'false','US','','Imparts a distinct sharp flavor.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(145,'Simpsons - Aromatic Malt','Grain',0.0,82.5,25.0,'false','UK','','',1.0,5.0,0.0,12.0,5.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(146,'Simpsons - Black Malt','Grain',0.0,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(147,'Simpsons - Caramalt','Grain',0.0,76.0,35.0,'false','UK','','',1.0,5.0,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(148,'Simpsons - Caramalt Light','Grain',0.0,76.0,13.0,'false','UK','','',1.0,6.9,0.0,12.0,30.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(149,'Simpsons - Chocolate Malt','Grain',0.0,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(150,'Simpsons - Coffee Malt','Grain',0.0,74.0,150.0,'false','UK','','',1.0,3.5,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(151,'Simpsons - Crystal Dark','Grain',0.0,74.0,80.0,'false','UK','','',1.0,5.3,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(152,'Simpsons - Crystal Extra Dark','Grain',0.0,74.0,160.0,'false','UK','','',1.0,5.0,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(153,'Simpsons - Crystal Medium','Grain',0.0,74.0,55.0,'false','UK','','',1.0,4.7,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(154,'Simpsons - Crystal Rye','Grain',0.0,73.0,90.0,'false','UK','','',1.0,3.1,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(155,'Simpsons - Golden Naked Oats','Grain',0.0,73.0,10.0,'false','UK','','',1.0,4.5,0.0,12.0,15.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(156,'Simpsons - Golden Promise','Grain',0.0,81.0,2.0,'false','UK','','',1.0,3.5,120.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(157,'Simpsons - Maris Otter','Grain',0.0,81.0,3.0,'false','UK','','',1.0,3.0,120.0,10.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(158,'Simpsons - Peated Malt','Grain',0.0,81.0,2.5,'false','UK','','Phenol level 12-24',1.0,4.6,120.0,12.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(159,'Simpsons - Roasted Barley','Grain',0.0,70.0,550.0,'false','UK','','',1.0,1.9,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(160,'Smoked Malt','Grain',0.0,80.0,9.0,'false','Germany','','',0.0,0.0,0.0,0.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(161,'Special B Malt','Grain',0.0,65.2,160.0,'false','Belgium','','Special B refers to a type of dark, flavorful crystal malt traditionally malted in Belgium. In small amounts, it gives a unique flavor to the finished beer that is often compared to raisins or dried fruit. This malt is always dark, but the color and flavor vary more than most other malt styles; most of the commonly available varieties are in the 110-160 L range, but it may be even darker. Don''t depend on this software to calculate the color of your beer correctly, since it may be expecting a much darker malt than you are actually using; some older sources assume Special B will be over 200 or even up to 300 L. While some sources still claim that Special B must be mashed, it is a crystal malt and can be steeped with an extract batch without adding significant protein to the beer.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(162,'Special Roast','Grain',0.0,72.0,50.0,'false','US','Briess','Special Roast Malt is a specially processed malt from the American maltster, Briess. It is kilned using 6 row barley and it appears to be Victory Malt turned up a notch. Flavor: Toasty, Strong Biscuit, Sour Dough, Tangy. Any non-straw colored beer where roasty, toasty flavors are acceptable is a good candidate for this malt. Porters and Nut Brown Ales could take a good helping of this malt, and smaller amounts (less than 8 ounces) would work in Viennas, Märzens, and Alt beers.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(163,'Sugar, Table (Sucrose)','Sugar',0.0,100.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(164,'Toasted Malt','Grain',0.0,71.7,27.0,'false','United Kingdom','','Adds reddish hue without sweetness associated with caramelized malts.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(165,'Turbinado','Sugar',0.0,95.7,10.0,'false','United Kingdom','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(166,'Victory Malt','Grain',0.0,73.0,25.0,'false','US','','Imparts a toasty/nutty/biscuit/bread flavor, and adds head retention. Use in nut browns and other darker beers.',0.0,0.0,0.0,0.0,15.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(167,'Vienna Malt','Grain',0.0,78.0,4.0,'false','Germany','','Vienna Malt is a kiln-dried barley malt darker than pale ale malt, but not as dark as Munich Malt. It imparts a golden to orange color and a distinctive toast or biscuit malt aroma to the beer. Vienna malt traditionally makes up up to 100% of the grist of Vienna Lager and the bulk of the related Märzen style. Other beer styles sometimes use Vienna malt to add malty complexity and light toasty notes to lighter base malts, or to lighten the grist of a beer brewed with mostly Munich malt. Examples include Baltic Porter, Dunkelweizen, and most styles of Bock.',0.0,0.0,0.0,0.0,90.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(168,'Weyermann - Acidulated Malt','Grain',0.0,80.0,3.2,'false','Germany','','',1.0,7.0,120.0,12.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(169,'Weyermann - Bohemian Pilsner Malt','Grain',0.0,81.0,2.1,'false','Germany','','',1.0,5.0,120.0,10.8,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(170,'Weyermann - Carafa I','Grain',0.0,70.0,350.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(171,'Weyermann - Carafa II','Grain',0.0,70.0,425.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(172,'Weyermann - Carafa III','Grain',0.0,70.0,520.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(173,'Weyermann - Carafoam','Grain',0.0,81.0,2.4,'false','Germany','','',1.0,6.5,0.0,12.0,40.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(174,'Weyermann - Carawheat','Grain',0.0,77.0,49.0,'false','Germany','','',1.0,4.0,0.0,12.0,15.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(175,'Weyermann - Chocolate Rye','Grain',0.0,20.0,250.0,'false','Germany','','',1.0,4.0,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(176,'Weyermann - Chocolate Wheat','Grain',0.0,74.0,400.0,'false','Germany','','',1.0,4.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(177,'Weyermann - Dark Wheat Malt','Grain',0.0,85.0,7.3,'false','Germany','','',1.0,5.0,60.0,12.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(178,'Weyermann - Dehusked Carafa I','Grain',0.0,70.0,350.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(179,'Weyermann - Dehusked Carafa II','Grain',0.0,70.0,425.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(180,'Weyermann - Dehusked Carafa III','Grain',0.0,70.0,520.0,'false','Germany','','',1.0,3.5,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(181,'Weyermann - Light Munich Malt','Grain',0.0,82.0,6.9,'false','Germany','','',1.0,4.5,60.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(182,'Weyermann - Melanoiden Malt','Grain',0.0,81.0,27.0,'false','Germany','','',1.0,4.5,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(183,'Weyermann - Pale Ale Malt','Grain',0.0,85.0,3.4,'false','Germany','','',1.0,5.0,120.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(184,'Weyermann - Pale Wheat Malt','Grain',0.0,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(185,'Weyermann - Pilsner Malt','Grain',0.0,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(186,'Weyermann - Rye Malt','Grain',0.0,85.0,3.6,'false','Germany','','',1.0,5.0,120.0,11.0,50.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(187,'Weyermann - Smoked Malt','Grain',0.0,81.0,2.8,'false','Germany','','',1.0,5.0,120.0,11.5,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(188,'Weyermann - Vienna Malt','Grain',0.0,81.0,3.9,'false','Germany','','',1.0,5.0,60.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(189,'Wheat Malt, Bel','Grain',0.0,81.0,2.0,'false','Belgium','','Use in wheat beers.',0.0,0.0,0.0,0.0,60.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(190,'Wheat Malt, Dark','Grain',0.0,84.0,9.0,'false','Germany','','Use in wheat beers.',0.0,0.0,0.0,0.0,20.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(191,'Wheat Malt, Ger','Grain',0.0,84.0,2.0,'false','Germany','','Use in wheat beers.',0.0,0.0,0.0,0.0,60.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(192,'Wheat, Flaked','Grain',0.0,77.0,2.0,'false','US','','Flaked wheat is not malted, therefore requires extra effort to extract it''s potential sugar content, which will be lower than malted wheat. Flaked wheat is traditional in Belgian witbier and lambics, it contains more starch and higher levels of protein than malted wheat. It adds more mouthfeel than malted wheat and has a different taste, which is noticeable when used in larger quantities. If the grain bill consists of more than 25% flaked wheat you should consider a cereal mash, or precooking the wheat in order to gelatinize it so you can extract more sugars out of it. The addion of 6-row can aid conversion since the barley contains a higher percentage of enzymes than 2-row.',0.0,0.0,0.0,0.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(193,'Wheat, Roasted','Grain',0.0,54.3,425.0,'false','Germany','','',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(194,'Wheat, Torrified','Grain',0.0,79.0,2.0,'false','US','','Torrified wheat is unmalted wheat that has been heated very quickly to get the kernel to puff up, kind of like popcorn. Torrified wheat adds a different flavor to the beer and the grain is gelatinized so you don''t have to cook it.',0.0,0.0,0.0,0.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(195,'White Wheat Malt','Grain',0.0,86.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,60.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(196,'Briess - 2 Row Brewers Malt','Grain',4.762719885,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(197,'Caramel/Crystal Malt - 10L','Grain',0.226796185,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(198,'Briess - 2 Row Brewers Malt','Grain',4.08233133,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(199,'Weyermann - Light Munich Malt','Grain',0.5669904625,82.0,6.9,'false','Germany','','',1.0,4.5,60.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(200,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(201,'Briess - Victory Malt','Grain',0.226796185,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(202,'Briess - Chocolate Malt','Grain',0.0566990462,73.0,350.0,'false','US','','',1.0,6.0,0.0,13.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(203,'Simpsons - Maris Otter','Grain',5.216312255,81.0,3.0,'false','UK','','',1.0,3.0,120.0,10.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(204,'Caramel/Crystal Malt - 10L','Grain',0.2267961848,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(205,'Caramel/Crystal Malt - 120L','Grain',0.1133980925,72.0,120.0,'false','US','','Dark Crystal will lend a complex sharp caramel flavor and aroma to beers. Used in smaller quantities this malt will add color and slight sweetness to beers, while heavier concentrations are well suited to strong beers.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(206,'Simpsons - Maris Otter','Grain',2.72155422,81.0,3.0,'false','UK','','',1.0,3.0,120.0,10.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(207,'Briess - Munich Malt 10L','Grain',0.226796185,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(208,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(209,'Caramel/Crystal Malt - 120L','Grain',0.1133980925,72.0,120.0,'false','US','','Dark Crystal will lend a complex sharp caramel flavor and aroma to beers. Used in smaller quantities this malt will add color and slight sweetness to beers, while heavier concentrations are well suited to strong beers.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(210,'Honey Malt','Grain',0.226796185,80.0,25.0,'false','Canada','','This Canadian malt imparts a honey-like flavor. It also also sometimes called Brumalt. 
Intensely sweet - adds a sweet malty flavor sometimes associated with honey. ',2.0,3.8,0.0,10.5,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(211,'Simpsons - Chocolate Malt','Grain',0.0566990462,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(212,'Briess - 2 Row Brewers Malt','Grain',4.5359237,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(213,'Briess - Victory Malt','Grain',0.3401942775,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(214,'Briess - Wheat Malt, White','Grain',0.226796185,86.0,2.6,'false','US','','',0.6,5.0,190.0,11.5,40.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(215,'Caramel/Crystal Malt - 40L','Grain',0.3401942772,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(216,'Briess - Munich Malt 10L','Grain',0.3401942772,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(217,'Simpsons - Maris Otter','Grain',4.08233133,81.0,3.0,'false','UK','','',1.0,3.0,120.0,10.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(218,'Simpsons - Chocolate Malt','Grain',0.1133980924,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(219,'Caramel/Crystal Malt - 40L','Grain',0.2267961848,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(220,'Briess - Victory Malt','Grain',0.2267961848,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(221,'Briess - Special Roast Malt','Grain',0.3401942772,72.0,50.0,'false','US','','',1.0,2.5,0.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(222,'Briess - 2 Row Brewers Malt','Grain',4.762719885,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(223,'Briess - Munich Malt 10L','Grain',0.680388555,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(224,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(225,'Simpsons - Black Malt','Grain',0.226796185,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(226,'Simpsons - Chocolate Malt','Grain',0.3401942772,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(227,'Simpsons - Maris Otter','Grain',3.855535145,81.0,3.0,'false','UK','','',1.0,3.0,120.0,10.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(228,'Simpsons - Chocolate Malt','Grain',0.3401942772,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(229,'Simpsons - Black Malt','Grain',0.2267961848,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(230,'Oats, Flaked','Grain',0.45359237,80.0,1.0,'false','US','','Oats will improve mouth feel and add a creamy head. Commonly used in Oatmeal Stout.',0.0,0.0,0.0,0.0,30.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(231,'Caramel/Crystal Malt - 80L','Grain',0.2267961848,74.0,80.0,'false','US','','This Crystal malt will lend a well a pronounced caramel flavor, color and sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(232,'Briess - Victory Malt','Grain',0.3401942772,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(233,'Briess - 2 Row Brewers Malt','Grain',5.44310844,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(234,'Briess - Munich Malt 10L','Grain',0.3401942772,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(235,'Caramel/Crystal Malt - 10L','Grain',0.45359237,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(236,'Caramel/Crystal Malt - 40L','Grain',0.1133980925,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(237,'Weyermann - Pilsner Malt','Grain',2.3813599425,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(238,'Weyermann - Pale Wheat Malt','Grain',2.3813599425,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(239,'Weyermann - Pilsner Malt','Grain',5.216312255,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(240,'Weyermann - Pale Wheat Malt','Grain',0.3401942772,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(241,'Briess - Munich Malt 10L','Grain',0.3401942772,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(242,'Caramunich Malt','Grain',0.0566990462,71.7,56.0,'false','Belgium','','Use Caramunich for a deeper color, caramelized sugars and contribute a rich malt aroma.',0.0,0.0,0.0,0.0,10.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(243,'Weyermann - Pilsner Malt','Grain',1.81436948,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(244,'Weyermann - Pale Wheat Malt','Grain',1.36077711,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(245,'Weyermann - Pilsner Malt','Grain',4.98951607,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(246,'Weyermann - Pale Wheat Malt','Grain',0.226796185,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(247,'Sugar, Table (Sucrose)','Sugar',0.680388555,100.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(248,'Simpsons - Aromatic Malt','Grain',0.226796185,82.5,25.0,'false','UK','','',1.0,5.0,0.0,12.0,5.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(249,'Briess - 2 Row Carapils Malt','Grain',0.0,73.0,1.5,'false','US','','',1.0,6.5,0.0,13.0,5.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(250,'Briess - Chocolate Malt','Grain',0.0566990462,73.0,350.0,'false','US','','',1.0,6.0,0.0,13.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(251,'Caramel/Crystal Malt - 10L','Grain',0.45359237,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(252,'Caramel/Crystal Malt - 80L','Grain',0.45359237,74.0,80.0,'false','US','','This Crystal malt will lend a well a pronounced caramel flavor, color and sweetness.',0.0,0.0,0.0,0.0,20.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(253,'Special B Malt','Grain',0.1133980924,65.2,160.0,'false','Belgium','','Special B refers to a type of dark, flavorful crystal malt traditionally malted in Belgium. In small amounts, it gives a unique flavor to the finished beer that is often compared to raisins or dried fruit. This malt is always dark, but the color and flavor vary more than most other malt styles; most of the commonly available varieties are in the 110-160 L range, but it may be even darker. Don''t depend on this software to calculate the color of your beer correctly, since it may be expecting a much darker malt than you are actually using; some older sources assume Special B will be over 200 or even up to 300 L. While some sources still claim that Special B must be mashed, it is a crystal malt and can be steeped with an extract batch without adding significant protein to the beer.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(254,'Briess - 2 Row Brewers Malt','Grain',9.97903214,80.5,2.0,'false','US','','',1.0,4.0,140.0,12.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(255,'Corn Sugar (Dextrose)','Sugar',0.45359237,100.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(256,'Rauch Malt (Germany)','Grain',2.26796185,81.0,3.0,'false','Germany','','German malt is smoked over a beechwood fire for a drier, sharper, obvious more wood-smoked flavor. Imparts a distinct smoked character for German Rauch beers.',0.0,0.0,0.0,10.0,100.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(257,'Weyermann - Pilsner Malt','Grain',2.494758035,81.0,2.4,'false','Germany','','',1.0,5.0,120.0,11.0,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(258,'Weyermann - Pale Wheat Malt','Grain',0.0,85.0,2.4,'false','Germany','','',1.0,5.0,60.0,12.0,80.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(259,'Briess - Munich Malt 10L','Grain',0.3401942772,76.0,10.0,'false','US','','',1.0,3.3,30.0,13.0,50.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(260,'Caramunich Malt','Grain',0.3401942772,71.7,56.0,'false','Belgium','','Use Caramunich for a deeper color, caramelized sugars and contribute a rich malt aroma.',0.0,0.0,0.0,0.0,10.0,'false','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(261,'Simpsons - Black Malt','Grain',0.0566990462,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(262,'Weyermann - Melanoiden Malt','Grain',0.1133980924,81.0,27.0,'false','Germany','','',1.0,4.5,0.0,12.0,20.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(263,'Weyermann - Smoked Malt','Grain',2.26796185,81.0,2.8,'false','Germany','','',1.0,5.0,120.0,11.5,100.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(264,'Briess DME - Golden Light','Dry Extract',2.540117272,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(265,'Caramel/Crystal Malt - 10L','Grain',0.2267961848,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(266,'Briess DME - Golden Light','Dry Extract',2.1545637575,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(267,'Briess LME - Munich','Extract',0.45359237,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(268,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(269,'Briess - Victory Malt','Grain',0.2267961848,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(270,'Briess - Chocolate Malt','Grain',0.0566990462,73.0,350.0,'false','US','','',1.0,6.0,0.0,13.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(271,'Muntons DME - Light','Dry Extract',2.8349523125,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(272,'Caramel/Crystal Malt - 10L','Grain',0.2267961848,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(273,'Caramel/Crystal Malt - 120L','Grain',0.1133980924,72.0,120.0,'false','US','','Dark Crystal will lend a complex sharp caramel flavor and aroma to beers. Used in smaller quantities this malt will add color and slight sweetness to beers, while heavier concentrations are well suited to strong beers.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(274,'Muntons DME - Light','Dry Extract',1.81436948,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(275,'Briess LME - Munich','Extract',0.0850485693,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(276,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(277,'Caramel/Crystal Malt - 120L','Grain',0.1133980924,72.0,120.0,'false','US','','Dark Crystal will lend a complex sharp caramel flavor and aroma to beers. Used in smaller quantities this malt will add color and slight sweetness to beers, while heavier concentrations are well suited to strong beers.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(278,'Briess - Chocolate Malt','Grain',0.0,73.0,350.0,'false','US','','',1.0,6.0,0.0,13.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(279,'Simpsons - Chocolate Malt','Grain',0.0850485693,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(280,'Honey Malt','Grain',0.226796185,80.0,25.0,'false','Canada','','This Canadian malt imparts a honey-like flavor. It also also sometimes called Brumalt. 
Intensely sweet - adds a sweet malty flavor sometimes associated with honey. ',2.0,3.8,0.0,10.5,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(281,'Briess DME - Golden Light','Dry Extract',2.26796185,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(282,'Briess LME - Munich','Extract',0.1700971386,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(283,'Briess DME - Bavarian Wheat','Dry Extract',0.1700971386,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(284,'Briess - Victory Malt','Grain',0.3401942775,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(285,'Briess - Victory Malt','Grain',0.226796185,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(286,'Caramel/Crystal Malt - 40L','Grain',0.226796185,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(287,'Simpsons - Chocolate Malt','Grain',0.1133980925,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(288,'Special Roast','Grain',0.3401942775,72.0,50.0,'false','US','Briess','Special Roast Malt is a specially processed malt from the American maltster, Briess. It is kilned using 6 row barley and it appears to be Victory Malt turned up a notch. Flavor: Toasty, Strong Biscuit, Sour Dough, Tangy. Any non-straw colored beer where roasty, toasty flavors are acceptable is a good candidate for this malt. Porters and Nut Brown Ales could take a good helping of this malt, and smaller amounts (less than 8 ounces) would work in Viennas, Märzens, and Alt beers.',0.0,0.0,0.0,0.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(289,'Muntons DME - Light','Dry Extract',2.26796185,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(290,'Caramel/Crystal Malt - 40L','Grain',0.45359237,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(291,'Simpsons - Chocolate Malt','Grain',0.3401942775,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(292,'Simpsons - Black Malt','Grain',0.226796185,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(293,'Briess LME - Munich','Extract',0.45359237,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(294,'Briess DME - Golden Light','Dry Extract',2.6081561275,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(295,'Oats, Flaked','Grain',0.45359237,80.0,1.0,'false','US','','Oats will improve mouth feel and add a creamy head. Commonly used in Oatmeal Stout.',0.0,0.0,0.0,0.0,30.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(296,'Simpsons - Chocolate Malt','Grain',0.3401942775,73.0,400.0,'false','UK','','',1.0,1.9,0.0,12.0,20.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(297,'Briess - Victory Malt','Grain',0.3401942775,73.0,10.0,'false','US','','',1.0,2.5,0.0,13.0,25.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(298,'Caramel/Crystal Malt - 80L','Grain',0.226796185,74.0,80.0,'false','US','','This Crystal malt will lend a well a pronounced caramel flavor, color and sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(299,'Simpsons - Black Malt','Grain',0.226796185,70.0,550.0,'false','UK','','',1.0,3.0,0.0,12.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(300,'Muntons DME - Light','Dry Extract',2.6081561275,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(301,'Caramel/Crystal Malt - 10L','Grain',0.45359237,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(302,'Caramel/Crystal Malt - 40L','Grain',0.1133980925,74.0,40.0,'false','US','','This Pale Crystal malt will lend a balance of medium caramel color, flavor, and body.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(303,'Briess DME - Golden Light','Dry Extract',3.2885446825,95.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(304,'Briess LME - Munich','Extract',0.226796185,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(305,'Briess DME - Bavarian Wheat','Dry Extract',2.72155422,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(306,'Sugar, Table (Sucrose)','Sugar',0.45359237,100.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(307,'Briess DME - Bavarian Wheat','Dry Extract',0.226796185,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(308,'Briess LME - Munich','Extract',0.226796185,78.0,8.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(309,'Caramunich Malt','Grain',0.0566990462,71.7,56.0,'false','Belgium','','Use Caramunich for a deeper color, caramelized sugars and contribute a rich malt aroma.',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(310,'Briess DME - Pilsen Light','Dry Extract',2.494758035,95.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(311,'Briess DME - Pilsen Light','Dry Extract',0.90718474,95.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(312,'Briess DME - Bavarian Wheat','Dry Extract',0.90718474,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(313,'Sugar, Table (Sucrose)','Sugar',0.680388555,100.0,1.0,'false','US','','',0.0,0.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(314,'Briess DME - Bavarian Wheat','Dry Extract',0.3401942775,95.0,3.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(315,'Simpsons - Aromatic Malt','Grain',0.226796185,82.5,25.0,'false','UK','','',1.0,5.0,0.0,12.0,5.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(316,'Briess DME - Pilsen Light','Dry Extract',2.72155422,95.0,2.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(317,'Corn Sugar (Dextrose)','Sugar',0.45359237,100.0,0.0,'false','US','','',0.0,0.0,0.0,0.0,5.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(318,'Caramel/Crystal Malt - 10L','Grain',0.45359237,75.0,10.0,'false','US','','This Light Crystal malt will lend body and mouth feel with a minimum of color, much like Carapils, but with a light caramel sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(319,'Caramel/Crystal Malt - 80L','Grain',0.45359237,74.0,80.0,'false','US','','This Crystal malt will lend a well a pronounced caramel flavor, color and sweetness.',0.0,0.0,0.0,0.0,20.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(320,'Briess - Chocolate Malt','Grain',0.1133980925,73.0,350.0,'false','US','','',1.0,6.0,0.0,13.0,10.0,'true','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(321,'Special B Malt','Grain',0.1133980925,65.2,160.0,'false','Belgium','','Special B refers to a type of dark, flavorful crystal malt traditionally malted in Belgium. In small amounts, it gives a unique flavor to the finished beer that is often compared to raisins or dried fruit. This malt is always dark, but the color and flavor vary more than most other malt styles; most of the commonly available varieties are in the 110-160 L range, but it may be even darker. Don''t depend on this software to calculate the color of your beer correctly, since it may be expecting a much darker malt than you are actually using; some older sources assume Special B will be over 200 or even up to 300 L. While some sources still claim that Special B must be mashed, it is a crystal malt and can be steeped with an extract batch without adding significant protein to the beer.',0.0,0.0,0.0,0.0,10.0,'true','true',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(322,'Briess LME - Golden Light','Extract',6.80388555,78.0,4.0,'false','US','','',0.0,0.0,0.0,0.0,100.0,'false','false',0.0,-1,-1,0,0,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(323,'Briess - 2 Row Black Malt','Grain',0.0,55.0,500.0,'false','US','Briess','2-Row. Color adjustment for all beer styles. Use with other roasted malts for mild flavored dark beers. Has little impact on foam color.',1.0,6.0,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(324,'Briess - 2 Row Caramel Malt 10L','Grain',0.0,77.0,10.0,'false','US','Briess','Candylike sweetness, mild caramel.',1.0,7.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(325,'Briess - 2 Row Caramel Malt 120L','Grain',0.0,75.0,120.0,'false','US','Briess','Pronounced caramel, slight burnt sugar, raisiny, prunes.',1.0,3.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(326,'Briess - 2 Row Caramel Malt 30L','Grain',0.0,77.0,30.0,'false','US','Briess','Sweet, caramel, toffee.',1.0,5.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(327,'Briess - 2 Row Caramel Malt 40L','Grain',0.0,77.0,40.0,'false','US','Briess','',1.0,5.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(328,'Briess - 2 Row Caramel Malt 60L','Grain',0.0,77.0,60.0,'false','US','Briess','Sweet, pronounced caramel.',1.0,5.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(329,'Briess - 2 Row Caramel Malt 80L','Grain',0.0,76.0,80.0,'false','US','Briess','Pronounced caramel, slight burnt sugar, raisiny.',1.0,4.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(330,'Briess - 2 Row Chocolate Malt','Grain',0.0,60.0,350.0,'false','US','Briess','2-Row. Use in all beer styles for color adjustment. Use 1-10% for desired color in Porter and Stout. The rich roasted coffee, cocoa flavor is very complementary when used in higher percentages in Porters, Stouts, Brown Ales, and other dark beers. ',1.0,5.5,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(331,'Briess - Barley Flakes','Adjunct',0.0,70.0,1.4,'false','US','Briess','Pregelatinized. Use Barley Flakes as an adjunct in all-grain brews to produce a lighter colored finished beer without lowering the original gravity. Use in place of corn as an adjunct to eliminate corn flavor in the finished beer. Use at 10-25% of total grist to produce a light colored, mild flavored, dry beer.',0.0,9.0,0.0,12.5,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(332,'Briess - Brown Rice Flakes','Adjunct',0.0,60.0,1.0,'false','US','Briess','Pregelatinized. Briess Rice Flakes produce a light, clean and crisp characteristic to the finished beer. Use up to 40% as a ceral adjunct in the total grist.',0.0,7.0,0.0,10.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(333,'Briess - Caramel Malt 10L','Grain',0.0,76.0,10.0,'false','US','Briess','Candylike sweetness, mild caramel.',1.0,7.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(334,'Briess - Caramel Malt 120L','Grain',0.0,74.0,120.0,'false','US','Briess','Pronounced caramel, slight burnt sugar, raisiny, prunes.',0.0,3.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(335,'Briess - Caramel Malt 20L','Grain',0.0,76.0,20.0,'false','US','Briess','',0.0,6.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(336,'Briess - Caramel Malt 40L','Grain',0.0,75.0,40.0,'false','US','Briess','Sweet, caramel, toffee.',0.0,5.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(337,'Briess - Caramel Malt 60L','Grain',0.0,76.0,60.0,'false','US','','Sweet, pronounced caramel.',0.0,5.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(338,'Briess - Caramel Malt 80L','Grain',0.0,75.0,80.0,'false','US','Briess','Pronounced caramel, slight burnt sugar, raisiny.',0.0,4.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(339,'Briess - Caramel Malt 90L','Grain',0.0,75.0,90.0,'false','US','Briess','Pronounced caramel, slight burnt sugar, raisiny, prunes.',0.0,4.0,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(340,'Briess - Caramel Munich Malt 60L','Grain',0.0,77.0,60.0,'false','US','Briess','This darker colored, more intensely flavored 2-Row caramel munich malt is excellent in IPAs, Pale ales, Oktoberfests and Porters. Imparts amber to red hues.',1.0,3.5,0.0,0.0,15.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(341,'Briess - Caramel Vienne Malt 20L','Grain',0.0,78.0,20.0,'false','US','Briess','This 2-Row caramel malt adds flavors unique to Vienna-style lagers and Belgian-style Abbey Ales. Imparts golden hues.',1.0,4.5,0.0,0.0,10.0,'false','false',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(342,'Briess - Goldpils Vienna Malt','Grain',0.0,80.0,3.5,'false','US','Briess','DP 80. Use as a base malt or high percentage specialty malt.
Contributes light golden hues.
Typically used in Vienna, Oktoberfest and Marzen beers.
Use in any beer for rich malty flavor.',2.0,3.5,80.0,12.0,100.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(343,'Briess - Oat Flakes','Adjunct',0.0,80.0,2.5,'false','US','Briess','Pregelatinized. Use 5-25% of the total grist for an Oatmeal Stout. Use a small percentage in Belgian Wit Beers.',0.0,7.5,0.0,14.0,25.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(344,'Briess - Red Wheat Flakes','Adjunct',0.0,70.0,2.0,'false','US','Briess','Pregelatinized. Red Wheat Flakes can be used in place of Wheat Malt to make Wheat Beer. Flakes will yield a different flavor profile than Wheat Malt. Use in theproduction of Belgian Wit Beers. Use up to 40% as a cereal adjunct in the total grist. Use 0.5-1.0% to a standard brew to increase foam stability.',0.0,7.0,0.0,13.5,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(345,'Briess - Rye Flakes','Adjunct',0.0,71.0,3.0,'false','US','Briess','Pregelatinized. Rye Flakes contribute a very clean, distinctive rye flavor. Use to to 40% as a cereal adjunct in the total grist to create rye Beer. Start at 5-10% and increase in increments of 5% because of the concentrated flavor of Rye Flakes.',0.0,7.0,0.0,13.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(346,'Briess - Torrified Red Wheat','Grain',0.0,76.0,1.5,'false','US','Briess','Torrified Wheat is short for Insta Grains® Soft Red Wheat Whole Kernel. Heat treated to break the cellular structure, allowing more rapid hydration and malt enzymes to more completely attack the starches and protein. Use up to 40% of the total grist bill.
',0.0,8.5,0.0,11.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "fermentable" (id,name,ftype,amount,yield,color,add_after_boil,origin,supplier,notes,coarse_fine_diff,moisture,diastatic_power,protein,max_in_batch,recommend_mash,is_mashed,ibu_gal_per_lb,display_unit,display_scale,deleted,display,folder) VALUES(347,'Briess - Yellow Corn Flakes','Adjunct',0.0,75.0,0.8,'false','US','Briess','Pregelatinized. Using Yellow Corn Flakes as an adjunct produces a lower color in the finished beer without lowering the original gravity.Yellow Corn Flakes produce a beer with a mild, less malty flavor. Yellow Corn Flakes produce a drier, more crisp beer.',0.0,8.0,0.0,10.0,40.0,'true','true',0.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(1,'Agnus',14.0,0.0,'Boil',60.0,'High alpha variety with relatively large beta content, this hop is descended from Sladek. Comparable to Magnum, Taurus, Columbus, Target.','Bittering','Pellet',7.5,50.0,'Czech Republic','Magnum, Taurus, Columbus, Target',0.0,0.0,0.0,0.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(2,'Ahtanum',9.5,0.0,'Boil',60.0,'Distinctive aroma like Cascade.','Aroma','Pellet',5.75,52.5,'US','Amarillo, Cascade',18.0,10.5,32.5,52.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(3,'Amarillo',9.5,0.0,'Boil',60.0,'A recent aroma variety, this citrusy American hop is also used for its smooth bittering properties due to its low cohumulone levels.','Both','Pellet',6.5,0.0,'US','Cascade, Centennial',10.0,3.0,22.5,69.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(4,'Apollo',17.0,0.0,'Boil',60.0,'Clean bittering and stores great. When used for aroma, lends strong grapefruit and hoppy notes.','Both','Pellet',7.0,85.0,'US','Nugget, Columbus/Tomahawk/Zeus',27.5,17.0,26.0,40.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(5,'Bor',8.0,0.0,'Boil',60.0,'This hop is now primarily being substituted with Premiant, which is more stable with respect to alpha content and yield.','Both','Pellet',5.0,50.0,'Czech Republic','Premiant',30.0,0.0,23.5,45.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(6,'Bramling',6.0,0.0,'Boil',60.0,'Distinctive and pleasant aroma. Fruity, black currant, and lemon notes.','Both','Pellet',2.8,0.0,'England','',31.0,16.0,34.0,36.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(7,'Bravo',15.5,0.0,'Boil',60.0,'Bittering hop with fruity and floral aroma.','Both','Pellet',3.5,70.0,'US','Columbus/Tomahawk/Zeus',19.0,11.0,31.5,37.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(8,'Brewers Gold',7.6,0.0,'Boil',60.0,'Complex bittering hop w/ sharp bittering quality. Imparts fruity/spicy aroma with black currant notes. Adds a distinctive European element to beers. Good with Tettnang and Hallertau.','Both','Pellet',0.0,70.0,'US','Bullion, Chinook, Galena',0.0,0.0,0.0,0.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(9,'Bullion',7.75,0.0,'Boil',60.0,'Intense, black currant aroma, spicy and pungent.','Both','Pellet',5.5,50.0,'England','Northern Brewer, Galena',26.5,10.0,37.5,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(10,'Cascade',6.0,0.0,'Boil',60.0,'Pleasant, floral, spicy, and citrus-like.','Both','Pellet',6.0,0.0,'US','Amarillo, Centennial',10.5,4.5,36.5,47.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(11,'Centennial',10.5,0.0,'Boil',60.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(12,'Challenger',7.0,0.0,'Boil',60.0,'Mild to Moderate but quite spicy. Typically used for aroma.','Both','Pellet',4.25,77.5,'England','Northern Brewer, Perle',28.5,9.0,22.5,36.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(13,'Chelan',13.0,0.0,'Boil',60.0,'Bittering hop with a lot of beta acid.','Bittering','Pellet',9.15,80.0,'US','Galena',13.5,10.5,34.0,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(14,'Chinook',13.0,0.0,'Boil',60.0,'Medium strength, spicy, piney aroma. Used in IPAs, stouts, porters, pale ales, and lagers for bittering.','Both','Pellet',3.5,68.0,'US','Columbus, Nugget',20.5,10.0,32.0,37.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(15,'Citra',12.0,0.0,'Boil',60.0,'Released in 2007 as a dual-purpose variety, this hop does well as a bittering hop due to low cohumulone content, and high alpha acids. When used for aroma, it lends tropical fruit and citrus characteristics.','Both','Pellet',4.0,0.0,'US','Probably none, but a citrusy hop can make an approximation.',12.0,7.0,23.0,62.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(16,'Cluster',7.75,0.0,'Boil',60.0,'Dual-purpose with floral aroma.','Both','Pellet',5.0,84.0,'US','Galena, Chinook',16.5,6.5,40.0,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(17,'Columbus/Tomahawk/Zeus',15.5,0.0,'Boil',60.0,'Super high alpha varieties.','Bittering','Pellet',4.5,52.0,'US','Galena, Chinook',30.0,10.0,30.0,45.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(18,'Crystal',4.5,0.0,'Boil',60.0,'Mild, spicy, floral aroma. Developed from Hallertau, with some Cascade and such.','Aroma','Pellet',5.5,50.0,NULL,'Liberty, Mount Hood, Hallertau, Hersbrucker',21.0,6.0,23.0,52.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(19,'El Dorado',15.0,0.0,'Boil',60.0,'Emerged in 2011. Described as having a watermelon candy, pear, and passion fruit flavor.','Both','Pellet',7.5,50.0,NULL,'',13.0,7.0,29.0,57.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(20,'First Gold',7.5,0.0,'Boil',60.0,'First commercial dwarf hop designed for aroma consideration in England.','Both','Pellet',3.5,70.0,'England','Kent Goldings, Crystal',22.0,6.5,33.0,27.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(21,'Fuggles',4.5,0.0,'Boil',60.0,'Mild and pleasant, spicy, soft, woody.','Both','Pellet',2.5,70.0,'England','Willamette, East Kent Goldings, Styrian Goldings, Tettnang',34.5,11.5,27.5,26.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(22,'Galena',12.0,0.0,'Boil',60.0,'Balanced bittering and nice aroma. Used with English and American ales.','Both','Pellet',8.0,79.0,'US','Nugget, Cluster, Chinook',11.5,5.0,38.0,57.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(23,'Glacier',5.5,0.0,'Boil',60.0,'Dual-purpose, well balanced with pleasant aroma, this is used in stouts, porters, bitters, ESBs, and English-style pale ales.','Both','Pellet',8.2,0.0,'US','Willamette',30.0,9.0,29.0,47.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(24,'Golding',5.0,0.0,'Boil',60.0,'A.K.A Yakima Golding. This is an American version of traditional English aroma varieties.','Aroma','Pellet',2.5,66.0,'US','Kent Golding, Styrian Golding',40.0,14.5,25.5,30.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(25,'Green Bullet',11.0,0.0,'Boil',60.0,'Has a raisiny character.','Bittering','Pellet',7.0,0.0,'New Zealand','Pride of Ringwood',24.0,7.5,42.0,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(26,'Hallertau',4.5,0.0,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(27,'Harmonie',6.0,0.0,'Boil',60.0,'Introduced in 2004, this variety is mainly being used for aroma. This variety has a high ratio of beta to alpha (1:1), and has a bit more alpha acid than Sladek.','Aroma','Pellet',6.0,50.0,'Czech Republic','Saaz, Sladek',15.0,0.0,21.0,35.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(28,'Hersbrucker',3.0,0.0,'Boil',60.0,'Mild to moderate aroma.','Aroma','Pellet',5.25,60.0,'Germany','Mount Hood, French Strisslespalt',30.0,12.5,21.5,12.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(29,'Kent Goldings',5.5,0.0,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(30,'Liberty',4.5,0.0,'Boil',60.0,'Mild and pleasant, quite fine. Acts like a true noble variety.','Aroma','Pellet',3.5,50.0,'US','Hallertau, Mt. Hood, Tettnang',35.0,10.5,26.0,33.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(31,'Lublin (Lubelski)',4.0,0.0,'Boil',60.0,'Finishing hop usually, but may be used throughout the boil.','Aroma','Pellet',0.0,50.0,'Poland','Saaz, Tettnang',0.0,0.0,0.0,0.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(32,'Magnum',13.5,0.0,'Boil',60.0,'Clean German flavor and aroma profile.','Bittering','Pellet',6.0,72.5,'Germany','Galena',37.5,10.5,25.0,37.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(33,'Marynka',10.0,0.0,'Boil',60.0,'All-purpose, but generally used for bittering.','Both','Pellet',11.0,72.5,'Poland','Kent Goldings',29.0,11.0,29.0,29.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(34,'Millennium',15.5,0.0,'Boil',60.0,'Clean bittering and stores well. When used for aroma, lends strong grapefruit and hoppy notes.','Bittering','Pellet',4.8,76.0,'US','Nugget, Columbus/Tomahawk/Zeus',25.0,10.5,30.0,35.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(35,'Mount Hood',5.5,0.0,'Boil',60.0,'Mild, pleasant, clean, light, and delicate.','Aroma','Pellet',6.5,55.0,'US','German Hallertau, Hersbrucker, Liberty, Crystal.',34.0,14.5,22.0,35.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(36,'Northern Brewer',9.0,0.0,'Boil',60.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(37,'Nugget',13.0,0.0,'Boil',60.0,'Mild aroma, low cohumulone for smooth bitterness.','Both','Pellet',5.0,76.0,'US','Chinook, Galena, Cluster, Magnum',17.5,8.0,24.0,51.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(38,'Palisade',7.5,0.0,'Boil',60.0,'Bred as an aroma hop with perfume-like qualities. Also used for smooth bittering potential in moderate quantities.','Both','Pellet',7.0,0.0,'US','Willamette',20.5,17.0,26.5,9.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(39,'Perle',7.0,0.0,'Boil',60.0,'Pleasant, slightly spicy','Both','Pellet',4.0,0.0,NULL,'Northern Brewer, Cluster, Galena',30.5,11.0,29.5,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(40,'Phoenix',11.0,0.0,'Boil',60.0,'Bittering or aroma hop for English ales.','Both','Pellet',4.4,0.0,'England','Challenger',29.5,9.0,30.0,28.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(41,'Premiant',8.0,0.0,'Boil',60.0,'Characterized by high alpha content and yield, Premiant was registered in 1996 and has been bred mostly out of Saaz. Tends to have a fine, neutral bitterness due to low cohumulone content. It is usually used as a flavor addition, and compares with Sladek.','Both','Pellet',4.5,50.0,'Czech Republic','Czech Saaz, Sladek, Bor',30.0,0.0,21.0,42.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(42,'Pride of Ringwood',8.5,0.0,'Boil',60.0,'Quite pronounced but not unpleasant, citrus-like.','Both','Pellet',5.0,50.0,'Australia','Centennial, Galena, Cluster, Kent Goldings',5.0,7.5,37.5,37.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(43,'Progress',5.5,0.0,'Boil',60.0,'Similar to Fuggles, has a mild spicy or woody character, but slightly sweeter and with softer bitterness.','Both','Pellet',2.3,70.0,'England','Kent Goldings, Fuggles',43.5,13.5,30.5,32.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(44,'Rubin',12.0,0.0,'Boil',60.0,'This is a bittering hop descended from European aroma hops and Saaz. It has a fine bitterness with a longer finish than Saaz.','Bittering','Pellet',5.0,50.0,'Czech Republic','Saaz',16.5,0.0,29.0,40.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(45,'Saaz (Czech Republic)',4.5,0.0,'Boil',60.0,'Very mild with pleasant hoppy notes.','Aroma','Pellet',5.5,50.0,'Czech Republic','Tettnang, US Saaz',30.0,11.0,28.5,30.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(46,'Saaz (USA)',3.75,0.0,'Boil',60.0,'Very mild and pleasant, spicy and fragrant','Aroma','Pellet',3.75,50.0,'US','Czech Saaz, Tettnang',37.5,10.0,26.0,27.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(47,'Simcoe',13.0,0.0,'Boil',60.0,'Dual-purpose hop. Has a piney aroma suited to American ales.','Both','Pellet',4.5,0.0,'US','Summit, Magnum',12.5,6.5,17.5,62.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(48,'Sladek',6.0,0.0,'Boil',60.0,'Characterized by a high ratio of beta acids and high yield. This variety was introduced in 1994, and was bred from Saaz. It is primarily used in flavor additions of lager beers, often with Saaz being the finishing hop. Some breweries also use it as the finishing hop for non-premium beers.','Aroma','Pellet',7.5,50.0,'Czech Republic','Czech Saaz',25.0,0.0,27.5,45.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(49,'Sorachi Ace',10.0,0.0,'Boil',60.0,'Has a decidedly lemon-like aroma and taste. Usually used for bittering.','Bittering','Pellet',0.0,52.5,'Japan','',0.0,0.0,23.0,0.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(50,'Spalt',5.5,0.0,'Boil',60.0,'Classic noble hop. Mild, spicy aroma. Spalt Select is a hardier variety often labeled as Spalt.','Aroma','Pellet',4.0,52.5,'Germany','Spalt Select, Tettnanger, Saaz, Hallertau',25.0,10.5,25.5,27.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(51,'Sterling',4.5,0.0,'Boil',60.0,'An aroma variety with smooth bitterness, and noble hop aroma. The aroma is herbal and spicy with some floral and citrus notes. Used primarily in Pilsners and Lagers as a Saaz substitute.','Both','Pellet',5.5,67.5,NULL,'Saaz',7.0,21.0,22.0,46.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(52,'Strisselspalt',4.0,0.0,'Boil',60.0,'','Aroma','Pellet',4.25,65.0,'France','Hersbrucker, Mount Hood, Crystal',20.0,9.0,22.5,25.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(53,'Styrian Goldings',4.5,0.0,'Boil',60.0,'Delicate, slightly spicy, soft and floral. Actually a derivative of Fuggles, not Goldings.','Aroma','Pellet',3.0,72.5,'Austria/Slovenia','Fuggles, Willamette',31.5,9.5,29.0,31.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(54,'Summit',17.0,0.0,'Boil',60.0,'Bittering variety with earthy aroma and slight citrus notes.','Both','Pellet',5.0,85.0,'US','Columbus/Tomahawk/Zeus, Warrior, Millenium',20.0,12.5,29.5,40.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(55,'Super Galena',14.5,0.0,'Boil',60.0,'Very similar to Galena in aroma and bitterness.','Both','Pellet',9.0,79.0,'US','Galena',21.5,10.0,37.5,52.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(56,'Target',10.5,0.0,'Boil',60.0,'Pleasant English hop aroma, quite intense. Admiral has a less harsh bitterness.','Both','Pellet',5.0,50.0,'England','Admiral, Northdown, Progress',19.5,9.5,37.5,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(57,'Tettnang',4.0,0.0,'Boil',60.0,'Very spicy, mild, floral, very aromatic. Noble hop.','Aroma','Pellet',3.75,5.75,'Germany','Czech Saaz, Spalt, Ultra',22.5,8.0,26.0,22.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(58,'Tillicum',13.0,0.0,'Boil',60.0,'Pleasant, slightly spicy','Both','Pellet',10.0,80.0,'US','Galena, Chelan',14.5,7.4,35.0,50.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(59,'Tradition',5.5,0.0,'Boil',60.0,'A.K.A Hallertauer Tradition. Similar flavor to Hallertauer, with improved disease resistance.','Aroma','Pellet',4.5,55.0,'Germany','Hallertau',45.0,12.5,27.5,24.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(60,'Vanguard',5.5,0.0,'Boil',60.0,'Derived from Hallertau. Flavor is like an herbal Hallertau or slightly buttery Tettnang.','Both','Pellet',6.0,77.5,'US','Hallertau, Tettnang',46.5,12.5,17.5,22.5,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(61,'Warrior',15.5,0.0,'Boil',60.0,'Mild aroma, clean an neutral bittering.','Both','Pellet',4.8,76.0,'US','Columbus, Magnum, Nugget',17.0,10.0,24.0,45.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(62,'Willamette',5.0,0.0,'Boil',60.0,'Mild and pleasant, slightly spicy, aromatic.','Aroma','Pellet',4.0,62.5,NULL,'Fuggles, Styrian Goldings, Tettnang.',23.5,7.35,32.5,35.0,-1,-1,0,1,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(63,'Willamette',5.0,0.03401942772,'Boil',60.0,'Mild and pleasant, slightly spicy, aromatic.','Aroma','Pellet',4.0,62.5,NULL,'Fuggles, Styrian Goldings, Tettnang.',23.5,7.35,32.5,35.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(64,'Northern Brewer',9.0,0.01700971386,'Boil',60.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(65,'Northern Brewer',9.0,0.04252428465,'Boil',15.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(66,'Northern Brewer',9.0,0.04252428465,'Boil',1.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(67,'Kent Goldings',5.5,0.06803885544,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(68,'Kent Goldings',5.5,0.0283495231,'Boil',0.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(69,'Kent Goldings',5.5,0.021262142325,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(70,'Cascade',6.0,0.01417476155,'Boil',10.0,'Pleasant, floral, spicy, and citrus-like.','Both','Pellet',6.0,0.0,'US','Amarillo, Centennial',10.5,4.5,36.5,47.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(71,'Cascade',6.0,0.01417476155,'Boil',0.0,'Pleasant, floral, spicy, and citrus-like.','Both','Pellet',6.0,0.0,'US','Amarillo, Centennial',10.5,4.5,36.5,47.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(72,'Centennial',10.5,0.01417476155,'Boil',10.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(73,'Centennial',10.5,0.01417476155,'Boil',0.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(74,'Northern Brewer',9.0,0.0283495231,'Boil',60.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(75,'Chinook',13.0,0.021262142325,'Boil',60.0,'Medium strength, spicy, piney aroma. Used in IPAs, stouts, porters, pale ales, and lagers for bittering.','Both','Pellet',3.5,68.0,'US','Columbus, Nugget',20.5,10.0,32.0,37.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(76,'Kent Goldings',5.5,0.035436903875,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(77,'Kent Goldings',5.5,0.01417476155,'Boil',5.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(78,'Fuggles',4.5,0.021262142325,'Boil',15.0,'Mild and pleasant, spicy, soft, woody.','Both','Pellet',2.5,70.0,'England','Willamette, East Kent Goldings, Styrian Goldings, Tettnang',34.5,11.5,27.5,26.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(79,'Kent Goldings',5.5,0.021262142325,'Boil',0.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(80,'Kent Goldings',5.5,0.0566990462,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(81,'Kent Goldings',5.5,0.0566990462,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(82,'Nugget',13.0,0.03401942772,'Boil',60.0,'Mild aroma, low cohumulone for smooth bitterness.','Both','Pellet',5.0,76.0,'US','Chinook, Galena, Cluster, Magnum',17.5,8.0,24.0,51.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(83,'Centennial',10.5,0.0283495231,'Boil',10.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(84,'Simcoe',13.0,0.0283495231,'Boil',5.0,'Dual-purpose hop. Has a piney aroma suited to American ales.','Both','Pellet',4.5,0.0,'US','Summit, Magnum',12.5,6.5,17.5,62.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(85,'Amarillo',9.5,0.0283495231,'Boil',0.0,'A recent aroma variety, this citrusy American hop is also used for its smooth bittering properties due to its low cohumulone levels.','Both','Pellet',6.5,0.0,'US','Cascade, Centennial',10.0,3.0,22.5,69.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(86,'Hallertau',4.5,0.0283495231,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(87,'Hallertau',4.5,0.0566990462,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(88,'Hallertau',4.5,0.021262142325,'Boil',0.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(89,'Hallertau',4.5,0.01417476155,'Boil',15.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(90,'Hallertau',4.5,0.0566990462,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(91,'Nugget',13.0,0.1133980924,'Boil',60.0,'Mild aroma, low cohumulone for smooth bitterness.','Both','Pellet',5.0,76.0,'US','Chinook, Galena, Cluster, Magnum',17.5,8.0,24.0,51.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(92,'Chinook',13.0,0.0283495231,'Boil',0.0,'Medium strength, spicy, piney aroma. Used in IPAs, stouts, porters, pale ales, and lagers for bittering.','Both','Pellet',3.5,68.0,'US','Columbus, Nugget',20.5,10.0,32.0,37.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(93,'Centennial',10.5,0.04252428465,'Boil',0.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(94,'Amarillo',9.5,0.04252428465,'Boil',0.0,'A recent aroma variety, this citrusy American hop is also used for its smooth bittering properties due to its low cohumulone levels.','Both','Pellet',6.5,0.0,'US','Cascade, Centennial',10.0,3.0,22.5,69.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(95,'Hallertau',4.5,0.049611665425,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(96,'Hallertau',4.5,0.01417476155,'Boil',10.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(97,'Willamette',5.0,0.03401942772,'Boil',60.0,'Mild and pleasant, slightly spicy, aromatic.','Aroma','Pellet',4.0,62.5,NULL,'Fuggles, Styrian Goldings, Tettnang.',23.5,7.35,32.5,35.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(98,'Northern Brewer',9.0,0.01700971386,'Boil',60.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(99,'Northern Brewer',9.0,0.04252428465,'Boil',15.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(100,'Northern Brewer',9.0,0.04252428465,'Boil',1.0,'Medium-strong, woody with evergreen and mint overtones.','Both','Pellet',4.0,0.0,'England','Galena, Perle',25.0,7.5,27.5,55.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(101,'Kent Goldings',5.5,0.06803885544,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(102,'Kent Goldings',5.5,0.0283495231,'Boil',0.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(103,'Kent Goldings',5.5,0.021262142325,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(104,'Chinook',13.0,0.01700971386,'Boil',60.0,'Medium strength, spicy, piney aroma. Used in IPAs, stouts, porters, pale ales, and lagers for bittering.','Both','Pellet',3.5,68.0,'US','Columbus, Nugget',20.5,10.0,32.0,37.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(105,'Cascade',6.0,0.01417476155,'Boil',10.0,'Pleasant, floral, spicy, and citrus-like.','Both','Pellet',6.0,0.0,'US','Amarillo, Centennial',10.5,4.5,36.5,47.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(106,'Centennial',10.5,0.01417476155,'Boil',0.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(107,'Cascade',6.0,0.01417476155,'Boil',0.0,'Pleasant, floral, spicy, and citrus-like.','Both','Pellet',6.0,0.0,'US','Amarillo, Centennial',10.5,4.5,36.5,47.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(108,'Centennial',10.5,0.01417476155,'Boil',10.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(109,'Kent Goldings',5.5,0.03401942772,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(110,'Kent Goldings',5.5,0.01417476155,'Boil',5.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(111,'Kent Goldings',5.5,0.0566990462,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(112,'Kent Goldings',5.5,0.021262142325,'Boil',0.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(113,'Fuggles',4.5,0.021262142325,'Boil',15.0,'Mild and pleasant, spicy, soft, woody.','Both','Pellet',2.5,70.0,'England','Willamette, East Kent Goldings, Styrian Goldings, Tettnang',34.5,11.5,27.5,26.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(114,'Kent Goldings',5.5,0.0566990462,'Boil',60.0,'Gentle, fragrant and slightly spicy.','Both','Pellet',2.4,72.5,'England','Goldings (American), Fuggles, Willamette',41.5,14.0,30.0,25.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(115,'Nugget',13.0,0.03401942772,'Boil',60.0,'Mild aroma, low cohumulone for smooth bitterness.','Both','Pellet',5.0,76.0,'US','Chinook, Galena, Cluster, Magnum',17.5,8.0,24.0,51.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(116,'Centennial',10.5,0.0283495231,'Boil',10.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(117,'Simcoe',13.0,0.0283495231,'Boil',5.0,'Dual-purpose hop. Has a piney aroma suited to American ales.','Both','Pellet',4.5,0.0,'US','Summit, Magnum',12.5,6.5,17.5,62.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(118,'Amarillo',9.5,0.0283495231,'Boil',0.0,'A recent aroma variety, this citrusy American hop is also used for its smooth bittering properties due to its low cohumulone levels.','Both','Pellet',6.5,0.0,'US','Cascade, Centennial',10.0,3.0,22.5,69.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(119,'Hallertau',4.5,0.0283495231,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(120,'Hallertau',4.5,0.0566990462,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(121,'Hallertau',4.5,0.021262142325,'Boil',0.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(122,'Hallertau',4.5,0.021262142325,'Boil',15.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(123,'Hallertau',4.5,0.0566990462,'Boil',60.0,'Mild, pleasant and slightly flowery.','Aroma','Pellet',4.5,55.0,NULL,'Mt. Hood, Liberty, Crystal.',55.0,14.5,24.5,16.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(124,'Nugget',13.0,0.1133980924,'Boil',60.0,'Mild aroma, low cohumulone for smooth bitterness.','Both','Pellet',5.0,76.0,'US','Chinook, Galena, Cluster, Magnum',17.5,8.0,24.0,51.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(125,'Chinook',13.0,0.0283495231,'Boil',0.0,'Medium strength, spicy, piney aroma. Used in IPAs, stouts, porters, pale ales, and lagers for bittering.','Both','Pellet',3.5,68.0,'US','Columbus, Nugget',20.5,10.0,32.0,37.5,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(126,'Centennial',10.5,0.04252428465,'Boil',0.0,'Medium with floral and citrus tones.','Bittering','Pellet',4.0,0.0,'US','Cascade',11.0,5.0,29.0,58.0,-1,-1,0,0,'');
INSERT INTO "hop" (id,name,alpha,amount,use,time,notes,htype,form,beta,hsi,origin,substitutes,humulene,caryophyllene,cohumulone,myrcene,display_unit,display_scale,deleted,display,folder) VALUES(127,'Amarillo',9.5,0.04252428465,'Boil',0.0,'A recent aroma variety, this citrusy American hop is also used for its smooth bittering properties due to its low cohumulone levels.','Both','Pellet',6.5,0.0,'US','Cascade, Centennial',10.0,3.0,22.5,69.0,-1,-1,0,0,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(1,'Apricot','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(2,'Bitter Orange Peel','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(3,'Blueberry','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(4,'Boysenberry','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(5,'Burton Salts','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(6,'Calcium Carbonate','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(7,'Calcium Chloride','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(8,'Campden Tablet','Water Agent','Boil',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(9,'Cherry','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(10,'Cranberry','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(11,'Epsom Salt','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(12,'Gelatin','Fining','Secondary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(13,'Gypsum','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(14,'Hazelnut','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(15,'Heather Tips','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(16,'Instant Water - American','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(17,'Instant Water - Burton on Trent','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(18,'Instant Water - Dortmund','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(19,'Instant Water - Edinburgh','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(20,'Instant Water - London','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(21,'Instant Water - Munich','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(22,'Irish Moss','Fining','Boil',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(23,'IsoHop','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(24,'Kosher Salt','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(25,'Lactic Acid','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(26,'Licorice Root','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(27,'Oak Chips','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(28,'Oak Cubes','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(29,'Paradise Seed','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(30,'Peach','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(31,'Phosphoric Acid','Water Agent','Mash',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(32,'Polyclar','Fining','Secondary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(33,'Raspberry','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(34,'Sparkolloid','Fining','Secondary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(35,'Super Moss','Fining','Boil',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(36,'Sweet Orange Peel','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(37,'Vanilla Beans','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(38,'Whirlfloc','Fining','Boil',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(39,'Whole Coriander','Flavor','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(40,'Yeast Nutrient','Other','Primary',0.0,0.0,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(41,'pH 5.2 Stabilizer','Water Agent','Mash',0.0,0.01,'false','','',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(42,'Aji Amarillo','Herb','Boil',0.0,0.0,'true','','Aji Amarillo (Spanish for “yellow chile”) is a small, yellow-orange chile grown in the Andes, primarily in Peru. They have been described as the single most-important ingredient in Peruvian cuisine. They are quite hot, but have a really nice, bright, fruity flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(43,'Ajowan','Herb','Boil',0.0,0.0,'true','','Ajowan seed (also known as carom seed) is native to southern India and is used commonly throughout southern Asia and the Middle East.

It smells and tastes a lot like very strong thyme, though slightly more peppery and with a lightly bitter aftertaste. Dry roasting Ajowan or frying it in oil mellows the flavour and brings out a caraway taste.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(44,'Aleppo Chiles','Herb','Boil',0.0,0.0,'true','','Aleppo chiles (sometimes known as halaby peppers) are named after the region in northern Syria where they grow. They have a moderate heat level and a wonderful, complex, fruity flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(45,'Allspice','Spice','Boil',0.0,0.0,'true','','Allspice is a ground mixture of baking spices. In reality, allspice is the berry of the pimento bush, grown mostly in Jamaica. It does, however get its name from the fact that it tastes somewhat like a peppery blend of cinnamon, clove and nutmeg.

Allspice loses its flavour very quickly when ground, its recommend to buy whole berries and grinding them yourself just before using.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(46,'Ancho Chiles','Herb','Boil',0.0,0.0,'true','','When a ripe poblano pepper is dried, it becomes an ancho chile. Anchos are quite mild and are used in all kinds of traditional Mexican cooking. Anchos are deep red-brown and have a wonderful, sweet raisiny flavour that provide lots of personality to food without a lot of heat. These are the most commonly used chile in Mexico.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(47,'Basil','Herb','Boil',0.0,0.0,'true','','Basil is one of the most commonly used herbs in the world. Basil is mild and has a slight anise flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(48,'Bay Leaves','Herb','Boil',0.0,0.0,'true','','Stale leaves have no flavour at all, so if your bay leaves have been sitting in the cupboard for a more than a year it’s time to replace them.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(49,'Birch Bark','Herb','Boil',0.0,0.0,'true','','Birch bark has wide-ranging culinary uses. In particular, it is an ingredient in many home-made root beer recipes.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(50,'Peppercorns, Black','Spice','Boil',0.0,0.0,'true','','They are picked when they are green and unripe, and are sun-dried, a process which ferments the berry and turns it hard and black.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(51,'Caraway Seeds','Spice','Boil',0.0,0.0,'true','','Caraway seeds have a very distinctive taste and aroma that makes many people think immediately of bread. Caraway has a pungent scent and a warm, bitter flavour. It is often used to flavour pumpernickel and rye bread, crackers, sauerkraut, and pork dishes.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(52,'Cardamom, Black','Spice','Boil',0.0,0.0,'true','','In a way, it''s not fair that this spice has to share its name with the sweet and elegant green cardamom. Black cardamom is a totally different spice, and is not nearly as glamourous. Its pods are large and rough, it has an earthy, smoky flavour and it can never be used as a substitute for the more expensive and popular green variety. It does have its place, though. Black cardamom is used to give depth to Indian cooking, and it can be an important ingredient in many curry masalas.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(53,'Cardamom, Green','Spice','Boil',0.0,0.0,'true','','Green cardamom is an incredibly versatile spice that enhances both sweet and savoury foods.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(54,'Cascabel Chiles','Herb','Boil',0.0,0.0,'true','','They are brownish-red and quite hard with a moderate heat and a deep, nutty flavour. ',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(55,'Cayenne Pepper','Spice','Boil',0.0,0.0,'true','','cayenne pepper is very spicy and adds quick heat to any dish.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(56,'Chicory Root','Herb','Boil',0.0,0.0,'true','','When roasted, chicory roots have a flavour very similar to that of coffee.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(57,'Chipotle Chiles','Herb','Boil',0.0,0.0,'true','','Chipotle chiles have a distinctive smoky flavour and a moderate heat.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(58,'Cinnamon','Spice','Boil',0.0,0.0,'true','','Woody sweetness and a nice moderate spiciness.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(59,'Citric Acid','Flavor','Boil',0.0,0.0,'true','','Citric acid is a mild natural acid found in citrus fruits; it is responsible for the sourness of lemons and limes. In its pure form, citric acid looks pretty much exactly like granulated sugar and acts as a natural preservative and a tart flavouring. It is sometimes used in the making of wine and ice cream, and is widely used in softdrinks, sour candies and other recipes to mimic the flavour of fresh lemon.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(60,'Cloves','Spice','Boil',0.0,0.0,'true','','Cloves are the most pungent and oily of all spices. They are the unopened buds of the clove tree and have a hot, sharp, bitter flavour. They will easily overpower other flavours, so they must be used very carefully.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(61,'Cocoa Nibs','Herb','Boil',0.0,0.0,'true','','Cocoa nibs are nothing more than broken chunks of cocoa bean. They are crunchy and nutty, with a bittersweet chocolate flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(62,'Coriander Seeds','Spice','Boil',0.0,0.0,'true','','Coriander seeds are the dried fruits of the plant we know as cilantro. Their flavour is mild and light. Dry roasting coriander enhances its flavour dramatically.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(63,'Cubeb Berries','Herb','Boil',0.0,0.0,'true','','Cubeb comes from a plant in the pepper family and grows almost exclusively in Java and other parts of Indonesia. It has a piney taste when raw, but when cooked it is more warm and pleasant – reminiscent of allspice.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(64,'Cumin','Spice','Boil',0.0,0.0,'true','','Cumin has a warm, earthy flavour sometimes used in Belgian Wits.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(65,'Fennel Seeds','Spice','Boil',0.0,0.0,'true','','Fennel seeds are striped and greenish and have a nice licorice flavour that’s stronger than fresh fennel fronds. The flavour is pleasantly bitter, but can be sweetened with dry roasting.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(66,'Galangal','Herb','Boil',0.0,0.0,'true','','Galangal is a rhizome that looks a lot like ginger. Its flavour is similar to ginger, but not nearly as spicy and with hints of lemon and cardamom.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(67,'Ginger, Candied','Flavor','Boil',0.0,0.0,'true','','Candied ginger is a lovely thing, soft, chewy and spicy.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(68,'Ginger Root','Herb','Boil',0.0,0.0,'true','','Ginger root is used throughout the world in both savoury and sweet dishes. It has a spicy, warm flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(69,'Grains of Paradise','Spice','Boil',0.0,0.0,'true','','Small reddish-brown seeds are mostly grown on the western coast of Africa and have a flavour that is hot and peppery, but with a fruity note that softens the sharpness. They are white on the inside, and appear as a whitish powder when ground.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(70,'Peppercorns, Green','Spice','Boil',0.0,0.0,'true','','Green peppercorns are the same as black peppercorns, in that they are picked when green and unripe. But instead of being dried in the sun, they are quickly dehydrated so that they retain their bright green colour and mildly spicy flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(71,'Guajillo Chiles','Herb','Boil',0.0,0.0,'true','','Guajillo chiles are shiny, deep-reddish and usually between four and six inches long.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(72,'Habanero Chiles','Herb','Boil',0.0,0.0,'true','','Habanero chiles are among the hottest on the planet. These small, lantern-shaped chiles range in colour from yellow to red and have a tropical, fruity flavour with intense heat.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(73,'Juniper Berries','Flavor','Boil',0.0,0.0,'true','','The small, blue-black berries of the juniper bush are best known in the culinary world for flavouring gin, and their smell and flavour brings this to mind immediately. Thier piney taste cuts nicely through strong, rich flavours for a pleasant contrast. The berries are always sold whole, but they are soft and easy to crush in a mortar or with the flat of a knife.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(74,'Lavender','Herb','Boil',0.0,0.0,'true','','These tiny, bright blue flowers have a sweet, floral flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(75,'Lemon Peel','Spice','Boil',0.0,0.0,'true','','Citrus peels contain loads of essential oils that add an unmistakably sharp tartness to foods.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(76,'Lime Leaves','Herb','Boil',0.0,0.0,'true','','In terms of flavour, lime leaves have a very distinctive citrusy taste, not necessarily limey, and not quite lemony.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(77,'Lime Peel','Flavor','Boil',0.0,0.0,'true','','Citrus peels contain loads of essential oils that add an unmistakably sharp tartness to foods.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(78,'Mace','Spice','Boil',0.0,0.0,'true','','Mace is possibly the most interesting and unique of all spices. It’s a little-known fact that mace is from the same seed pod that gives us nutmeg. While nutmeg is the inner seed of the pod, mace is the lacy reddish net that surrounds the outside of the shell. During harvest, the mace is removed whole and dried, at which point it is known as a blade.

Mace is very similar to nutmeg in flavour and scent, though a little more delicate and sweet. It is also more expensive, since there is so much less of it in each pod.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(79,'Marash Chiles','Herb','Boil',0.0,0.0,'true','','Crushed Marash chiles are very similar to our Aleppo chiles from Syria, but have an even fruitier taste and are ever so slightly less acidic.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(80,'Mulato Chiles','Herb','Boil',0.0,0.0,'true','','Mulato chiles are very similar to ancho chiles: both are dried poblanos, but it is the darker, riper poblanos that become mulatos. This extra ripeness makes mulato chiles darker and sweeter than anchos, and gives them an earthier flavour.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(81,'Nutmeg','Spice','Boil',0.0,0.0,'true','','Nutmeg is the hard inner seed found inside the fruit of a nutmeg tree, and it has one of the most unique and recognizable flavours of all spices. It is warm and woody with hints of pine and clove, very similar to mace, which is part of the same fruit.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(82,'Pasilla Chiles','Herb','Boil',0.0,0.0,'true','','When the long, twisted chilaca chile is dried it is called a pasilla chile, or sometimes a “pasilla negro.” Pasilla means “little raisin” and it gets this name from its flavour – berry and grape with a hint of licorice. Pasilla chiles are long and black.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(83,'Peppercorns, Pink','Spice','Boil',0.0,0.0,'true','','Pink peppercorns are not related to actual peppercorns. They are the fruit of the Brazilian pepper tree and are grown in South America. These pink berries are soft and delicate with a papery, brittle shell. They have a fruity flavour that is slightly resinous, similar to juniper berries.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(84,'Saffron','Spice','Boil',0.0,0.0,'true','','Saffron is the most expensive spice on Earth. This is because of the labour involved in growing and harvesting the spice. Saffron is the red-yellow stigma of the crocus flower and must be hand-picked during short annual flowering seasons. Each flower produces only three stigmas, so it takes approximately 150 flowers to yield just one gram of dry saffron threads. ',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(85,'Sanaam Chiles','Herb','Boil',0.0,0.0,'true','','Sanaam chiles are red and flat, and are 2 to 4 inches in length. They have a medium-high heat.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(86,'Star Anise','Spice','Boil',0.0,0.0,'true','','Star anise is undisputedly the prettiest spice of them all. Native to China and Vietnam, star anise is the fruit of an evergreen magnolia tree. The fruits are in the shape of an eight-pointed star, and each point holds a shiny brown seed. Star anise has a sweet, licoricey taste, and is used to flavour several liqueurs such as Sambuca, Galliano and pastis. ',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(87,'Sumac','Spice','Boil',0.0,0.0,'true','','Sumac is the berry of a shrub that grows in the Mediterranean and parts of the Middle East. It has a tart, fruity flavour, and is used to add acidity to food.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(88,'Peppercorns, Szechuan','Spice','Boil',0.0,0.0,'true','','Szechuan pepper is the outer husk of the fruit of the Chinese prickly ash tree. The berries are dried and split open, and the bitter seeds inside are discarded. The flavour of Szechuan pepper is very fragrant, lemony and pungent and it has a biting astringency on the tongue',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(89,'Tien Tsin Chiles','Herb','Boil',0.0,0.0,'true','','Tien Tsin chiles are very hot Chinese chiles that are particularly suited to Hunan and Szechuan cuisines.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(90,'Tonka Beans','Herb','Boil',0.0,0.0,'true','','Tonka beans are very unusual little beans that grow primarily in the northern part of South America. They share a lot of similarities with vanilla beans, to the point where they are sometimes used as a vanilla substitute. They are black and wrinkly, about an inch long, and have a sweet flavour that is like a combination of vanilla, cloves and cinnamon with a nuttiness reminiscent of almonds. Really delicious and unusual.',-1,-1,0,1,'');
INSERT INTO "misc" (id,name,mtype,use,time,amount,amount_is_weight,use_for,notes,display_unit,display_scale,deleted,display,folder) VALUES(91,'Peppercorns, White','Spice','Boil',0.0,0.0,'true','','White peppercorns are picked from the vine when they are almost ripe - much later than black or green peppercorns. When picked, they are a yellowish-pink colour. The peppercorns are treated with water to remove the skin, and then sun-dried. White peppercorns contain less essential oil than black peppercorns, as this is in the skin, so they have less aroma and a sweetish pungency to them.',-1,-1,0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(1,'American Amber Ale','Ale','American Ale','10','B','BJCP',1.045,1.06,1.01,1.015,25.0,40.0,10.0,17.0,4.5,6.2,0.0,0.0,'Can overlap in color with American pale ales. However, American amber ales differ from American pale ales not only by being usually darker in color, but also by having more caramel flavor, more body, and usually being balanced more evenly between malt and bitterness. Should not have a strong chocolate or roast character that might suggest an American brown ale (although small amounts are OK).','Low to moderate hop aroma from dry hopping or late kettle additions of American hop varieties. A citrusy hop character is common, but not required. Moderately low to moderately high maltiness balances and sometimes masks the hop presentation, and usually shows a moderate caramel character. Esters vary from moderate to none. No diacetyl.Amber to coppery brown in color. Moderately large off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Moderate to high hop flavor from American hop varieties, which often but not always has a citrusy quality. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavor (and sometimes other character malts in lesser amounts). Malt and hop bitterness are usually balanced and mutually supportive. Fruity esters can be moderate to none. Caramel sweetness and hop flavor/bitterness can linger somewhat into the medium to full finish. No diacetyl.Medium to medium-full body. Carbonation moderate to high. Overall smooth finish without astringency often associated with high hopping rates. Stronger versions may have a slight alcohol warmth.Like an American pale ale with more body, more caramel richness, and a balance more towards malt than hops (although hop rates can be significant). Known simply as Red Ales in some regions, these beers were popularized in the hop-loving Northern California and the Pacific Northwest areas before spreading nationwide.','Pale ale malt, typically American two-row. Medium to dark crystal malts. May also contain specialty grains which add additional character and uniqueness. American hops, often with citrusy flavors, are common but others may also be used. Water can vary in sulfate and carbonate content.','North Coast Red Seal Ale, Tröegs HopBack Amber Ale, Deschutes Cinder Cone Red, Pyramid Broken Rake, St. Rogue Red Ale, Anderson Valley Boont Amber Ale, Lagunitas Censored Ale, Avery Redpoint Ale, McNeill’s Firehouse Amber Ale, Mendocino Red Tail Ale, Bell''s Amber',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(2,'American Barleywine','Ale','Strong Ale','19','C','BJCP',1.08,1.12,1.016,1.03,50.0,120.0,10.0,19.0,8.0,12.0,0.0,0.0,'The American version of the Barleywine tends to have a greater emphasis on hop bitterness, flavor and aroma than the English Barleywine, and often features American hop varieties. Differs from an Imperial IPA in that the hops are not extreme, the malt is more forward, and the body is richer and more characterful.','Very rich and intense maltiness. Hop character moderate to assertive and often showcases citrusy or resiny American varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Low to moderately strong fruity esters and alcohol aromatics. Malt character may be sweet, caramelly, bready, or fairly neutral. However, the intensity of aromatics often subsides with age. No diacetyl.Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in "legs" when beer is swirled in a glass.Strong, intense malt flavor with noticeable bitterness. Moderately low to moderately high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety). Low to moderate fruity esters. Noticeable alcohol presence, but sharp or solventy alcohol flavors are undesirable. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high. Roasted or burnt malt flavors are inappropriate. No diacetyl.Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be present, but not be excessively hot. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated. Normally aged significantly prior to release. Often associated with the winter or holiday season.','Well-modified pale malt should form the backbone of the grist. Some specialty or character malts may be used. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil.  Citrusy American hops are common, although any varieties can be used in quantity. Generally uses an attenuative American yeast.','Sierra Nevada Bigfoot, Great Divide Old Ruffian, Victory Old Horizontal, Rogue Old Crustacean, Avery Hog Heaven Barleywine, Bell''s Third Coast Old Ale, Anchor Old Foghorn, Three Floyds Behemoth, Stone Old Guardian, Bridgeport Old Knucklehead, Hair of the Dog Doggie Claws, Lagunitas Olde GnarleyWine, Smuttynose Barleywine, Flying Dog Horn Dog',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(3,'American Brown Ale','Ale','American Ale','10','C','BJCP',1.045,1.06,1.01,1.016,20.0,40.0,18.0,35.0,4.3,6.2,0.0,0.0,'A strongly flavored, hoppy brown beer, originated by American home brewers. Related to American Pale and American Amber Ales, although with more of a caramel and chocolate character, which tends to balance the hop bitterness and finish. Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft brewed examples. IPA-strength brown ales should be entered in the Specialty Beer category (23).','Malty, sweet and rich, which often has a chocolate, caramel, nutty and/or toasty quality. Hop aroma is typically low to moderate. Some interpretations of the style may feature a stronger hop aroma, a citrusy American hop character, and/or a fresh dry-hopped aroma (all are optional). Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly porter-like. The malt and hops are generally balanced. Moderately low to no diacetyl.Light to very dark brown color. Clear. Low to moderate off-white to light tan head.Medium to high malty flavor (often with caramel, toasty and/or chocolate flavors), with medium to medium-high bitterness. The medium to medium-dry finish provides an aftertaste having both malt and hops. Hop flavor can be light to moderate, and may optionally have a citrusy character. Very low to moderate fruity esters. Moderately low to no diacetyl.Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately high carbonation. Stronger versions may have some alcohol warmth in the finish.Can be considered a bigger, maltier, hoppier interpretation of Northern English brown ale or a hoppier, less malty Brown Porter, often including the citrus-accented hop presence that is characteristic of American hop varieties. ','Well-modified pale malt, either American or Continental, plus crystal and darker malts should complete the malt bill. American hops are typical, but UK or noble hops can also be used. Moderate carbonate water would appropriately balance the dark malt acidity.','Bell''s Best Brown, Smuttynose Old Brown Dog Ale, Big Sky Moose Drool Brown Ale, North Coast Acme Brown, Brooklyn Brown Ale, Lost Coast Downtown Brown, Left Hand Deep Cover Brown Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(4,'American IPA','Ale','India Pale Ale','14','B','BJCP',1.056,1.075,1.01,1.018,40.0,70.0,6.0,15.0,5.5,7.5,0.0,0.0,'','A prominent to intense hop aroma with a citrusy, floral, perfume-like, resinous, piney, and/or fruity character derived from American hops. Many versions are dry hopped and can have an additional grassy aroma, although this is not required. Some clean malty sweetness may be found in the background, but should be at a lower level than in English examples. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is also acceptable. Some alcohol may be noted.Color ranges from medium gold to medium reddish copper; some versions can have an orange-ish tint. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Good head stand with white to off-white color should persist.Hop flavor is medium to high, and should reflect an American hop character with citrusy, floral, resinous, piney or fruity aspects. Medium-high to very high hop bitterness, although the malt backbone will support the strong hop character and provide the best balance. Malt flavor should be low to medium, and is generally clean and malty sweet although some caramel or toasty flavors are acceptable at low levels. No diacetyl. Low fruitiness is acceptable but not required. The bitterness may linger into the aftertaste but should not be harsh. Medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation in the presence of malt sweetness. Some smooth alcohol warming can and should be sensed in stronger (but not all) versions. Body is generally less than in English counterparts.A decidedly hoppy and bitter, moderately strong American pale ale. An American version of the historical English style, brewed using American ingredients and attitude.','Pale ale malt (well-modified and suitable for single-temperature infusion mashing,''); American hops; American yeast that can give a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Water character varies from soft to moderately sulfate. Versions with a noticeable Rye character ("RyePA") should be entered in the Specialty category.','Bell''s Two-Hearted Ale, AleSmith IPA, Russian River Blind Pig IPA, Stone IPA, Three Floyds Alpha King, Great Divide Titan IPA, Bear Republic Racer 5 IPA, Victory Hop Devil, Sierra Nevada Celebration Ale, Anderson Valley Hop Ottin'', Dogfish Head 60 Minute IPA, Founder''s Centennial IPA, Anchor Liberty Ale, Harpoon IPA, Avery IPA',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(5,'American Pale Ale','Ale','American Ale','10','A','BJCP',1.045,1.06,1.01,1.015,30.0,45.0,5.0,14.0,4.5,6.2,0.0,0.0,'There is some overlap in color between American pale ale and American amber ale. The American pale ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops.','Usually moderate to strong hop aroma from dry hopping or late kettle additions of American hop varieties. A citrusy hop character is very common, but not required. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). Fruity esters vary from moderate to none. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Pale golden to deep amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Usually a moderate to high hop flavor, often showing a citrusy American hop character (although other hop varieties may be used). Low to moderately high clean malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence can be substantial. Caramel flavors are usually restrained or absent. Fruity esters can be moderate to none. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Medium-light to medium body. Carbonation moderate to high. Overall smooth finish without astringency often associated with high hopping rates.Refreshing and hoppy, yet with sufficient supporting malt. An American adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Often lighter in color, cleaner in fermentation by-products, and having less caramel flavors than English counterparts.','Pale ale malt, typically American two-row. American hops, often but not always ones with a citrusy character. American ale yeast. Water can vary in sulfate content, but carbonate content should be relatively low. Specialty grains may add character and complexity, but generally make up a relatively small portion of the grist. Grains that add malt flavor and richness, light sweetness, and toasty or bready notes are often used (along with late hops) to differentiate brands.','Sierra Nevada Pale Ale, Stone Pale Ale, Great Lakes Burning River Pale Ale, Bear Republic XP Pale Ale, Anderson Valley Poleeko Gold Pale Ale, Deschutes Mirror Pond, Full Sail Pale Ale, Three Floyds X-Tra Pale Ale, Firestone Pale Ale, Left Hand Brewing Jackman''s Pale Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(6,'American Stout','Ale','Stout','13','E','BJCP',1.05,1.075,1.01,1.022,35.0,75.0,30.0,40.0,5.0,7.0,0.0,0.0,'Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts).','Moderate to strong aroma of roasted malts, often having a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are low to none. Medium to very low hop aroma, often with a citrusy or resiny American hop character. Esters are optional, but can be present up to medium intensity. Light alcohol-derived aromatics are also optional. No diacetyl.Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.Moderate to very high roasted malt flavors, often tasting of coffee, roasted coffee beans, dark or bittersweet chocolate. May have a slightly burnt coffee ground flavor, but this character should not be prominent if present. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Hop flavor can be low to high, and generally reflects citrusy or resiny American varieties. Light esters may be present but are not required. Medium to dry finish, occasionally with a light burnt quality. Alcohol flavors can be present up to medium levels, but smooth. No diacetyl.Medium to full body. Can be somewhat creamy, particularly if a small amount of oats have been used to enhance mouthfeel. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot.A hoppy, bitter, strongly roasted Foreign-style Stout (of the export variety). ','Common American base malts and yeast. Varied use of dark and roasted malts, as well as caramel-type malts. Adjuncts such as oatmeal may be present in low quantities. American hop varieties.','Rogue Shakespeare Stout, Deschutes Obsidian Stout, Sierra Nevada Stout, North Coast Old No. 38, Bar Harbor Cadillac Mountain Stout, Avery Out of Bounds Stout, Lost Coast 8 Ball Stout, Mad River Steelhead Extra Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(7,'American Wheat or Rye Beer','Ale','Light Hybrid Beer','6','D','BJCP',1.04,1.055,1.008,1.013,15.0,30.0,3.0,6.0,4.0,5.5,0.0,0.0,'Different variations exist, from an easy-drinking fairly sweet beer to a dry, aggressively hopped beer with a strong wheat or rye flavor. Dark versions approximating dunkelweizens (with darker, richer malt flavors in addition to the color) should be entered in the Specialty Beer category. THE BREWER SHOULD SPECIFY IF RYE IS USED; IF NO DOMINANT GRAIN IS SPECIFIED, WHEAT WILL BE ASSUMED.','Low to moderate grainy wheat or rye character. Some malty sweetness is acceptable. Esters can be moderate to none, although should reflect American yeast strains. The clove and banana aromas common to German hefeweizens are inappropriate. Hop aroma may be low to moderate, and can have either a citrusy American or a spicy or floral noble hop character. Slight crisp sharpness is optional. No diacetyl.Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating the German hefeweizen style of beer. Big, long-lasting white head.Light to moderately strong grainy wheat or rye flavor, which can linger into the finish. Rye versions are richer and spicier than wheat. May have a moderate malty sweetness or finish quite dry. Low to moderate hop bitterness, which sometimes lasts into the finish. Low to moderate hop flavor (citrusy American or spicy/floral noble). Esters can be moderate to none, but should not take on a German Weizen character (banana). No clove phenols, although a light spiciness from wheat or rye is acceptable. May have a slightly crisp or sharp finish. No diacetyl.Medium-light to medium body. Medium-high to high carbonation. May have a light alcohol warmth in stronger examples.Refreshing wheat or rye beers that can display more hop character and less yeast character than their German cousins. ','Clean American ale yeast, but also can be made as a lager. Large proportion of wheat malt (often 50% or more, but this isn''t a legal requirement as in Germany). American or noble hops. American Rye Beers can follow the same general guidelines, substituting rye for some or all of the wheat. Other base styles (e.g., IPA, stout) with a noticeable rye character should be entered in the Specialty Beer category (23).','Bell''s Oberon, Harpoon UFO Hefeweizen, Three Floyds Gumballhead, Pyramid Hefe-Weizen, Widmer Hefeweizen, Sierra Nevada Unfiltered Wheat Beer, Anchor Summer Beer, Redhook Sunrye, Real Ale Full Moon Pale Rye',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(8,'Applewine','Cider','Specialty Cider and Perry','28','C','BJCP',1.07,1.1,0.995,1.01,0.0,0.0,0.0,0.0,9.0,12.0,0.0,0.0,'Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (dry or medium).',' The term for this category is traditional but possibly misleading: it is simply a cider with substantial added sugar to achieve higher alcohol than a common cider. Comparable to a Common Cider. Cider character must be distinctive. Very dry to slightly medium.Clear to brilliant, pale to medium-gold. Cloudiness or hazes are inappropriate. Dark colors are not expected unless strongly tannic varieties of fruit were used.Comparable to a Common Cider. Cider character must be distinctive. Very dry to slightly medium.Lighter than other ciders, because higher alcohol is derived from addition of sugar rather than juice. Carbonation may range from still to champagne-like.Like a dry white wine, balanced, and with low astringency and bitterness. ','','[US] AEppelTreow Summer''s End (WI), Wandering Aengus Pommeau (OR), Uncle John''s Fruit House Winery Fruit House Apple (MI), Irvine''s Vintage Ciders (WA)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(9,'Baltic Porter','Ale','Porter','12','C','BJCP',1.06,1.09,1.016,1.024,20.0,40.0,17.0,30.0,5.5,9.5,0.0,0.0,'May also be described as an Imperial Porter, although heavily roasted or hopped versions should be entered as either Imperial Stouts (13F) or Specialty Beers (23).','Rich malty sweetness often containing caramel, toffee, nutty to deep toast, and/or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries or currants, occasionally with a vinous Port-like quality. Some darker malt character that is deep chocolate, coffee or molasses but never burnt. No hops. No sourness. Very smooth.Dark reddish copper to opaque dark brown (not black). Thick, persistent tan-colored head. Clear, although darker versions can be opaque.As with aroma, has a rich malty sweetness with a complex blend of deep malt, dried fruit esters, and alcohol. Has a prominent yet smooth schwarzbier-like roasted flavor that stops short of burnt. Mouth-filling and very smooth. Clean lager character; no diacetyl. Starts sweet but darker malt flavors quickly dominates and persists through finish. Just a touch dry with a hint of roast coffee or licorice in the finish. Malt can have a caramel, toffee, nutty, molasses and/or licorice complexity. Light hints of black currant and dark fruits. Medium-low to medium bitterness from malt and hops, just to provide balance. Hop flavor from slightly spicy hops (Lublin or Saaz types) ranges from none to medium-low.Generally quite full-bodied and smooth, with a well-aged alcohol warmth (although the rarer lower gravity Carnegie-style versions will have a medium body and less warmth). Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level. Most versions are in the 7-8.5% ABV range.A Baltic Porter often has the malt flavors reminiscent of an English brown porter and the restrained roast of a schwarzbier, but with a higher OG and alcohol content than either. Very complex, with multi-layered flavors. Traditional beer from countries bordering the Baltic Sea. Derived from English porters but influenced by Russian Imperial Stouts.','Generally lager yeast (cold fermented if using ale yeast). Debittered chocolate or black malt. Munich or Vienna base malt. Continental hops. May contain crystal malts and/or adjuncts. Brown or amber malt common in historical recipes.','Sinebrychoff Porter (Finland), Okocim Porter (Poland), Zywiec Porter (Poland), Baltika #6 Porter (Russia), Carnegie Stark Porter (Sweden), Aldaris Porteris (Latvia), Utenos Porter (Lithuania), Stepan Razin Porter (Russia), Nøgne ø porter (Norway), Neuzeller Kloster-Bräu Neuzeller Porter (Germany), Southampton Imperial Baltic Porter',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(10,'Belgian Blond Ale','Ale','Belgian Strong Ale','18','A','BJCP',1.062,1.075,1.008,1.018,15.0,30.0,4.0,7.0,6.0,7.5,0.0,0.0,'Similar strength as a dubbel, similar character as a Belgian Strong Golden Ale or Tripel, although a bit sweeter and not as bitter. Often has an almost lager-like character, which gives it a cleaner profile in comparison to the other styles. Belgians use the term "Blond," while the French spell it "Blonde." Most commercial examples are in the 6.5 - 7% ABV range. Many Trappist table beers (singles or Enkels) are called "Blond" but these are not representative of this style.','Light earthy or spicy hop nose, along with a lightly sweet Pils malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex.Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.Smooth, light to moderate Pils malt sweetness initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate.Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy. ','Belgian Pils malt, aromatic malts, sugar, Belgian yeast strains that produce complex alcohol, phenolics and perfumy esters, noble, Styrian Goldings or East Kent Goldings hops. No spices are traditionally used, although the ingredients and fermentation by-products may give an impression of spicing (often reminiscent of oranges or lemons).','Leffe Blond, Affligem Blond, La Trappe (Koningshoeven) Blond, Grimbergen Blond, Val-Dieu Blond, Straffe Hendrik Blonde, Brugse Zot, Pater Lieven Blond Abbey Ale, Troubadour Blond Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(11,'Belgian Dark Strong Ale','Ale','Belgian Strong Ale','18','E','BJCP',1.075,1.11,1.01,1.024,20.0,30.0,12.0,22.0,8.0,11.0,0.0,0.0,'Authentic Trappist versions tend to be drier (Belgians would say “more digestible”) than Abbey versions, which can be rather sweet and full-bodied. Higher bitterness is allowable in Abbey-style beers with a higher FG. Barleywine-type beers (e.g., Scaldis/Bush, La Trappe Quadrupel, Weyerbacher QUAD) and Spiced/Christmas-type beers (e.g., N’ice Chouffe, Affligem Nöel) should be entered in the Belgian Specialty Ale category (16E), not this category. Traditionally bottle-conditioned (“refermented in the bottle”).','Complex, with a rich malty sweetness, significant esters and alcohol, and an optional light to moderate spiciness. The malt is rich and strong, and can have a Munich-type quality often with a caramel, toast and/or bready aroma. The fruity esters are strong to moderately low, and can contain raisin, plum, dried cherry, fig or prune notes. Spicy phenols may be present, but usually have a peppery quality not clove-like. Alcohols are soft, spicy, perfumy and/or rose-like, and are low to moderate in intensity. Hops are not usually present (but a very low noble hop aroma is acceptable). No diacetyl. No dark/roast malt aroma. No hot alcohols or solventy aromas. No recognizable spice additions.Deep amber to deep coppery-brown in color ("dark" in this context implies "more deeply colored than golden"). Huge, dense, moussy, persistent cream- to light tan-colored head. Can be clear to somewhat hazy.Similar to aroma (same malt, ester, phenol, alcohol, hop and spice comments apply to flavor as well). Moderately malty or sweet on palate. Finish is variable depending on interpretation (authentic Trappist versions are moderately dry to dry, Abbey versions can be medium-dry to sweet). Low bitterness for a beer of this strength; alcohol provides some of the balance to the malt. Sweeter and more full-bodied beers will have a higher bitterness level to balance. Almost all versions are malty in the balance, although a few are lightly bitter. The complex and varied flavors should blend smoothly and harmoniously.High carbonation but no carbonic acid "bite." Smooth but noticeable alcohol warmth. Body can be variable depending on interpretation (authentic Trappist versions tend to be medium-light to medium, while Abbey-style beers can be quite full and creamy).A dark, very rich, complex, very strong Belgian ale. Complex, rich, smooth and dangerous. Most versions are unique in character reflecting characteristics of individual breweries.','Belgian yeast strains prone to production of higher alcohols, esters, and sometimes phenolics are commonly used. Water can be soft to hard. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Homebrewers may use Belgian Pils or pale base malt, Munich-type malts for maltiness, other Belgian specialty grains for character. Caramelized sugar syrup or unrefined sugars lightens body and adds color and flavor (particularly if dark sugars are used). Noble-type, English-type or Styrian Goldings hops commonly used. Spices generally not used; if used, keep subtle and in the background. Avoid US/UK crystal type malts (these provide the wrong type of sweetness).','Westvleteren 12 (yellow cap), Rochefort 10 (blue cap), St. Bernardus Abt 12, Gouden Carolus Grand Cru of the Emperor, Achel Extra Brune, Rochefort 8 (green cap), Southampton Abbot 12, Chimay Grande Reserve (Blue), Brasserie des Rocs Grand Cru, Gulden Draak, Kasteelbier Bière du Chateau Donker, Lost Abbey Judgment Day, Russian River Salvation',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(12,'Belgian Dubbel','Ale','Belgian Strong Ale','18','B','BJCP',1.062,1.075,1.008,1.018,15.0,25.0,10.0,17.0,6.3,7.6,0.0,0.0,'Most commercial examples are in the 6.5 - 7% ABV range. Traditionally bottle-conditioned ("refermented in the bottle").','Complex, rich malty sweetness; malt may have hints of chocolate, caramel and/or toast (but never roasted or burnt aromas). Moderate fruity esters (usually including raisins and plums, sometimes also dried cherries). Esters sometimes include banana or apple. Spicy phenols and higher alcohols are common (may include light clove and spice, peppery, rose-like and/or perfumy notes). Spicy qualities can be moderate to very low. Alcohol, if present, is soft and never hot or solventy. A small number of examples may include a low noble hop aroma, but hops are usually absent. No diacetyl.Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.Similar qualities as aroma. Rich, complex medium to medium-full malty sweetness on the palate yet finishes moderately dry. Complex malt, ester, alcohol and phenol interplay (raisiny flavors are common; dried fruit flavors are welcome; clove-like spiciness is optional). Balance is always toward the malt. Medium-low bitterness that doesn''t persist into the finish. Low noble hop flavor is optional and not usually present. No diacetyl. Should not be as malty as a bock and should not have crystal malt-type sweetness. No spices.Medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth. Smooth, never hot or solventy.: A deep reddish, moderately strong, malty, complex Belgian ale. Originated at monasteries in the Middle Ages, and was revived in the mid-1800s after the Napoleonic era.','Belgian yeast strains prone to production of higher alcohols, esters, and phenolics are commonly used. Water can be soft to hard. Impression of complex grain bill, although traditional versions are typically Belgian Pils malt with caramelized sugar syrup or other unrefined sugars providing much of the character. Homebrewers may use Belgian Pils or pale base malt, Munich-type malts for maltiness, Special B for raisin flavors, CaraVienne or CaraMunich for dried fruit flavors, other specialty grains for character. Dark caramelized sugar syrup or sugars for color and rum-raisin flavors. Noble-type, English-type or Styrian Goldings hops commonly used. No spices are traditionally used, although restrained use is allowable.','Westmalle Dubbel, St. Bernardus Pater 6, La Trappe Dubbel, Corsendonk Abbey Brown Ale, Grimbergen Double, Affligem Dubbel, Chimay Premiere (Red), Pater Lieven Bruin, Duinen Dubbel, St. Feuillien Brune, New Belgium Abbey Belgian Style Ale, Stoudts Abbey Double Ale, Russian River Benediction, Flying Fish Dubbel, Lost Abbey Lost and Found Abbey Ale, Allagash Double',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(13,'Belgian Golden Strong Ale','Ale','Belgian Strong Ale','18','D','BJCP',1.07,1.095,1.005,1.016,22.0,35.0,3.0,6.0,7.5,10.5,0.0,0.0,'Strongly resembles a Tripel, but may be even paler, lighter-bodied and even crisper and drier. The drier finish and lighter body also serves to make the assertive hopping and spiciness more prominent. References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). The best examples are complex and delicate. High carbonation helps to bring out the many flavors and to increase the perception of a dry finish. Traditionally bottle-conditioned ("refermented in the bottle").','Complex with significant fruity esters, moderate spiciness and low to moderate alcohol and hop aromas. Esters are reminiscent of lighter fruits such as pears, oranges or apples. Moderate spicy, peppery phenols. A low to moderate yet distinctive perfumy, floral hop character is often present. Alcohols are soft, spicy, perfumy and low-to-moderate in intensity. No hot alcohol or solventy aromas. The malt character is light. No diacetyl.Yellow to medium gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, often beady, white head resulting in characteristic "Belgian lace" on the glass as it fades.Marriage of fruity, spicy and alcohol flavors supported by a soft malt character. Esters are reminiscent of pears, oranges or apples. Low to moderate phenols are peppery in character. A low to moderate spicy hop character is often present. Alcohols are soft, spicy, often a bit sweet and are low-to-moderate in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness leads to a dry finish with a low to moderately bitter aftertaste. No diacetyl.Very highly carbonated. Light to medium body, although lighter than the substantial gravity would suggest (thanks to sugar and high carbonation). Smooth but noticeable alcohol warmth. No hot alcohol or solventy character. Always effervescent. Never astringent.A golden, complex, effervescent, strong Belgian-style ale. Originally developed by the Moortgat brewery after WWII as a response to the growing popularity of Pilsner beers.','The light color and relatively light body for a beer of this strength are the result of using Pilsner malt and up to 20% white sugar. Noble hops or Styrian Goldings are commonly used. Belgian yeast strains are used that produce fruity esters, spicy phenolics and higher alcohols often aided by slightly warmer fermentation temperatures. Fairly soft water.','Duvel, Russian River Damnation, Hapkin, Lucifer, Brigand, Judas, Delirium Tremens, Dulle Teve, Piraat, Great Divide Hades, Avery Salvation, North Coast Pranqster, Unibroue Eau Benite, AleSmith Horny Devil',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(14,'Belgian Pale Ale','Ale','Belgian and French Ale','16','B','BJCP',1.048,1.054,1.01,1.014,20.0,30.0,8.0,14.0,4.8,5.5,0.0,0.0,'Most commonly found in the Flemish provinces of Antwerp and Brabant. Considered "everyday" beers (Category I). Compared to their higher alcohol Category S cousins, they are Belgian "session beers" for ease of drinking. Nothing should be too pronounced or dominant; balance is the key.','Prominent aroma of malt with moderate fruity character and low hop aroma. Toasty, biscuity malt aroma. May have an orange- or pear-like fruitiness though not as fruity/citrusy as many other Belgian ales. Distinctive floral or spicy, low to moderate strength hop character optionally blended with background level peppery, spicy phenols. No diacetyl.Amber to copper in color. Clarity is very good. Creamy, rocky, white head often fades more quickly than other Belgian beers.Fruity and lightly to moderately spicy with a soft, smooth malt and relatively light hop character and low to very low phenols. May have an orange- or pear-like fruitiness, though not as fruity/citrusy as many other Belgian ales. Has an initial soft, malty sweetness with a toasty, biscuity, nutty malt flavor. The hop flavor is low to none. The hop bitterness is medium to low, and is optionally complemented by low amounts of peppery phenols. There is a moderately dry to moderately sweet finish, with hops becoming more pronounced in those with a drier finish.Medium to medium-light body. Alcohol level is restrained, and any warming character should be low if present. No hot alcohol or solventy character. Medium carbonation.A fruity, moderately malty, somewhat spicy, easy-drinking, copper-colored ale. Produced by breweries with roots as far back as the mid-1700s, the most well-known examples were perfected after the Second World War with some influence from Britain, including hops and yeast strains. ','Pilsner or pale ale malt contributes the bulk of the grist with (cara) Vienna and Munich malts adding color, body and complexity. Sugar is not commonly used as high gravity is not desired. Noble hops, Styrian Goldings, East Kent Goldings or Fuggles are commonly used. Yeasts prone to moderate production of phenols are often used but fermentation temperatures should be kept moderate to limit this character.','De Koninck, Speciale Palm, Dobble Palm, Russian River Perdition, Ginder Ale, Op-Ale, St. Pieters Zinnebir, Brewer''s Art House Pale Ale, Avery Karma, Eisenbahn Pale Ale, Ommegang Rare Vos (unusual in its 6.5% ABV strength)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(15,'Belgian Specialty Ale','Ale','Belgian and French Ale','16','E','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,20.0,0.0,0.0,'This is a catch-all category for any Belgian-style beer not fitting any other Belgian style category. The category can be used for clones of specific beers (e.g., Orval, La Chouffe,''); to produce a beer fitting a broader style that doesn''t have its own category; or to create an artisanal or experimental beer of the brewer''s own choosing (e.g., strong Belgian golden ale with spices, something unique). Creativity is the only limit in brewing but the entrants must identify what is special about their entry. This category may be used as an "incubator" for recognized styles for which there is not yet a formal BJCP category. Some styles falling into this classification include: Blond Trappist table beer, Artisanal Blond, Artisanal Amber, Artisanal Brown, Belgian-style Barleywines, Trappist Quadrupels, Belgian Spiced Christmas Beers, Belgian Stout, Belgian IPA, Strong and/or Dark Saison, Fruit-based Flanders Red/Brown. The judges must understand the brewer''s intent in order to properly judge an entry in this category. THE BREWER MUST SPECIFY EITHER THE BEER BEING CLONED, THE NEW STYLE BEING PRODUCED OR THE SPECIAL INGREDIENTS OR PROCESSES USED. Additional background information on the style and/or beer may be provided to judges to assist in the judging, including style parameters or detailed descriptions of the beer. Beers fitting other Belgian categories should not be entered in this category.','Variable. Most exhibit varying amounts of fruity esters, spicy phenols and/or yeast-borne aromatics. Aromas from actual spice additions may be present. Hop aroma may be none to high, and may include a dry-hopped character. Malt aroma may be low to high, and may include character of non-barley grains such as wheat or rye. Some may include aromas of Belgian microbiota, most commonly Brettanomyces and/or Lactobacillus. No diacetyl.Variable. Color varies considerably from pale gold to very dark. Clarity may be hazy to clear. Head retention is usually good. Generally moderate to high carbonation.Variable. A great variety of flavors are found in these beers. Maltiness may be light to quite rich. Hop flavor and bitterness may be low to high. Spicy flavors may be imparted by yeast (phenolics) and/or actual spice additions. May include characteristics of grains other than barley, such as wheat or rye. May include flavors produced by Belgian microbiota such as Brettanomyces or Lactobacillus. May include flavors from adjuncts such as caramelized sugar syrup or honey.Variable. Some are well-attenuated, thus fairly light-bodied for their original gravity, while others are thick and rich. Most are moderately to highly carbonated. A warming sensation from alcohol may be present in stronger examples. A "mouth puckering" sensation may be present from acidity.Variable. This category encompasses a wide range of Belgian ales produced by truly artisanal brewers more concerned with creating unique products than in increasing sales. Unique beers of small, independent Belgian breweries that have come to enjoy local popularity but may be far less well-known outside of their own regions. Many have attained "cult status" in the U.S. (and other parts of the world) and now owe a significant portion of their sales to export.','May include herbs and/or spices. May include unusual grains and malts, though the grain character should be apparent if it is a key ingredient. May include adjuncts such as caramelized sugar syrup and honey. May include Belgian microbiota such as Brettanomyces or Lactobacillus. Unusual techniques, such as blending, may be used through primarily to arrive at a particular result. The process alone does not make a beer unique to a blind judging panel if the final product does not taste different.','Orval; De Dolle’s Arabier, Oerbier, Boskeun and Stille Nacht; La Chouffe, McChouffe, Chouffe Bok and N’ice Chouffe; Ellezelloise Hercule Stout and Quintine Amber; Unibroue Ephemere, Maudite, Don de Dieu, etc.; Minty; Zatte Bie; Caracole Amber, Saxo and Nostradamus; Silenrieu Sara and Joseph; Fantôme Black Ghost and Speciale Noël; Dupont Moinette, Moinette Brune, and Avec Les Bons Voeux de la Brasserie Dupont; St. Fullien Noël; Gouden Carolus Noël; Affligem Nöel; Guldenburg and Pere Noël; De Ranke XX Bitter and Guldenberg; Poperings Hommelbier; Bush (Scaldis); Moinette Brune; Grottenbier; La Trappe Quadrupel; Weyerbacher QUAD; Bière de Miel; Verboden Vrucht; New Belgium 1554 Black Ale; Cantillon Iris; Russian River Temptation; Lost Abbey Cuvee de Tomme and Devotion, Lindemans Kriek and Framboise, and many more',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(16,'Belgian Tripel','Ale','Belgian Strong Ale','18','C','BJCP',1.075,1.085,1.008,1.014,20.0,40.0,4.5,7.0,7.5,9.5,0.0,0.0,'High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps to bring out the many flavors and to increase the perception of a dry finish. Most Trappist versions have at least 30 IBUs and are very dry. Traditionally bottle-conditioned ("refermented in the bottle").','Complex with moderate to significant spiciness, moderate fruity esters and low alcohol and hop aromas. Generous spicy, peppery, sometimes clove-like phenols. Esters are often reminiscent of citrus fruits such as oranges, but may sometimes have a slight banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is usually found. Alcohols are soft, spicy and low in intensity. No hot alcohol or solventy aromas. The malt character is light. No diacetyl.Deep yellow to deep gold in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic "Belgian lace" on the glass as it fades.Marriage of spicy, fruity and alcohol flavors supported by a soft malt character. Low to moderate phenols are peppery in character. Esters are reminiscent of citrus fruit such as orange or sometimes lemon. A low to moderate spicy hop character is usually found. Alcohols are soft, spicy, often a bit sweet and low in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness lends a dry finish with a moderately bitter aftertaste. No diacetyl.Medium-light to medium body, although lighter than the substantial gravity would suggest (thanks to sugar and high carbonation). High alcohol content adds a pleasant creaminess but little to no obvious warming sensation. No hot alcohol or solventy character. Always effervescent. Never astringent.Strongly resembles a Strong Golden Ale but slightly darker and somewhat fuller-bodied. Usually has a more rounded malt flavor but should not be sweet. Originally popularized by the Trappist monastery at Westmalle.','The light color and relatively light body for a beer of this strength are the result of using Pilsner malt and up to 20% white sugar. Noble hops or Styrian Goldings are commonly used. Belgian yeast strains are used – those that produce fruity esters, spicy phenolics and higher alcohols – often aided by slightly warmer fermentation temperatures. Spice additions are generally not traditional, and if used, should not be recognizable as such. Fairly soft water.','Westmalle Tripel, La Rulles Tripel, St. Bernardus Tripel, Chimay Cinq Cents (White), Watou Tripel, Val-Dieu Triple, Affligem Tripel, Grimbergen Tripel, La Trappe Tripel, Witkap Pater Tripel, Corsendonk Abbey Pale Ale, St. Feuillien Tripel, Bink Tripel, Tripel Karmeliet, New Belgium Trippel, Unibroue La Fin du Monde, Dragonmead Final Absolution, Allagash Tripel Reserve, Victory Golden Monkey',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(17,'Berliner Weisse','Ale','Sour Ale','17','A','BJCP',1.028,1.032,1.003,1.006,3.0,8.0,2.0,3.0,2.8,3.8,0.0,0.0,'In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8P. Often served with the addition of a shot of sugar syrups (''mit schuss'') flavored with raspberry (''himbeer'') or woodruff (''waldmeister'') or even mixed with Pils to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.','A sharply sour, somewhat acidic character is dominant. Can have up to a moderately fruity character. The fruitiness may increase with age and a flowery character may develop. A mild Brettanomyces aroma may be present. No hop aroma, diacetyl, or DMS.Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention due to high acidity and low protein and hop content. Always effervescent.Clean lactic sourness dominates and can be quite strong, although not so acidic as a lambic. Some complementary bready or grainy wheat flavor is generally noticeable. Hop bitterness is very low. A mild Brettanomyces character may be detected, as may a restrained fruitiness (both are optional). No hop flavor. No diacetyl or DMS.Light body. Very dry finish. Very high carbonation. No sensation of alcohol.A very pale, sour, refreshing, low-alcohol wheat ale. A regional specialty of Berlin; referred to by Napoleon''s troops in 1809 as "the Champagne of the North" due to its lively and elegant character. Only two traditional breweries still produce the product.','Wheat malt content is typically 50% of the grist (as with all German wheat beers) with the remainder being Pilsner malt. A symbiotic fermentation with top-fermenting yeast and Lactobacillus delbruckii provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by extended cool aging. Hop bitterness is extremely low. A single decoction mash with mash hopping is traditional.','Schultheiss Berliner Weisse, Berliner Kindl Weisse, Nodding Head Berliner Weisse, Weihenstephan 1809 (unusual in its 5% ABV), Bahnhof Berliner Style Weisse, Southampton Berliner Weisse, Bethlehem Berliner Weisse, Three Floyds Deesko',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(18,'Bière de Garde','Ale','Belgian and French Ale','16','D','BJCP',1.06,1.08,1.008,1.016,18.0,28.0,6.0,19.0,6.0,8.5,0.0,0.0,'Three main variations are included in the style: the brown (brune), the blond (blonde), and the amber (ambrée). The darker versions will have more malt character, while the paler versions can have more hops (but still are malt-focused beers). A related style is Bière de Mars, which is brewed in March (Mars) for present use and will not age as well. Attenuation rates are in the 80-85% range. Some fuller-bodied examples exist, but these are somewhat rare.','Prominent malty sweetness, often with a complex, light to moderate toasty character. Some caramelization is acceptable. Low to moderate esters. Little to no hop aroma (may be a bit spicy or herbal). Commercial versions will often have a musty, woodsy, cellar-like character that is difficult to achieve in homebrew.  Paler versions will still be malty but will lack richer, deeper aromatics and may have a bit more hops. No diacetyl.Three main variations exist (blond, amber and brown), so color can range from golden blonde to reddish-bronze to chestnut brown. Clarity is good to poor, although haze is not unexpected in this type of often unfiltered beer. Well-formed head, generally white to off-white (varies by beer color), supported by high carbonation.Medium to high malt flavor often with a toasty, toffee-like or caramel sweetness. Malt flavors and complexity tend to increase as beer color darkens. Low to moderate esters and alcohol flavors. Medium-low hop bitterness provides some support, but the balance is always tilted toward the malt. The malt flavor lasts into the finish but the finish is medium-dry to dry, never cloying. Alcohol can provide some additional dryness in the finish. Low to no hop flavor, although paler versions can have slightly higher levels of herbal or spicy hop flavor (which can also come from the yeast). Smooth, well-lagered character. No diacetyl.Medium to medium-light (lean) body, often with a smooth, silky character. Moderate to high carbonation. Moderate alcohol, but should be very smooth and never hot.A fairly strong, malt-accentuated, lagered artisanal farmhouse beer. Name literally means "beer which has been kept or lagered." A traditional artisanal farmhouse ale from Northern France brewed in early spring and kept in cold cellars for consumption in warmer weather. It is now brewed year-round. Related to the Belgian Saison style, the main difference is that the Bière de Garde is rounder, richer, sweeter, malt-focused, often has a "cellar" character, and lacks the spicing and tartness of a Saison.','The "cellar" character in commercial examples is unlikely to be duplicated in homebrews as it comes from indigenous yeasts and molds. Commercial versions often have a "corked", dry, astringent character that is often incorrectly identified as "cellar-like." Homebrews therefore are usually cleaner. Base malts vary by beer color, but usually include pale, Vienna and Munich types. Kettle caramelization tends to be used more than crystal malts, when present. Darker versions will have richer malt complexity and sweetness from crystal-type malts. Sugar may be used to add flavor and aid in the dry finish. Lager or ale yeast fermented at cool ale temperatures, followed by long cold conditioning (4-6 weeks for commercial operations). Soft water. Floral, herbal or spicy continental hops.','Jenlain (amber), Jenlain Bière de Printemps (blond), St. Amand (brown), Ch''Ti Brun (brown), Ch''Ti Blond (blond), La Choulette (all 3 versions), La Choulette Bière des Sans Culottes (blond), Saint Sylvestre 3 Monts (blond), Biere Nouvelle (brown), Castelain (blond), Jade (amber), Brasseurs Bière de Garde (amber), Southampton Bière de Garde (amber), Lost Abbey Avante Garde (blond)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(19,'Blonde Ale','Ale','Light Hybrid Beer','6','B','BJCP',1.038,1.054,1.008,1.013,15.0,28.0,3.0,6.0,3.8,5.5,0.0,0.0,'In addition to the more common American Blonde Ale, this category can also include modern English Summer Ales, American Kölsch-style beers, and less assertive American and English pale ales.','Light to moderate sweet malty aroma. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety. No diacetyl.Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent. Low to medium esters optional, but are commonly found in many examples. Light to moderate hop flavor (any variety), but shouldn''t be overly aggressive. Low to medium bitterness, but the balance is normally towards the malt. Finishes medium-dry to somewhat sweet. No diacetyl.Medium-light to medium body. Medium to high carbonation. Smooth without harsh bitterness or astringency.Easy-drinking, approachable, malt-oriented American craft beer. Currently produced by many (American) microbreweries and brewpubs. Regional variations exist (many West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the entry-level craft beer.','Generally all malt, but can include up to 25% wheat malt and some sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned. Some versions may have honey, spices and/or fruit added, although if any of these ingredients are stronger than a background flavor they should be entered in specialty, spiced or fruit beer categories instead. Extract versions should only use the lightest malt extracts and avoid kettle caramelization.','Pelican Kiwanda Cream Ale, Russian River Aud Blonde, Rogue Oregon Golden Ale, Widmer Blonde Ale, Fuller''s Summer Ale, Hollywood Blonde, Redhook Blonde',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(20,'Bohemian Pilsener','Lager','Pilsner','2','B','BJCP',1.044,1.056,1.013,1.017,35.0,45.0,3.5,6.0,4.2,5.4,0.0,0.0,'Uses Moravian malted barley and a decoction mash for rich, malt character. Saaz hops and low sulfate, low carbonate water provide a distinctively soft, rounded hop profile. Traditional yeast sometimes can provide a background diacetyl note. Dextrins provide additional body, and diacetyl enhances the perception of a fuller palate.','Rich with complex malt and a spicy, floral Saaz hop bouquet. Some pleasant, restrained diacetyl is acceptable, but need not be present. Otherwise clean, with no fruity esters.Very pale gold to deep burnished gold, brilliant to very clear, with a dense, long-lasting, creamy white head.Rich, complex maltiness combined with a pronounced yet soft and rounded bitterness and spicy flavor from Saaz hops. Some diacetyl is acceptable, but need not be present. Bitterness is prominent but never harsh, and does not linger. The aftertaste is balanced between malt and hops. Clean, no fruity esters.Medium-bodied (although diacetyl, if present, may make it seem medium-full), medium carbonation.Crisp, complex and well-rounded yet refreshing. First brewed in 1842, this style was the original clear, light-colored beer.','Soft water with low mineral content, Saaz hops, Moravian malted barley, Czech lager yeast.','Pilsner Urquell, Krušovice Imperial 12°, Budweiser Budvar (Czechvar in the US), Czech Rebel, Staropramen, Gambrinus Pilsner, Zlaty Bazant Golden Pheasant, Dock Street Bohemian Pilsner',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(21,'Braggot','Mead','Other Mead','26','B','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Sometimes known as "bracket" or "brackett." The fermentable sugars come from a balance of malt or malt extract and honey, although the specific balance is open to creative interpretation by brewers. See standard description for entrance requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the base style or beer or types of malt used. Products with a relatively low proportion of honey should be entered in the Specialty Beer category as a Honey Beer.',' A Braggot is a mead made with malt. Depending on the sweetness, strength and base style of beer, a subtle to distinctly identifiable honey and beer character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The honey and beer/malt character should be complementary and balanced, although not always evenly balanced. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). If a base style of beer or type of malt is declared, the aroma might have a subtle to very noticeable character reflective of the beer style (different styles and malts have different intensities and characters). A hop aroma (any variety or intensity) is optional; if present, it should blend harmoniously with the other elements. Standard description applies for remainder of characteristics.Standard description does not apply due to beer-like characteristics. Clarity may be good to brilliant, although many braggots are not as clear as other meads. A light to moderate head with some retention is expected. Color may range from light straw to dark brown or black, depending on the variety of malt and honey used. The color should be characteristic of the declared beer style and/or honey used, if a variety is declared. Stronger versions may show signs of body (e.g., legs).Displays a balanced character identifiable as both a beer and a mead, although the relative intensity of flavors is greatly affected by the sweetness, strength, base style of beer, and variety of honey used. If a beer style is declared, the braggot should have some character traceable to the style although the flavors will be different due to the presence of honey. If a variety of honey is declared, the braggot should feature a subtle to prominent varietal character (different varieties have different intensities). Stronger and/or sweeter braggots should be expected to have a greater intensity of flavor than drier, lower gravity versions. The finish and aftertaste will vary based on the declared level of sweetness (dry to sweet), and may include both beer and mead components. A wide range of malt characteristics is allowable, from plain base malts to rich caramel and toast flavors to dark chocolate and roast flavors. Hop bitterness and flavor may be present, and may reflect any variety or intensity; however, this optional character should always be both suggestive of the base beer style and well blended with the other flavors. Standard description applies for remainder of characteristics.Standard description does not apply due to beer-like characteristics. Smooth mouthfeel without astringency. Body may vary from moderately light to full, depending on sweetness, strength, and the base style of beer. Note that stronger meads will have a fuller body. A very thin or watery body is undesirable, as is a cloying, raw sweetness. A warming sense of well-aged alcohol may be present in stronger examples. Carbonation will vary as described in the standard description. A still braggot will usually have some level of carbonation (like a cask bitter) since a completely flat beer is unappetizing. However, just as an aged barleywine may be still, some braggots can be totally still.A harmonious blend of mead and beer, with the distinctive characteristics of both. A wide range of results are possible, depending on the base style of beer, variety of honey and overall sweetness and strength. Beer flavors tend to somewhat mask typical honey flavors found in other meads. ','A braggot is a standard mead made with both honey and malt providing flavor and fermentable extract. Originally, and alternatively, a mixture of mead and ale. A braggot can be made with any type of honey, and any type of base beer style. The malt component may be derived from grain or malt extracts. The beer may be hopped or not. If any other ingredients than honey and beer are contained in the braggot, it should be entered as an Open Category Mead. Smoked braggots may be entered in this category if using smoked malt or a smoked beer as the base style; braggots made using other smoked ingredients (e.g., liquid smoke, chipotles) should be entered in the Open Category Mead style. ','Rabbit''s Foot Diabhal and Bière de Miele, Magic Hat Braggot, Brother Adams Braggot Barleywine Ale, White Winter Traditional Brackett',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(22,'Brown Porter','Ale','Porter','12','A','BJCP',1.04,1.052,1.008,1.014,18.0,35.0,20.0,30.0,4.0,5.4,0.0,0.0,'Differs from a robust porter in that it usually has softer, sweeter and more caramelly flavors, lower gravities, and usually less alcohol. More substance and roast than a brown ale. Higher in gravity than a dark mild. Some versions are fermented with lager yeast. Balance tends toward malt more than hops. Usually has an "English" character. Historical versions with Brettanomyces, sourness, or smokiness should be entered in the Specialty Beer category (23).','Malt aroma with mild roastiness should be evident, and may have a chocolaty quality. May also show some non-roasted malt character in support (caramelly, grainy, bready, nutty, toffee-like and/or sweet). English hop aroma moderate to none. Fruity esters moderate to none. Diacetyl low to none.Light brown to dark brown in color, often with ruby highlights when held up to light. Good clarity, although may approach being opaque. Moderate off-white to light tan head with good to fair retention.Malt flavor includes a mild to moderate roastiness (frequently with a chocolate character) and often a significant caramel, nutty, and/or toffee character. May have other secondary flavors such as coffee, licorice, biscuits or toast in support. Should not have a significant black malt character (acrid, burnt, or harsh roasted flavors), although small amounts may contribute a bitter chocolate complexity. English hop flavor moderate to none. Medium-low to medium hop bitterness will vary the balance from slightly malty to slightly bitter. Usually fairly well attenuated, although somewhat sweet versions exist. Diacetyl should be moderately low to none. Moderate to low fruity esters.Medium-light to medium body. Moderately low to moderately high carbonation.A fairly substantial English dark ale with restrained roasty characteristics. Originating in England, porter evolved from a blend of beers or gyles known as "Entire." A precursor to stout. Said to have been favored by porters and other physical laborers.','English ingredients are most common. May contain several malts, including chocolate and/or other dark roasted malts and caramel-type malts. Historical versions would use a significant amount of brown malt. Usually does not contain large amounts of black patent malt or roasted barley. English hops are most common, but are usually subdued. London or Dublin-type water (moderate carbonate hardness) is traditional. English or Irish ale yeast, or occasionally lager yeast, is used. May contain a moderate amount of adjuncts (sugars, maize, molasses, treacle, etc.).','Fuller''s London Porter, Samuel Smith Taddy Porter, Burton Bridge Burton Porter, RCH Old Slug Porter, Nethergate Old Growler Porter, Hambleton Nightmare Porter, Harvey''s Tom Paine Original Old Porter, Salopian Entire Butt English Porter, St. Peters Old-Style Porter, Shepherd Neame Original Porter, Flag Porter, Wasatch Polygamy Porter',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(23,'California Common Beer','Ale','Amber Hybrid Beer','7','B','BJCP',1.048,1.054,1.011,1.014,30.0,45.0,10.0,14.0,4.5,5.5,0.0,0.0,'This style is narrowly defined around the prototypical Anchor Steam example. Superficially similar to an American pale or amber ale, yet differs in that the hop flavor/aroma is woody/minty rather than citrusy, malt flavors are toasty and caramelly, the hopping is always assertive, and a warm-fermented lager yeast is used.','Typically showcases the signature Northern Brewer hops (with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops. No diacetyl.Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing Northern Brewer qualities (woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean. No diacetyl.Medium-bodied. Medium to medium-high carbonation.A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing the signature Northern Brewer varietal hop character. American West Coast original. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to thrive at the cool end of normal ale fermentation temperatures.','Pale ale malt, American hops (usually Northern Brewer, rather than citrusy varieties), small amounts of toasted malt and/or crystal malts. Lager yeast, however some strains (often with the mention of "California" in the name) work better than others at the warmer fermentation temperatures (55 to 60F) used. Note that some German yeast strains produce inappropriate sulfury character. Water should have relatively low sulfate and low to moderate carbonate levels.','Anchor Steam, Southampton Steem Beer, Flying Dog Old Scratch Amber Lager',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(24,'Christmas/Winter Specialty Spiced Beer','Ale','Spice/Herb/Vegetable Beer','21','B','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Overall balance is the key to presenting a well-made Christmas beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. THE ENTRANT MAY DECLARE AN UNDERLYING BEER STYLE AS WELL AS THE SPECIAL INGREDIENTS USED. THE BASE STYLE, SPICES OR OTHER INGREDIENTS NEED NOT BE IDENTIFIED. THE BEER MUST INCLUDE SPICES AND MAY INCLUDE OTHER FERMENTABLES (SUGARS, HONEY, MAPLE SYRUP, MOLASSES, TREACLE, ETC.) OR FRUIT. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical). English-style Winter Warmers (some of which may be labeled Christmas Ales) are generally not spiced, and should be entered as Old Ales. Belgian-style Christmas ales should be entered as Belgian Specialty Ales (16E).','A wide range of aromatics is possible, although many examples are reminiscent of Christmas cookies, gingerbread, English-type Christmas pudding, spruce trees, or mulling spices. Any combination of aromatics that suggests the holiday season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Some fruit character (often of dried citrus peel, or dried fruit such as raisins or plums) is optional but acceptable. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting.Generally medium amber to very dark brown (darker versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan.Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice presentation. Spices associated with the holiday season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include some dried fruit or dried fruit peel flavors such as raisin, plum, fig, orange peel or lemon peel. May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. A light spruce or other evergreen tree character is optional but found in some examples. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate.A wide range of interpretations is possible. Body is generally medium to full, and a certain malty chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects.A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season. Throughout history, beer of a somewhat higher alcohol content and richness has been enjoyed during the winter holidays, when old friends get together to enjoy the season. Many breweries produce unique seasonal offerings that may be darker, stronger, spiced, or otherwise more characterful than their normal beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer.','Generally ales, although some dark strong lagers exist. Spices are required, and often include those evocative of the Christmas season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Fruit peel (e.g., oranges, lemon) may be used, as may subtle additions of other fruits. May use a wide range of crystal-type malts, particularly those that add dark fruit or caramel flavors. Flavorful adjuncts are often used (e.g., molasses, treacle, invert sugar, brown sugar, honey, maple syrup, etc.).','Anchor Our Special Ale, Harpoon Winter Warmer, Weyerbacher Winter Ale, Nils Oscar Julöl, Goose Island Christmas Ale, North Coast Wintertime Ale, Great Lakes Christmas Ale, Lakefront Holiday Spice Lager Beer, Samuel Adams Winter Lager, Troegs The Mad Elf, Jamtlands Julöl',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(25,'Classic American Pilsner','Lager','Pilsner','2','C','BJCP',1.044,1.06,1.01,1.015,25.0,40.0,3.0,6.0,4.5,6.0,0.0,0.0,'The classic American Pilsner was brewed both pre-Prohibition and post-Prohibition with some differences. OGs of 1.050-1.060 would have been appropriate for pre-Prohibition beers while gravities dropped to 1.044-1.048 after Prohibition. Corresponding IBUs dropped from a pre-Prohibition level of 30-40 to 25-30 after Prohibition.','Low to medium grainy, corn-like or sweet maltiness may be evident (although rice-based beers are more neutral). Medium to moderately high hop aroma, often classic noble hops. Clean lager character, with no fruitiness or diacetyl. Some DMS is acceptable.Yellow to deep gold color. Substantial, long lasting white head. Bright clarity.Moderate to moderately high maltiness similar in character to the Continental Pilsners but somewhat lighter in intensity due to the use of up to 30% flaked maize (corn) or rice used as an adjunct. Slight grainy, corn-like sweetness from the use of maize with substantial offsetting hop bitterness. Rice-based versions are crisper, drier, and often lack corn-like flavors. Medium to high hop flavor from noble hops (either late addition or first-wort hopped). Medium to high hop bitterness, which should not be coarse nor have a harsh aftertaste. No fruitiness or diacetyl. Should be smooth and well-lagered.Medium body and rich, creamy mouthfeel. Medium to high carbonation levels.A substantial Pilsner that can stand up to the classic European Pilsners, but exhibiting the native American grains and hops available to German brewers who initially brewed it in the USA.  Refreshing, but with the underlying malt and hops that stand out when compared to other modern American light lagers. Maize lends a distinctive grainy sweetness. Rice contributes a crisper, more neutral character. A version of Pilsner brewed in the USA by immigrant German brewers who brought the process and yeast with them when they settled in America. They worked with the ingredients that were native to America to create a unique version of the original Pilsner. This style died out after Prohibition but was resurrected as a home-brewed style by advocates of the hobby.','Six-row barley with 20% to 30% flaked maize to dilute the excessive protein levels. Native American hops such as Clusters, traditional continental noble hops, or modern noble crosses (Ultra, Liberty, Crystal) are also appropriate. Modern American hops such as Cascade are inappropriate. Water with a high mineral content can lead to an inappropriate coarseness in flavor and harshness in aftertaste.','Occasional brewpub and microbrewery specials',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(26,'Classic Rauchbier','Ale','Smoke-flavored/Wood-aged Beer','22','A','BJCP',1.05,1.057,1.012,1.016,20.0,30.0,12.0,22.0,4.8,6.0,0.0,0.0,'The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany, such as the Bocks, Hefe-Weizen, Dunkel, Schwarz, and Helles-like beers, including examples such as Spezial Lager. Brewers entering these styles should use Other Smoked Beer (22B) as the entry category.','Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, bacon-like, woody, or rarely almost greasy. The malt character can be low to moderate, and be somewhat sweet, toasty, or malty. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean, lager character with no fruity esters, diacetyl or DMS.This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. The palate can be somewhat malty and sweet, yet the finish can reflect both malt and smoke. Moderate, balanced, hop bitterness, with a medium-dry to dry finish (the smoke character enhances the dryness of the finish). Noble hop flavor moderate to none. Clean lager character with no fruity esters, diacetyl or DMS. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate.Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.Märzen/Oktoberfest-style (see 3B) beer with a sweet, smoky aroma and flavor and a somewhat darker color. A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).','German Rauchmalz (beechwood-smoked Vienna-type malt) typically makes up 20-100% of the grain bill, with the remainder being German malts typically used in a Märzen. Some breweries adjust the color slightly with a bit of roasted malt. German lager yeast. German or Czech hops.','Schlenkerla Rauchbier Märzen, Kaiserdom Rauchbier, Eisenbahn Rauchbier, Victory Scarlet Fire Rauchbier, Spezial Rauchbier Märzen, Saranac Rauchbier',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(27,'Common Cider','Cider','Standard Cider and Perry','27','A','BJCP',1.045,1.065,1.0,1.02,0.0,0.0,0.0,0.0,5.0,8.0,0.0,0.0,'Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (dry, medium, sweet).',' A common cider is made from culinary/table apples, with wild or crab apples often used for acidity/tannin balance. Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character, neither cloying nor too austere. Medium to high acidity. Clear to brilliant, medium to deep gold color.Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character, neither cloying nor too austere. Medium to high acidity. Medium body. Some tannin should be present for slight to moderate astringency, but little bitterness.Variable, but should be a medium, refreshing drink. Sweet ciders must not be cloying. Dry ciders must not be too austere. An ideal cider serves well as a "session" drink, and suitably accompanies a wide variety of food. ','','[US] Red Barn Cider Jonagold Semi-Dry and Sweetie Pie (WA), AEppelTreow Barn Swallow Draft Cider (WI), Wandering Aengus Heirloom Blend Cider (OR), Uncle John''s Fruit House Winery Apple Hard Cider (MI), Bellwether Spyglass (NY), West County Pippin (MA), White Winter Hard Apple Cider (WI), Harpoon Cider (MA)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(28,'Common Perry','Cider','Standard Cider and Perry','27','D','BJCP',1.05,1.06,1.0,1.02,0.0,0.0,0.0,0.0,5.0,7.2,0.0,0.0,'Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (medium or sweet).',' Common perry is made from culinary/table fruit. There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness.Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness.: Relatively full, low to moderate tannin apparent as astringency.Mild. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults. ','','[US] White Winter Hard Pear Cider (WI), AEppelTreow Perry (WI), Blossomwood Laughing Pig Perry (CO), Uncle John''s Fruit House Winery Perry (MI)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(29,'Cream Ale','Ale','Light Hybrid Beer','6','A','BJCP',1.042,1.055,1.006,1.012,15.0,20.0,3.0,5.0,4.2,5.6,0.0,0.0,'Classic American (i.e., pre-prohibition) Cream Ales were slightly stronger, hoppier (including some dry hopping) and more bitter (25-30+ IBUs). These versions should be entered in the specialty/experimental category. Most commercial examples are in the 1.050-1.053 OG range, and bitterness rarely rises above 20 IBUs.','Faint malt notes. A sweet, corn-like aroma and low levels of DMS are commonly found. Hop aroma low to none. Any variety of hops may be used, but neither hops nor malt dominate. Faint esters may be present in some examples, but are not required. No diacetyl.Pale straw to moderate gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Head retention may be no better than fair due to adjunct use. Brilliant, sparkling clarity.Low to medium-low hop bitterness. Low to moderate maltiness and sweetness, varying with gravity and attenuation. Usually well attenuated. Neither malt nor hops prevail in the taste. A low to moderate corny flavor from corn adjuncts is commonly found, as is some DMS. Finish can vary from somewhat dry to faintly sweet from the corn, malt, and sugar. Faint fruity esters are optional. No diacetyl.Generally light and crisp, although body can reach medium. Smooth mouthfeel with medium to high attenuation; higher attenuation levels can lend a "thirst quenching" finish. High carbonation. Higher gravity examples may exhibit a slight alcohol warmth.A clean, well-attenuated, flavorful American lawnmower beer. An ale version of the American lager style. Produced by ale brewers to compete with lager brewers in the Northeast and Mid-Atlantic States. Originally known as sparkling or present use ales, lager strains were (and sometimes still are) used by some brewers, but were not historically mixed with ale strains. Many examples are kräusened to achieve carbonation. Cold conditioning isn''t traditional, although modern brewers sometimes use it.','American ingredients most commonly used. A grain bill of six-row malt, or a combination of six-row and North American two-row, is common. Adjuncts can include up to 20% flaked maize in the mash, and up to 20% glucose or other sugars in the boil. Soft water preferred. Any variety of hops can be used for bittering and finishing.','Genesee Cream Ale, Little Kings Cream Ale (Hudepohl), Anderson Valley Summer Solstice Cerveza Crema, Sleeman Cream Ale, New Glarus Spotted Cow, Wisconsin Brewing Whitetail Cream Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(30,'Cyser','Mead','Melomel (Fruit Mead)','25','A','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. See standard description for entrance requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of apple used; if specified, a varietal character will be expected. Products with a relatively low proportion of honey are better entered as a Specialty Cider.',' A Cyser is a melomel made with apples (generally cider). Depending on the sweetness and strength, a subtle to distinctly identifiable honey and apple/cider character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The apple/cider character should be clean and distinctive; it can express a range of apple-based character ranging from a subtle fruitiness to a single varietal apple character (if declared) to a complex blend of apple aromatics. Some spicy or earthy notes may be present, as may a slightly sulfury character. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain apple varieties are acceptable, as is a light diacetyl character from malolactic fermentation (both are optional). Standard description applies for remainder of characteristics.Standard description applies, except with regard to color. Color may range from pale straw to deep golden amber (most are yellow to gold), depending on the variety of honey and blend of apples or ciders used.The apple and honey flavor intensity may vary from none to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in apples may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A cyser may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Slight spicy phenolics from certain apple varieties are acceptable, as are a light diacetyl character from malolactic fermentation and a slight sulfur character (all are optional). Standard description applies for remainder of characteristics.Standard description applies. Often wine-like. Some natural acidity is usually present (from the blend of apples) and helps balance the overall impression. Some apples can provide natural astringency, but this character should not be excessive.In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Some of the best strong examples have the taste and aroma of an aged Calvados (apple brandy from northern France), while subtle, dry versions can taste similar to many fine white wines. ','Standard description applies. Cyser is a standard mead made with the addition of apples or apple juice. Traditionally, cysers are made by the addition of honey to apple juice without additional water. A spiced cyser, or a cyser with other ingredients, should be entered as an Open Category Mead.','White Winter Cyser, Rabbit''s Foot Apple Cyser, Long Island Meadery Apple Cyser',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(31,'Dark American Lager','Lager','Dark Lager','4','A','BJCP',1.044,1.056,1.008,1.012,8.0,20.0,14.0,22.0,4.2,6.0,0.0,0.0,'A broad range of international lagers that are darker than pale, and not assertively bitter and/or roasted.','Little to no malt aroma. Medium-low to no roast and caramel malt aroma. Hop aroma may range from none to light spicy or floral hop presence. Can have low levels of yeast character (green apples, DMS, or fruitiness). No diacetyl.Deep amber to dark brown with bright clarity and ruby highlights. Foam stand may not be long lasting, and is usually light tan in color.Moderately crisp with some low to moderate levels of sweetness. Medium-low to no caramel and/or roasted malt flavors (and may include hints of coffee, molasses or cocoa). Hop flavor ranges from none to low levels. Hop bitterness at low to medium levels. No diacetyl. May have a very light fruitiness. Burnt or moderately strong roasted malt flavors are a defect.Light to somewhat medium body. Smooth, although a highly-carbonated beer.A somewhat sweeter version of standard/premium lager with a little more body and flavor. ','Two- or six-row barley, corn or rice as adjuncts. Light use of caramel and darker malts. Commercial versions may use coloring agents.','Dixie Blackened Voodoo, Shiner Bock, San Miguel Dark, Baltika #4, Beck''s Dark, Saint Pauli Girl Dark, Warsteiner Dunkel, Heineken Dark Lager, Crystal Diplomat Dark Beer',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(32,'Doppelbock','Lager','Bock','5','C','BJCP',1.072,1.112,1.016,1.024,16.0,26.0,6.0,25.0,7.0,10.0,0.0,0.0,'Most versions are dark colored and may display the caramelizing and melanoidin effect of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt flavors of the dark versions, and may be a bit drier, hoppier and more bitter. While most traditional examples are in the ranges cited, the style can be considered to have no upper limit for gravity, alcohol and bitterness (thus providing a home for very strong lagers). Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.','Very strong maltiness. Darker versions will have significant melanoidins and often some toasty aromas. A light caramel flavor from a long boil is acceptable. Lighter versions will have a strong malt presence with some melanoidins and toasty notes. Virtually no hop aroma, although a light noble hop aroma is acceptable in pale versions. No diacetyl. A moderately low fruity aspect to the aroma often described as prune, plum or grape may be present (but is optional) in dark versions due to reactions between malt, the boil, and aging. A very slight chocolate-like aroma may be present in darker versions, but no roasted or burned aromatics should ever be present. Moderate alcohol aroma may be present.Deep gold to dark brown in color. Darker versions often have ruby highlights. Lagering should provide good clarity. Large, creamy, persistent head (color varies with base style: white for pale versions, off-white for dark varieties). Stronger versions might have impaired head retention, and can display noticeable legs.Very rich and malty. Darker versions will have significant melanoidins and often some toasty flavors. Lighter versions will a strong malt flavor with some melanoidins and toasty notes. A very slight chocolate flavor is optional in darker versions, but should never be perceived as roasty or burnt. Clean lager flavor with no diacetyl. Some fruitiness (prune, plum or grape) is optional in darker versions.  Invariably there will be an impression of alcoholic strength, but this should be smooth and warming rather than harsh or burning. Presence of higher alcohols (fusels) should be very low to none. Little to no hop flavor (more is acceptable in pale versions). Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Most versions are fairly sweet, but should have an impression of attenuation. The sweetness comes from low hopping, not from incomplete fermentation. Paler versions generally have a drier finish.Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness or astringency.A very strong and rich lager. A bigger version of either a traditional bock or a helles bock. A Bavarian specialty first brewed in Munich by the monks of St. Francis of Paula. Historical versions were less well attenuated than modern interpretations, with consequently higher sweetness and lower alcohol levels (and hence was considered "liquid bread" by the monks). The term "doppel (double) bock" was coined by Munich consumers. Many doppelbocks have names ending in "-ator," either as a tribute to the prototypical Salvator or to take advantage of the beer''s popularity.','Pils and/or Vienna malt for pale versions (with some Munich), Munich and Vienna malts for darker ones and occasionally a tiny bit of darker color malts (such as Carafa). Noble hops. Water hardness varies from soft to moderately carbonate. Clean lager yeast. Decoction mashing is traditional.','Paulaner Salvator, Ayinger Celebrator, Weihenstephaner Korbinian, Andechser Doppelbock Dunkel, Spaten Optimator, Tucher Bajuvator, Weltenburger Kloster Asam-Bock, Capital Autumnal Fire, EKU 28, Eggenberg Urbock 23, Bell''s Consecrator, Moretti La Rossa, Samuel Adams Double Bock',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(33,'Dortmunder Export','Lager','Light Lager','1','E','BJCP',1.048,1.056,1.01,1.015,23.0,30.0,4.0,6.0,4.8,6.0,0.0,0.0,'Brewed to a slightly higher starting gravity than other light lagers, providing a firm malty body and underlying maltiness to complement the sulfate-accentuated hop bitterness. The term "Export" is a beer strength category under German beer tax law, and is not strictly synonymous with the "Dortmunder" style. Beer from other cities or regions can be brewed to Export strength, and labeled as such.','Low to medium noble (German or Czech) hop aroma. Moderate Pils malt aroma; can be grainy to somewhat sweet. May have an initial sulfury aroma (from water and/or yeast) and a low background note of DMS (from Pils malt). No diacetyl.Light gold to deep gold, clear with a persistent white head.Neither Pils malt nor noble hops dominate, but both are in good balance with a touch of malty sweetness, providing a smooth yet crisply refreshing beer. Balance continues through the finish and the hop bitterness lingers in aftertaste (although some examples may finish slightly sweet). Clean, no fruity esters, no diacetyl. Some mineral character might be noted from the water, although it usually does not come across as an overt minerally flavor.Medium body, medium carbonation.Balance and smoothness are the hallmarks of this style. It has the malt profile of a Helles, the hop character of a Pils, and is slightly stronger than both. A style indigenous to the Dortmund industrial region, Dortmunder has been on the decline in Germany in recent years.','Minerally water with high levels of sulfates, carbonates and chlorides, German or Czech noble hops, Pilsner malt, German lager yeast.','DAB Export, Dortmunder Union Export, Dortmunder Kronen, Ayinger Jahrhundert, Great Lakes Dortmunder Gold, Barrel House Duveneck''s Dortmunder, Bell''s Lager, Dominion Lager, Gordon Biersch Golden Export, Flensburger Gold',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(34,'Dry Mead','Mead','Traditional Mead','24','A','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'See standard description for entrance requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be DRY in this category. Entrants MAY specify honey varieties.',' Honey aroma may be subtle, although not always identifiable. Sweetness or significant honey aromatics should not be expected. If a honey variety is declared, the variety should be distinctive (if noticeable). Different types of honey have different intensities and characters. Standard description applies for remainder of characteristics.Standard description applies.Subtle (if any) honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). No to minimal residual sweetness with a dry finish. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.Standard description applies, although the body is generally light to medium. Note that stronger meads will have a fuller body. Sensations of body should not be accompanied by noticeable residual sweetness.Similar in balance, body, finish and flavor intensity to a dry white wine, with a pleasant mixture of subtle honey character, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol and honey character is the essential final measure of any mead.','Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. "Show meads" feature no additives, but this distinction is usually not obvious to judges.','White Winter Dry Mead, Sky River Dry Mead, Intermiel Bouquet Printanier',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(35,'Dry Stout','Ale','Stout','13','A','BJCP',1.036,1.05,1.007,1.011,30.0,45.0,25.0,40.0,4.0,5.0,0.0,0.0,'This is the draught version of what is otherwise known as Irish stout or Irish dry stout. Bottled versions are typically brewed from a significantly higher OG and may be designated as foreign extra stouts (if sufficiently strong). While most commercial versions rely primarily on roasted barley as the dark grain, others use chocolate malt, black malt or combinations of the three. The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.','Coffee-like roasted barley and roasted malt aromas are prominent; may have slight chocolate, cocoa and/or grainy secondary notes. Esters medium-low to none. No diacetyl. Hop aroma low to none.Jet black to deep brown with garnet highlights in color. Can be opaque (if not, it should be clear). A thick, creamy, long-lasting, tan- to brown-colored head is characteristic.Moderate roasted, grainy sharpness, optionally with light to moderate acidic sourness, and medium to high hop bitterness. Dry, coffee-like finish from roasted grains. May have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low to no fruitiness, and medium to no hop flavor. No diacetyl.Medium-light to medium-full body, with a creamy character. Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. The perception of body can be affected by the overall gravity with smaller beers being lighter in body. May have a light astringency from the roasted grains, although harshness is undesirable.A very dark, roasty, bitter, creamy ale. The style evolved from attempts to capitalize on the success of London porters, but originally reflected a fuller, creamier, more "stout" body and strength. When a brewery offered a stout and a porter, the stout was always the stronger beer (it was originally called a "Stout Porter"). Modern versions are brewed from a lower OG and no longer reflect a higher strength than porters.','The dryness comes from the use of roasted unmalted barley in addition to pale malt, moderate to high hop bitterness, and good attenuation. Flaked unmalted barley may also be used to add creaminess. A small percentage (perhaps 3%) of soured beer is sometimes added for complexity (generally by Guinness only). Water typically has moderate carbonate hardness, although high levels will not give the classic dry finish.','Guinness Draught Stout (also canned), Murphy''s Stout, Beamish Stout, O''Hara''s Celtic Stout, Russian River O.V.L. Stout, Three Floyd''s Black Sun Stout, Dorothy Goodbody''s Wholesome Stout, Orkney Dragonhead Stout, Old Dominion Stout, Goose Island Dublin Stout, Brooklyn Dry Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(36,'Dunkelweizen','Ale','German Wheat and Rye Beer','15','B','BJCP',1.044,1.056,1.01,1.014,10.0,18.0,14.0,23.0,4.3,5.6,0.0,0.0,'The presence of Munich and/or Vienna-type barley malts gives this style a deep, rich barley malt character not found in a hefeweizen. Bottles with yeast are traditionally swirled or gently rolled prior to serving. ','Moderate to strong phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a low to moderate vanilla character and/or low bubblegum notes may be present, but should not dominate. Noble hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present and is often accompanied by a caramel, bread crust, or richer malt aroma (e.g., from Vienna and/or Munich malt). Any malt character is supportive and does not overpower the yeast character. No diacetyl or DMS. A light tartness is optional but acceptable.Light copper to mahogany brown in color. A very thick, moussy, long-lasting off-white head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. The suspended yeast sediment (which should be roused before drinking) also contributes to the cloudiness.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent.  Optionally, a very light to moderate vanilla character and/or low bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a richer caramel and/or melanoidin character from Munich and/or Vienna malt. The malty richness can be low to medium-high, but shouldn''t overpower the yeast character. A roasted malt character is inappropriate. Hop flavor is very low to none, and hop bitterness is very low to low. A tart, citrusy character from yeast and high carbonation is sometimes present, but typically muted. Well rounded, flavorful, often somewhat sweet palate with a relatively dry finish. No diacetyl or DMS.Medium-light to medium-full body. The texture of wheat as well as yeast in suspension imparts the sensation of a fluffy, creamy fullness that may progress to a lighter finish, aided by moderate to high carbonation. The presence of Munich and/or Vienna malts also provide an additional sense of richness and fullness. Effervescent.A moderately dark, spicy, fruity, malty, refreshing wheat-based ale. Reflecting the best yeast and wheat character of a hefeweizen blended with the malty richness of a Munich dunkel. Old-fashioned Bavarian wheat beer was often dark. In the 1950s and 1960s, wheat beers did not have a youthful image, since most older people drank them for their health-giving qualities. Today, the lighter hefeweizen is more common.','By German law, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is usually Munich and/or Vienna malt. A traditional decoction mash gives the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors. A small amount of noble hops are used only for bitterness.','Weihenstephaner Hefeweissbier Dunkel, Ayinger Ur-Weisse, Franziskaner Dunkel Hefe-Weisse, Schneider Weisse (Original), Ettaler Weissbier Dunkel, Hacker-Pschorr Weisse Dark, Tucher Dunkles Hefe Weizen, Edelweiss Dunkel Weissbier, Erdinger Weissbier Dunkel, Kapuziner Weissbier Schwarz',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(37,'Düsseldorf Altbier','Ale','Amber Hybrid Beer','7','C','BJCP',1.046,1.054,1.01,1.015,35.0,50.0,11.0,17.0,4.5,5.2,0.0,0.0,'A bitter beer balanced by a pronounced malt richness. Fermented at cool ale temperature (60-65F), and lagered at cold temperatures to produce a cleaner, smoother palate than is typical for most ales.  Common variants include Sticke ("secret") alt, which is slightly stronger, darker, richer and more complex than typical alts. Bitterness rises up to 60 IBUs and is usually dry hopped and lagered for a longer time. Münster alt is typically lower in gravity and alcohol, sour, lighter in color (golden), and can contain a significant portion of wheat. Both Sticke alt and Münster alt should be entered in the specialty category.','Clean yet robust and complex aroma of rich malt, noble hops and restrained fruity esters. The malt character reflects German base malt varieties. The hop aroma may vary from moderate to very low, and can have a peppery, floral or perfumy character associated with noble hops. No diacetyl.Light amber to orange-bronze to deep copper color, yet stopping short of brown. Brilliant clarity (may be filtered). Thick, creamy, long-lasting off-white head.Assertive hop bitterness well balanced by a sturdy yet clean and crisp malt character. The malt presence is moderated by moderately-high to high attenuation, but considerable rich and complex malt flavors remain. Some fruity esters may survive the lagering period. A long-lasting, medium-dry to dry, bittersweet or nutty finish reflects both the hop bitterness and malt complexity. Noble hop flavor can be moderate to low. No roasted malt flavors or harshness. No diacetyl. Some yeast strains may impart a slight sulfury character. A light minerally character is also sometimes present in the finish, but is not required. The apparent bitterness level is sometimes masked by the high malt character; the bitterness can seem as low as moderate if the finish is not very dry.Medium-bodied. Smooth. Medium to medium-high carbonation. Astringency low to none. Despite being very full of flavor, is light bodied enough to be consumed as a session beer in its home brewpubs in Düsseldorf.A well balanced, bitter yet malty, clean, smooth, well-attenuated amber-colored German ale. The traditional style of beer from Düsseldorf. "Alt" refers to the "old" style of brewing (i.e., making top-fermented ales) that was common before lager brewing became popular. Predates the isolation of bottom-fermenting yeast strains, though it approximates many characteristics of lager beers. The best examples can be found in brewpubs in the Altstadt ("old town") section of Düsseldorf. ','Grists vary, but usually consist of German base malts (usually Pils, sometimes Munich) with small amounts of crystal, chocolate, and/or black malts used to adjust color. Occasionally will include some wheat. Spalt hops are traditional, but other noble hops can also be used. Moderately carbonate water. Clean, highly attenuative ale yeast. A step mash or decoction mash program is traditional.','Altstadt brewpubs: Zum Uerige, Im Füchschen, Schumacher, Zum Schlüssel; other examples: Diebels Alt, Schlösser Alt, Frankenheim Alt',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(38,'Eisbock','Lager','Bock','5','D','BJCP',1.078,1.12,1.02,1.035,25.0,35.0,18.0,30.0,9.0,14.0,0.0,0.0,'Eisbocks are not simply stronger doppelbocks; the name refers to the process of freezing and concentrating the beer. Some doppelbocks are stronger than Eisbocks. Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.','Dominated by a balance of rich, intense malt and a definite alcohol presence. No hop aroma. No diacetyl. May have significant fruity esters, particularly those reminiscent of plum, prune or grape. Alcohol aromas should not be harsh or solventy.Deep copper to dark brown in color, often with attractive ruby highlights. Lagering should provide good clarity. Head retention may be impaired by higher-than-average alcohol content and low carbonation. Off-white to deep ivory colored head. Pronounced legs are often evident.Rich, sweet malt balanced by a significant alcohol presence. The malt can have melanoidins, toasty qualities, some caramel, and occasionally a slight chocolate flavor. No hop flavor. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. No diacetyl. May have significant fruity esters, particularly those reminiscent of plum, prune or grape. The alcohol should be smooth, not harsh or hot, and should help the hop bitterness balance the strong malt presence. The finish should be of malt and alcohol, and can have a certain dryness from the alcohol. It should not by sticky, syrupy or cloyingly sweet. Clean, lager character.Full to very full bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors.An extremely strong, full and malty dark lager. A traditional Kulmbach specialty brewed by freezing a doppelbock and removing the ice to concentrate the flavor and alcohol content (as well as any defects).','Same as doppelbock. Commercial eisbocks are generally concentrated anywhere from 7% to 33% (by volume).','Kulmbacher Reichelbräu Eisbock, Eggenberg Urbock Dunkel Eisbock, Niagara Eisbock, Capital Eisphyre, Southampton Eisbock',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(39,'English Barleywine','Ale','Strong Ale','19','B','BJCP',1.08,1.12,1.018,1.03,35.0,70.0,8.0,22.0,8.0,12.0,0.0,0.0,'Although often a hoppy beer, the English Barleywine places less emphasis on hop character than the American Barleywine and features English hops. English versions can be darker, maltier, fruitier, and feature richer specialty malt flavors than American Barleywines.','Very rich and strongly malty, often with a caramel-like aroma. May have moderate to strong fruitiness, often with a dried-fruit character. English hop aroma may range from mild to assertive. Alcohol aromatics may be low to moderate, but never harsh, hot or solventy. The intensity of these aromatics often subsides with age. The aroma may have a rich character including bready, toasty, toffee, molasses, and/or treacle notes. Aged versions may have a sherry-like quality, possibly vinous or port-like aromatics, and generally more muted malt aromas. Low to no diacetyl.Color may range from rich gold to very dark amber or even dark brown. Often has ruby highlights, but should not be opaque. Low to moderate off-white head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in "legs" when beer is swirled in a glass.Strong, intense, complex, multi-layered malt flavors ranging from bready and biscuity through nutty, deep toast, dark caramel, toffee, and/or molasses. Moderate to high malty sweetness on the palate, although the finish may be moderately sweet to moderately dry (depending on aging). Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Alcohol flavors shouldn''t be harsh, hot or solventy. Moderate to fairly high fruitiness, often with a dried-fruit character. Hop bitterness may range from just enough for balance to a firm presence; balance therefore ranges from malty to somewhat bitter. Low to moderately high hop flavor (usually UK varieties). Low to no diacetyl.Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). A smooth warmth from aged alcohol should be present, and should not be hot or harsh. Carbonation may be low to moderate, depending on age and conditioning.The richest and strongest of the English Ales. A showcase of malty richness and complex, intense flavors. The character of these ales can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated. Normally aged significantly prior to release. Often associated with the winter or holiday season.','Well-modified pale malt should form the backbone of the grist, with judicious amounts of caramel malts. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil. English hops such as Northdown, Target, East Kent Goldings and Fuggles. Characterful English yeast.','Thomas Hardy''s Ale, Burton Bridge Thomas Sykes Old Ale, J.W. Lee''s Vintage Harvest Ale, Robinson''s Old Tom, Fuller''s Golden Pride, AleSmith Old Numbskull, Young''s Old Nick (unusual in its 7.2% ABV), Whitbread Gold Label, Old Dominion Millenium, North Coast Old Stock Ale (when aged), Weyerbacher Blithering Idiot',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(40,'English Cider ','Cider','Standard Cider and Perry','27','B','BJCP',1.05,1.075,0.995,1.01,0.0,0.0,0.0,0.0,6.0,9.0,0.0,0.0,'',' This includes the English "West Country" plus ciders inspired by that style. These ciders are made with bittersweet and bitter-sharp apple varieties cultivated specifically for cider making. No overt apple character, but various flavors and esters that suggest apples. May have "smoky (bacon)" character from a combination of apple varieties and MLF. Some "Farmyard nose" may be present but must not dominate; mousiness is a serious fault. The common slight farmyard nose of an English West Country cider is the result of lactic acid bacteria, not a Brettanomyces contamination.Slightly cloudy to brilliant. Medium to deep gold color.No overt apple character, but various flavors and esters that suggest apples. May have "smoky (bacon)" character from a combination of apple varieties and MLF. Some "Farmyard nose" may be present but must not dominate; mousiness is a serious fault. The common slight farmyard nose of an English West Country cider is the result of lactic acid bacteria, not a Brettanomyces contamination.Full. Moderate to high tannin apparent as astringency and some bitterness. Carbonation still to moderate, never high or gushing.Generally dry, full-bodied, austere. Entrants MUST specify carbonation level (still or petillant). Entrants MUST specify sweetness (dry to medium). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected. Kingston Black, Stoke Red, Dabinett, Foxwhelp, Yarlington Mill, various Jerseys, etc.','','[US] Westcott Bay Traditional Very Dry, Traditional Dry and Traditional Medium Sweet (WA), Farnum Hill Extra-Dry, Dry, and Farmhouse (NH), Wandering Aengus Dry Cider (OR), Red Barn Cider Burro Loco (WA), Bellwether Heritage (NY,''); [UK] Oliver''s Herefordshire Dry Cider, various from Hecks, Dunkerton, Burrow Hill, Gwatkin Yarlington Mill, Aspall Dry Cider',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(41,'English IPA','Ale','India Pale Ale','14','A','BJCP',1.05,1.075,1.01,1.018,40.0,60.0,8.0,14.0,5.0,7.5,0.0,0.0,'A pale ale brewed to an increased gravity and hop rate. Modern versions of English IPAs generally pale in comparison (pun intended) to their ancestors. The term "IPA" is loosely applied in commercial English beers today, and has been (incorrectly) used in beers below 4% ABV. Generally will have more finish hops and less fruitiness and/or caramel than English pale ales and bitters. Fresher versions will obviously have a more significant finishing hop character.','A moderate to moderately high hop aroma of floral, earthy or fruity nature is typical, although the intensity of hop character is usually lower than American versions. A slightly grassy dry-hop aroma is acceptable, but not required. A moderate caramel-like or toasty malt presence is common. Low to moderate fruitiness, either from esters or hops, can be present. Some versions may have a sulfury note, although this character is not mandatory.Color ranges from golden amber to light copper, but most are pale to medium amber with an orange-ish tint. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Good head stand with off-white color should persist.Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, earthy, fruity, and/or slightly grassy). Malt flavor should be medium-low to medium-high, but should be noticeable, pleasant, and support the hop aspect. The malt should show an English character and be somewhat bready, biscuit-like, toasty, toffee-like and/or caramelly. Despite the substantial hop character typical of these beers, sufficient malt flavor, body and complexity to support the hops will provide the best balance. Very low levels of diacetyl are acceptable, and fruitiness from the fermentation or hops adds to the overall complexity. Finish is medium to dry, and bitterness may linger into the aftertaste but should not be harsh. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style.Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation in the presence of malt sweetness. Some smooth alcohol warming can and should be sensed in stronger (but not all) versions.A hoppy, moderately strong pale ale that features characteristics consistent with the use of English malt, hops and yeast. Has less hop character and a more pronounced malt flavor than American versions. Brewed to survive the voyage from England to India. The temperature extremes and rolling of the seas resulted in a highly attenuated beer upon arrival. English pale ales were derived from India Pale Ales.','Pale ale malt (well-modified and suitable for single-temperature infusion mashing,''); English hops; English yeast that can give a fruity or sulfury/minerally profile. Refined sugar may be used in some versions. High sulfate and low carbonate water is essential to achieving a pleasant hop bitterness in authentic Burton versions, although not all examples will exhibit the strong sulfate character.','Meantime India Pale Ale, Freeminer Trafalgar IPA, Fuller''s IPA, Ridgeway Bad Elf, Summit India Pale Ale, Samuel Smith''s India Ale, Hampshire Pride of Romsey IPA, Burton Bridge Empire IPA,Middle Ages ImPailed Ale, Goose Island IPA, Brooklyn East India Pale Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(42,'Extra Special/Strong Bitter (English Pale Ale)','Ale','English Pale Ale','8','C','BJCP',1.048,1.06,1.01,1.016,30.0,50.0,6.0,18.0,4.6,6.2,0.0,0.0,'More evident malt and hop flavors than in a special or best bitter. Stronger versions may overlap somewhat with old ales, although strong bitters will tend to be paler and more bitter. Fuller''s ESB is a unique beer with a very large, complex malt profile not found in other examples; most strong bitters are fruitier and hoppier. Judges should not judge all beers in this style as if they were Fuller''s ESB clones. Some modern English variants are brewed exclusively with pale malt and are known as golden or summer bitters. Most bottled or kegged versions of UK-produced bitters are higher-alcohol versions of their cask (draught) products produced specifically for export. The IBU levels are often not adjusted, so the versions available in the US often do not directly correspond to their style subcategories in Britain. English pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including containing higher carbonation).','Hop aroma moderately-high to moderately-low, and can use any variety of hops although UK hops are most traditional. Medium to medium-high malt aroma, often with a low to moderately strong caramel component (although this character will be more subtle in paler versions). Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.  May have light, secondary notes of sulfur and/or alcohol in some examples (optional).Golden to deep copper. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.Medium-high to medium bitterness with supporting malt flavors evident. Normally has a moderately low to somewhat strong caramelly malt sweetness. Hop flavor moderate to moderately high (any variety, although earthy, resiny, and/or floral UK hops are most traditional). Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. May have low levels of secondary malt flavors (e.g., nutty, biscuity) adding complexity. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol, and up to a moderate minerally/sulfury flavor. Medium-dry to dry finish (particularly if sulfate water is used). Generally no diacetyl, although very low levels are allowed.Medium-light to medium-full body. Low to moderate carbonation, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.An average-strength to moderately-strong English ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style; emphasis is still on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales. A rather broad style that allows for considerable interpretation by the brewer. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily "more premium" since best bitters are traditionally the brewer''s finest product). Since beer is sold by strength in the UK, these beers often have some alcohol flavor (perhaps to let the consumer know they are getting their due). In England today, "ESB" is a brand unique to Fullers; in America, the name has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) English-type ale. Hopping can be English or a combination of English and American.','Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English hops most typical, although American and European varieties are becoming more common (particularly in the paler examples). Characterful English yeast. "Burton" versions use medium to high sulfate water.','Examples: Fullers ESB, Adnams Broadside, Shepherd Neame Bishop''s Finger, Young''s Ram Rod, Samuel Smith''s Old Brewery Pale Ale, Bass Ale, Whitbread Pale Ale, Shepherd Neame Spitfire, Marston''s Pedigree, Black Sheep Ale, Vintage Henley, Mordue Workie Ticket, Morland Old Speckled Hen, Greene King Abbot Ale, Bateman''s XXXB, Gale''s Hordean Special Bitter (HSB), Ushers 1824 Particular Ale, Hopback Summer Lightning, Great Lakes Moondog Ale, Shipyard Old Thumper, Alaskan ESB, Geary''s Pale Ale, Cooperstown Old Slugger, Anderson Valley Boont ESB, Avery 14''er ESB, Redhook ESB',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(43,'Flanders Brown Ale/Oud Bruin','Ale','Sour Ale','17','C','BJCP',1.04,1.074,1.008,1.012,20.0,25.0,15.0,22.0,4.0,8.0,0.0,0.0,'Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. A deeper malt character distinguishes these beers from Flanders red ales. This style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. As in fruit lambics, Oud Bruin can be used as a base for fruit-flavored beers such as kriek (cherries) or frambozen (raspberries), though these should be entered in the classic-style fruit beer category. The Oud Bruin is less acetic and maltier than a Flanders Red, and the fruity flavors are more malt-oriented.','Complex combination of fruity esters and rich malt character. Esters commonly reminiscent of raisins, plums, figs, dates, black cherries or prunes. A malt character of caramel, toffee, orange, treacle or chocolate is also common. Spicy phenols can be present in low amounts for complexity. A sherry-like character may be present and generally denotes an aged example. A low sour aroma may be present, and can modestly increase with age but should not grow to a noticeable acetic/vinegary character. Hop aroma absent. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.Malty with fruity complexity and some caramelization character. Fruitiness commonly includes dark fruits such as raisins, plums, figs, dates, black cherries or prunes. A malt character of caramel, toffee, orange, treacle or chocolate is also common. Spicy phenols can be present in low amounts for complexity. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a "sweet-and-sour" profile. The sourness should not grow to a notable acetic/vinegary character. Hop flavor absent. Restrained hop bitterness. Low oxidation is appropriate as a point of complexity. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor.Medium to medium-full body. Low to moderate carbonation. No astringency with a sweet and tart finish.A malty, fruity, aged, somewhat sour Belgian-style brown ale. An "old ale" tradition, indigenous to East Flanders, typified by the products of the Liefman brewery (now owned by Riva), which has roots back to the 1600s. Historically brewed as a "provision beer" that would develop some sourness as it aged. These beers were typically more sour than current commercial examples. While Flanders red beers are aged in oak, the brown beers are warm aged in stainless steel.','A base of Pils malt with judicious amounts of dark cara malts and a tiny bit of black or roast malt. Often includes maize. Low alpha acid continental hops are typical (avoid high alpha or distinctive American hops). Saccharomyces and Lactobacillus (and acetobacter) contribute to the fermentation and eventual flavor. Lactobacillus reacts poorly to elevated levels of alcohol. A sour mash or acidulated malt may also be used to develop the sour character without introducing Lactobacillus. Water high in carbonates is typical of its home region and will buffer the acidity of darker malts and the lactic sourness. Magnesium in the water accentuates the sourness.','Liefman''s Goudenband, Liefman''s Odnar, Liefman''s Oud Bruin, Ichtegem Old Brown, Riva Vondel',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(44,'Flanders Red Ale','Ale','Sour Ale','17','B','BJCP',1.048,1.057,1.002,1.012,10.0,25.0,10.0,16.0,4.6,6.5,0.0,0.0,'Long aging and blending of young and well-aged beer often occurs, adding to the smoothness and complexity, though the aged product is sometimes released as a connoisseur''s beer. Known as the Burgundy of Belgium, it is more wine-like than any other beer style. The reddish color is a product of the malt although an extended, less-than-rolling portion of the boil may help add an attractive Burgundy hue. Aging will also darken the beer. The Flanders red is more acetic and the fruity flavors more reminiscent of a red wine than an Oud Bruin. Can have an apparent attenuation of up to 98%.','Complex fruitiness with complementary malt. Fruitiness is high, and reminiscent of black cherries, oranges, plums or red currants. There is often some vanilla and/or chocolate notes. Spicy phenols can be present in low amounts for complexity. The sour, acidic aroma ranges from complementary to intense. No hop aroma. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.Intense fruitiness commonly includes plum, orange, black cherry or red currant flavors. A mild vanilla and/or chocolate character is often present. Spicy phenols can be present in low amounts for complexity. Sour, acidic character ranges from complementary to intense. Malty flavors range from complementary to prominent. Generally as the sour character increases, the sweet character blends to more of a background flavor (and vice versa). No hop flavor. Restrained hop bitterness. An acidic, tannic bitterness is often present in low to moderate amounts, and adds an aged red wine-like character with a long, dry finish. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor.Medium bodied. Low to medium carbonation. Low to medium astringency, like a well-aged red wine, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon.A complex, sour, red wine-like Belgian-style ale. The indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1820 in West Flanders but reflective of earlier brewing traditions. The beer is aged for up to two years, often in huge oaken barrels which contain the resident bacteria necessary to sour the beer. It was once common in Belgium and England to blend old beer with young to balance the sourness and acidity found in aged beer. While blending of batches for consistency is now common among larger breweries, this type of blending is a fading art.','A base of Vienna and/or Munich malts, light to medium cara-malts, and a small amount of Special B are used with up to 20% maize. Low alpha acid continental hops are commonly used (avoid high alpha or distinctive American hops). Saccharomyces, Lactobacillus and Brettanomyces (and acetobacter) contribute to the fermentation and eventual flavor.','Rodenbach Klassiek, Rodenbach Grand Cru, Bellegems Bruin, Duchesse de Bourgogne, New Belgium La Folie, Petrus Oud Bruin, Southampton Flanders Red Ale, Verhaege Vichtenaar, Monk’s Cafe Flanders Red Ale, New Glarus Enigma, Panil Barriquée, Mestreechs Aajt',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(45,'Foreign Extra Stout','Ale','Stout','13','D','BJCP',1.056,1.075,1.01,1.018,30.0,70.0,30.0,40.0,5.5,8.0,0.0,0.0,'A rather broad class of stouts, these can be either fruity and sweet, dry and bitter, or even tinged with Brettanomyces (e.g., Guinness Foreign Extra Stout; this type of beer is best entered as a Specialty Beer - Category 23). Think of the style as either a scaled-up dry and/or sweet stout, or a scaled-down Imperial stout without the late hops. Highly bitter and hoppy versions are best entered as American-style Stouts (13E).','Roasted grain aromas moderate to high, and can have coffee, chocolate and/or lightly burnt notes. Fruitiness medium to high. Some versions may have a sweet aroma, or molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have the aroma of alcohol (never sharp, hot, or solventy). Hop aroma low to none. Diacetyl low to none.Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.Tropical versions can be quite sweet without much roast or bitterness, while export versions can be moderately dry (reflecting impression of a scaled-up version of either sweet stout or dry stout). Roasted grain and malt character can be moderate to high, although sharpness of dry stout will not be present in any example. Tropical versions can have high fruity esters, smooth dark grain flavors, and restrained bitterness; they often have a sweet, rum-like quality. Export versions tend to have lower esters, more assertive roast flavors, and higher bitterness. The roasted flavors of either version may taste of coffee, chocolate, or lightly burnt grain. Little to no hop flavor. Very low to no diacetyl.Medium-full to full body, often with a smooth, creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation.A very dark, moderately strong, roasty ale. Tropical varieties can be quite sweet, while export versions can be drier and fairly robust. Originally high-gravity stouts brewed for tropical markets (and hence, sometimes known as "Tropical Stouts"). Some bottled export (i.e., stronger) versions of dry or sweet stout also fit this profile. Guinness Foreign Extra Stout has been made since the early 1800s.','Similar to dry or sweet stout, but with more gravity. Pale and dark roasted malts and grains. Hops mostly for bitterness. May use adjuncts and sugar to boost gravity. Ale yeast (although some tropical stouts are brewed with lager yeast).','Lion Stout (Sri Lanka), Dragon Stout (Jamaica), ABC Stout (Singapore), Royal Extra "The Lion Stout" (Trinidad), Jamaica Stout (Jamaica), Export-Type: Freeminer Deep Shaft Stout, Guinness Foreign Extra Stout (bottled, not sold in the US), Ridgeway of Oxfordshire Foreign Extra Stout, Coopers Best Extra Stout, Elysian Dragonstooth Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(46,'French Cider','Cider','Standard Cider and Perry','27','C','BJCP',1.05,1.065,1.01,1.02,0.0,0.0,0.0,0.0,3.0,6.0,0.0,0.0,'Entrants MUST specify carbonation level (petillant or full). Entrants MUST specify sweetness (medium, sweet). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected.',' This includes Normandy styles plus ciders inspired by those styles, including ciders made by various techniques to achieve the French flavor profile. These ciders are made with bittersweet and bitter-sharp apple varieties cultivated specifically for cider making.  Traditional French procedures use small amounts of salt and calcium compounds (calcium chloride, calcium carbonate) to aid the process of pectin coagulation. These compounds may be used, pre-fermentation, but in limited quantity. It is a fault if judges can detect a salty or chalky taste. Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back sweetening with juice. Tends to a rich fullness.Clear to brilliant, medium to deep gold color.Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back sweetening with juice. Tends to a rich fullness.Medium to full, mouth filling. Moderate tannin apparent mainly as astringency. Carbonation moderate to champagne-like, but at higher levels it must not gush or foam.Medium to sweet, full-bodied, rich.','','[US] West County Reine de Pomme (MA), Rhyne Cider (CA,''); [France] Eric Bordelet (various), Etienne Dupont, Etienne Dupont Organic, Bellot',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(47,'Fruit Beer','Ale','Fruit Beer','20','','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Overall balance is the key to presenting a well-made fruit beer. The fruit should complement the original style and not overwhelm it. The brewer should recognize that some combinations of base beer styles and fruits work well together while others do not make for harmonious combinations. THE ENTRANT MUST SPECIFY THE UNDERLYING BEER STYLE AS WELL AS THE TYPE OF FRUIT(S) USED. IF THIS BEER IS BASED ON A CLASSIC STYLE (E.G., BLONDE ALE) THEN THE SPECIFIC STYLE MUST BE SPECIFIED. CLASSIC STYLES DO NOT HAVE TO BE CITED (E.G., "PORTER" OR "WHEAT ALE" IS ACCEPTABLE). THE TYPE OF FRUIT(S) MUST ALWAYS BE SPECIFIED. If the base beer is a classic style, the original style should come through in aroma and flavor. Note that fruit-based lambics should be entered in the Fruit Lambic category (17F), while other fruit-based Belgian specialties should be entered in the Belgian Specialty Ale category (16E). Aged fruit may sometimes have flavor and aroma characteristics similar to Sauternes, Sherry or Tokaj, but a beer with a quality such as this should make a special claim (e.g., amontillado, fino, botrytis). Beer with chile peppers should be entered in the Spice/Herb/Vegetable Beer category (21A).','The distinctive aromatics associated with the particular fruit(s) should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the fruit) nor should it have defects such as oxidation. As with all specialty beers, a proper fruit beer should be a harmonious balance of the featured fruit(s) with the underlying beer style. Aroma hops, yeast by-products and malt components of the underlying beer may not be as noticeable when fruit are present. These components (especially hops) may also be intentionally subdued to allow the fruit character to come through in the final presentation. If the base beer is an ale then a non-specific fruitiness and/or other fermentation by-products such as diacetyl may be present as appropriate for warmer fermentations. If the base beer is a lager, then overall less fermentation byproducts would be appropriate. Some malt aroma may be desirable, especially in dark styles. Hop aroma may be absent or balanced with fruit, depending on the style. The fruit should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense.Appearance should be appropriate to the base beer being presented and will vary depending on the base beer. For lighter-colored beers with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Fruit beers may have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit.As with aroma, the distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters or diacetyl, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit flavors present. Note that these components (especially hops) may be intentionally subdued to allow the fruit character to come through in the final presentation. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Remember that fruit generally add flavor not sweetness to fruit beers. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality.Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style.A harmonious marriage of fruit and beer. The key attributes of the underlying style will be different with the addition of fruit; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. ','','New Glarus Belgian Red and Raspberry Tart, Bell’s Cherry Stout, Dogfish Head Aprihop, Great Divide Wild Raspberry Ale, Founders Rübæus, Ebulum Elderberry Black Ale, Stiegl Radler, Weyerbacher Raspberry Imperial Stout, Abita Purple Haze, Melbourne Apricot Beer and Strawberry Beer, Saxer Lemon Lager, Magic Hat #9, Grozet Gooseberry and Wheat Ale, Pyramid Apricot Ale, Dogfish Head Fort',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(48,'Fruit Cider','Cider','Specialty Cider and Perry','28','B','BJCP',1.045,1.07,0.995,1.01,0.0,0.0,0.0,0.0,5.0,9.0,0.0,0.0,'Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (dry or medium). Entrants MUST specify what fruit(s) and/or fruit juice(s) were added.',' This is a cider with other fruits or fruit-juices added - for example, berry. Note that a "cider" made from a combination of apple and pear juice would be entered in this category since it is neither cider nor perry. The cider character must be present and must fit with the other fruits. It is a fault if the adjuncts completely dominate; a judge might ask, "Would this be different if neutral spirits replaced the cider?" A fruit cider should not be like an alco-pop. Oxidation is a fault.Clear to brilliant. Color appropriate to added fruit, but should not show oxidation characteristics. (For example, berries should give red-to-purple color, not orange.)The cider character must be present and must fit with the other fruits. It is a fault if the adjuncts completely dominate; a judge might ask, "Would this be different if neutral spirits replaced the cider?" A fruit cider should not be like an alco-pop. Oxidation is a fault.Substantial. May be significantly tannic depending on fruit added.Like a dry wine with complex flavors. The apple character must marry with the added fruit so that neither dominates the other. ','','[US] West County Blueberry-Apple Wine (MA), AEppelTreow Red Poll Cran-Apple Draft Cider (WI), Bellwether Cherry Street (NY), Uncle John''s Fruit Farm Winery Apple Cherry Hard Cider (MI)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(49,'Fruit Lambic','Ale','Sour Ale','17','F','BJCP',1.04,1.06,1.0,1.01,0.0,0.0,3.0,7.0,5.0,7.0,0.0,0.0,'Fruit-based lambics are often produced like gueuze by mixing one, two, and three-year old lambic. "Young" lambic contains fermentable sugars while old lambic has the characteristic "wild" taste of the Senne River valley. Fruit is commonly added halfway through aging and the yeast and bacteria will ferment all sugars from the fruit. Fruit may also be added to unblended lambic. The most traditional styles of fruit lambics include kriek (cherries), framboise (raspberries) and druivenlambik (muscat grapes). ENTRANT MUST SPECIFY THE TYPE OF FRUIT(S) USED IN MAKING THE LAMBIC. Any overly sweet lambics (e.g., Lindemans or Belle Vue clones) would do better entered in the 16E Belgian Specialty category since this category does not describe beers with that character. IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.','The fruit which has been added to the beer should be the dominant aroma. A low to moderately sour/acidic character blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket (and thus should be recognizable as a lambic). The fruit aroma commonly blends with the other aromas. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. No diacetyl.The variety of fruit generally determines the color though lighter-colored fruit may have little effect on the color. The color intensity may fade with age. Clarity is often good, although some fruit will not drop bright. A thick rocky, mousse-like head, sometimes a shade of fruit, is generally long-lasting. Always effervescent.The fruit added to the beer should be evident. A low to moderate sour and more commonly (sometimes high) acidic character is present. The classic barnyard characteristics may be low to high. When young, the beer will present its full fruity taste. As it ages, the lambic taste will become dominant at the expense of the fruit character - thus fruit lambics are not intended for long aging. A low, complementary sweetness may be present, but higher levels are uncharacteristic. A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent. No hop flavor. No diacetyl.Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a low warming character. Highly carbonated.Complex, fruity, pleasantly sour/acidic, balanced, pale, wheat-based ale fermented by a variety of Belgian microbiota. A lambic with fruit, not just a fruit beer. Spontaneously fermented sour ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. Their numbers are constantly dwindling and some are untraditionally sweetening their products (post-fermentation) with sugar or sweet fruit to make them more palatable to a wider audience. Fruit was traditionally added to lambic or gueuze, either by the blender or publican, to increase the variety of beers available in local cafes.','Unmalted wheat (30-40%), Pilsner malt and aged (surannes) hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditional products use 10-30% fruit (25%, if cherry). Fruits traditionally used include tart cherries (with pits), raspberries or Muscat grapes. More recent examples include peaches, apricots or merlot grapes. Tart or acidic fruit is traditionally used as its purpose is not to sweeten the beer but to add a new dimension. Traditionally these beers are spontaneously fermented with naturally-occurring yeast and bacteria in predominately oaken barrels. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.','Boon Framboise Marriage Parfait, Boon Kriek Mariage Parfait, Boon Oude Kriek, Cantillon Fou'' Foune (apricot), Cantillon Kriek, Cantillon Lou Pepe Kriek, Cantillon Lou Pepe Framboise, Cantillon Rose de Gambrinus, Cantillon St. Lamvinus (merlot grape), Cantillon Vigneronne (Muscat grape), De Cam Oude Kriek, Drie Fonteinen Kriek, Girardin Kriek, Hanssens Oude Kriek, Oud Beersel Kriek, Mort Subite Kriek',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(50,'German Pilsner (Pils)','Lager','Pilsner','2','A','BJCP',1.044,1.05,1.008,1.013,25.0,45.0,2.0,5.0,4.4,5.2,0.0,0.0,'Drier and crisper than a Bohemian Pilsener with a bitterness that tends to linger more in the aftertaste due to higher attenuation and higher-sulfate water. Lighter in body and color, and with higher carbonation than a Bohemian Pilsener. Modern examples of German Pilsners tend to become paler in color, drier in finish, and more bitter as you move from South to North in Germany.','Typically features a light grainy Pils malt character (sometimes Graham cracker-like) and distinctive flowery or spicy noble hops. Clean, no fruity esters, no diacetyl. May have an initial sulfury aroma (from water and/or yeast) and a low background note of DMS (from Pils malt).Straw to light gold, brilliant to very clear, with a creamy, long-lasting white head.Crisp and bitter, with a dry to medium-dry finish. Moderate to moderately-low yet well attenuated maltiness, although some grainy flavors and slight Pils malt sweetness are acceptable. Hop bitterness dominates taste and continues through the finish and lingers into the aftertaste. Hop flavor can range from low to high but should only be derived from German noble hops. Clean, no fruity esters, no diacetyl.Medium-light body, medium to high carbonation.Crisp, clean, refreshing beer that prominently features noble German hop bitterness accentuated by sulfates in the water. A copy of Bohemian Pilsener adapted to brewing conditions in Germany.','Pilsner malt, German hop varieties (especially noble varieties such as Hallertauer, Tettnanger and Spalt for taste and aroma), medium sulfate water, German lager yeast.','Victory Prima Pils, Bitburger, Warsteiner, Trumer Pils, Old Dominion Tupper’s Hop Pocket Pils, König Pilsener, Jever Pils, Left Hand Polestar Pilsner, Holsten Pils, Spaten Pils, Brooklyn Pilsner',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(51,'Gueuze','Ale','Sour Ale','17','E','BJCP',1.04,1.06,1.0,1.006,0.0,0.0,3.0,7.0,5.0,8.0,0.0,0.0,'Gueuze is traditionally produced by mixing one, two, and three-year old lambic. "Young" lambic contains fermentable sugars while old lambic has the characteristic "wild" taste of the Senne River valley. A good gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety flavor. Lambic is served uncarbonated, while gueuze is served effervescent. IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics. Products marked "oude" or "ville" are considered most traditional.','A moderately sour/acidic aroma blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. While some may be more dominantly sour/acidic, balance is the key and denotes a better gueuze. Commonly fruity with aromas of citrus fruits (often grapefruit), apples or other light fruits, rhubarb, or honey. A very mild oak aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. No diacetyl.Golden in color. Clarity is excellent (unless the bottle was shaken). A thick rocky, mousse-like, white head seems to last forever. Always effervescent.A moderately sour/acidic character is classically in balance with the malt, wheat and barnyard characteristics. A low, complementary sweetness may be present but higher levels are uncharacteristic. While some may be more dominantly sour, balance is the key and denotes a better gueuze. A varied fruit flavor is common, and can have a honey-like character. A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent but a very low hop bitterness may occasionally be perceived. No hop flavor. No diacetyl.Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a low warming character. Highly carbonated.Complex, pleasantly sour/acidic, balanced, pale, wheat-based ale fermented by a variety of Belgian microbiota. Spontaneously fermented sour ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. Their numbers are constantly dwindling and some are untraditionally sweetening their products (post-fermentation) to make them more palatable to a wider audience.','Unmalted wheat (30-40%), Pilsner malt and aged (surannes) hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally-occurring yeast and bacteria in predominately oaken barrels. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.','Boon Oude Gueuze, Boon Oude Gueuze Mariage Parfait, De Cam Gueuze, De Cam/Drei Fonteinen Millennium Gueuze, Drie Fonteinen Oud Gueuze, Cantillon Gueuze, Hanssens Oude Gueuze, Lindemans Gueuze Cuvée René, Girardin Gueuze (Black Label), Mort Subite (Unfiltered) Gueuze, Oud Beersel Oude Gueuze',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(52,'Imperial IPA','Ale','India Pale Ale','14','C','BJCP',1.07,1.09,1.01,1.02,60.0,120.0,8.0,15.0,7.5,10.0,0.0,0.0,'Bigger than either an English or American IPA in both alcohol strength and overall hop level (bittering and finish). Less malty, lower body, less rich and a greater overall hop intensity than an American Barleywine. Typically not as high in gravity/alcohol as a barleywine, since high alcohol and malt tend to limit drinkability. A showcase for hops.','A prominent to intense hop aroma that can be derived from American, English and/or noble varieties (although a citrusy hop character is almost always present). Most versions are dry hopped and can have an additional resinous or grassy aroma, although this is not absolutely required. Some clean malty sweetness may be found in the background. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is typical. Some alcohol can usually be noted, but it should not have a "hot" character.Color ranges from golden amber to medium reddish copper; some versions can have an orange-ish tint. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Good head stand with off-white color should persist.Hop flavor is strong and complex, and can reflect the use of American, English and/or noble hop varieties. High to absurdly high hop bitterness, although the malt backbone will generally support the strong hop character and provide the best balance. Malt flavor should be low to medium, and is generally clean and malty although some caramel or toasty flavors are acceptable at low levels. No diacetyl. Low fruitiness is acceptable but not required. A long, lingering bitterness is usually present in the aftertaste but should not be harsh. Medium-dry to dry finish. A clean, smooth alcohol flavor is usually present. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.Smooth, medium-light to medium body. No harsh hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation in the presence of malt sweetness. Smooth alcohol warming.An intensely hoppy, very strong pale ale without the big maltiness and/or deeper malt flavors of an American barleywine. Strongly hopped, but clean, lacking harshness, and a tribute to historical IPAs. Drinkability is an important characteristic; this should not be a heavy, sipping beer. It should also not have much residual sweetness or a heavy character grain profile. A recent American innovation reflecting the trend of American craft brewers "pushing the envelope" to satisfy the need of hop aficionados for increasingly intense products. The adjective "Imperial" is arbitrary and simply implies a stronger version of an IPA; "double," "extra," "extreme," or any other variety of adjectives would be equally valid.','Pale ale malt (well-modified and suitable for single-temperature infusion mashing,''); can use a complex variety of hops (English, American, noble). American yeast that can give a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Water character varies from soft to moderately sulfate.','Russian River Pliny the Elder, Three Floyd''s Dreadnaught, Avery Majaraja, Bell''s Hop Slam, Stone Ruination IPA, Great Divide Hercules Double IPA, Surly Furious, Rogue I2PA, Moylan''s Hopsickle Imperial India Pale Ale, Stoudt''s Double IPA, Dogfish Head 90-minute IPA, Victory Hop Wallop',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(53,'Irish Red Ale','Ale','Scottish and Irish Ale','9','D','BJCP',1.044,1.06,1.01,1.014,17.0,28.0,9.0,18.0,4.0,6.0,0.0,0.0,'Sometimes brewed as a lager (if so, generally will not exhibit a diacetyl character). When served too cold, the roasted character and bitterness may seem more elevated.','Low to moderate malt aroma, generally caramel-like but occasionally toasty or toffee-like in nature. May have a light buttery character (although this is not required). Hop aroma is low to none (usually not present). Quite clean.Amber to deep reddish copper color (most examples have a deep reddish hue). Clear. Low off-white to tan colored head.Moderate caramel malt flavor and sweetness, occasionally with a buttered toast or toffee-like quality. Finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. Generally no flavor hops, although some examples may have a light English hop flavor. Medium-low hop bitterness, although light use of roasted grains may increase the perception of bitterness to the medium range. Medium-dry to dry finish. Clean and smooth (lager versions can be very smooth). No esters.Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel. Moderate carbonation. Smooth. Moderately attenuated (more so than Scottish ales). May have a slight alcohol warmth in stronger versions.An easy-drinking pint. Malt-focused with an initial sweetness and a roasted dryness in the finish. ','May contain some adjuncts (corn, rice, or sugar), although excessive adjunct use will harm the character of the beer. Generally has a bit of roasted barley to provide reddish color and dry roasted finish. UK/Irish malts, hops, yeast.','Three Floyds Brian Boru Old Irish Ale, Great Lakes Conway''s Irish Ale (a bit strong at 6.5%), Kilkenny Irish Beer, O''Hara''s Irish Red Ale, Smithwick''s Irish Ale, Beamish Red Ale, Caffrey''s Irish Ale, Goose Island Kilgubbin Red Ale, Murphy''s Irish Red (lager), Boulevard Irish Ale, Harpoon Hibernian Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(54,'Kölsch','Ale','Light Hybrid Beer','6','C','BJCP',1.044,1.05,1.007,1.011,20.0,30.0,4.0,5.0,4.4,5.2,0.0,0.0,'Served in a tall, narrow 200ml glass called a "Stange." Each Köln brewery produces a beer of different character, and each interprets the Konvention slightly differently. Allow for a range of variation within the style when judging. Note that drier versions may seem hoppier or more bitter than the IBU specifications might suggest. Due to its delicate flavor profile, Kölsch tends to have a relatively short shelf-life; older examples can show some oxidation defects. Some Köln breweries (e.g., Dom, Hellers) are now producing young, unfiltered versions known as Wiess (which should not be entered in this category).','Very low to no Pils malt aroma. A pleasant, subtle fruit aroma from fermentation (apple, cherry or pear) is acceptable, but not always present. A low noble hop aroma is optional but not out of place (it is present only in a small minority of authentic versions). Some yeasts may give a slight winy or sulfury character (this characteristic is also optional, but not a fault).Very pale gold to light gold. Authentic versions are filtered to a brilliant clarity. Has a delicate white head that may not persist.Soft, rounded palate comprising of a delicate flavor balance between soft yet attenuated malt, an almost imperceptible fruity sweetness from fermentation, and a medium-low to medium bitterness with a delicate dryness and slight pucker in the finish (but no harsh aftertaste). The noble hop flavor is variable, and can range from low to moderately high; most are medium-low to medium. One or two examples (Dom being the most prominent) are noticeably malty-sweet up front. Some versions can have a slightly minerally or sulfury water or yeast character that accentuates the dryness and flavor balance. Some versions may have a slight wheat taste, although this is quite rare. Otherwise very clean with no diacetyl or fusels.Smooth and crisp. Medium-light body, although a few versions may be medium. Medium to medium-high carbonation. Generally well-attenuated.A clean, crisp, delicately balanced beer usually with very subtle fruit flavors and aromas. Subdued maltiness throughout leads to a pleasantly refreshing tang in the finish. To the untrained taster easily mistaken for a light lager, a somewhat subtle Pilsner, or perhaps a blonde ale. Kölsch is an appellation protected by the Kölsch Konvention, and is restricted to the 20 or so breweries in and around Cologne (Köln). The Konvention simply defines the beer as a "light, highly attenuated, hop-accentuated, clear top-fermenting Vollbier."','German noble hops (Hallertau, Tettnang, Spalt or Hersbrucker). German Pils or pale malt. Attenuative, clean ale yeast. Up to 20% wheat may be used, but this is quite rare in authentic versions. Water can vary from extremely soft to moderately hard. Traditionally uses a step mash program, although good results can be obtained using a single rest at 149F. Fermented at cool ale temperatures (59-65F) and lagered for at least a month, although many Cologne brewers ferment at 70F and lager for no more than two weeks.','Available in Cologne only: PJ Früh, Hellers, Malzmühle, Paeffgen, Sion, Peters, Dom; import versions available in parts of North America: Reissdorf, Gaffel; Non-German versions: Eisenbahn Dourada, Goose Island Summertime, Alaska Summer Ale, Harpoon Summer Beer, New Holland Lucid, Saint Arnold Fancy Lawnmower, Capitol City Capitol Kölsch, Shiner Kölsch',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(55,'Lite American Lager','Lager','Light Lager','1','A','BJCP',1.028,1.04,0.998,1.008,8.0,12.0,2.0,3.0,2.8,4.2,0.0,0.0,'A lower gravity and lower calorie beer than standard international lagers. Strong flavors are a fault. Designed to appeal to the broadest range of the general public as possible.','Little to no malt aroma, although it can be grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. Low levels of yeast character (green apples, DMS, or fruitiness) are optional but acceptable. No diacetyl.Very pale straw to pale yellow color. White, frothy head seldom persists. Very clear.Crisp and dry flavor with some low levels of grainy or corn-like sweetness. Hop flavor ranges from none to low levels. Hop bitterness at low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may provide a slight acidity or dry "sting." No diacetyl. No fruitiness.Very light body from use of a high percentage of adjuncts such as rice or corn. Very highly carbonated with slight carbonic bite on the tongue. May seem watery.Very refreshing and thirst quenching. ','Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts.','Bitburger Light, Sam Adams Light, Heineken Premium Light, Miller Lite, Bud Light, Coors Light, Baltika #1 Light, Old Milwaukee Light, Amstel Light',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(56,'Maibock/Helles Bock','Lager','Bock','5','A','BJCP',1.064,1.072,1.011,1.018,23.0,35.0,6.0,11.0,6.3,7.4,0.0,0.0,'Can be thought of as either a pale version of a traditional bock, or a Munich helles brewed to bock strength. While quite malty, this beer typically has less dark and rich malt flavors than a traditional bock. May also be drier, hoppier, and more bitter than a traditional bock. The hops compensate for the lower level of melanoidins. There is some dispute whether Helles ("pale") Bock and Mai ("May") Bock are synonymous. Most agree that they are identical (as is the consensus for Märzen and Oktoberfest), but some believe that Maibock is a "fest" type beer hitting the upper limits of hopping and color for the range. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.','Moderate to strong malt aroma, often with a lightly toasted quality and low melanoidins. Moderately low to no noble hop aroma, often with a spicy quality. Clean. No diacetyl. Fruity esters should be low to none. Some alcohol may be noticeable. May have a light DMS aroma from Pils malt.Deep gold to light amber in color. Lagering should provide good clarity. Large, creamy, persistent, white head.The rich flavor of continental European pale malts dominates (Pils malt flavor with some toasty notes and/or melanoidins). Little to no caramelization. May have a light DMS flavor from Pils malt. Moderate to no noble hop flavor. May have a low spicy or peppery quality from hops and/or alcohol. Moderate hop bitterness (more so in the balance than in other bocks). Clean, with no fruity esters or diacetyl. Well-attenuated, not cloying, with a moderately dry finish that may taste of both malt and hops.Medium-bodied. Moderate to moderately high carbonation. Smooth and clean with no harshness or astringency, despite the increased hop bitterness. Some alcohol warming may be present.A relatively pale, strong, malty lager beer. Designed to walk a fine line between blandness and too much color. Hop character is generally more apparent than in other bocks. A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is specifically associated with springtime and the month of May. ','Base of Pils and/or Vienna malt with some Munich malt to add character (although much less than in a traditional bock). No non-malt adjuncts. Noble hops. Soft water preferred so as to avoid harshness. Clean lager yeast. Decoction mash is typical, but boiling is less than in traditional bocks to restrain color development.','Ayinger Maibock, Mahr''s Bock, Hacker-Pschorr Hubertus Bock, Capital Maibock, Einbecker Mai-Urbock, Hofbräu Maibock, Victory St. Boisterous, Gordon Biersch Blonde Bock, Smuttynose Maibock',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(57,'Metheglin','Mead','Other Mead','26','A','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Often, a blend of spices may give a character greater than the sum of its parts. The better examples of this style use spices/herbs subtly and when more than one are used, they are carefully selected so that they blend harmoniously. See standard description for entrance requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the types of spices used.',' A Metheglin is a spiced mead. Depending on the sweetness and strength, a subtle to distinctly identifiable honey and herb/spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The herb/spice character should display distinctive aromatics associated with the particular herbs/spices; however, note that some herbs/spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) allow for a range of herb/spice character and intensity from subtle to aggressive. The herb/spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the herb/spice). In a blended herb/spice metheglin, not all herbs/spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some herbs and spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics.Standard description applies, except perhaps to note that the color usually won''t be affected by spices and herbs (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors).The herb/spice flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular herbs/spices may range in intensity from subtle to aggressive (although some herbs/spices may not be individually recognizable, and can just serve to add a background complexity). Certain herbs and spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Metheglins containing more than one herb/spice should have a good balance among the different herbs/spices, though some herbs/spices will tend to dominate the flavor profile. A metheglin may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics.Standard description applies. Some herbs or spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive.In well-made examples of the style, the herbs/spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of herbs/spices can result in widely different characteristics; allow for a variation in the final product. ','Standard description applies. A metheglin is a standard mead made with the addition of spices or herbs. Meads made with flowers (such as rose petal mead, or rhodomel), chocolate, coffee, nuts or chile peppers (capsimel/capsicumel) may also be entered in this category, as can meads made with a blend of spices. If spices are used in conjunction with other ingredients such as fruit, cider, or other fermentables, then the mead should be entered as an Open Category Mead.','Bonair Chili Mead, Redstone Juniper Mountain Honey Wine, Redstone Vanilla Beans and Cinnamon Sticks Mountain Honey Wine, Long Island Meadery Vanilla Mead, iQhilika Africa Birds Eye Chilli Mead, Mountain Meadows Spice Nectar',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(58,'Mild','Ale','English Brown Ale','11','A','BJCP',1.03,1.038,1.008,1.013,10.0,25.0,12.0,25.0,2.8,4.5,0.0,0.0,'Most are low-gravity session beers in the range 3.1-3.8%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal and/or special occasions. Generally served on cask; session-strength bottled versions don''t often travel well. A wide range of interpretations are possible.','Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramelly, grainy, toasted, nutty, chocolate, or lightly roasted. Little to no hop aroma. Very low to no diacetyl.Copper to dark brown or mahogany color. A few paler examples (medium amber to light brown) exist. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head. Retention may be poor due to low carbonation, adjunct use and low gravity.Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, vinous, fruit, licorice, molasses, plum, raisin). Can finish sweet or dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt. Fruity esters moderate to none. Diacetyl and hop flavor low to none.Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity.A light-flavored, malt-accented beer that is readily suited to drinking in quantity. Refreshing, yet flavorful. Some versions may seem like lower gravity brown porters. May have evolved as one of the elements of early porters. In modern terms, the name "mild" refers to the relative lack of hop bitterness (i.e., less hoppy than a pale ale, and not so strong). Originally, the "mildness" may have referred to the fact that this beer was young and did not yet have the moderate sourness that aged batches had. Somewhat rare in England, good versions may still be found in the Midlands around Birmingham.','Pale English base malts (often fairly dextrinous), crystal and darker malts should comprise the grist. May use sugar adjuncts. English hop varieties would be most suitable, though their character is muted. Characterful English ale yeast.','Moorhouse Black Cat, Gale''s Festival Mild, Theakston Traditional Mild, Highgate Mild, Sainsbury Mild, Brain''s Dark, Banks''s Mild, Coach House Gunpowder Strong Mild, Woodforde''s Mardler''s Mild, Greene King XX Mild, Motor City Brewing Ghettoblaster',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(59,'Munich Dunkel','Lager','Dark Lager','4','B','BJCP',1.048,1.056,1.01,1.016,18.0,28.0,14.0,28.0,4.5,5.6,0.0,0.0,'Unfiltered versions from Germany can taste like liquid bread, with a yeasty, earthy richness not found in exported filtered dunkels.','Rich, Munich malt sweetness, like bread crusts (and sometimes toast.) Hints of chocolate, nuts, caramel, and/or toffee are also acceptable. No fruity esters or diacetyl should be detected, but a slight noble hop aroma is acceptable.Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear, although murky unfiltered versions exist.Dominated by the rich and complex flavor of Munich malt, usually with melanoidins reminiscent of bread crusts. The taste can be moderately sweet, although it should not be overwhelming or cloying. Mild caramel, chocolate, toast or nuttiness may be present. Burnt or bitter flavors from roasted malts are inappropriate, as are pronounced caramel flavors from crystal malt. Hop bitterness is moderately low but perceptible, with the balance tipped firmly towards maltiness. Noble hop flavor is low to none. Aftertaste remains malty, although the hop bitterness may become more apparent in the medium-dry finish. Clean lager character with no fruity esters or diacetyl.Medium to medium-full body, providing a firm and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. May have a light astringency and a slight alcohol warming.Characterized by depth and complexity of Munich malt and the accompanying melanoidins. Rich Munich flavors, but not as intense as a bock or as roasted as a schwarzbier. The classic brown lager style of Munich which developed as a darker, malt-accented beer in part because of the moderately carbonate water. While originating in Munich, the style has become very popular throughout Bavaria (especially Franconia).','Grist is traditionally made up of German Munich malt (up to 100% in some cases) with the remainder German Pilsner malt. Small amounts of crystal malt can add dextrins and color but should not introduce excessive residual sweetness. Slight additions of roasted malts (such as Carafa or chocolate) may be used to improve color but should not add strong flavors. Noble German hop varieties and German lager yeast strains should be used. Moderately carbonate water. Often decoction mashed (up to a triple decoction) to enhance the malt flavors and create the depth of color.','Ayinger Altbairisch Dunkel, Hacker-Pschorr Alt Munich Dark, Paulaner Alt Münchner Dunkel, Weltenburger Kloster Barock-Dunkel, Ettaler Kloster Dunkel, Hofbräu Dunkel, Penn Dark Lager, König Ludwig Dunkel, Capital Munich Dark, Harpoon Munich-type Dark Beer, Gordon Biersch Dunkels, Dinkel Acker Dark. In Bavaria, Ettaler Dunkel, Löwenbräu Dunkel, Hartmann Dunkel, Kneitinger Dunkel, Augustiner Dunkel.',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(60,'Munich Helles','Lager','Light Lager','1','D','BJCP',1.045,1.051,1.008,1.012,16.0,22.0,3.0,5.0,4.7,5.4,0.0,0.0,'Unlike Pilsner but like its cousin, Munich Dunkel, Helles is a malt-accentuated beer that is not overly sweet, but rather focuses on malt flavor with underlying hop bitterness in a supporting role.','Pleasantly grainy-sweet, clean Pils malt aroma dominates. Low to moderately-low spicy noble hop aroma, and a low background note of DMS (from Pils malt). No esters or diacetyl.Medium yellow to pale gold, clear, with a creamy white head.Slightly sweet, malty profile. Grain and Pils malt flavors dominate, with a low to medium-low hop bitterness that supports the malty palate. Low to moderately-low spicy noble hop flavor. Finish and aftertaste remain malty. Clean, no fruity esters, no diacetyl.Medium body, medium carbonation, smooth maltiness with no trace of astringency.Malty but fully attenuated Pils malt showcase. Created in Munich in 1895 at the Spaten brewery by Gabriel Sedlmayr to compete with Pilsner-style beers.','Moderate carbonate water, Pilsner malt, German noble hop varieties.','Weihenstephaner Original, Hacker-Pschorr Münchner Gold, Bürgerbräu Wolznacher Hell Naturtrüb, Mahr''s Hell, Paulaner Premium Lager, Spaten Premium Lager, Stoudt''s Gold Lager',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(61,'New England Cider','Cider','Specialty Cider and Perry','28','A','BJCP',1.06,1.1,0.995,1.01,0.0,0.0,0.0,0.0,7.0,13.0,0.0,0.0,'Adjuncts may include white and brown sugars, molasses, small amounts of honey, and raisins. Adjuncts are intended to raise OG well above that which would be achieved by apples alone. This style is sometimes barrel-aged, in which case there will be oak character as with a barrel-aged wine. If the barrel was formerly used to age spirits, some flavor notes from the spirit (e.g., whisky or rum) may also be present, but must be subtle. Entrants MUST specify if the cider was barrel-fermented or aged. Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (dry, medium, or sweet).',' This is a cider made with characteristic New England apples for relatively high acidity, with adjuncts to raise alcohol levels. A dry flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar adjuncts.to brilliant, pale to medium yellow. A dry flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar adjuncts. Alcoholic. Moderate tannin. Substantial body and character. ','','There are no known commercial examples of New England Cider.',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(62,'Northern English Brown Ale','Ale','English Brown Ale','11','C','BJCP',1.04,1.052,1.008,1.014,20.0,30.0,12.0,22.0,4.2,5.4,0.0,0.0,'English brown ales are generally split into sub-styles along geographic lines.','Light, sweet malt aroma with toffee, nutty and/or caramel notes. A light but appealing fresh hop aroma (UK varieties) may also be noticed. A light fruity ester aroma may be evident in these beers, but should not dominate. Very low to no diacetyl.Dark amber to reddish-brown color. Clear. Low to moderate off-white to light tan head.Gentle to moderate malt sweetness, with a nutty, lightly caramelly character and a medium-dry to dry finish. Malt may also have a toasted, biscuity, or toffee-like character. Medium to medium-low bitterness. Malt-hop balance is nearly even, with hop flavor low to none (UK varieties). Some fruity esters can be present; low diacetyl (especially butterscotch) is optional but acceptable.Medium-light to medium body. Medium to medium-high carbonation.Drier and more hop-oriented that southern English brown ale, with a nutty character rather than caramel. ','English mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic. Moderate carbonate water.','Newcastle Brown Ale, Samuel Smith’s Nut Brown Ale, Riggwelter Yorkshire Ale, Wychwood Hobgoblin, Tröegs Rugged Trail Ale, Alesmith Nautical Nut Brown Ale, Avery Ellie’s Brown Ale, Goose Island Nut Brown Ale, Samuel Adams Brown Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(63,'Northern German Altbier','Ale','Amber Hybrid Beer','7','A','BJCP',1.046,1.054,1.01,1.015,25.0,40.0,13.0,19.0,4.5,5.2,0.0,0.0,'Most Altbiers produced outside of Düsseldorf are of the Northern German style.  Most are simply moderately bitter brown lagers. Ironically "alt" refers to the old style of brewing (i.e., making ales), which makes the term "Altbier" somewhat inaccurate and inappropriate. Those that are made as ales are fermented at cool ale temperatures and lagered at cold temperatures (as with Düsseldorf Alt).','Subtle malty, sometimes grainy aroma. Low to no noble hop aroma. Clean, lager character with very restrained ester profile. No diacetyl.Light copper to light brown color; very clear from extended cold conditioning. Low to moderate off-white to white head with good retention.Fairly bitter yet balanced by a smooth and sometimes sweet malt character that may have a rich, biscuity and/or lightly caramelly flavor. Dry finish often with lingering bitterness. Clean, lager character sometimes with slight sulfury notes and very low to no esters. Very low to medium noble hop flavor. No diacetyl.Medium-light to medium body. Moderate to moderately high carbonation. Smooth mouthfeel.A very clean and relatively bitter beer, balanced by some malt character. Generally darker, sometimes more caramelly, and usually sweeter and less bitter than Düsseldorf Altbier. ','Typically made with a Pils base and colored with roasted malt or dark crystal. May include small amounts of Munich or Vienna malt. Noble hops. Usually made with an attenuative lager yeast.','DAB Traditional, Hannen Alt, Schwelmer Alt, Grolsch Amber, Alaskan Amber, Long Trail Ale, Otter Creek Copper Ale, Schmaltz'' Alt',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(64,'Oatmeal Stout','Ale','Stout','13','C','BJCP',1.048,1.065,1.01,1.018,25.0,40.0,22.0,40.0,4.2,5.9,0.0,0.0,'Generally between sweet and dry stouts in sweetness. Variations exist, from fairly sweet to quite dry. The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel. When judging, allow for differences in interpretation.','Mild roasted grain aromas, often with a coffee-like character. A light sweetness can imply a coffee-and-cream impression. Fruitiness should be low to medium. Diacetyl medium-low to none. Hop aroma low to none (UK varieties most common). A light oatmeal aroma is optional.Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).Medium sweet to medium dry palate, with the complexity of oats and dark roasted grains present. Oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Diacetyl medium-low to none. Hop flavor medium-low to none.Medium-full to full body, smooth, silky, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation.A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. An English seasonal variant of sweet stout that is usually less sweet than the original, and relies on oatmeal for body and complexity rather than lactose for body and sweetness.','Pale, caramel and dark roasted malts and grains.','Samuel Smith Oatmeal Stout, Young''s Oatmeal Stout, McAuslan Oatmeal Stout, Maclay’s Oat Malt Stout, Broughton Kinmount Willie Oatmeal Stout, Anderson Valley Barney Flats Oatmeal Stout, Tröegs Oatmeal Stout, New Holland The Poet, Goose Island Oatmeal Stout, Wolaver’s Oatmeal Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(65,'Oktoberfest/Märzen','Ale','European Amber Lager','3','B','BJCP',1.05,1.057,1.012,1.016,20.0,28.0,7.0,14.0,4.8,5.7,0.0,0.0,'Domestic German versions tend to be golden, like a strong Pils-dominated Helles. Export German versions are typically orange-amber in color, and have a distinctive toasty malt character. German beer tax law limits the OG of the style at 14P since it is a vollbier, although American versions can be stronger. "Fest" type beers are special occasion beers that are usually stronger than their everyday counterparts.','Rich German malt aroma (of Vienna and/or Munich malt). A light to moderate toasted malt aroma is often present. Clean lager aroma with no fruity esters or diacetyl. No hop aroma. Caramel aroma is inappropriate.Dark gold to deep orange-red color. Bright clarity, with solid, off-white, foam stand.Initial malty sweetness, but finish is moderately dry. Distinctive and complex maltiness often includes a toasted aspect. Hop bitterness is moderate, and noble hop flavor is low to none. Balance is toward malt, though the finish is not sweet. Noticeable caramel or roasted flavors are inappropriate. Clean lager character with no diacetyl or fruity esters.Medium body, with a creamy texture and medium carbonation. Smooth. Fully fermented, without a cloying finish.Smooth, clean, and rather rich, with a depth of malt character. This is one of the classic malty styles, with a maltiness that is often described as soft, complex, and elegant but never cloying. Origin is credited to Gabriel Sedlmayr, based on an adaptation of the Vienna style developed by Anton Dreher around 1840, shortly after lager yeast was first isolated. Typically brewed in the spring, signaling the end of the traditional brewing season and stored in cold caves or cellars during the warm summer months. Served in autumn amidst traditional celebrations.','Grist varies, although German Vienna malt is often the backbone of the grain bill, with some Munich malt, Pils malt, and possibly some crystal malt. All malt should derive from the finest quality two-row barley. Continental hops, especially noble varieties, are most authentic. Somewhat alkaline water (up to 300 PPM), with significant carbonate content is welcome. A decoction mash can help develop the rich malt profile.','Paulaner Oktoberfest, Ayinger Oktoberfest-Märzen, Hacker-Pschorr Original Oktoberfest, Hofbräu Oktoberfest, Victory Festbier, Great Lakes Oktoberfest, Spaten Oktoberfest, Capital Oktoberfest, Gordon Biersch Märzen, Goose Island Oktoberfest, Samuel Adams Oktoberfest (a bit unusual in its late hopping)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(66,'Old Ale','Ale','Strong Ale','19','A','BJCP',1.06,1.09,1.015,1.022,30.0,60.0,10.0,22.0,6.0,9.0,0.0,0.0,'Strength and character varies widely. Fits in the style space between normal gravity beers (strong bitters, brown porters) and barleywines. Can include winter warmers, strong dark milds, strong (and perhaps darker) bitters, blended strong beers (stock ale blended with a mild or bitter), and lower gravity versions of English barleywines. Many English examples, particularly winter warmers, are lower than 6% ABV.','Malty-sweet with fruity esters, often with a complex blend of dried-fruit, vinous, caramelly, molasses, nutty, toffee, treacle, and/or other specialty malt aromas. Some alcohol and oxidative notes are acceptable, akin to those found in Sherry or Port. Hop aromas not usually present due to extended aging.Light amber to very dark reddish-brown color (most are fairly dark). Age and oxidation may darken the beer further. May be almost opaque (if not, should be clear). Moderate to low cream- to light tan-colored head; may be adversely affected by alcohol and age.Medium to high malt character with a luscious malt complexity, often with nutty, caramelly and/or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped (the impression of bitterness often depends on amount of aging). Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port or Madeira. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none. Some wood-aged or blended versions may have a lactic or Brettanomyces character; but this is optional and should not be too strong (enter as a specialty beer if it is).Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning.An ale of significant alcoholic strength, bigger than strong bitters and brown porters, though usually not as strong or rich as barleywine. Usually tilted toward a sweeter, maltier balance. "It should be a warming beer of the type that is best drunk in half pints by a warm fire on a cold winter''s night" - Michael Jackson. A traditional English ale style, mashed at higher temperatures than strong ales to reduce attenuation, then aged at the brewery after primary fermentation (similar to the process used for historical porters). Often had age-related character (lactic, Brett, oxidation, leather) associated with "stale" beers. Used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). Winter warmers are a more modern style that are maltier, fuller-bodied, often darker beers that may be a brewery''s winter seasonal special offering.','Generous quantities of well-modified pale malt (generally English in origin, though not necessarily so), along with judicious quantities of caramel malts and other specialty character malts. Some darker examples suggest that dark malts (e.g., chocolate, black malt) may be appropriate, though sparingly so as to avoid an overly roasted character. Adjuncts (such as molasses, treacle, invert sugar or dark sugar) are often used, as are starchy adjuncts (maize, flaked barley, wheat) and malt extracts. Hop variety is not as important, as the relative balance and aging process negate much of the varietal character. British ale yeast that has low attenuation, but can handle higher alcohol levels, is traditional.','Gale''s Prize Old Ale, Burton Bridge Olde Expensive, Marston Owd Roger, Greene King Olde Suffolk Ale , J.W. Lees Moonraker, Harviestoun Old Engine Oil, Fuller''s Vintage Ale, Harvey''s Elizabethan Ale, Theakston Old Peculier (peculiar at OG 1.057), Young''s Winter Warmer, Sarah Hughes Dark Ruby Mild, Samuel Smith''s Winter Welcome, Fuller''s 1845, Fuller''s Old Winter Ale, Great Divide Hibernation Ale, Founders Curmudgeon, Cooperstown Pride of Milford Special Ale, Coniston Old Man Ale, Avery Old Jubilation',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(67,'Open Category Mead','Mead','Other Mead','26','C','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'See standard description for entrance requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the special nature of the mead, whether it is a combination of existing styles, an experimental mead, a historical mead, or some other creation. Any special ingredients that impart an identifiable character MAY be declared.',' An Open Category Mead is a honey-based beverage that either combines ingredients from two or more of the other mead sub-categories, is a historical or indigenous mead (e.g., tej, Polish meads), or is a mead that does not fit into any other category. Any specialty or experimental mead using additional sources of fermentables (e.g., maple syrup, molasses, brown sugar, or agave nectar), additional ingredients (e.g., vegetables, liquors, smoke, etc.), alternative processes (e.g., icing, oak-aging) or other unusual ingredient, process, or technique would also be appropriate in this category. No mead can be "out of style" for this category unless it fits into another existing mead category. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category 25 for a detailed description of the character of dry, semisweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles. This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage.','','Jadwiga, Hanssens/Lurgashall Mead the Gueuze, Rabbit’s Foot Private Reserve Pear Mead, White Winter Cherry Bracket, Saba Tej, Mountain Meadows Trickster’s Treat Agave Mead, Intermiel Rosée',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(68,'Other Fruit Melomel','Mead','Melomel (Fruit Mead)','25','C','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'','Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s,''); however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the fruit). In a blended fruit melomel, not all fruit may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored melomels with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well. The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in some fruit and fruit skin may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A melomel may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial and/or inappropriately overpowering. In a blended fruit melomel, not all fruit may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.Standard description applies. Most will be wine-like. Some natural acidity and/or astringency are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and astringency levels should be somewhat reflective of the fruit used.In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.','Standard description applies. A melomel is a standard mead made with the addition of other fruit or fruit juices. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A melomel can be made with a blend of fruits; however, a melomel that is spiced or that contains other ingredients should be entered as an Open Category Mead. Melomels made with either apples or grapes should be entered as Cysers and Pyments, respectively.','White Winter Blueberry, Raspberry and Strawberry Melomels, Redstone Black Raspberry and Sunshine Nectars, Bees Brothers Raspberry Mead, Intermiel Honey Wine and Raspberries, Honey Wine and Blueberries, and Honey Wine and Blackcurrants, Long Island Meadery Blueberry Mead, Mountain Meadows Cranberry and Cherry Meads',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(69,'Other Smoked Beer','Ale','Smoke-flavored/Wood-aged Beer','22','B','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. IF THIS BEER IS BASED ON A CLASSIC STYLE (E.G., ROBUST PORTER) THEN THE SPECIFIC STYLE MUST BE SPECIFIED. CLASSIC STYLES DO NOT HAVE TO BE CITED (E.G., "PORTER" OR "BROWN ALE" IS ACCEPTABLE). THE TYPE OF WOOD OR OTHER SOURCE OF SMOKE MUST BE SPECIFIED IF A "VARIETAL" CHARACTER IS NOTICEABLE. Entries that have a classic style cited will be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style. Specific classic styles or smoke types do not have to be specified. For example, "smoked porter" is as acceptable as "peat-smoked strong Scotch ale" or "cherry-wood smoked IPA." Judges should evaluate the beers mostly on the overall balance, and how well the smoke character enhances the base beer.','The aroma should be a pleasant balance between the expected aroma of the base beer (e.g., robust porter) and the smokiness imparted by the use of smoked malts. The intensity and character of the smoke and base beer style can vary, with either being prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., peat, alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.Appearance: Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style.As with aroma, there should be a balance between smokiness and the expected flavor characteristics of the base beer style. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. Peat-smoked malt can add an earthiness. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn''t contribute these flavors).Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate.This is any beer that is exhibiting smoke as a principle flavor and aroma characteristic other than the Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen). Balance in the use of smoke, hops and malt character is exhibited by the better examples. The process of using smoked malts more recently has been adapted by craft brewers to other styles, notably porter and strong Scotch ales. German brewers have traditionally used smoked malts in bock, doppelbock, weizen, dunkel, schwarzbier, helles, Pilsner, and other specialty styles.','Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood-, peat- or other hardwood (oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. The various woods may remind one of certain smoked products due to their food association (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt.  Excessive peat-smoked malt is generally undesirable due to its sharp, piercing phenolics and dirt-like earthiness. The remaining ingredients vary with the base style. If smoked malts are combined with other unusual ingredients (fruits, vegetables, spices, honey, etc.) in noticeable quantities, the resulting beer should be entered in the specialty/experimental category.','Alaskan Smoked Porter, O''Fallons Smoked Porter, Spezial Lagerbier, Weissbier and Bockbier, Stone Smoked Porter, Schlenkerla Weizen Rauchbier and Ur-Bock Rauchbier, Rogue Smoke, Oskar Blues Old Chub, Left Hand Smoke Jumper, Dark Horse Fore Smoked Stout, Magic Hat Jinx',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(70,'Other Specialty Cider/Perry','Cider','Specialty Cider and Perry','28','D','BJCP',1.045,1.1,0.0,0.0,0.0,0.0,0.0,0.0,5.0,12.0,0.0,0.0,'Entrants MUST specify all major ingredients and adjuncts. Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (dry or medium).','The cider character must always be present, and must fit with adjuncts.Clear to brilliant. Color should be that of a common cider unless adjuncts are expected to contribute color.The cider character must always be present, and must fit with adjuncts.Average body, may show tannic (astringent) or heavy body as determined by adjuncts. ','','[US] Red Barn Cider Fire Barrel (WA), AEppelTreow Pear Wine and Sparrow Spiced Cider (WI)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(71,'Premium American Lager','Lager','Light Lager','1','C','BJCP',1.046,1.056,1.008,1.012,15.0,25.0,2.0,6.0,4.6,6.0,0.0,0.0,'Premium beers tend to have fewer adjuncts than standard/lite lagers, and can be all-malt. Strong flavors are a fault, but premium lagers have more flavor than standard/lite lagers. A broad category of international mass-market lagers ranging from up-scale American lagers to the typical "import" or "green bottle" international beers found in America.','Low to medium-low malt aroma, which can be grainy, sweet or corn-like. Hop aroma may range from very low to a medium-low, spicy or floral hop presence. Low levels of yeast character (green apples, DMS, or fruitiness) are optional but acceptable. No diacetyl.Pale straw to gold color. White, frothy head may not be long lasting. Very clear.Crisp and dry flavor with some low levels of grainy or malty sweetness. Hop flavor ranges from none to low levels. Hop bitterness at low to medium level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may provide a slight acidity or dry "sting." No diacetyl. No fruitiness.Medium-light body from use of adjuncts such as rice or corn. Highly carbonated with slight carbonic bite on the tongue.Refreshing and thirst quenching, although generally more filling than standard/lite versions. ','Two- or six-row barley with up to 25% rice or corn as adjuncts.','Full Sail Session Premium Lager, Miller Genuine Draft, Corona Extra, Michelob, Coors Extra Gold, Birra Moretti, Heineken, Beck''s, Stella Artois, Red Stripe, Singha',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(72,'Pyment','Mead','Melomel (Fruit Mead)','25','B','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. See standard description for entrance requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of grape used; if specified, a varietal character will be expected.',' A Pyment is a melomel made with grapes (generally from juice). Depending on the sweetness and strength, a subtle to distinctly identifiable honey and grape/wine character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The grape/wine character should be clean and distinctive; it can express a range of grape-based character ranging from a subtle fruitiness to a single varietal grape character (if declared) to a complex blend of grape or wine aromatics. Some complex, spicy, grassy or earthy notes may be present (as in wine). The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain red grape varieties are acceptable, as is a light diacetyl character from malolactic fermentation in certain white grape varieties (both are optional). Standard description applies for remainder of characteristics.Standard description applies, except with regard to color. Color may range from pale straw to deep purple-red, depending on the variety of grapes and honey used. The color should be characteristic of the variety or type of grape used, although white grape varieties may also take on color derived from the honey variety. The grape/wine and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in grapes may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A pyment may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Depending on the grape variety, some fruity, spicy, grassy, buttery, earthy, minerally, and/or floral flavors may be present. Standard description applies for remainder of characteristics.Standard description applies. Wine-like. Some natural acidity is usually present (from grapes) and helps balance the overall impression. Grape tannin and/or grape skins can add body as well as some astringency, although this character should not be excessive. Longer aging can smooth out tannin-based astringency.In well-made examples of the style, the grape is both distinctively vinous and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. White and red versions can be quite different, and the overall impression should be characteristic of the type of grapes used and suggestive of a similar variety wine. ','','Redstone Pinot Noir and White Pyment Mountain Honey Wines',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(73,'Robust Porter','Ale','Porter','12','B','BJCP',1.048,1.065,1.012,1.016,25.0,50.0,22.0,35.0,4.8,6.5,0.0,0.0,'Although a rather broad style open to brewer interpretation, it may be distinguished from Stout as lacking a strong roasted barley character. It differs from a brown porter in that a black patent or roasted grain character is usually present, and it can be stronger in alcohol. Roast intensity and malt flavors can also vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an "American" or "English" character.','Roasty aroma (often with a lightly burnt, black malt character) should be noticeable and may be moderately strong. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high (US or UK varieties). Some American versions may be dry-hopped. Fruity esters are moderate to none. Diacetyl low to none.Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.Moderately strong malt flavor usually features a lightly burnt, black malt character (and sometimes chocolate and/or coffee flavors) with a bit of roasty dryness in the finish. Overall flavor may finish from dry to medium-sweet, depending on grist composition, hop bittering level, and attenuation. May have a sharp character from dark roasted grains, although should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the roasted malt. Hop flavor can vary from low to moderately high (US or UK varieties, typically), and balances the roasted malt flavors. Diacetyl low to none. Fruity esters moderate to none.Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from roasted grains, although this character should not be strong.A substantial, malty dark ale with a complex and flavorful roasty character. Stronger, hoppier and/or roastier version of porter designed as either a historical throwback or an American interpretation of the style. Traditional versions will have a more subtle hop character (often English), while modern versions may be considerably more aggressive. Both types are equally valid.','May contain several malts, prominently dark roasted malts and grains, which often include black patent malt (chocolate malt and/or roasted barley may also be used in some versions). Hops are used for bittering, flavor and/or aroma, and are frequently UK or US varieties. Water with moderate to high carbonate hardness is typical. Ale yeast can either be clean US versions or characterful English varieties.','Great Lakes Edmund Fitzgerald Porter, Meantime London Porter, Anchor Porter, Smuttynose Robust Porter, Sierra Nevada Porter, Deschutes Black Butte Porter, Boulevard Bully! Porter, Rogue Mocha Porter, Avery New World Porter, Bell''s Porter, Great Divide Saint Bridget''s Porter',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(74,'Roggenbier (German Rye Beer)','Ale','German Wheat and Rye Beer','15','D','BJCP',1.046,1.056,1.01,1.014,10.0,20.0,14.0,19.0,4.5,6.0,0.0,0.0,'American-style rye beers should be entered in the American Rye category (6D). Other traditional beer styles with enough rye added to give a noticeable rye character should be entered in the Specialty Beer category (23). Rye is a huskless grain and is difficult to mash, often resulting in a gummy mash texture that is prone to sticking. Rye has been characterized as having the most assertive flavor of all cereal grains. It is inappropriate to add caraway seeds to a roggenbier (as some American brewers do,''); the rye character is traditionally from the rye grain only.','Light to moderate spicy rye aroma intermingled with light to moderate weizen yeast aromatics (spicy clove and fruity esters, either banana or citrus). Light noble hops are acceptable. Can have a somewhat acidic aroma from rye and yeast. No diacetyl.Light coppery-orange to very dark reddish or coppery-brown color. Large creamy off-white to tan head, quite dense and persistent (often thick and rocky). Cloudy, hazy appearance.Grainy, moderately-low to moderately-strong spicy rye flavor, often having a hearty flavor reminiscent of rye or pumpernickel bread. Medium to medium-low bitterness allows an initial malt sweetness (sometimes with a bit of caramel) to be tasted before yeast and rye character takes over. Low to moderate weizen yeast character (banana, clove, and sometimes citrus), although the balance can vary. Medium-dry, grainy finish with a tangy, lightly bitter (from rye) aftertaste. Low to moderate noble hop flavor acceptable, and can persist into aftertaste. No diacetyl.Medium to medium-full body. High carbonation. Light tartness optional.A dunkelweizen made with rye rather than wheat, but with a greater body and light finishing hops. A specialty beer originally brewed in Regensburg, Bavaria as a more distinctive variant of a dunkelweizen using malted rye instead of malted wheat.','Malted rye typically constitutes 50% or greater of the grist (some versions have 60-65% rye). Remainder of grist can include pale malt, Munich malt, wheat malt, crystal malt and/or small amounts of debittered dark malts for color adjustment. Weizen yeast provides distinctive banana esters and clove phenols. Light usage of noble hops in bitterness, flavor and aroma. Lower fermentation temperatures accentuate the clove character by suppressing ester formation. Decoction mash commonly used (as with weizenbiers).','Paulaner Roggen (formerly Thurn und Taxis, no longer imported into the US), Bürgerbräu Wolznacher Roggenbier',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(75,'Russian Imperial Stout','Ale','Stout','13','F','BJCP',1.075,1.115,1.018,1.03,50.0,90.0,30.0,40.0,8.0,12.0,0.0,0.0,'Variations exist, with English and American interpretations (predictably, the American versions have more bitterness, roasted character, and finishing hops, while the English varieties reflect a more complex specialty malt character and a more forward ester profile). The wide range of allowable characteristics allow for maximum brewer creativity.','Rich and complex, with variable amounts of roasted grains, maltiness, fruity esters, hops, and alcohol. The roasted malt character can take on coffee, dark chocolate, or slightly burnt tones and can be light to moderately strong. The malt aroma can be subtle to rich and barleywine-like, depending on the gravity and grain bill. May optionally show a slight specialty malt character (e.g., caramel), but this should only add complexity and not dominate. Fruity esters may be low to moderately strong, and may take on a complex, dark fruit (e.g., plums, prunes, raisins) character. Hop aroma can be very low to quite aggressive, and may contain any hop variety. An alcohol character may be present, but shouldn''t be sharp, hot or solventy. Aged versions may have a slight vinous or port-like quality, but shouldn''t be sour. No diacetyl. The balance can vary with any of the aroma elements taking center stage. Not all possible aromas described need be present; many interpretations are possible. Aging affects the intensity, balance and smoothness of aromatics.Color may range from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible in "legs" when beer is swirled in a glass.Rich, deep, complex and frequently quite intense, with variable amounts of roasted malt/grains, maltiness, fruity esters, hop bitterness and flavor, and alcohol. Medium to aggressively high bitterness. Medium-low to high hop flavor (any variety). Moderate to aggressively high roasted malt/grain flavors can suggest bittersweet or unsweetened chocolate, cocoa, and/or strong coffee. A slightly burnt grain, burnt currant or tarry character may be evident. Fruity esters may be low to intense, and can take on a dark fruit character (raisins, plums, or prunes). Malt backbone can be balanced and supportive to rich and barleywine-like, and may optionally show some supporting caramel, bready or toasty flavors. Alcohol strength should be evident, but not hot, sharp, or solventy. No diacetyl. The palate and finish can vary from relatively dry to moderately sweet, usually with some lingering roastiness, hop bitterness and warming character. The balance and intensity of flavors can be affected by aging, with some flavors becoming more subdued over time and some aged, vinous or port-like qualities developing.Full to very full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Gentle smooth warmth from alcohol should be present and noticeable. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.An intensely flavored, big, dark ale. Roasty, fruity, and bittersweet, with a noticeable alcohol presence. Dark fruit flavors meld with roasty, burnt, or almost tar-like sensations. Like a black barleywine with every dimension of flavor coming into play. Brewed to high gravity and hopping level in England for export to the Baltic States and Russia. Said to be popular with the Russian Imperial Court. Today is even more popular with American craft brewers, who have extended the style with unique American characteristics.','Well-modified pale malt, with generous quantities of roasted malts and/or grain. May have a complex grain bill using virtually any variety of malt. Any type of hops may be used. Alkaline water balances the abundance of acidic roasted grain in the grist. American or English ale yeast.','Three Floyd''s Dark Lord, Bell''s Expedition Stout, North Coast Old Rasputin Imperial Stout, Stone Imperial Stout, Samuel Smith Imperial Stout, Scotch Irish Tsarina Katarina Imperial Stout, Thirsty Dog Siberian Night, Deschutes The Abyss, Great Divide Yeti, Southampton Russian Imperial Stout, Rogue Imperial Stout, Bear Republic Big Bear Black Stout, Great Lakes Blackout Stout, Avery The Czar, Founders Imperial Stout, Victory Storm King, Brooklyn Black Chocolate Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(76,'Saison','Ale','Belgian and French Ale','16','C','BJCP',1.048,1.065,1.002,1.012,20.0,35.0,5.0,14.0,5.0,7.0,0.0,0.0,'Varying strength examples exist (table beers of about 5% strength, typical export beers of about 6.5%, and stronger versions of 8%+). Strong versions (6.5%-9.5%) and darker versions (copper to dark brown/black) should be entered as Belgian Specialty Ales (16E). Sweetness decreases and spice, hop and sour character increases with strength. Herb and spice additions often reflect the indigenous varieties available at the brewery. High carbonation and extreme attenuation (85-95%) helps bring out the many flavors and to increase the perception of a dry finish. All of these beers share somewhat higher levels of acidity than other Belgian styles while the optional sour flavor is often a variable house character of a particular brewery.','High fruitiness with low to moderate hop aroma and moderate to no herb, spice and alcohol aroma. Fruity esters dominate the aroma and are often reminiscent of citrus fruits such as oranges or lemons. A low to medium-high spicy or floral hop aroma is usually present. A moderate spice aroma (from actual spice additions and/or yeast-derived phenols) complements the other aromatics. When phenolics are present they tend to be peppery rather than clove-like. A low to moderate sourness or acidity may be present, but should not overwhelm other characteristics. Spice, hop and sour aromatics typically increase with the strength of the beer. Alcohols are soft, spicy and low in intensity, and should not be hot or solventy. The malt character is light. No diacetyl.Often a distinctive pale orange but may be golden or amber in color. There is no correlation between strength and color. Long-lasting, dense, rocky white to ivory head resulting in characteristic "Belgian lace" on the glass as it fades. Clarity is poor to good though haze is not unexpected in this type of unfiltered farmhouse beer. Effervescent.Combination of fruity and spicy flavors supported by a soft malt character, a low to moderate alcohol presence and tart sourness. Extremely high attenuation gives a characteristic dry finish. The fruitiness is frequently citrusy (orange- or lemon-like). The addition of one of more spices serve to add complexity, but shouldn''t dominate in the balance. Low peppery yeast-derived phenols may be present instead of or in addition to spice additions; phenols tend to be lower than in many other Belgian beers, and complement the bitterness. Hop flavor is low to moderate, and is generally spicy or earthy in character. Hop bitterness may be moderate to high, but should not overwhelm fruity esters, spices, and malt. Malt character is light but provides a sufficient background for the other flavors. A low to moderate tart sourness may be present, but should not overwhelm other flavors. Spices, hop bitterness and flavor, and sourness commonly increase with the strength of the beer while sweetness decreases. No hot alcohol or solventy character. High carbonation, moderately sulfate water, and high attenuation give a very dry finish with a long, bitter, sometimes spicy aftertaste. The perceived bitterness is often higher than the IBU level would suggest. No diacetyl.Light to medium body. Alcohol level can be medium to medium-high, though the warming character is low to medium. No hot alcohol or solventy character. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. A low to moderate tart character may be present but should be refreshing and not to the point of puckering.A refreshing, medium to strong fruity/spicy ale with a distinctive yellow-orange color, highly carbonated, well hopped, and dry with a quenching acidity. A seasonal summer style produced in Wallonia, the French-speaking part of Belgium. Originally brewed at the end of the cool season to last through the warmer months before refrigeration was common. It had to be sturdy enough to last for months but not too strong to be quenching and refreshing in the summer. It is now brewed year-round in tiny, artisanal breweries whose buildings reflect their origins as farmhouses.','Pilsner malt dominates the grist though a portion of Vienna and/or Munich malt contributes color and complexity. Sometimes contains other grains such as wheat and spelt. Adjuncts such as sugar and honey can also serve to add complexity and thin the body. Hop bitterness and flavor may be more noticeable than in many other Belgian styles. A saison is sometimes dry-hopped. Noble hops, Styrian or East Kent Goldings are commonly used. A wide variety of herbs and spices are often used to add complexity and uniqueness in the stronger versions, but should always meld well with the yeast and hop character. Varying degrees of acidity and/or sourness can be created by the use of gypsum, acidulated malt, a sour mash or Lactobacillus. Hard water, common to most of Wallonia, can accentuate the bitterness and dry finish.','Saison Dupont Vieille Provision; Fantôme Saison D’Erezée - Printemps; Saison de Pipaix; Saison Regal; Saison Voisin; Lefebvre Saison 1900; Ellezelloise Saison 2000; Saison Silly; Southampton Saison; New Belgium Saison; Pizza Port SPF 45; Lost Abbey Red Barn Ale; Ommegang Hennepin',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(77,'Schwarzbier (Black Beer)','Lager','Dark Lager','4','C','BJCP',1.046,1.052,1.01,1.016,22.0,32.0,17.0,30.0,4.4,5.4,0.0,0.0,'In comparison with a Munich Dunkel, usually darker in color, drier on the palate and with a noticeable (but not high) roasted malt edge to balance the malt base. While sometimes called a "black Pils," the beer is rarely that dark; don''t expect strongly roasted, porter-like flavors.','Low to moderate malt, with low aromatic sweetness and/or hints of roast malt often apparent. The malt can be clean and neutral or rich and Munich-like, and may have a hint of caramel. The roast can be coffee-like but should never be burnt. A low noble hop aroma is optional. Clean lager yeast character (light sulfur possible) with no fruity esters or diacetyl.Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.Light to moderate malt flavor, which can have a clean, neutral character to a rich, sweet, Munich-like intensity. Light to moderate roasted malt flavors can give a bitter-chocolate palate that lasts into the finish, but which are never burnt. Medium-low to medium bitterness, which can last into the finish. Light to moderate noble hop flavor. Clean lager character with no fruity esters or diacetyl. Aftertaste tends to dry out slowly and linger, featuring hop bitterness with a complementary but subtle roastiness in the background. Some residual sweetness is acceptable but not required.Medium-light to medium body. Moderate to moderately high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts.A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. A regional specialty from southern Thuringen and northern Franconia in Germany, and probably a variant of the Munich Dunkel style.','German Munich malt and Pilsner malts for the base, supplemented by a small amount of roasted malts (such as Carafa) for the dark color and subtle roast flavors. Noble-type German hop varieties and clean German lager yeasts are preferred.','Köstritzer Schwarzbier, Kulmbacher Mönchshof Premium Schwarzbier, Samuel Adams Black Lager, Krušovice Cerne, Original Badebier, Einbecker Schwarzbier, Gordon Biersch Schwarzbier, Weeping Radish Black Radish Dark Lager, Sprecher Black Bavarian',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(78,'Scottish Export 80/-','Ale','Scottish and Irish Ale','9','C','BJCP',1.04,1.054,1.01,1.016,15.0,30.0,9.0,17.0,3.9,5.0,0.0,0.0,'The malt-hop balance is slightly to moderately tilted towards the malt side. Any caramelization comes from kettle caramelization and not caramel malt (and is sometimes confused with diacetyl). Although unusual, any smoked character is yeast- or water-derived and not from the use of peat-smoked malts. Use of peat-smoked malt to replicate the peaty character should be restrained; overly smoky beers should be entered in the Other Smoked Beer category (22B) rather than here. ','Low to medium malty sweetness, sometimes accentuated by low to moderate kettle caramelization. Some examples have a low hop aroma, light fruitiness, low diacetyl, and/or a low to moderate peaty aroma (all are optional). The peaty aroma is sometimes perceived as earthy, smoky or very lightly roasted.Deep amber to dark copper. Usually very clear due to long, cool fermentations. Low to moderate, creamy off-white to light tan-colored head.Malt is the primary flavor, but isn''t overly strong. The initial malty sweetness is usually accentuated by a low to moderate kettle caramelization, and is sometimes accompanied by a low diacetyl component. Fruity esters may be moderate to none. Hop bitterness is low to moderate, but the balance will always be towards the malt (although not always by much). Hop flavor is low to none. A low to moderate peaty character is optional, and may be perceived as earthy or smoky. Generally has a grainy, dry finish due to small amounts of unmalted roasted barley. Medium-low to medium body. Low to moderate carbonation. Sometimes a bit creamy, but often quite dry due to use of roasted barley.Cleanly malty with a drying finish, perhaps a few esters, and on occasion a faint bit of peaty earthiness (smoke). Most beers finish fairly dry considering their relatively sweet palate, and as such have a different balance than strong Scotch ales. Traditional Scottish session beers reflecting the indigenous ingredients (water, malt), with less hops than their English counterparts (due to the need to import them). Long, cool fermentations are traditionally used in Scottish brewing.','Scottish or English pale base malt. Small amounts of roasted barley add color and flavor, and lend a dry, slightly roasty finish. English hops. Clean, relatively un-attenuative ale yeast. Some commercial brewers add small amounts of crystal, amber, or wheat malts, and adjuncts such as sugar. The optional peaty, earthy and/or smoky character comes from the traditional yeast and from the local malt and water rather than using smoked malts.','Orkney Dark Island, Caledonian 80/- Export Ale, Belhaven 80/- (Belhaven Scottish Ale in the US), Southampton 80 Shilling, Broughton Exciseman''s 80/-, Belhaven St. Andrews Ale, McEwan''s Export (IPA), Inveralmond Lia Fail, Broughton Merlin''s Ale, Arran Dark',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(79,'Scottish Heavy 70/-','Ale','Scottish and Irish Ale','9','B','BJCP',1.035,1.04,1.01,1.015,10.0,25.0,9.0,17.0,3.2,3.9,0.0,0.0,'The malt-hop balance is slightly to moderately tilted towards the malt side. Any caramelization comes from kettle caramelization and not caramel malt (and is sometimes confused with diacetyl). Although unusual, any smoked character is yeast- or water-derived and not from the use of peat-smoked malts. Use of peat-smoked malt to replicate the peaty character should be restrained; overly smoky beers should be entered in the Other Smoked Beer category (22B) rather than here.','Low to medium malty sweetness, sometimes accentuated by low to moderate kettle caramelization. Some examples have a low hop aroma, light fruitiness, low diacetyl, and/or a low to moderate peaty aroma (all are optional). The peaty aroma is sometimes perceived as earthy, smoky or very lightly roasted.Deep amber to dark copper. Usually very clear due to long, cool fermentations. Low to moderate, creamy off-white to light tan-colored head.Malt is the primary flavor, but isn''t overly strong. The initial malty sweetness is usually accentuated by a low to moderate kettle caramelization, and is sometimes accompanied by a low diacetyl component. Fruity esters may be moderate to none. Hop bitterness is low to moderate, but the balance will always be towards the malt (although not always by much). Hop flavor is low to none. A low to moderate peaty character is optional, and may be perceived as earthy or smoky. Generally has a grainy, dry finish due to small amounts of unmalted roasted barley.Medium-low to medium body. Low to moderate carbonation. Sometimes a bit creamy, but often quite dry due to use of roasted barley.Cleanly malty with a drying finish, perhaps a few esters, and on occasion a faint bit of peaty earthiness (smoke). Most beers finish fairly dry considering their relatively sweet palate, and as such have a different balance than strong Scotch ales. Traditional Scottish session beers reflecting the indigenous ingredients (water, malt), with less hops than their English counterparts (due to the need to import them). Long, cool fermentations are traditionally used in Scottish brewing.','Scottish or English pale base malt. Small amounts of roasted barley add color and flavor, and lend a dry, slightly roasty finish. English hops. Clean, relatively un-attenuative ale yeast. Some commercial brewers add small amounts of crystal, amber, or wheat malts, and adjuncts such as sugar. The optional peaty, earthy and/or smoky character comes from the traditional yeast and from the local malt and water rather than using smoked malts.','Caledonian 70/- (Caledonian Amber Ale in the US), Belhaven 70/-, Orkney Raven Ale, Maclay 70/-, Tennents Special, Broughton Greenmantle Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(80,'Scottish Light 60/-','Ale','Scottish and Irish Ale','9','A','BJCP',1.03,1.035,1.01,1.013,10.0,20.0,9.0,17.0,2.5,3.2,0.0,0.0,'The malt-hop balance is slightly to moderately tilted towards the malt side. Any caramelization comes from kettle caramelization and not caramel malt (and is sometimes confused with diacetyl). Although unusual, any smoked character is yeast- or water-derived and not from the use of peat-smoked malts. Use of peat-smoked malt to replicate the peaty character should be restrained; overly smoky beers should be entered in the Other Smoked Beer category (22B) rather than here.','Low to medium malty sweetness, sometimes accentuated by low to moderate kettle caramelization. Some examples have a low hop aroma, light fruitiness, low diacetyl, and/or a low to moderate peaty aroma (all are optional). The peaty aroma is sometimes perceived as earthy, smoky or very lightly roasted.Deep amber to dark copper. Usually very clear due to long, cool fermentations. Low to moderate, creamy off-white to light tan-colored head.Malt is the primary flavor, but isn''t overly strong. The initial malty sweetness is usually accentuated by a low to moderate kettle caramelization, and is sometimes accompanied by a low diacetyl component. Fruity esters may be moderate to none. Hop bitterness is low to moderate, but the balance will always be towards the malt (although not always by much). Hop flavor is low to none. A low to moderate peaty character is optional, and may be perceived as earthy or smoky. Generally has a grainy, dry finish due to small amounts of unmalted roasted barley.Medium-low to medium body. Low to moderate carbonation. Sometimes a bit creamy, but often quite dry due to use of roasted barley.Cleanly malty with a drying finish, perhaps a few esters, and on occasion a faint bit of peaty earthiness (smoke). Most beers finish fairly dry considering their relatively sweet palate, and as such have a different balance than strong Scotch ales. Traditional Scottish session beers reflecting the indigenous ingredients (water, malt), with less hops than their English counterparts (due to the need to import them). Long, cool fermentations are traditionally used in Scottish brewing. ','Scottish or English pale base malt. Small amounts of roasted barley add color and flavor, and lend a dry, slightly roasty finish. English hops. Clean, relatively un-attenuative ale yeast. Some commercial brewers add small amounts of crystal, amber, or wheat malts, and adjuncts such as sugar. The optional peaty, earthy and/or smoky character comes from the traditional yeast and from the local malt and water rather than using smoked malts.','Belhaven 60/-, McEwan''s 60/-, Maclay 60/- Light (all are cask-only products not exported to the US)',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(81,'Semi-sweet Mead','Mead','Traditional Mead','24','B','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'See standard description for entrance requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SEMI-SWEET in this category. Entrants MAY specify honey varieties.','Honey aroma should be noticeable, and can have a light sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.Standard description applies.Subtle to moderate honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Subtle to moderate residual sweetness with a medium-dry finish. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.Standard description applies, although the body is generally medium-light to medium-full. Note that stronger meads will have a fuller body. Sensations of body should not be accompanied by a residual sweetness that is higher than moderate.Similar in balance, body, finish and flavor intensity to a semisweet (or medium-dry) white wine, with a pleasant mixture of honey character, light sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol and honey character is the essential final measure of any mead.','Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. "Show meads" feature no additives, but this distinction is usually not obvious to judges.','Lurgashall English Mead, Redstone Traditional Mountain Honey Wine, Sky River Semi-Sweet Mead, Intermiel Verge d’Or and Mélilot',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(82,'Southern English Brown','Ale','English Brown Ale','11','B','BJCP',1.033,1.042,1.011,1.014,12.0,20.0,19.0,35.0,2.8,4.1,0.0,0.0,'Increasingly rare; Mann''s has over 90% market share in Britain. Some consider it a bottled version of dark mild, but this style is sweeter than virtually all modern examples of mild.','Malty-sweet, often with a rich, caramel or toffee-like character. Moderately fruity, often with notes of dark fruits such as plums and/or raisins. Very low to no hop aroma. No diacetyl.Light to dark brown, and can be almost black. Nearly opaque, although should be relatively clear if visible. Low to moderate off-white to tan head.Deep, caramel- or toffee-like malty sweetness on the palate and lasting into the finish. Hints of biscuit and coffee are common. May have a moderate dark fruit complexity. Low hop bitterness. Hop flavor is low to non-existent. Little or no perceivable roasty or bitter black malt flavor. Moderately sweet finish with a smooth, malty aftertaste. Low to no diacetyl.Medium body, but the residual sweetness may give a heavier impression. Low to moderately low carbonation. Quite creamy and smooth in texture, particularly for its gravity.A luscious, malt-oriented brown ale, with a caramel, dark fruit complexity of malt flavor. May seem somewhat like a smaller version of a sweet stout or a sweet version of a dark mild. English brown ales are generally split into sub-styles along geographic lines. Southern English (or "London-style") brown ales are darker, sweeter, and lower gravity than their Northern cousins. Developed as a bottled product in the early 20th century out of a reaction against vinous vatted porter and often unpalatable mild. Well suited to London''s water supply.','English pale ale malt as a base with a healthy proportion of darker caramel malts and often some roasted (black) malt and wheat malt. Moderate to high carbonate water would appropriately balance the dark malt acidity. English hop varieties are most authentic, though with low flavor and bitterness almost any type could be used.','Mann''s Brown Ale (bottled, but not available in the US), Harvey''s Nut Brown Ale, Woodeforde''s Norfolk Nog',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(83,'Special/Best/Premium Bitter','Ale','English Pale Ale','8','B','BJCP',1.04,1.048,1.008,1.012,25.0,40.0,5.0,16.0,3.8,4.6,0.0,0.0,'More evident malt flavor than in an ordinary bitter, this is a stronger, session-strength ale. Some modern variants are brewed exclusively with pale malt and are known as golden or summer bitters. Most bottled or kegged versions of UK-produced bitters are higher-alcohol versions of their cask (draught) products produced specifically for export. The IBU levels are often not adjusted, so the versions available in the US often do not directly correspond to their style subcategories in Britain. This style guideline reflects the "real ale" version of the style, not the export formulations of commercial products.','The best examples have some malt aroma, often (but not always) with a caramel quality. Mild to moderate fruitiness. Hop aroma can range from moderate to none (UK varieties typically, although US varieties may be used). Generally no diacetyl, although very low levels are allowed.Medium gold to medium copper. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to high bitterness. Most have moderately low to moderately high fruity esters. Moderate to low hop flavor (earthy, resiny, and/or floral UK varieties typically, although US varieties may be used). Low to medium maltiness with a dry finish. Caramel flavors are common but not required. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.Medium-light to medium body. Carbonation low, although bottled and canned commercial examples can have moderate carbonation.A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style; emphasis is still on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales. Originally a draught ale served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., "real ale"). Bitter was created as a draught alternative (i.e., running beer) to country-brewed pale ale around the start of the 20th century and became widespread once brewers understood how to "Burtonize" their water to successfully brew pale beers and to use crystal malts to add a fullness and roundness of palate.','Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English hops most typical, although American and European varieties are becoming more common (particularly in the paler examples). Characterful English yeast. Often medium sulfate water is used.','Fuller''s London Pride, Coniston Bluebird Bitter, Timothy Taylor Landlord, Adnams SSB, Young''s Special, Shepherd Neame Masterbrew Bitter, Greene King Ruddles County Bitter, RCH Pitchfork Rebellious Bitter, Brains SA, Black Sheep Best Bitter, Goose Island Honkers Ale, Rogue Younger''s Special Bitter',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(84,'Specialty Beer','Ale','Specialty Beer','23','','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Overall harmony and drinkability are the keys to presenting a well-made specialty beer. The distinctive nature of the stated specialty ingredients/methods should complement the original style (if declared) and not totally overwhelm it. The brewer should recognize that some combinations of base beer styles and ingredients or techniques work well together while others do not make palatable combinations. THE BREWER MUST SPECIFY THE "EXPERIMENTAL NATURE" OF THE BEER (E.G., TYPE OF SPECIAL INGREDIENTS USED, PROCESS UTILIZED OR HISTORICAL STYLE BEING BREWED), OR WHY THE BEER DOESN''T FIT AN ESTABLISHED STYLE. For historical styles or unusual ingredients/techniques that may not be known to all beer judges, the brewer should provide descriptions of the styles, ingredients and/or techniques as an aid to the judges.THE BREWER MAY SPECIFY AN UNDERLYING BEER STYLE. The base style may be a classic style (i.e., a named subcategory from these Style Guidelines) or a broader characterization (e.g., "Porter" or "Brown Ale"). If a base style is declared, the style should be recognizable. The beer should be judged by how well the special ingredient or process complements, enhances, and harmonizes with the underlying style.','The character of the stated specialty ingredient or nature should be evident in the aroma, but harmonious with the other components (yet not totally overpowering them). Overall the aroma should be a pleasant combination of malt, hops and the featured specialty ingredient or nature as appropriate to the specific type of beer being presented. The individual character of special ingredients and processes may not always be identifiable when used in combination. If a classic style base beer is specified then the characteristics of that classic style should be noticeable. Note, however, that classic styles will have a different impression when brewed with unusual ingredients, additives or processes. The typical aroma components of classic beer styles (particularly hops) may be intentionally subdued to allow the special ingredients or nature to be more apparent.Appearance should be appropriate to the base beer being presented and will vary depending on the base beer (if declared). Note that unusual ingredients or processes may affect the appearance so that the result is quite different from the declared base style. Some ingredients may add color (including to the head), and may affect head formation and retention.As with aroma, the distinctive flavor character associated with the stated specialty nature should be noticeable, and may range in intensity from subtle to aggressive. The marriage of specialty ingredients or nature with the underlying beer should be harmonious, and the specialty character should not seem artificial and/or totally overpowering. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters or diacetyl, should be appropriate to the base beer (if declared) and be well-integrated with the distinctive specialty flavors present. Some ingredients may add tartness, sweetness, or other flavor by-products. Remember that fruit and sugar adjuncts generally add flavor and not excessive sweetness to beer. The sugary adjuncts, as well as sugar found in fruit, are usually fully fermented and contribute to a lighter flavor profile and a drier finish than might be expected for the declared base style. The individual character of special ingredients and processes may not always be identifiable when used in combination. If a classic style base beer is specified then the characteristics of that classic style should be noticeable. Note, however, that classic styles will have a different impression when brewed with unusual ingredients, additives or processes. Note that these components (especially hops) may be intentionally subdued to allow the specialty character to come through in the final presentation.Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer (if declared). Body and carbonation levels should be appropriate to the base beer style being presented. Unusual ingredients or processes may affect the mouthfeel so that the result is quite different from the declared base style.A harmonious marriage of ingredients, processes and beer. The key attributes of the underlying style (if declared) will be atypical due to the addition of special ingredients or techniques; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and harmony of the resulting combination. The overall uniqueness of the process, ingredients used, and creativity should be considered. The overall rating of the beer depends heavily on the inherently subjective assessment of distinctiveness and drinkability.','','Bell''s Rye Stout, Bell''s Eccentric Ale, Samuel Adams Triple Bock and Utopias, Hair of the Dog Adam, Great Alba Scots Pine, Tommyknocker Maple Nut Brown Ale, Great Divide Bee Sting Honey Ale, Stoudt''s Honey Double Mai Bock, Rogue Dad''s Little Helper, Rogue Honey Cream Ale, Dogfish Head India Brown Ale, Zum Uerige Sticke and Doppel Sticke Altbier, Yards Brewing Company General Washington Tavern Porter, Rauchenfels Steinbier, Odells 90 Shilling Ale, Bear Republic Red Rocket Ale, Stone Arrogant Bastard',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(85,'Spice, Herb, or Vegetable Beer','Ale','Spice/Herb/Vegetable Beer','21','A','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'Overall balance is the key to presenting a well-made spice, herb or vegetable (SHV) beer. The SHV(s) should complement the original style and not overwhelm it. The brewer should recognize that some combinations of base beer styles and SHV(s) work well together while others do not make for harmonious combinations. THE ENTRANT MUST SPECIFY THE UNDERLYING BEER STYLE AS WELL AS THE TYPE OF SPICES, HERBS, OR VEGETABLES USED. IF THIS BEER IS BASED ON A CLASSIC STYLE (E.G., BLONDE ALE) THEN THE SPECIFIC STYLE MUST BE SPECIFIED. CLASSIC STYLES DO NOT HAVE TO BE CITED (E.G., "PORTER" OR "WHEAT ALE" IS ACCEPTABLE). THE TYPE OF SPICES, HERBS, OR VEGETABLES MUST ALWAYS BE SPECIFIED. If the base beer is a classic style, the original style should come through in aroma and flavor. The individual character of SHV(s) may not always be identifiable when used in combination. This category may also be used for chile pepper, coffee-, chocolate-, or nut-based beers (including combinations of these items). Note that many spice-based Belgian specialties may be entered in Category 16E. Beers that only have additional fermentables (honey, maple syrup, molasses, sugars, treacle, etc.) should be entered in the Specialty Beer category.','The character of the particular spices, herbs and/or vegetables (SHV) should be noticeable in the aroma; however, note that some SHV (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., some vegetables) allow for a range of SHV character and intensity from subtle to aggressive. The individual character of the SHV(s) may not always be identifiable when used in combination. The SHV character should be pleasant and supportive, not artificial and overpowering. As with all specialty beers, a proper SHV beer should be a harmonious balance of the featured SHV(s) with the underlying beer style. Aroma hops, yeast by-products and malt components of the underlying beer may not be as noticeable when SHV are present. These components (especially hops) may also be intentionally subdued to allow the SHV character to come through in the final presentation. If the base beer is an ale then a non-specific fruitiness and/or other fermentation by-products such as diacetyl may be present as appropriate for warmer fermentations. If the base beer is a lager, then overall less fermentation byproducts would be appropriate. Some malt aroma is preferable, especially in dark styles. Hop aroma may be absent or balanced with SHV, depending on the style. The SHV(s) should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation.Appearance should be appropriate to the base beer being presented and will vary depending on the base beer. For lighter-colored beers with spices, herbs or vegetables that exhibit distinctive colors, the colors may be noticeable in the beer and possibly the head. May have some haze or be clear. Head formation may be adversely affected by some ingredients, such as chocolate.As with aroma, the distinctive flavor character associated with the particular SHV(s) should be noticeable, and may range in intensity from subtle to aggressive. The individual character of the SHV(s) may not always be identifiable when used in combination. The balance of SHV with the underlying beer is vital, and the SHV character should not be so artificial and/or overpowering as to overwhelm the beer. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters or diacetyl, should be appropriate to the base beer and be harmonious and balanced with the distinctive SHV flavors present. Note that these components (especially hops) may be intentionally subdued to allow the SHV character to come through in the final presentation. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style.Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Some SHV(s) may add additional body and/or slickness, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a "raw" spice character is undesirable.A harmonious marriage of spices, herbs and/or vegetables and beer. The key attributes of the underlying style will be different with the addition of spices, herbs and/or vegetables; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. ','','Alesmith Speedway Stout, Founders Breakfast Stout, Traquair Jacobite Ale, Rogue Chipotle Ale, Young''s Double Chocolate Stout, Bell''s Java Stout, Fraoch Heather Ale, Southampton Pumpkin Ale, Rogue Hazelnut Nectar, Hitachino Nest Real Ginger Ale, Breckenridge Vanilla Porter, Left Hand JuJu Ginger Beer, Dogfish Head Punkin Ale, Dogfish Head Midas Touch, Redhook Double Black Stout, Buffalo Bill''s Pumpkin Ale, BluCreek Herbal Ale, Christian Moerlein Honey Almond, Rogue Chocolate Stout, Birrificio Baladin Nora, Cave Creek Chili Beer',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(86,'Standard American Lager','Lager','Light Lager','1','B','BJCP',1.04,1.05,1.004,1.01,8.0,15.0,2.0,4.0,4.2,5.3,0.0,0.0,'Strong flavors are a fault. An international style including the standard mass-market lager from most countries.','Little to no malt aroma, although it can be grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. Low levels of yeast character (green apples, DMS, or fruitiness) are optional but acceptable. No diacetyl.Very pale straw to medium yellow color. White, frothy head seldom persists. Very clear.Crisp and dry flavor with some low levels of grainy or corn-like sweetness. Hop flavor ranges from none to low levels. Hop bitterness at low to medium-low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may provide a slight acidity or dry "sting." No diacetyl. No fruitiness.Light body from use of a high percentage of adjuncts such as rice or corn. Very highly carbonated with slight carbonic bite on the tongue.Very refreshing and thirst quenching. ','Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts.','Pabst Blue Ribbon, Miller High Life, Budweiser, Baltika #3 Classic, Kirin Lager, Grain Belt Premium Lager, Molson Golden, Labatt Blue, Coors Original, Foster''s Lager',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(87,'Standard/Ordinary Bitter','Ale','English Pale Ale','8','A','BJCP',1.032,1.04,1.007,1.011,25.0,35.0,4.0,14.0,3.2,3.8,0.0,0.0,'The lightest of the bitters. Also known as just "bitter." Some modern variants are brewed exclusively with pale malt and are known as golden or summer bitters. Most bottled or kegged versions of UK-produced bitters are higher-alcohol versions of their cask (draught) products produced specifically for export. The IBU levels are often not adjusted, so the versions available in the US often do not directly correspond to their style subcategories in Britain. This style guideline reflects the "real ale" version of the style, not the export formulations of commercial products.','The best examples have some malt aroma, often (but not always) with a caramel quality. Mild to moderate fruitiness is common. Hop aroma can range from moderate to none (UK varieties typically, although US varieties may be used). Generally no diacetyl, although very low levels are allowed.Light yellow to light copper. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to high bitterness. Most have moderately low to moderately high fruity esters. Moderate to low hop flavor (earthy, resiny, and/or floral UK varieties typically, although US varieties may be used). Low to medium maltiness with a dry finish. Caramel flavors are common but not required. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.Light to medium-light body. Carbonation low, although bottled and canned examples can have moderate carbonation.Low gravity, low alcohol levels and low carbonation make this an easy-drinking beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style; emphasis is still on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales. Originally a draught ale served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., "real ale"). Bitter was created as a draught alternative (i.e., running beer) to country-brewed pale ale around the start of the 20th century and became widespread once brewers understood how to "Burtonize" their water to successfully brew pale beers and to use crystal malts to add a fullness and roundness of palate.','Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English hops most typical, although American and European varieties are becoming more common (particularly in the paler examples). Characterful English yeast. Often medium sulfate water is used.','Fuller''s Chiswick Bitter, Adnams Bitter, Young''s Bitter, Greene King IPA, Oakham Jeffrey Hudson Bitter (JHB), Brains Bitter, Tetley’s Original Bitter, Brakspear Bitter, Boddington''s Pub Draught',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(88,'Straight (Unblended) Lambic','Ale','Sour Ale','17','D','BJCP',1.04,1.054,1.001,1.01,0.0,0.0,3.0,7.0,5.0,6.5,0.0,0.0,'Straight lambics are single-batch, unblended beers. Since they are unblended, the straight lambic is often a true product of the "house character" of a brewery and will be more variable than a gueuze. They are generally served young (6 months) and on tap as cheap, easy-drinking beers without any filling carbonation. Younger versions tend to be one-dimensionally sour since a complex Brett character often takes upwards of a year to develop. An enteric character is often indicative of a lambic that is too young. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Since the wild yeast and bacteria will ferment ALL sugars, they are bottled only when they have completely fermented. Lambic is served uncarbonated, while gueuze is served effervescent. IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.','A decidedly sour/acidic aroma is often dominant in young examples, but may be more subdued with age as it blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. A mild oak and/or citrus aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. Older versions are commonly fruity with aromas of apples or even honey. No hop aroma. No diacetyl.Pale yellow to deep golden in color. Age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. Head retention is generally poor. Head color is white.Young examples are often noticeably sour and/or lactic, but aging can bring this character more in balance with the malt, wheat and barnyard characteristics. Fruity flavors are simpler in young lambics and more complex in the older examples, where they are reminiscent of apples or other light fruits, rhubarb, or honey. Some oak or citrus flavor (often grapefruit) is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is low to none. No hop flavor. No diacetyl.Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. As a rule of thumb lambic dries with age, which makes dryness a reasonable indicator of age. Has a medium to high tart, puckering quality without being sharply astringent. Virtually to completely uncarbonated.Complex, sour/acidic, pale, wheat-based ale fermented by a variety of Belgian microbiota. Spontaneously fermented sour ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. Their numbers are constantly dwindling.','Unmalted wheat (30-40%), Pilsner malt and aged (surannes) hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally-occurring yeast and bacteria in predominately oaken barrels. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.','The only bottled version readily available is Cantillon Grand Cru Bruocsella of whatever single batch vintage the brewer deems worthy to bottle. De Cam sometimes bottles their very old (5 years) lambic. In and around Brussels there are specialty cafes that often have draught lambics from traditional brewers or blenders such as Boon, De Cam, Cantillon, Drie Fonteinen, Lindemans, Timmermans and Girardin.',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(89,'Strong Scotch Ale','Ale','Scottish and Irish Ale','9','E','BJCP',1.07,1.13,1.018,1.056,17.0,35.0,14.0,25.0,6.5,10.0,0.0,0.0,'Also known as a "wee heavy." Fermented at cooler temperatures than most ales, and with lower hopping rates, resulting in clean, intense malt flavors. Well suited to the region of origin, with abundant malt and cool fermentation and aging temperature. Hops, which are not native to Scotland and formerly expensive to import, were kept to a minimum.','Deeply malty, with caramel often apparent. Peaty, earthy and/or smoky secondary aromas may also be present, adding complexity. Caramelization often is mistaken for diacetyl, which should be low to none. Low to moderate esters and alcohol are often present in stronger versions. Hops are very low to none.Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist in stronger versions. Legs may be evident in stronger versions.Richly malty with kettle caramelization often apparent (particularly in stronger versions). Hints of roasted malt or smoky flavor may be present, as may some nutty character, all of which may last into the finish. Hop flavors and bitterness are low to medium-low, so malt impression should dominate. Diacetyl is low to none, although caramelization may sometimes be mistaken for it. Low to moderate esters and alcohol are usually present. Esters may suggest plums, raisins or dried fruit. The palate is usually full and sweet, but the finish may be sweet to medium-dry (from light use of roasted barley).Medium-full to full-bodied, with some versions (but not all) having a thick, chewy viscosity. A smooth, alcoholic warmth is usually present and is quite welcome since it balances the malty sweetness. Moderate carbonation.Rich, malty and usually sweet, which can be suggestive of a dessert. Complex secondary malt flavors prevent a one-dimensional impression. Strength and maltiness can vary. ','Well-modified pale malt, with up to 3% roasted barley. May use some crystal malt for color adjustment; sweetness usually comes not from crystal malts rather from low hopping, high mash temperatures, and kettle caramelization. A small proportion of smoked malt may add depth, though a peaty character (sometimes perceived as earthy or smoky) may also originate from the yeast and native water. Hop presence is minimal, although English varieties are most authentic. Fairly soft water is typical.','Traquair House Ale, Belhaven Wee Heavy, McEwan''s Scotch Ale, Founders Dirty Bastard, MacAndrew''s Scotch Ale, AleSmith Wee Heavy, Orkney Skull Splitter, Inveralmond Black Friar, Broughton Old Jock, Gordon Highland Scotch Ale, Dragonmead Under the Kilt ',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(90,'Sweet Mead','Mead','Traditional Mead','24','C','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'See standard description for entrance requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SWEET in this category. Entrants MAY specify honey varieties.','Honey aroma should dominate, and is often moderately to strongly sweet and usually expresses the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.Standard description applies.Moderate to significant honey character, and may feature moderate to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Moderate to high residual sweetness with a sweet and full (but not cloying) finish. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.Standard description applies, although the body is generally medium-full to full. Note that stronger meads will have a fuller body. Many seem like a dessert wine. Sensations of body should not be accompanied by cloying, raw residual sweetness.Similar in balance, body, finish and flavor intensity to a well-made dessert wine (such as Sauternes), with a pleasant mixture of honey character, residual sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol and honey character is the essential final measure of any mead.','Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. "Show meads" feature no additives, but this distinction is usually not obvious to judges.','Lurgashall Christmas Mead, Chaucer’s Mead, Rabbit’s Foot Sweet Wildflower Honey Mead, Intermiel Benoîte',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(91,'Sweet Stout','Ale','Stout','13','B','BJCP',1.044,1.06,1.012,1.024,20.0,40.0,30.0,40.0,4.0,6.0,0.0,0.0,'Gravities are low in England, higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation.','Mild roasted grain aroma, sometimes with coffee and/or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Diacetyl low to none. Hop aroma low to none.Very dark brown to black in color. Can be opaque (if not, it should be clear). Creamy tan to brown head.Dark roasted grains and malts dominate the flavor as in dry stout, and provide coffee and/or chocolate flavors. Hop bitterness is moderate (lower than in dry stout). Medium to high sweetness (often from the addition of lactose) provides a counterpoint to the roasted character and hop bitterness, and lasts into the finish. Low to moderate fruity esters. Diacetyl low to none. The balance between dark grains/malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty.Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel.A very dark, sweet, full-bodied, slightly roasty ale. Often tastes like sweetened espresso. An English style of stout. Historically known as "Milk" or "Cream" stouts, legally this designation is no longer permitted in England (but is acceptable elsewhere). The "milk" name is derived from the use of lactose, or milk sugar, as a sweetener.','The sweetness in most Sweet Stouts comes from a lower bitterness level than dry stouts and a high percentage of unfermentable dextrins.  Lactose, an unfermentable sugar, is frequently added to provide additional residual sweetness. Base of pale malt, and may use roasted barley, black malt, chocolate malt, crystal malt, and adjuncts such as maize or treacle. High carbonate water is common.','Mackeson''s XXX Stout, Watney''s Cream Stout, Farson''s Lacto Stout, St. Peter''s Cream Stout, Marston''s Oyster Stout, Sheaf Stout, Hitachino Nest Sweet Stout (Lacto), Samuel Adams Cream Stout, Left Hand Milk Stout, Widmer Snowplow Milk Stout',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(92,'Traditional Bock','Ale','Bock','5','B','BJCP',1.064,1.072,1.013,1.019,20.0,27.0,14.0,22.0,6.3,7.2,0.0,0.0,'Decoction mashing and long boiling plays an important part of flavor development, as it enhances the caramel and melanoidin flavor aspects of the malt. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.','Strong malt aroma, often with moderate amounts of rich melanoidins and/or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean. No diacetyl. Low to no fruity esters. Light copper to brown color, often with attractive garnet highlights. Lagering should provide good clarity despite the dark color. Large, creamy, persistent, off-white head.Complex maltiness is dominated by the rich flavors of Munich and Vienna malts, which contribute melanoidins and toasty flavors. Some caramel notes may be present from decoction mashing and a long boil. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of sweetness to linger into the finish. Well-attenuated, not cloying. Clean, with no esters or diacetyl. No hop flavor. No roasted or burnt character.Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency.A dark, strong, malty lager beer. Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century).  Recreated in Munich starting in the 17th century. The name "bock" is based on a corruption of the name "Einbeck" in the Bavarian dialect, and was thus only used after the beer came to Munich. "Bock" also means "billy-goat" in German, and is often used in logos and advertisements.','Munich and Vienna malts, rarely a tiny bit of dark roasted malts for color adjustment, never any non-malt adjuncts. Continental European hop varieties are used. Clean lager yeast. Water hardness can vary, although moderately carbonate water is typical of Munich. ','Einbecker Ur-Bock Dunkel, Pennsylvania Brewing St. Nick Bock, Aass Bock, Great Lakes Rockefeller Bock, Stegmaier Brewhouse Bock',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(93,'Traditional Perry','Cider','Standard Cider and Perry','27','E','BJCP',1.05,1.07,1.0,1.02,0.0,0.0,0.0,0.0,5.0,9.0,0.0,0.0,'Entrants MUST specify carbonation level (still, petillant, or sparkling). Entrants MUST specify sweetness (medium or sweet). Variety of pear(s) used must be stated.',' Traditional perry is made from pears grown specifically for that purpose rather than for eating or cooking. Many "perry pears" are nearly inedible. There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness.Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness.Relatively full, moderate to high tannin apparent as astringency.Tannic. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults. ','','[France] Bordelet Poire Authentique and Poire Granit, Christian Drouin Poire, [UK] Gwatkin Blakeney Red Perry, Oliver''s Blakeney Red Perry and Herefordshire Dry Perry',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(94,'Vienna Lager','Lager','European Amber Lager','3','A','BJCP',1.046,1.052,1.01,1.014,18.0,30.0,10.0,16.0,4.5,5.5,0.0,0.0,'American versions can be a bit stronger, drier and more bitter, while European versions tend to be sweeter. Many Mexican amber and dark lagers used to be more authentic, but unfortunately are now more like sweet, adjunct-laden American Dark Lagers. ','Moderately rich German malt aroma (of Vienna and/or Munich malt). A light toasted malt aroma may be present. Similar, though less intense than Oktoberfest. Clean lager character, with no fruity esters or diacetyl. Noble hop aroma may be low to none. Caramel aroma is inappropriate.: Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. Some toasted character from the use of Vienna malt. No roasted or caramel flavor. Fairly dry finish, with both malt and hop bitterness present in the aftertaste. Noble hop flavor may be low to none.Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth. Moderately crisp finish. May have a bit of alcohol warming.Characterized by soft, elegant maltiness that dries out in the finish to avoid becoming sweet. The original amber lager developed by Anton Dreher shortly after the isolation of lager yeast. Nearly extinct in its area of origin, the style continues in Mexico where it was brought by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Regrettably, most modern examples use adjuncts which lessen the rich malt complexity characteristic of the best examples of this style. The style owes much of its character to the method of malting (Vienna malt). Lighter malt character overall than Oktoberfest, yet still decidedly balanced toward malt.','Vienna malt provides a lightly toasty and complex, melanoidin-rich malt profile. As with Oktoberfests, only the finest quality malt should be used, along with Continental hops (preferably noble varieties). Moderately hard, carbonate-rich water. Can use some caramel malts and/or darker malts to add color and sweetness, but caramel malts shouldn''t add significant aroma and flavor and dark malts shouldn''t provide any roasted character.','Great Lakes Eliot Ness (unusual in its 6.2% strength and 35 IBUs), Boulevard Bobs 47 Munich-Style Lager, Negra Modelo, Old Dominion Aviator Amber Lager, Gordon Biersch Vienna Lager, Capital Wisconsin Amber, Olde Saratoga Lager, Penn Pilsner',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(95,'Weizen/Weissbier','Ale','German Wheat and Rye Beer','15','A','BJCP',1.044,1.052,1.01,1.014,8.0,15.0,2.0,8.0,4.3,5.6,0.0,0.0,'These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don''t age well and are best enjoyed while young and fresh. The version "mit hefe" is served with yeast sediment stirred in; the krystal version is filtered for excellent clarity. Bottles with yeast are traditionally swirled or gently rolled prior to serving. The character of a krystal weizen is generally fruitier and less phenolic than that of the hefe-weizen.','Moderate to strong phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Noble hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. No diacetyl or DMS. Optional, but acceptable, aromatics can include a light, citrusy tartness, a light to moderate vanilla character, and/or a low bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance.Pale straw to very dark gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable. A beer "mit hefe" is also cloudy from suspended yeast sediment (which should be roused before drinking). The filtered Krystal version has no yeast and is brilliantly clear.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or low bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly sweet Pils malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. A tart, citrusy character from yeast and high carbonation is often present. Well rounded, flavorful palate with a relatively dry finish. No diacetyl or DMS.Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high carbonation. Always effervescent.A pale, spicy, fruity, refreshing wheat-based ale. A traditional wheat-based ale originating in Southern Germany that is a specialty for summer consumption, but generally produced year-round.','By German law, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is Pilsner malt. A traditional decoction mash gives the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors. A small amount of noble hops are used only for bitterness.','Weihenstephaner Hefeweissbier, Schneider Weisse Weizenhell, Paulaner Hefe-Weizen, Hacker-Pschorr Weisse, Plank Bavarian Hefeweizen, Ayinger Bräu Weisse, Ettaler Weissbier Hell, Franziskaner Hefe-Weisse, Andechser Weissbier Hefetrüb, Kapuziner Weissbier, Erdinger Weissbier, Penn Weizen, Barrelhouse Hocking Hills HefeWeizen, Eisenbahn Weizenbier',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(96,'Weizenbock','Lager','German Wheat and Rye Beer','15','C','BJCP',1.064,1.09,1.015,1.022,15.0,30.0,12.0,25.0,6.5,8.0,0.0,0.0,'A dunkel-weizen beer brewed to bock or doppelbock strength. Now also made in the Eisbock style as a specialty beer. Bottles may be gently rolled or swirled prior to serving to rouse the yeast.','Rich, bock-like melanoidins and bready malt combined with a powerful aroma of dark fruit (plums, prunes, raisins or grapes). Moderate to strong phenols (most commonly vanilla and/or clove) add complexity, and some banana esters may also be present. A moderate aroma of alcohol is common, although never solventy. No hop aroma, diacetyl or DMS.Dark amber to dark, ruby brown in color. A very thick, moussy, long-lasting light tan head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. The suspended yeast sediment (which should be roused before drinking) also contributes to the cloudiness.A complex marriage of rich, bock-like melanoidins, dark fruit, spicy clove-like phenols, light banana and/or vanilla, and a moderate wheat flavor. The malty, bready flavor of wheat is further enhanced by the copious use of Munich and/or Vienna malts. May have a slightly sweet palate, and a light chocolate character is sometimes found (although a roasted character is inappropriate). A faintly tart character may optionally be present. Hop flavor is absent, and hop bitterness is low. The wheat, malt, and yeast character dominate the palate, and the alcohol helps balance the finish. Well-aged examples may show some sherry-like oxidation as a point of complexity. No diacetyl or DMS.Medium-full to full body. A creamy sensation is typical, as is the warming sensation of substantial alcohol content. The presence of Munich and/or Vienna malts also provide an additional sense of richness and fullness. Moderate to high carbonation. Never hot or solventy.A strong, malty, fruity, wheat-based ale combining the best flavors of a dunkelweizen and the rich strength and body of a bock. Aventinus, the world''s oldest top-fermented wheat doppelbock, was created in 1907 at the Weisse Brauhaus in Munich using the ''Méthode Champenoise'' with fresh yeast sediment on the bottom. It was Schneider''s creative response to bottom-fermenting doppelbocks that developed a strong following during these times.','A high percentage of malted wheat is used (by German law must be at least 50%, although it may contain up to 70%), with the remainder being Munich- and/or Vienna-type barley malts. A traditional decoction mash gives the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character. Too warm or too cold fermentation will cause the phenols and esters to be out of balance and may create off-flavors. A small amount of noble hops are used only for bitterness.','Schneider Aventinus, Schneider Aventinus Eisbock, Plank Bavarian Dunkler Weizenbock, Plank Bavarian Heller Weizenbock, AleSmith Weizenbock, Erdinger Pikantus, Mahr''s Der Weisse Bock, Victory Moonglow Weizenbock, High Point Ramstein Winter Wheat, Capital Weizen Doppelbock, Eisenbahn Vigorosa',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(97,'Witbier','Ale','Belgian and French Ale','16','A','BJCP',1.044,1.052,1.008,1.012,10.0,20.0,2.0,4.0,4.5,5.5,0.0,0.0,'The presence, character and degree of spicing and lactic sourness varies. Overly spiced and/or sour beers are not good examples of the style. Coriander of certain origins might give an inappropriate ham or celery character. The beer tends to be fragile and does not age well, so younger, fresher, properly handled examples are most desirable. Most examples seem to be approximately 5% ABV.','Moderate sweetness (often with light notes of honey and/or vanilla) with light, grainy, spicy wheat aromatics, often with a bit of tartness. Moderate perfumy coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy orangey fruitiness.  A low spicy-herbal hop aroma is optional, but should never overpower the other characteristics. No diacetyl. Vegetal, celery-like, or ham-like aromas are inappropriate. Spices should blend in with fruity, floral and sweet aromas and should not be overly strong.Very pale straw to very light gold in color. The beer will be very cloudy from starch haze and/or yeast, which gives it a milky, whitish-yellow appearance. Dense, white, moussy head. Head retention should be quite good.Pleasant sweetness (often with a honey and/or vanilla character) and a zesty, orange-citrusy fruitiness. Refreshingly crisp with a dry, often tart, finish. Can have a low wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor is low to none, and if noticeable, never gets in the way of the spices. Hop bitterness is low to medium-low (as with a Hefeweizen), and doesn''t interfere with refreshing flavors of fruit and spice, nor does it persist into the finish. Bitterness from orange pith should not be present. Vegetal, celery-like, ham-like, or soapy flavors are inappropriate. No diacetyl. Medium-light to medium body, often having a smoothness and light creaminess from unmalted wheat and the occasional oats. Despite body and creaminess, finishes dry and often a bit tart. Effervescent character from high carbonation. Refreshing, from carbonation, light acidity, and lack of bitterness in finish. No harshness or astringency from orange pith. Should not be overly dry and thin, nor should it be thick and heavy.A refreshing, elegant, tasty, moderate-strength wheat-based ale. A 400-year-old beer style that died out in the 1950s; it was later revived by Pierre Celis at Hoegaarden, and has grown steadily in popularity over time.','About 50% unmalted wheat (traditionally soft white winter wheat) and 50% pale barley malt (usually Pils malt) constitute the grist. In some versions, up to 5-10% raw oats may be used. Spices of freshly-ground coriander and Curaçao or sometimes sweet orange peel complement the sweet aroma and are quite characteristic. Other spices (e.g., chamomile, cumin, cinnamon, Grains of Paradise) may be used for complexity but are much less prominent. Ale yeast prone to the production of mild, spicy flavors is very characteristic. In some instances a very limited lactic fermentation, or the actual addition of lactic acid, is done.','Hoegaarden Wit, St. Bernardus Blanche, Celis White, Vuuve 5, Brugs Tarwebier (Blanche de Bruges), Wittekerke, Allagash White, Blanche de Bruxelles, Ommegang Witte, Avery White Rascal, Unibroue Blanche de Chambly, Sterkens White Ale, Bell’s Winter White Ale, Victory Whirlwind Witbier, Hitachino Nest White Ale',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(98,'Wood-Aged Beer','Ale','Smoke-flavored/Wood-aged Beer','22','C','BJCP',1.0,1.2,1.0,1.2,0.0,100.0,0.0,100.0,0.0,100.0,0.0,0.0,'The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, and previous usage of the barrel; and the type of wood. Any additional alcoholic products previously stored in the wood should be evident (if declared as part of the entry), but should not be so dominant as to unbalance the beer. IF THIS BEER IS BASED ON A CLASSIC STYLE (E.G., ROBUST PORTER) THEN THE SPECIFIC STYLE MUST BE SPECIFIED. CLASSIC STYLES DO NOT HAVE TO BE CITED (E.G., "PORTER" OR "BROWN ALE" IS ACCEPTABLE). THE TYPE OF WOOD MUST BE SPECIFIED IF A "VARIETAL" CHARACTER IS NOTICEABLE. (e.g., English IPA with Oak Chips, Bourbon Barrel-aged Imperial Stout, American Barleywine in an Oak Whiskey Cask). The brewer should specify any unusual ingredients in either the base style or the wood if those characteristics are noticeable. Specialty or experimental base beer styles may be specified, as long as the other specialty ingredients are identified. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE BARREL-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.).','Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Fresh wood can occasionally impart raw "green" aromatics, although this character should never be too strong. Other optional aromatics include a low to moderate vanilla, caramel, toffee, toast, or cocoa character, as well as any aromatics associated with alcohol previously stored in the wood (if any). Any alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like.Varies with base style. Often darker than the unadulterated base beer style, particularly if toasted/charred oak and/or whiskey/bourbon barrels are used.Varies with base style. Wood usually contributes a woody or oaky flavor, which can occasionally take on a raw "green" flavor if new wood is used. Other flavors that may optionally be present include vanilla (from vanillin in the wood,''); caramel, butterscotch, toasted bread or almonds (from toasted wood); coffee, chocolate, cocoa (from charred wood or bourbon casks); and alcohol flavors from other products previously stored in the wood (if any). The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Occasionally there may be an optional lactic or acetic tartness or Brett funkiness in the beer, but this should not be higher than a background flavor (if present at all). Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like.Varies with base style. Often fuller than the unadulterated base beer, and may exhibit additional alcohol warming if wood has previously been in contact with other alcoholic products. Higher alcohol levels should not result in "hot" beers; aged, smooth flavors are most desirable. Wood can also add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Tart or acidic characteristics should be low to none.A harmonious blend of the base beer style with characteristics from aging in contact with wood (including any alcoholic products previously in contact with the wood). The best examples will be smooth, flavorful, well-balanced and well-aged. Beers made using either limited wood aging or products that only provide a subtle background character may be entered in the base beer style categories as long as the wood character isn''t prominently featured.  A traditional production method that is rarely used by major breweries, and usually only with specialty products. Becoming more popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods can be used.','Varies with base style. Aged in wooden casks or barrels (often previously used to store whiskey, bourbon, port, sherry, Madeira, or wine), or using wood-based additives (wood chips, wood staves, oak essence). Fuller-bodied, higher-gravity base styles often are used since they can best stand up to the additional flavors, although experimentation is encouraged.','The Lost Abbey Angel''s Share Ale, J.W. Lees Harvest Ale in Port, Sherry, Lagavulin Whisky or Calvados Casks, Bush Prestige, Petrus Aged Pale, Firestone Walker Double Barrel Ale, Dominion Oak Barrel Stout, New Holland Dragons Milk, Great Divide Oak Aged Yeti Imperial Stout, Goose Island Bourbon County Stout, Le Coq Imperial Extra Double Stout, Harviestoun Old Engine Oil Special Reserve, many microbreweries have specialty beers served only on premises often directly from the cask.',0,1,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(99,'Blonde Ale','Ale','Light Hybrid Beer','6','B','BJCP',1.038,1.054,1.008,1.013,15.0,28.0,3.0,6.0,3.8,5.5,0.0,0.0,'In addition to the more common American Blonde Ale, this category can also include modern English Summer Ales, American Kölsch-style beers, and less assertive American and English pale ales.','Light to moderate sweet malty aroma. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety. No diacetyl.Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent. Low to medium esters optional, but are commonly found in many examples. Light to moderate hop flavor (any variety), but shouldn''t be overly aggressive. Low to medium bitterness, but the balance is normally towards the malt. Finishes medium-dry to somewhat sweet. No diacetyl.Medium-light to medium body. Medium to high carbonation. Smooth without harsh bitterness or astringency.Easy-drinking, approachable, malt-oriented American craft beer. Currently produced by many (American) microbreweries and brewpubs. Regional variations exist (many West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the entry-level craft beer.','Generally all malt, but can include up to 25% wheat malt and some sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned. Some versions may have honey, spices and/or fruit added, although if any of these ingredients are stronger than a background flavor they should be entered in specialty, spiced or fruit beer categories instead. Extract versions should only use the lightest malt extracts and avoid kettle caramelization.','Pelican Kiwanda Cream Ale, Russian River Aud Blonde, Rogue Oregon Golden Ale, Widmer Blonde Ale, Fuller''s Summer Ale, Hollywood Blonde, Redhook Blonde',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(100,'California Common Beer','Ale','Amber Hybrid Beer','7','B','BJCP',1.048,1.054,1.011,1.014,30.0,45.0,10.0,14.0,4.5,5.5,0.0,0.0,'This style is narrowly defined around the prototypical Anchor Steam example. Superficially similar to an American pale or amber ale, yet differs in that the hop flavor/aroma is woody/minty rather than citrusy, malt flavors are toasty and caramelly, the hopping is always assertive, and a warm-fermented lager yeast is used.','Typically showcases the signature Northern Brewer hops (with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops. No diacetyl.Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing Northern Brewer qualities (woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean. No diacetyl.Medium-bodied. Medium to medium-high carbonation.A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing the signature Northern Brewer varietal hop character. American West Coast original. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to thrive at the cool end of normal ale fermentation temperatures.','Pale ale malt, American hops (usually Northern Brewer, rather than citrusy varieties), small amounts of toasted malt and/or crystal malts. Lager yeast, however some strains (often with the mention of "California" in the name) work better than others at the warmer fermentation temperatures (55 to 60F) used. Note that some German yeast strains produce inappropriate sulfury character. Water should have relatively low sulfate and low to moderate carbonate levels.','Anchor Steam, Southampton Steem Beer, Flying Dog Old Scratch Amber Lager',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(101,'Extra Special/Strong Bitter (English Pale Ale)','Ale','English Pale Ale','8','C','BJCP',1.048,1.06,1.01,1.016,30.0,50.0,6.0,18.0,4.6,6.2,0.0,0.0,'More evident malt and hop flavors than in a special or best bitter. Stronger versions may overlap somewhat with old ales, although strong bitters will tend to be paler and more bitter. Fuller''s ESB is a unique beer with a very large, complex malt profile not found in other examples; most strong bitters are fruitier and hoppier. Judges should not judge all beers in this style as if they were Fuller''s ESB clones. Some modern English variants are brewed exclusively with pale malt and are known as golden or summer bitters. Most bottled or kegged versions of UK-produced bitters are higher-alcohol versions of their cask (draught) products produced specifically for export. The IBU levels are often not adjusted, so the versions available in the US often do not directly correspond to their style subcategories in Britain. English pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including containing higher carbonation).','Hop aroma moderately-high to moderately-low, and can use any variety of hops although UK hops are most traditional. Medium to medium-high malt aroma, often with a low to moderately strong caramel component (although this character will be more subtle in paler versions). Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.  May have light, secondary notes of sulfur and/or alcohol in some examples (optional).Golden to deep copper. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.Medium-high to medium bitterness with supporting malt flavors evident. Normally has a moderately low to somewhat strong caramelly malt sweetness. Hop flavor moderate to moderately high (any variety, although earthy, resiny, and/or floral UK hops are most traditional). Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. May have low levels of secondary malt flavors (e.g., nutty, biscuity) adding complexity. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol, and up to a moderate minerally/sulfury flavor. Medium-dry to dry finish (particularly if sulfate water is used). Generally no diacetyl, although very low levels are allowed.Medium-light to medium-full body. Low to moderate carbonation, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.An average-strength to moderately-strong English ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style; emphasis is still on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales. A rather broad style that allows for considerable interpretation by the brewer. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily "more premium" since best bitters are traditionally the brewer''s finest product). Since beer is sold by strength in the UK, these beers often have some alcohol flavor (perhaps to let the consumer know they are getting their due). In England today, "ESB" is a brand unique to Fullers; in America, the name has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) English-type ale. Hopping can be English or a combination of English and American.','Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English hops most typical, although American and European varieties are becoming more common (particularly in the paler examples). Characterful English yeast. "Burton" versions use medium to high sulfate water.','Examples: Fullers ESB, Adnams Broadside, Shepherd Neame Bishop''s Finger, Young''s Ram Rod, Samuel Smith''s Old Brewery Pale Ale, Bass Ale, Whitbread Pale Ale, Shepherd Neame Spitfire, Marston''s Pedigree, Black Sheep Ale, Vintage Henley, Mordue Workie Ticket, Morland Old Speckled Hen, Greene King Abbot Ale, Bateman''s XXXB, Gale''s Hordean Special Bitter (HSB), Ushers 1824 Particular Ale, Hopback Summer Lightning, Great Lakes Moondog Ale, Shipyard Old Thumper, Alaskan ESB, Geary''s Pale Ale, Cooperstown Old Slugger, Anderson Valley Boont ESB, Avery 14''er ESB, Redhook ESB',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(102,'Scottish Heavy 70/-','Ale','Scottish and Irish Ale','9','B','BJCP',1.035,1.04,1.01,1.015,10.0,25.0,9.0,17.0,3.2,3.9,0.0,0.0,'The malt-hop balance is slightly to moderately tilted towards the malt side. Any caramelization comes from kettle caramelization and not caramel malt (and is sometimes confused with diacetyl). Although unusual, any smoked character is yeast- or water-derived and not from the use of peat-smoked malts. Use of peat-smoked malt to replicate the peaty character should be restrained; overly smoky beers should be entered in the Other Smoked Beer category (22B) rather than here.','Low to medium malty sweetness, sometimes accentuated by low to moderate kettle caramelization. Some examples have a low hop aroma, light fruitiness, low diacetyl, and/or a low to moderate peaty aroma (all are optional). The peaty aroma is sometimes perceived as earthy, smoky or very lightly roasted.Deep amber to dark copper. Usually very clear due to long, cool fermentations. Low to moderate, creamy off-white to light tan-colored head.Malt is the primary flavor, but isn''t overly strong. The initial malty sweetness is usually accentuated by a low to moderate kettle caramelization, and is sometimes accompanied by a low diacetyl component. Fruity esters may be moderate to none. Hop bitterness is low to moderate, but the balance will always be towards the malt (although not always by much). Hop flavor is low to none. A low to moderate peaty character is optional, and may be perceived as earthy or smoky. Generally has a grainy, dry finish due to small amounts of unmalted roasted barley.Medium-low to medium body. Low to moderate carbonation. Sometimes a bit creamy, but often quite dry due to use of roasted barley.Cleanly malty with a drying finish, perhaps a few esters, and on occasion a faint bit of peaty earthiness (smoke). Most beers finish fairly dry considering their relatively sweet palate, and as such have a different balance than strong Scotch ales. Traditional Scottish session beers reflecting the indigenous ingredients (water, malt), with less hops than their English counterparts (due to the need to import them). Long, cool fermentations are traditionally used in Scottish brewing.','Scottish or English pale base malt. Small amounts of roasted barley add color and flavor, and lend a dry, slightly roasty finish. English hops. Clean, relatively un-attenuative ale yeast. Some commercial brewers add small amounts of crystal, amber, or wheat malts, and adjuncts such as sugar. The optional peaty, earthy and/or smoky character comes from the traditional yeast and from the local malt and water rather than using smoked malts.','Caledonian 70/- (Caledonian Amber Ale in the US), Belhaven 70/-, Orkney Raven Ale, Maclay 70/-, Tennents Special, Broughton Greenmantle Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(103,'American Pale Ale','Ale','American Ale','10','A','BJCP',1.045,1.06,1.01,1.015,30.0,45.0,5.0,14.0,4.5,6.2,0.0,0.0,'There is some overlap in color between American pale ale and American amber ale. The American pale ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops.','Usually moderate to strong hop aroma from dry hopping or late kettle additions of American hop varieties. A citrusy hop character is very common, but not required. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). Fruity esters vary from moderate to none. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Pale golden to deep amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Usually a moderate to high hop flavor, often showing a citrusy American hop character (although other hop varieties may be used). Low to moderately high clean malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence can be substantial. Caramel flavors are usually restrained or absent. Fruity esters can be moderate to none. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Medium-light to medium body. Carbonation moderate to high. Overall smooth finish without astringency often associated with high hopping rates.Refreshing and hoppy, yet with sufficient supporting malt. An American adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Often lighter in color, cleaner in fermentation by-products, and having less caramel flavors than English counterparts.','Pale ale malt, typically American two-row. American hops, often but not always ones with a citrusy character. American ale yeast. Water can vary in sulfate content, but carbonate content should be relatively low. Specialty grains may add character and complexity, but generally make up a relatively small portion of the grist. Grains that add malt flavor and richness, light sweetness, and toasty or bready notes are often used (along with late hops) to differentiate brands.','Sierra Nevada Pale Ale, Stone Pale Ale, Great Lakes Burning River Pale Ale, Bear Republic XP Pale Ale, Anderson Valley Poleeko Gold Pale Ale, Deschutes Mirror Pond, Full Sail Pale Ale, Three Floyds X-Tra Pale Ale, Firestone Pale Ale, Left Hand Brewing Jackman''s Pale Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(104,'Northern English Brown Ale','Ale','English Brown Ale','11','C','BJCP',1.04,1.052,1.008,1.014,20.0,30.0,12.0,22.0,4.2,5.4,0.0,0.0,'English brown ales are generally split into sub-styles along geographic lines.','Light, sweet malt aroma with toffee, nutty and/or caramel notes. A light but appealing fresh hop aroma (UK varieties) may also be noticed. A light fruity ester aroma may be evident in these beers, but should not dominate. Very low to no diacetyl.Dark amber to reddish-brown color. Clear. Low to moderate off-white to light tan head.Gentle to moderate malt sweetness, with a nutty, lightly caramelly character and a medium-dry to dry finish. Malt may also have a toasted, biscuity, or toffee-like character. Medium to medium-low bitterness. Malt-hop balance is nearly even, with hop flavor low to none (UK varieties). Some fruity esters can be present; low diacetyl (especially butterscotch) is optional but acceptable.Medium-light to medium body. Medium to medium-high carbonation.Drier and more hop-oriented that southern English brown ale, with a nutty character rather than caramel. ','English mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic. Moderate carbonate water.','Newcastle Brown Ale, Samuel Smith’s Nut Brown Ale, Riggwelter Yorkshire Ale, Wychwood Hobgoblin, Tröegs Rugged Trail Ale, Alesmith Nautical Nut Brown Ale, Avery Ellie’s Brown Ale, Goose Island Nut Brown Ale, Samuel Adams Brown Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(105,'Robust Porter','Ale','Porter','12','B','BJCP',1.048,1.065,1.012,1.016,25.0,50.0,22.0,35.0,4.8,6.5,0.0,0.0,'Although a rather broad style open to brewer interpretation, it may be distinguished from Stout as lacking a strong roasted barley character. It differs from a brown porter in that a black patent or roasted grain character is usually present, and it can be stronger in alcohol. Roast intensity and malt flavors can also vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an "American" or "English" character.','Roasty aroma (often with a lightly burnt, black malt character) should be noticeable and may be moderately strong. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high (US or UK varieties). Some American versions may be dry-hopped. Fruity esters are moderate to none. Diacetyl low to none.Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.Moderately strong malt flavor usually features a lightly burnt, black malt character (and sometimes chocolate and/or coffee flavors) with a bit of roasty dryness in the finish. Overall flavor may finish from dry to medium-sweet, depending on grist composition, hop bittering level, and attenuation. May have a sharp character from dark roasted grains, although should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the roasted malt. Hop flavor can vary from low to moderately high (US or UK varieties, typically), and balances the roasted malt flavors. Diacetyl low to none. Fruity esters moderate to none.Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from roasted grains, although this character should not be strong.A substantial, malty dark ale with a complex and flavorful roasty character. Stronger, hoppier and/or roastier version of porter designed as either a historical throwback or an American interpretation of the style. Traditional versions will have a more subtle hop character (often English), while modern versions may be considerably more aggressive. Both types are equally valid.','May contain several malts, prominently dark roasted malts and grains, which often include black patent malt (chocolate malt and/or roasted barley may also be used in some versions). Hops are used for bittering, flavor and/or aroma, and are frequently UK or US varieties. Water with moderate to high carbonate hardness is typical. Ale yeast can either be clean US versions or characterful English varieties.','Great Lakes Edmund Fitzgerald Porter, Meantime London Porter, Anchor Porter, Smuttynose Robust Porter, Sierra Nevada Porter, Deschutes Black Butte Porter, Boulevard Bully! Porter, Rogue Mocha Porter, Avery New World Porter, Bell''s Porter, Great Divide Saint Bridget''s Porter',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(106,'Oatmeal Stout','Ale','Stout','13','C','BJCP',1.048,1.065,1.01,1.018,25.0,40.0,22.0,40.0,4.2,5.9,0.0,0.0,'Generally between sweet and dry stouts in sweetness. Variations exist, from fairly sweet to quite dry. The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel. When judging, allow for differences in interpretation.','Mild roasted grain aromas, often with a coffee-like character. A light sweetness can imply a coffee-and-cream impression. Fruitiness should be low to medium. Diacetyl medium-low to none. Hop aroma low to none (UK varieties most common). A light oatmeal aroma is optional.Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).Medium sweet to medium dry palate, with the complexity of oats and dark roasted grains present. Oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Diacetyl medium-low to none. Hop flavor medium-low to none.Medium-full to full body, smooth, silky, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation.A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. An English seasonal variant of sweet stout that is usually less sweet than the original, and relies on oatmeal for body and complexity rather than lactose for body and sweetness.','Pale, caramel and dark roasted malts and grains.','Samuel Smith Oatmeal Stout, Young''s Oatmeal Stout, McAuslan Oatmeal Stout, Maclay’s Oat Malt Stout, Broughton Kinmount Willie Oatmeal Stout, Anderson Valley Barney Flats Oatmeal Stout, Tröegs Oatmeal Stout, New Holland The Poet, Goose Island Oatmeal Stout, Wolaver’s Oatmeal Stout',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(107,'American IPA','Ale','India Pale Ale','14','B','BJCP',1.056,1.075,1.01,1.018,40.0,70.0,6.0,15.0,5.5,7.5,0.0,0.0,'','A prominent to intense hop aroma with a citrusy, floral, perfume-like, resinous, piney, and/or fruity character derived from American hops. Many versions are dry hopped and can have an additional grassy aroma, although this is not required. Some clean malty sweetness may be found in the background, but should be at a lower level than in English examples. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is also acceptable. Some alcohol may be noted.Color ranges from medium gold to medium reddish copper; some versions can have an orange-ish tint. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Good head stand with white to off-white color should persist.Hop flavor is medium to high, and should reflect an American hop character with citrusy, floral, resinous, piney or fruity aspects. Medium-high to very high hop bitterness, although the malt backbone will support the strong hop character and provide the best balance. Malt flavor should be low to medium, and is generally clean and malty sweet although some caramel or toasty flavors are acceptable at low levels. No diacetyl. Low fruitiness is acceptable but not required. The bitterness may linger into the aftertaste but should not be harsh. Medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation in the presence of malt sweetness. Some smooth alcohol warming can and should be sensed in stronger (but not all) versions. Body is generally less than in English counterparts.A decidedly hoppy and bitter, moderately strong American pale ale. An American version of the historical English style, brewed using American ingredients and attitude.','Pale ale malt (well-modified and suitable for single-temperature infusion mashing,''); American hops; American yeast that can give a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Water character varies from soft to moderately sulfate. Versions with a noticeable Rye character ("RyePA") should be entered in the Specialty category.','Bell''s Two-Hearted Ale, AleSmith IPA, Russian River Blind Pig IPA, Stone IPA, Three Floyds Alpha King, Great Divide Titan IPA, Bear Republic Racer 5 IPA, Victory Hop Devil, Sierra Nevada Celebration Ale, Anderson Valley Hop Ottin'', Dogfish Head 60 Minute IPA, Founder''s Centennial IPA, Anchor Liberty Ale, Harpoon IPA, Avery IPA',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(108,'Weizen/Weissbier','Ale','German Wheat and Rye Beer','15','A','BJCP',1.044,1.052,1.01,1.014,8.0,15.0,2.0,8.0,4.3,5.6,0.0,0.0,'These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don''t age well and are best enjoyed while young and fresh. The version "mit hefe" is served with yeast sediment stirred in; the krystal version is filtered for excellent clarity. Bottles with yeast are traditionally swirled or gently rolled prior to serving. The character of a krystal weizen is generally fruitier and less phenolic than that of the hefe-weizen.','Moderate to strong phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Noble hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. No diacetyl or DMS. Optional, but acceptable, aromatics can include a light, citrusy tartness, a light to moderate vanilla character, and/or a low bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance.Pale straw to very dark gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable. A beer "mit hefe" is also cloudy from suspended yeast sediment (which should be roused before drinking). The filtered Krystal version has no yeast and is brilliantly clear.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or low bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly sweet Pils malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. A tart, citrusy character from yeast and high carbonation is often present. Well rounded, flavorful palate with a relatively dry finish. No diacetyl or DMS.Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high carbonation. Always effervescent.A pale, spicy, fruity, refreshing wheat-based ale. A traditional wheat-based ale originating in Southern Germany that is a specialty for summer consumption, but generally produced year-round.','By German law, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is Pilsner malt. A traditional decoction mash gives the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors. A small amount of noble hops are used only for bitterness.','Weihenstephaner Hefeweissbier, Schneider Weisse Weizenhell, Paulaner Hefe-Weizen, Hacker-Pschorr Weisse, Plank Bavarian Hefeweizen, Ayinger Bräu Weisse, Ettaler Weissbier Hell, Franziskaner Hefe-Weisse, Andechser Weissbier Hefetrüb, Kapuziner Weissbier, Erdinger Weissbier, Penn Weizen, Barrelhouse Hocking Hills HefeWeizen, Eisenbahn Weizenbier',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(109,'Saison','Ale','Belgian and French Ale','16','C','BJCP',1.048,1.065,1.002,1.012,20.0,35.0,5.0,14.0,5.0,7.0,0.0,0.0,'Varying strength examples exist (table beers of about 5% strength, typical export beers of about 6.5%, and stronger versions of 8%+). Strong versions (6.5%-9.5%) and darker versions (copper to dark brown/black) should be entered as Belgian Specialty Ales (16E). Sweetness decreases and spice, hop and sour character increases with strength. Herb and spice additions often reflect the indigenous varieties available at the brewery. High carbonation and extreme attenuation (85-95%) helps bring out the many flavors and to increase the perception of a dry finish. All of these beers share somewhat higher levels of acidity than other Belgian styles while the optional sour flavor is often a variable house character of a particular brewery.','High fruitiness with low to moderate hop aroma and moderate to no herb, spice and alcohol aroma. Fruity esters dominate the aroma and are often reminiscent of citrus fruits such as oranges or lemons. A low to medium-high spicy or floral hop aroma is usually present. A moderate spice aroma (from actual spice additions and/or yeast-derived phenols) complements the other aromatics. When phenolics are present they tend to be peppery rather than clove-like. A low to moderate sourness or acidity may be present, but should not overwhelm other characteristics. Spice, hop and sour aromatics typically increase with the strength of the beer. Alcohols are soft, spicy and low in intensity, and should not be hot or solventy. The malt character is light. No diacetyl.Often a distinctive pale orange but may be golden or amber in color. There is no correlation between strength and color. Long-lasting, dense, rocky white to ivory head resulting in characteristic "Belgian lace" on the glass as it fades. Clarity is poor to good though haze is not unexpected in this type of unfiltered farmhouse beer. Effervescent.Combination of fruity and spicy flavors supported by a soft malt character, a low to moderate alcohol presence and tart sourness. Extremely high attenuation gives a characteristic dry finish. The fruitiness is frequently citrusy (orange- or lemon-like). The addition of one of more spices serve to add complexity, but shouldn''t dominate in the balance. Low peppery yeast-derived phenols may be present instead of or in addition to spice additions; phenols tend to be lower than in many other Belgian beers, and complement the bitterness. Hop flavor is low to moderate, and is generally spicy or earthy in character. Hop bitterness may be moderate to high, but should not overwhelm fruity esters, spices, and malt. Malt character is light but provides a sufficient background for the other flavors. A low to moderate tart sourness may be present, but should not overwhelm other flavors. Spices, hop bitterness and flavor, and sourness commonly increase with the strength of the beer while sweetness decreases. No hot alcohol or solventy character. High carbonation, moderately sulfate water, and high attenuation give a very dry finish with a long, bitter, sometimes spicy aftertaste. The perceived bitterness is often higher than the IBU level would suggest. No diacetyl.Light to medium body. Alcohol level can be medium to medium-high, though the warming character is low to medium. No hot alcohol or solventy character. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. A low to moderate tart character may be present but should be refreshing and not to the point of puckering.A refreshing, medium to strong fruity/spicy ale with a distinctive yellow-orange color, highly carbonated, well hopped, and dry with a quenching acidity. A seasonal summer style produced in Wallonia, the French-speaking part of Belgium. Originally brewed at the end of the cool season to last through the warmer months before refrigeration was common. It had to be sturdy enough to last for months but not too strong to be quenching and refreshing in the summer. It is now brewed year-round in tiny, artisanal breweries whose buildings reflect their origins as farmhouses.','Pilsner malt dominates the grist though a portion of Vienna and/or Munich malt contributes color and complexity. Sometimes contains other grains such as wheat and spelt. Adjuncts such as sugar and honey can also serve to add complexity and thin the body. Hop bitterness and flavor may be more noticeable than in many other Belgian styles. A saison is sometimes dry-hopped. Noble hops, Styrian or East Kent Goldings are commonly used. A wide variety of herbs and spices are often used to add complexity and uniqueness in the stronger versions, but should always meld well with the yeast and hop character. Varying degrees of acidity and/or sourness can be created by the use of gypsum, acidulated malt, a sour mash or Lactobacillus. Hard water, common to most of Wallonia, can accentuate the bitterness and dry finish.','Saison Dupont Vieille Provision; Fantôme Saison D’Erezée - Printemps; Saison de Pipaix; Saison Regal; Saison Voisin; Lefebvre Saison 1900; Ellezelloise Saison 2000; Saison Silly; Southampton Saison; New Belgium Saison; Pizza Port SPF 45; Lost Abbey Red Barn Ale; Ommegang Hennepin',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(110,'Berliner Weisse','Ale','Sour Ale','17','A','BJCP',1.028,1.032,1.003,1.006,3.0,8.0,2.0,3.0,2.8,3.8,0.0,0.0,'In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8P. Often served with the addition of a shot of sugar syrups (''mit schuss'') flavored with raspberry (''himbeer'') or woodruff (''waldmeister'') or even mixed with Pils to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.','A sharply sour, somewhat acidic character is dominant. Can have up to a moderately fruity character. The fruitiness may increase with age and a flowery character may develop. A mild Brettanomyces aroma may be present. No hop aroma, diacetyl, or DMS.Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention due to high acidity and low protein and hop content. Always effervescent.Clean lactic sourness dominates and can be quite strong, although not so acidic as a lambic. Some complementary bready or grainy wheat flavor is generally noticeable. Hop bitterness is very low. A mild Brettanomyces character may be detected, as may a restrained fruitiness (both are optional). No hop flavor. No diacetyl or DMS.Light body. Very dry finish. Very high carbonation. No sensation of alcohol.A very pale, sour, refreshing, low-alcohol wheat ale. A regional specialty of Berlin; referred to by Napoleon''s troops in 1809 as "the Champagne of the North" due to its lively and elegant character. Only two traditional breweries still produce the product.','Wheat malt content is typically 50% of the grist (as with all German wheat beers) with the remainder being Pilsner malt. A symbiotic fermentation with top-fermenting yeast and Lactobacillus delbruckii provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by extended cool aging. Hop bitterness is extremely low. A single decoction mash with mash hopping is traditional.','Schultheiss Berliner Weisse, Berliner Kindl Weisse, Nodding Head Berliner Weisse, Weihenstephan 1809 (unusual in its 5% ABV), Bahnhof Berliner Style Weisse, Southampton Berliner Weisse, Bethlehem Berliner Weisse, Three Floyds Deesko',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(111,'Belgian Blond Ale','Ale','Belgian Strong Ale','18','A','BJCP',1.062,1.075,1.008,1.018,15.0,30.0,4.0,7.0,6.0,7.5,0.0,0.0,'Similar strength as a dubbel, similar character as a Belgian Strong Golden Ale or Tripel, although a bit sweeter and not as bitter. Often has an almost lager-like character, which gives it a cleaner profile in comparison to the other styles. Belgians use the term "Blond," while the French spell it "Blonde." Most commercial examples are in the 6.5 - 7% ABV range. Many Trappist table beers (singles or Enkels) are called "Blond" but these are not representative of this style.','Light earthy or spicy hop nose, along with a lightly sweet Pils malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex.Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.Smooth, light to moderate Pils malt sweetness initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate.Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy. ','Belgian Pils malt, aromatic malts, sugar, Belgian yeast strains that produce complex alcohol, phenolics and perfumy esters, noble, Styrian Goldings or East Kent Goldings hops. No spices are traditionally used, although the ingredients and fermentation by-products may give an impression of spicing (often reminiscent of oranges or lemons).','Leffe Blond, Affligem Blond, La Trappe (Koningshoeven) Blond, Grimbergen Blond, Val-Dieu Blond, Straffe Hendrik Blonde, Brugse Zot, Pater Lieven Blond Abbey Ale, Troubadour Blond Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(112,'American Barleywine','Ale','Strong Ale','19','C','BJCP',1.08,1.12,1.016,1.03,50.0,120.0,10.0,19.0,8.0,12.0,0.0,0.0,'The American version of the Barleywine tends to have a greater emphasis on hop bitterness, flavor and aroma than the English Barleywine, and often features American hop varieties. Differs from an Imperial IPA in that the hops are not extreme, the malt is more forward, and the body is richer and more characterful.','Very rich and intense maltiness. Hop character moderate to assertive and often showcases citrusy or resiny American varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Low to moderately strong fruity esters and alcohol aromatics. Malt character may be sweet, caramelly, bready, or fairly neutral. However, the intensity of aromatics often subsides with age. No diacetyl.Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in "legs" when beer is swirled in a glass.Strong, intense malt flavor with noticeable bitterness. Moderately low to moderately high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety). Low to moderate fruity esters. Noticeable alcohol presence, but sharp or solventy alcohol flavors are undesirable. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high. Roasted or burnt malt flavors are inappropriate. No diacetyl.Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be present, but not be excessively hot. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated. Normally aged significantly prior to release. Often associated with the winter or holiday season.','Well-modified pale malt should form the backbone of the grist. Some specialty or character malts may be used. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil.  Citrusy American hops are common, although any varieties can be used in quantity. Generally uses an attenuative American yeast.','Sierra Nevada Bigfoot, Great Divide Old Ruffian, Victory Old Horizontal, Rogue Old Crustacean, Avery Hog Heaven Barleywine, Bell''s Third Coast Old Ale, Anchor Old Foghorn, Three Floyds Behemoth, Stone Old Guardian, Bridgeport Old Knucklehead, Hair of the Dog Doggie Claws, Lagunitas Olde GnarleyWine, Smuttynose Barleywine, Flying Dog Horn Dog',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(113,'Classic Rauchbier','Ale','Smoke-flavored/Wood-aged Beer','22','A','BJCP',1.05,1.057,1.012,1.016,20.0,30.0,12.0,22.0,4.8,6.0,0.0,0.0,'The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany, such as the Bocks, Hefe-Weizen, Dunkel, Schwarz, and Helles-like beers, including examples such as Spezial Lager. Brewers entering these styles should use Other Smoked Beer (22B) as the entry category.','Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, bacon-like, woody, or rarely almost greasy. The malt character can be low to moderate, and be somewhat sweet, toasty, or malty. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean, lager character with no fruity esters, diacetyl or DMS.This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. The palate can be somewhat malty and sweet, yet the finish can reflect both malt and smoke. Moderate, balanced, hop bitterness, with a medium-dry to dry finish (the smoke character enhances the dryness of the finish). Noble hop flavor moderate to none. Clean lager character with no fruity esters, diacetyl or DMS. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate.Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.Märzen/Oktoberfest-style (see 3B) beer with a sweet, smoky aroma and flavor and a somewhat darker color. A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).','German Rauchmalz (beechwood-smoked Vienna-type malt) typically makes up 20-100% of the grain bill, with the remainder being German malts typically used in a Märzen. Some breweries adjust the color slightly with a bit of roasted malt. German lager yeast. German or Czech hops.','Schlenkerla Rauchbier Märzen, Kaiserdom Rauchbier, Eisenbahn Rauchbier, Victory Scarlet Fire Rauchbier, Spezial Rauchbier Märzen, Saranac Rauchbier',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(114,'Blonde Ale','Ale','Light Hybrid Beer','6','B','BJCP',1.038,1.054,1.008,1.013,15.0,28.0,3.0,6.0,3.8,5.5,0.0,0.0,'In addition to the more common American Blonde Ale, this category can also include modern English Summer Ales, American Kölsch-style beers, and less assertive American and English pale ales.','Light to moderate sweet malty aroma. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety. No diacetyl.Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent. Low to medium esters optional, but are commonly found in many examples. Light to moderate hop flavor (any variety), but shouldn''t be overly aggressive. Low to medium bitterness, but the balance is normally towards the malt. Finishes medium-dry to somewhat sweet. No diacetyl.Medium-light to medium body. Medium to high carbonation. Smooth without harsh bitterness or astringency.Easy-drinking, approachable, malt-oriented American craft beer. Currently produced by many (American) microbreweries and brewpubs. Regional variations exist (many West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the entry-level craft beer.','Generally all malt, but can include up to 25% wheat malt and some sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned. Some versions may have honey, spices and/or fruit added, although if any of these ingredients are stronger than a background flavor they should be entered in specialty, spiced or fruit beer categories instead. Extract versions should only use the lightest malt extracts and avoid kettle caramelization.','Pelican Kiwanda Cream Ale, Russian River Aud Blonde, Rogue Oregon Golden Ale, Widmer Blonde Ale, Fuller''s Summer Ale, Hollywood Blonde, Redhook Blonde',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(115,'California Common Beer','Ale','Amber Hybrid Beer','7','B','BJCP',1.048,1.054,1.011,1.014,30.0,45.0,10.0,14.0,4.5,5.5,0.0,0.0,'This style is narrowly defined around the prototypical Anchor Steam example. Superficially similar to an American pale or amber ale, yet differs in that the hop flavor/aroma is woody/minty rather than citrusy, malt flavors are toasty and caramelly, the hopping is always assertive, and a warm-fermented lager yeast is used.','Typically showcases the signature Northern Brewer hops (with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops. No diacetyl.Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing Northern Brewer qualities (woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean. No diacetyl.Medium-bodied. Medium to medium-high carbonation.A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing the signature Northern Brewer varietal hop character. American West Coast original. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to thrive at the cool end of normal ale fermentation temperatures.','Pale ale malt, American hops (usually Northern Brewer, rather than citrusy varieties), small amounts of toasted malt and/or crystal malts. Lager yeast, however some strains (often with the mention of "California" in the name) work better than others at the warmer fermentation temperatures (55 to 60F) used. Note that some German yeast strains produce inappropriate sulfury character. Water should have relatively low sulfate and low to moderate carbonate levels.','Anchor Steam, Southampton Steem Beer, Flying Dog Old Scratch Amber Lager',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(116,'Extra Special/Strong Bitter (English Pale Ale)','Ale','English Pale Ale','8','C','BJCP',1.048,1.06,1.01,1.016,30.0,50.0,6.0,18.0,4.6,6.2,0.0,0.0,'More evident malt and hop flavors than in a special or best bitter. Stronger versions may overlap somewhat with old ales, although strong bitters will tend to be paler and more bitter. Fuller''s ESB is a unique beer with a very large, complex malt profile not found in other examples; most strong bitters are fruitier and hoppier. Judges should not judge all beers in this style as if they were Fuller''s ESB clones. Some modern English variants are brewed exclusively with pale malt and are known as golden or summer bitters. Most bottled or kegged versions of UK-produced bitters are higher-alcohol versions of their cask (draught) products produced specifically for export. The IBU levels are often not adjusted, so the versions available in the US often do not directly correspond to their style subcategories in Britain. English pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including containing higher carbonation).','Hop aroma moderately-high to moderately-low, and can use any variety of hops although UK hops are most traditional. Medium to medium-high malt aroma, often with a low to moderately strong caramel component (although this character will be more subtle in paler versions). Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.  May have light, secondary notes of sulfur and/or alcohol in some examples (optional).Golden to deep copper. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.Medium-high to medium bitterness with supporting malt flavors evident. Normally has a moderately low to somewhat strong caramelly malt sweetness. Hop flavor moderate to moderately high (any variety, although earthy, resiny, and/or floral UK hops are most traditional). Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. May have low levels of secondary malt flavors (e.g., nutty, biscuity) adding complexity. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol, and up to a moderate minerally/sulfury flavor. Medium-dry to dry finish (particularly if sulfate water is used). Generally no diacetyl, although very low levels are allowed.Medium-light to medium-full body. Low to moderate carbonation, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.An average-strength to moderately-strong English ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style; emphasis is still on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales. A rather broad style that allows for considerable interpretation by the brewer. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily "more premium" since best bitters are traditionally the brewer''s finest product). Since beer is sold by strength in the UK, these beers often have some alcohol flavor (perhaps to let the consumer know they are getting their due). In England today, "ESB" is a brand unique to Fullers; in America, the name has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) English-type ale. Hopping can be English or a combination of English and American.','Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English hops most typical, although American and European varieties are becoming more common (particularly in the paler examples). Characterful English yeast. "Burton" versions use medium to high sulfate water.','Examples: Fullers ESB, Adnams Broadside, Shepherd Neame Bishop''s Finger, Young''s Ram Rod, Samuel Smith''s Old Brewery Pale Ale, Bass Ale, Whitbread Pale Ale, Shepherd Neame Spitfire, Marston''s Pedigree, Black Sheep Ale, Vintage Henley, Mordue Workie Ticket, Morland Old Speckled Hen, Greene King Abbot Ale, Bateman''s XXXB, Gale''s Hordean Special Bitter (HSB), Ushers 1824 Particular Ale, Hopback Summer Lightning, Great Lakes Moondog Ale, Shipyard Old Thumper, Alaskan ESB, Geary''s Pale Ale, Cooperstown Old Slugger, Anderson Valley Boont ESB, Avery 14''er ESB, Redhook ESB',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(117,'Scottish Heavy 70/-','Ale','Scottish and Irish Ale','9','B','BJCP',1.035,1.04,1.01,1.015,10.0,25.0,9.0,17.0,3.2,3.9,0.0,0.0,'The malt-hop balance is slightly to moderately tilted towards the malt side. Any caramelization comes from kettle caramelization and not caramel malt (and is sometimes confused with diacetyl). Although unusual, any smoked character is yeast- or water-derived and not from the use of peat-smoked malts. Use of peat-smoked malt to replicate the peaty character should be restrained; overly smoky beers should be entered in the Other Smoked Beer category (22B) rather than here.','Low to medium malty sweetness, sometimes accentuated by low to moderate kettle caramelization. Some examples have a low hop aroma, light fruitiness, low diacetyl, and/or a low to moderate peaty aroma (all are optional). The peaty aroma is sometimes perceived as earthy, smoky or very lightly roasted.Deep amber to dark copper. Usually very clear due to long, cool fermentations. Low to moderate, creamy off-white to light tan-colored head.Malt is the primary flavor, but isn''t overly strong. The initial malty sweetness is usually accentuated by a low to moderate kettle caramelization, and is sometimes accompanied by a low diacetyl component. Fruity esters may be moderate to none. Hop bitterness is low to moderate, but the balance will always be towards the malt (although not always by much). Hop flavor is low to none. A low to moderate peaty character is optional, and may be perceived as earthy or smoky. Generally has a grainy, dry finish due to small amounts of unmalted roasted barley.Medium-low to medium body. Low to moderate carbonation. Sometimes a bit creamy, but often quite dry due to use of roasted barley.Cleanly malty with a drying finish, perhaps a few esters, and on occasion a faint bit of peaty earthiness (smoke). Most beers finish fairly dry considering their relatively sweet palate, and as such have a different balance than strong Scotch ales. Traditional Scottish session beers reflecting the indigenous ingredients (water, malt), with less hops than their English counterparts (due to the need to import them). Long, cool fermentations are traditionally used in Scottish brewing.','Scottish or English pale base malt. Small amounts of roasted barley add color and flavor, and lend a dry, slightly roasty finish. English hops. Clean, relatively un-attenuative ale yeast. Some commercial brewers add small amounts of crystal, amber, or wheat malts, and adjuncts such as sugar. The optional peaty, earthy and/or smoky character comes from the traditional yeast and from the local malt and water rather than using smoked malts.','Caledonian 70/- (Caledonian Amber Ale in the US), Belhaven 70/-, Orkney Raven Ale, Maclay 70/-, Tennents Special, Broughton Greenmantle Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(118,'American Pale Ale','Ale','American Ale','10','A','BJCP',1.045,1.06,1.01,1.015,30.0,45.0,5.0,14.0,4.5,6.2,0.0,0.0,'There is some overlap in color between American pale ale and American amber ale. The American pale ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops.','Usually moderate to strong hop aroma from dry hopping or late kettle additions of American hop varieties. A citrusy hop character is very common, but not required. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). Fruity esters vary from moderate to none. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Pale golden to deep amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Usually a moderate to high hop flavor, often showing a citrusy American hop character (although other hop varieties may be used). Low to moderately high clean malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence can be substantial. Caramel flavors are usually restrained or absent. Fruity esters can be moderate to none. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish. No diacetyl. Dry hopping (if used) may add grassy notes, although this character should not be excessive.Medium-light to medium body. Carbonation moderate to high. Overall smooth finish without astringency often associated with high hopping rates.Refreshing and hoppy, yet with sufficient supporting malt. An American adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Often lighter in color, cleaner in fermentation by-products, and having less caramel flavors than English counterparts.','Pale ale malt, typically American two-row. American hops, often but not always ones with a citrusy character. American ale yeast. Water can vary in sulfate content, but carbonate content should be relatively low. Specialty grains may add character and complexity, but generally make up a relatively small portion of the grist. Grains that add malt flavor and richness, light sweetness, and toasty or bready notes are often used (along with late hops) to differentiate brands.','Sierra Nevada Pale Ale, Stone Pale Ale, Great Lakes Burning River Pale Ale, Bear Republic XP Pale Ale, Anderson Valley Poleeko Gold Pale Ale, Deschutes Mirror Pond, Full Sail Pale Ale, Three Floyds X-Tra Pale Ale, Firestone Pale Ale, Left Hand Brewing Jackman''s Pale Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(119,'Northern English Brown Ale','Ale','English Brown Ale','11','C','BJCP',1.04,1.052,1.008,1.014,20.0,30.0,12.0,22.0,4.2,5.4,0.0,0.0,'English brown ales are generally split into sub-styles along geographic lines.','Light, sweet malt aroma with toffee, nutty and/or caramel notes. A light but appealing fresh hop aroma (UK varieties) may also be noticed. A light fruity ester aroma may be evident in these beers, but should not dominate. Very low to no diacetyl.Dark amber to reddish-brown color. Clear. Low to moderate off-white to light tan head.Gentle to moderate malt sweetness, with a nutty, lightly caramelly character and a medium-dry to dry finish. Malt may also have a toasted, biscuity, or toffee-like character. Medium to medium-low bitterness. Malt-hop balance is nearly even, with hop flavor low to none (UK varieties). Some fruity esters can be present; low diacetyl (especially butterscotch) is optional but acceptable.Medium-light to medium body. Medium to medium-high carbonation.Drier and more hop-oriented that southern English brown ale, with a nutty character rather than caramel. ','English mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic. Moderate carbonate water.','Newcastle Brown Ale, Samuel Smith’s Nut Brown Ale, Riggwelter Yorkshire Ale, Wychwood Hobgoblin, Tröegs Rugged Trail Ale, Alesmith Nautical Nut Brown Ale, Avery Ellie’s Brown Ale, Goose Island Nut Brown Ale, Samuel Adams Brown Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(120,'Robust Porter','Ale','Porter','12','B','BJCP',1.048,1.065,1.012,1.016,25.0,50.0,22.0,35.0,4.8,6.5,0.0,0.0,'Although a rather broad style open to brewer interpretation, it may be distinguished from Stout as lacking a strong roasted barley character. It differs from a brown porter in that a black patent or roasted grain character is usually present, and it can be stronger in alcohol. Roast intensity and malt flavors can also vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an "American" or "English" character.','Roasty aroma (often with a lightly burnt, black malt character) should be noticeable and may be moderately strong. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high (US or UK varieties). Some American versions may be dry-hopped. Fruity esters are moderate to none. Diacetyl low to none.Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.Moderately strong malt flavor usually features a lightly burnt, black malt character (and sometimes chocolate and/or coffee flavors) with a bit of roasty dryness in the finish. Overall flavor may finish from dry to medium-sweet, depending on grist composition, hop bittering level, and attenuation. May have a sharp character from dark roasted grains, although should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the roasted malt. Hop flavor can vary from low to moderately high (US or UK varieties, typically), and balances the roasted malt flavors. Diacetyl low to none. Fruity esters moderate to none.Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from roasted grains, although this character should not be strong.A substantial, malty dark ale with a complex and flavorful roasty character. Stronger, hoppier and/or roastier version of porter designed as either a historical throwback or an American interpretation of the style. Traditional versions will have a more subtle hop character (often English), while modern versions may be considerably more aggressive. Both types are equally valid.','May contain several malts, prominently dark roasted malts and grains, which often include black patent malt (chocolate malt and/or roasted barley may also be used in some versions). Hops are used for bittering, flavor and/or aroma, and are frequently UK or US varieties. Water with moderate to high carbonate hardness is typical. Ale yeast can either be clean US versions or characterful English varieties.','Great Lakes Edmund Fitzgerald Porter, Meantime London Porter, Anchor Porter, Smuttynose Robust Porter, Sierra Nevada Porter, Deschutes Black Butte Porter, Boulevard Bully! Porter, Rogue Mocha Porter, Avery New World Porter, Bell''s Porter, Great Divide Saint Bridget''s Porter',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(121,'Oatmeal Stout','Ale','Stout','13','C','BJCP',1.048,1.065,1.01,1.018,25.0,40.0,22.0,40.0,4.2,5.9,0.0,0.0,'Generally between sweet and dry stouts in sweetness. Variations exist, from fairly sweet to quite dry. The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel. When judging, allow for differences in interpretation.','Mild roasted grain aromas, often with a coffee-like character. A light sweetness can imply a coffee-and-cream impression. Fruitiness should be low to medium. Diacetyl medium-low to none. Hop aroma low to none (UK varieties most common). A light oatmeal aroma is optional.Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).Medium sweet to medium dry palate, with the complexity of oats and dark roasted grains present. Oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Diacetyl medium-low to none. Hop flavor medium-low to none.Medium-full to full body, smooth, silky, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation.A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. An English seasonal variant of sweet stout that is usually less sweet than the original, and relies on oatmeal for body and complexity rather than lactose for body and sweetness.','Pale, caramel and dark roasted malts and grains.','Samuel Smith Oatmeal Stout, Young''s Oatmeal Stout, McAuslan Oatmeal Stout, Maclay’s Oat Malt Stout, Broughton Kinmount Willie Oatmeal Stout, Anderson Valley Barney Flats Oatmeal Stout, Tröegs Oatmeal Stout, New Holland The Poet, Goose Island Oatmeal Stout, Wolaver’s Oatmeal Stout',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(122,'American IPA','Ale','India Pale Ale','14','B','BJCP',1.056,1.075,1.01,1.018,40.0,70.0,6.0,15.0,5.5,7.5,0.0,0.0,'','A prominent to intense hop aroma with a citrusy, floral, perfume-like, resinous, piney, and/or fruity character derived from American hops. Many versions are dry hopped and can have an additional grassy aroma, although this is not required. Some clean malty sweetness may be found in the background, but should be at a lower level than in English examples. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is also acceptable. Some alcohol may be noted.Color ranges from medium gold to medium reddish copper; some versions can have an orange-ish tint. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Good head stand with white to off-white color should persist.Hop flavor is medium to high, and should reflect an American hop character with citrusy, floral, resinous, piney or fruity aspects. Medium-high to very high hop bitterness, although the malt backbone will support the strong hop character and provide the best balance. Malt flavor should be low to medium, and is generally clean and malty sweet although some caramel or toasty flavors are acceptable at low levels. No diacetyl. Low fruitiness is acceptable but not required. The bitterness may linger into the aftertaste but should not be harsh. Medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation in the presence of malt sweetness. Some smooth alcohol warming can and should be sensed in stronger (but not all) versions. Body is generally less than in English counterparts.A decidedly hoppy and bitter, moderately strong American pale ale. An American version of the historical English style, brewed using American ingredients and attitude.','Pale ale malt (well-modified and suitable for single-temperature infusion mashing,''); American hops; American yeast that can give a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Water character varies from soft to moderately sulfate. Versions with a noticeable Rye character ("RyePA") should be entered in the Specialty category.','Bell''s Two-Hearted Ale, AleSmith IPA, Russian River Blind Pig IPA, Stone IPA, Three Floyds Alpha King, Great Divide Titan IPA, Bear Republic Racer 5 IPA, Victory Hop Devil, Sierra Nevada Celebration Ale, Anderson Valley Hop Ottin'', Dogfish Head 60 Minute IPA, Founder''s Centennial IPA, Anchor Liberty Ale, Harpoon IPA, Avery IPA',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(123,'Weizen/Weissbier','Ale','German Wheat and Rye Beer','15','A','BJCP',1.044,1.052,1.01,1.014,8.0,15.0,2.0,8.0,4.3,5.6,0.0,0.0,'These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don''t age well and are best enjoyed while young and fresh. The version "mit hefe" is served with yeast sediment stirred in; the krystal version is filtered for excellent clarity. Bottles with yeast are traditionally swirled or gently rolled prior to serving. The character of a krystal weizen is generally fruitier and less phenolic than that of the hefe-weizen.','Moderate to strong phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Noble hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. No diacetyl or DMS. Optional, but acceptable, aromatics can include a light, citrusy tartness, a light to moderate vanilla character, and/or a low bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance.Pale straw to very dark gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable. A beer "mit hefe" is also cloudy from suspended yeast sediment (which should be roused before drinking). The filtered Krystal version has no yeast and is brilliantly clear.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or low bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly sweet Pils malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. A tart, citrusy character from yeast and high carbonation is often present. Well rounded, flavorful palate with a relatively dry finish. No diacetyl or DMS.Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high carbonation. Always effervescent.A pale, spicy, fruity, refreshing wheat-based ale. A traditional wheat-based ale originating in Southern Germany that is a specialty for summer consumption, but generally produced year-round.','By German law, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is Pilsner malt. A traditional decoction mash gives the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors. A small amount of noble hops are used only for bitterness.','Weihenstephaner Hefeweissbier, Schneider Weisse Weizenhell, Paulaner Hefe-Weizen, Hacker-Pschorr Weisse, Plank Bavarian Hefeweizen, Ayinger Bräu Weisse, Ettaler Weissbier Hell, Franziskaner Hefe-Weisse, Andechser Weissbier Hefetrüb, Kapuziner Weissbier, Erdinger Weissbier, Penn Weizen, Barrelhouse Hocking Hills HefeWeizen, Eisenbahn Weizenbier',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(124,'Saison','Ale','Belgian and French Ale','16','C','BJCP',1.048,1.065,1.002,1.012,20.0,35.0,5.0,14.0,5.0,7.0,0.0,0.0,'Varying strength examples exist (table beers of about 5% strength, typical export beers of about 6.5%, and stronger versions of 8%+). Strong versions (6.5%-9.5%) and darker versions (copper to dark brown/black) should be entered as Belgian Specialty Ales (16E). Sweetness decreases and spice, hop and sour character increases with strength. Herb and spice additions often reflect the indigenous varieties available at the brewery. High carbonation and extreme attenuation (85-95%) helps bring out the many flavors and to increase the perception of a dry finish. All of these beers share somewhat higher levels of acidity than other Belgian styles while the optional sour flavor is often a variable house character of a particular brewery.','High fruitiness with low to moderate hop aroma and moderate to no herb, spice and alcohol aroma. Fruity esters dominate the aroma and are often reminiscent of citrus fruits such as oranges or lemons. A low to medium-high spicy or floral hop aroma is usually present. A moderate spice aroma (from actual spice additions and/or yeast-derived phenols) complements the other aromatics. When phenolics are present they tend to be peppery rather than clove-like. A low to moderate sourness or acidity may be present, but should not overwhelm other characteristics. Spice, hop and sour aromatics typically increase with the strength of the beer. Alcohols are soft, spicy and low in intensity, and should not be hot or solventy. The malt character is light. No diacetyl.Often a distinctive pale orange but may be golden or amber in color. There is no correlation between strength and color. Long-lasting, dense, rocky white to ivory head resulting in characteristic "Belgian lace" on the glass as it fades. Clarity is poor to good though haze is not unexpected in this type of unfiltered farmhouse beer. Effervescent.Combination of fruity and spicy flavors supported by a soft malt character, a low to moderate alcohol presence and tart sourness. Extremely high attenuation gives a characteristic dry finish. The fruitiness is frequently citrusy (orange- or lemon-like). The addition of one of more spices serve to add complexity, but shouldn''t dominate in the balance. Low peppery yeast-derived phenols may be present instead of or in addition to spice additions; phenols tend to be lower than in many other Belgian beers, and complement the bitterness. Hop flavor is low to moderate, and is generally spicy or earthy in character. Hop bitterness may be moderate to high, but should not overwhelm fruity esters, spices, and malt. Malt character is light but provides a sufficient background for the other flavors. A low to moderate tart sourness may be present, but should not overwhelm other flavors. Spices, hop bitterness and flavor, and sourness commonly increase with the strength of the beer while sweetness decreases. No hot alcohol or solventy character. High carbonation, moderately sulfate water, and high attenuation give a very dry finish with a long, bitter, sometimes spicy aftertaste. The perceived bitterness is often higher than the IBU level would suggest. No diacetyl.Light to medium body. Alcohol level can be medium to medium-high, though the warming character is low to medium. No hot alcohol or solventy character. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. A low to moderate tart character may be present but should be refreshing and not to the point of puckering.A refreshing, medium to strong fruity/spicy ale with a distinctive yellow-orange color, highly carbonated, well hopped, and dry with a quenching acidity. A seasonal summer style produced in Wallonia, the French-speaking part of Belgium. Originally brewed at the end of the cool season to last through the warmer months before refrigeration was common. It had to be sturdy enough to last for months but not too strong to be quenching and refreshing in the summer. It is now brewed year-round in tiny, artisanal breweries whose buildings reflect their origins as farmhouses.','Pilsner malt dominates the grist though a portion of Vienna and/or Munich malt contributes color and complexity. Sometimes contains other grains such as wheat and spelt. Adjuncts such as sugar and honey can also serve to add complexity and thin the body. Hop bitterness and flavor may be more noticeable than in many other Belgian styles. A saison is sometimes dry-hopped. Noble hops, Styrian or East Kent Goldings are commonly used. A wide variety of herbs and spices are often used to add complexity and uniqueness in the stronger versions, but should always meld well with the yeast and hop character. Varying degrees of acidity and/or sourness can be created by the use of gypsum, acidulated malt, a sour mash or Lactobacillus. Hard water, common to most of Wallonia, can accentuate the bitterness and dry finish.','Saison Dupont Vieille Provision; Fantôme Saison D’Erezée - Printemps; Saison de Pipaix; Saison Regal; Saison Voisin; Lefebvre Saison 1900; Ellezelloise Saison 2000; Saison Silly; Southampton Saison; New Belgium Saison; Pizza Port SPF 45; Lost Abbey Red Barn Ale; Ommegang Hennepin',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(125,'Berliner Weisse','Ale','Sour Ale','17','A','BJCP',1.028,1.032,1.003,1.006,3.0,8.0,2.0,3.0,2.8,3.8,0.0,0.0,'In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8P. Often served with the addition of a shot of sugar syrups (''mit schuss'') flavored with raspberry (''himbeer'') or woodruff (''waldmeister'') or even mixed with Pils to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.','A sharply sour, somewhat acidic character is dominant. Can have up to a moderately fruity character. The fruitiness may increase with age and a flowery character may develop. A mild Brettanomyces aroma may be present. No hop aroma, diacetyl, or DMS.Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention due to high acidity and low protein and hop content. Always effervescent.Clean lactic sourness dominates and can be quite strong, although not so acidic as a lambic. Some complementary bready or grainy wheat flavor is generally noticeable. Hop bitterness is very low. A mild Brettanomyces character may be detected, as may a restrained fruitiness (both are optional). No hop flavor. No diacetyl or DMS.Light body. Very dry finish. Very high carbonation. No sensation of alcohol.A very pale, sour, refreshing, low-alcohol wheat ale. A regional specialty of Berlin; referred to by Napoleon''s troops in 1809 as "the Champagne of the North" due to its lively and elegant character. Only two traditional breweries still produce the product.','Wheat malt content is typically 50% of the grist (as with all German wheat beers) with the remainder being Pilsner malt. A symbiotic fermentation with top-fermenting yeast and Lactobacillus delbruckii provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by extended cool aging. Hop bitterness is extremely low. A single decoction mash with mash hopping is traditional.','Schultheiss Berliner Weisse, Berliner Kindl Weisse, Nodding Head Berliner Weisse, Weihenstephan 1809 (unusual in its 5% ABV), Bahnhof Berliner Style Weisse, Southampton Berliner Weisse, Bethlehem Berliner Weisse, Three Floyds Deesko',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(126,'Belgian Blond Ale','Ale','Belgian Strong Ale','18','A','BJCP',1.062,1.075,1.008,1.018,15.0,30.0,4.0,7.0,6.0,7.5,0.0,0.0,'Similar strength as a dubbel, similar character as a Belgian Strong Golden Ale or Tripel, although a bit sweeter and not as bitter. Often has an almost lager-like character, which gives it a cleaner profile in comparison to the other styles. Belgians use the term "Blond," while the French spell it "Blonde." Most commercial examples are in the 6.5 - 7% ABV range. Many Trappist table beers (singles or Enkels) are called "Blond" but these are not representative of this style.','Light earthy or spicy hop nose, along with a lightly sweet Pils malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex.Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.Smooth, light to moderate Pils malt sweetness initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate.Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy. ','Belgian Pils malt, aromatic malts, sugar, Belgian yeast strains that produce complex alcohol, phenolics and perfumy esters, noble, Styrian Goldings or East Kent Goldings hops. No spices are traditionally used, although the ingredients and fermentation by-products may give an impression of spicing (often reminiscent of oranges or lemons).','Leffe Blond, Affligem Blond, La Trappe (Koningshoeven) Blond, Grimbergen Blond, Val-Dieu Blond, Straffe Hendrik Blonde, Brugse Zot, Pater Lieven Blond Abbey Ale, Troubadour Blond Ale',0,0,'');
INSERT INTO "style" (id,name,s_type,category,category_number,style_letter,style_guide,og_min,og_max,fg_min,fg_max,ibu_min,ibu_max,color_min,color_max,abv_min,abv_max,carb_min,carb_max,notes,profile,ingredients,examples,deleted,display,folder) VALUES(127,'American Barleywine','Ale','Strong Ale','19','C','BJCP',1.08,1.12,1.016,1.03,50.0,120.0,10.0,19.0,8.0,12.0,0.0,0.0,'The American version of the Barleywine tends to have a greater emphasis on hop bitterness, flavor and aroma than the English Barleywine, and often features American hop varieties. Differs from an Imperial IPA in that the hops are not extreme, the malt is more forward, and the body is richer and more characterful.','Very rich and intense maltiness. Hop character moderate to assertive and often showcases citrusy or resiny American varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Low to moderately strong fruity esters and alcohol aromatics. Malt character may be sweet, caramelly, bready, or fairly neutral. However, the intensity of aromatics often subsides with age. No diacetyl.Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in "legs" when beer is swirled in a glass.Strong, intense malt flavor with noticeable bitterness. Moderately low to moderately high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety). Low to moderate fruity esters. Noticeable alcohol presence, but sharp or solventy alcohol flavors are undesirable. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high. Roasted or burnt malt flavors are inappropriate. No diacetyl.Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be present, but not be excessively hot. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated. Normally aged significantly prior to release. Often associated with the winter or holiday season.','Well-modified pale malt should form the backbone of the grist. Some specialty or character malts may be used. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil.  Citrusy American hops are common, although any varieties can be used in quantity. Generally uses an attenuative American yeast.','Sierra Nevada Bigfoot, Great Divide Old Ruffian, Victory Old Horizontal, Rogue Old Crustacean, Avery Hog Heaven Barleywine, Bell''s Third Coast Old Ale, Anchor Old Foghorn, Three Floyds Behemoth, Stone Old Guardian, Bridgeport Old Knucklehead, Hair of the Dog Doggie Claws, Lagunitas Olde GnarleyWine, Smuttynose Barleywine, Flying Dog Horn Dog',0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(1,'Danstar - Nottingham','Ale','Dry',0.0110014,'false','Danstar','',18.0,24.0,'Low',80.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(2,'Danstar - Windsor Ale','Ale','Dry',0.011,'true','Danstar','',18.0,24.0,'Low',70.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(3,'Safale S-04','Ale','Dry',0.011,'true','Safale','',15.0,24.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(4,'Safale S-05','Ale','Dry',0.011,'false','Safale','',15.0,24.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(5,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(6,'WLP002 - English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','002',18.0,20.0,'Very High',66.0,'A classic ESB strain from one of England''s largest independent breweries. This yeast is best suited for English style ales including milds, bitters, porters, and English style stouts. This yeast will leave a beer very clear, and will leave some residual sweetness.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(7,'WLP004 - Irish Ale Yeast','Ale','Liquid',0.035,'false','White Labs','004',18.0,20.0,'Medium',71.0,'This is the yeast from one of the oldest stout producing breweries in the world. It produces a slight hint of diacetyl, balanced by a light fruitiness and slight dry crispness. Great for Irish ales, stouts, porters, browns, reds and a very interesting pale ale.  ','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(8,'WLP005 - British Ale Yeast','Ale','Liquid',0.035,'false','White Labs','005',18.0,21.0,'High',70.0,'This yeast is a little more attenuative than WLP002. Like most English strains, this yeast produces malty beers. Excellent for all English style ales including bitter, pale ale, porter, and brown ale. ','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(9,'WLP006 - Bedford British','Ale','Liquid',0.035,'false','White Labs','006',18.0,21.0,'High',76.0,'Ferments dry and flocculates very well. Produces a distinctive ester profile. Good choice for most English style ales including bitter, pale ale, porter, and brown ale.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(10,'WLP007 - Dry English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','007',18.0,21.0,'Medium',75.0,'Clean, highly flocculent, and highly attenuative yeast. This yeast is similar to WLP002 in flavor profile, but is 10% more attenuative. This eliminates the residual sweetness, and makes the yeast well suited for high gravity ales. It is also reaches terminal gravity quickly. 80% attenuation will be reached even with 10% ABV beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(11,'WLP008 - East Coast Ale Yeast','Ale','Liquid',0.035,'false','White Labs','008',20.0,23.0,'Medium',72.0,'Our "Brewer Patriot" strain can be used to reproduce many of the American versions of classic beer styles. Similar neutral character of WLP001, but less attenuation, less accentuation of hop bitterness, slightly less flocculation, and a little tartness. Very clean and low esters. Great yeast for golden, blonde, honey, pales and German alt style ales.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(12,'WLP009 - Australian Ale Yeast','Ale','Liquid',0.035,'false','White Labs','009',18.0,21.0,'High',72.0,'Produces a clean, malty beer. Pleasant ester character, can be described as "bready." Can ferment successfully, and clean, at higher temperatures. This yeast combines good flocculation with good attenuation.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(13,'WLP011 - European Ale Yeast','Ale','Liquid',0.035,'false','White Labs','011',18.0,21.0,'Medium',67.0,'Malty, Northern European-origin ale yeast. Low ester production, giving a clean profile. Little to no sulfur production. Low attenuation helps to contribute to the malty character. Good for Alt, Kolsch, malty English ales, and fruit beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(14,'WLP013 - London Ale Yeast','Ale','Liquid',0.035,'false','White Labs','013',19.0,22.0,'Medium',71.0,'Dry, malty ale yeast. Provides a complex, oakey ester character to your beer. Hop bitterness comes through well. This yeast is well suited for classic British pale ales, bitters, and stouts. Does not flocculate as much as WLP002 and WLP005.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(15,'WLP022 - Essex Ale Yeast','Ale','Liquid',0.035,'false','White Labs','022',19.0,21.0,'Medium',73.0,'Flavorful British style yeast. Drier finish than many British ale yeast. Produces slightly fruity and bready character.    Good top fermenting yeast strain, is well suited for top cropping (collecting). This yeast is well suited for classic British milds, pale ales, bitters, and stouts. Does not flocculate as much as WLP002 and WLP005.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(16,'WLP023 - Burton Ale Yeast','Ale','Liquid',0.035,'false','White Labs','023',20.0,23.0,'Medium',72.0,'From the famous brewing town of Burton upon Trent, England, this yeast is packed with character. It provides delicious subtle fruity flavors like apple, clover honey and pear. Great for all English styles, IPA''s, bitters, and pales. Excellent in porters and stouts.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(17,'WLP028 - Edinburgh Scottish Ale Yeast','Ale','Liquid',0.035,'false','White Labs','028',18.0,21.0,'Medium',72.0,'Scotland is famous for its malty, strong ales. This yeast can reproduce complex, flavorful Scottish style ales. This yeast can be an everyday strain, similar to WLP001. Hop character is not muted with this strain, as it is with WLP002.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(18,'WLP029 - German Ale/Kölsch Yeast','Ale','Liquid',0.035,'false','White Labs','029',18.0,21.0,'Medium',75.0,'From a small brewpub in Cologne, Germany, this yeast works great in Kölsch and Alt style beers. Good for light beers like blond and honey. Accentuates hop flavors, similar to WLP001. The slight sulfur produced during fermentation will disappear with age and leave a super clean, lager like ale.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(19,'WLP036 - Dusseldorf Alt Yeast','Ale','Liquid',0.035,'false','White Labs','036',18.0,21.0,'Medium',68.0,'Traditional Alt yeast from Dusseldorf, Germany. Produces clean, slightly sweet alt beers. Does not accentuate hop flavor as WLP029 does.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(20,'WLP037 - Yorkshire Square Ale Yeast','Ale','Liquid',0.035,'false','White Labs','037',18.0,21.0,'High',70.0,'This yeast produces a beer that is malty, but well-balanced. Expect flavors that are toasty with malt-driven esters. Highly flocculent and good choice for English pale ales, English brown ales, and mild ales.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(21,'WLP038 - Manchester Ale Yeast','Ale','Liquid',0.035,'false','White Labs','038',18.0,21.0,'High',72.0,'Top-fermenting strain that is traditionally good for top-cropping. Moderately flocculent with a clean, dry finish. Low ester profile, producing a highly balanced English-style beer.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(22,'WLP039 - Nottingham Ale Yeast','Ale','Liquid',0.035,'false','White Labs','039',19.0,21.0,'Medium',77.0,'British style ale yeast with a very dry finish. Medium to low fruit and fusel alcohol production. Good top fermenting yeast strain, is well suited for top cropping (collecting). This yeast is well suited for pale ales, ambers, porters, and stouts.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(23,'WLP041 - Pacific Ale Yeast','Ale','Liquid',0.035,'false','White Labs','041',18.0,20.0,'High',67.0,'A popular ale yeast from the Pacific Northwest. The yeast will clear from the beer well, and leave a malty profile. More fruity than WLP002, English Ale Yeast. Good yeast for English style ales including milds, bitters, IPA, porters, and English style stouts.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(24,'WLP051 - California Ale V Yeast','Ale','Liquid',0.035,'false','White Labs','051',19.0,21.0,'Medium',72.0,'From Northern California. This strain is more fruity than WLP001, and slightly more flocculent. Attenuation is lower, resulting in a fuller bodied beer than with WLP001.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(25,'WLP060 - American Ale Yeast Blend','Ale','Liquid',0.035,'false','White Labs','060',20.0,22.0,'Medium',76.0,'Our most popular yeast strain is WLP001, California Ale Yeast. This blend celebrates the strengths of California- clean, neutral fermentation, versatile usage, and adds two other strains that belong to the same ''clean/neutral'' flavor category. The additional strains create complexity to the finished beer. This blend tastes more lager like than WLP001. Hop flavors and bitterness are accentuated, but not to the extreme of California. Slight sulfur will be produced during fermentation.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(26,'WLP080 - Cream Ale Yeast Blend','Ale','Liquid',0.035,'false','White Labs','080',18.0,21.0,'Medium',77.0,'This is a blend of ale and lager yeast strains.  The strains work together to create a clean, crisp, light American lager style ale. A pleasing estery aroma may be perceived from the ale yeast contribution. Hop flavors and bitterness are slightly subdued. Slight sulfur will be produced during fermentation, from the lager yeast.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(27,'WLP099 - Super High Gravity Ale Yeast','Ale','Liquid',0.035,'false','White Labs','099',18.0,21.0,'Medium',80.0,'Can ferment up to 25% alcohol. From England. Produces ester character that increases with increasing gravity. Malt character dominates at lower gravities.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(28,'WLP300 - Hefeweizen Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','300',20.0,22.0,'Low',74.0,'This famous German yeast is a strain used in the production of traditional, authentic wheat beers. It produces the banana and clove nose traditionally associated with German wheat beers and leaves the desired cloudy look of traditional German wheat beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(29,'WLP320 - American Hefeweizen Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','320',18.0,21.0,'Low',72.0,'This yeast is used to produce the Oregon style American Hefeweizen. Unlike WLP300, this yeast produces a very slight amount of the banana and clove notes. It produces some sulfur, but is otherwise a clean fermenting yeast, which does not flocculate well, producing a cloudy beer.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(30,'WLP351 - Bavarian Weizen Yeast','Wheat','Liquid',0.035,'false','White Labs','351',19.0,21.0,'Low',75.0,'Former Yeast Lab W51 yeast strain, acquired from Dan McConnell. The description originally used by Yeast Lab still fits: "This strain produces a classic German-style wheat beer, with moderately high, spicy, phenolic overtones reminiscent of cloves."','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(31,'WLP380 - Hefeweizen IV Ale Yeast ','Wheat','Liquid',0.035,'false','White Labs','380',19.0,21.0,'Low',76.0,'Large clove and phenolic aroma and flavor, with minimal banana. Refreshing citrus and apricot notes. Crisp, drinkable hefeweizen. Less flocculent than WLP300, and sulfur production is higher.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(32,'WLP400 - Belgian Wit Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','400',19.0,23.0,'Low',76.0,'Slightly phenolic and tart, this is the original yeast used to produce Wit in Belgium.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(33,'WLP410 - Belgian Wit II Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','410',19.0,23.0,'Low',72.0,'Less phenolic than WLP400, and more spicy. Will leave a bit more sweetness, and flocculation is higher than WLP400. Use to produce Belgian Wit, spiced Ales, wheat Ales, and specialty Beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(34,'WLP500 - Trappist Ale Yeast','Ale','Liquid',0.035,'false','White Labs','500',18.0,22.0,'Medium',77.0,'From one of the few remaining Trappist breweries remaining in the world, this yeast produces the distinctive fruitiness and plum characteristics. Excellent yeast for high gravity beers, Belgian ales, dubbels and trippels.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(35,'WLP510 - Belgian Bastogne Ale Yeast','Ale','Liquid',0.035,'false','White Labs','510',19.0,22.0,'Medium',77.0,'A high gravity, Trappist style ale yeast. Produces dry beer with slight acidic finish. More clean fermentation character than WLP500 or WLP530. Not as spicy as WLP530 or WLP550. Excellent yeast for high gravity beers, Belgian ales, dubbels and trippels.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(36,'WLP515 - Antwerp Ale Yeast','Ale','Liquid',0.035,'false','White Labs','515',19.0,21.0,'Medium',76.0,'Clean, almost lager like Belgian type ale yeast. Good for Belgian type pales ales and amber ales, or with blends to combine with other Belgian type yeast strains. Biscuity, ale like aroma present. Hop flavors and bitterness are accentuated. Slight sulfur will be produced during fermentation, which can give the yeast a lager like flavor profile.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(37,'WLP530 - Abbey Ale Yeast','Ale','Liquid',0.035,'false','White Labs','530',19.0,22.0,'Medium',77.0,'Used to produce Trappist style beers. Similar to WLP500, but is less fruity and more alcohol tolerant (up to 15% ABV). Excellent yeast for high gravity beers, Belgian ales, dubbels and trippels.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(38,'WLP540 - Abbey IV Ale Yeast','Ale','Liquid',0.035,'false','White Labs','540',19.0,22.0,'Medium',78.0,'An authentic Trappist style yeast. Use for Belgian style ales, dubbels, trippels, and specialty beers. Fruit character is medium, in between WLP500 (high) and WLP530 (low).','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(39,'WLP545 - Belgian Strong Ale Yeast','Ale','Liquid',0.035,'false','White Labs','545',19.0,22.0,'Medium',81.0,'From the Ardennes region of Belgium, this classic yeast strain produces moderate levels of ester and spicy phenolic character. Typically results in a dry, but balanced finish. This yeast is well suited for Belgian dark strongs, Abbey Ales, and Christmas beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(40,'WLP550 - Belgian Ale Yeast','Ale','Liquid',0.035,'false','White Labs','550',20.0,26.0,'Medium',81.0,'Saisons, Belgian Ales, Belgian Reds, Belgian Browns, and White beers are just a few of the classic Belgian beer styles that can be created with this yeast strain. Phenolic and spicy flavors dominate the profile, with less fruitiness then WLP500.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(41,'WLP565 - Belgian Saison I Yeast','Ale','Liquid',0.035,'false','White Labs','565',20.0,24.0,'Medium',70.0,'Classic Saison yeast from Wallonia. It produces earthy, peppery, and spicy notes. Slightly sweet. With high gravity Saisons, brewers may wish to dry the beer with an alternate yeast added after 75% fermentation.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(42,'WLP566 - Belgian Saison II Yeast','Ale','Liquid',0.035,'false','White Labs','566',20.0,26.0,'Medium',81.0,'Saison strain with more fruity ester production than with WLP565. Moderately phenolic, with a clove-like characteristic in finished beer flavor and aroma. Ferments faster than WLP565.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(43,'WLP568 - Belgian Style Saison Ale Yeast Blend','Ale','Liquid',0.035,'false','White Labs','568',21.0,27.0,'Medium',75.0,'This blend melds Belgian style ale and Saison strains. The strains work in harmony to create complex, fruity aromas and flavors. The blend of yeast strains encourages complete fermentation in a timely manner. Phenolic, spicy, earthy, and clove like flavors are also created.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(44,'WLP570 - Belgian Golden Ale Yeast','Ale','Liquid',0.035,'false','White Labs','570',20.0,24.0,'Low',75.0,'From East Flanders, versatile yeast that can produce light Belgian ales to high gravity Belgian beers (12% ABV). A combination of fruitiness and phenolic characteristics dominate the flavor profile. Some sulfur is produced during fermentation, which will dissipate following the end of fermentation.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(45,'WLP575 - Belgian Style Ale Yeast Blend','Ale','Liquid',0.035,'false','White Labs','575',20.0,24.0,'Medium',77.0,'A blend of Trappist type yeast (2) and one Belgian ale type yeast. This creates a versatile blend that can be used for Trappist type beer, or a myriad of beers that can be described as ''Belgian type''. ','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(46,'WLP700 - Flor Sherry Yeast','Wine','Liquid',0.035,'false','White Labs','700',21.0,25.0,'Medium',80.0,'This yeast develops a film (flor) on the surface of the wine. Creates green almond, granny smith and nougat characteristics found in sherry. Can also be used for Port, Madeira and other sweet styles. For use in secondary fermentation. Slow fermentor.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(47,'WLP705 - Sake Yeast','Wine','Liquid',0.035,'false','White Labs','705',21.0,25.0,'Medium',80.0,'For use in rice based fermentations. For sake, use this yeast in conjunction with Koji (to produce fermentable sugar). WLP705 produces full body sake character, and subtle fragrance.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(48,'WLP715 - Champagne Yeast','Champagne','Liquid',0.035,'false','White Labs','715',21.0,24.0,'Low',75.0,'Classic yeast, used to produce champagne, cider, dry meads, dry wines, or to fully attenuate barley wines/ strong ales. Neutral.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(49,'WLP718 - Avize Wine Yeast','Wine','Liquid',0.035,'false','White Labs','718',16.0,32.0,'Low',80.0,'Champagne isolate used for complexity in whites. Contributes elegance, especially in barrel fermented Chardonnays.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(50,'WLP720 - Sweet Mead/Wine Yeast','Wine','Liquid',0.035,'false','White Labs','720',21.0,24.0,'Low',75.0,'A wine yeast strain that is less attenuative than WLP715, leaving some residual sweetness. Slightly fruity and will tolerate alcohol concentrations up to 15%. A good choice for sweet mead and cider, as well as Blush wines, Gewürztraminer, Sauternes, Riesling.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(51,'WLP727 - Steinberg-Geisenheim Wine Yeast','Wine','Liquid',0.035,'false','White Labs','727',10.0,32.0,'Low',80.0,'German in origin, this yeast has high fruit/ester production. Perfect for Riesling and Gewürztraminer. Moderate fermentation characteristics and cold tolerant.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(52,'WLP730 - Chardonnay White Wine Yeast','Wine','Liquid',0.035,'false','White Labs','730',10.0,32.0,'Low',80.0,'Dry wine yeast. Slight ester production, low sulfur dioxide production. Enhances varietal character. WLP730 is a good choice for all white and blush wines, including Chablis, Chenin Blanc, Semillon, and Sauvignon Blanc. Fermentation speed is moderate.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(53,'WLP735 - French White Wine Yeast','Wine','Liquid',0.035,'false','White Labs','735',16.0,32.0,'Low',80.0,'Classic yeast for white wine fermentation. Slow to moderate fermenter and foam producer. Gives an enhanced creamy texture.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(54,'WLP740 - Merlot Red Wine Yeast','Wine','Liquid',0.035,'false','White Labs','740',16.0,32.0,'Low',80.0,'Neutral, low fusel alcohol production. Will ferment to dryness, alcohol tolerance to 18%. Vigorous fermenter. WLP740 is well suited for Merlot, Shiraz, Pinot Noir, Chardonnay, Cabernet, Sauvignon Blanc, and Semillon.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(55,'WLP749 - Assmanshausen Wine Yeast','Wine','Liquid',0.035,'false','White Labs','749',10.0,32.0,'Low',80.0,'German red wine yeast, which results in spicy, fruit aromas. Perfect for Pinot Noir and Zinfandel. Slow to moderate fermenter which is cold tolerant.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(56,'WLP750 - French Red Wine Yeast','Wine','Liquid',0.035,'false','White Labs','750',16.0,32.0,'Low',80.0,'Classic Bordeaux yeast for red wine fermentations. Moderate fermentation characteristics. Tolerates lower fermentation temperatures. Rich, smooth flavor profile.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(57,'WLP760 - Cabernet Red Wine Yeast','Wine','Liquid',0.035,'false','White Labs','760',16.0,32.0,'Low',80.0,'High temperature tolerance. Moderate fermentation speed. Excellent for full-bodied red wines, ester production complements flavor. WLP760 is also suitable for Merlot, Chardonnay, Chianti, Chenin Blanc, and Sauvignon Blanc.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(58,'WLP770 - Suremain Burgundy Wine Yeast','Wine','Liquid',0.035,'false','White Labs','770',16.0,32.0,'Low',80.0,'Emphasizes fruit aromas in barrel fermentations. High nutrient requirement to avoid volatile acidity production.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(59,'WLP775 - English Cider Yeast','Wine','Liquid',0.035,'false','White Labs','775',20.0,24.0,'Medium',80.0,'Classic cider yeast. Ferments dry, but retains flavor from apples. Sulfur is produced during fermentation, but will disappear in first two weeks of aging. Can also be used for wine and high gravity beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(60,'WLP800 - Pilsner Lager Yeast','Lager','Liquid',0.035,'false','White Labs','800',10.0,13.0,'Medium',74.0,'Classic pilsner strain from the premier pilsner producer in the Czech Republic. Somewhat dry with a malty finish, this yeast is best suited for European pilsner production.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(61,'WLP802 - Czech Budejovice Lager Yeast','Lager','Liquid',0.035,'false','White Labs','802',10.0,13.0,'Medium',77.0,'Pilsner lager yeast from Southern Czech Republic. Produces dry and crisp lagers, with low diacetyl production.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(62,'WLP810 - San Francisco Lager Yeast','Lager','Liquid',0.035,'false','White Labs','810',14.0,18.0,'High',67.0,'This yeast is used to produce the "California Common" style beer. A unique lager strain which has the ability to ferment up to 65 degrees while retaining lager characteristics. Can also be fermented down to 50 degrees for production of marzens, pilsners and other style lagers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(63,'WLP815 - Belgian Lager Yeast','Lager','Liquid',0.035,'false','White Labs','815',10.0,12.0,'Medium',75.0,'Clean, crisp European lager yeast with low sulfur  production. The strain originates from a very old brewery in West Belgium. Great for European style pilsners, dark lagers, Vienna lager, and American style lagers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(64,'WLP820 - Oktoberfest/Märzen Lager Yeast','Lager','Liquid',0.035,'false','White Labs','820',11.0,14.0,'Medium',69.0,'This yeast produces a very malty, bock like style. It does not finish as dry as WLP830. This yeast is much slower in the first generation than WLP830, so we encourage a larger starter to be used the first generation or schedule a longer lagering time.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(65,'WLP830 - German Lager Yeast','Lager','Liquid',0.035,'false','White Labs','830',10.0,13.0,'Medium',76.0,'This yeast is one of the most widely used lager yeasts in the world. Very malty and clean, great for all German lagers, Pilsner, Oktoberfest, and Marzen.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(66,'WLP833 - German Bock Lager Yeast','Lager','Liquid',0.035,'false','White Labs','833',9.0,13.0,'Medium',73.0,'From the Alps of southern Bavaria, this yeast produces a beer that is well balanced between malt and hop character. The excellent malt profile makes it well suited for Bocks, Doppelbocks, and Oktoberfest style beers. Very versatile lager yeast, it is so well balanced that it has gained tremendous popularity for use in Classic American style Pilsners. Also good for Helles style lager beer.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(67,'WLP838 - Southern German Lager Yeast','Lager','Liquid',0.035,'false','White Labs','838',10.0,13.0,'Medium',72.0,'This yeast is characterized by a malty finish and balanced aroma. It is a strong fermentor, produces slight sulfur, and low diacetyl.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(68,'WLP840 - American Lager Yeast','Lager','Liquid',0.035,'false','White Labs','840',10.0,13.0,'Medium',77.0,'This yeast is used to produce American style lagers. Dry and clean with a very slight apple fruitiness. Sulfur and diacetyl production is minimal.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(69,'WLP862 - Cry Havoc ','Lager','Liquid',0.035,'false','White Labs','862',13.0,23.0,'Medium',68.0,'Licensed from Charlie Papazian, this strain can ferment at ale and lager temperatures, allowing brewers to produce diverse beer styles. The recipes in both Papazian''s books, The Complete Joy of Homebrewing and The Homebrewers Companion, were originally developed and brewed with this yeast.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(70,'WLP885 - Zurich Lager Yeast','Lager','Liquid',0.035,'false','White Labs','885',10.0,13.0,'Medium',75.0,'Swiss style lager yeast. With proper care, this yeast can be used to produce lager beer over 11% ABV. Sulfur and diacetyl production is minimal. Original culture provided to White Labs by Marc Sedam.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(71,'WLP920 - Old Bavarian Lager Yeast','Lager','Liquid',0.035,'false','White Labs','920',10.0,13.0,'Medium',69.0,'From Southern Germany, this yeast finishes malty with a slight ester profile. Use in beers such as Oktoberfest, Bock, and Dark Lagers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(72,'WLP940 - Mexican Lager Yeast','Lager','Liquid',0.035,'false','White Labs','940',10.0,13.0,'Medium',74.0,'From Mexico City, this yeast produces clean lager beer, with a crisp finish. Good for Mexican style light lagers, as well as dark lagers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(73,'Wyeast - American Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1056',15.0,22.0,'Low',75.0,'Very clean, crisp flavor characteristics. Low fruitiness and mild ester production. Slightly citrus-like with cool (15-19C) fermentation. Versatile yeast, which produces many beer styles allowing malt and hop character to dominate the beer profile. Flocculation improves with dark malts in grain bill. Normally requires filtration for bright beers.
 ','Everything :)',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(74,'Wyeast - American Ale II','Ale','Liquid',0.125,'false','Wyeast Labs','1272',15.0,22.0,'Medium',74.0,'Consistent performance. Fruitier and more flocculent than 1056. SLightly nutty, soft, clean, with a slightly tart finish. Ferment at warmer temperatures to accentuate hop character with intense fruitiness, or ferment cool for clean, light citrus character. Expect good attenuation, but this will vary with grist, mash, and other wort characteristics. Reliably flocculent, producing bright beer without filtration.
 ','American Pale Ale, American Strong Pale Ale, American Amber Ale, American Brown Ale, American IPA, Imperial IPA, American Barleywine, American Stout, Porter, Cream Ale, Strong Scotch Ale, Irish Ale, Imperial Stout, other strong Ales, Christmas/Winter Ale, Spice/Herb/Vegetable Ale, Smoked Ale, Wood-Aged Ale, Fruit Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(75,'Wyeast - American Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2035',9.0,14.0,'Medium',75.0,'Bold, complex, and aromatic. Good depth of flavor for a variety of lagers.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(76,'Wyeast - American Wheat','Ale','Liquid',0.125,'false','Wyeast Labs','1010',14.0,23.0,'Low',76.0,'A dry fermenting, true top-cropping yeast which produces a dry, slightly tart, crisp beer. Ideal for beers where a low ester profile is desirable.
 ','Cream Ale, Kolsch, American Wheat, American Rye, North German Altbier, Dusseldorf Altbier',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(77,'Wyeast - Bavarian Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2206',8.0,14.0,'Medium',75.0,'Used by many German breweries to produce rich, full-bodied, malty beers. Good choice for Bocks and Doppelbocks. Benefits from diacetyl rest at 14 C for 24 hours after fermentation is complete.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(78,'Wyeast - Bavarian Wheat','Ale','Liquid',0.125,'false','Wyeast Labs','3638',18.0,24.0,'Low',73.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(79,'Wyeast - Bavarian Wheat Blend','Ale','Liquid',0.125,'false','Wyeast Labs','3056',18.0,23.0,'Medium',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(80,'Wyeast - Belgian Abbey II','Ale','Liquid',0.125,'false','Wyeast Labs','1762',18.0,24.0,'Medium',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(81,'Wyeast - Belgian Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1214',20.0,24.0,'Medium',76.0,'Abbey-style top-fermenting yeast, suitable for high-gravity beers. Estery, great complexity with very good alcohol tolerance. This strain can be slow to start.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(82,'Wyeast - Belgian Ardennes','Ale','Liquid',0.125,'false','Wyeast Labs','3522',18.0,29.0,'High',74.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(83,'Wyeast - Belgian Lambic Blend','Ale','Liquid',0.125,'false','Wyeast Labs','3278',17.0,24.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(84,'Wyeast - Belgian Saison','Ale','Liquid',0.125,'false','Wyeast Labs','3724',21.0,35.0,'Low',78.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(85,'Wyeast - Belgian Strong Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1388',18.0,27.0,'Low',76.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(86,'Wyeast - Belgian Wheat','Ale','Liquid',0.125,'false','Wyeast Labs','3942',18.0,23.0,'Medium',74.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(87,'Wyeast - Belgian Witbier','Ale','Liquid',0.125,'false','Wyeast Labs','3944',16.0,24.0,'Medium',74.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(88,'Wyeast - Bohemian Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2124',8.0,14.0,'Medium',75.0,'Carlsberg type yeast, most widely used lager strain in the world. Produces a distinct malty profile with some ester character and a crisp finish. Benefits from a diacetyl rest at 14 C for 24 hours after fermentation is complete. Also used for pseudo-ale production with fermentations at 24 C which eliminates sulfur production.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(89,'Wyeast - Brettanomyces bruxellensis','Ale','Liquid',0.125,'false','Wyeast Labs','5112',15.0,24.0,'Medium',80.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(90,'Wyeast - Brettanomyces lambicus','Ale','Liquid',0.125,'false','Wyeast Labs','5526',15.0,24.0,'Medium',80.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(91,'Wyeast - British Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1098',18.0,22.0,'Medium',74.0,'Produces beers with a clean neutral finish allowing malt and hop character to dominate. Ferments dry and crips, slightly tart, fruity and well-balanced. Ferments well down to 18C.
 ','Blonde Ale, Scottish Light 60/-, Scottish Heavy 70/-, Scottish Export 80/-, Mild, Northern English Brown, Robust Porter, English IPA, English Barleywine',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(92,'Wyeast - British Ale II','Ale','Liquid',0.125,'false','Wyeast Labs','1335',17.0,24.0,'High',75.0,'Typical of British and Canadian Ale fermentation profile with good flocculation and malty flavor characteristics, crisp finish, clean, fairly dry.
 ','Ordinary/Special Bitters, ESB, Northern English Brown, Brown Porter, Dry Stout, English IPA, English Barley Wine, Foreign Extra Stout, Cream Ale, Irish Red Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(93,'Wyeast - Budvar','Lager','Liquid',0.125,'false','','2000',9.0,13.0,'Medium',73.0,'Nice malty nose, subtle fruit. Rich malt profile on palate. Finishes malty but dry, well balanced, crisp. Hop character comes through in finish.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(94,'Wyeast - California Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2112',14.0,20.0,'High',69.0,'Suited to produce 19th century style West Coast beer. Retains lager characteristics at temperatures up to 18 C (65 F), and produces malty, brilliantly clear beers. This strain is not recommended for cold temperature fermentation.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(95,'Wyeast - Czech Pils','Lager','Liquid',0.125,'false','Wyeast Labs','2278',10.0,14.0,'Medium',72.0,'Classic pilsner strain from the home of pilsners for a dry, but malty finish. The perfect choice for pilsners and all malt beers. Sulfur produced during fermentation can be reduced with warmer fermentation temperatures (58 F) and will dissipate with conditioning.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(96,'Wyeast - Danish Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2042',8.0,13.0,'Low',75.0,'Rich, Dortmund style, crisp, dry finish. Soft profile accentuates hop characteristics.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(97,'Wyeast - European Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1338',16.0,22.0,'High',69.0,'Full-bodied complex strain finishing very malty with full bodied profile, very desirable in English Browns and Porters. Produces a dense, rocky head during fermentation. This strain can be a slow starter and can be slow to attenuate. May continue to produce CO2 for an extended period after packaging or collection, while in refrigerated storage
 ','Altbier, Southern English Brown, Baltic Porter, Sweet Stout',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(98,'Wyeast - Forbidden Fruit','Ale','Liquid',0.125,'false','Wyeast Labs','3463',17.0,24.0,'Low',74.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(99,'Wyeast - German Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1007',13.0,20.0,'Low',76.0,'True top-cropping yeast, low ester formation, broad temperature range affects styles. Cold fermentation will produce lager characteristics including sulfur production. Fermentation at higher temperatures may produce some mild fruitiness. Generally, yeast remains significantly in suspension. Beers mature rapidly, even when cold fermentation is used. Low or no detectable diacetyl.
 ','Kolsch, American Wheat, American Rye, North German Altbier, Dusseldorf Altbier, Berliner Weisse',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(100,'Wyeast - German Wheat','Ale','Liquid',0.125,'false','Wyeast Labs','3333',17.0,24.0,'High',73.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(101,'Wyeast - Irish Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1084',16.0,22.0,'Medium',73.0,'This yeast ferments extremely well in dark worts. Beers fermented in the lower temperature range produce dry and crisp beers to fruity beers with nice complexity using fermentation temperatures above 18C.
 ','Scottish Light 60/-, Scottish Heavy 70/-, Scottish Export 80/-, Irish Red Ale, Strong Scotch Ale, American Amber Ale, Robust Porter, Baltic Porter, Dry Stout, Sweet Stout, Oatmeal Stout, Foreign Extra Stout, Imperial IPA, American Barleywine, Spice/Herb/Vegetable Beer, Other Smoked Beer, Wood-Aged Beer',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(102,'Wyeast - Kolsch','Ale','Liquid',0.125,'false','Wyeast Labs','2565',13.0,21.0,'Low',75.0,'True top croppint yeast similar to Alt strains. Produces slightly more fruity/winey characteristics. Fruitiness increases with temperature. Low or no detectable diacetyl production. Also ferments well at cold temperatures (13-16C). Used to produce quick-conditioning pseudo-lager beers. Requires filtration or additional settling time to produce bright beers.
 ','Kolsch, American Wheat/Rye Ale, Altbier, Cream Ale, Berlinerweisse, Spiced/Herb/Vegetable Ale, Fruit Beer',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(103,'Wyeast - Lactobacillus','Ale','Liquid',0.125,'false','Wyeast Labs','5335',15.0,35.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(104,'Wyeast - London Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1028',15.0,22.0,'Low',75.0,'Rich with a dry finish, minerally profile, bold and crisp, with some fruitiness. Often used for higher gravity ales and when a high level of attenuation is desired for the style.
 ','Mild, Northern English Brown Ale, Brown Porter, Robust Porter, Dry Stout, Foreign Extra Stout, Russian Imperial Stout, Old Ale, English Barleywine',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(105,'Wyeast - London Ale III','Ale','Liquid',0.125,'false','Wyeast Labs','1318',18.0,23.0,'High',73.0,'From traditional London brewery with great malt and hop profile. True top cropping strain, fruity, very light, soft balance palate, finishes slightly sweet.
 ','Ordinary/Special Bitter, ESB, Southern English Brown, English Pale ale and IPA, Mild Ale, Sweet Stout, Oatmeal Stout, Strong/Old Ale, English Barley Wine, American Amber Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(106,'Wyeast - London ESB Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1968',18.0,22.0,'Very High',69.0,'This extremely flocculent yeast produces distincly malty beers. Attenuation levels are typically less than most other yeast strains making a slightly sweeter finish. Ales produced with this strain tend to be fruity, increasingly so with higher fermentation temperatures (21-23C). Diacetyl production is noticeable and a thorough rest is necessary. A very good cask conditioned ale strain due to thorough flocculation. Bright beers easily achieved with days without filtration.
 ','Ordinary/Special Bitters, ESB, Mild Ale, Southern English Brown, English IPA, Strong/Old Ale, English Barley Wine, Wood Aged Ale, Spiced/Herb/Vegetable Ale, Fruit Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(107,'Wyeast - Northwest Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1332',18.0,24.0,'High',69.0,'One of the classic ale strains from a Northwest US Brewery. Produces malty and mildly fruity ale with a good depth and complexity.
 ','Any American Ale, Blonde Ale, Spiced/Herb/Vegetable Ale, Fruit Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(108,'Wyeast - Octoberfest Lager Blend','Lager','Liquid',0.125,'false','Wyeast Labs','2633',9.0,14.0,'Medium',75.0,'Designed to produce a rich, malty, complex and full-bodied Octoberfest beer. Attenuates well while still leaving plenty of malt character and mouthfeel. Low in sulfur production.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(109,'Wyeast - Pediococcus','Ale','Liquid',0.125,'false','Wyeast Labs','5733',15.0,35.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(110,'Wyeast - Pilsen Lager','Lager','Liquid',0.125,'false','Wyeast Labs','2007',9.0,13.0,'Medium',73.0,'A classic American pilsner strain, smooth, malty palate.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(111,'Wyeast - Ringwood Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1187',18.0,23.0,'High',70.0,'Unique fermentation and flavor characteristics. Distinct fruit ester and high flocculation provide a malty complex profile, also clears well. Thorough diacetyl rest is recommended after fermentation is complete.
 ','American Brown Ale, Mild, Southern English Brown Ale, Robust Porter, Baltic Porter, Sweet Stout, Oatmeal Stout, American Stout, American IPA, Fruit Beer',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(112,'Wyeast - Scottish Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1728',13.0,24.0,'High',71.0,'Ideally suited for Scottish ales, and high gravity ales of all types. Can be estery with warm fermentation temperatures.
 ','All Scottish Ales, Foreign Extra Stout, Imperial Stout, Imperial IPA, American Barley Wine, Christmas/Winter Ale, Baltic Porter, Wood Aged Ale, Smoked Ale',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(113,'Wyeast - Thames Valley Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1275',16.0,22.0,'Medium',77.0,'Produces classic British bitters, rich complex flavor profile, clean, light malt character, low fruitiness, low esters, well balanced.
 ','Ordinary/Special Bitter, ESB, Northern English Brown, Robust Porter, Dry Stout, Foreign Extra Stout',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(114,'Wyeast - Trappist High Gravity','Ale','Liquid',0.125,'false','Wyeast Labs','3787',18.0,25.0,'Medium',76.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(115,'Wyeast - Urquell','Lager','Liquid',0.125,'false','Wyeast Labs','2001',9.0,13.0,'Medium',74.0,'Mild fruit/floral aroma. Very dry and clean on palate with full mouthfeel and nice subtle malt character. Very clean and neutral finish.','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(116,'Wyeast - Weihenstephan Weizen','Ale','Liquid',0.125,'false','Wyeast Labs','3068',18.0,24.0,'Low',75.0,'','',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(117,'Wyeast - Whitbread Ale','Ale','Liquid',0.125,'false','Wyeast Labs','1099',18.0,24.0,'Medium',70.0,'Very clean, crisp flavor characteristics. Low fruitiness and mild ester production. Slightly citrus-like with cool (15-19C) fermentation. Versatile yeast, which produces many beer styles allowing malt and hop character to dominate the beer profile. Flocculation improves with dark malts in grain bill. Normally requires filtration for bright beers.
 ','Everything :)',0,0,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(118,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(119,'WLP810 - San Francisco Lager Yeast','Lager','Liquid',0.035,'false','White Labs','810',14.0,18.0,'High',67.0,'This yeast is used to produce the "California Common" style beer. A unique lager strain which has the ability to ferment up to 65 degrees while retaining lager characteristics. Can also be fermented down to 50 degrees for production of marzens, pilsners and other style lagers.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(120,'WLP002 - English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','002',18.0,20.0,'Very High',66.0,'A classic ESB strain from one of England''s largest independent breweries. This yeast is best suited for English style ales including milds, bitters, porters, and English style stouts. This yeast will leave a beer very clear, and will leave some residual sweetness.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(121,'WLP028 - Edinburgh Scottish Ale Yeast','Ale','Liquid',0.035,'false','White Labs','028',18.0,21.0,'Medium',72.0,'Scotland is famous for its malty, strong ales. This yeast can reproduce complex, flavorful Scottish style ales. This yeast can be an everyday strain, similar to WLP001. Hop character is not muted with this strain, as it is with WLP002.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(122,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(123,'WLP013 - London Ale Yeast','Ale','Liquid',0.035,'false','White Labs','013',19.0,22.0,'Medium',71.0,'Dry, malty ale yeast. Provides a complex, oakey ester character to your beer. Hop bitterness comes through well. This yeast is well suited for classic British pale ales, bitters, and stouts. Does not flocculate as much as WLP002 and WLP005.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(124,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(125,'WLP002 - English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','002',18.0,20.0,'Very High',66.0,'A classic ESB strain from one of England''s largest independent breweries. This yeast is best suited for English style ales including milds, bitters, porters, and English style stouts. This yeast will leave a beer very clear, and will leave some residual sweetness.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(126,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(127,'WLP090 - San Diego Super Yeast','Ale','Liquid',0.011,0,'White Labs','090',18.0,20.0,'High',80.0,'A super clean, super fast fermenting strain. A low ester-producing strain that results in a balanced, neutral flavor and aroma profile. Alcohol-tolerant and very versatile for a wide variety of styles. Similar to WLP001 but it generall ferments faster.','',0,10,0,-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(128,'WLP300 - Hefeweizen Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','300',20.0,22.0,'Low',74.0,'This famous German yeast is a strain used in the production of traditional, authentic wheat beers. It produces the banana and clove nose traditionally associated with German wheat beers and leaves the desired cloudy look of traditional German wheat beers.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(129,'WLP565 - Belgian Saison I Yeast','Ale','Liquid',0.035,'false','White Labs','565',20.0,24.0,'Medium',70.0,'Classic Saison yeast from Wallonia. It produces earthy, peppery, and spicy notes. Slightly sweet. With high gravity Saisons, brewers may wish to dry the beer with an alternate yeast added after 75% fermentation.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(130,'WLP011 - European Ale Yeast','Ale','Liquid',0.035,'false','White Labs','011',18.0,21.0,'Medium',67.0,'Malty, Northern European-origin ale yeast. Low ester production, giving a clean profile. Little to no sulfur production. Low attenuation helps to contribute to the malty character. Good for Alt, Kolsch, malty English ales, and fruit beers.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(131,'WLP630 - Berliner Weisse Blend','Ale','Liquid',0.0350002722816,'false','White Labs','630',20.0,22.0,'Medium',75.0,'A blend of traditional German Weizen yeast and Lactobacillus to create a subtle, tart, drinkable beer. Can take several months to develop tart character. Perfect for traditional Berliner Weisse.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(132,'WLP630 - Berliner Weisse Blend','Ale','Liquid',0.0350002722816,'false','White Labs','630',20.0,22.0,'Medium',75.0,'A blend of traditional German Weizen yeast and Lactobacillus to create a subtle, tart, drinkable beer. Can take several months to develop tart character. Perfect for traditional Berliner Weisse.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(133,'WLP645 - Brettanomyces clausenii','Ale','Liquid',0.0350002722816,'false','White Labs','645',0.0,32.0,'Medium',75.0,'Low intensity Brett character. Originally isolated from strong English stock beer, in the early 20th century. The Brett flavors produced are more subtle than WLP650 and WLP653. More aroma than flavor contribution. Fruity, pineapple like aroma. B. claussenii is closely related to B. anomalus.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(134,'WLP650 - Brettanomyces bruxellensis','Ale','Liquid',0.0350002722816,'false','White Labs','650',0.0,32.0,'Medium',75.0,'','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(135,'WLP653 - Brettanomyces lambicus','Ale','Liquid',0.0350002722816,'false','White Labs','653',0.0,32.0,'Medium',75.0,'High intensity Brett character. Defines the "Brett character": Horsey, smoky and spicy flavors. As the name suggests, this strain is found most often in Lambic style beers, which are spontaneously fermented beers. Also found in Flanders and sour brown style beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(136,'WLP655 - Belgian Sour Mix 1','Ale','Liquid',0.0350002722816,'false','White Labs','655',0.0,32.0,'Medium',75.0,'A unique blend perfect for Belgian style beers. Includes Brettanomyces, Saccharomyces, and the bacterial strains Lactobacillus and Pediococcus.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(137,'WLP670 - American Farmhouse Blend','Ale','Liquid',0.0350002722816,'false','White Labs','670',20.0,22.0,'Medium',79.0,'Inspired by local American brewers crafting semi- traditional Belgian-style ales. This blend creates a complex flavor profile with a moderate level of sourness. It consists of a traditional farmhouse yeast strain and Brettanomyces. Great yeast for farmhouse ales, Saisons, and other Belgian-inspired beers.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(138,'WLP675 - Malolactic Bacteria','Ale','Liquid',0.0350002722816,'false','White Labs','675',0.0,32.0,'Medium',75.0,'Malolactic fermentation is the conversion of malic acid to lactic acid by bacteria from the lactic acid bacteria family.  Lactic acid is less acidic than malic acid, which in turn decreases acidity and helps to soften and/or round out some of the flavors in wine.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(139,'WLP677 - Lactobacillus Bacteria','Ale','Liquid',0.0350002722816,'false','White Labs','677',0.0,32.0,'Medium',75.0,'This lactic acid bacteria produces moderate levels of acidity and sour flavors found in lambics, Berliner Weiss, sour brown ale and gueze.','',0,10,'false',-1,-1,0,1,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(140,'WLP500 - Trappist Ale Yeast','Ale','Liquid',0.035,'false','White Labs','500',18.0,22.0,'Medium',77.0,'From one of the few remaining Trappist breweries remaining in the world, this yeast produces the distinctive fruitiness and plum characteristics. Excellent yeast for high gravity beers, Belgian ales, dubbels and trippels.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(141,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(142,'WLP830 - German Lager Yeast','Lager','Liquid',0.035,'false','White Labs','830',10.0,13.0,'Medium',76.0,'This yeast is one of the most widely used lager yeasts in the world. Very malty and clean, great for all German lagers, Pilsner, Oktoberfest, and Marzen.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(143,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(144,'WLP810 - San Francisco Lager Yeast','Lager','Liquid',0.035,'false','White Labs','810',14.0,18.0,'High',67.0,'This yeast is used to produce the "California Common" style beer. A unique lager strain which has the ability to ferment up to 65 degrees while retaining lager characteristics. Can also be fermented down to 50 degrees for production of marzens, pilsners and other style lagers.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(145,'WLP002 - English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','002',18.0,20.0,'Very High',66.0,'A classic ESB strain from one of England''s largest independent breweries. This yeast is best suited for English style ales including milds, bitters, porters, and English style stouts. This yeast will leave a beer very clear, and will leave some residual sweetness.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(146,'WLP028 - Edinburgh Scottish Ale Yeast','Ale','Liquid',0.035,'false','White Labs','028',18.0,21.0,'Medium',72.0,'Scotland is famous for its malty, strong ales. This yeast can reproduce complex, flavorful Scottish style ales. This yeast can be an everyday strain, similar to WLP001. Hop character is not muted with this strain, as it is with WLP002.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(147,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(148,'WLP013 - London Ale Yeast','Ale','Liquid',0.035,'false','White Labs','013',19.0,22.0,'Medium',71.0,'Dry, malty ale yeast. Provides a complex, oakey ester character to your beer. Hop bitterness comes through well. This yeast is well suited for classic British pale ales, bitters, and stouts. Does not flocculate as much as WLP002 and WLP005.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(149,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(150,'WLP002 - English Ale Yeast','Ale','Liquid',0.035,'false','White Labs','002',18.0,20.0,'Very High',66.0,'A classic ESB strain from one of England''s largest independent breweries. This yeast is best suited for English style ales including milds, bitters, porters, and English style stouts. This yeast will leave a beer very clear, and will leave some residual sweetness.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(151,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(152,'WLP300 - Hefeweizen Ale Yeast','Wheat','Liquid',0.035,'false','White Labs','300',20.0,22.0,'Low',74.0,'This famous German yeast is a strain used in the production of traditional, authentic wheat beers. It produces the banana and clove nose traditionally associated with German wheat beers and leaves the desired cloudy look of traditional German wheat beers.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(153,'WLP565 - Belgian Saison I Yeast','Ale','Liquid',0.035,'false','White Labs','565',20.0,24.0,'Medium',70.0,'Classic Saison yeast from Wallonia. It produces earthy, peppery, and spicy notes. Slightly sweet. With high gravity Saisons, brewers may wish to dry the beer with an alternate yeast added after 75% fermentation.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(154,'WLP630 - Berliner Weisse Blend','Ale','Liquid',0.0350002722816,'false','White Labs','630',20.0,22.0,'Medium',75.0,'A blend of traditional German Weizen yeast and Lactobacillus to create a subtle, tart, drinkable beer. Can take several months to develop tart character. Perfect for traditional Berliner Weisse.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(155,'WLP500 - Trappist Ale Yeast','Ale','Liquid',0.035,'false','White Labs','500',18.0,22.0,'Medium',77.0,'From one of the few remaining Trappist breweries remaining in the world, this yeast produces the distinctive fruitiness and plum characteristics. Excellent yeast for high gravity beers, Belgian ales, dubbels and trippels.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "yeast" (id,name,ytype,form,amount,amount_is_weight,laboratory,product_id,min_temperature,max_temperature,flocculation,attenuation,notes,best_for,times_cultured,max_reuse,add_to_secondary,display_unit,display_scale,deleted,display,folder) VALUES(156,'WLP001 - California Ale Yeast','Ale','Liquid',0.035,'false','White Labs','001',20.0,23.0,'Medium',75.0,'This yeast is famous for its clean flavors, balance and ability to be used in almost any style ale. It accentuates the hop flavors and is extremely versatile.','',0,10,'false',-1,-1,0,0,'');
INSERT INTO "water" (id,name,amount,calcium,bicarbonate,sulfate,chloride,sodium,magnesium,ph,notes,deleted,display,folder) VALUES(1,'Burton on Trent, UK',20.0,295.0,300.0,725.0,25.0,55.0,45.0,8.0,'
Use for distinctive pale ales strongly hopped.  Very hard water accentuates the hops flavor. Example: Bass Ale
',0,1,'');
INSERT INTO "bt_equipment" (id,equipment_id) VALUES(1,1);
INSERT INTO "bt_equipment" (id,equipment_id) VALUES(2,2);
INSERT INTO "bt_equipment" (id,equipment_id) VALUES(3,3);
INSERT INTO "bt_equipment" (id,equipment_id) VALUES(4,4);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(1,1);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(2,2);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(3,3);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(4,4);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(5,5);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(6,6);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(7,7);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(8,8);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(9,9);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(10,10);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(11,11);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(12,12);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(13,13);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(14,14);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(15,15);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(16,16);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(17,17);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(18,18);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(19,19);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(20,20);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(21,21);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(22,22);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(23,23);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(24,24);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(25,25);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(26,26);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(27,27);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(28,28);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(29,29);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(30,30);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(31,31);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(32,32);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(33,33);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(34,34);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(35,35);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(36,36);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(37,37);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(38,38);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(39,39);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(40,40);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(41,41);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(42,42);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(43,43);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(44,44);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(45,45);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(46,46);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(47,47);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(48,48);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(49,49);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(50,50);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(51,51);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(52,52);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(53,53);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(54,54);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(55,55);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(56,56);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(57,57);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(58,58);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(59,59);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(60,60);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(61,61);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(62,62);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(63,63);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(64,64);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(65,65);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(66,66);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(67,67);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(68,68);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(69,69);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(70,70);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(71,71);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(72,72);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(73,73);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(74,74);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(75,75);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(76,76);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(77,77);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(78,78);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(79,79);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(80,80);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(81,81);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(82,82);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(83,83);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(84,84);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(85,85);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(86,86);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(87,87);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(88,88);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(89,89);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(90,90);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(91,91);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(92,92);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(93,93);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(94,94);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(95,95);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(96,96);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(97,97);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(98,98);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(99,99);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(100,100);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(101,101);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(102,102);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(103,103);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(104,104);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(105,105);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(106,106);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(107,107);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(108,108);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(109,109);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(110,110);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(111,111);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(112,112);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(113,113);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(114,114);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(115,115);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(116,116);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(117,117);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(118,118);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(119,119);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(120,120);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(121,121);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(122,122);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(123,123);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(124,124);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(125,125);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(126,126);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(127,127);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(128,128);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(129,129);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(130,130);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(131,131);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(132,132);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(133,133);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(134,134);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(135,135);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(136,136);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(137,137);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(138,138);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(139,139);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(140,140);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(141,141);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(142,142);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(143,143);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(144,144);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(145,145);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(146,146);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(147,147);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(148,148);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(149,149);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(150,150);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(151,151);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(152,152);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(153,153);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(154,154);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(155,155);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(156,156);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(157,157);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(158,158);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(159,159);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(160,160);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(161,161);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(162,162);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(163,163);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(164,164);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(165,165);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(166,166);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(167,167);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(168,168);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(169,169);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(170,170);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(171,171);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(172,172);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(173,173);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(174,174);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(175,175);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(176,176);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(177,177);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(178,178);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(179,179);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(180,180);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(181,181);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(182,182);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(183,183);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(184,184);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(185,185);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(186,186);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(187,187);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(188,188);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(189,189);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(190,190);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(191,191);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(192,192);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(193,193);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(194,194);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(195,195);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(196,323);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(197,324);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(198,325);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(199,326);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(200,327);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(201,328);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(202,329);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(203,330);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(204,331);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(205,332);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(206,333);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(207,334);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(208,335);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(209,336);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(210,337);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(211,338);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(212,339);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(213,340);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(214,341);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(215,342);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(216,343);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(217,344);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(218,345);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(219,346);
INSERT INTO "bt_fermentable" (id,fermentable_id) VALUES(220,347);
INSERT INTO "bt_hop" (id,hop_id) VALUES(1,1);
INSERT INTO "bt_hop" (id,hop_id) VALUES(2,2);
INSERT INTO "bt_hop" (id,hop_id) VALUES(3,3);
INSERT INTO "bt_hop" (id,hop_id) VALUES(4,4);
INSERT INTO "bt_hop" (id,hop_id) VALUES(5,5);
INSERT INTO "bt_hop" (id,hop_id) VALUES(6,6);
INSERT INTO "bt_hop" (id,hop_id) VALUES(7,7);
INSERT INTO "bt_hop" (id,hop_id) VALUES(8,8);
INSERT INTO "bt_hop" (id,hop_id) VALUES(9,9);
INSERT INTO "bt_hop" (id,hop_id) VALUES(10,10);
INSERT INTO "bt_hop" (id,hop_id) VALUES(11,11);
INSERT INTO "bt_hop" (id,hop_id) VALUES(12,12);
INSERT INTO "bt_hop" (id,hop_id) VALUES(13,13);
INSERT INTO "bt_hop" (id,hop_id) VALUES(14,14);
INSERT INTO "bt_hop" (id,hop_id) VALUES(15,15);
INSERT INTO "bt_hop" (id,hop_id) VALUES(16,16);
INSERT INTO "bt_hop" (id,hop_id) VALUES(17,17);
INSERT INTO "bt_hop" (id,hop_id) VALUES(18,18);
INSERT INTO "bt_hop" (id,hop_id) VALUES(19,19);
INSERT INTO "bt_hop" (id,hop_id) VALUES(20,20);
INSERT INTO "bt_hop" (id,hop_id) VALUES(21,21);
INSERT INTO "bt_hop" (id,hop_id) VALUES(22,22);
INSERT INTO "bt_hop" (id,hop_id) VALUES(23,23);
INSERT INTO "bt_hop" (id,hop_id) VALUES(24,24);
INSERT INTO "bt_hop" (id,hop_id) VALUES(25,25);
INSERT INTO "bt_hop" (id,hop_id) VALUES(26,26);
INSERT INTO "bt_hop" (id,hop_id) VALUES(27,27);
INSERT INTO "bt_hop" (id,hop_id) VALUES(28,28);
INSERT INTO "bt_hop" (id,hop_id) VALUES(29,29);
INSERT INTO "bt_hop" (id,hop_id) VALUES(30,30);
INSERT INTO "bt_hop" (id,hop_id) VALUES(31,31);
INSERT INTO "bt_hop" (id,hop_id) VALUES(32,32);
INSERT INTO "bt_hop" (id,hop_id) VALUES(33,33);
INSERT INTO "bt_hop" (id,hop_id) VALUES(34,34);
INSERT INTO "bt_hop" (id,hop_id) VALUES(35,35);
INSERT INTO "bt_hop" (id,hop_id) VALUES(36,36);
INSERT INTO "bt_hop" (id,hop_id) VALUES(37,37);
INSERT INTO "bt_hop" (id,hop_id) VALUES(38,38);
INSERT INTO "bt_hop" (id,hop_id) VALUES(39,39);
INSERT INTO "bt_hop" (id,hop_id) VALUES(40,40);
INSERT INTO "bt_hop" (id,hop_id) VALUES(41,41);
INSERT INTO "bt_hop" (id,hop_id) VALUES(42,42);
INSERT INTO "bt_hop" (id,hop_id) VALUES(43,43);
INSERT INTO "bt_hop" (id,hop_id) VALUES(44,44);
INSERT INTO "bt_hop" (id,hop_id) VALUES(45,45);
INSERT INTO "bt_hop" (id,hop_id) VALUES(46,46);
INSERT INTO "bt_hop" (id,hop_id) VALUES(47,47);
INSERT INTO "bt_hop" (id,hop_id) VALUES(48,48);
INSERT INTO "bt_hop" (id,hop_id) VALUES(49,49);
INSERT INTO "bt_hop" (id,hop_id) VALUES(50,50);
INSERT INTO "bt_hop" (id,hop_id) VALUES(51,51);
INSERT INTO "bt_hop" (id,hop_id) VALUES(52,52);
INSERT INTO "bt_hop" (id,hop_id) VALUES(53,53);
INSERT INTO "bt_hop" (id,hop_id) VALUES(54,54);
INSERT INTO "bt_hop" (id,hop_id) VALUES(55,55);
INSERT INTO "bt_hop" (id,hop_id) VALUES(56,56);
INSERT INTO "bt_hop" (id,hop_id) VALUES(57,57);
INSERT INTO "bt_hop" (id,hop_id) VALUES(58,58);
INSERT INTO "bt_hop" (id,hop_id) VALUES(59,59);
INSERT INTO "bt_hop" (id,hop_id) VALUES(60,60);
INSERT INTO "bt_hop" (id,hop_id) VALUES(61,61);
INSERT INTO "bt_hop" (id,hop_id) VALUES(62,62);
INSERT INTO "bt_misc" (id,misc_id) VALUES(1,1);
INSERT INTO "bt_misc" (id,misc_id) VALUES(2,2);
INSERT INTO "bt_misc" (id,misc_id) VALUES(3,3);
INSERT INTO "bt_misc" (id,misc_id) VALUES(4,4);
INSERT INTO "bt_misc" (id,misc_id) VALUES(5,5);
INSERT INTO "bt_misc" (id,misc_id) VALUES(6,6);
INSERT INTO "bt_misc" (id,misc_id) VALUES(7,7);
INSERT INTO "bt_misc" (id,misc_id) VALUES(8,8);
INSERT INTO "bt_misc" (id,misc_id) VALUES(9,9);
INSERT INTO "bt_misc" (id,misc_id) VALUES(10,10);
INSERT INTO "bt_misc" (id,misc_id) VALUES(11,11);
INSERT INTO "bt_misc" (id,misc_id) VALUES(12,12);
INSERT INTO "bt_misc" (id,misc_id) VALUES(13,13);
INSERT INTO "bt_misc" (id,misc_id) VALUES(14,14);
INSERT INTO "bt_misc" (id,misc_id) VALUES(15,15);
INSERT INTO "bt_misc" (id,misc_id) VALUES(16,16);
INSERT INTO "bt_misc" (id,misc_id) VALUES(17,17);
INSERT INTO "bt_misc" (id,misc_id) VALUES(18,18);
INSERT INTO "bt_misc" (id,misc_id) VALUES(19,19);
INSERT INTO "bt_misc" (id,misc_id) VALUES(20,20);
INSERT INTO "bt_misc" (id,misc_id) VALUES(21,21);
INSERT INTO "bt_misc" (id,misc_id) VALUES(22,22);
INSERT INTO "bt_misc" (id,misc_id) VALUES(23,23);
INSERT INTO "bt_misc" (id,misc_id) VALUES(24,24);
INSERT INTO "bt_misc" (id,misc_id) VALUES(25,25);
INSERT INTO "bt_misc" (id,misc_id) VALUES(26,26);
INSERT INTO "bt_misc" (id,misc_id) VALUES(27,27);
INSERT INTO "bt_misc" (id,misc_id) VALUES(28,28);
INSERT INTO "bt_misc" (id,misc_id) VALUES(29,29);
INSERT INTO "bt_misc" (id,misc_id) VALUES(30,30);
INSERT INTO "bt_misc" (id,misc_id) VALUES(31,31);
INSERT INTO "bt_misc" (id,misc_id) VALUES(32,32);
INSERT INTO "bt_misc" (id,misc_id) VALUES(33,33);
INSERT INTO "bt_misc" (id,misc_id) VALUES(34,34);
INSERT INTO "bt_misc" (id,misc_id) VALUES(35,35);
INSERT INTO "bt_misc" (id,misc_id) VALUES(36,36);
INSERT INTO "bt_misc" (id,misc_id) VALUES(37,37);
INSERT INTO "bt_misc" (id,misc_id) VALUES(38,38);
INSERT INTO "bt_misc" (id,misc_id) VALUES(39,39);
INSERT INTO "bt_misc" (id,misc_id) VALUES(40,40);
INSERT INTO "bt_misc" (id,misc_id) VALUES(41,41);
INSERT INTO "bt_misc" (id,misc_id) VALUES(42,42);
INSERT INTO "bt_misc" (id,misc_id) VALUES(43,43);
INSERT INTO "bt_misc" (id,misc_id) VALUES(44,44);
INSERT INTO "bt_misc" (id,misc_id) VALUES(45,45);
INSERT INTO "bt_misc" (id,misc_id) VALUES(46,46);
INSERT INTO "bt_misc" (id,misc_id) VALUES(47,47);
INSERT INTO "bt_misc" (id,misc_id) VALUES(48,48);
INSERT INTO "bt_misc" (id,misc_id) VALUES(49,49);
INSERT INTO "bt_misc" (id,misc_id) VALUES(50,50);
INSERT INTO "bt_misc" (id,misc_id) VALUES(51,51);
INSERT INTO "bt_misc" (id,misc_id) VALUES(52,52);
INSERT INTO "bt_misc" (id,misc_id) VALUES(53,53);
INSERT INTO "bt_misc" (id,misc_id) VALUES(54,54);
INSERT INTO "bt_misc" (id,misc_id) VALUES(55,55);
INSERT INTO "bt_misc" (id,misc_id) VALUES(56,56);
INSERT INTO "bt_misc" (id,misc_id) VALUES(57,57);
INSERT INTO "bt_misc" (id,misc_id) VALUES(58,58);
INSERT INTO "bt_misc" (id,misc_id) VALUES(59,59);
INSERT INTO "bt_misc" (id,misc_id) VALUES(60,60);
INSERT INTO "bt_misc" (id,misc_id) VALUES(61,61);
INSERT INTO "bt_misc" (id,misc_id) VALUES(62,62);
INSERT INTO "bt_misc" (id,misc_id) VALUES(63,63);
INSERT INTO "bt_misc" (id,misc_id) VALUES(64,64);
INSERT INTO "bt_misc" (id,misc_id) VALUES(65,65);
INSERT INTO "bt_misc" (id,misc_id) VALUES(66,66);
INSERT INTO "bt_misc" (id,misc_id) VALUES(67,67);
INSERT INTO "bt_misc" (id,misc_id) VALUES(68,68);
INSERT INTO "bt_misc" (id,misc_id) VALUES(69,69);
INSERT INTO "bt_misc" (id,misc_id) VALUES(70,70);
INSERT INTO "bt_misc" (id,misc_id) VALUES(71,71);
INSERT INTO "bt_misc" (id,misc_id) VALUES(72,72);
INSERT INTO "bt_misc" (id,misc_id) VALUES(73,73);
INSERT INTO "bt_misc" (id,misc_id) VALUES(74,74);
INSERT INTO "bt_misc" (id,misc_id) VALUES(75,75);
INSERT INTO "bt_misc" (id,misc_id) VALUES(76,76);
INSERT INTO "bt_misc" (id,misc_id) VALUES(77,77);
INSERT INTO "bt_misc" (id,misc_id) VALUES(78,78);
INSERT INTO "bt_misc" (id,misc_id) VALUES(79,79);
INSERT INTO "bt_misc" (id,misc_id) VALUES(80,80);
INSERT INTO "bt_misc" (id,misc_id) VALUES(81,81);
INSERT INTO "bt_misc" (id,misc_id) VALUES(82,82);
INSERT INTO "bt_misc" (id,misc_id) VALUES(83,83);
INSERT INTO "bt_misc" (id,misc_id) VALUES(84,84);
INSERT INTO "bt_misc" (id,misc_id) VALUES(85,85);
INSERT INTO "bt_misc" (id,misc_id) VALUES(86,86);
INSERT INTO "bt_misc" (id,misc_id) VALUES(87,87);
INSERT INTO "bt_misc" (id,misc_id) VALUES(88,88);
INSERT INTO "bt_misc" (id,misc_id) VALUES(89,89);
INSERT INTO "bt_misc" (id,misc_id) VALUES(90,90);
INSERT INTO "bt_misc" (id,misc_id) VALUES(91,91);
INSERT INTO "bt_style" (id,style_id) VALUES(1,1);
INSERT INTO "bt_style" (id,style_id) VALUES(2,2);
INSERT INTO "bt_style" (id,style_id) VALUES(3,3);
INSERT INTO "bt_style" (id,style_id) VALUES(4,4);
INSERT INTO "bt_style" (id,style_id) VALUES(5,5);
INSERT INTO "bt_style" (id,style_id) VALUES(6,6);
INSERT INTO "bt_style" (id,style_id) VALUES(7,7);
INSERT INTO "bt_style" (id,style_id) VALUES(8,8);
INSERT INTO "bt_style" (id,style_id) VALUES(9,9);
INSERT INTO "bt_style" (id,style_id) VALUES(10,10);
INSERT INTO "bt_style" (id,style_id) VALUES(11,11);
INSERT INTO "bt_style" (id,style_id) VALUES(12,12);
INSERT INTO "bt_style" (id,style_id) VALUES(13,13);
INSERT INTO "bt_style" (id,style_id) VALUES(14,14);
INSERT INTO "bt_style" (id,style_id) VALUES(15,15);
INSERT INTO "bt_style" (id,style_id) VALUES(16,16);
INSERT INTO "bt_style" (id,style_id) VALUES(17,17);
INSERT INTO "bt_style" (id,style_id) VALUES(18,18);
INSERT INTO "bt_style" (id,style_id) VALUES(19,19);
INSERT INTO "bt_style" (id,style_id) VALUES(20,20);
INSERT INTO "bt_style" (id,style_id) VALUES(21,21);
INSERT INTO "bt_style" (id,style_id) VALUES(22,22);
INSERT INTO "bt_style" (id,style_id) VALUES(23,23);
INSERT INTO "bt_style" (id,style_id) VALUES(24,24);
INSERT INTO "bt_style" (id,style_id) VALUES(25,25);
INSERT INTO "bt_style" (id,style_id) VALUES(26,26);
INSERT INTO "bt_style" (id,style_id) VALUES(27,27);
INSERT INTO "bt_style" (id,style_id) VALUES(28,28);
INSERT INTO "bt_style" (id,style_id) VALUES(29,29);
INSERT INTO "bt_style" (id,style_id) VALUES(30,30);
INSERT INTO "bt_style" (id,style_id) VALUES(31,31);
INSERT INTO "bt_style" (id,style_id) VALUES(32,32);
INSERT INTO "bt_style" (id,style_id) VALUES(33,33);
INSERT INTO "bt_style" (id,style_id) VALUES(34,34);
INSERT INTO "bt_style" (id,style_id) VALUES(35,35);
INSERT INTO "bt_style" (id,style_id) VALUES(36,36);
INSERT INTO "bt_style" (id,style_id) VALUES(37,37);
INSERT INTO "bt_style" (id,style_id) VALUES(38,38);
INSERT INTO "bt_style" (id,style_id) VALUES(39,39);
INSERT INTO "bt_style" (id,style_id) VALUES(40,40);
INSERT INTO "bt_style" (id,style_id) VALUES(41,41);
INSERT INTO "bt_style" (id,style_id) VALUES(42,42);
INSERT INTO "bt_style" (id,style_id) VALUES(43,43);
INSERT INTO "bt_style" (id,style_id) VALUES(44,44);
INSERT INTO "bt_style" (id,style_id) VALUES(45,45);
INSERT INTO "bt_style" (id,style_id) VALUES(46,46);
INSERT INTO "bt_style" (id,style_id) VALUES(47,47);
INSERT INTO "bt_style" (id,style_id) VALUES(48,48);
INSERT INTO "bt_style" (id,style_id) VALUES(49,49);
INSERT INTO "bt_style" (id,style_id) VALUES(50,50);
INSERT INTO "bt_style" (id,style_id) VALUES(51,51);
INSERT INTO "bt_style" (id,style_id) VALUES(52,52);
INSERT INTO "bt_style" (id,style_id) VALUES(53,53);
INSERT INTO "bt_style" (id,style_id) VALUES(54,54);
INSERT INTO "bt_style" (id,style_id) VALUES(55,55);
INSERT INTO "bt_style" (id,style_id) VALUES(56,56);
INSERT INTO "bt_style" (id,style_id) VALUES(57,57);
INSERT INTO "bt_style" (id,style_id) VALUES(58,58);
INSERT INTO "bt_style" (id,style_id) VALUES(59,59);
INSERT INTO "bt_style" (id,style_id) VALUES(60,60);
INSERT INTO "bt_style" (id,style_id) VALUES(61,61);
INSERT INTO "bt_style" (id,style_id) VALUES(62,62);
INSERT INTO "bt_style" (id,style_id) VALUES(63,63);
INSERT INTO "bt_style" (id,style_id) VALUES(64,64);
INSERT INTO "bt_style" (id,style_id) VALUES(65,65);
INSERT INTO "bt_style" (id,style_id) VALUES(66,66);
INSERT INTO "bt_style" (id,style_id) VALUES(67,67);
INSERT INTO "bt_style" (id,style_id) VALUES(68,68);
INSERT INTO "bt_style" (id,style_id) VALUES(69,69);
INSERT INTO "bt_style" (id,style_id) VALUES(70,70);
INSERT INTO "bt_style" (id,style_id) VALUES(71,71);
INSERT INTO "bt_style" (id,style_id) VALUES(72,72);
INSERT INTO "bt_style" (id,style_id) VALUES(73,73);
INSERT INTO "bt_style" (id,style_id) VALUES(74,74);
INSERT INTO "bt_style" (id,style_id) VALUES(75,75);
INSERT INTO "bt_style" (id,style_id) VALUES(76,76);
INSERT INTO "bt_style" (id,style_id) VALUES(77,77);
INSERT INTO "bt_style" (id,style_id) VALUES(78,78);
INSERT INTO "bt_style" (id,style_id) VALUES(79,79);
INSERT INTO "bt_style" (id,style_id) VALUES(80,80);
INSERT INTO "bt_style" (id,style_id) VALUES(81,81);
INSERT INTO "bt_style" (id,style_id) VALUES(82,82);
INSERT INTO "bt_style" (id,style_id) VALUES(83,83);
INSERT INTO "bt_style" (id,style_id) VALUES(84,84);
INSERT INTO "bt_style" (id,style_id) VALUES(85,85);
INSERT INTO "bt_style" (id,style_id) VALUES(86,86);
INSERT INTO "bt_style" (id,style_id) VALUES(87,87);
INSERT INTO "bt_style" (id,style_id) VALUES(88,88);
INSERT INTO "bt_style" (id,style_id) VALUES(89,89);
INSERT INTO "bt_style" (id,style_id) VALUES(90,90);
INSERT INTO "bt_style" (id,style_id) VALUES(91,91);
INSERT INTO "bt_style" (id,style_id) VALUES(92,92);
INSERT INTO "bt_style" (id,style_id) VALUES(93,93);
INSERT INTO "bt_style" (id,style_id) VALUES(94,94);
INSERT INTO "bt_style" (id,style_id) VALUES(95,95);
INSERT INTO "bt_style" (id,style_id) VALUES(96,96);
INSERT INTO "bt_style" (id,style_id) VALUES(97,97);
INSERT INTO "bt_style" (id,style_id) VALUES(98,98);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(1,1);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(2,2);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(3,3);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(4,4);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(5,5);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(6,6);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(7,7);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(8,8);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(9,9);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(10,10);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(11,11);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(12,12);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(13,13);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(14,14);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(15,15);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(16,16);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(17,17);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(18,18);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(19,19);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(20,20);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(21,21);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(22,22);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(23,23);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(24,24);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(25,25);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(26,26);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(27,27);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(28,28);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(29,29);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(30,30);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(31,31);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(32,32);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(33,33);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(34,34);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(35,35);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(36,36);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(37,37);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(38,38);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(39,39);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(40,40);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(41,41);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(42,42);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(43,43);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(44,44);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(45,45);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(46,46);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(47,47);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(48,48);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(49,49);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(50,50);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(51,51);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(52,52);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(53,53);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(54,54);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(55,55);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(56,56);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(57,57);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(58,58);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(59,59);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(60,60);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(61,61);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(62,62);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(63,63);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(64,64);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(65,65);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(66,66);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(67,67);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(68,68);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(69,69);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(70,70);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(71,71);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(72,72);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(73,73);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(74,74);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(75,75);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(76,76);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(77,77);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(78,78);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(79,79);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(80,80);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(81,81);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(82,82);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(83,83);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(84,84);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(85,85);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(86,86);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(87,87);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(88,88);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(89,89);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(90,90);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(91,91);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(92,92);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(93,93);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(94,94);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(95,95);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(96,96);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(97,97);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(98,98);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(99,99);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(100,100);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(101,101);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(102,102);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(103,103);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(104,104);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(105,105);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(106,106);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(107,107);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(108,108);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(109,109);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(110,110);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(111,111);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(112,112);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(113,113);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(114,114);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(115,115);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(116,116);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(117,117);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(118,127);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(119,131);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(120,133);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(121,134);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(122,135);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(123,136);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(124,137);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(125,138);
INSERT INTO "bt_yeast" (id,yeast_id) VALUES(126,139);
INSERT INTO "bt_water" (id,water_id) VALUES(1,1);
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(1,'Single Step',20.0,'',20.0,74.0,7.0,4.08233133,0.3,'true',0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(2,'Single Step',20.0,'',20.0,74.0,7.0,4.08233133,0.3,'true',0,1,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(3,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,'true',0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(4,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,'true',0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(5,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,'true',0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(6,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(7,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(8,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(9,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(10,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(11,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(12,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(13,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(14,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(15,'',20.0,'',20.0,74.0,7.0,4.08233133,0.3,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(16,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(17,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(18,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(19,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(20,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(21,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(22,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(23,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(24,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(25,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(26,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(27,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(28,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(29,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mash" (id,name,grain_temp,notes,tun_temp,sparge_temp,ph,tun_weight,tun_specific_heat,equip_adjust,deleted,display,folder) VALUES(30,'',20.0,'',20.0,74.0,7.0,0.0,0.0,1,0,0,'');
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(1,'Conversion','Infusion',13.0123530075,66.6666666666667,60.0,0.0,0.0,78.2164818184723,0.0,-1,-1,-1,0,1,1,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(2,'Final Batch Sparge','Infusion',18.298198178975,74.0,15.0,0.0,81.7086690121162,81.7086690121162,0.0,-1,-1,-1,1,1,1,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(3,'Conversion','Infusion',12.42088241625,66.6666666666667,60.0,0.0,0.0,78.4256334006981,0.0,-1,-1,-1,0,1,2,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(4,'Final Batch Sparge','Infusion',18.298198178975,74.0,15.0,0.0,81.7086690121162,81.7086690121162,0.0,-1,-1,-1,0,1,2,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(5,'Final Batch Sparge','Infusion',17.95280144845,74.0,15.0,0.0,82.1758951878133,82.1758951878133,0.0,-1,-1,-1,0,1,1,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(6,'Conversion','Infusion',14.0474265420571,65.5555555555556,60.0,0.0,0.0,76.5144461396043,0.0,-1,-1,-1,0,1,3,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(7,'Final Batch Sparge','Infusion',17.3483571701074,74.0,15.0,0.0,83.0383079728803,83.0383079728803,0.0,-1,-1,-1,0,1,3,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(8,'Conversion','Infusion',14.4910294851034,66.1111111111111,60.0,0.0,0.0,77.0805820012648,0.0,-1,-1,-1,0,1,4,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(9,'Final Batch Sparge','Infusion',17.0893096224421,74.0,15.0,0.0,83.4265889465401,83.4265889465401,0.0,-1,-1,-1,0,1,4,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(10,'Conversion','Infusion',9.9071324033071,70.0,60.0,0.0,0.0,83.8497888529477,0.0,-1,-1,-1,0,1,5,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(11,'Final Batch Sparge','Infusion',19.7661342837824,74.0,15.0,0.0,79.9051256770247,79.9051256770247,0.0,-1,-1,-1,0,1,5,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(12,'Conversion','Infusion',13.6038235971852,67.7777777777778,60.0,0.0,0.0,75.10582951058,0.0,-1,-1,-1,0,1,6,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(13,'Final Batch Sparge','Infusion',17.6074047188388,74.0,15.0,0.0,81.4790013045723,81.4790013045723,0.0,-1,-1,-1,0,1,6,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(14,'Conversion','Infusion',13.0123530054137,66.6666666666667,60.0,0.0,0.0,73.8242985917293,0.0,-1,-1,-1,0,1,7,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(15,'Final Batch Sparge','Infusion',18.9889916403296,74.0,15.0,0.0,79.7287888778721,79.7287888778721,0.0,-1,-1,-1,1,1,7,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(16,'Conversion','Infusion',16.8569118498426,67.2222222222222,60.0,0.0,0.0,74.4650640511547,0.0,-1,-1,-1,0,1,8,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(17,'Final Batch Sparge','Infusion',15.7077227004944,74.0,15.0,0.0,84.3882586469109,84.3882586469109,0.0,-1,-1,-1,0,1,8,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(18,'Conversion','Infusion',14.1952941873921,67.7777777777778,60.0,0.0,0.0,75.10582951058,0.0,-1,-1,-1,0,1,9,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(19,'Final Batch Sparge','Infusion',18.1254998141694,74.0,15.0,0.0,80.7914043527883,80.7914043527883,0.0,-1,-1,-1,1,1,9,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(20,'Conversion','Infusion',16.5611765542176,65.0,90.0,0.0,0.0,71.9020022134532,0.0,-1,-1,-1,0,1,10,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(21,'Final Batch Sparge','Infusion',15.8804210657569,74.0,15.0,0.0,84.0950189329181,84.0950189329181,0.0,-1,-1,-1,0,1,10,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(22,'Final Batch Sparge','Infusion',17.9528014496684,74.0,15.0,0.0,81.0161937411323,81.0161937411323,0.0,-1,-1,-1,0,1,7,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(23,'Final Batch Sparge','Infusion',17.2620079889229,74.0,15.0,0.0,81.96032956483,81.96032956483,0.0,-1,-1,-1,0,1,9,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(24,'Conversion','Infusion',12.42088241625,66.6666666666667,0.0,0.0,0.0,73.8242985917293,0.0,-1,-1,-1,0,1,11,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(25,'Final Batch Sparge','Infusion',18.298198178975,74.0,15.0,0.0,80.5708580878186,80.5708580878186,0.0,-1,-1,-1,0,1,11,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(26,'Conversion','Infusion',15.5261030186173,63.8888888888889,60.0,0.0,0.0,70.6204712946025,0.0,-1,-1,-1,0,1,12,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(27,'Final Batch Sparge','Infusion',16.4848653447087,74.0,15.0,0.0,83.1170644231476,83.1170644231476,0.0,-1,-1,-1,0,1,12,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(28,'Conversion','Infusion',8.2805882775,65.0,60.0,0.0,0.0,71.9020022134532,0.0,-1,-1,-1,0,1,13,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(29,'Final Batch Sparge','Infusion',20.71597529265,74.0,15.0,0.0,77.869312186957,77.869312186957,0.0,-1,-1,-1,0,1,13,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(30,'Conversion','Infusion',14.19529419,65.5555555555556,60.0,0.0,0.0,72.5427676728786,0.0,-1,-1,-1,0,1,14,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(31,'Final Batch Sparge','Infusion',17.2620079874,74.0,15.0,0.0,81.9603295669948,81.9603295669948,0.0,-1,-1,-1,0,1,14,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(32,'Conversion','Infusion',28.8341913230463,65.0,90.0,0.0,0.0,71.9020022134532,0.0,-1,-1,-1,0,1,15,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(33,'Final Batch Sparge','Infusion',8.42632662228,74.0,15.0,0.0,106.032891992966,100.0,0.0,-1,-1,-1,0,1,15,2);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(34,'Conversion','Infusion',14.6388971314815,67.7777777777778,60.0,0.0,0.0,75.10582951058,0.0,-1,-1,-1,0,1,16,1);
INSERT INTO "mashstep" (id,name,mstype,infuse_amount,step_temp,step_time,ramp_time,end_temp,infuse_temp,decoction_amount,display_unit,display_scale,display_temp_unit,deleted,display,mash_id,step_number) VALUES(35,'Final Batch Sparge','Infusion',17.0029604406485,74.0,15.0,0.0,82.3341589431591,82.3341589431591,0.0,-1,-1,-1,0,1,16,2);
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(1,'Bt: Blonde Ale','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.04572396536776,1.01143099134194,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'Refreshing and easy-drinking beer, this blonde is mildly hopped and approachable.','',0.0,0,1,99,1,5,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(2,'Bt: California Common','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.04908348285303,1.0161975493415,1,21.0,16.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'This California Common is hopped to be bitter, but not overwhelmingly so. The malt tastes and smells of toast, grain, and caramel, and finishes dry. ','',0.0,0,1,100,3,6,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(3,'Bt: Extra Special Bitter','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.05162931962748,1.01755396867334,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'This beer has pronounced caramelly sweetness, contrasted against significant hop bitterness as well as complex toasted aromas.','',0.0,0,1,101,4,7,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(4,'Bt: Scottish 70 Shilling','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.03491309571406,1.00977566679994,1,21.0,18.3333333333333,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,102,5,8,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(5,'Bt: American Pale Ale','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.047573567394,1.0118933918485,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,103,6,9,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(6,'Bt: Nut Brown','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.04579536158191,1.01328065485875,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,104,7,10,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(7,'Bt: Robust Porter','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.05828870802377,1.01457217700594,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,105,8,11,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(8,'Bt: Oatmeal Stout','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.04985101504465,1.01694934511518,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-23',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,106,9,12,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(9,'Bt: American IPA','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.05789457317083,1.01447364329271,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,107,10,13,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(10,'Bt: Weizen','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.04459639008876,1.01159506142308,1,21.0,16.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,108,11,14,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(11,'Bt: Saison','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.054336713079,1.0163010139237,1,14.0,26.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,109,12,15,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(12,'Bt: Berliner Weisse','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.02966898136893,1.00741724534223,1,60.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,110,13,16,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(13,'Bt: Belgian Blonde Ale','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.06038273941177,1.01388803006471,1,21.0,18.8888888888889,30.0,10.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,111,14,17,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(14,'Bt: American Barleywine','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.10749646183739,1.02687411545935,1,30.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,112,15,18,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(15,'Bt: Rauchbier','All Grain','','Brewtarget: free beer software',20.81976479,25.55152952,60.0,70.0,1.05546236346772,1.01331096723225,1,30.0,10.0,30.0,4.44444444444444,0.0,20.0,0.0,20.0,'2012-12-24',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,113,16,19,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(16,'Bt: Blonde Ale - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.04597592725664,1.01149398181416,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,114,17,20,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(17,'Bt: California Common - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.04857815178364,1.0160307900886,1,21.0,16.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,115,18,21,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(18,'Bt: Extra Special Bitter - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.0517685325035,1.01760130105119,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,116,19,22,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(19,'Bt: Scottish 70 Shilling - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.03822229824513,1.01070224350864,1,21.0,18.3333333333333,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,117,20,23,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(20,'Bt: American Pale Ale - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.04719193290123,1.01179798322531,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,118,21,24,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(21,'Bt: Nut Brown - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.04496719845348,1.01304048755151,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,119,22,25,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(22,'Bt: Robust Porter - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.05803874830936,1.01450968707734,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,120,23,26,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(23,'Bt: Oatmeal Stout - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.05490628149025,1.01866813570669,1,21.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,121,24,27,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(24,'Bt: American IPA - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.0642858922234,1.01607147305585,1,21.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,122,25,28,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(25,'Bt: Weizen - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.04783599288768,1.0124373581508,1,21.0,16.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,123,26,29,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(26,'Bt: Saison - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.05975948231099,1.0179278446933,1,14.0,26.6666666666667,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,124,27,30,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(27,'Bt: Berliner Weisse - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.031935893051,1.00798397326275,1,60.0,19.4444444444444,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,125,28,31,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(28,'Bt: Belgian Blonde Ale - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.0676787257557,1.01556610692381,1,21.0,18.8888888888889,30.0,10.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,126,29,32,'brewtarget');
INSERT INTO "recipe" (id,name,type,brewer,assistant_brewer,batch_size,boil_size,boil_time,efficiency,og,fg,fermentation_stages,primary_age,primary_temp,secondary_age,secondary_temp,tertiary_age,tertiary_temp,age,age_temp,date,carb_volume,forced_carb,priming_sugar_name,carbonationTemp_c,priming_sugar_equiv,keg_priming_factor,notes,taste_notes,taste_rating,deleted,display,style_id,mash_id,equipment_id,folder) VALUES(29,'Bt: American Barleywine - Extract','All Grain','','Brewtarget: free beer software',20.81976479,23.658823628,60.0,70.0,1.11286940551138,1.02821735137784,1,30.0,20.0,0.0,20.0,0.0,20.0,0.0,20.0,'2013-01-02',0.0,0,'',20.0,1.0,1.0,'','',0.0,0,1,127,30,33,'brewtarget');
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(1,196,1);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(2,197,1);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(3,198,2);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(4,199,2);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(5,200,2);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(6,201,2);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(7,202,2);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(8,203,3);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(9,204,3);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(10,205,3);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(11,206,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(12,207,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(13,208,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(14,209,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(15,210,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(16,211,4);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(17,212,5);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(20,215,5);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(21,216,5);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(22,217,6);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(23,218,6);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(24,219,6);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(25,220,6);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(26,221,6);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(27,222,7);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(28,223,7);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(29,224,7);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(30,225,7);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(31,226,7);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(32,227,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(33,228,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(34,229,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(35,230,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(36,231,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(37,232,8);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(38,233,9);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(39,234,9);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(40,235,9);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(41,236,9);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(42,237,10);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(43,238,10);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(44,239,11);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(45,240,11);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(46,241,11);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(47,242,11);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(48,243,12);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(49,244,12);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(50,245,13);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(51,246,13);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(52,247,13);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(53,248,13);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(55,250,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(56,251,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(57,252,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(58,253,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(59,254,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(60,255,14);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(62,257,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(64,259,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(65,260,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(66,261,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(67,262,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(68,263,15);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(69,264,16);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(70,265,16);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(71,266,17);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(72,267,17);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(73,268,17);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(74,269,17);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(75,270,17);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(76,271,18);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(77,272,18);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(78,273,18);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(79,274,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(80,275,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(81,276,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(82,277,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(84,279,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(85,280,19);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(86,281,20);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(87,282,20);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(88,283,20);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(89,284,20);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(90,285,21);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(91,286,21);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(92,287,21);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(93,288,21);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(94,289,21);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(95,290,22);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(96,291,22);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(97,292,22);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(98,293,22);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(99,294,22);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(100,295,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(101,296,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(102,297,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(103,298,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(104,299,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(105,300,23);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(106,301,24);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(107,302,24);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(108,303,24);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(109,304,24);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(110,305,25);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(111,306,26);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(112,307,26);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(113,308,26);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(114,309,26);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(115,310,26);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(116,311,27);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(117,312,27);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(118,313,28);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(119,314,28);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(120,315,28);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(121,316,28);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(122,317,29);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(123,318,29);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(124,319,29);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(125,320,29);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(126,321,29);
INSERT INTO "fermentable_in_recipe" (id,fermentable_id,recipe_id) VALUES(127,322,29);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(1,63,1);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(2,64,2);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(3,65,2);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(4,66,2);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(5,67,3);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(6,68,3);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(7,69,4);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(8,70,5);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(9,71,5);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(10,72,5);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(11,73,5);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(13,75,5);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(14,76,6);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(15,77,6);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(16,78,7);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(17,79,7);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(18,80,7);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(19,81,8);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(20,82,9);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(21,83,9);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(22,84,9);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(23,85,9);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(24,86,10);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(25,87,11);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(26,88,11);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(27,89,12);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(28,90,13);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(29,91,14);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(30,92,14);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(31,93,14);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(32,94,14);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(33,95,15);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(34,96,15);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(35,97,16);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(36,98,17);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(37,99,17);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(38,100,17);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(39,101,18);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(40,102,18);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(41,103,19);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(42,104,20);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(43,105,20);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(44,106,20);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(45,107,20);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(46,108,20);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(47,109,21);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(48,110,21);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(49,111,22);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(50,112,22);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(51,113,22);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(52,114,23);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(53,115,24);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(54,116,24);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(55,117,24);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(56,118,24);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(57,119,25);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(58,120,26);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(59,121,26);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(60,122,27);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(61,123,28);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(62,124,29);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(63,125,29);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(64,126,29);
INSERT INTO "hop_in_recipe" (id,hop_id,recipe_id) VALUES(65,127,29);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(1,118,1);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(2,119,2);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(3,120,3);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(4,121,4);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(5,122,5);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(6,123,6);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(7,124,7);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(8,125,8);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(9,126,9);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(10,128,10);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(11,129,11);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(13,132,12);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(14,140,13);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(15,141,14);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(16,142,15);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(17,143,16);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(18,144,17);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(19,145,18);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(20,146,19);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(21,147,20);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(22,148,21);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(23,149,22);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(24,150,23);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(25,151,24);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(26,152,25);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(27,153,26);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(28,154,27);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(29,155,28);
INSERT INTO "yeast_in_recipe" (id,yeast_id,recipe_id) VALUES(30,156,29);
DELETE FROM sqlite_sequence;
INSERT INTO "sqlite_sequence" VALUES('fermentable',347);
INSERT INTO "sqlite_sequence" VALUES('hop',127);
INSERT INTO "sqlite_sequence" VALUES('misc',91);
INSERT INTO "sqlite_sequence" VALUES('style',127);
INSERT INTO "sqlite_sequence" VALUES('yeast',156);
INSERT INTO "sqlite_sequence" VALUES('water',1);
INSERT INTO "sqlite_sequence" VALUES('bt_fermentable',220);
INSERT INTO "sqlite_sequence" VALUES('bt_hop',62);
INSERT INTO "sqlite_sequence" VALUES('bt_misc',91);
INSERT INTO "sqlite_sequence" VALUES('bt_style',98);
INSERT INTO "sqlite_sequence" VALUES('bt_yeast',126);
INSERT INTO "sqlite_sequence" VALUES('bt_water',1);
INSERT INTO "sqlite_sequence" VALUES('equipment',33);
INSERT INTO "sqlite_sequence" VALUES('bt_equipment',4);
INSERT INTO "sqlite_sequence" VALUES('recipe',29);
INSERT INTO "sqlite_sequence" VALUES('mash',30);
INSERT INTO "sqlite_sequence" VALUES('fermentable_in_recipe',127);
INSERT INTO "sqlite_sequence" VALUES('hop_in_recipe',65);
INSERT INTO "sqlite_sequence" VALUES('yeast_in_recipe',30);
INSERT INTO "sqlite_sequence" VALUES('mashstep',35);
COMMIT;