tpmkms 9.5.0 → 9.5.1-beta.10
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.
- package/common/animals.instance.json +21 -61
- package/common/asking.js +106 -104
- package/common/can.instance.json +17 -0
- package/common/can.js +188 -0
- package/common/characters.js +5 -5
- package/common/colors.instance.json +38 -10
- package/common/comparable.instance.json +2 -2
- package/common/concept.test.json +54 -40
- package/common/conjunction.js +13 -5
- package/common/crew.instance.json +71 -85
- package/common/crew.js +1 -1
- package/common/crew.test.json +4148 -3324
- package/common/currency.js +1 -1
- package/common/dates.instance.json +87 -3
- package/common/dialogues.js +12 -9
- package/common/dimension.instance.json +9 -9
- package/common/dimension.js +4 -4
- package/common/edible.instance.json +79 -23
- package/common/emotions.instance.json +29 -7
- package/common/emotions.js +1 -1
- package/common/emotions.test.json +242 -174
- package/common/english_helpers.js +336 -0
- package/common/errors.js +3 -3
- package/common/evaluate.js +2 -2
- package/common/events.js +8 -8
- package/common/fastfood.instance.json +205 -553
- package/common/fastfood.js +4 -4
- package/common/formulas.instance.json +1 -1
- package/common/formulas.js +1 -1
- package/common/gdefaults.js +58 -9
- package/common/help.js +3 -3
- package/common/helpers/concept.js +1 -1
- package/common/helpers/conjunction.js +54 -44
- package/common/helpers/dateTimeSelectors.js +2 -2
- package/common/helpers/dialogues.js +1 -1
- package/common/helpers/formulas.js +13 -11
- package/common/helpers/menus.js +12 -12
- package/common/helpers/meta.js +9 -9
- package/common/helpers/properties.js +158 -55
- package/common/helpers.js +135 -46
- package/common/hierarchy.js +3 -3
- package/common/kirk.instance.json +1 -1
- package/common/latin.instance.json +2 -2
- package/common/latin.js +4 -4
- package/common/length.instance.json +2 -2
- package/common/listener.js +1 -1
- package/common/math.instance.json +28 -28
- package/common/math.js +47 -46
- package/common/menus.instance.json +3 -3
- package/common/menus.js +1 -1
- package/common/meta.js +76 -60
- package/common/nameable.js +7 -7
- package/common/ordering.instance.json +85 -19
- package/common/ordering.js +1 -1
- package/common/ordering.test.json +786 -298
- package/common/people.instance.json +59 -56
- package/common/people.js +6 -4
- package/common/people.test.json +4135 -3606
- package/common/pipboy.instance.json +72 -16
- package/common/pipboy.js +2 -3
- package/common/pokemon.instance.json +8 -8
- package/common/pokemon.js +1 -1
- package/common/pressure.instance.json +2 -2
- package/common/properties.instance.json +1 -1
- package/common/properties.js +22 -4
- package/common/reminders.instance.json +4 -4
- package/common/reminders.js +3 -3
- package/common/reports.instance.json +3 -3
- package/common/reports.js +18 -16
- package/common/scorekeeper.js +6 -6
- package/common/sdefaults.js +22 -2
- package/common/spock.instance.json +1 -1
- package/common/stgame.js +1 -1
- package/common/stm.js +4 -4
- package/common/tell.js +1 -1
- package/common/temperature.instance.json +2 -2
- package/common/tester.js +3 -3
- package/common/time.js +3 -3
- package/common/tokenize.js +5 -2
- package/common/weight.instance.json +2 -2
- package/common/wp.instance.json +136 -8
- package/common/wp.js +4 -4
- package/package.json +6 -2
|
@@ -901,7 +901,7 @@
|
|
|
901
901
|
]
|
|
902
902
|
},
|
|
903
903
|
{
|
|
904
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n
|
|
904
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n function 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 function needsDrink (item) {\n return item.needsDrink\n }\n\n function 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 }"
|
|
905
905
|
},
|
|
906
906
|
{
|
|
907
907
|
"operators": [
|
|
@@ -4137,7 +4137,7 @@
|
|
|
4137
4137
|
"word": "food",
|
|
4138
4138
|
"range": {
|
|
4139
4139
|
"start": 0,
|
|
4140
|
-
"end":
|
|
4140
|
+
"end": 3
|
|
4141
4141
|
},
|
|
4142
4142
|
"dead": true,
|
|
4143
4143
|
"types": [
|
|
@@ -7197,7 +7197,7 @@
|
|
|
7197
7197
|
"word": "drinks",
|
|
7198
7198
|
"range": {
|
|
7199
7199
|
"start": 0,
|
|
7200
|
-
"end":
|
|
7200
|
+
"end": 5
|
|
7201
7201
|
},
|
|
7202
7202
|
"dead": true,
|
|
7203
7203
|
"types": [
|
|
@@ -39627,7 +39627,7 @@
|
|
|
39627
39627
|
"word": "club",
|
|
39628
39628
|
"range": {
|
|
39629
39629
|
"start": 0,
|
|
39630
|
-
"end":
|
|
39630
|
+
"end": 3
|
|
39631
39631
|
},
|
|
39632
39632
|
"dead": true,
|
|
39633
39633
|
"types": [
|
|
@@ -69467,7 +69467,7 @@
|
|
|
69467
69467
|
"word": "fries",
|
|
69468
69468
|
"range": {
|
|
69469
69469
|
"start": 0,
|
|
69470
|
-
"end":
|
|
69470
|
+
"end": 11
|
|
69471
69471
|
},
|
|
69472
69472
|
"types": [
|
|
69473
69473
|
"fry",
|
|
@@ -89029,7 +89029,7 @@
|
|
|
89029
89029
|
""
|
|
89030
89030
|
],
|
|
89031
89031
|
"paraphrases": [
|
|
89032
|
-
"strawberry, guava, mango passion, wild berry and strawberry banana
|
|
89032
|
+
"strawberry, guava, mango passion, wild berry and strawberry banana modify smoothie"
|
|
89033
89033
|
],
|
|
89034
89034
|
"paraphrasesParenthesized": [],
|
|
89035
89035
|
"generatedParenthesized": [],
|
|
@@ -96141,7 +96141,7 @@
|
|
|
96141
96141
|
"text": "strawberry, guava, mango passion, wild berry, and strawberry banana",
|
|
96142
96142
|
"range": {
|
|
96143
96143
|
"start": 0,
|
|
96144
|
-
"end":
|
|
96144
|
+
"end": 66
|
|
96145
96145
|
},
|
|
96146
96146
|
"types": [
|
|
96147
96147
|
"guava",
|
|
@@ -96646,6 +96646,24 @@
|
|
|
96646
96646
|
0
|
|
96647
96647
|
]
|
|
96648
96648
|
],
|
|
96649
|
+
[
|
|
96650
|
+
[
|
|
96651
|
+
"countable",
|
|
96652
|
+
0
|
|
96653
|
+
],
|
|
96654
|
+
[
|
|
96655
|
+
"is",
|
|
96656
|
+
0
|
|
96657
|
+
],
|
|
96658
|
+
[
|
|
96659
|
+
"list",
|
|
96660
|
+
1
|
|
96661
|
+
],
|
|
96662
|
+
[
|
|
96663
|
+
"strawberry",
|
|
96664
|
+
0
|
|
96665
|
+
]
|
|
96666
|
+
],
|
|
96649
96667
|
[
|
|
96650
96668
|
[
|
|
96651
96669
|
"countable",
|
|
@@ -109120,7 +109138,7 @@
|
|
|
109120
109138
|
"text": "strawberry, guava, mango passion, wild berry, and strawberry banana",
|
|
109121
109139
|
"range": {
|
|
109122
109140
|
"start": 0,
|
|
109123
|
-
"end":
|
|
109141
|
+
"end": 66
|
|
109124
109142
|
},
|
|
109125
109143
|
"types": [
|
|
109126
109144
|
"guava",
|
|
@@ -116540,7 +116558,7 @@
|
|
|
116540
116558
|
"word": "smoothie",
|
|
116541
116559
|
"range": {
|
|
116542
116560
|
"start": 0,
|
|
116543
|
-
"end":
|
|
116561
|
+
"end": 9
|
|
116544
116562
|
},
|
|
116545
116563
|
"dead": true,
|
|
116546
116564
|
"types": [
|
|
@@ -116636,6 +116654,20 @@
|
|
|
116636
116654
|
0
|
|
116637
116655
|
]
|
|
116638
116656
|
],
|
|
116657
|
+
[
|
|
116658
|
+
[
|
|
116659
|
+
"a",
|
|
116660
|
+
0
|
|
116661
|
+
],
|
|
116662
|
+
[
|
|
116663
|
+
"drink",
|
|
116664
|
+
0
|
|
116665
|
+
],
|
|
116666
|
+
[
|
|
116667
|
+
"is",
|
|
116668
|
+
0
|
|
116669
|
+
]
|
|
116670
|
+
],
|
|
116639
116671
|
[
|
|
116640
116672
|
[
|
|
116641
116673
|
"a",
|
|
@@ -122202,7 +122234,7 @@
|
|
|
122202
122234
|
"text": "french fries and waffle fries",
|
|
122203
122235
|
"range": {
|
|
122204
122236
|
"start": 0,
|
|
122205
|
-
"end":
|
|
122237
|
+
"end": 28
|
|
122206
122238
|
},
|
|
122207
122239
|
"types": [
|
|
122208
122240
|
"french_fry",
|
|
@@ -128384,7 +128416,7 @@
|
|
|
128384
128416
|
"text": "single, double, triple, baconator, and bacon deluxe",
|
|
128385
128417
|
"range": {
|
|
128386
128418
|
"start": 0,
|
|
128387
|
-
"end":
|
|
128419
|
+
"end": 50
|
|
128388
128420
|
},
|
|
128389
128421
|
"types": [
|
|
128390
128422
|
"bacon_deluxe",
|
|
@@ -136284,7 +136316,7 @@
|
|
|
136284
136316
|
"text": "spicy, homestyle, asiago ranch chicken club, ultimate chicken grill and premium cod",
|
|
136285
136317
|
"range": {
|
|
136286
136318
|
"start": 0,
|
|
136287
|
-
"end":
|
|
136319
|
+
"end": 82
|
|
136288
136320
|
},
|
|
136289
136321
|
"types": [
|
|
136290
136322
|
"asiago_ranch_chicken_club",
|
|
@@ -144427,7 +144459,7 @@
|
|
|
144427
144459
|
"word": "meals",
|
|
144428
144460
|
"range": {
|
|
144429
144461
|
"start": 0,
|
|
144430
|
-
"end":
|
|
144462
|
+
"end": 4
|
|
144431
144463
|
},
|
|
144432
144464
|
"dead": true,
|
|
144433
144465
|
"types": [
|
|
@@ -150183,7 +150215,7 @@
|
|
|
150183
150215
|
"word": "combo",
|
|
150184
150216
|
"range": {
|
|
150185
150217
|
"start": 0,
|
|
150186
|
-
"end":
|
|
150218
|
+
"end": 6
|
|
150187
150219
|
},
|
|
150188
150220
|
"dead": true,
|
|
150189
150221
|
"types": [
|
|
@@ -156142,7 +156174,7 @@
|
|
|
156142
156174
|
"word": "chili",
|
|
156143
156175
|
"range": {
|
|
156144
156176
|
"start": 0,
|
|
156145
|
-
"end":
|
|
156177
|
+
"end": 4
|
|
156146
156178
|
},
|
|
156147
156179
|
"dead": true,
|
|
156148
156180
|
"types": [
|
|
@@ -162052,7 +162084,7 @@
|
|
|
162052
162084
|
"word": "shake",
|
|
162053
162085
|
"range": {
|
|
162054
162086
|
"start": 0,
|
|
162055
|
-
"end":
|
|
162087
|
+
"end": 6
|
|
162056
162088
|
},
|
|
162057
162089
|
"dead": true,
|
|
162058
162090
|
"types": [
|
|
@@ -162152,6 +162184,24 @@
|
|
|
162152
162184
|
0
|
|
162153
162185
|
]
|
|
162154
162186
|
],
|
|
162187
|
+
[
|
|
162188
|
+
[
|
|
162189
|
+
"a",
|
|
162190
|
+
0
|
|
162191
|
+
],
|
|
162192
|
+
[
|
|
162193
|
+
"drink",
|
|
162194
|
+
0
|
|
162195
|
+
],
|
|
162196
|
+
[
|
|
162197
|
+
"is",
|
|
162198
|
+
0
|
|
162199
|
+
],
|
|
162200
|
+
[
|
|
162201
|
+
"shake",
|
|
162202
|
+
0
|
|
162203
|
+
]
|
|
162204
|
+
],
|
|
162155
162205
|
[
|
|
162156
162206
|
[
|
|
162157
162207
|
"drink",
|
|
@@ -210018,7 +210068,7 @@
|
|
|
210018
210068
|
"word": "frosty",
|
|
210019
210069
|
"range": {
|
|
210020
210070
|
"start": 0,
|
|
210021
|
-
"end":
|
|
210071
|
+
"end": 5
|
|
210022
210072
|
},
|
|
210023
210073
|
"dead": true,
|
|
210024
210074
|
"types": [
|
|
@@ -327132,7 +327182,7 @@
|
|
|
327132
327182
|
"word": "wrap",
|
|
327133
327183
|
"range": {
|
|
327134
327184
|
"start": 0,
|
|
327135
|
-
"end":
|
|
327185
|
+
"end": 8
|
|
327136
327186
|
},
|
|
327137
327187
|
"types": [
|
|
327138
327188
|
"go_wrap",
|
|
@@ -327272,6 +327322,24 @@
|
|
|
327272
327322
|
0
|
|
327273
327323
|
]
|
|
327274
327324
|
],
|
|
327325
|
+
[
|
|
327326
|
+
[
|
|
327327
|
+
"a",
|
|
327328
|
+
0
|
|
327329
|
+
],
|
|
327330
|
+
[
|
|
327331
|
+
"go_wrap",
|
|
327332
|
+
0
|
|
327333
|
+
],
|
|
327334
|
+
[
|
|
327335
|
+
"is",
|
|
327336
|
+
0
|
|
327337
|
+
],
|
|
327338
|
+
[
|
|
327339
|
+
"sandwich",
|
|
327340
|
+
0
|
|
327341
|
+
]
|
|
327342
|
+
],
|
|
327275
327343
|
[
|
|
327276
327344
|
[
|
|
327277
327345
|
"go_wrap",
|
|
@@ -344570,7 +344638,7 @@
|
|
|
344570
344638
|
"text": "breakfast baconator, french toast sandwich, egg muffin, chicken on french toast, pancake platter, double sausage muffin, pancakes, french toast and oatmeal",
|
|
344571
344639
|
"range": {
|
|
344572
344640
|
"start": 0,
|
|
344573
|
-
"end":
|
|
344641
|
+
"end": 154
|
|
344574
344642
|
},
|
|
344575
344643
|
"types": [
|
|
344576
344644
|
"breakfast_baconator",
|
|
@@ -345329,80 +345397,6 @@
|
|
|
345329
345397
|
0
|
|
345330
345398
|
]
|
|
345331
345399
|
],
|
|
345332
|
-
[
|
|
345333
|
-
[
|
|
345334
|
-
"breakfast",
|
|
345335
|
-
0
|
|
345336
|
-
],
|
|
345337
|
-
[
|
|
345338
|
-
"breakfast_baconator",
|
|
345339
|
-
0
|
|
345340
|
-
],
|
|
345341
|
-
[
|
|
345342
|
-
"chicken",
|
|
345343
|
-
0
|
|
345344
|
-
],
|
|
345345
|
-
[
|
|
345346
|
-
"comma",
|
|
345347
|
-
0
|
|
345348
|
-
],
|
|
345349
|
-
[
|
|
345350
|
-
"double",
|
|
345351
|
-
0
|
|
345352
|
-
],
|
|
345353
|
-
[
|
|
345354
|
-
"egg",
|
|
345355
|
-
0
|
|
345356
|
-
],
|
|
345357
|
-
[
|
|
345358
|
-
"french",
|
|
345359
|
-
0
|
|
345360
|
-
],
|
|
345361
|
-
[
|
|
345362
|
-
"french_toast_sandwich",
|
|
345363
|
-
0
|
|
345364
|
-
],
|
|
345365
|
-
[
|
|
345366
|
-
"is",
|
|
345367
|
-
0
|
|
345368
|
-
],
|
|
345369
|
-
[
|
|
345370
|
-
"list",
|
|
345371
|
-
0
|
|
345372
|
-
],
|
|
345373
|
-
[
|
|
345374
|
-
"meal",
|
|
345375
|
-
0
|
|
345376
|
-
],
|
|
345377
|
-
[
|
|
345378
|
-
"muffin",
|
|
345379
|
-
0
|
|
345380
|
-
],
|
|
345381
|
-
[
|
|
345382
|
-
"oatmeal",
|
|
345383
|
-
0
|
|
345384
|
-
],
|
|
345385
|
-
[
|
|
345386
|
-
"on",
|
|
345387
|
-
0
|
|
345388
|
-
],
|
|
345389
|
-
[
|
|
345390
|
-
"pancake",
|
|
345391
|
-
0
|
|
345392
|
-
],
|
|
345393
|
-
[
|
|
345394
|
-
"platter",
|
|
345395
|
-
0
|
|
345396
|
-
],
|
|
345397
|
-
[
|
|
345398
|
-
"sausage",
|
|
345399
|
-
0
|
|
345400
|
-
],
|
|
345401
|
-
[
|
|
345402
|
-
"toast",
|
|
345403
|
-
0
|
|
345404
|
-
]
|
|
345405
|
-
],
|
|
345406
345400
|
[
|
|
345407
345401
|
[
|
|
345408
345402
|
"breakfast",
|
|
@@ -345621,76 +345615,6 @@
|
|
|
345621
345615
|
0
|
|
345622
345616
|
]
|
|
345623
345617
|
],
|
|
345624
|
-
[
|
|
345625
|
-
[
|
|
345626
|
-
"breakfast",
|
|
345627
|
-
0
|
|
345628
|
-
],
|
|
345629
|
-
[
|
|
345630
|
-
"breakfast_baconator",
|
|
345631
|
-
0
|
|
345632
|
-
],
|
|
345633
|
-
[
|
|
345634
|
-
"chicken_on_french_toast",
|
|
345635
|
-
0
|
|
345636
|
-
],
|
|
345637
|
-
[
|
|
345638
|
-
"comma",
|
|
345639
|
-
0
|
|
345640
|
-
],
|
|
345641
|
-
[
|
|
345642
|
-
"double",
|
|
345643
|
-
0
|
|
345644
|
-
],
|
|
345645
|
-
[
|
|
345646
|
-
"egg_muffin",
|
|
345647
|
-
0
|
|
345648
|
-
],
|
|
345649
|
-
[
|
|
345650
|
-
"french",
|
|
345651
|
-
0
|
|
345652
|
-
],
|
|
345653
|
-
[
|
|
345654
|
-
"french_toast_sandwich",
|
|
345655
|
-
0
|
|
345656
|
-
],
|
|
345657
|
-
[
|
|
345658
|
-
"is",
|
|
345659
|
-
0
|
|
345660
|
-
],
|
|
345661
|
-
[
|
|
345662
|
-
"list",
|
|
345663
|
-
0
|
|
345664
|
-
],
|
|
345665
|
-
[
|
|
345666
|
-
"meal",
|
|
345667
|
-
0
|
|
345668
|
-
],
|
|
345669
|
-
[
|
|
345670
|
-
"muffin",
|
|
345671
|
-
0
|
|
345672
|
-
],
|
|
345673
|
-
[
|
|
345674
|
-
"oatmeal",
|
|
345675
|
-
0
|
|
345676
|
-
],
|
|
345677
|
-
[
|
|
345678
|
-
"pancake",
|
|
345679
|
-
0
|
|
345680
|
-
],
|
|
345681
|
-
[
|
|
345682
|
-
"pancake_platter",
|
|
345683
|
-
0
|
|
345684
|
-
],
|
|
345685
|
-
[
|
|
345686
|
-
"sausage",
|
|
345687
|
-
0
|
|
345688
|
-
],
|
|
345689
|
-
[
|
|
345690
|
-
"toast",
|
|
345691
|
-
0
|
|
345692
|
-
]
|
|
345693
|
-
],
|
|
345694
345618
|
[
|
|
345695
345619
|
[
|
|
345696
345620
|
"breakfast",
|
|
@@ -360023,7 +359947,7 @@
|
|
|
360023
359947
|
"text": "single, double, triple, baconator, bacon deluxe, spicy homestyle and premium cod",
|
|
360024
359948
|
"range": {
|
|
360025
359949
|
"start": 0,
|
|
360026
|
-
"end":
|
|
359950
|
+
"end": 79
|
|
360027
359951
|
},
|
|
360028
359952
|
"types": [
|
|
360029
359953
|
"bacon_deluxe",
|
|
@@ -360366,7 +360290,7 @@
|
|
|
360366
360290
|
],
|
|
360367
360291
|
[
|
|
360368
360292
|
[
|
|
360369
|
-
"
|
|
360293
|
+
"bacon_deluxe",
|
|
360370
360294
|
0
|
|
360371
360295
|
],
|
|
360372
360296
|
[
|
|
@@ -360381,10 +360305,6 @@
|
|
|
360381
360305
|
"comma",
|
|
360382
360306
|
0
|
|
360383
360307
|
],
|
|
360384
|
-
[
|
|
360385
|
-
"deluxe",
|
|
360386
|
-
0
|
|
360387
|
-
],
|
|
360388
360308
|
[
|
|
360389
360309
|
"double",
|
|
360390
360310
|
0
|
|
@@ -360424,7 +360344,7 @@
|
|
|
360424
360344
|
],
|
|
360425
360345
|
[
|
|
360426
360346
|
[
|
|
360427
|
-
"
|
|
360347
|
+
"bacon_deluxe",
|
|
360428
360348
|
0
|
|
360429
360349
|
],
|
|
360430
360350
|
[
|
|
@@ -360435,14 +360355,6 @@
|
|
|
360435
360355
|
"cod",
|
|
360436
360356
|
0
|
|
360437
360357
|
],
|
|
360438
|
-
[
|
|
360439
|
-
"comma",
|
|
360440
|
-
0
|
|
360441
|
-
],
|
|
360442
|
-
[
|
|
360443
|
-
"deluxe",
|
|
360444
|
-
0
|
|
360445
|
-
],
|
|
360446
360358
|
[
|
|
360447
360359
|
"double",
|
|
360448
360360
|
0
|
|
@@ -360489,14 +360401,6 @@
|
|
|
360489
360401
|
"baconator",
|
|
360490
360402
|
0
|
|
360491
360403
|
],
|
|
360492
|
-
[
|
|
360493
|
-
"cod",
|
|
360494
|
-
0
|
|
360495
|
-
],
|
|
360496
|
-
[
|
|
360497
|
-
"comma",
|
|
360498
|
-
0
|
|
360499
|
-
],
|
|
360500
360404
|
[
|
|
360501
360405
|
"double",
|
|
360502
360406
|
0
|
|
@@ -360518,103 +360422,7 @@
|
|
|
360518
360422
|
0
|
|
360519
360423
|
],
|
|
360520
360424
|
[
|
|
360521
|
-
"
|
|
360522
|
-
0
|
|
360523
|
-
],
|
|
360524
|
-
[
|
|
360525
|
-
"single",
|
|
360526
|
-
0
|
|
360527
|
-
],
|
|
360528
|
-
[
|
|
360529
|
-
"spicy",
|
|
360530
|
-
0
|
|
360531
|
-
],
|
|
360532
|
-
[
|
|
360533
|
-
"triple",
|
|
360534
|
-
0
|
|
360535
|
-
]
|
|
360536
|
-
],
|
|
360537
|
-
[
|
|
360538
|
-
[
|
|
360539
|
-
"bacon_deluxe",
|
|
360540
|
-
0
|
|
360541
|
-
],
|
|
360542
|
-
[
|
|
360543
|
-
"baconator",
|
|
360544
|
-
0
|
|
360545
|
-
],
|
|
360546
|
-
[
|
|
360547
|
-
"cod",
|
|
360548
|
-
0
|
|
360549
|
-
],
|
|
360550
|
-
[
|
|
360551
|
-
"double",
|
|
360552
|
-
0
|
|
360553
|
-
],
|
|
360554
|
-
[
|
|
360555
|
-
"homestyle",
|
|
360556
|
-
0
|
|
360557
|
-
],
|
|
360558
|
-
[
|
|
360559
|
-
"is",
|
|
360560
|
-
0
|
|
360561
|
-
],
|
|
360562
|
-
[
|
|
360563
|
-
"list",
|
|
360564
|
-
0
|
|
360565
|
-
],
|
|
360566
|
-
[
|
|
360567
|
-
"meal",
|
|
360568
|
-
0
|
|
360569
|
-
],
|
|
360570
|
-
[
|
|
360571
|
-
"premium",
|
|
360572
|
-
0
|
|
360573
|
-
],
|
|
360574
|
-
[
|
|
360575
|
-
"single",
|
|
360576
|
-
0
|
|
360577
|
-
],
|
|
360578
|
-
[
|
|
360579
|
-
"spicy",
|
|
360580
|
-
0
|
|
360581
|
-
],
|
|
360582
|
-
[
|
|
360583
|
-
"triple",
|
|
360584
|
-
0
|
|
360585
|
-
]
|
|
360586
|
-
],
|
|
360587
|
-
[
|
|
360588
|
-
[
|
|
360589
|
-
"bacon_deluxe",
|
|
360590
|
-
0
|
|
360591
|
-
],
|
|
360592
|
-
[
|
|
360593
|
-
"baconator",
|
|
360594
|
-
0
|
|
360595
|
-
],
|
|
360596
|
-
[
|
|
360597
|
-
"double",
|
|
360598
|
-
0
|
|
360599
|
-
],
|
|
360600
|
-
[
|
|
360601
|
-
"homestyle",
|
|
360602
|
-
0
|
|
360603
|
-
],
|
|
360604
|
-
[
|
|
360605
|
-
"is",
|
|
360606
|
-
0
|
|
360607
|
-
],
|
|
360608
|
-
[
|
|
360609
|
-
"list",
|
|
360610
|
-
0
|
|
360611
|
-
],
|
|
360612
|
-
[
|
|
360613
|
-
"meal",
|
|
360614
|
-
0
|
|
360615
|
-
],
|
|
360616
|
-
[
|
|
360617
|
-
"premium_cod",
|
|
360425
|
+
"premium_cod",
|
|
360618
360426
|
0
|
|
360619
360427
|
],
|
|
360620
360428
|
[
|
|
@@ -395666,7 +395474,7 @@
|
|
|
395666
395474
|
"text": "coke, coca cola, diet coke, sprite, fanta, barqs and iced tea",
|
|
395667
395475
|
"range": {
|
|
395668
395476
|
"start": 0,
|
|
395669
|
-
"end":
|
|
395477
|
+
"end": 60
|
|
395670
395478
|
},
|
|
395671
395479
|
"types": [
|
|
395672
395480
|
"coca_cola",
|
|
@@ -476111,7 +475919,7 @@
|
|
|
476111
475919
|
"text": "fries and drinks",
|
|
476112
475920
|
"range": {
|
|
476113
475921
|
"start": 0,
|
|
476114
|
-
"end":
|
|
475922
|
+
"end": 15
|
|
476115
475923
|
},
|
|
476116
475924
|
"types": [
|
|
476117
475925
|
"drink",
|
|
@@ -485365,7 +485173,7 @@
|
|
|
485365
485173
|
""
|
|
485366
485174
|
],
|
|
485367
485175
|
"paraphrases": [
|
|
485368
|
-
"broccoli and cheddar literally
|
|
485176
|
+
"broccoli and cheddar literally modify potato"
|
|
485369
485177
|
],
|
|
485370
485178
|
"paraphrasesParenthesized": [],
|
|
485371
485179
|
"generatedParenthesized": [],
|
|
@@ -494684,7 +494492,7 @@
|
|
|
494684
494492
|
""
|
|
494685
494493
|
],
|
|
494686
494494
|
"paraphrases": [
|
|
494687
|
-
"bacon and cheddar literally
|
|
494495
|
+
"bacon and cheddar literally modify potato"
|
|
494688
494496
|
],
|
|
494689
494497
|
"paraphrasesParenthesized": [],
|
|
494690
494498
|
"generatedParenthesized": [],
|
|
@@ -504080,7 +503888,7 @@
|
|
|
504080
503888
|
""
|
|
504081
503889
|
],
|
|
504082
503890
|
"paraphrases": [
|
|
504083
|
-
"chili and cheese literally
|
|
503891
|
+
"chili and cheese literally modify potato"
|
|
504084
503892
|
],
|
|
504085
503893
|
"paraphrasesParenthesized": [],
|
|
504086
503894
|
"generatedParenthesized": [],
|
|
@@ -541474,7 +541282,7 @@
|
|
|
541474
541282
|
"word": "water",
|
|
541475
541283
|
"range": {
|
|
541476
541284
|
"start": 0,
|
|
541477
|
-
"end":
|
|
541285
|
+
"end": 12
|
|
541478
541286
|
},
|
|
541479
541287
|
"types": [
|
|
541480
541288
|
"bottled_water",
|
|
@@ -570861,7 +570669,7 @@
|
|
|
570861
570669
|
"text": "hamburgers, cheeseburgers, crispy chicken and nuggets",
|
|
570862
570670
|
"range": {
|
|
570863
570671
|
"start": 0,
|
|
570864
|
-
"end":
|
|
570672
|
+
"end": 52
|
|
570865
570673
|
},
|
|
570866
570674
|
"types": [
|
|
570867
570675
|
"cheeseburger",
|
|
@@ -593192,7 +593000,7 @@
|
|
|
593192
593000
|
"text": "nuggets, junior bacon cheeseburgers, chicken go wraps and junior crispy chicken clubs",
|
|
593193
593001
|
"range": {
|
|
593194
593002
|
"start": 0,
|
|
593195
|
-
"end":
|
|
593003
|
+
"end": 84
|
|
593196
593004
|
},
|
|
593197
593005
|
"types": [
|
|
593198
593006
|
"chicken_go_wrap",
|
|
@@ -605889,7 +605697,7 @@
|
|
|
605889
605697
|
"text": "combos, chili, fries and drinks",
|
|
605890
605698
|
"range": {
|
|
605891
605699
|
"start": 0,
|
|
605892
|
-
"end":
|
|
605700
|
+
"end": 30
|
|
605893
605701
|
},
|
|
605894
605702
|
"types": [
|
|
605895
605703
|
"chili",
|
|
@@ -606154,6 +605962,24 @@
|
|
|
606154
605962
|
0
|
|
606155
605963
|
]
|
|
606156
605964
|
],
|
|
605965
|
+
[
|
|
605966
|
+
[
|
|
605967
|
+
"combo",
|
|
605968
|
+
0
|
|
605969
|
+
],
|
|
605970
|
+
[
|
|
605971
|
+
"is",
|
|
605972
|
+
0
|
|
605973
|
+
],
|
|
605974
|
+
[
|
|
605975
|
+
"list",
|
|
605976
|
+
1
|
|
605977
|
+
],
|
|
605978
|
+
[
|
|
605979
|
+
"sizeable",
|
|
605980
|
+
0
|
|
605981
|
+
]
|
|
605982
|
+
],
|
|
606157
605983
|
[
|
|
606158
605984
|
[
|
|
606159
605985
|
"is",
|
|
@@ -606866,7 +606692,7 @@
|
|
|
606866
606692
|
]
|
|
606867
606693
|
},
|
|
606868
606694
|
{
|
|
606869
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n
|
|
606695
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n function 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 function needsDrink (item) {\n return item.needsDrink\n }\n\n function 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 }"
|
|
606870
606696
|
},
|
|
606871
606697
|
{
|
|
606872
606698
|
"extraConfig": true,
|
|
@@ -607313,6 +607139,38 @@
|
|
|
607313
607139
|
0
|
|
607314
607140
|
]
|
|
607315
607141
|
],
|
|
607142
|
+
[
|
|
607143
|
+
[
|
|
607144
|
+
"a",
|
|
607145
|
+
0
|
|
607146
|
+
],
|
|
607147
|
+
[
|
|
607148
|
+
"drink",
|
|
607149
|
+
0
|
|
607150
|
+
],
|
|
607151
|
+
[
|
|
607152
|
+
"is",
|
|
607153
|
+
0
|
|
607154
|
+
]
|
|
607155
|
+
],
|
|
607156
|
+
[
|
|
607157
|
+
[
|
|
607158
|
+
"a",
|
|
607159
|
+
0
|
|
607160
|
+
],
|
|
607161
|
+
[
|
|
607162
|
+
"drink",
|
|
607163
|
+
0
|
|
607164
|
+
],
|
|
607165
|
+
[
|
|
607166
|
+
"is",
|
|
607167
|
+
0
|
|
607168
|
+
],
|
|
607169
|
+
[
|
|
607170
|
+
"shake",
|
|
607171
|
+
0
|
|
607172
|
+
]
|
|
607173
|
+
],
|
|
607316
607174
|
[
|
|
607317
607175
|
[
|
|
607318
607176
|
"a",
|
|
@@ -607407,6 +607265,24 @@
|
|
|
607407
607265
|
0
|
|
607408
607266
|
]
|
|
607409
607267
|
],
|
|
607268
|
+
[
|
|
607269
|
+
[
|
|
607270
|
+
"a",
|
|
607271
|
+
0
|
|
607272
|
+
],
|
|
607273
|
+
[
|
|
607274
|
+
"go_wrap",
|
|
607275
|
+
0
|
|
607276
|
+
],
|
|
607277
|
+
[
|
|
607278
|
+
"is",
|
|
607279
|
+
0
|
|
607280
|
+
],
|
|
607281
|
+
[
|
|
607282
|
+
"sandwich",
|
|
607283
|
+
0
|
|
607284
|
+
]
|
|
607285
|
+
],
|
|
607410
607286
|
[
|
|
607411
607287
|
[
|
|
607412
607288
|
"a",
|
|
@@ -607771,122 +607647,6 @@
|
|
|
607771
607647
|
0
|
|
607772
607648
|
]
|
|
607773
607649
|
],
|
|
607774
|
-
[
|
|
607775
|
-
[
|
|
607776
|
-
"bacon",
|
|
607777
|
-
0
|
|
607778
|
-
],
|
|
607779
|
-
[
|
|
607780
|
-
"baconator",
|
|
607781
|
-
0
|
|
607782
|
-
],
|
|
607783
|
-
[
|
|
607784
|
-
"cod",
|
|
607785
|
-
0
|
|
607786
|
-
],
|
|
607787
|
-
[
|
|
607788
|
-
"comma",
|
|
607789
|
-
0
|
|
607790
|
-
],
|
|
607791
|
-
[
|
|
607792
|
-
"deluxe",
|
|
607793
|
-
0
|
|
607794
|
-
],
|
|
607795
|
-
[
|
|
607796
|
-
"double",
|
|
607797
|
-
0
|
|
607798
|
-
],
|
|
607799
|
-
[
|
|
607800
|
-
"homestyle",
|
|
607801
|
-
0
|
|
607802
|
-
],
|
|
607803
|
-
[
|
|
607804
|
-
"is",
|
|
607805
|
-
0
|
|
607806
|
-
],
|
|
607807
|
-
[
|
|
607808
|
-
"list",
|
|
607809
|
-
0
|
|
607810
|
-
],
|
|
607811
|
-
[
|
|
607812
|
-
"meal",
|
|
607813
|
-
0
|
|
607814
|
-
],
|
|
607815
|
-
[
|
|
607816
|
-
"premium",
|
|
607817
|
-
0
|
|
607818
|
-
],
|
|
607819
|
-
[
|
|
607820
|
-
"single",
|
|
607821
|
-
0
|
|
607822
|
-
],
|
|
607823
|
-
[
|
|
607824
|
-
"spicy",
|
|
607825
|
-
0
|
|
607826
|
-
],
|
|
607827
|
-
[
|
|
607828
|
-
"triple",
|
|
607829
|
-
0
|
|
607830
|
-
]
|
|
607831
|
-
],
|
|
607832
|
-
[
|
|
607833
|
-
[
|
|
607834
|
-
"bacon",
|
|
607835
|
-
0
|
|
607836
|
-
],
|
|
607837
|
-
[
|
|
607838
|
-
"baconator",
|
|
607839
|
-
0
|
|
607840
|
-
],
|
|
607841
|
-
[
|
|
607842
|
-
"cod",
|
|
607843
|
-
0
|
|
607844
|
-
],
|
|
607845
|
-
[
|
|
607846
|
-
"comma",
|
|
607847
|
-
0
|
|
607848
|
-
],
|
|
607849
|
-
[
|
|
607850
|
-
"deluxe",
|
|
607851
|
-
0
|
|
607852
|
-
],
|
|
607853
|
-
[
|
|
607854
|
-
"double",
|
|
607855
|
-
0
|
|
607856
|
-
],
|
|
607857
|
-
[
|
|
607858
|
-
"homestyle",
|
|
607859
|
-
0
|
|
607860
|
-
],
|
|
607861
|
-
[
|
|
607862
|
-
"is",
|
|
607863
|
-
0
|
|
607864
|
-
],
|
|
607865
|
-
[
|
|
607866
|
-
"list",
|
|
607867
|
-
0
|
|
607868
|
-
],
|
|
607869
|
-
[
|
|
607870
|
-
"meal",
|
|
607871
|
-
0
|
|
607872
|
-
],
|
|
607873
|
-
[
|
|
607874
|
-
"premium",
|
|
607875
|
-
0
|
|
607876
|
-
],
|
|
607877
|
-
[
|
|
607878
|
-
"single",
|
|
607879
|
-
0
|
|
607880
|
-
],
|
|
607881
|
-
[
|
|
607882
|
-
"spicy",
|
|
607883
|
-
0
|
|
607884
|
-
],
|
|
607885
|
-
[
|
|
607886
|
-
"triple",
|
|
607887
|
-
0
|
|
607888
|
-
]
|
|
607889
|
-
],
|
|
607890
607650
|
[
|
|
607891
607651
|
[
|
|
607892
607652
|
"bacon",
|
|
@@ -609313,80 +609073,6 @@
|
|
|
609313
609073
|
0
|
|
609314
609074
|
]
|
|
609315
609075
|
],
|
|
609316
|
-
[
|
|
609317
|
-
[
|
|
609318
|
-
"breakfast",
|
|
609319
|
-
0
|
|
609320
|
-
],
|
|
609321
|
-
[
|
|
609322
|
-
"breakfast_baconator",
|
|
609323
|
-
0
|
|
609324
|
-
],
|
|
609325
|
-
[
|
|
609326
|
-
"chicken",
|
|
609327
|
-
0
|
|
609328
|
-
],
|
|
609329
|
-
[
|
|
609330
|
-
"comma",
|
|
609331
|
-
0
|
|
609332
|
-
],
|
|
609333
|
-
[
|
|
609334
|
-
"double",
|
|
609335
|
-
0
|
|
609336
|
-
],
|
|
609337
|
-
[
|
|
609338
|
-
"egg",
|
|
609339
|
-
0
|
|
609340
|
-
],
|
|
609341
|
-
[
|
|
609342
|
-
"french",
|
|
609343
|
-
0
|
|
609344
|
-
],
|
|
609345
|
-
[
|
|
609346
|
-
"french_toast_sandwich",
|
|
609347
|
-
0
|
|
609348
|
-
],
|
|
609349
|
-
[
|
|
609350
|
-
"is",
|
|
609351
|
-
0
|
|
609352
|
-
],
|
|
609353
|
-
[
|
|
609354
|
-
"list",
|
|
609355
|
-
0
|
|
609356
|
-
],
|
|
609357
|
-
[
|
|
609358
|
-
"meal",
|
|
609359
|
-
0
|
|
609360
|
-
],
|
|
609361
|
-
[
|
|
609362
|
-
"muffin",
|
|
609363
|
-
0
|
|
609364
|
-
],
|
|
609365
|
-
[
|
|
609366
|
-
"oatmeal",
|
|
609367
|
-
0
|
|
609368
|
-
],
|
|
609369
|
-
[
|
|
609370
|
-
"on",
|
|
609371
|
-
0
|
|
609372
|
-
],
|
|
609373
|
-
[
|
|
609374
|
-
"pancake",
|
|
609375
|
-
0
|
|
609376
|
-
],
|
|
609377
|
-
[
|
|
609378
|
-
"platter",
|
|
609379
|
-
0
|
|
609380
|
-
],
|
|
609381
|
-
[
|
|
609382
|
-
"sausage",
|
|
609383
|
-
0
|
|
609384
|
-
],
|
|
609385
|
-
[
|
|
609386
|
-
"toast",
|
|
609387
|
-
0
|
|
609388
|
-
]
|
|
609389
|
-
],
|
|
609390
609076
|
[
|
|
609391
609077
|
[
|
|
609392
609078
|
"breakfast",
|
|
@@ -609605,76 +609291,6 @@
|
|
|
609605
609291
|
0
|
|
609606
609292
|
]
|
|
609607
609293
|
],
|
|
609608
|
-
[
|
|
609609
|
-
[
|
|
609610
|
-
"breakfast",
|
|
609611
|
-
0
|
|
609612
|
-
],
|
|
609613
|
-
[
|
|
609614
|
-
"breakfast_baconator",
|
|
609615
|
-
0
|
|
609616
|
-
],
|
|
609617
|
-
[
|
|
609618
|
-
"chicken_on_french_toast",
|
|
609619
|
-
0
|
|
609620
|
-
],
|
|
609621
|
-
[
|
|
609622
|
-
"comma",
|
|
609623
|
-
0
|
|
609624
|
-
],
|
|
609625
|
-
[
|
|
609626
|
-
"double",
|
|
609627
|
-
0
|
|
609628
|
-
],
|
|
609629
|
-
[
|
|
609630
|
-
"egg_muffin",
|
|
609631
|
-
0
|
|
609632
|
-
],
|
|
609633
|
-
[
|
|
609634
|
-
"french",
|
|
609635
|
-
0
|
|
609636
|
-
],
|
|
609637
|
-
[
|
|
609638
|
-
"french_toast_sandwich",
|
|
609639
|
-
0
|
|
609640
|
-
],
|
|
609641
|
-
[
|
|
609642
|
-
"is",
|
|
609643
|
-
0
|
|
609644
|
-
],
|
|
609645
|
-
[
|
|
609646
|
-
"list",
|
|
609647
|
-
0
|
|
609648
|
-
],
|
|
609649
|
-
[
|
|
609650
|
-
"meal",
|
|
609651
|
-
0
|
|
609652
|
-
],
|
|
609653
|
-
[
|
|
609654
|
-
"muffin",
|
|
609655
|
-
0
|
|
609656
|
-
],
|
|
609657
|
-
[
|
|
609658
|
-
"oatmeal",
|
|
609659
|
-
0
|
|
609660
|
-
],
|
|
609661
|
-
[
|
|
609662
|
-
"pancake",
|
|
609663
|
-
0
|
|
609664
|
-
],
|
|
609665
|
-
[
|
|
609666
|
-
"pancake_platter",
|
|
609667
|
-
0
|
|
609668
|
-
],
|
|
609669
|
-
[
|
|
609670
|
-
"sausage",
|
|
609671
|
-
0
|
|
609672
|
-
],
|
|
609673
|
-
[
|
|
609674
|
-
"toast",
|
|
609675
|
-
0
|
|
609676
|
-
]
|
|
609677
|
-
],
|
|
609678
609294
|
[
|
|
609679
609295
|
[
|
|
609680
609296
|
"breakfast",
|
|
@@ -611895,6 +611511,24 @@
|
|
|
611895
611511
|
0
|
|
611896
611512
|
]
|
|
611897
611513
|
],
|
|
611514
|
+
[
|
|
611515
|
+
[
|
|
611516
|
+
"combo",
|
|
611517
|
+
0
|
|
611518
|
+
],
|
|
611519
|
+
[
|
|
611520
|
+
"is",
|
|
611521
|
+
0
|
|
611522
|
+
],
|
|
611523
|
+
[
|
|
611524
|
+
"list",
|
|
611525
|
+
1
|
|
611526
|
+
],
|
|
611527
|
+
[
|
|
611528
|
+
"sizeable",
|
|
611529
|
+
0
|
|
611530
|
+
]
|
|
611531
|
+
],
|
|
611898
611532
|
[
|
|
611899
611533
|
[
|
|
611900
611534
|
"countable",
|
|
@@ -612007,6 +611641,24 @@
|
|
|
612007
611641
|
0
|
|
612008
611642
|
]
|
|
612009
611643
|
],
|
|
611644
|
+
[
|
|
611645
|
+
[
|
|
611646
|
+
"countable",
|
|
611647
|
+
0
|
|
611648
|
+
],
|
|
611649
|
+
[
|
|
611650
|
+
"is",
|
|
611651
|
+
0
|
|
611652
|
+
],
|
|
611653
|
+
[
|
|
611654
|
+
"list",
|
|
611655
|
+
1
|
|
611656
|
+
],
|
|
611657
|
+
[
|
|
611658
|
+
"strawberry",
|
|
611659
|
+
0
|
|
611660
|
+
]
|
|
611661
|
+
],
|
|
612010
611662
|
[
|
|
612011
611663
|
[
|
|
612012
611664
|
"crispy_chicken",
|