ekms 9.7.1-beta.11 → 9.7.1-beta.13
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/actions.instance.json +11 -1
- package/common/actions.js +1 -1
- package/common/angle.instance.json +27 -0
- package/common/articles.js +38 -4
- package/common/can.instance.json +1 -1
- package/common/comparable.instance.json +12 -6
- package/common/conjunction.js +2 -2
- package/common/countable.js +39 -5
- package/common/crew.instance.json +1005 -158
- package/common/crew.js +3 -3
- package/common/dialogues.js +3 -4
- package/common/dimension.instance.json +136 -10
- package/common/dimension.js +5 -5
- package/common/drone.instance.json +406 -369
- package/common/drone.js +38 -8
- package/common/drone_v1.instance.json +105 -0
- package/common/edible.instance.json +72 -0
- package/common/emotions.instance.json +143 -4
- package/common/fastfood.instance.json +456 -313
- package/common/fastfood.js +7 -0
- package/common/gdefaults.js +12 -121
- package/common/hierarchy.js +0 -1
- package/common/length.instance.json +27 -0
- package/common/ordering.instance.json +2 -1
- package/common/ordinals.js +9 -3
- package/common/pipboy.instance.json +2 -2
- package/common/pipboy.js +3 -3
- package/common/pressure.instance.json +27 -0
- package/common/properties.instance.json +322 -37
- package/common/properties.js +38 -31
- package/common/reports.instance.json +5 -3
- package/common/stm.js +15 -9
- package/common/temperature.instance.json +27 -0
- package/common/time.instance.json +167 -0
- package/common/weight.instance.json +27 -0
- package/common/wp.instance.json +21 -21
- package/common/wp.js +62 -10
- package/package.json +2 -2
package/common/drone.js
CHANGED
|
@@ -851,10 +851,10 @@ const template = {
|
|
|
851
851
|
match: ({childId}) => childId == 'point',
|
|
852
852
|
apply: ({config, childId}) => {
|
|
853
853
|
config.updateBridge(childId, ({ bridge }) => {
|
|
854
|
-
if (!bridge.
|
|
855
|
-
bridge.
|
|
854
|
+
if (!bridge.initial) {
|
|
855
|
+
bridge.initial = {}
|
|
856
856
|
}
|
|
857
|
-
bridge.
|
|
857
|
+
bridge.initial['notConjunctableWith'] = ['quantity', 'number']
|
|
858
858
|
})
|
|
859
859
|
}
|
|
860
860
|
})
|
|
@@ -1351,8 +1351,11 @@ const template = {
|
|
|
1351
1351
|
{
|
|
1352
1352
|
where: where(),
|
|
1353
1353
|
match: ({context}) => context.marker == 'doAction',
|
|
1354
|
-
apply: async ({context, fragments, e, s, toEValue, toFinalValue, objects}) => {
|
|
1355
|
-
|
|
1354
|
+
apply: async ({context, fragments, e, s, toEValue, toFinalValue, namespaced, objects}) => {
|
|
1355
|
+
const updated = { ...context, marker: 'patrol', path: context.action }
|
|
1356
|
+
namespaced.set('actions', updated, 'logged', true)
|
|
1357
|
+
await s(updated)
|
|
1358
|
+
// await s({ ...context, marker: 'patrol', path: context.action })
|
|
1356
1359
|
}
|
|
1357
1360
|
},
|
|
1358
1361
|
{
|
|
@@ -1456,8 +1459,26 @@ const template = {
|
|
|
1456
1459
|
}
|
|
1457
1460
|
},
|
|
1458
1461
|
{
|
|
1459
|
-
|
|
1462
|
+
where: where(),
|
|
1463
|
+
match: ({context}) => {
|
|
1464
|
+
// from stm lookup
|
|
1465
|
+
if (context.marker == 'mentions' && context.evaluate && context.args.context.marker == 'speed') {
|
|
1466
|
+
return true
|
|
1467
|
+
}
|
|
1468
|
+
// from property directly
|
|
1469
|
+
if (context.marker == 'speed' && context.evaluate) {
|
|
1470
|
+
return true
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1460
1473
|
apply: async ({gp, s, context, objects, fragments, resolveEvaluate, api}) => {
|
|
1474
|
+
let return_context = context
|
|
1475
|
+
if (context.marker == 'speed') {
|
|
1476
|
+
// okay
|
|
1477
|
+
} else {
|
|
1478
|
+
// stm lookup
|
|
1479
|
+
return_context = context
|
|
1480
|
+
context = context.args.context
|
|
1481
|
+
}
|
|
1461
1482
|
let value = objects.current.speed
|
|
1462
1483
|
if (context.condition) {
|
|
1463
1484
|
if (['highest', 'maximum'].includes(context.condition.marker)) {
|
|
@@ -1468,11 +1489,20 @@ const template = {
|
|
|
1468
1489
|
}
|
|
1469
1490
|
const speed = await fragments("number meters per second", { number: { marker: 'integer', value, word: undefined} })
|
|
1470
1491
|
const preferred = await s({ marker: 'preferredUnits', quantity: speed })
|
|
1471
|
-
resolveEvaluate(
|
|
1492
|
+
resolveEvaluate(return_context, preferred.response || speed)
|
|
1472
1493
|
}
|
|
1473
1494
|
},
|
|
1474
1495
|
{
|
|
1475
|
-
|
|
1496
|
+
where: where(),
|
|
1497
|
+
// recallOverride(context(), frameOfReference())
|
|
1498
|
+
match: ({context}) => {
|
|
1499
|
+
if (context.marker == 'mentions' && context.evaluate && ['direction', 'drone_direction'].includes(context.args.context.marker)) {
|
|
1500
|
+
return true
|
|
1501
|
+
}
|
|
1502
|
+
if (['direction', 'drone_direction'].includes(context.marker) && context.evaluate) {
|
|
1503
|
+
return true
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1476
1506
|
apply: async ({gp, s, context, objects, fragments, resolveEvaluate, api}) => {
|
|
1477
1507
|
const value = objects.current.angleInRadians
|
|
1478
1508
|
const fi = await fragments("number radians")
|
|
@@ -122,6 +122,11 @@
|
|
|
122
122
|
"adjective",
|
|
123
123
|
false
|
|
124
124
|
],
|
|
125
|
+
[
|
|
126
|
+
"ageMarker",
|
|
127
|
+
"propertyMarker",
|
|
128
|
+
false
|
|
129
|
+
],
|
|
125
130
|
[
|
|
126
131
|
"all",
|
|
127
132
|
"quantifier",
|
|
@@ -742,6 +747,11 @@
|
|
|
742
747
|
"adjective",
|
|
743
748
|
false
|
|
744
749
|
],
|
|
750
|
+
[
|
|
751
|
+
"heightMarker",
|
|
752
|
+
"propertyMarker",
|
|
753
|
+
false
|
|
754
|
+
],
|
|
745
755
|
[
|
|
746
756
|
"hierarchyAble",
|
|
747
757
|
"queryable",
|
|
@@ -2167,6 +2177,11 @@
|
|
|
2167
2177
|
"thisAble",
|
|
2168
2178
|
false
|
|
2169
2179
|
],
|
|
2180
|
+
[
|
|
2181
|
+
"propertyMarker",
|
|
2182
|
+
"propertyMarker",
|
|
2183
|
+
false
|
|
2184
|
+
],
|
|
2170
2185
|
[
|
|
2171
2186
|
"propertyOf",
|
|
2172
2187
|
"preposition",
|
|
@@ -3199,6 +3214,11 @@
|
|
|
3199
3214
|
"adjective",
|
|
3200
3215
|
false
|
|
3201
3216
|
],
|
|
3217
|
+
[
|
|
3218
|
+
"ageMarker",
|
|
3219
|
+
"propertyMarker",
|
|
3220
|
+
false
|
|
3221
|
+
],
|
|
3202
3222
|
[
|
|
3203
3223
|
"all",
|
|
3204
3224
|
"quantifier",
|
|
@@ -3864,6 +3884,11 @@
|
|
|
3864
3884
|
"adjective",
|
|
3865
3885
|
false
|
|
3866
3886
|
],
|
|
3887
|
+
[
|
|
3888
|
+
"heightMarker",
|
|
3889
|
+
"propertyMarker",
|
|
3890
|
+
false
|
|
3891
|
+
],
|
|
3867
3892
|
[
|
|
3868
3893
|
"hierarchyAble",
|
|
3869
3894
|
"queryable",
|
|
@@ -5289,6 +5314,11 @@
|
|
|
5289
5314
|
"thisAble",
|
|
5290
5315
|
false
|
|
5291
5316
|
],
|
|
5317
|
+
[
|
|
5318
|
+
"propertyMarker",
|
|
5319
|
+
"propertyMarker",
|
|
5320
|
+
false
|
|
5321
|
+
],
|
|
5292
5322
|
[
|
|
5293
5323
|
"propertyOf",
|
|
5294
5324
|
"preposition",
|
|
@@ -8191,6 +8221,11 @@
|
|
|
8191
8221
|
"adjective",
|
|
8192
8222
|
false
|
|
8193
8223
|
],
|
|
8224
|
+
[
|
|
8225
|
+
"ageMarker",
|
|
8226
|
+
"propertyMarker",
|
|
8227
|
+
false
|
|
8228
|
+
],
|
|
8194
8229
|
[
|
|
8195
8230
|
"all",
|
|
8196
8231
|
"quantifier",
|
|
@@ -9031,6 +9066,11 @@
|
|
|
9031
9066
|
"adjective",
|
|
9032
9067
|
false
|
|
9033
9068
|
],
|
|
9069
|
+
[
|
|
9070
|
+
"heightMarker",
|
|
9071
|
+
"propertyMarker",
|
|
9072
|
+
false
|
|
9073
|
+
],
|
|
9034
9074
|
[
|
|
9035
9075
|
"hierarchyAble",
|
|
9036
9076
|
"queryable",
|
|
@@ -10501,6 +10541,11 @@
|
|
|
10501
10541
|
"thisAble",
|
|
10502
10542
|
false
|
|
10503
10543
|
],
|
|
10544
|
+
[
|
|
10545
|
+
"propertyMarker",
|
|
10546
|
+
"propertyMarker",
|
|
10547
|
+
false
|
|
10548
|
+
],
|
|
10504
10549
|
[
|
|
10505
10550
|
"propertyOf",
|
|
10506
10551
|
"preposition",
|
|
@@ -11760,6 +11805,11 @@
|
|
|
11760
11805
|
"adjective",
|
|
11761
11806
|
false
|
|
11762
11807
|
],
|
|
11808
|
+
[
|
|
11809
|
+
"ageMarker",
|
|
11810
|
+
"propertyMarker",
|
|
11811
|
+
false
|
|
11812
|
+
],
|
|
11763
11813
|
[
|
|
11764
11814
|
"all",
|
|
11765
11815
|
"quantifier",
|
|
@@ -12600,6 +12650,11 @@
|
|
|
12600
12650
|
"adjective",
|
|
12601
12651
|
false
|
|
12602
12652
|
],
|
|
12653
|
+
[
|
|
12654
|
+
"heightMarker",
|
|
12655
|
+
"propertyMarker",
|
|
12656
|
+
false
|
|
12657
|
+
],
|
|
12603
12658
|
[
|
|
12604
12659
|
"hierarchyAble",
|
|
12605
12660
|
"queryable",
|
|
@@ -14110,6 +14165,11 @@
|
|
|
14110
14165
|
"thisAble",
|
|
14111
14166
|
false
|
|
14112
14167
|
],
|
|
14168
|
+
[
|
|
14169
|
+
"propertyMarker",
|
|
14170
|
+
"propertyMarker",
|
|
14171
|
+
false
|
|
14172
|
+
],
|
|
14113
14173
|
[
|
|
14114
14174
|
"propertyOf",
|
|
14115
14175
|
"preposition",
|
|
@@ -15227,6 +15287,11 @@
|
|
|
15227
15287
|
"adjective",
|
|
15228
15288
|
false
|
|
15229
15289
|
],
|
|
15290
|
+
[
|
|
15291
|
+
"ageMarker",
|
|
15292
|
+
"propertyMarker",
|
|
15293
|
+
false
|
|
15294
|
+
],
|
|
15230
15295
|
[
|
|
15231
15296
|
"all",
|
|
15232
15297
|
"quantifier",
|
|
@@ -16067,6 +16132,11 @@
|
|
|
16067
16132
|
"adjective",
|
|
16068
16133
|
false
|
|
16069
16134
|
],
|
|
16135
|
+
[
|
|
16136
|
+
"heightMarker",
|
|
16137
|
+
"propertyMarker",
|
|
16138
|
+
false
|
|
16139
|
+
],
|
|
16070
16140
|
[
|
|
16071
16141
|
"hierarchyAble",
|
|
16072
16142
|
"queryable",
|
|
@@ -17622,6 +17692,11 @@
|
|
|
17622
17692
|
"thisAble",
|
|
17623
17693
|
false
|
|
17624
17694
|
],
|
|
17695
|
+
[
|
|
17696
|
+
"propertyMarker",
|
|
17697
|
+
"propertyMarker",
|
|
17698
|
+
false
|
|
17699
|
+
],
|
|
17625
17700
|
[
|
|
17626
17701
|
"propertyOf",
|
|
17627
17702
|
"preposition",
|
|
@@ -19164,6 +19239,11 @@
|
|
|
19164
19239
|
"adjective",
|
|
19165
19240
|
false
|
|
19166
19241
|
],
|
|
19242
|
+
[
|
|
19243
|
+
"ageMarker",
|
|
19244
|
+
"propertyMarker",
|
|
19245
|
+
false
|
|
19246
|
+
],
|
|
19167
19247
|
[
|
|
19168
19248
|
"all",
|
|
19169
19249
|
"quantifier",
|
|
@@ -20009,6 +20089,11 @@
|
|
|
20009
20089
|
"adjective",
|
|
20010
20090
|
false
|
|
20011
20091
|
],
|
|
20092
|
+
[
|
|
20093
|
+
"heightMarker",
|
|
20094
|
+
"propertyMarker",
|
|
20095
|
+
false
|
|
20096
|
+
],
|
|
20012
20097
|
[
|
|
20013
20098
|
"hierarchyAble",
|
|
20014
20099
|
"queryable",
|
|
@@ -21584,6 +21669,11 @@
|
|
|
21584
21669
|
"thisAble",
|
|
21585
21670
|
false
|
|
21586
21671
|
],
|
|
21672
|
+
[
|
|
21673
|
+
"propertyMarker",
|
|
21674
|
+
"propertyMarker",
|
|
21675
|
+
false
|
|
21676
|
+
],
|
|
21587
21677
|
[
|
|
21588
21678
|
"propertyOf",
|
|
21589
21679
|
"preposition",
|
|
@@ -22574,6 +22664,11 @@
|
|
|
22574
22664
|
"adjective",
|
|
22575
22665
|
false
|
|
22576
22666
|
],
|
|
22667
|
+
[
|
|
22668
|
+
"ageMarker",
|
|
22669
|
+
"propertyMarker",
|
|
22670
|
+
false
|
|
22671
|
+
],
|
|
22577
22672
|
[
|
|
22578
22673
|
"all",
|
|
22579
22674
|
"quantifier",
|
|
@@ -23419,6 +23514,11 @@
|
|
|
23419
23514
|
"adjective",
|
|
23420
23515
|
false
|
|
23421
23516
|
],
|
|
23517
|
+
[
|
|
23518
|
+
"heightMarker",
|
|
23519
|
+
"propertyMarker",
|
|
23520
|
+
false
|
|
23521
|
+
],
|
|
23422
23522
|
[
|
|
23423
23523
|
"hierarchyAble",
|
|
23424
23524
|
"queryable",
|
|
@@ -24994,6 +25094,11 @@
|
|
|
24994
25094
|
"thisAble",
|
|
24995
25095
|
false
|
|
24996
25096
|
],
|
|
25097
|
+
[
|
|
25098
|
+
"propertyMarker",
|
|
25099
|
+
"propertyMarker",
|
|
25100
|
+
false
|
|
25101
|
+
],
|
|
24997
25102
|
[
|
|
24998
25103
|
"propertyOf",
|
|
24999
25104
|
"preposition",
|
|
@@ -48135,6 +48135,24 @@
|
|
|
48135
48135
|
0
|
|
48136
48136
|
]
|
|
48137
48137
|
],
|
|
48138
|
+
[
|
|
48139
|
+
[
|
|
48140
|
+
"a",
|
|
48141
|
+
0
|
|
48142
|
+
],
|
|
48143
|
+
[
|
|
48144
|
+
"is",
|
|
48145
|
+
0
|
|
48146
|
+
],
|
|
48147
|
+
[
|
|
48148
|
+
"sandwich",
|
|
48149
|
+
0
|
|
48150
|
+
],
|
|
48151
|
+
[
|
|
48152
|
+
"unknown",
|
|
48153
|
+
0
|
|
48154
|
+
]
|
|
48155
|
+
],
|
|
48138
48156
|
[
|
|
48139
48157
|
[
|
|
48140
48158
|
"is",
|
|
@@ -51027,6 +51045,24 @@
|
|
|
51027
51045
|
0
|
|
51028
51046
|
]
|
|
51029
51047
|
],
|
|
51048
|
+
[
|
|
51049
|
+
[
|
|
51050
|
+
"a",
|
|
51051
|
+
0
|
|
51052
|
+
],
|
|
51053
|
+
[
|
|
51054
|
+
"hamburger",
|
|
51055
|
+
0
|
|
51056
|
+
],
|
|
51057
|
+
[
|
|
51058
|
+
"is",
|
|
51059
|
+
0
|
|
51060
|
+
],
|
|
51061
|
+
[
|
|
51062
|
+
"unknown",
|
|
51063
|
+
0
|
|
51064
|
+
]
|
|
51065
|
+
],
|
|
51030
51066
|
[
|
|
51031
51067
|
[
|
|
51032
51068
|
"hamburger",
|
|
@@ -72542,6 +72578,24 @@
|
|
|
72542
72578
|
0
|
|
72543
72579
|
]
|
|
72544
72580
|
],
|
|
72581
|
+
[
|
|
72582
|
+
[
|
|
72583
|
+
"a",
|
|
72584
|
+
0
|
|
72585
|
+
],
|
|
72586
|
+
[
|
|
72587
|
+
"hamburger",
|
|
72588
|
+
0
|
|
72589
|
+
],
|
|
72590
|
+
[
|
|
72591
|
+
"is",
|
|
72592
|
+
0
|
|
72593
|
+
],
|
|
72594
|
+
[
|
|
72595
|
+
"unknown",
|
|
72596
|
+
0
|
|
72597
|
+
]
|
|
72598
|
+
],
|
|
72545
72599
|
[
|
|
72546
72600
|
[
|
|
72547
72601
|
"a",
|
|
@@ -72578,6 +72632,24 @@
|
|
|
72578
72632
|
0
|
|
72579
72633
|
]
|
|
72580
72634
|
],
|
|
72635
|
+
[
|
|
72636
|
+
[
|
|
72637
|
+
"a",
|
|
72638
|
+
0
|
|
72639
|
+
],
|
|
72640
|
+
[
|
|
72641
|
+
"is",
|
|
72642
|
+
0
|
|
72643
|
+
],
|
|
72644
|
+
[
|
|
72645
|
+
"sandwich",
|
|
72646
|
+
0
|
|
72647
|
+
],
|
|
72648
|
+
[
|
|
72649
|
+
"unknown",
|
|
72650
|
+
0
|
|
72651
|
+
]
|
|
72652
|
+
],
|
|
72581
72653
|
[
|
|
72582
72654
|
[
|
|
72583
72655
|
"apple",
|
|
@@ -910,11 +910,113 @@
|
|
|
910
910
|
"pullFromContext": true,
|
|
911
911
|
"concept": true,
|
|
912
912
|
"wantsValue": true,
|
|
913
|
-
"
|
|
914
|
-
"modifiers": [
|
|
913
|
+
"checks": [
|
|
915
914
|
"determiner"
|
|
916
915
|
],
|
|
916
|
+
"determiner": {
|
|
917
|
+
"modifiers": [],
|
|
918
|
+
"text": "the",
|
|
919
|
+
"marker": "the",
|
|
920
|
+
"word": "the",
|
|
921
|
+
"range": {
|
|
922
|
+
"start": 36,
|
|
923
|
+
"end": 38
|
|
924
|
+
},
|
|
925
|
+
"level": 0
|
|
926
|
+
},
|
|
927
|
+
"theable": {
|
|
928
|
+
"value": "emotion",
|
|
929
|
+
"unknown": true,
|
|
930
|
+
"text": "emotion",
|
|
931
|
+
"marker": "unknown",
|
|
932
|
+
"word": "emotion",
|
|
933
|
+
"range": {
|
|
934
|
+
"start": 40,
|
|
935
|
+
"end": 46
|
|
936
|
+
},
|
|
937
|
+
"dead": true,
|
|
938
|
+
"types": [
|
|
939
|
+
"unknown"
|
|
940
|
+
],
|
|
941
|
+
"level": 0
|
|
942
|
+
},
|
|
943
|
+
"flatten_ignore": [
|
|
944
|
+
"theable"
|
|
945
|
+
],
|
|
946
|
+
"interpolate": [
|
|
947
|
+
{
|
|
948
|
+
"property": "property"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"word": "of"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"property": "object"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
917
957
|
"propertyOf": true,
|
|
958
|
+
"property": {
|
|
959
|
+
"value": "emotion",
|
|
960
|
+
"unknown": true,
|
|
961
|
+
"text": "the emotion",
|
|
962
|
+
"marker": "property",
|
|
963
|
+
"word": "emotion",
|
|
964
|
+
"range": {
|
|
965
|
+
"start": 36,
|
|
966
|
+
"end": 46
|
|
967
|
+
},
|
|
968
|
+
"dead": true,
|
|
969
|
+
"types": [
|
|
970
|
+
"property",
|
|
971
|
+
"unknown"
|
|
972
|
+
],
|
|
973
|
+
"focusableForPhrase": true,
|
|
974
|
+
"pullFromContext": true,
|
|
975
|
+
"concept": true,
|
|
976
|
+
"wantsValue": true,
|
|
977
|
+
"checks": [
|
|
978
|
+
"determiner"
|
|
979
|
+
],
|
|
980
|
+
"determiner": {
|
|
981
|
+
"modifiers": [],
|
|
982
|
+
"text": "the",
|
|
983
|
+
"marker": "the",
|
|
984
|
+
"word": "the",
|
|
985
|
+
"range": {
|
|
986
|
+
"start": 36,
|
|
987
|
+
"end": 38
|
|
988
|
+
},
|
|
989
|
+
"level": 0
|
|
990
|
+
},
|
|
991
|
+
"theable": {
|
|
992
|
+
"value": "emotion",
|
|
993
|
+
"unknown": true,
|
|
994
|
+
"text": "emotion",
|
|
995
|
+
"marker": "unknown",
|
|
996
|
+
"word": "emotion",
|
|
997
|
+
"range": {
|
|
998
|
+
"start": 40,
|
|
999
|
+
"end": 46
|
|
1000
|
+
},
|
|
1001
|
+
"dead": true,
|
|
1002
|
+
"types": [
|
|
1003
|
+
"unknown"
|
|
1004
|
+
],
|
|
1005
|
+
"level": 0
|
|
1006
|
+
},
|
|
1007
|
+
"flatten_ignore": [
|
|
1008
|
+
"theable"
|
|
1009
|
+
],
|
|
1010
|
+
"interpolate": [
|
|
1011
|
+
{
|
|
1012
|
+
"property": "determiner"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"property": "theable"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"level": 0
|
|
1019
|
+
},
|
|
918
1020
|
"object": {
|
|
919
1021
|
"value": "sentientbeing1",
|
|
920
1022
|
"unknown": true,
|
|
@@ -952,10 +1054,47 @@
|
|
|
952
1054
|
"pullFromContext": true,
|
|
953
1055
|
"concept": true,
|
|
954
1056
|
"wantsValue": true,
|
|
955
|
-
"
|
|
956
|
-
"modifiers": [
|
|
1057
|
+
"checks": [
|
|
957
1058
|
"determiner"
|
|
958
1059
|
],
|
|
1060
|
+
"determiner": {
|
|
1061
|
+
"modifiers": [],
|
|
1062
|
+
"text": "the",
|
|
1063
|
+
"marker": "the",
|
|
1064
|
+
"word": "the",
|
|
1065
|
+
"range": {
|
|
1066
|
+
"start": 36,
|
|
1067
|
+
"end": 38
|
|
1068
|
+
},
|
|
1069
|
+
"level": 0
|
|
1070
|
+
},
|
|
1071
|
+
"theable": {
|
|
1072
|
+
"value": "emotion",
|
|
1073
|
+
"unknown": true,
|
|
1074
|
+
"text": "emotion",
|
|
1075
|
+
"marker": "unknown",
|
|
1076
|
+
"word": "emotion",
|
|
1077
|
+
"range": {
|
|
1078
|
+
"start": 40,
|
|
1079
|
+
"end": 46
|
|
1080
|
+
},
|
|
1081
|
+
"dead": true,
|
|
1082
|
+
"types": [
|
|
1083
|
+
"unknown"
|
|
1084
|
+
],
|
|
1085
|
+
"level": 0
|
|
1086
|
+
},
|
|
1087
|
+
"flatten_ignore": [
|
|
1088
|
+
"theable"
|
|
1089
|
+
],
|
|
1090
|
+
"interpolate": [
|
|
1091
|
+
{
|
|
1092
|
+
"property": "determiner"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"property": "theable"
|
|
1096
|
+
}
|
|
1097
|
+
],
|
|
959
1098
|
"level": 0
|
|
960
1099
|
},
|
|
961
1100
|
{
|