ekms 8.0.0-beta.3 → 8.0.0-beta.31
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +2542 -1375
- package/common/animals.js +2 -2
- package/common/avatar.js +2 -2
- package/common/characters.js +9 -11
- package/common/colors.instance.json +6646 -3529
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -15
- package/common/concept.js +17 -11
- package/common/countable.js +5 -5
- package/common/crew.instance.json +12534 -6597
- package/common/crew.js +4 -4
- package/common/crew.test.json +714 -452
- package/common/currency.js +7 -7
- package/common/dialogues.js +53 -138
- package/common/dimension.instance.json +246 -265
- package/common/dimension.js +12 -12
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19308 -10008
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +122 -129
- package/common/emotions.js +4 -4
- package/common/events.js +6 -6
- package/common/fastfood.instance.json +219409 -111252
- package/common/fastfood.js +24 -24
- package/common/formulas.instance.json +222 -256
- package/common/formulas.js +14 -14
- package/common/gdefaults.js +13 -13
- package/common/help.js +4 -4
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +48 -58
- package/common/hierarchy.js +12 -16
- package/common/javascript.js +8 -8
- package/common/kirk.instance.json +564 -290
- package/common/kirk.js +2 -2
- package/common/length.instance.json +5153 -4677
- package/common/length.js +2 -2
- package/common/math.instance.json +152 -1169
- package/common/math.js +11 -11
- package/common/meta.js +22 -29
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +3 -3
- package/common/ordering.instance.json +292 -230
- package/common/ordering.js +5 -5
- package/common/people.instance.json +1902 -1015
- package/common/people.js +4 -5
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +57 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7720 -6386
- package/common/pipboy.js +29 -32
- package/common/pokemon.instance.json +3954 -2081
- package/common/pokemon.js +4 -4
- package/common/pos.js +1 -1
- package/common/pressure.instance.json +1265 -1193
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +106 -61
- package/common/properties.js +54 -125
- package/common/punctuation.js +2 -2
- package/common/reports.instance.json +557 -559
- package/common/reports.js +54 -74
- package/common/scorekeeper.js +13 -21
- package/common/sdefaults.js +13 -3
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +564 -290
- package/common/spock.js +2 -2
- package/common/stgame.js +13 -9
- package/common/stm.js +4 -4
- package/common/tell.js +10 -10
- package/common/temperature.instance.json +1297 -1209
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +5 -5
- package/common/time.js +7 -7
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +238 -259
- package/common/ui.js +9 -9
- package/common/weight.instance.json +4905 -4166
- package/common/weight.js +2 -2
- package/common/yesno.js +1 -1
- package/main.js +51 -46
- package/package.json +13 -6
@@ -14,7 +14,7 @@
|
|
14
14
|
{
|
15
15
|
"context": [
|
16
16
|
[
|
17
|
-
"
|
17
|
+
"mathematical_operator",
|
18
18
|
0
|
19
19
|
],
|
20
20
|
[
|
@@ -31,7 +31,7 @@
|
|
31
31
|
{
|
32
32
|
"where": "/home/dev/code/theprogrammablemind/kms/common/formulas.js:109",
|
33
33
|
"match": "({context, api}) => context.evaluate && api.get(context)",
|
34
|
-
"apply": "({context, api, e}) => {\n const { formula } = api.get(context)\n // console.log('greg24 -----------', JSON.stringify(formula, null, 2))\n context.evalue = e(formula) \n }"
|
34
|
+
"apply": "async ({context, api, e}) => {\n const { formula } = api.get(context)\n // console.log('greg24 -----------', JSON.stringify(formula, null, 2))\n context.evalue = await e(formula) \n }"
|
35
35
|
}
|
36
36
|
],
|
37
37
|
"bridges": [
|
@@ -44,14 +44,14 @@
|
|
44
44
|
],
|
45
45
|
"convolution": true,
|
46
46
|
"bridge": "{ number: before[0].number, ...next(operator), what: before[0], equality: after[0], variable: after[1] }",
|
47
|
-
"generatorp": "({context, g}) => `${g(context.what)} ${g(context.equality)} ${g(context.variable)}`",
|
47
|
+
"generatorp": "async ({context, g}) => `${await g(context.what)} ${await g(context.equality)} ${await g(context.variable)}`",
|
48
48
|
"evaluator": "({context, api, objects}) => {\n const formulas = api.gets(context.variable).map((f) => { return { ...f.equality, paraphrase: true } })\n context.evalue = { marker: 'list', value: formulas }\n }"
|
49
49
|
},
|
50
50
|
{
|
51
51
|
"where": "/home/dev/code/theprogrammablemind/kms/common/formulas.js:132",
|
52
52
|
"id": "solve",
|
53
53
|
"bridge": "{ ...next(operator), equality: after[0], variable: after[2] }",
|
54
|
-
"generatorp": "({context, gp}) => `${context.word} ${gp(context.equality)} for ${gp(context.variable)}`",
|
54
|
+
"generatorp": "async ({context, gp}) => `${context.word} ${await gp(context.equality)} for ${await gp(context.variable)}`",
|
55
55
|
"semantic": "({context}) => {\n context.response = solveFor(context.equality, context.variable)\n context.isResponse = true\n context.value = null\n if (!context.response) {\n // TODO some KM for talking to the user wrt brief+avatar\n context.verbatim = `Solving failed`\n }\n }"
|
56
56
|
},
|
57
57
|
{
|
@@ -80,14 +80,14 @@
|
|
80
80
|
"verby"
|
81
81
|
],
|
82
82
|
"bridge": "{ ...next(operator), expression: after[0] }",
|
83
|
-
"generatorp": "({context, g}) => `${context.word} ${g(context.expression)}`",
|
83
|
+
"generatorp": "async ({context, g}) => `${context.word} ${await g(context.expression)}`",
|
84
84
|
"localHierarchy": [
|
85
85
|
[
|
86
86
|
"unknown",
|
87
87
|
"expression"
|
88
88
|
]
|
89
89
|
],
|
90
|
-
"semantic": "({context, e}) => {\n context.evalue = e(context.expression)\n context.isResponse = true\n }"
|
90
|
+
"semantic": "async ({context, e}) => {\n context.evalue = await e(context.expression)\n context.isResponse = true\n }"
|
91
91
|
},
|
92
92
|
{
|
93
93
|
"where": "/home/dev/code/theprogrammablemind/kms/common/formulas.js:171",
|
@@ -97,7 +97,7 @@
|
|
97
97
|
"="
|
98
98
|
],
|
99
99
|
"after": [
|
100
|
-
"
|
100
|
+
"mathematical_operator"
|
101
101
|
],
|
102
102
|
"localHierarchy": [
|
103
103
|
[
|
@@ -105,7 +105,7 @@
|
|
105
105
|
"expression"
|
106
106
|
]
|
107
107
|
],
|
108
|
-
"generatorp": "({context, gp}) => `${gp(context.left)} ${context.word} ${gp(context.right)}`",
|
108
|
+
"generatorp": "async ({context, gp}) => `${await gp(context.left)} ${context.word} ${await gp(context.right)}`",
|
109
109
|
"semantic": "({context, api}) => {\n // TODO make sure left is a single name\n // TODO calculate invertable formulas?\n api.add(context.left, context.right, context)\n }"
|
110
110
|
}
|
111
111
|
]
|
@@ -114,569 +114,535 @@
|
|
114
114
|
"resultss": [
|
115
115
|
{
|
116
116
|
"hierarchy": [
|
117
|
-
[
|
118
|
-
"*",
|
119
|
-
"hierarchyAble"
|
120
|
-
],
|
121
|
-
[
|
122
|
-
"*",
|
123
|
-
"isEdee"
|
124
|
-
],
|
125
|
-
[
|
126
|
-
"*",
|
127
|
-
"isEder"
|
128
|
-
],
|
129
|
-
[
|
130
|
-
"*",
|
131
|
-
"mathematical_operator"
|
132
|
-
],
|
133
|
-
[
|
134
|
-
"*",
|
135
|
-
"object"
|
136
|
-
],
|
137
|
-
[
|
138
|
-
"*",
|
139
|
-
"property"
|
140
|
-
],
|
141
|
-
[
|
142
|
-
"*",
|
143
|
-
"queryable"
|
144
|
-
],
|
145
|
-
[
|
146
|
-
"*",
|
147
|
-
"theAble"
|
148
|
-
],
|
149
|
-
[
|
150
|
-
"+",
|
151
|
-
"hierarchyAble"
|
152
|
-
],
|
153
|
-
[
|
154
|
-
"+",
|
155
|
-
"isEdee"
|
156
|
-
],
|
157
|
-
[
|
158
|
-
"+",
|
159
|
-
"isEder"
|
160
|
-
],
|
161
|
-
[
|
162
|
-
"+",
|
163
|
-
"mathematical_operator"
|
164
|
-
],
|
165
|
-
[
|
166
|
-
"+",
|
167
|
-
"object"
|
168
|
-
],
|
169
|
-
[
|
170
|
-
"+",
|
171
|
-
"property"
|
172
|
-
],
|
173
|
-
[
|
174
|
-
"+",
|
175
|
-
"queryable"
|
176
|
-
],
|
177
|
-
[
|
178
|
-
"+",
|
179
|
-
"theAble"
|
180
|
-
],
|
181
|
-
[
|
182
|
-
"-",
|
183
|
-
"hierarchyAble"
|
184
|
-
],
|
185
|
-
[
|
186
|
-
"-",
|
187
|
-
"isEdee"
|
188
|
-
],
|
189
|
-
[
|
190
|
-
"-",
|
191
|
-
"isEder"
|
192
|
-
],
|
193
|
-
[
|
194
|
-
"-",
|
195
|
-
"mathematical_operator"
|
196
|
-
],
|
197
|
-
[
|
198
|
-
"-",
|
199
|
-
"object"
|
200
|
-
],
|
201
|
-
[
|
202
|
-
"-",
|
203
|
-
"property"
|
204
|
-
],
|
205
|
-
[
|
206
|
-
"-",
|
207
|
-
"queryable"
|
208
|
-
],
|
209
|
-
[
|
210
|
-
"-",
|
211
|
-
"theAble"
|
212
|
-
],
|
213
|
-
[
|
214
|
-
"/",
|
215
|
-
"hierarchyAble"
|
216
|
-
],
|
217
|
-
[
|
218
|
-
"/",
|
219
|
-
"isEdee"
|
220
|
-
],
|
221
|
-
[
|
222
|
-
"/",
|
223
|
-
"isEder"
|
224
|
-
],
|
225
|
-
[
|
226
|
-
"/",
|
227
|
-
"mathematical_operator"
|
228
|
-
],
|
229
|
-
[
|
230
|
-
"/",
|
231
|
-
"object"
|
232
|
-
],
|
233
|
-
[
|
234
|
-
"/",
|
235
|
-
"property"
|
236
|
-
],
|
237
|
-
[
|
238
|
-
"/",
|
239
|
-
"queryable"
|
240
|
-
],
|
241
|
-
[
|
242
|
-
"/",
|
243
|
-
"theAble"
|
244
|
-
],
|
245
117
|
[
|
246
118
|
"a",
|
247
|
-
"articlePOS"
|
119
|
+
"articlePOS",
|
120
|
+
false
|
248
121
|
],
|
249
122
|
[
|
250
123
|
"adjective",
|
251
|
-
"adjective"
|
124
|
+
"adjective",
|
125
|
+
false
|
252
126
|
],
|
253
127
|
[
|
254
128
|
"all",
|
255
|
-
"quantifier"
|
129
|
+
"quantifier",
|
130
|
+
false
|
256
131
|
],
|
257
132
|
[
|
258
133
|
"articlePOS",
|
259
|
-
"articlePOS"
|
134
|
+
"articlePOS",
|
135
|
+
false
|
260
136
|
],
|
261
137
|
[
|
262
138
|
"between",
|
263
|
-
"preposition"
|
139
|
+
"preposition",
|
140
|
+
false
|
264
141
|
],
|
265
142
|
[
|
266
143
|
"canBeDoQuestion",
|
267
|
-
"canBeDoQuestion"
|
144
|
+
"canBeDoQuestion",
|
145
|
+
false
|
268
146
|
],
|
269
147
|
[
|
270
148
|
"canBeQuestion",
|
271
|
-
"canBeQuestion"
|
149
|
+
"canBeQuestion",
|
150
|
+
false
|
272
151
|
],
|
273
152
|
[
|
274
153
|
"concept",
|
275
|
-
"queryable"
|
154
|
+
"queryable",
|
155
|
+
false
|
276
156
|
],
|
277
157
|
[
|
278
158
|
"concept",
|
279
|
-
"theAble"
|
159
|
+
"theAble",
|
160
|
+
false
|
280
161
|
],
|
281
162
|
[
|
282
163
|
"condition",
|
283
|
-
"condition"
|
164
|
+
"condition",
|
165
|
+
false
|
284
166
|
],
|
285
167
|
[
|
286
168
|
"countable",
|
287
|
-
"hierarchyAble"
|
169
|
+
"hierarchyAble",
|
170
|
+
false
|
288
171
|
],
|
289
172
|
[
|
290
173
|
"divideByExpression",
|
291
|
-
"mathematicalExpression"
|
174
|
+
"mathematicalExpression",
|
175
|
+
false
|
292
176
|
],
|
293
177
|
[
|
294
178
|
"divideByOperator",
|
295
|
-
"
|
179
|
+
"mathematical_operator",
|
180
|
+
false
|
296
181
|
],
|
297
182
|
[
|
298
183
|
"doubleQuote",
|
299
|
-
"queryable"
|
184
|
+
"queryable",
|
185
|
+
false
|
300
186
|
],
|
301
187
|
[
|
302
188
|
"hasCountOfPieces",
|
303
|
-
"countable"
|
189
|
+
"countable",
|
190
|
+
false
|
304
191
|
],
|
305
192
|
[
|
306
193
|
"have",
|
307
|
-
"canBeDoQuestion"
|
194
|
+
"canBeDoQuestion",
|
195
|
+
false
|
308
196
|
],
|
309
197
|
[
|
310
198
|
"have",
|
311
|
-
"canBeQuestion"
|
199
|
+
"canBeQuestion",
|
200
|
+
false
|
312
201
|
],
|
313
202
|
[
|
314
203
|
"hierarchyAble",
|
315
|
-
"queryable"
|
204
|
+
"queryable",
|
205
|
+
false
|
316
206
|
],
|
317
207
|
[
|
318
208
|
"highest",
|
319
|
-
"condition"
|
209
|
+
"condition",
|
210
|
+
false
|
320
211
|
],
|
321
212
|
[
|
322
213
|
"ifAble",
|
323
|
-
"ifAble"
|
214
|
+
"ifAble",
|
215
|
+
false
|
324
216
|
],
|
325
217
|
[
|
326
218
|
"is",
|
327
|
-
"canBeQuestion"
|
219
|
+
"canBeQuestion",
|
220
|
+
false
|
328
221
|
],
|
329
222
|
[
|
330
223
|
"is",
|
331
|
-
"verby"
|
224
|
+
"verby",
|
225
|
+
false
|
332
226
|
],
|
333
227
|
[
|
334
228
|
"isEdee",
|
335
|
-
"isEdee"
|
229
|
+
"isEdee",
|
230
|
+
false
|
336
231
|
],
|
337
232
|
[
|
338
233
|
"isEder",
|
339
|
-
"isEder"
|
234
|
+
"isEder",
|
235
|
+
false
|
340
236
|
],
|
341
237
|
[
|
342
238
|
"it",
|
343
|
-
"pronoun"
|
239
|
+
"pronoun",
|
240
|
+
false
|
344
241
|
],
|
345
242
|
[
|
346
243
|
"it",
|
347
|
-
"queryable"
|
244
|
+
"queryable",
|
245
|
+
false
|
348
246
|
],
|
349
247
|
[
|
350
248
|
"it",
|
351
|
-
"thisitthat"
|
249
|
+
"thisitthat",
|
250
|
+
false
|
352
251
|
],
|
353
252
|
[
|
354
253
|
"it",
|
355
|
-
"toAble"
|
254
|
+
"toAble",
|
255
|
+
false
|
356
256
|
],
|
357
257
|
[
|
358
258
|
"lowest",
|
359
|
-
"condition"
|
259
|
+
"condition",
|
260
|
+
false
|
360
261
|
],
|
361
262
|
[
|
362
263
|
"mathematical",
|
363
|
-
"hierarchyAble"
|
264
|
+
"hierarchyAble",
|
265
|
+
false
|
364
266
|
],
|
365
267
|
[
|
366
268
|
"mathematical",
|
367
|
-
"isEdee"
|
269
|
+
"isEdee",
|
270
|
+
false
|
368
271
|
],
|
369
272
|
[
|
370
273
|
"mathematical",
|
371
|
-
"isEder"
|
274
|
+
"isEder",
|
275
|
+
false
|
372
276
|
],
|
373
277
|
[
|
374
278
|
"mathematical",
|
375
|
-
"object"
|
279
|
+
"object",
|
280
|
+
false
|
376
281
|
],
|
377
282
|
[
|
378
283
|
"mathematical",
|
379
|
-
"operator_modifier"
|
284
|
+
"operator_modifier",
|
285
|
+
false
|
380
286
|
],
|
381
287
|
[
|
382
288
|
"mathematical",
|
383
|
-
"property"
|
289
|
+
"property",
|
290
|
+
false
|
384
291
|
],
|
385
292
|
[
|
386
293
|
"mathematical",
|
387
|
-
"queryable"
|
294
|
+
"queryable",
|
295
|
+
false
|
388
296
|
],
|
389
297
|
[
|
390
298
|
"mathematical",
|
391
|
-
"theAble"
|
299
|
+
"theAble",
|
300
|
+
false
|
392
301
|
],
|
393
302
|
[
|
394
303
|
"mathematicalExpression",
|
395
|
-
"concept"
|
304
|
+
"concept",
|
305
|
+
false
|
396
306
|
],
|
397
307
|
[
|
398
308
|
"mathematicalExpression",
|
399
|
-
"number"
|
400
|
-
|
401
|
-
[
|
402
|
-
"mathematicalOperator",
|
403
|
-
"mathematicalOperator"
|
309
|
+
"number",
|
310
|
+
false
|
404
311
|
],
|
405
312
|
[
|
406
313
|
"mathematical_operator",
|
407
|
-
"adjective"
|
314
|
+
"adjective",
|
315
|
+
true
|
408
316
|
],
|
409
317
|
[
|
410
318
|
"mathematical_operator",
|
411
|
-
"concept"
|
319
|
+
"concept",
|
320
|
+
false
|
412
321
|
],
|
413
322
|
[
|
414
323
|
"mathematical_operator",
|
415
|
-
"hierarchyAble"
|
324
|
+
"hierarchyAble",
|
325
|
+
false
|
416
326
|
],
|
417
327
|
[
|
418
328
|
"mathematical_operator",
|
419
|
-
"isEdee"
|
329
|
+
"isEdee",
|
330
|
+
false
|
420
331
|
],
|
421
332
|
[
|
422
333
|
"mathematical_operator",
|
423
|
-
"isEder"
|
334
|
+
"isEder",
|
335
|
+
false
|
424
336
|
],
|
425
337
|
[
|
426
338
|
"mathematical_operator",
|
427
|
-
"object"
|
339
|
+
"object",
|
340
|
+
false
|
428
341
|
],
|
429
342
|
[
|
430
343
|
"mathematical_operator",
|
431
|
-
"operator"
|
344
|
+
"operator",
|
345
|
+
false
|
432
346
|
],
|
433
347
|
[
|
434
348
|
"mathematical_operator",
|
435
|
-
"property"
|
349
|
+
"property",
|
350
|
+
false
|
436
351
|
],
|
437
352
|
[
|
438
353
|
"mathematical_operator",
|
439
|
-
"queryable"
|
354
|
+
"queryable",
|
355
|
+
false
|
440
356
|
],
|
441
357
|
[
|
442
358
|
"mathematical_operator",
|
443
|
-
"theAble"
|
359
|
+
"theAble",
|
360
|
+
false
|
444
361
|
],
|
445
362
|
[
|
446
363
|
"minusExpression",
|
447
|
-
"mathematicalExpression"
|
364
|
+
"mathematicalExpression",
|
365
|
+
false
|
448
366
|
],
|
449
367
|
[
|
450
368
|
"minusOperator",
|
451
|
-
"
|
369
|
+
"mathematical_operator",
|
370
|
+
false
|
452
371
|
],
|
453
372
|
[
|
454
373
|
"modifies",
|
455
|
-
"verby"
|
456
|
-
|
457
|
-
[
|
458
|
-
"notAble",
|
459
|
-
"notAble"
|
374
|
+
"verby",
|
375
|
+
false
|
460
376
|
],
|
461
377
|
[
|
462
378
|
"noun",
|
463
|
-
"theAble"
|
379
|
+
"theAble",
|
380
|
+
false
|
464
381
|
],
|
465
382
|
[
|
466
383
|
"number",
|
467
|
-
"quantifier"
|
384
|
+
"quantifier",
|
385
|
+
false
|
468
386
|
],
|
469
387
|
[
|
470
388
|
"number",
|
471
|
-
"queryable"
|
389
|
+
"queryable",
|
390
|
+
false
|
472
391
|
],
|
473
392
|
[
|
474
393
|
"object",
|
475
|
-
"queryable"
|
394
|
+
"queryable",
|
395
|
+
false
|
476
396
|
],
|
477
397
|
[
|
478
398
|
"object",
|
479
|
-
"theAble"
|
399
|
+
"theAble",
|
400
|
+
false
|
480
401
|
],
|
481
402
|
[
|
482
403
|
"operator",
|
483
|
-
"concept"
|
404
|
+
"concept",
|
405
|
+
false
|
484
406
|
],
|
485
407
|
[
|
486
408
|
"operator",
|
487
|
-
"hierarchyAble"
|
409
|
+
"hierarchyAble",
|
410
|
+
false
|
488
411
|
],
|
489
412
|
[
|
490
413
|
"operator",
|
491
|
-
"isEdee"
|
414
|
+
"isEdee",
|
415
|
+
false
|
492
416
|
],
|
493
417
|
[
|
494
418
|
"operator",
|
495
|
-
"isEder"
|
419
|
+
"isEder",
|
420
|
+
false
|
496
421
|
],
|
497
422
|
[
|
498
423
|
"operator",
|
499
|
-
"object"
|
424
|
+
"object",
|
425
|
+
false
|
500
426
|
],
|
501
427
|
[
|
502
428
|
"operator",
|
503
|
-
"property"
|
429
|
+
"property",
|
430
|
+
false
|
504
431
|
],
|
505
432
|
[
|
506
433
|
"operator",
|
507
|
-
"queryable"
|
434
|
+
"queryable",
|
435
|
+
false
|
508
436
|
],
|
509
437
|
[
|
510
438
|
"operator",
|
511
|
-
"theAble"
|
439
|
+
"theAble",
|
440
|
+
false
|
512
441
|
],
|
513
442
|
[
|
514
443
|
"operator_modifier",
|
515
|
-
"operator_modifier"
|
444
|
+
"operator_modifier",
|
445
|
+
false
|
516
446
|
],
|
517
447
|
[
|
518
448
|
"orAble",
|
519
|
-
"ifAble"
|
449
|
+
"ifAble",
|
450
|
+
false
|
520
451
|
],
|
521
452
|
[
|
522
453
|
"plusExpression",
|
523
|
-
"mathematicalExpression"
|
454
|
+
"mathematicalExpression",
|
455
|
+
false
|
524
456
|
],
|
525
457
|
[
|
526
458
|
"plusOperator",
|
527
|
-
"
|
459
|
+
"mathematical_operator",
|
460
|
+
false
|
528
461
|
],
|
529
462
|
[
|
530
463
|
"preposition",
|
531
|
-
"preposition"
|
464
|
+
"preposition",
|
465
|
+
false
|
532
466
|
],
|
533
467
|
[
|
534
468
|
"pronoun",
|
535
|
-
"pronoun"
|
469
|
+
"pronoun",
|
470
|
+
false
|
536
471
|
],
|
537
472
|
[
|
538
473
|
"property",
|
539
|
-
"queryable"
|
474
|
+
"queryable",
|
475
|
+
false
|
540
476
|
],
|
541
477
|
[
|
542
478
|
"property",
|
543
|
-
"theAble"
|
479
|
+
"theAble",
|
480
|
+
false
|
544
481
|
],
|
545
482
|
[
|
546
483
|
"property",
|
547
|
-
"unknown"
|
484
|
+
"unknown",
|
485
|
+
false
|
548
486
|
],
|
549
487
|
[
|
550
488
|
"punctuation",
|
551
|
-
"punctuation"
|
489
|
+
"punctuation",
|
490
|
+
false
|
552
491
|
],
|
553
492
|
[
|
554
493
|
"quantifier",
|
555
|
-
"quantifier"
|
494
|
+
"quantifier",
|
495
|
+
false
|
556
496
|
],
|
557
497
|
[
|
558
498
|
"queryable",
|
559
|
-
"queryable"
|
499
|
+
"queryable",
|
500
|
+
false
|
560
501
|
],
|
561
502
|
[
|
562
503
|
"questionMark",
|
563
|
-
"punctuation"
|
504
|
+
"punctuation",
|
505
|
+
false
|
564
506
|
],
|
565
507
|
[
|
566
508
|
"readonly",
|
567
|
-
"queryable"
|
509
|
+
"queryable",
|
510
|
+
false
|
568
511
|
],
|
569
512
|
[
|
570
513
|
"reason",
|
571
|
-
"queryable"
|
514
|
+
"queryable",
|
515
|
+
false
|
572
516
|
],
|
573
517
|
[
|
574
518
|
"reason",
|
575
|
-
"theAble"
|
519
|
+
"theAble",
|
520
|
+
false
|
576
521
|
],
|
577
522
|
[
|
578
523
|
"that",
|
579
|
-
"thisitthat"
|
524
|
+
"thisitthat",
|
525
|
+
false
|
580
526
|
],
|
581
527
|
[
|
582
528
|
"the",
|
583
|
-
"articlePOS"
|
529
|
+
"articlePOS",
|
530
|
+
false
|
584
531
|
],
|
585
532
|
[
|
586
533
|
"theAble",
|
587
|
-
"theAble"
|
534
|
+
"theAble",
|
535
|
+
false
|
588
536
|
],
|
589
537
|
[
|
590
538
|
"this",
|
591
|
-
"pronoun"
|
539
|
+
"pronoun",
|
540
|
+
false
|
592
541
|
],
|
593
542
|
[
|
594
543
|
"this",
|
595
|
-
"queryable"
|
544
|
+
"queryable",
|
545
|
+
false
|
596
546
|
],
|
597
547
|
[
|
598
548
|
"this",
|
599
|
-
"thisitthat"
|
549
|
+
"thisitthat",
|
550
|
+
false
|
600
551
|
],
|
601
552
|
[
|
602
553
|
"thisitthat",
|
603
|
-
"queryable"
|
554
|
+
"queryable",
|
555
|
+
false
|
604
556
|
],
|
605
557
|
[
|
606
558
|
"timesExpression",
|
607
|
-
"mathematicalExpression"
|
559
|
+
"mathematicalExpression",
|
560
|
+
false
|
608
561
|
],
|
609
562
|
[
|
610
563
|
"timesOperator",
|
611
|
-
"
|
564
|
+
"mathematical_operator",
|
565
|
+
false
|
612
566
|
],
|
613
567
|
[
|
614
568
|
"to",
|
615
|
-
"preposition"
|
569
|
+
"preposition",
|
570
|
+
false
|
616
571
|
],
|
617
572
|
[
|
618
573
|
"toAble",
|
619
|
-
"toAble"
|
574
|
+
"toAble",
|
575
|
+
false
|
620
576
|
],
|
621
577
|
[
|
622
578
|
"type",
|
623
|
-
"property"
|
579
|
+
"property",
|
580
|
+
false
|
624
581
|
],
|
625
582
|
[
|
626
583
|
"type",
|
627
|
-
"whatAble"
|
628
|
-
|
629
|
-
[
|
630
|
-
"unknown",
|
631
|
-
"hierarchyAble"
|
584
|
+
"whatAble",
|
585
|
+
false
|
632
586
|
],
|
633
587
|
[
|
634
588
|
"unknown",
|
635
|
-
"
|
589
|
+
"hierarchyAble",
|
590
|
+
false
|
636
591
|
],
|
637
592
|
[
|
638
593
|
"unknown",
|
639
|
-
"object"
|
594
|
+
"object",
|
595
|
+
false
|
640
596
|
],
|
641
597
|
[
|
642
598
|
"unknown",
|
643
|
-
"queryable"
|
599
|
+
"queryable",
|
600
|
+
false
|
644
601
|
],
|
645
602
|
[
|
646
603
|
"unknown",
|
647
|
-
"theAble"
|
604
|
+
"theAble",
|
605
|
+
false
|
648
606
|
],
|
649
607
|
[
|
650
608
|
"verby",
|
651
|
-
"verby"
|
609
|
+
"verby",
|
610
|
+
false
|
652
611
|
],
|
653
612
|
[
|
654
613
|
"what",
|
655
|
-
"object"
|
614
|
+
"object",
|
615
|
+
false
|
656
616
|
],
|
657
617
|
[
|
658
618
|
"what",
|
659
|
-
"queryable"
|
619
|
+
"queryable",
|
620
|
+
false
|
660
621
|
],
|
661
622
|
[
|
662
623
|
"whatAble",
|
663
|
-
"queryable"
|
624
|
+
"queryable",
|
625
|
+
false
|
664
626
|
],
|
665
627
|
[
|
666
628
|
"whose",
|
667
|
-
"object"
|
629
|
+
"object",
|
630
|
+
false
|
668
631
|
],
|
669
632
|
[
|
670
633
|
"x",
|
671
|
-
"number"
|
634
|
+
"number",
|
635
|
+
false
|
672
636
|
],
|
673
637
|
[
|
674
638
|
"xfx",
|
675
|
-
"queryable"
|
639
|
+
"queryable",
|
640
|
+
false
|
676
641
|
],
|
677
642
|
[
|
678
643
|
"y",
|
679
|
-
"number"
|
644
|
+
"number",
|
645
|
+
false
|
680
646
|
]
|
681
647
|
],
|
682
648
|
"metadata": {
|
@@ -867,7 +833,7 @@
|
|
867
833
|
{
|
868
834
|
"context": [
|
869
835
|
[
|
870
|
-
"
|
836
|
+
"mathematical_operator",
|
871
837
|
0
|
872
838
|
],
|
873
839
|
[
|
@@ -942,7 +908,7 @@
|
|
942
908
|
"="
|
943
909
|
],
|
944
910
|
"after": [
|
945
|
-
"
|
911
|
+
"mathematical_operator"
|
946
912
|
],
|
947
913
|
"localHierarchy": [
|
948
914
|
[
|