-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingredients.py
More file actions
14944 lines (14944 loc) · 388 KB
/
Copy pathingredients.py
File metadata and controls
14944 lines (14944 loc) · 388 KB
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
ingredientsList = [
"1% fat buttermilk",
"1% fat cottage cheese",
"1% low-fat chocolate milk",
"1% low-fat milk",
"10 bean soup mix",
"10 inch low-fat flour tortillas",
'10" pie crust',
"10% cream",
"10-inch deep dish pie crust",
"10-inch baked pie shells",
"10-inch corn tortillas",
"10-inch flour tortilla",
"10-inch flour tortillas",
"10-inch pie shell",
"10-inch sun-dried tomato tortillas",
"10-inch unbaked deep-dish pie shell",
"10-inch whole wheat tortillas",
"10-minute herb stuffing mix",
"10-minute success rice",
"100 proof vodka",
"100% bran",
"100-calorie honey maid cinnamon graham cracker crisps",
"100-calorie snack pack tapioca pudding",
"12-inch flour tortilla",
"12-inch flour tortillas",
"12-inch pizza crust",
"12-inch tortilla",
"13 bean soup mix",
"15 bean mix",
"15 bean soup mix",
"15 inch pizza crusts",
"15% cream",
"16 bean mix",
"18% table cream",
"2% buttermilk",
"2% cheddar cheese",
"2% evaporated milk",
"2% fat cottage cheese",
"2% large-curd cottage cheese",
"2% low-fat milk",
"2% mexican cheese blend",
"2% milk",
"2% mozzarella cheese",
"3 bean mix",
"3-cheese gourmet cheddar blend cheese",
"3-inch pie pastry tart shells",
"3-inch tart shells",
"35 % fresh cream",
"35% cream",
"4 grain bread flour",
"4% fat cottage cheese",
"5% fat ricotta cheese",
"5-inch pitas",
"6 cheese zesty mexican cheese blend",
"6 inch fat-free whole wheat pita bread",
"6-inch corn tortillas",
"6-inch flour tortillas",
"6-inch pitas",
"6-inch tortillas",
"6-inch whole wheat pitas",
"6-inch whole wheat tortilla",
"7 bean mix",
"7-inch flour tortillas",
"7-up",
"7-up soda",
"70% lean ground beef",
"8 inch pie shell",
"8-grain bread",
"8-inch 97% fat free flour tortillas",
"8-inch baked pie shell",
"8-inch double-crust pie shell",
"8-inch fat-free flour tortillas",
"8-inch flour tortillas",
"8-inch graham cracker crust",
"8-inch low-carb whole wheat tortilla",
"8-inch pre-baked crumb crust",
"8-inch ready-made graham cracker crust",
"8-inch unbaked pie shell",
"8-inch whole wheat flour tortillas",
"80% lean ground beef",
"85% lean ground beef",
"9 in. unbaked pastry shell",
"9 in. unbaked pastry shells",
"9 in.baked pastry shell",
"9 inch cake layers",
"9 inch chocolate cookie crumb crust",
"9 inch pie shell",
'9" baked deep dish pie crust',
'9" pastry crust with lattice top',
'9" pastry pie shells',
'9" pie shell',
'9" unbaked pie crust',
'9" unbaked pie shell',
'9" unbaked pie shells',
"9-grain bread",
"9-inch baked pie crust",
"9-inch baked pie crusts",
"9-inch chocolate pie crust",
"9-inch deep dish pie crust",
"9-inch deep dish pie crusts",
"9-inch double-crust pie shells",
"9-inch flour tortillas",
"9-inch graham cracker crust",
"9-inch graham cracker crusts",
"9-inch layers of chocolate cake",
"9-inch low-fat chocolate graham cracker crust",
"9-inch low-fat pie shell",
"9-inch oreo cookie pie crust",
"9-inch pie shell",
"9-inch pie shells",
"9-inch spinach tortillas",
"90% lean ground beef",
"92% lean ground beef",
"93% lean ground beef",
"94% lean ground beef",
"95% lean ground beef",
"96% lean ground beef",
"97% fat-free cooked ham",
"97% fat-free shaved leg ham",
"97% lean ground beef",
"98% fat free broccoli cheese soup",
"98% fat free condensed cream of celery soup",
"98% fat free cream of broccoli soup",
"98% fat-free cheddar cheese soup",
"98% fat-free condensed mushroom soup",
"98% fat-free cream of chicken soup",
"98% fat-free cream of mushroom soup",
"98% fat-free honey ham",
"98% lean ground beef",
"99% fat free orange flavored yogurt",
"a.1. original sauce",
"a.1. steak sauce",
"abalone steak",
"absinthe",
"absolut citron vodka",
"absolut kurant vodka",
"absolut mandarin vodka",
"absolut vodka",
"aburage",
"accent seasoning",
"aceto balsamico",
"achar",
"achiote",
"achiote oil",
"achiote paste",
"achiote paste cubes",
"achiote powder",
"achiote seeds",
"achute water",
"acid blend",
"acini di pepe pasta",
"ackee",
"acorn",
"acorn meal",
"acorn squash",
"acorns",
"active dry yeast",
"active starter",
"adobo sauce",
"adobo seasoning",
"adolph's meat tenderizer",
"advieh-e polo",
"advocaat",
"adzuki beans",
"african bird pepper",
"after dinner mints",
"agar",
"agar-agar",
"agar-agar flakes",
"agave",
"agave nectar",
"agave syrup",
"aged cheddar cheese",
"aged white cheddar cheese",
"aguardiente",
"agwa cocoa herbal liqueur",
"ahi",
"ahi fillets",
"ahi tuna steaks",
"ahmed brand vermicelli",
"aioli",
"aji bell peppers",
"aji panca chile",
"aji panca chilies",
"aji yellow paste",
"aji-no-moto",
"ajies dulces",
"ajinomoto",
"ajmoh seeds",
"ajvar",
"ajwain",
"ajwain seed",
"albacore tuna",
"albacore tuna in water",
"alcaparrado",
"alcohol",
"ale",
"ale 8 soft drink",
"aleppo pepper",
"alfalfa",
"alfalfa sprout",
"alfalfa sprouts",
"alfredo noodles mix",
"alfredo sauce",
"alfredo sauce mix",
"alfredo sauce with parmesan cheese",
"alize gold passion liqueur",
"alize red passion liqueur",
"all beef wieners",
"all bran extra fiber cereal",
"all purpose greek seasoning",
"all purpose wine yeast",
"all-bran cereal",
"all-bran cereal with raisins",
"all-fruit jam",
"all-fruit preserves",
"all-purpose flour",
"all-purpose white flour",
"allegro marinade",
"alligator meat",
"alligator sausage",
"alligator tail steaks",
"allspice",
"allspice berries",
"allspice berry",
"allwhites egg whites",
"almond bark",
"almond breeze non-dairy beverage",
"almond brickle chips",
"almond butter",
"almond cookie",
"almond cookies",
"almond emulsion",
"almond essence",
"almond extract",
"almond filling",
"almond flavored liqueur",
"almond flavoring",
"almond flour",
"almond granola",
"almond halve",
"almond halves",
"almond joy candy bars",
"almond liqueur",
"almond meal",
"almond milk",
"almond oil",
"almond paste",
"almond powder",
"almond syrup",
"almond toffee bits",
"almond-flavored liqueur",
"almond-stuffed green olives",
"almonds",
"aloe juice",
"aloe vera gel",
"alouette spinach artichoke spreadable cheese",
"alpha-bits cereal",
"alphabet pasta",
"alphabet pasta and vegetable soup",
"alphonso mangoes",
"alpine lace 97% reduced-fat cooked ham",
"alpine lace reduced-fat swiss cheese",
"alum",
"aluminum foil",
"amaranth",
"amaranth flour",
"amaranth grain",
"amaretti",
"amaretti cookie",
"amaretti cookie crumbs",
"amaretti cookies",
"amarettinis",
"amaretto",
"amaretto cookies",
"amaretto cream liqueur",
"amaretto di saronno liqueur",
"amaretto flavored coffee creamer",
"amaretto liqueur",
"amaretto syrup",
"amaretto-flavored coffee",
"amaretto-flavored nondairy liquid creamer",
"amarula cream liqueur",
"amber beer",
"amber rum",
"amchoor powder",
"amchur",
"amchur powder",
"american cheese",
"american cheese spread",
"amish batter",
"amish starter",
"ammonia",
"amul paneer",
"anaheim chili",
"anaheim chilies",
"anasazi beans",
"ancho chili",
"ancho chili puree",
"ancho chilies",
"anchovies",
"anchovies packed in oil",
"anchovy",
"anchovy essence",
"anchovy fillet",
"anchovy fillets",
"anchovy packed in oil",
"anchovy paste",
"anchovy stock cube",
"anchovy-stuffed olives",
"andes mint baking chips",
"andes mint parfait thins",
"andes mints candies",
"andouille chicken sausage",
"andouille sausage",
"andouille sausages",
"andouille turkey sausage",
"anejo cheese",
"angel flake coconut",
"angel food cake",
"angel food cake mix",
"angel hair pasta",
"angel hair pasta with herbs mix",
"angel hair with parmesan cheese pasta roni",
"angelica",
"angelica leaf",
"angelica leaves",
"angostura bitters",
"angostura low-sodium worcestershire sauce",
"angus steaks",
"animal crackers",
"anise",
"anise extract",
"anise flavoring",
"anise oil",
"anise seed",
"anise seeds",
"anise-flavored liqueur",
"anisette",
"anjou pear",
"anjou pears",
"annatto oil",
"annatto seeds",
"annie's goddess dressing",
"another sweetener",
"antelope cutlets",
"antelope steak",
"anthotiro",
"antipasto mix",
"any bottled italian dressing",
"any desired flavoring",
"any desired food coloring",
"appenzeller cheese",
"apple",
"apple brandy",
"apple butter",
"apple chips",
"apple cider",
"apple cider vinegar",
"apple cinnamon cheerios",
"apple cinnamon granola cereal",
"apple cinnamon quick bread mix",
"apple crumble mix",
"apple fruit filling and topping",
"apple jack",
"apple jacks cereal",
"apple jelly",
"apple juice",
"apple juice concentrate",
"apple liqueur",
"apple peel",
"apple pie",
"apple pie filling",
"apple pie filling with cinnamon",
"apple pie spice",
"apple rings",
"apple schnapps",
"apple sweetened fortified soya milk",
"apple syrup",
"apple tart mix",
"apple vodka",
"apple yogurt",
"apple-raspberry juice concentrate",
"apple-smoked bacon",
"applejack",
"apples",
"apples for pie",
"apples for pies",
"apples in syrup",
"applesauce",
"apricot",
"apricot baby food",
"apricot brandy",
"apricot conserve",
"apricot filling",
"apricot fruit spread",
"apricot gelatin",
"apricot halves",
"apricot halves in juice",
"apricot halves in light syrup",
"apricot jam",
"apricot jell-o",
"apricot juice",
"apricot liqueur",
"apricot marmalade",
"apricot nectar",
"apricot preserves",
"apricot puree",
"apricot syrup",
"apricot with tapioca baby food",
"apricot yoghurt",
"apricot-pineapple preserves",
"apricots",
"apricots in juice",
"apricots in light syrup",
"apricots in syrup",
"aquavit",
"arabic bread",
"arabic seven spice",
"arabic spices",
"arame seaweed",
"arbol chile",
"arbol chiles",
"arbol chili powder",
"arborio rice",
"arctic char",
"arepa flour",
"argan oil",
"arm roast",
"armagnac",
"aroma seasoning",
"aromatic bitters",
"arrack liqueur",
"arrowroot",
"arrowroot cookies",
"artichoke",
"artichoke and garlic sausage",
"artichoke bottom",
"artichoke bottoms",
"artichoke dip",
"artichoke heart",
"artichoke hearts",
"artichoke hearts in brine",
"artichoke hearts packed in oil",
"artichoke pesto",
"artichoke quarters in water",
"artichokes",
"artificial flower",
"artificial sweetener",
"artificial vanilla flavoring",
"artisan bread",
"arugula",
"arugula leaf",
"arugula leaves",
"asadero cheese",
"asafoetida powder",
"ascorbic acid",
"asiago 3-cheese blend",
"asiago caesar salad dressing",
"asiago cheese",
"asiago cheese bagels",
"asiago cheese croutons",
"asiago cheese rolls",
"asiago-parmesan cheese",
"asian chili peppers",
"asian chili sauce",
"asian noodles",
"asian pear",
"asian pears",
"asian rice flour",
"asian seasoning",
"asian-style dressing",
"asparagus",
"asparagus spear",
"asparagus spears",
"asparagus tips",
"assorted crudites",
"assorted fresh herb leaves",
"assorted fresh vegetable",
"assorted fresh vegetables",
"assorted herbs",
"asti spumante sparkling wine",
"astragalus root",
"atkins baking mix",
"au gratin potato mix",
"au gratin potatoes",
"au jus mix",
"au jus sauce",
"aubergine",
"aubergines",
"aunt jane's krazy mixed up salt",
"avgolemono sauce",
"avocado",
"avocado dip",
"avocado oil",
"avocados",
"azuki beans",
"b&m baked beans",
"baby apricots",
"baby artichoke",
"baby artichokes",
"baby arugula",
"baby asparagus",
"baby back rib rack",
"baby back rib racks",
"baby back ribs",
"baby banana puree",
"baby beef liver",
"baby beets",
"baby bella mushroom",
"baby bella mushrooms",
"baby bok choy",
"baby butter beans",
"baby calamari",
"baby carrots",
"baby chicken",
"baby chickens",
"baby clams",
"baby corn",
"baby dill pickle",
"baby dill pickles",
"baby dou miao",
"baby eggplant",
"baby eggplants",
"baby food",
"baby french beans",
"baby gourmet potato blend",
"baby green pea",
"baby green peas",
"baby greens",
"baby kai lan",
"baby leaf lettuce",
"baby leeks",
"baby lettuces",
"baby lima beans",
"baby marrows",
"baby mustard cress",
"baby octopus",
"baby onion",
"baby onions",
"baby oysters",
"baby peas",
"baby plums",
"baby portabella mushrooms",
"baby potatoes",
"baby red peppers",
"baby red potato",
"baby red potatoes",
"baby rocket",
"baby ruth candy bars",
"baby salad leaves",
"baby shrimp",
"baby spinach",
"baby spinach leaves",
"baby sweet corn cob",
"baby sweet corn cobs",
"baby swiss cheese",
"baby tomatoes",
"baby turnip",
"baby turnips",
"bacardi 151 rum",
"bacardi dark rum",
"bacardi fuzzy navel mix",
"bacardi light rum",
"bacardi limon",
"bacardi o rum",
"bacardi peach red rum",
"back bacon",
"back ribs",
"backfin crab meat",
"bacon",
"bacon bits",
"bacon cheddar cheese",
"bacon dip",
"bacon drippings",
"bacon fat",
"bacon grease",
"bacon piece",
"bacon pieces",
"bacon ranch dressing",
"bacos bacon bits",
"badam powder",
"badia complete seasoning",
"bagel",
"bagel chips",
"bagels",
"bagoong",
"baguette",
"baharat",
"baharat spice mix",
"baileys caramel irish cream",
"baileys irish cream",
"baileys mint chocolate irish cream liqueur",
"baileys original irish cream",
"baked beans",
"baked beans in tomato sauce",
"baked beans with molasses",
"baked cheese puffs",
"baked corn tortilla chips",
"baked potato chips",
"baked tofu",
"baker's angel flake sweetened coconut",
"baker's german's chocolate",
"baker's joy",
"baker's semi-sweet baking chocolate",
"baker's semi-sweet chocolate",
"baker's special dry milk",
"baker's unsweetened chocolate square",
"baker's unsweetened chocolate squares",
"baker's yeast",
"baking ammonia",
"baking apple",
"baking apples",
"baking chocolate",
"baking chocolate squares",
"baking cocoa",
"baking hen",
"baking hens",
"baking mix",
"baking potato",
"baking potatoes",
"baking powder",
"baking powder biscuits",
"baking sheet",
"baking soda",
"balkan style yogurt",
"ballard cornbread mix",
"balloons",
"baloney",
"balsamic dressing",
"balsamic glaze",
"balsamic syrup",
"balsamic vinaigrette",
"balsamic vinegar",
"bamba",
"bamboo leaves",
"bamboo shoot",
"bamboo shoots",
"bamboo skewer",
"bamboo skewers",
"banana",
"banana baby food",
"banana blossom",
"banana bread",
"banana bread mix",
"banana cake mix",
"banana chips",
"banana cream instant pudding",
"banana cream pudding and pie filling mix",
"banana extract",
"banana flavoring",
"banana flower",
"banana flowers",
"banana granola",
"banana ice cream",
"banana instant pudding",
"banana ketchup",
"banana leaf",
"banana leaves",
"banana liqueur",
"banana milk",
"banana muffin mix",
"banana nut bread",
"banana nut cheerios",
"banana nut crunch cereal",
"banana nut muffin mix",
"banana pepper",
"banana pepper juice",
"banana pepper ring",
"banana pepper rings",
"banana peppers",
"banana pulp",
"banana rum",
"banana schnapps",
"banana squash",
"banana syrup",
"banana yogurt",
"banana-blueberry yogurt",
"banana-flavor brandy",
"bananas",
"bangers",
"bangus",
"barbados molasses",
"barbecue baked beans",
"barbecue potato chips",
"barbecue sauce",
"barbecue sauce concentrate",
"barbecue seasoning",
"barbecue skewers",
"barbecue spice",
"barbecued beef",
"barbecued chicken",
"barbecued pork",
"barberries",
"barilla castellane",
"barilla lasagna",
"barilla linguine",
"barilla mushroom & garlic sauce",
"barilla sweet peppers & garlic sauce",
"barley",
"barley flour",
"barley malt",
"barley malt syrup",
"barley miso",
"barley nugget cereal",
"barley pearls",
"barley rusks",
"barramundi fillets",
"bartlett pear",
"bartlett pears",
"basa fillets",
"basic mayonnaise recipe",
"basic meatloaf",
"basic pizza dough",
"basil",
"basil and parmesan tapenade",
"basil chiffonade",
"basil leaves",
"basil mayonnaise",
"basil oil",
"basil olive oil",
"basil pesto",
"basil seeds",
"basil sprig",
"basil sprigs",
"basil vinaigrette",
"basmati rice",
"basmati rice pilaf",
"bass fillet",
"bass fillets",
"bath soap",
"batter",
"batter frying mix",
"bavarian smoked cheese",
"bavarian-style sweet sauerkraut",
"bay bugs",
"bay laurel powder",
"bay leaf",
"bay leaf powder",
"bay leaves",
"bay scallop",
"bay scallops",
"bay shrimp",
"bayou blast creole seasoning",
"bean curd",
"bean dip",
"bean flour",
"bean liquid",
"bean medley",
"bean paste",
"bean sauce",
"bean sprouts",
"bean stock",
"bean thread noodles",
"bean thread vermicelli",
"bean threads",
"bean with bacon soup",
"beans",
"beans and carrots vegetable mix",
"beans in chili sauce",
"bear meat",
"bear roast",
"bear shaped graham crackers",
"bear steak",
"bearnaise sauce",
"bearnaise sauce mix",
"beaten rice",
"beau monde seasoning",
"beau monde spice",
"beaufort cheese",
"beaujolais wine",
"becel margarine",
"becel oil",
"bechamel sauce",
"bee pollen",
"beef",
"beef and onion soup mix",
"beef baby food",
"beef back ribs",
"beef bacon",
"beef base",
"beef blade roast",
"beef blade steak",
"beef bone",
"beef bones",
"beef bones with marrow",
"beef bouillon",
"beef bouillon concentrate",
"beef bouillon cube",
"beef bouillon cubes",
"beef bouillon granules",
"beef bouillon paste",
"beef bouillon powder",
"beef brains",
"beef brisket",
"beef broth",
"beef burgers",
"beef caps",
"beef cheek",
"beef cheeks",
"beef chuck",
"beef chuck with bone",
"beef consomme",
"beef consomme soup",
"beef cube steak",
"beef cube steaks",
"beef cutlet",
"beef cutlets",
"beef double bouillon cubes",
"beef drippings",
"beef extract",
"beef eye round",
"beef flank steak",
"beef flavored rice-a-roni",
"beef gravy",
"beef gravy granules",
"beef gravy mix",
"beef heart",
"beef hot dog",
"beef hot dogs",
"beef hot links",
"beef jerky",
"beef kabob skewers",
"beef kidney",
"beef kidneys",
"beef kielbasa",
"beef liver",
"beef loin steaks",
"beef marinade",
"beef marrow",
"beef medallions",
"beef mince",
"beef neck bone",
"beef ravioli",
"beef rib",
"beef rib eye roast",
"beef rib roast",
"beef ribs",
"beef roast",
"beef roast seasoning",
"beef round rump roast",
"beef round steak",
"beef round tip steak",
"beef round tip steaks",
"beef rump",
"beef salami",
"beef sausage",
"beef sausages",
"beef schnitzel",
"beef shank",
"beef shanks",
"beef shins",
"beef short rib",
"beef short ribs",
"beef short ribs with bones",
"beef shoulder",
"beef silverside",
"beef sirloin",
"beef sirloin steak",
"beef sirloin steaks",
"beef sirloin tip",
"beef snack sticks",
"beef soup mix",
"beef steak",
"beef steaks",
"beef stew",
"beef stew meat",
"beef stew seasoning",
"beef stock",
"beef stock cube",
"beef stock granules",
"beef stock mix",
"beef stock powder",
"beef stroganoff sauce mix",
"beef stuffing mix",
"beef suet",
"beef t-bone steaks",
"beef tail",
"beef tamales",
"beef taquitos",
"beef tenderloin",
"beef tenderloin fillets",
"beef tenderloin steak",
"beef tenderloin steaks",
"beef tip roast",
"beef tips",
"beef tongue",
"beef tongues",
"beef top round steak",
"beef tortellini",
"beef tournedos",
"beef vegetable and barley soup starter mix",
"beef-flavor ramen noodles",
"beef-flavored vegetarian seasoning",
"beefsteak tomato",
"beefsteak tomatoes",
"beefy mushroom soup",
"beer",
"beer stick",
"beer sticks",
"beet",
"beet juice",
"beet kvas",
"beet leaf",
"beet leaves",
"beet sugar",
"beet with greens",
"beetroot",
"beetroots",
"beets",
"beets with greens",
"beets with tops",
"bel paese cheese",
"belgian chocolate",
"belgian endive",
"bell pepper",
"bell peppers",
"bell's seasoning",
"ben and jerry cherry garcia ice cream",
"benedictine",
"benefiber fiber supplement",
"bengal gram dal",
"bengali five-spice mix",
"berbere",
"bergamot leaves",
"bergamot oil",
"bermuda falernum",
"bermuda onion",
"bermuda onions",
"bernsteins light fantastic cheese fantastico salad dressing",
"berries",
"berry blue gelatin mix",
"berry blue unsweetened kool-aid powdered drink mix",
"berry gelatin",
"berry juice",
"berry sugar",
"berry yogurt",
"besan",
"besan flour",
"best end of neck welsh lamb",
"best foods mayonnaise",
"best olive oil",
"better 'n peanut butter spread",
"better than bouillon no beef base",
"better than cream cheese cream cheese substitute",
"betty crocker au gratin potatoes",
"betty crocker chicken helper chicken and herb rice",
"betty crocker cinnamon streusel muffin mix",
"betty crocker double chocolate chunk cookie mix",
"betty crocker fluffy white frosting mix",
"betty crocker fudge brownie mix",
"betty crocker lemon ready to spread frosting",
"betty crocker potato buds",
"betty crocker rich & creamy chocolate ready to spread frosting",
"betty crocker suddenly pasta salad classic",
"betty crocker super moist cake mix",
"betty crocker super moist chocolate cake mix",
"betty crocker super moist lemon cake mix",
"betty crocker super moist white cake mix",
"betty crocker super moist yellow cake mix",
"betty crocker yellow cake mix",
"betty crocker's hamburger helper",
"bhutanese red rice",
"bibb lettuce",
"bicarbonate of soda",
"bing cherries",
"bing cherry",
"bird chile",
"bird chiles",
"bird's custard mix",
"bird's eye custard",
"birds eye chile",
"birds eye chiles",
"birds eye frozen japanese-style vegetables",
"biryani spice mix",
"biscotti",
"biscotti liqueur",
"biscuit",
"biscuit dough",
"biscuit mix",
"biscuits",
"bison meat",
"bison new york strip steaks",
"bison round roast",
"bison tenderloin fillets",
"bisquick",
"bisquick baking mix",
"bisquick heart smart mix",
"bisquick reduced-fat baking mix",
"bisto",
"bisto powder",
"bit-o-honey candy bars",
"bite size shredded whole wheat cereal",
"bite-size cheddar cheese crackers",
"bite-size fresh mozzarella cheese balls",
"bitter almond oil",
"bitter chocolate",
"bitter cocoa powder",
"bitter gourd",