tpmkms_4wp 8.9.1-beta.7 → 8.9.1-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/common/articles.js +1 -1
  2. package/common/asking.js +2 -2
  3. package/common/avatar.js +1 -1
  4. package/common/characters.js +1 -1
  5. package/common/comparable.js +1 -1
  6. package/common/concept.js +1 -1
  7. package/common/conjunction.js +1 -1
  8. package/common/countable.js +1 -1
  9. package/common/currency.js +2 -2
  10. package/common/dialogues.js +3 -3
  11. package/common/dimension.js +2 -2
  12. package/common/errors.js +1 -1
  13. package/common/events.js +1 -1
  14. package/common/fastfood.instance.json +705 -928
  15. package/common/fastfood.js +3 -3
  16. package/common/formulas.js +1 -1
  17. package/common/gdefaults.js +2 -2
  18. package/common/help.js +4 -4
  19. package/common/helpers/concept.js +3 -3
  20. package/common/helpers/conjunction.js +1 -1
  21. package/common/helpers/formulas.js +4 -4
  22. package/common/helpers/frankenhash.js +4 -4
  23. package/common/helpers/meta.js +4 -4
  24. package/common/helpers/ordering.js +2 -2
  25. package/common/helpers/properties.js +16 -16
  26. package/common/helpers.js +1 -1
  27. package/common/hierarchy.js +3 -3
  28. package/common/javascript.js +1 -1
  29. package/common/math.js +1 -1
  30. package/common/meta.js +5 -5
  31. package/common/negation.js +1 -1
  32. package/common/numbers.js +1 -1
  33. package/common/ordinals.js +1 -1
  34. package/common/people.js +1 -1
  35. package/common/percentages.js +1 -1
  36. package/common/pipboy.js +1 -1
  37. package/common/pos.js +1 -1
  38. package/common/properties.js +2 -2
  39. package/common/punctuation.js +1 -1
  40. package/common/reports.instance.json +2 -2
  41. package/common/reports.js +7 -7
  42. package/common/scorekeeper.js +5 -5
  43. package/common/sdefaults.js +2 -2
  44. package/common/sizeable.js +1 -1
  45. package/common/stm.js +6 -6
  46. package/common/tell.js +1 -1
  47. package/common/tester.js +1 -1
  48. package/common/wp.instance.json +50 -2
  49. package/common/wp.js +40 -3
  50. package/common/wp.test.json +9804 -91
  51. package/common/yesno.js +1 -1
  52. package/package.json +4 -4
@@ -905,7 +905,7 @@
905
905
  ]
906
906
  },
907
907
  {
908
- "apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (let item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
908
+ "apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (const modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (const item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
909
909
  },
910
910
  {
911
911
  "operators": [
@@ -86598,24 +86598,6 @@
86598
86598
  1
86599
86599
  ]
86600
86600
  ],
86601
- [
86602
- [
86603
- "list",
86604
- 1
86605
- ],
86606
- [
86607
- "modifies",
86608
- 0
86609
- ],
86610
- [
86611
- "strawberry",
86612
- 0
86613
- ],
86614
- [
86615
- "unknown",
86616
- 1
86617
- ]
86618
- ],
86619
86601
  [
86620
86602
  [
86621
86603
  "list",
@@ -92501,6 +92483,52 @@
92501
92483
  0
92502
92484
  ]
92503
92485
  ],
92486
+ [
92487
+ [
92488
+ "banana",
92489
+ 0
92490
+ ],
92491
+ [
92492
+ "berry",
92493
+ 0
92494
+ ],
92495
+ [
92496
+ "comma",
92497
+ 0
92498
+ ],
92499
+ [
92500
+ "countable",
92501
+ 0
92502
+ ],
92503
+ [
92504
+ "guava",
92505
+ 0
92506
+ ],
92507
+ [
92508
+ "is",
92509
+ 0
92510
+ ],
92511
+ [
92512
+ "list",
92513
+ 0
92514
+ ],
92515
+ [
92516
+ "mango",
92517
+ 0
92518
+ ],
92519
+ [
92520
+ "passion",
92521
+ 0
92522
+ ],
92523
+ [
92524
+ "strawberry",
92525
+ 0
92526
+ ],
92527
+ [
92528
+ "wild",
92529
+ 0
92530
+ ]
92531
+ ],
92504
92532
  [
92505
92533
  [
92506
92534
  "banana",
@@ -103950,6 +103978,56 @@
103950
103978
  0
103951
103979
  ]
103952
103980
  ],
103981
+ [
103982
+ [
103983
+ "banana",
103984
+ 0
103985
+ ],
103986
+ [
103987
+ "berry",
103988
+ 0
103989
+ ],
103990
+ [
103991
+ "comma",
103992
+ 0
103993
+ ],
103994
+ [
103995
+ "guava",
103996
+ 0
103997
+ ],
103998
+ [
103999
+ "ingredient",
104000
+ 0
104001
+ ],
104002
+ [
104003
+ "is",
104004
+ 0
104005
+ ],
104006
+ [
104007
+ "list",
104008
+ 0
104009
+ ],
104010
+ [
104011
+ "mango",
104012
+ 0
104013
+ ],
104014
+ [
104015
+ "passion",
104016
+ 0
104017
+ ],
104018
+ [
104019
+ "smoothie",
104020
+ 0
104021
+ ],
104022
+ [
104023
+ "strawberry",
104024
+ 0
104025
+ ],
104026
+ [
104027
+ "wild",
104028
+ 0
104029
+ ]
104030
+ ],
103953
104031
  [
103954
104032
  [
103955
104033
  "banana",
@@ -126788,7 +126866,7 @@
126788
126866
  },
126789
126867
  {
126790
126868
  "op": [
126791
- "chicken_sandwich",
126869
+ "chicken_club",
126792
126870
  0
126793
126871
  ],
126794
126872
  "ops": [
@@ -126849,10 +126927,14 @@
126849
126927
  },
126850
126928
  {
126851
126929
  "op": [
126852
- "comma",
126930
+ "asiago_ranch_chicken_club",
126853
126931
  0
126854
126932
  ],
126855
126933
  "ops": [
126934
+ [
126935
+ "asiago_ranch_chicken_club",
126936
+ 0
126937
+ ],
126856
126938
  [
126857
126939
  "chicken",
126858
126940
  0
@@ -126898,7 +126980,7 @@
126898
126980
  },
126899
126981
  {
126900
126982
  "op": [
126901
- "ultimate_chicken_grill",
126983
+ "comma",
126902
126984
  0
126903
126985
  ],
126904
126986
  "ops": [
@@ -126910,6 +126992,10 @@
126910
126992
  "cod",
126911
126993
  0
126912
126994
  ],
126995
+ [
126996
+ "comma",
126997
+ 0
126998
+ ],
126913
126999
  [
126914
127000
  "grill",
126915
127001
  0
@@ -126943,14 +127029,22 @@
126943
127029
  },
126944
127030
  {
126945
127031
  "op": [
126946
- "premium_cod",
127032
+ "ultimate_chicken_grill",
126947
127033
  0
126948
127034
  ],
126949
127035
  "ops": [
127036
+ [
127037
+ "chicken",
127038
+ 0
127039
+ ],
126950
127040
  [
126951
127041
  "cod",
126952
127042
  0
126953
127043
  ],
127044
+ [
127045
+ "grill",
127046
+ 0
127047
+ ],
126954
127048
  [
126955
127049
  "is",
126956
127050
  0
@@ -126966,22 +127060,38 @@
126966
127060
  [
126967
127061
  "sandwich",
126968
127062
  0
127063
+ ],
127064
+ [
127065
+ "ultimate",
127066
+ 0
127067
+ ],
127068
+ [
127069
+ "ultimate_chicken_grill",
127070
+ 0
126969
127071
  ]
126970
127072
  ],
126971
127073
  "counter": 10
126972
127074
  },
126973
127075
  {
126974
127076
  "op": [
126975
- "list",
127077
+ "premium_cod",
126976
127078
  0
126977
127079
  ],
126978
127080
  "ops": [
127081
+ [
127082
+ "cod",
127083
+ 0
127084
+ ],
126979
127085
  [
126980
127086
  "is",
126981
127087
  0
126982
127088
  ],
126983
127089
  [
126984
- "list",
127090
+ "premium",
127091
+ 0
127092
+ ],
127093
+ [
127094
+ "premium_cod",
126985
127095
  0
126986
127096
  ],
126987
127097
  [
@@ -126994,7 +127104,7 @@
126994
127104
  {
126995
127105
  "op": [
126996
127106
  "list",
126997
- 1
127107
+ 0
126998
127108
  ],
126999
127109
  "ops": [
127000
127110
  [
@@ -127003,7 +127113,7 @@
127003
127113
  ],
127004
127114
  [
127005
127115
  "list",
127006
- 1
127116
+ 0
127007
127117
  ],
127008
127118
  [
127009
127119
  "sandwich",
@@ -127075,27 +127185,6 @@
127075
127185
  ],
127076
127186
  "counter": 15
127077
127187
  },
127078
- {
127079
- "op": [
127080
- "list",
127081
- 1
127082
- ],
127083
- "ops": [
127084
- [
127085
- "is",
127086
- 0
127087
- ],
127088
- [
127089
- "list",
127090
- 1
127091
- ],
127092
- [
127093
- "sandwich",
127094
- 0
127095
- ]
127096
- ],
127097
- "counter": 16
127098
- },
127099
127188
  {
127100
127189
  "op": [
127101
127190
  "sandwich",
@@ -127111,7 +127200,7 @@
127111
127200
  0
127112
127201
  ]
127113
127202
  ],
127114
- "counter": 17
127203
+ "counter": 16
127115
127204
  },
127116
127205
  {
127117
127206
  "op": [
@@ -127124,7 +127213,7 @@
127124
127213
  0
127125
127214
  ]
127126
127215
  ],
127127
- "counter": 18
127216
+ "counter": 17
127128
127217
  },
127129
127218
  {
127130
127219
  "op": [
@@ -127137,7 +127226,7 @@
127137
127226
  1
127138
127227
  ]
127139
127228
  ],
127140
- "counter": 19
127229
+ "counter": 18
127141
127230
  }
127142
127231
  ]
127143
127232
  },
@@ -127232,43 +127321,18 @@
127232
127321
  "level": 1
127233
127322
  },
127234
127323
  {
127235
- "value": "asiago",
127236
- "number": "one",
127237
- "text": "asiago",
127238
- "marker": "asiago",
127239
- "word": "asiago",
127240
- "range": {
127241
- "start": 18,
127242
- "end": 23
127243
- },
127244
- "dead": true,
127245
- "level": 1
127246
- },
127247
- {
127248
- "value": "ranch",
127249
- "number": "one",
127250
- "text": "ranch",
127251
- "marker": "ranch",
127252
- "word": "ranch",
127253
- "range": {
127254
- "start": 25,
127255
- "end": 29
127256
- },
127257
- "dead": true,
127258
- "level": 1
127259
- },
127260
- {
127261
- "value": "chicken_sandwich",
127324
+ "value": "asiago_ranch_chicken_club",
127262
127325
  "number": "one",
127263
- "text": "chicken club,",
127264
- "marker": "chicken_sandwich",
127326
+ "text": "asiago ranch chicken club,",
127327
+ "marker": "asiago_ranch_chicken_club",
127265
127328
  "word": "club",
127266
127329
  "range": {
127267
- "start": 31,
127330
+ "start": 18,
127268
127331
  "end": 43
127269
127332
  },
127270
127333
  "types": [
127271
- "chicken_sandwich",
127334
+ "asiago_ranch_chicken_club",
127335
+ "chicken_club",
127272
127336
  "club"
127273
127337
  ],
127274
127338
  "modifier_chicken": {
@@ -127289,8 +127353,42 @@
127289
127353
  "atomic": true,
127290
127354
  "dead": true,
127291
127355
  "modifiers": [
127356
+ "modifier_asiago",
127357
+ "modifier_ranch",
127292
127358
  "modifier_chicken"
127293
127359
  ],
127360
+ "modifier_asiago": {
127361
+ "value": "asiago",
127362
+ "number": "one",
127363
+ "text": "asiago",
127364
+ "marker": "asiago",
127365
+ "word": "asiago",
127366
+ "range": {
127367
+ "start": 18,
127368
+ "end": 23
127369
+ },
127370
+ "dead": true,
127371
+ "types": [
127372
+ "asiago"
127373
+ ],
127374
+ "level": 1
127375
+ },
127376
+ "modifier_ranch": {
127377
+ "value": "ranch",
127378
+ "number": "one",
127379
+ "text": "ranch",
127380
+ "marker": "ranch",
127381
+ "word": "ranch",
127382
+ "range": {
127383
+ "start": 25,
127384
+ "end": 29
127385
+ },
127386
+ "dead": true,
127387
+ "types": [
127388
+ "ranch"
127389
+ ],
127390
+ "level": 1
127391
+ },
127294
127392
  "decorators": {
127295
127393
  "after": {
127296
127394
  "word": ",",
@@ -127428,7 +127526,7 @@
127428
127526
  ""
127429
127527
  ],
127430
127528
  "paraphrases": [
127431
- "spicy, homestyle, asiago, ranch, chicken club, ultimate chicken grill and premium cod are sandwiches"
127529
+ "spicy, homestyle, asiago ranch chicken club, ultimate chicken grill and premium cod are sandwiches"
127432
127530
  ],
127433
127531
  "paraphrasesParenthesized": [],
127434
127532
  "generatedParenthesized": [],
@@ -128078,11 +128176,6 @@
128078
128176
  "queryable",
128079
128177
  false
128080
128178
  ],
128081
- [
128082
- "asiago",
128083
- "sandwich",
128084
- false
128085
- ],
128086
128179
  [
128087
128180
  "asiago",
128088
128181
  "theAble",
@@ -128133,6 +128226,11 @@
128133
128226
  "queryable",
128134
128227
  false
128135
128228
  ],
128229
+ [
128230
+ "asiago_ranch_chicken_club",
128231
+ "sandwich",
128232
+ false
128233
+ ],
128136
128234
  [
128137
128235
  "asiago_ranch_chicken_club",
128138
128236
  "theAble",
@@ -131868,11 +131966,6 @@
131868
131966
  "queryable",
131869
131967
  false
131870
131968
  ],
131871
- [
131872
- "ranch",
131873
- "sandwich",
131874
- false
131875
- ],
131876
131969
  [
131877
131970
  "ranch",
131878
131971
  "theAble",
@@ -133624,11 +133717,6 @@
133624
133717
  "queryable",
133625
133718
  false
133626
133719
  ],
133627
- [
133628
- "asiago",
133629
- "sandwich",
133630
- false
133631
- ],
133632
133720
  [
133633
133721
  "asiago",
133634
133722
  "theAble",
@@ -133679,6 +133767,11 @@
133679
133767
  "queryable",
133680
133768
  false
133681
133769
  ],
133770
+ [
133771
+ "asiago_ranch_chicken_club",
133772
+ "sandwich",
133773
+ false
133774
+ ],
133682
133775
  [
133683
133776
  "asiago_ranch_chicken_club",
133684
133777
  "theAble",
@@ -137454,11 +137547,6 @@
137454
137547
  "queryable",
137455
137548
  false
137456
137549
  ],
137457
- [
137458
- "ranch",
137459
- "sandwich",
137460
- false
137461
- ],
137462
137550
  [
137463
137551
  "ranch",
137464
137552
  "theAble",
@@ -139321,11 +139409,6 @@
139321
139409
  "queryable",
139322
139410
  false
139323
139411
  ],
139324
- [
139325
- "asiago",
139326
- "sandwich",
139327
- false
139328
- ],
139329
139412
  [
139330
139413
  "asiago",
139331
139414
  "theAble",
@@ -139376,6 +139459,11 @@
139376
139459
  "queryable",
139377
139460
  false
139378
139461
  ],
139462
+ [
139463
+ "asiago_ranch_chicken_club",
139464
+ "sandwich",
139465
+ false
139466
+ ],
139379
139467
  [
139380
139468
  "asiago_ranch_chicken_club",
139381
139469
  "theAble",
@@ -143191,11 +143279,6 @@
143191
143279
  "queryable",
143192
143280
  false
143193
143281
  ],
143194
- [
143195
- "ranch",
143196
- "sandwich",
143197
- false
143198
- ],
143199
143282
  [
143200
143283
  "ranch",
143201
143284
  "theAble",
@@ -144992,11 +145075,6 @@
144992
145075
  "queryable",
144993
145076
  false
144994
145077
  ],
144995
- [
144996
- "asiago",
144997
- "sandwich",
144998
- false
144999
- ],
145000
145078
  [
145001
145079
  "asiago",
145002
145080
  "theAble",
@@ -145047,6 +145125,11 @@
145047
145125
  "queryable",
145048
145126
  false
145049
145127
  ],
145128
+ [
145129
+ "asiago_ranch_chicken_club",
145130
+ "sandwich",
145131
+ false
145132
+ ],
145050
145133
  [
145051
145134
  "asiago_ranch_chicken_club",
145052
145135
  "theAble",
@@ -148867,11 +148950,6 @@
148867
148950
  "queryable",
148868
148951
  false
148869
148952
  ],
148870
- [
148871
- "ranch",
148872
- "sandwich",
148873
- false
148874
- ],
148875
148953
  [
148876
148954
  "ranch",
148877
148955
  "theAble",
@@ -150715,11 +150793,6 @@
150715
150793
  "queryable",
150716
150794
  false
150717
150795
  ],
150718
- [
150719
- "asiago",
150720
- "sandwich",
150721
- false
150722
- ],
150723
150796
  [
150724
150797
  "asiago",
150725
150798
  "theAble",
@@ -150770,6 +150843,11 @@
150770
150843
  "queryable",
150771
150844
  false
150772
150845
  ],
150846
+ [
150847
+ "asiago_ranch_chicken_club",
150848
+ "sandwich",
150849
+ false
150850
+ ],
150773
150851
  [
150774
150852
  "asiago_ranch_chicken_club",
150775
150853
  "theAble",
@@ -154590,11 +154668,6 @@
154590
154668
  "queryable",
154591
154669
  false
154592
154670
  ],
154593
- [
154594
- "ranch",
154595
- "sandwich",
154596
- false
154597
- ],
154598
154671
  [
154599
154672
  "ranch",
154600
154673
  "theAble",
@@ -156328,11 +156401,6 @@
156328
156401
  "queryable",
156329
156402
  false
156330
156403
  ],
156331
- [
156332
- "asiago",
156333
- "sandwich",
156334
- false
156335
- ],
156336
156404
  [
156337
156405
  "asiago",
156338
156406
  "theAble",
@@ -156383,6 +156451,11 @@
156383
156451
  "queryable",
156384
156452
  false
156385
156453
  ],
156454
+ [
156455
+ "asiago_ranch_chicken_club",
156456
+ "sandwich",
156457
+ false
156458
+ ],
156386
156459
  [
156387
156460
  "asiago_ranch_chicken_club",
156388
156461
  "theAble",
@@ -160203,11 +160276,6 @@
160203
160276
  "queryable",
160204
160277
  false
160205
160278
  ],
160206
- [
160207
- "ranch",
160208
- "sandwich",
160209
- false
160210
- ],
160211
160279
  [
160212
160280
  "ranch",
160213
160281
  "theAble",
@@ -162062,11 +162130,6 @@
162062
162130
  "queryable",
162063
162131
  false
162064
162132
  ],
162065
- [
162066
- "asiago",
162067
- "sandwich",
162068
- false
162069
- ],
162070
162133
  [
162071
162134
  "asiago",
162072
162135
  "theAble",
@@ -162117,6 +162180,11 @@
162117
162180
  "queryable",
162118
162181
  false
162119
162182
  ],
162183
+ [
162184
+ "asiago_ranch_chicken_club",
162185
+ "sandwich",
162186
+ false
162187
+ ],
162120
162188
  [
162121
162189
  "asiago_ranch_chicken_club",
162122
162190
  "theAble",
@@ -165992,11 +166060,6 @@
165992
166060
  "queryable",
165993
166061
  false
165994
166062
  ],
165995
- [
165996
- "ranch",
165997
- "sandwich",
165998
- false
165999
- ],
166000
166063
  [
166001
166064
  "ranch",
166002
166065
  "theAble",
@@ -167816,11 +167879,6 @@
167816
167879
  "queryable",
167817
167880
  false
167818
167881
  ],
167819
- [
167820
- "asiago",
167821
- "sandwich",
167822
- false
167823
- ],
167824
167882
  [
167825
167883
  "asiago",
167826
167884
  "theAble",
@@ -167871,6 +167929,11 @@
167871
167929
  "queryable",
167872
167930
  false
167873
167931
  ],
167932
+ [
167933
+ "asiago_ranch_chicken_club",
167934
+ "sandwich",
167935
+ false
167936
+ ],
167874
167937
  [
167875
167938
  "asiago_ranch_chicken_club",
167876
167939
  "theAble",
@@ -171746,11 +171809,6 @@
171746
171809
  "queryable",
171747
171810
  false
171748
171811
  ],
171749
- [
171750
- "ranch",
171751
- "sandwich",
171752
- false
171753
- ],
171754
171812
  [
171755
171813
  "ranch",
171756
171814
  "theAble",
@@ -173625,11 +173683,6 @@
173625
173683
  "queryable",
173626
173684
  false
173627
173685
  ],
173628
- [
173629
- "asiago",
173630
- "sandwich",
173631
- false
173632
- ],
173633
173686
  [
173634
173687
  "asiago",
173635
173688
  "theAble",
@@ -173680,6 +173733,11 @@
173680
173733
  "queryable",
173681
173734
  false
173682
173735
  ],
173736
+ [
173737
+ "asiago_ranch_chicken_club",
173738
+ "sandwich",
173739
+ false
173740
+ ],
173683
173741
  [
173684
173742
  "asiago_ranch_chicken_club",
173685
173743
  "theAble",
@@ -177610,11 +177668,6 @@
177610
177668
  "queryable",
177611
177669
  false
177612
177670
  ],
177613
- [
177614
- "ranch",
177615
- "sandwich",
177616
- false
177617
- ],
177618
177671
  [
177619
177672
  "ranch",
177620
177673
  "theAble",
@@ -179489,11 +179542,6 @@
179489
179542
  "queryable",
179490
179543
  false
179491
179544
  ],
179492
- [
179493
- "asiago",
179494
- "sandwich",
179495
- false
179496
- ],
179497
179545
  [
179498
179546
  "asiago",
179499
179547
  "theAble",
@@ -179544,6 +179592,11 @@
179544
179592
  "queryable",
179545
179593
  false
179546
179594
  ],
179595
+ [
179596
+ "asiago_ranch_chicken_club",
179597
+ "sandwich",
179598
+ false
179599
+ ],
179547
179600
  [
179548
179601
  "asiago_ranch_chicken_club",
179549
179602
  "theAble",
@@ -183529,11 +183582,6 @@
183529
183582
  "queryable",
183530
183583
  false
183531
183584
  ],
183532
- [
183533
- "ranch",
183534
- "sandwich",
183535
- false
183536
- ],
183537
183585
  [
183538
183586
  "ranch",
183539
183587
  "theAble",
@@ -185408,11 +185456,6 @@
185408
185456
  "queryable",
185409
185457
  false
185410
185458
  ],
185411
- [
185412
- "asiago",
185413
- "sandwich",
185414
- false
185415
- ],
185416
185459
  [
185417
185460
  "asiago",
185418
185461
  "theAble",
@@ -185463,6 +185506,11 @@
185463
185506
  "queryable",
185464
185507
  false
185465
185508
  ],
185509
+ [
185510
+ "asiago_ranch_chicken_club",
185511
+ "sandwich",
185512
+ false
185513
+ ],
185466
185514
  [
185467
185515
  "asiago_ranch_chicken_club",
185468
185516
  "theAble",
@@ -189503,11 +189551,6 @@
189503
189551
  "queryable",
189504
189552
  false
189505
189553
  ],
189506
- [
189507
- "ranch",
189508
- "sandwich",
189509
- false
189510
- ],
189511
189554
  [
189512
189555
  "ranch",
189513
189556
  "theAble",
@@ -191417,11 +191460,6 @@
191417
191460
  "queryable",
191418
191461
  false
191419
191462
  ],
191420
- [
191421
- "asiago",
191422
- "sandwich",
191423
- false
191424
- ],
191425
191463
  [
191426
191464
  "asiago",
191427
191465
  "theAble",
@@ -191472,6 +191510,11 @@
191472
191510
  "queryable",
191473
191511
  false
191474
191512
  ],
191513
+ [
191514
+ "asiago_ranch_chicken_club",
191515
+ "sandwich",
191516
+ false
191517
+ ],
191475
191518
  [
191476
191519
  "asiago_ranch_chicken_club",
191477
191520
  "theAble",
@@ -195512,11 +195555,6 @@
195512
195555
  "queryable",
195513
195556
  false
195514
195557
  ],
195515
- [
195516
- "ranch",
195517
- "sandwich",
195518
- false
195519
- ],
195520
195558
  [
195521
195559
  "ranch",
195522
195560
  "theAble",
@@ -197542,11 +197580,6 @@
197542
197580
  "queryable",
197543
197581
  false
197544
197582
  ],
197545
- [
197546
- "asiago",
197547
- "sandwich",
197548
- false
197549
- ],
197550
197583
  [
197551
197584
  "asiago",
197552
197585
  "theAble",
@@ -197597,6 +197630,11 @@
197597
197630
  "queryable",
197598
197631
  false
197599
197632
  ],
197633
+ [
197634
+ "asiago_ranch_chicken_club",
197635
+ "sandwich",
197636
+ false
197637
+ ],
197600
197638
  [
197601
197639
  "asiago_ranch_chicken_club",
197602
197640
  "theAble",
@@ -201677,11 +201715,6 @@
201677
201715
  "queryable",
201678
201716
  false
201679
201717
  ],
201680
- [
201681
- "ranch",
201682
- "sandwich",
201683
- false
201684
- ],
201685
201718
  [
201686
201719
  "ranch",
201687
201720
  "theAble",
@@ -203611,11 +203644,6 @@
203611
203644
  "queryable",
203612
203645
  false
203613
203646
  ],
203614
- [
203615
- "asiago",
203616
- "sandwich",
203617
- false
203618
- ],
203619
203647
  [
203620
203648
  "asiago",
203621
203649
  "theAble",
@@ -203666,6 +203694,11 @@
203666
203694
  "queryable",
203667
203695
  false
203668
203696
  ],
203697
+ [
203698
+ "asiago_ranch_chicken_club",
203699
+ "sandwich",
203700
+ false
203701
+ ],
203669
203702
  [
203670
203703
  "asiago_ranch_chicken_club",
203671
203704
  "theAble",
@@ -207756,11 +207789,6 @@
207756
207789
  "queryable",
207757
207790
  false
207758
207791
  ],
207759
- [
207760
- "ranch",
207761
- "sandwich",
207762
- false
207763
- ],
207764
207792
  [
207765
207793
  "ranch",
207766
207794
  "theAble",
@@ -209745,11 +209773,6 @@
209745
209773
  "queryable",
209746
209774
  false
209747
209775
  ],
209748
- [
209749
- "asiago",
209750
- "sandwich",
209751
- false
209752
- ],
209753
209776
  [
209754
209777
  "asiago",
209755
209778
  "theAble",
@@ -209800,6 +209823,11 @@
209800
209823
  "queryable",
209801
209824
  false
209802
209825
  ],
209826
+ [
209827
+ "asiago_ranch_chicken_club",
209828
+ "sandwich",
209829
+ false
209830
+ ],
209803
209831
  [
209804
209832
  "asiago_ranch_chicken_club",
209805
209833
  "theAble",
@@ -213945,11 +213973,6 @@
213945
213973
  "queryable",
213946
213974
  false
213947
213975
  ],
213948
- [
213949
- "ranch",
213950
- "sandwich",
213951
- false
213952
- ],
213953
213976
  [
213954
213977
  "ranch",
213955
213978
  "theAble",
@@ -215948,11 +215971,6 @@
215948
215971
  "queryable",
215949
215972
  false
215950
215973
  ],
215951
- [
215952
- "asiago",
215953
- "sandwich",
215954
- false
215955
- ],
215956
215974
  [
215957
215975
  "asiago",
215958
215976
  "theAble",
@@ -216003,6 +216021,11 @@
216003
216021
  "queryable",
216004
216022
  false
216005
216023
  ],
216024
+ [
216025
+ "asiago_ranch_chicken_club",
216026
+ "sandwich",
216027
+ false
216028
+ ],
216006
216029
  [
216007
216030
  "asiago_ranch_chicken_club",
216008
216031
  "theAble",
@@ -220248,11 +220271,6 @@
220248
220271
  "queryable",
220249
220272
  false
220250
220273
  ],
220251
- [
220252
- "ranch",
220253
- "sandwich",
220254
- false
220255
- ],
220256
220274
  [
220257
220275
  "ranch",
220258
220276
  "theAble",
@@ -222272,11 +222290,6 @@
222272
222290
  "queryable",
222273
222291
  false
222274
222292
  ],
222275
- [
222276
- "asiago",
222277
- "sandwich",
222278
- false
222279
- ],
222280
222293
  [
222281
222294
  "asiago",
222282
222295
  "theAble",
@@ -222327,6 +222340,11 @@
222327
222340
  "queryable",
222328
222341
  false
222329
222342
  ],
222343
+ [
222344
+ "asiago_ranch_chicken_club",
222345
+ "sandwich",
222346
+ false
222347
+ ],
222330
222348
  [
222331
222349
  "asiago_ranch_chicken_club",
222332
222350
  "theAble",
@@ -226627,11 +226645,6 @@
226627
226645
  "queryable",
226628
226646
  false
226629
226647
  ],
226630
- [
226631
- "ranch",
226632
- "sandwich",
226633
- false
226634
- ],
226635
226648
  [
226636
226649
  "ranch",
226637
226650
  "theAble",
@@ -228630,11 +228643,6 @@
228630
228643
  "queryable",
228631
228644
  false
228632
228645
  ],
228633
- [
228634
- "asiago",
228635
- "sandwich",
228636
- false
228637
- ],
228638
228646
  [
228639
228647
  "asiago",
228640
228648
  "theAble",
@@ -228685,6 +228693,11 @@
228685
228693
  "queryable",
228686
228694
  false
228687
228695
  ],
228696
+ [
228697
+ "asiago_ranch_chicken_club",
228698
+ "sandwich",
228699
+ false
228700
+ ],
228688
228701
  [
228689
228702
  "asiago_ranch_chicken_club",
228690
228703
  "theAble",
@@ -233085,11 +233098,6 @@
233085
233098
  "queryable",
233086
233099
  false
233087
233100
  ],
233088
- [
233089
- "ranch",
233090
- "sandwich",
233091
- false
233092
- ],
233093
233101
  [
233094
233102
  "ranch",
233095
233103
  "theAble",
@@ -235207,11 +235215,6 @@
235207
235215
  "queryable",
235208
235216
  false
235209
235217
  ],
235210
- [
235211
- "asiago",
235212
- "sandwich",
235213
- false
235214
- ],
235215
235218
  [
235216
235219
  "asiago",
235217
235220
  "theAble",
@@ -235262,6 +235265,11 @@
235262
235265
  "queryable",
235263
235266
  false
235264
235267
  ],
235268
+ [
235269
+ "asiago_ranch_chicken_club",
235270
+ "sandwich",
235271
+ false
235272
+ ],
235265
235273
  [
235266
235274
  "asiago_ranch_chicken_club",
235267
235275
  "theAble",
@@ -239762,11 +239770,6 @@
239762
239770
  "queryable",
239763
239771
  false
239764
239772
  ],
239765
- [
239766
- "ranch",
239767
- "sandwich",
239768
- false
239769
- ],
239770
239773
  [
239771
239774
  "ranch",
239772
239775
  "theAble",
@@ -241765,11 +241768,6 @@
241765
241768
  "queryable",
241766
241769
  false
241767
241770
  ],
241768
- [
241769
- "asiago",
241770
- "sandwich",
241771
- false
241772
- ],
241773
241771
  [
241774
241772
  "asiago",
241775
241773
  "theAble",
@@ -241820,6 +241818,11 @@
241820
241818
  "queryable",
241821
241819
  false
241822
241820
  ],
241821
+ [
241822
+ "asiago_ranch_chicken_club",
241823
+ "sandwich",
241824
+ false
241825
+ ],
241823
241826
  [
241824
241827
  "asiago_ranch_chicken_club",
241825
241828
  "theAble",
@@ -246420,11 +246423,6 @@
246420
246423
  "queryable",
246421
246424
  false
246422
246425
  ],
246423
- [
246424
- "ranch",
246425
- "sandwich",
246426
- false
246427
- ],
246428
246426
  [
246429
246427
  "ranch",
246430
246428
  "theAble",
@@ -248465,11 +248463,6 @@
248465
248463
  "queryable",
248466
248464
  false
248467
248465
  ],
248468
- [
248469
- "asiago",
248470
- "sandwich",
248471
- false
248472
- ],
248473
248466
  [
248474
248467
  "asiago",
248475
248468
  "theAble",
@@ -248520,6 +248513,11 @@
248520
248513
  "queryable",
248521
248514
  false
248522
248515
  ],
248516
+ [
248517
+ "asiago_ranch_chicken_club",
248518
+ "sandwich",
248519
+ false
248520
+ ],
248523
248521
  [
248524
248522
  "asiago_ranch_chicken_club",
248525
248523
  "theAble",
@@ -253175,11 +253173,6 @@
253175
253173
  "queryable",
253176
253174
  false
253177
253175
  ],
253178
- [
253179
- "ranch",
253180
- "sandwich",
253181
- false
253182
- ],
253183
253176
  [
253184
253177
  "ranch",
253185
253178
  "theAble",
@@ -255298,11 +255291,6 @@
255298
255291
  "queryable",
255299
255292
  false
255300
255293
  ],
255301
- [
255302
- "asiago",
255303
- "sandwich",
255304
- false
255305
- ],
255306
255294
  [
255307
255295
  "asiago",
255308
255296
  "theAble",
@@ -255353,6 +255341,11 @@
255353
255341
  "queryable",
255354
255342
  false
255355
255343
  ],
255344
+ [
255345
+ "asiago_ranch_chicken_club",
255346
+ "sandwich",
255347
+ false
255348
+ ],
255356
255349
  [
255357
255350
  "asiago_ranch_chicken_club",
255358
255351
  "theAble",
@@ -260048,11 +260041,6 @@
260048
260041
  "queryable",
260049
260042
  false
260050
260043
  ],
260051
- [
260052
- "ranch",
260053
- "sandwich",
260054
- false
260055
- ],
260056
260044
  [
260057
260045
  "ranch",
260058
260046
  "theAble",
@@ -262144,11 +262132,6 @@
262144
262132
  "queryable",
262145
262133
  false
262146
262134
  ],
262147
- [
262148
- "asiago",
262149
- "sandwich",
262150
- false
262151
- ],
262152
262135
  [
262153
262136
  "asiago",
262154
262137
  "theAble",
@@ -262199,6 +262182,11 @@
262199
262182
  "queryable",
262200
262183
  false
262201
262184
  ],
262185
+ [
262186
+ "asiago_ranch_chicken_club",
262187
+ "sandwich",
262188
+ false
262189
+ ],
262202
262190
  [
262203
262191
  "asiago_ranch_chicken_club",
262204
262192
  "theAble",
@@ -266899,11 +266887,6 @@
266899
266887
  "queryable",
266900
266888
  false
266901
266889
  ],
266902
- [
266903
- "ranch",
266904
- "sandwich",
266905
- false
266906
- ],
266907
266890
  [
266908
266891
  "ranch",
266909
266892
  "theAble",
@@ -269017,11 +269000,6 @@
269017
269000
  "queryable",
269018
269001
  false
269019
269002
  ],
269020
- [
269021
- "asiago",
269022
- "sandwich",
269023
- false
269024
- ],
269025
269003
  [
269026
269004
  "asiago",
269027
269005
  "theAble",
@@ -269072,6 +269050,11 @@
269072
269050
  "queryable",
269073
269051
  false
269074
269052
  ],
269053
+ [
269054
+ "asiago_ranch_chicken_club",
269055
+ "sandwich",
269056
+ false
269057
+ ],
269075
269058
  [
269076
269059
  "asiago_ranch_chicken_club",
269077
269060
  "theAble",
@@ -273772,11 +273755,6 @@
273772
273755
  "queryable",
273773
273756
  false
273774
273757
  ],
273775
- [
273776
- "ranch",
273777
- "sandwich",
273778
- false
273779
- ],
273780
273758
  [
273781
273759
  "ranch",
273782
273760
  "theAble",
@@ -276036,11 +276014,6 @@
276036
276014
  "queryable",
276037
276015
  false
276038
276016
  ],
276039
- [
276040
- "asiago",
276041
- "sandwich",
276042
- false
276043
- ],
276044
276017
  [
276045
276018
  "asiago",
276046
276019
  "theAble",
@@ -276091,6 +276064,11 @@
276091
276064
  "queryable",
276092
276065
  false
276093
276066
  ],
276067
+ [
276068
+ "asiago_ranch_chicken_club",
276069
+ "sandwich",
276070
+ false
276071
+ ],
276094
276072
  [
276095
276073
  "asiago_ranch_chicken_club",
276096
276074
  "theAble",
@@ -280831,11 +280809,6 @@
280831
280809
  "queryable",
280832
280810
  false
280833
280811
  ],
280834
- [
280835
- "ranch",
280836
- "sandwich",
280837
- false
280838
- ],
280839
280812
  [
280840
280813
  "ranch",
280841
280814
  "theAble",
@@ -283115,11 +283088,6 @@
283115
283088
  "queryable",
283116
283089
  false
283117
283090
  ],
283118
- [
283119
- "asiago",
283120
- "sandwich",
283121
- false
283122
- ],
283123
283091
  [
283124
283092
  "asiago",
283125
283093
  "theAble",
@@ -283170,6 +283138,11 @@
283170
283138
  "queryable",
283171
283139
  false
283172
283140
  ],
283141
+ [
283142
+ "asiago_ranch_chicken_club",
283143
+ "sandwich",
283144
+ false
283145
+ ],
283173
283146
  [
283174
283147
  "asiago_ranch_chicken_club",
283175
283148
  "theAble",
@@ -287975,11 +287948,6 @@
287975
287948
  "queryable",
287976
287949
  false
287977
287950
  ],
287978
- [
287979
- "ranch",
287980
- "sandwich",
287981
- false
287982
- ],
287983
287951
  [
287984
287952
  "ranch",
287985
287953
  "theAble",
@@ -290259,11 +290227,6 @@
290259
290227
  "queryable",
290260
290228
  false
290261
290229
  ],
290262
- [
290263
- "asiago",
290264
- "sandwich",
290265
- false
290266
- ],
290267
290230
  [
290268
290231
  "asiago",
290269
290232
  "theAble",
@@ -290314,6 +290277,11 @@
290314
290277
  "queryable",
290315
290278
  false
290316
290279
  ],
290280
+ [
290281
+ "asiago_ranch_chicken_club",
290282
+ "sandwich",
290283
+ false
290284
+ ],
290317
290285
  [
290318
290286
  "asiago_ranch_chicken_club",
290319
290287
  "theAble",
@@ -295184,11 +295152,6 @@
295184
295152
  "queryable",
295185
295153
  false
295186
295154
  ],
295187
- [
295188
- "ranch",
295189
- "sandwich",
295190
- false
295191
- ],
295192
295155
  [
295193
295156
  "ranch",
295194
295157
  "theAble",
@@ -297529,11 +297492,6 @@
297529
297492
  "queryable",
297530
297493
  false
297531
297494
  ],
297532
- [
297533
- "asiago",
297534
- "sandwich",
297535
- false
297536
- ],
297537
297495
  [
297538
297496
  "asiago",
297539
297497
  "theAble",
@@ -297584,6 +297542,11 @@
297584
297542
  "queryable",
297585
297543
  false
297586
297544
  ],
297545
+ [
297546
+ "asiago_ranch_chicken_club",
297547
+ "sandwich",
297548
+ false
297549
+ ],
297587
297550
  [
297588
297551
  "asiago_ranch_chicken_club",
297589
297552
  "theAble",
@@ -302549,11 +302512,6 @@
302549
302512
  "queryable",
302550
302513
  false
302551
302514
  ],
302552
- [
302553
- "ranch",
302554
- "sandwich",
302555
- false
302556
- ],
302557
302515
  [
302558
302516
  "ranch",
302559
302517
  "theAble",
@@ -304843,11 +304801,6 @@
304843
304801
  "queryable",
304844
304802
  false
304845
304803
  ],
304846
- [
304847
- "asiago",
304848
- "sandwich",
304849
- false
304850
- ],
304851
304804
  [
304852
304805
  "asiago",
304853
304806
  "theAble",
@@ -304898,6 +304851,11 @@
304898
304851
  "queryable",
304899
304852
  false
304900
304853
  ],
304854
+ [
304855
+ "asiago_ranch_chicken_club",
304856
+ "sandwich",
304857
+ false
304858
+ ],
304901
304859
  [
304902
304860
  "asiago_ranch_chicken_club",
304903
304861
  "theAble",
@@ -309953,11 +309911,6 @@
309953
309911
  "queryable",
309954
309912
  false
309955
309913
  ],
309956
- [
309957
- "ranch",
309958
- "sandwich",
309959
- false
309960
- ],
309961
309914
  [
309962
309915
  "ranch",
309963
309916
  "theAble",
@@ -312432,11 +312385,6 @@
312432
312385
  "queryable",
312433
312386
  false
312434
312387
  ],
312435
- [
312436
- "asiago",
312437
- "sandwich",
312438
- false
312439
- ],
312440
312388
  [
312441
312389
  "asiago",
312442
312390
  "theAble",
@@ -312487,6 +312435,11 @@
312487
312435
  "queryable",
312488
312436
  false
312489
312437
  ],
312438
+ [
312439
+ "asiago_ranch_chicken_club",
312440
+ "sandwich",
312441
+ false
312442
+ ],
312490
312443
  [
312491
312444
  "asiago_ranch_chicken_club",
312492
312445
  "theAble",
@@ -317547,11 +317500,6 @@
317547
317500
  "queryable",
317548
317501
  false
317549
317502
  ],
317550
- [
317551
- "ranch",
317552
- "sandwich",
317553
- false
317554
- ],
317555
317503
  [
317556
317504
  "ranch",
317557
317505
  "theAble",
@@ -319923,11 +319871,6 @@
319923
319871
  "queryable",
319924
319872
  false
319925
319873
  ],
319926
- [
319927
- "asiago",
319928
- "sandwich",
319929
- false
319930
- ],
319931
319874
  [
319932
319875
  "asiago",
319933
319876
  "theAble",
@@ -319978,6 +319921,11 @@
319978
319921
  "queryable",
319979
319922
  false
319980
319923
  ],
319924
+ [
319925
+ "asiago_ranch_chicken_club",
319926
+ "sandwich",
319927
+ false
319928
+ ],
319981
319929
  [
319982
319930
  "asiago_ranch_chicken_club",
319983
319931
  "theAble",
@@ -325098,11 +325046,6 @@
325098
325046
  "queryable",
325099
325047
  false
325100
325048
  ],
325101
- [
325102
- "ranch",
325103
- "sandwich",
325104
- false
325105
- ],
325106
325049
  [
325107
325050
  "ranch",
325108
325051
  "theAble",
@@ -329981,60 +329924,6 @@
329981
329924
  0
329982
329925
  ]
329983
329926
  ],
329984
- [
329985
- [
329986
- "breakfast",
329987
- 0
329988
- ],
329989
- [
329990
- "comma",
329991
- 0
329992
- ],
329993
- [
329994
- "double",
329995
- 0
329996
- ],
329997
- [
329998
- "french",
329999
- 0
330000
- ],
330001
- [
330002
- "is",
330003
- 0
330004
- ],
330005
- [
330006
- "list",
330007
- 0
330008
- ],
330009
- [
330010
- "meal",
330011
- 0
330012
- ],
330013
- [
330014
- "muffin",
330015
- 0
330016
- ],
330017
- [
330018
- "oatmeal",
330019
- 0
330020
- ],
330021
- [
330022
- "pancake",
330023
- 0
330024
- ],
330025
- [
330026
- "platter",
330027
- 0
330028
- ],
330029
- [
330030
- "sausage",
330031
- 0
330032
- ],
330033
- [
330034
- "toast",
330035
- 0
330036
- ]
330037
- ],
330038
329927
  [
330039
329928
  [
330040
329929
  "breakfast",
@@ -330506,11 +330395,6 @@
330506
330395
  "queryable",
330507
330396
  false
330508
330397
  ],
330509
- [
330510
- "asiago",
330511
- "sandwich",
330512
- false
330513
- ],
330514
330398
  [
330515
330399
  "asiago",
330516
330400
  "theAble",
@@ -330561,6 +330445,11 @@
330561
330445
  "queryable",
330562
330446
  false
330563
330447
  ],
330448
+ [
330449
+ "asiago_ranch_chicken_club",
330450
+ "sandwich",
330451
+ false
330452
+ ],
330564
330453
  [
330565
330454
  "asiago_ranch_chicken_club",
330566
330455
  "theAble",
@@ -335726,11 +335615,6 @@
335726
335615
  "queryable",
335727
335616
  false
335728
335617
  ],
335729
- [
335730
- "ranch",
335731
- "sandwich",
335732
- false
335733
- ],
335734
335618
  [
335735
335619
  "ranch",
335736
335620
  "theAble",
@@ -339028,6 +338912,10 @@
339028
338912
  "deluxe",
339029
338913
  0
339030
338914
  ],
338915
+ [
338916
+ "double",
338917
+ 0
338918
+ ],
339031
338919
  [
339032
338920
  "homestyle",
339033
338921
  0
@@ -339051,6 +338939,10 @@
339051
338939
  [
339052
338940
  "spicy",
339053
338941
  0
338942
+ ],
338943
+ [
338944
+ "triple",
338945
+ 0
339054
338946
  ]
339055
338947
  ],
339056
338948
  [
@@ -339097,10 +338989,56 @@
339097
338989
  [
339098
338990
  "spicy",
339099
338991
  0
339100
- ],
339101
- [
339102
- "triple",
339103
- 0
338992
+ ]
338993
+ ],
338994
+ [
338995
+ [
338996
+ "bacon",
338997
+ 0
338998
+ ],
338999
+ [
339000
+ "baconator",
339001
+ 0
339002
+ ],
339003
+ [
339004
+ "cod",
339005
+ 0
339006
+ ],
339007
+ [
339008
+ "comma",
339009
+ 0
339010
+ ],
339011
+ [
339012
+ "deluxe",
339013
+ 0
339014
+ ],
339015
+ [
339016
+ "homestyle",
339017
+ 0
339018
+ ],
339019
+ [
339020
+ "is",
339021
+ 0
339022
+ ],
339023
+ [
339024
+ "list",
339025
+ 0
339026
+ ],
339027
+ [
339028
+ "meal",
339029
+ 0
339030
+ ],
339031
+ [
339032
+ "premium",
339033
+ 0
339034
+ ],
339035
+ [
339036
+ "spicy",
339037
+ 0
339038
+ ],
339039
+ [
339040
+ "triple",
339041
+ 0
339104
339042
  ]
339105
339043
  ],
339106
339044
  [
@@ -339564,11 +339502,6 @@
339564
339502
  "queryable",
339565
339503
  false
339566
339504
  ],
339567
- [
339568
- "asiago",
339569
- "sandwich",
339570
- false
339571
- ],
339572
339505
  [
339573
339506
  "asiago",
339574
339507
  "theAble",
@@ -339619,6 +339552,11 @@
339619
339552
  "queryable",
339620
339553
  false
339621
339554
  ],
339555
+ [
339556
+ "asiago_ranch_chicken_club",
339557
+ "sandwich",
339558
+ false
339559
+ ],
339622
339560
  [
339623
339561
  "asiago_ranch_chicken_club",
339624
339562
  "theAble",
@@ -344809,11 +344747,6 @@
344809
344747
  "queryable",
344810
344748
  false
344811
344749
  ],
344812
- [
344813
- "ranch",
344814
- "sandwich",
344815
- false
344816
- ],
344817
344750
  [
344818
344751
  "ranch",
344819
344752
  "theAble",
@@ -347163,11 +347096,6 @@
347163
347096
  "queryable",
347164
347097
  false
347165
347098
  ],
347166
- [
347167
- "asiago",
347168
- "sandwich",
347169
- false
347170
- ],
347171
347099
  [
347172
347100
  "asiago",
347173
347101
  "theAble",
@@ -347218,6 +347146,11 @@
347218
347146
  "queryable",
347219
347147
  false
347220
347148
  ],
347149
+ [
347150
+ "asiago_ranch_chicken_club",
347151
+ "sandwich",
347152
+ false
347153
+ ],
347221
347154
  [
347222
347155
  "asiago_ranch_chicken_club",
347223
347156
  "theAble",
@@ -352543,11 +352476,6 @@
352543
352476
  "queryable",
352544
352477
  false
352545
352478
  ],
352546
- [
352547
- "ranch",
352548
- "sandwich",
352549
- false
352550
- ],
352551
352479
  [
352552
352480
  "ranch",
352553
352481
  "theAble",
@@ -354897,11 +354825,6 @@
354897
354825
  "queryable",
354898
354826
  false
354899
354827
  ],
354900
- [
354901
- "asiago",
354902
- "sandwich",
354903
- false
354904
- ],
354905
354828
  [
354906
354829
  "asiago",
354907
354830
  "theAble",
@@ -354952,6 +354875,11 @@
354952
354875
  "queryable",
354953
354876
  false
354954
354877
  ],
354878
+ [
354879
+ "asiago_ranch_chicken_club",
354880
+ "sandwich",
354881
+ false
354882
+ ],
354955
354883
  [
354956
354884
  "asiago_ranch_chicken_club",
354957
354885
  "theAble",
@@ -360412,11 +360340,6 @@
360412
360340
  "queryable",
360413
360341
  false
360414
360342
  ],
360415
- [
360416
- "ranch",
360417
- "sandwich",
360418
- false
360419
- ],
360420
360343
  [
360421
360344
  "ranch",
360422
360345
  "theAble",
@@ -362770,11 +362693,6 @@
362770
362693
  "queryable",
362771
362694
  false
362772
362695
  ],
362773
- [
362774
- "asiago",
362775
- "sandwich",
362776
- false
362777
- ],
362778
362696
  [
362779
362697
  "asiago",
362780
362698
  "theAble",
@@ -362825,6 +362743,11 @@
362825
362743
  "queryable",
362826
362744
  false
362827
362745
  ],
362746
+ [
362747
+ "asiago_ranch_chicken_club",
362748
+ "sandwich",
362749
+ false
362750
+ ],
362828
362751
  [
362829
362752
  "asiago_ranch_chicken_club",
362830
362753
  "theAble",
@@ -368375,11 +368298,6 @@
368375
368298
  "queryable",
368376
368299
  false
368377
368300
  ],
368378
- [
368379
- "ranch",
368380
- "sandwich",
368381
- false
368382
- ],
368383
368301
  [
368384
368302
  "ranch",
368385
368303
  "theAble",
@@ -372083,11 +372001,6 @@
372083
372001
  "queryable",
372084
372002
  false
372085
372003
  ],
372086
- [
372087
- "asiago",
372088
- "sandwich",
372089
- false
372090
- ],
372091
372004
  [
372092
372005
  "asiago",
372093
372006
  "theAble",
@@ -372138,6 +372051,11 @@
372138
372051
  "queryable",
372139
372052
  false
372140
372053
  ],
372054
+ [
372055
+ "asiago_ranch_chicken_club",
372056
+ "sandwich",
372057
+ false
372058
+ ],
372141
372059
  [
372142
372060
  "asiago_ranch_chicken_club",
372143
372061
  "theAble",
@@ -377788,11 +377706,6 @@
377788
377706
  "queryable",
377789
377707
  false
377790
377708
  ],
377791
- [
377792
- "ranch",
377793
- "sandwich",
377794
- false
377795
- ],
377796
377709
  [
377797
377710
  "ranch",
377798
377711
  "theAble",
@@ -380252,11 +380165,6 @@
380252
380165
  "queryable",
380253
380166
  false
380254
380167
  ],
380255
- [
380256
- "asiago",
380257
- "sandwich",
380258
- false
380259
- ],
380260
380168
  [
380261
380169
  "asiago",
380262
380170
  "theAble",
@@ -380307,6 +380215,11 @@
380307
380215
  "queryable",
380308
380216
  false
380309
380217
  ],
380218
+ [
380219
+ "asiago_ranch_chicken_club",
380220
+ "sandwich",
380221
+ false
380222
+ ],
380310
380223
  [
380311
380224
  "asiago_ranch_chicken_club",
380312
380225
  "theAble",
@@ -386007,11 +385920,6 @@
386007
385920
  "queryable",
386008
385921
  false
386009
385922
  ],
386010
- [
386011
- "ranch",
386012
- "sandwich",
386013
- false
386014
- ],
386015
385923
  [
386016
385924
  "ranch",
386017
385925
  "theAble",
@@ -388547,11 +388455,6 @@
388547
388455
  "queryable",
388548
388456
  false
388549
388457
  ],
388550
- [
388551
- "asiago",
388552
- "sandwich",
388553
- false
388554
- ],
388555
388458
  [
388556
388459
  "asiago",
388557
388460
  "theAble",
@@ -388602,6 +388505,11 @@
388602
388505
  "queryable",
388603
388506
  false
388604
388507
  ],
388508
+ [
388509
+ "asiago_ranch_chicken_club",
388510
+ "sandwich",
388511
+ false
388512
+ ],
388605
388513
  [
388606
388514
  "asiago_ranch_chicken_club",
388607
388515
  "theAble",
@@ -394357,11 +394265,6 @@
394357
394265
  "queryable",
394358
394266
  false
394359
394267
  ],
394360
- [
394361
- "ranch",
394362
- "sandwich",
394363
- false
394364
- ],
394365
394268
  [
394366
394269
  "ranch",
394367
394270
  "theAble",
@@ -396860,11 +396763,6 @@
396860
396763
  "queryable",
396861
396764
  false
396862
396765
  ],
396863
- [
396864
- "asiago",
396865
- "sandwich",
396866
- false
396867
- ],
396868
396766
  [
396869
396767
  "asiago",
396870
396768
  "theAble",
@@ -396915,6 +396813,11 @@
396915
396813
  "queryable",
396916
396814
  false
396917
396815
  ],
396816
+ [
396817
+ "asiago_ranch_chicken_club",
396818
+ "sandwich",
396819
+ false
396820
+ ],
396918
396821
  [
396919
396822
  "asiago_ranch_chicken_club",
396920
396823
  "theAble",
@@ -402760,11 +402663,6 @@
402760
402663
  "queryable",
402761
402664
  false
402762
402665
  ],
402763
- [
402764
- "ranch",
402765
- "sandwich",
402766
- false
402767
- ],
402768
402666
  [
402769
402667
  "ranch",
402770
402668
  "theAble",
@@ -405263,11 +405161,6 @@
405263
405161
  "queryable",
405264
405162
  false
405265
405163
  ],
405266
- [
405267
- "asiago",
405268
- "sandwich",
405269
- false
405270
- ],
405271
405164
  [
405272
405165
  "asiago",
405273
405166
  "theAble",
@@ -405318,6 +405211,11 @@
405318
405211
  "queryable",
405319
405212
  false
405320
405213
  ],
405214
+ [
405215
+ "asiago_ranch_chicken_club",
405216
+ "sandwich",
405217
+ false
405218
+ ],
405321
405219
  [
405322
405220
  "asiago_ranch_chicken_club",
405323
405221
  "theAble",
@@ -411253,11 +411151,6 @@
411253
411151
  "queryable",
411254
411152
  false
411255
411153
  ],
411256
- [
411257
- "ranch",
411258
- "sandwich",
411259
- false
411260
- ],
411261
411154
  [
411262
411155
  "ranch",
411263
411156
  "theAble",
@@ -413756,11 +413649,6 @@
413756
413649
  "queryable",
413757
413650
  false
413758
413651
  ],
413759
- [
413760
- "asiago",
413761
- "sandwich",
413762
- false
413763
- ],
413764
413652
  [
413765
413653
  "asiago",
413766
413654
  "theAble",
@@ -413811,6 +413699,11 @@
413811
413699
  "queryable",
413812
413700
  false
413813
413701
  ],
413702
+ [
413703
+ "asiago_ranch_chicken_club",
413704
+ "sandwich",
413705
+ false
413706
+ ],
413814
413707
  [
413815
413708
  "asiago_ranch_chicken_club",
413816
413709
  "theAble",
@@ -419836,11 +419729,6 @@
419836
419729
  "queryable",
419837
419730
  false
419838
419731
  ],
419839
- [
419840
- "ranch",
419841
- "sandwich",
419842
- false
419843
- ],
419844
419732
  [
419845
419733
  "ranch",
419846
419734
  "theAble",
@@ -422325,11 +422213,6 @@
422325
422213
  "queryable",
422326
422214
  false
422327
422215
  ],
422328
- [
422329
- "asiago",
422330
- "sandwich",
422331
- false
422332
- ],
422333
422216
  [
422334
422217
  "asiago",
422335
422218
  "theAble",
@@ -422380,6 +422263,11 @@
422380
422263
  "queryable",
422381
422264
  false
422382
422265
  ],
422266
+ [
422267
+ "asiago_ranch_chicken_club",
422268
+ "sandwich",
422269
+ false
422270
+ ],
422383
422271
  [
422384
422272
  "asiago_ranch_chicken_club",
422385
422273
  "theAble",
@@ -428415,11 +428303,6 @@
428415
428303
  "queryable",
428416
428304
  false
428417
428305
  ],
428418
- [
428419
- "ranch",
428420
- "sandwich",
428421
- false
428422
- ],
428423
428306
  [
428424
428307
  "ranch",
428425
428308
  "theAble",
@@ -430994,11 +430877,6 @@
430994
430877
  "queryable",
430995
430878
  false
430996
430879
  ],
430997
- [
430998
- "asiago",
430999
- "sandwich",
431000
- false
431001
- ],
431002
430880
  [
431003
430881
  "asiago",
431004
430882
  "theAble",
@@ -431049,6 +430927,11 @@
431049
430927
  "queryable",
431050
430928
  false
431051
430929
  ],
430930
+ [
430931
+ "asiago_ranch_chicken_club",
430932
+ "sandwich",
430933
+ false
430934
+ ],
431052
430935
  [
431053
430936
  "asiago_ranch_chicken_club",
431054
430937
  "theAble",
@@ -437084,11 +436967,6 @@
437084
436967
  "queryable",
437085
436968
  false
437086
436969
  ],
437087
- [
437088
- "ranch",
437089
- "sandwich",
437090
- false
437091
- ],
437092
436970
  [
437093
436971
  "ranch",
437094
436972
  "theAble",
@@ -439697,11 +439575,6 @@
439697
439575
  "queryable",
439698
439576
  false
439699
439577
  ],
439700
- [
439701
- "asiago",
439702
- "sandwich",
439703
- false
439704
- ],
439705
439578
  [
439706
439579
  "asiago",
439707
439580
  "theAble",
@@ -439752,6 +439625,11 @@
439752
439625
  "queryable",
439753
439626
  false
439754
439627
  ],
439628
+ [
439629
+ "asiago_ranch_chicken_club",
439630
+ "sandwich",
439631
+ false
439632
+ ],
439755
439633
  [
439756
439634
  "asiago_ranch_chicken_club",
439757
439635
  "theAble",
@@ -445877,11 +445755,6 @@
445877
445755
  "queryable",
445878
445756
  false
445879
445757
  ],
445880
- [
445881
- "ranch",
445882
- "sandwich",
445883
- false
445884
- ],
445885
445758
  [
445886
445759
  "ranch",
445887
445760
  "theAble",
@@ -448611,11 +448484,6 @@
448611
448484
  "queryable",
448612
448485
  false
448613
448486
  ],
448614
- [
448615
- "asiago",
448616
- "sandwich",
448617
- false
448618
- ],
448619
448487
  [
448620
448488
  "asiago",
448621
448489
  "theAble",
@@ -448666,6 +448534,11 @@
448666
448534
  "queryable",
448667
448535
  false
448668
448536
  ],
448537
+ [
448538
+ "asiago_ranch_chicken_club",
448539
+ "sandwich",
448540
+ false
448541
+ ],
448669
448542
  [
448670
448543
  "asiago_ranch_chicken_club",
448671
448544
  "theAble",
@@ -454836,11 +454709,6 @@
454836
454709
  "queryable",
454837
454710
  false
454838
454711
  ],
454839
- [
454840
- "ranch",
454841
- "sandwich",
454842
- false
454843
- ],
454844
454712
  [
454845
454713
  "ranch",
454846
454714
  "theAble",
@@ -457947,11 +457815,6 @@
457947
457815
  "queryable",
457948
457816
  false
457949
457817
  ],
457950
- [
457951
- "asiago",
457952
- "sandwich",
457953
- false
457954
- ],
457955
457818
  [
457956
457819
  "asiago",
457957
457820
  "theAble",
@@ -458002,6 +457865,11 @@
458002
457865
  "queryable",
458003
457866
  false
458004
457867
  ],
457868
+ [
457869
+ "asiago_ranch_chicken_club",
457870
+ "sandwich",
457871
+ false
457872
+ ],
458005
457873
  [
458006
457874
  "asiago_ranch_chicken_club",
458007
457875
  "theAble",
@@ -464172,11 +464040,6 @@
464172
464040
  "queryable",
464173
464041
  false
464174
464042
  ],
464175
- [
464176
- "ranch",
464177
- "sandwich",
464178
- false
464179
- ],
464180
464043
  [
464181
464044
  "ranch",
464182
464045
  "theAble",
@@ -466933,11 +466796,6 @@
466933
466796
  "queryable",
466934
466797
  false
466935
466798
  ],
466936
- [
466937
- "asiago",
466938
- "sandwich",
466939
- false
466940
- ],
466941
466799
  [
466942
466800
  "asiago",
466943
466801
  "theAble",
@@ -466988,6 +466846,11 @@
466988
466846
  "queryable",
466989
466847
  false
466990
466848
  ],
466849
+ [
466850
+ "asiago_ranch_chicken_club",
466851
+ "sandwich",
466852
+ false
466853
+ ],
466991
466854
  [
466992
466855
  "asiago_ranch_chicken_club",
466993
466856
  "theAble",
@@ -473258,11 +473121,6 @@
473258
473121
  "queryable",
473259
473122
  false
473260
473123
  ],
473261
- [
473262
- "ranch",
473263
- "sandwich",
473264
- false
473265
- ],
473266
473124
  [
473267
473125
  "ranch",
473268
473126
  "theAble",
@@ -476019,11 +475877,6 @@
476019
475877
  "queryable",
476020
475878
  false
476021
475879
  ],
476022
- [
476023
- "asiago",
476024
- "sandwich",
476025
- false
476026
- ],
476027
475880
  [
476028
475881
  "asiago",
476029
475882
  "theAble",
@@ -476074,6 +475927,11 @@
476074
475927
  "queryable",
476075
475928
  false
476076
475929
  ],
475930
+ [
475931
+ "asiago_ranch_chicken_club",
475932
+ "sandwich",
475933
+ false
475934
+ ],
476077
475935
  [
476078
475936
  "asiago_ranch_chicken_club",
476079
475937
  "theAble",
@@ -482399,11 +482257,6 @@
482399
482257
  "queryable",
482400
482258
  false
482401
482259
  ],
482402
- [
482403
- "ranch",
482404
- "sandwich",
482405
- false
482406
- ],
482407
482260
  [
482408
482261
  "ranch",
482409
482262
  "theAble",
@@ -485160,11 +485013,6 @@
485160
485013
  "queryable",
485161
485014
  false
485162
485015
  ],
485163
- [
485164
- "asiago",
485165
- "sandwich",
485166
- false
485167
- ],
485168
485016
  [
485169
485017
  "asiago",
485170
485018
  "theAble",
@@ -485215,6 +485063,11 @@
485215
485063
  "queryable",
485216
485064
  false
485217
485065
  ],
485066
+ [
485067
+ "asiago_ranch_chicken_club",
485068
+ "sandwich",
485069
+ false
485070
+ ],
485218
485071
  [
485219
485072
  "asiago_ranch_chicken_club",
485220
485073
  "theAble",
@@ -491595,11 +491448,6 @@
491595
491448
  "queryable",
491596
491449
  false
491597
491450
  ],
491598
- [
491599
- "ranch",
491600
- "sandwich",
491601
- false
491602
- ],
491603
491451
  [
491604
491452
  "ranch",
491605
491453
  "theAble",
@@ -494208,11 +494056,6 @@
494208
494056
  "queryable",
494209
494057
  false
494210
494058
  ],
494211
- [
494212
- "asiago",
494213
- "sandwich",
494214
- false
494215
- ],
494216
494059
  [
494217
494060
  "asiago",
494218
494061
  "theAble",
@@ -494263,6 +494106,11 @@
494263
494106
  "queryable",
494264
494107
  false
494265
494108
  ],
494109
+ [
494110
+ "asiago_ranch_chicken_club",
494111
+ "sandwich",
494112
+ false
494113
+ ],
494266
494114
  [
494267
494115
  "asiago_ranch_chicken_club",
494268
494116
  "theAble",
@@ -500733,11 +500581,6 @@
500733
500581
  "queryable",
500734
500582
  false
500735
500583
  ],
500736
- [
500737
- "ranch",
500738
- "sandwich",
500739
- false
500740
- ],
500741
500584
  [
500742
500585
  "ranch",
500743
500586
  "theAble",
@@ -503346,11 +503189,6 @@
503346
503189
  "queryable",
503347
503190
  false
503348
503191
  ],
503349
- [
503350
- "asiago",
503351
- "sandwich",
503352
- false
503353
- ],
503354
503192
  [
503355
503193
  "asiago",
503356
503194
  "theAble",
@@ -503401,6 +503239,11 @@
503401
503239
  "queryable",
503402
503240
  false
503403
503241
  ],
503242
+ [
503243
+ "asiago_ranch_chicken_club",
503244
+ "sandwich",
503245
+ false
503246
+ ],
503404
503247
  [
503405
503248
  "asiago_ranch_chicken_club",
503406
503249
  "theAble",
@@ -509871,11 +509714,6 @@
509871
509714
  "queryable",
509872
509715
  false
509873
509716
  ],
509874
- [
509875
- "ranch",
509876
- "sandwich",
509877
- false
509878
- ],
509879
509717
  [
509880
509718
  "ranch",
509881
509719
  "theAble",
@@ -512570,11 +512408,6 @@
512570
512408
  "queryable",
512571
512409
  false
512572
512410
  ],
512573
- [
512574
- "asiago",
512575
- "sandwich",
512576
- false
512577
- ],
512578
512411
  [
512579
512412
  "asiago",
512580
512413
  "theAble",
@@ -512625,6 +512458,11 @@
512625
512458
  "queryable",
512626
512459
  false
512627
512460
  ],
512461
+ [
512462
+ "asiago_ranch_chicken_club",
512463
+ "sandwich",
512464
+ false
512465
+ ],
512628
512466
  [
512629
512467
  "asiago_ranch_chicken_club",
512630
512468
  "theAble",
@@ -519185,11 +519023,6 @@
519185
519023
  "queryable",
519186
519024
  false
519187
519025
  ],
519188
- [
519189
- "ranch",
519190
- "sandwich",
519191
- false
519192
- ],
519193
519026
  [
519194
519027
  "ranch",
519195
519028
  "theAble",
@@ -522028,11 +521861,6 @@
522028
521861
  "queryable",
522029
521862
  false
522030
521863
  ],
522031
- [
522032
- "asiago",
522033
- "sandwich",
522034
- false
522035
- ],
522036
521864
  [
522037
521865
  "asiago",
522038
521866
  "theAble",
@@ -522083,6 +521911,11 @@
522083
521911
  "queryable",
522084
521912
  false
522085
521913
  ],
521914
+ [
521915
+ "asiago_ranch_chicken_club",
521916
+ "sandwich",
521917
+ false
521918
+ ],
522086
521919
  [
522087
521920
  "asiago_ranch_chicken_club",
522088
521921
  "theAble",
@@ -528648,11 +528481,6 @@
528648
528481
  "queryable",
528649
528482
  false
528650
528483
  ],
528651
- [
528652
- "ranch",
528653
- "sandwich",
528654
- false
528655
- ],
528656
528484
  [
528657
528485
  "ranch",
528658
528486
  "theAble",
@@ -531451,11 +531279,6 @@
531451
531279
  "queryable",
531452
531280
  false
531453
531281
  ],
531454
- [
531455
- "asiago",
531456
- "sandwich",
531457
- false
531458
- ],
531459
531282
  [
531460
531283
  "asiago",
531461
531284
  "theAble",
@@ -531506,6 +531329,11 @@
531506
531329
  "queryable",
531507
531330
  false
531508
531331
  ],
531332
+ [
531333
+ "asiago_ranch_chicken_club",
531334
+ "sandwich",
531335
+ false
531336
+ ],
531509
531337
  [
531510
531338
  "asiago_ranch_chicken_club",
531511
531339
  "theAble",
@@ -538071,11 +537899,6 @@
538071
537899
  "queryable",
538072
537900
  false
538073
537901
  ],
538074
- [
538075
- "ranch",
538076
- "sandwich",
538077
- false
538078
- ],
538079
537902
  [
538080
537903
  "ranch",
538081
537904
  "theAble",
@@ -540975,11 +540798,6 @@
540975
540798
  "queryable",
540976
540799
  false
540977
540800
  ],
540978
- [
540979
- "asiago",
540980
- "sandwich",
540981
- false
540982
- ],
540983
540801
  [
540984
540802
  "asiago",
540985
540803
  "theAble",
@@ -541030,6 +540848,11 @@
541030
540848
  "queryable",
541031
540849
  false
541032
540850
  ],
540851
+ [
540852
+ "asiago_ranch_chicken_club",
540853
+ "sandwich",
540854
+ false
540855
+ ],
541033
540856
  [
541034
540857
  "asiago_ranch_chicken_club",
541035
540858
  "theAble",
@@ -547725,11 +547548,6 @@
547725
547548
  "queryable",
547726
547549
  false
547727
547550
  ],
547728
- [
547729
- "ranch",
547730
- "sandwich",
547731
- false
547732
- ],
547733
547551
  [
547734
547552
  "ranch",
547735
547553
  "theAble",
@@ -551900,11 +551718,6 @@
551900
551718
  "queryable",
551901
551719
  false
551902
551720
  ],
551903
- [
551904
- "asiago",
551905
- "sandwich",
551906
- false
551907
- ],
551908
551721
  [
551909
551722
  "asiago",
551910
551723
  "theAble",
@@ -551955,6 +551768,11 @@
551955
551768
  "queryable",
551956
551769
  false
551957
551770
  ],
551771
+ [
551772
+ "asiago_ranch_chicken_club",
551773
+ "sandwich",
551774
+ false
551775
+ ],
551958
551776
  [
551959
551777
  "asiago_ranch_chicken_club",
551960
551778
  "theAble",
@@ -558680,11 +558498,6 @@
558680
558498
  "queryable",
558681
558499
  false
558682
558500
  ],
558683
- [
558684
- "ranch",
558685
- "sandwich",
558686
- false
558687
- ],
558688
558501
  [
558689
558502
  "ranch",
558690
558503
  "theAble",
@@ -561658,11 +561471,6 @@
561658
561471
  "queryable",
561659
561472
  false
561660
561473
  ],
561661
- [
561662
- "asiago",
561663
- "sandwich",
561664
- false
561665
- ],
561666
561474
  [
561667
561475
  "asiago",
561668
561476
  "theAble",
@@ -561713,6 +561521,11 @@
561713
561521
  "queryable",
561714
561522
  false
561715
561523
  ],
561524
+ [
561525
+ "asiago_ranch_chicken_club",
561526
+ "sandwich",
561527
+ false
561528
+ ],
561716
561529
  [
561717
561530
  "asiago_ranch_chicken_club",
561718
561531
  "theAble",
@@ -568498,11 +568311,6 @@
568498
568311
  "queryable",
568499
568312
  false
568500
568313
  ],
568501
- [
568502
- "ranch",
568503
- "sandwich",
568504
- false
568505
- ],
568506
568314
  [
568507
568315
  "ranch",
568508
568316
  "theAble",
@@ -572384,10 +572192,6 @@
572384
572192
  "is",
572385
572193
  0
572386
572194
  ],
572387
- [
572388
- "junior",
572389
- 0
572390
- ],
572391
572195
  [
572392
572196
  "list",
572393
572197
  0
@@ -572402,18 +572206,10 @@
572402
572206
  ]
572403
572207
  ],
572404
572208
  [
572405
- [
572406
- "chicken",
572407
- 0
572408
- ],
572409
572209
  [
572410
572210
  "club",
572411
572211
  0
572412
572212
  ],
572413
- [
572414
- "crispy",
572415
- 0
572416
- ],
572417
572213
  [
572418
572214
  "is",
572419
572215
  0
@@ -572432,10 +572228,6 @@
572432
572228
  ]
572433
572229
  ],
572434
572230
  [
572435
- [
572436
- "club",
572437
- 0
572438
- ],
572439
572231
  [
572440
572232
  "is",
572441
572233
  0
@@ -572453,34 +572245,6 @@
572453
572245
  0
572454
572246
  ]
572455
572247
  ],
572456
- [
572457
- [
572458
- "is",
572459
- 0
572460
- ],
572461
- [
572462
- "list",
572463
- 0
572464
- ],
572465
- [
572466
- "meal",
572467
- 0
572468
- ],
572469
- [
572470
- "value",
572471
- 0
572472
- ]
572473
- ],
572474
- [
572475
- [
572476
- "is",
572477
- 0
572478
- ],
572479
- [
572480
- "list",
572481
- 1
572482
- ]
572483
- ],
572484
572248
  [
572485
572249
  [
572486
572250
  "is",
@@ -572489,14 +572253,6 @@
572489
572253
  [
572490
572254
  "list",
572491
572255
  1
572492
- ],
572493
- [
572494
- "meal",
572495
- 0
572496
- ],
572497
- [
572498
- "value",
572499
- 0
572500
572256
  ]
572501
572257
  ],
572502
572258
  [
@@ -572841,11 +572597,6 @@
572841
572597
  "queryable",
572842
572598
  false
572843
572599
  ],
572844
- [
572845
- "asiago",
572846
- "sandwich",
572847
- false
572848
- ],
572849
572600
  [
572850
572601
  "asiago",
572851
572602
  "theAble",
@@ -572896,6 +572647,11 @@
572896
572647
  "queryable",
572897
572648
  false
572898
572649
  ],
572650
+ [
572651
+ "asiago_ranch_chicken_club",
572652
+ "sandwich",
572653
+ false
572654
+ ],
572899
572655
  [
572900
572656
  "asiago_ranch_chicken_club",
572901
572657
  "theAble",
@@ -579701,11 +579457,6 @@
579701
579457
  "queryable",
579702
579458
  false
579703
579459
  ],
579704
- [
579705
- "ranch",
579706
- "sandwich",
579707
- false
579708
- ],
579709
579460
  [
579710
579461
  "ranch",
579711
579462
  "theAble",
@@ -582703,7 +582454,7 @@
582703
582454
  ]
582704
582455
  },
582705
582456
  {
582706
- "apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (let modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (let item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
582457
+ "apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n const hasDrink = (isA, item) => {\n let hasDrink = false\n for (const modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n const needsDrink = (item) => {\n return item.needsDrink\n }\n\n const askAbout = ({api, isA}) => {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (const item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
582707
582458
  },
582708
582459
  {
582709
582460
  "extraConfig": true,
@@ -583553,10 +583304,64 @@
583553
583304
  "ultimate",
583554
583305
  0
583555
583306
  ],
583556
- [
583557
- "unknown",
583558
- 0
583559
- ],
583307
+ [
583308
+ "unknown",
583309
+ 0
583310
+ ],
583311
+ [
583312
+ "unknown",
583313
+ 1
583314
+ ]
583315
+ ],
583316
+ [
583317
+ [
583318
+ "asiago",
583319
+ 0
583320
+ ],
583321
+ [
583322
+ "chicken",
583323
+ 0
583324
+ ],
583325
+ [
583326
+ "club",
583327
+ 0
583328
+ ],
583329
+ [
583330
+ "cod",
583331
+ 0
583332
+ ],
583333
+ [
583334
+ "comma",
583335
+ 0
583336
+ ],
583337
+ [
583338
+ "grill",
583339
+ 0
583340
+ ],
583341
+ [
583342
+ "is",
583343
+ 0
583344
+ ],
583345
+ [
583346
+ "list",
583347
+ 0
583348
+ ],
583349
+ [
583350
+ "premium",
583351
+ 0
583352
+ ],
583353
+ [
583354
+ "ranch",
583355
+ 0
583356
+ ],
583357
+ [
583358
+ "sandwich",
583359
+ 0
583360
+ ],
583361
+ [
583362
+ "ultimate",
583363
+ 0
583364
+ ],
583560
583365
  [
583561
583366
  "unknown",
583562
583367
  1
@@ -583564,27 +583369,31 @@
583564
583369
  ],
583565
583370
  [
583566
583371
  [
583567
- "asiago",
583372
+ "bacon",
583568
583373
  0
583569
583374
  ],
583570
583375
  [
583571
- "chicken",
583376
+ "baconator",
583572
583377
  0
583573
583378
  ],
583574
583379
  [
583575
- "club",
583380
+ "cod",
583576
583381
  0
583577
583382
  ],
583578
583383
  [
583579
- "cod",
583384
+ "comma",
583580
583385
  0
583581
583386
  ],
583582
583387
  [
583583
- "comma",
583388
+ "deluxe",
583584
583389
  0
583585
583390
  ],
583586
583391
  [
583587
- "grill",
583392
+ "double",
583393
+ 0
583394
+ ],
583395
+ [
583396
+ "homestyle",
583588
583397
  0
583589
583398
  ],
583590
583399
  [
@@ -583596,24 +583405,24 @@
583596
583405
  0
583597
583406
  ],
583598
583407
  [
583599
- "premium",
583408
+ "meal",
583600
583409
  0
583601
583410
  ],
583602
583411
  [
583603
- "ranch",
583412
+ "premium",
583604
583413
  0
583605
583414
  ],
583606
583415
  [
583607
- "sandwich",
583416
+ "single",
583608
583417
  0
583609
583418
  ],
583610
583419
  [
583611
- "ultimate",
583420
+ "spicy",
583612
583421
  0
583613
583422
  ],
583614
583423
  [
583615
- "unknown",
583616
- 1
583424
+ "triple",
583425
+ 0
583617
583426
  ]
583618
583427
  ],
583619
583428
  [
@@ -583661,10 +583470,6 @@
583661
583470
  "premium",
583662
583471
  0
583663
583472
  ],
583664
- [
583665
- "single",
583666
- 0
583667
- ],
583668
583473
  [
583669
583474
  "spicy",
583670
583475
  0
@@ -584322,6 +584127,52 @@
584322
584127
  0
584323
584128
  ]
584324
584129
  ],
584130
+ [
584131
+ [
584132
+ "banana",
584133
+ 0
584134
+ ],
584135
+ [
584136
+ "berry",
584137
+ 0
584138
+ ],
584139
+ [
584140
+ "comma",
584141
+ 0
584142
+ ],
584143
+ [
584144
+ "countable",
584145
+ 0
584146
+ ],
584147
+ [
584148
+ "guava",
584149
+ 0
584150
+ ],
584151
+ [
584152
+ "is",
584153
+ 0
584154
+ ],
584155
+ [
584156
+ "list",
584157
+ 0
584158
+ ],
584159
+ [
584160
+ "mango",
584161
+ 0
584162
+ ],
584163
+ [
584164
+ "passion",
584165
+ 0
584166
+ ],
584167
+ [
584168
+ "strawberry",
584169
+ 0
584170
+ ],
584171
+ [
584172
+ "wild",
584173
+ 0
584174
+ ]
584175
+ ],
584325
584176
  [
584326
584177
  [
584327
584178
  "banana",
@@ -584448,6 +584299,56 @@
584448
584299
  0
584449
584300
  ]
584450
584301
  ],
584302
+ [
584303
+ [
584304
+ "banana",
584305
+ 0
584306
+ ],
584307
+ [
584308
+ "berry",
584309
+ 0
584310
+ ],
584311
+ [
584312
+ "comma",
584313
+ 0
584314
+ ],
584315
+ [
584316
+ "guava",
584317
+ 0
584318
+ ],
584319
+ [
584320
+ "ingredient",
584321
+ 0
584322
+ ],
584323
+ [
584324
+ "is",
584325
+ 0
584326
+ ],
584327
+ [
584328
+ "list",
584329
+ 0
584330
+ ],
584331
+ [
584332
+ "mango",
584333
+ 0
584334
+ ],
584335
+ [
584336
+ "passion",
584337
+ 0
584338
+ ],
584339
+ [
584340
+ "smoothie",
584341
+ 0
584342
+ ],
584343
+ [
584344
+ "strawberry",
584345
+ 0
584346
+ ],
584347
+ [
584348
+ "wild",
584349
+ 0
584350
+ ]
584351
+ ],
584451
584352
  [
584452
584353
  [
584453
584354
  "banana",
@@ -585310,60 +585211,6 @@
585310
585211
  0
585311
585212
  ]
585312
585213
  ],
585313
- [
585314
- [
585315
- "breakfast",
585316
- 0
585317
- ],
585318
- [
585319
- "comma",
585320
- 0
585321
- ],
585322
- [
585323
- "double",
585324
- 0
585325
- ],
585326
- [
585327
- "french",
585328
- 0
585329
- ],
585330
- [
585331
- "is",
585332
- 0
585333
- ],
585334
- [
585335
- "list",
585336
- 0
585337
- ],
585338
- [
585339
- "meal",
585340
- 0
585341
- ],
585342
- [
585343
- "muffin",
585344
- 0
585345
- ],
585346
- [
585347
- "oatmeal",
585348
- 0
585349
- ],
585350
- [
585351
- "pancake",
585352
- 0
585353
- ],
585354
- [
585355
- "platter",
585356
- 0
585357
- ],
585358
- [
585359
- "sausage",
585360
- 0
585361
- ],
585362
- [
585363
- "toast",
585364
- 0
585365
- ]
585366
- ],
585367
585214
  [
585368
585215
  [
585369
585216
  "breakfast",
@@ -586042,40 +585889,6 @@
586042
585889
  0
586043
585890
  ]
586044
585891
  ],
586045
- [
586046
- [
586047
- "chicken",
586048
- 0
586049
- ],
586050
- [
586051
- "club",
586052
- 0
586053
- ],
586054
- [
586055
- "crispy",
586056
- 0
586057
- ],
586058
- [
586059
- "is",
586060
- 0
586061
- ],
586062
- [
586063
- "junior",
586064
- 0
586065
- ],
586066
- [
586067
- "list",
586068
- 0
586069
- ],
586070
- [
586071
- "meal",
586072
- 0
586073
- ],
586074
- [
586075
- "value",
586076
- 0
586077
- ]
586078
- ],
586079
585892
  [
586080
585893
  [
586081
585894
  "chicken",
@@ -588228,24 +588041,6 @@
588228
588041
  0
588229
588042
  ]
588230
588043
  ],
588231
- [
588232
- [
588233
- "is",
588234
- 0
588235
- ],
588236
- [
588237
- "list",
588238
- 1
588239
- ],
588240
- [
588241
- "meal",
588242
- 0
588243
- ],
588244
- [
588245
- "value",
588246
- 0
588247
- ]
588248
- ],
588249
588044
  [
588250
588045
  [
588251
588046
  "is",
@@ -588668,24 +588463,6 @@
588668
588463
  1
588669
588464
  ]
588670
588465
  ],
588671
- [
588672
- [
588673
- "list",
588674
- 1
588675
- ],
588676
- [
588677
- "modifies",
588678
- 0
588679
- ],
588680
- [
588681
- "strawberry",
588682
- 0
588683
- ],
588684
- [
588685
- "unknown",
588686
- 1
588687
- ]
588688
- ],
588689
588466
  [
588690
588467
  [
588691
588468
  "list",