ekms 8.9.0-beta.14 → 8.9.0-beta.16

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.
@@ -4,13 +4,33 @@
4
4
  "words are countable and statefulElements",
5
5
  "characters are countable",
6
6
  "paragraphs are countable",
7
- "bold, italic, code and underlined are styles",
7
+ "bold, italic, code and underline are styles",
8
+ "underlined means underline",
8
9
  "resetIdSuffix",
9
10
  {
10
11
  "operators": [
11
- "([changeState_wp|make] ([statefulElement_wp]) ([stateValue_wp|]))"
12
+ "([changeState_wp|make] ([statefulElement_wp]) ([stateValue_wp|]))",
13
+ "((style_wp/*) [applyStyle_wp] ([statefulElement_wp|]))"
12
14
  ],
13
15
  "bridges": [
16
+ {
17
+ "id": "applyStyle_wp",
18
+ "parents": [
19
+ "verb"
20
+ ],
21
+ "convolution": true,
22
+ "bridge": "{ ...next(operator), element: before[0], state: after[0], operator: operator, generate: ['element', 'state'] }",
23
+ "localHierarchy": [
24
+ [
25
+ "thisitthat",
26
+ "statefulElement_wp"
27
+ ],
28
+ [
29
+ "everything",
30
+ "statefulElement_wp"
31
+ ]
32
+ ]
33
+ },
14
34
  {
15
35
  "id": "changeState_wp",
16
36
  "parents": [
@@ -20,10 +40,14 @@
20
40
  "localHierarchy": [
21
41
  [
22
42
  "thisitthat",
23
- "statefulElement"
43
+ "statefulElement_wp"
44
+ ],
45
+ [
46
+ "everything",
47
+ "statefulElement_wp"
24
48
  ]
25
49
  ],
26
- "semantic": "({api, isA, context, toArray}) => {\n const root = (id) => {\n return id.split('_')[0]\n }\n const unit = root(context.element.marker)\n const scope = context.element.quantity.quantity\n let color;\n const styles = []\n const update = { unit, scope }\n for (const state of toArray(context.state)) {\n if (isA(state, 'style_wp')) {\n if (!update.styles) {\n update.styles = []\n }\n let style = root(state.value)\n if (style == 'underlined') {\n style = 'underline'\n }\n update.styles.push(root(state.value))\n } else {\n update.color = root(state.value)\n }\n }\n api.changeState(update)\n }"
50
+ "semantic": "({api, isA, context, toArray}) => {\n const changeState = (element, state) => {\n let unit = root(context.element.marker)\n let scope\n if (isA(context.element, 'everything')) {\n scope = 'all'\n } else {\n scope = context.element.quantity.quantity\n }\n const update = { unit, scope }\n setUpdate(isA, update, toArray(context.state))\n api.changeState(update)\n }\n changeState(context.element, context.state)\n }"
27
51
  },
28
52
  {
29
53
  "id": "stateValue_wp",
@@ -33,6 +57,16 @@
33
57
  ]
34
58
  }
35
59
  ],
60
+ "semantics": [
61
+ {
62
+ "match": "({context, isA}) => isA(context, 'style_wp') && !context.same && !context.isResponse && !context.evaluate",
63
+ "apply": "({context, api, isA, toArray}) => {\n const update = { scope: 'selection' }\n setUpdate(isA, update, toArray(context))\n api.changeState(update)\n }"
64
+ },
65
+ {
66
+ "match": "({context, isA}) => isA(context, 'statefulElement_wp') && !context.same && !context.isResponse && !context.evaluate",
67
+ "apply": "({context, api, isA, toArray}) => {\n const unit = root(context.marker)\n let scope\n if (context.quantity) {\n scope = context.quantity.quantity\n }\n // TODO set default scope for \"every word bold underlined etc\"\n }"
68
+ }
69
+ ],
36
70
  "priorities": [
37
71
  {
38
72
  "context": [
@@ -1390,6 +1424,11 @@
1390
1424
  "theAble",
1391
1425
  false
1392
1426
  ],
1427
+ [
1428
+ "negatable",
1429
+ "queryable",
1430
+ false
1431
+ ],
1393
1432
  [
1394
1433
  "noun",
1395
1434
  "theAble",
@@ -3620,6 +3659,11 @@
3620
3659
  "theAble",
3621
3660
  false
3622
3661
  ],
3662
+ [
3663
+ "negatable",
3664
+ "queryable",
3665
+ false
3666
+ ],
3623
3667
  [
3624
3668
  "noun",
3625
3669
  "theAble",
@@ -6063,6 +6107,11 @@
6063
6107
  "theAble",
6064
6108
  false
6065
6109
  ],
6110
+ [
6111
+ "negatable",
6112
+ "queryable",
6113
+ false
6114
+ ],
6066
6115
  [
6067
6116
  "noun",
6068
6117
  "theAble",
@@ -8485,6 +8534,11 @@
8485
8534
  "theAble",
8486
8535
  false
8487
8536
  ],
8537
+ [
8538
+ "negatable",
8539
+ "queryable",
8540
+ false
8541
+ ],
8488
8542
  [
8489
8543
  "noun",
8490
8544
  "theAble",
@@ -10907,6 +10961,11 @@
10907
10961
  "theAble",
10908
10962
  false
10909
10963
  ],
10964
+ [
10965
+ "negatable",
10966
+ "queryable",
10967
+ false
10968
+ ],
10910
10969
  [
10911
10970
  "noun",
10912
10971
  "theAble",
@@ -12134,22 +12193,22 @@
12134
12193
  "contexts": [
12135
12194
  {
12136
12195
  "number": "many",
12137
- "text": "bold, italic, code and underlined are styles",
12196
+ "text": "bold, italic, code and underline are styles",
12138
12197
  "marker": "is",
12139
12198
  "word": "are",
12140
12199
  "range": {
12141
12200
  "start": 0,
12142
- "end": 43
12201
+ "end": 42
12143
12202
  },
12144
12203
  "one": {
12145
12204
  "number": "many",
12146
12205
  "marker": "list",
12147
12206
  "default": true,
12148
12207
  "word": "and",
12149
- "text": "bold, italic, code and underlined",
12208
+ "text": "bold, italic, code and underline",
12150
12209
  "range": {
12151
12210
  "start": 0,
12152
- "end": 43
12211
+ "end": 42
12153
12212
  },
12154
12213
  "types": [
12155
12214
  "list",
@@ -12241,14 +12300,14 @@
12241
12300
  "level": 1
12242
12301
  },
12243
12302
  {
12244
- "value": "underlined",
12303
+ "value": "underline",
12245
12304
  "unknown": true,
12246
- "text": "underlined",
12305
+ "text": "underline",
12247
12306
  "marker": "unknown",
12248
- "word": "underlined",
12307
+ "word": "underline",
12249
12308
  "range": {
12250
12309
  "start": 23,
12251
- "end": 32
12310
+ "end": 31
12252
12311
  },
12253
12312
  "types": [
12254
12313
  "queryable",
@@ -12267,8 +12326,8 @@
12267
12326
  "marker": "unknown",
12268
12327
  "word": "styles",
12269
12328
  "range": {
12270
- "start": 38,
12271
- "end": 43
12329
+ "start": 37,
12330
+ "end": 42
12272
12331
  },
12273
12332
  "dead": true,
12274
12333
  "types": [
@@ -12281,7 +12340,8 @@
12281
12340
  "level": 2,
12282
12341
  "topLevel": true,
12283
12342
  "touchedBy": [
12284
- "wp#call2"
12343
+ "wp#call2",
12344
+ "instance0#wp#call2"
12285
12345
  ]
12286
12346
  }
12287
12347
  ],
@@ -12289,7 +12349,7 @@
12289
12349
  ""
12290
12350
  ],
12291
12351
  "paraphrases": [
12292
- "bold, italic, code and underlined are styles"
12352
+ "bold, italic, code and underline are styles"
12293
12353
  ],
12294
12354
  "paraphrasesParenthesized": [],
12295
12355
  "generatedParenthesized": [],
@@ -12389,9 +12449,9 @@
12389
12449
  ]
12390
12450
  ],
12391
12451
  "learned_contextual_priorities": [],
12392
- "query": "bold, italic, code and underlined are styles",
12452
+ "query": "bold, italic, code and underline are styles",
12393
12453
  "key": {
12394
- "query": "bold, italic, code and underlined are styles"
12454
+ "query": "bold, italic, code and underline are styles"
12395
12455
  }
12396
12456
  },
12397
12457
  {
@@ -13886,6 +13946,11 @@
13886
13946
  "theAble",
13887
13947
  false
13888
13948
  ],
13949
+ [
13950
+ "negatable",
13951
+ "queryable",
13952
+ false
13953
+ ],
13889
13954
  [
13890
13955
  "noun",
13891
13956
  "theAble",
@@ -14612,42 +14677,42 @@
14612
14677
  false
14613
14678
  ],
14614
14679
  [
14615
- "underlined_wp",
14680
+ "underline_wp",
14616
14681
  "hierarchyAble",
14617
14682
  false
14618
14683
  ],
14619
14684
  [
14620
- "underlined_wp",
14685
+ "underline_wp",
14621
14686
  "isEdee",
14622
14687
  false
14623
14688
  ],
14624
14689
  [
14625
- "underlined_wp",
14690
+ "underline_wp",
14626
14691
  "isEder",
14627
14692
  false
14628
14693
  ],
14629
14694
  [
14630
- "underlined_wp",
14695
+ "underline_wp",
14631
14696
  "object",
14632
14697
  false
14633
14698
  ],
14634
14699
  [
14635
- "underlined_wp",
14700
+ "underline_wp",
14636
14701
  "property",
14637
14702
  false
14638
14703
  ],
14639
14704
  [
14640
- "underlined_wp",
14705
+ "underline_wp",
14641
14706
  "queryable",
14642
14707
  false
14643
14708
  ],
14644
14709
  [
14645
- "underlined_wp",
14710
+ "underline_wp",
14646
14711
  "style_wp",
14647
14712
  false
14648
14713
  ],
14649
14714
  [
14650
- "underlined_wp",
14715
+ "underline_wp",
14651
14716
  "theAble",
14652
14717
  false
14653
14718
  ],
@@ -14876,37 +14941,101 @@
14876
14941
  "opChoices": [
14877
14942
  {
14878
14943
  "op": [
14879
- "resetIdSuffix",
14944
+ "unknown",
14880
14945
  0
14881
14946
  ],
14882
14947
  "ops": [
14883
14948
  [
14884
- "resetIdSuffix",
14949
+ "means",
14950
+ 0
14951
+ ],
14952
+ [
14953
+ "underline_wp",
14954
+ 0
14955
+ ],
14956
+ [
14957
+ "unknown",
14885
14958
  0
14886
14959
  ]
14887
14960
  ],
14888
14961
  "counter": 1
14962
+ },
14963
+ {
14964
+ "op": [
14965
+ "underline_wp",
14966
+ 0
14967
+ ],
14968
+ "ops": [
14969
+ [
14970
+ "means",
14971
+ 0
14972
+ ],
14973
+ [
14974
+ "underline_wp",
14975
+ 0
14976
+ ]
14977
+ ],
14978
+ "counter": 2
14979
+ },
14980
+ {
14981
+ "op": [
14982
+ "means",
14983
+ 0
14984
+ ],
14985
+ "ops": [
14986
+ [
14987
+ "means",
14988
+ 0
14989
+ ]
14990
+ ],
14991
+ "counter": 3
14889
14992
  }
14890
14993
  ]
14891
14994
  },
14892
14995
  "trace": "undefined",
14893
14996
  "contexts": [
14894
14997
  {
14895
- "marker": "resetIdSuffix",
14896
- "value": "resetIdSuffix",
14998
+ "marker": "means",
14999
+ "value": "means",
14897
15000
  "default": true,
14898
- "text": "resetidsuffix",
14899
- "word": "resetidsuffix",
14900
- "raw_text": "resetIdSuffix",
15001
+ "text": "underlined means underline",
15002
+ "word": "means",
14901
15003
  "range": {
14902
15004
  "start": 0,
14903
- "end": 12
15005
+ "end": 25
14904
15006
  },
14905
15007
  "dead": true,
15008
+ "from": {
15009
+ "value": "underlined",
15010
+ "unknown": true,
15011
+ "text": "underlined",
15012
+ "marker": "unknown",
15013
+ "word": "underlined",
15014
+ "range": {
15015
+ "start": 0,
15016
+ "end": 9
15017
+ },
15018
+ "dead": true,
15019
+ "level": 1
15020
+ },
15021
+ "to": {
15022
+ "value": "underline_wp",
15023
+ "number": "one",
15024
+ "text": "underline",
15025
+ "marker": "underline_wp",
15026
+ "word": "underline",
15027
+ "range": {
15028
+ "start": 17,
15029
+ "end": 25
15030
+ },
15031
+ "dead": true,
15032
+ "level": 1
15033
+ },
14906
15034
  "level": 1,
14907
15035
  "topLevel": true,
14908
15036
  "touchedBy": [
14909
- "wp#call2"
15037
+ "wp#call2",
15038
+ "instance0#wp#call2"
14910
15039
  ]
14911
15040
  }
14912
15041
  ],
@@ -14914,138 +15043,2773 @@
14914
15043
  ""
14915
15044
  ],
14916
15045
  "paraphrases": [
14917
- "resetidsuffix"
15046
+ "underlined means underline"
14918
15047
  ],
14919
15048
  "paraphrasesParenthesized": [],
14920
15049
  "generatedParenthesized": [],
14921
15050
  "responses": [
14922
15051
  ""
14923
15052
  ],
14924
- "associations": [],
14925
- "learned_contextual_priorities": [],
14926
- "query": "resetIdSuffix",
14927
- "key": {
14928
- "query": "resetIdSuffix"
14929
- }
14930
- },
14931
- {
14932
- "extraConfig": true,
14933
- "operators": [
14934
- "([changeState_wp|make] ([statefulElement_wp]) ([stateValue_wp|]))"
14935
- ],
14936
- "bridges": [
14937
- {
14938
- "id": "changeState_wp",
14939
- "parents": [
14940
- "verb"
15053
+ "associations": [
15054
+ [
15055
+ [
15056
+ "means",
15057
+ 0
14941
15058
  ],
14942
- "bridge": "{ ...next(operator), element: after[0], state: after[1], operator: operator, generate: ['operator', 'element', 'state'] }",
14943
- "localHierarchy": [
14944
- [
14945
- "thisitthat",
14946
- "statefulElement"
14947
- ]
14948
- ]
14949
- },
14950
- {
14951
- "id": "stateValue_wp",
14952
- "children": [
14953
- "color_colors",
14954
- "style_wp"
15059
+ [
15060
+ "underline_wp",
15061
+ 0
15062
+ ],
15063
+ [
15064
+ "unknown",
15065
+ 0
14955
15066
  ]
14956
- }
14957
- ],
14958
- "priorities": [
14959
- {
14960
- "context": [
14961
- [
14962
- "changeState_wp",
14963
- 0
14964
- ],
14965
- [
14966
- "statefulElement_wp",
14967
- 0
14968
- ],
14969
- [
14970
- "list",
14971
- 0
14972
- ]
15067
+ ],
15068
+ [
15069
+ [
15070
+ "means",
15071
+ 0
14973
15072
  ],
14974
- "ordered": true,
14975
- "choose": [
15073
+ [
15074
+ "underline_wp",
14976
15075
  0
15076
+ ],
15077
+ [
15078
+ "unknown",
15079
+ 1
14977
15080
  ]
14978
- }
14979
- ]
14980
- }
14981
- ],
14982
- "fragments": [],
14983
- "semantics": [],
14984
- "associations": [
14985
- [
14986
- [
14987
- "comma",
14988
- 0
14989
- ],
14990
- [
14991
- "is",
14992
- 0
14993
- ],
14994
- [
14995
- "list",
14996
- 0
14997
- ],
14998
- [
14999
- "unknown",
15000
- 0
15001
- ]
15002
- ],
15003
- [
15004
- [
15005
- "comma",
15006
- 0
15007
- ],
15008
- [
15009
- "is",
15010
- 0
15011
- ],
15012
- [
15013
- "list",
15014
- 0
15015
- ],
15016
- [
15017
- "unknown",
15018
- 0
15019
- ],
15020
- [
15021
- "unknown",
15022
- 1
15023
- ]
15024
- ],
15025
- [
15026
- [
15027
- "comma",
15028
- 0
15029
- ],
15030
- [
15031
- "is",
15032
- 0
15033
- ],
15034
- [
15035
- "list",
15036
- 0
15037
- ],
15038
- [
15039
- "unknown",
15040
- 1
15041
- ]
15042
- ],
15043
- [
15044
- [
15045
- "comma",
15046
- 0
15081
+ ],
15082
+ [
15083
+ [
15084
+ "means",
15085
+ 0
15086
+ ],
15087
+ [
15088
+ "unknown",
15089
+ 1
15090
+ ]
15091
+ ]
15047
15092
  ],
15048
- [
15093
+ "learned_contextual_priorities": [],
15094
+ "query": "underlined means underline",
15095
+ "key": {
15096
+ "query": "underlined means underline"
15097
+ }
15098
+ },
15099
+ {
15100
+ "hierarchy": [
15101
+ [
15102
+ "a",
15103
+ "articlePOS",
15104
+ false
15105
+ ],
15106
+ [
15107
+ "action",
15108
+ "action",
15109
+ false
15110
+ ],
15111
+ [
15112
+ "adjective",
15113
+ "adjective",
15114
+ false
15115
+ ],
15116
+ [
15117
+ "all",
15118
+ "quantifier",
15119
+ false
15120
+ ],
15121
+ [
15122
+ "aqua_colors",
15123
+ "blue_colors",
15124
+ false
15125
+ ],
15126
+ [
15127
+ "aqua_colors",
15128
+ "hierarchyAble",
15129
+ false
15130
+ ],
15131
+ [
15132
+ "aqua_colors",
15133
+ "isEdee",
15134
+ false
15135
+ ],
15136
+ [
15137
+ "aqua_colors",
15138
+ "isEder",
15139
+ false
15140
+ ],
15141
+ [
15142
+ "aqua_colors",
15143
+ "object",
15144
+ false
15145
+ ],
15146
+ [
15147
+ "aqua_colors",
15148
+ "property",
15149
+ false
15150
+ ],
15151
+ [
15152
+ "aqua_colors",
15153
+ "queryable",
15154
+ false
15155
+ ],
15156
+ [
15157
+ "aqua_colors",
15158
+ "theAble",
15159
+ false
15160
+ ],
15161
+ [
15162
+ "aquamarine_colors",
15163
+ "blue_colors",
15164
+ false
15165
+ ],
15166
+ [
15167
+ "aquamarine_colors",
15168
+ "hierarchyAble",
15169
+ false
15170
+ ],
15171
+ [
15172
+ "aquamarine_colors",
15173
+ "isEdee",
15174
+ false
15175
+ ],
15176
+ [
15177
+ "aquamarine_colors",
15178
+ "isEder",
15179
+ false
15180
+ ],
15181
+ [
15182
+ "aquamarine_colors",
15183
+ "object",
15184
+ false
15185
+ ],
15186
+ [
15187
+ "aquamarine_colors",
15188
+ "property",
15189
+ false
15190
+ ],
15191
+ [
15192
+ "aquamarine_colors",
15193
+ "queryable",
15194
+ false
15195
+ ],
15196
+ [
15197
+ "aquamarine_colors",
15198
+ "theAble",
15199
+ false
15200
+ ],
15201
+ [
15202
+ "articlePOS",
15203
+ "articlePOS",
15204
+ false
15205
+ ],
15206
+ [
15207
+ "azure_colors",
15208
+ "hierarchyAble",
15209
+ false
15210
+ ],
15211
+ [
15212
+ "azure_colors",
15213
+ "isEdee",
15214
+ false
15215
+ ],
15216
+ [
15217
+ "azure_colors",
15218
+ "isEder",
15219
+ false
15220
+ ],
15221
+ [
15222
+ "azure_colors",
15223
+ "object",
15224
+ false
15225
+ ],
15226
+ [
15227
+ "azure_colors",
15228
+ "property",
15229
+ false
15230
+ ],
15231
+ [
15232
+ "azure_colors",
15233
+ "queryable",
15234
+ false
15235
+ ],
15236
+ [
15237
+ "azure_colors",
15238
+ "theAble",
15239
+ false
15240
+ ],
15241
+ [
15242
+ "azure_colors",
15243
+ "white_colors",
15244
+ false
15245
+ ],
15246
+ [
15247
+ "beige_colors",
15248
+ "hierarchyAble",
15249
+ false
15250
+ ],
15251
+ [
15252
+ "beige_colors",
15253
+ "isEdee",
15254
+ false
15255
+ ],
15256
+ [
15257
+ "beige_colors",
15258
+ "isEder",
15259
+ false
15260
+ ],
15261
+ [
15262
+ "beige_colors",
15263
+ "object",
15264
+ false
15265
+ ],
15266
+ [
15267
+ "beige_colors",
15268
+ "property",
15269
+ false
15270
+ ],
15271
+ [
15272
+ "beige_colors",
15273
+ "queryable",
15274
+ false
15275
+ ],
15276
+ [
15277
+ "beige_colors",
15278
+ "theAble",
15279
+ false
15280
+ ],
15281
+ [
15282
+ "beige_colors",
15283
+ "white_colors",
15284
+ false
15285
+ ],
15286
+ [
15287
+ "between",
15288
+ "preposition",
15289
+ false
15290
+ ],
15291
+ [
15292
+ "black_colors",
15293
+ "gray_colors",
15294
+ false
15295
+ ],
15296
+ [
15297
+ "black_colors",
15298
+ "hierarchyAble",
15299
+ false
15300
+ ],
15301
+ [
15302
+ "black_colors",
15303
+ "isEdee",
15304
+ false
15305
+ ],
15306
+ [
15307
+ "black_colors",
15308
+ "isEder",
15309
+ false
15310
+ ],
15311
+ [
15312
+ "black_colors",
15313
+ "object",
15314
+ false
15315
+ ],
15316
+ [
15317
+ "black_colors",
15318
+ "property",
15319
+ false
15320
+ ],
15321
+ [
15322
+ "black_colors",
15323
+ "queryable",
15324
+ false
15325
+ ],
15326
+ [
15327
+ "black_colors",
15328
+ "theAble",
15329
+ false
15330
+ ],
15331
+ [
15332
+ "blue_colors",
15333
+ "color_colors",
15334
+ false
15335
+ ],
15336
+ [
15337
+ "blue_colors",
15338
+ "hierarchyAble",
15339
+ false
15340
+ ],
15341
+ [
15342
+ "blue_colors",
15343
+ "isEdee",
15344
+ false
15345
+ ],
15346
+ [
15347
+ "blue_colors",
15348
+ "isEder",
15349
+ false
15350
+ ],
15351
+ [
15352
+ "blue_colors",
15353
+ "object",
15354
+ false
15355
+ ],
15356
+ [
15357
+ "blue_colors",
15358
+ "property",
15359
+ false
15360
+ ],
15361
+ [
15362
+ "blue_colors",
15363
+ "queryable",
15364
+ false
15365
+ ],
15366
+ [
15367
+ "blue_colors",
15368
+ "theAble",
15369
+ false
15370
+ ],
15371
+ [
15372
+ "bold_wp",
15373
+ "hierarchyAble",
15374
+ false
15375
+ ],
15376
+ [
15377
+ "bold_wp",
15378
+ "isEdee",
15379
+ false
15380
+ ],
15381
+ [
15382
+ "bold_wp",
15383
+ "isEder",
15384
+ false
15385
+ ],
15386
+ [
15387
+ "bold_wp",
15388
+ "object",
15389
+ false
15390
+ ],
15391
+ [
15392
+ "bold_wp",
15393
+ "property",
15394
+ false
15395
+ ],
15396
+ [
15397
+ "bold_wp",
15398
+ "queryable",
15399
+ false
15400
+ ],
15401
+ [
15402
+ "bold_wp",
15403
+ "style_wp",
15404
+ false
15405
+ ],
15406
+ [
15407
+ "bold_wp",
15408
+ "theAble",
15409
+ false
15410
+ ],
15411
+ [
15412
+ "brightness_colors",
15413
+ "color_colors_modifier",
15414
+ false
15415
+ ],
15416
+ [
15417
+ "brightness_colors",
15418
+ "hierarchyAble",
15419
+ false
15420
+ ],
15421
+ [
15422
+ "brightness_colors",
15423
+ "isEdee",
15424
+ false
15425
+ ],
15426
+ [
15427
+ "brightness_colors",
15428
+ "isEder",
15429
+ false
15430
+ ],
15431
+ [
15432
+ "brightness_colors",
15433
+ "object",
15434
+ false
15435
+ ],
15436
+ [
15437
+ "brightness_colors",
15438
+ "property",
15439
+ false
15440
+ ],
15441
+ [
15442
+ "brightness_colors",
15443
+ "queryable",
15444
+ false
15445
+ ],
15446
+ [
15447
+ "brightness_colors",
15448
+ "theAble",
15449
+ false
15450
+ ],
15451
+ [
15452
+ "brightness_colors_color_colors",
15453
+ "adjective",
15454
+ true
15455
+ ],
15456
+ [
15457
+ "brightness_colors_color_colors",
15458
+ "color_colors",
15459
+ false
15460
+ ],
15461
+ [
15462
+ "brightness_colors_color_colors",
15463
+ "concept",
15464
+ false
15465
+ ],
15466
+ [
15467
+ "brightness_colors_color_colors",
15468
+ "hierarchyAble",
15469
+ false
15470
+ ],
15471
+ [
15472
+ "brightness_colors_color_colors",
15473
+ "isEdee",
15474
+ false
15475
+ ],
15476
+ [
15477
+ "brightness_colors_color_colors",
15478
+ "isEder",
15479
+ false
15480
+ ],
15481
+ [
15482
+ "brightness_colors_color_colors",
15483
+ "object",
15484
+ false
15485
+ ],
15486
+ [
15487
+ "brightness_colors_color_colors",
15488
+ "property",
15489
+ false
15490
+ ],
15491
+ [
15492
+ "brightness_colors_color_colors",
15493
+ "queryable",
15494
+ false
15495
+ ],
15496
+ [
15497
+ "brightness_colors_color_colors",
15498
+ "theAble",
15499
+ false
15500
+ ],
15501
+ [
15502
+ "brown_colors",
15503
+ "color_colors",
15504
+ false
15505
+ ],
15506
+ [
15507
+ "brown_colors",
15508
+ "hierarchyAble",
15509
+ false
15510
+ ],
15511
+ [
15512
+ "brown_colors",
15513
+ "isEdee",
15514
+ false
15515
+ ],
15516
+ [
15517
+ "brown_colors",
15518
+ "isEder",
15519
+ false
15520
+ ],
15521
+ [
15522
+ "brown_colors",
15523
+ "object",
15524
+ false
15525
+ ],
15526
+ [
15527
+ "brown_colors",
15528
+ "property",
15529
+ false
15530
+ ],
15531
+ [
15532
+ "brown_colors",
15533
+ "queryable",
15534
+ false
15535
+ ],
15536
+ [
15537
+ "brown_colors",
15538
+ "theAble",
15539
+ false
15540
+ ],
15541
+ [
15542
+ "canBeDoQuestion",
15543
+ "canBeDoQuestion",
15544
+ false
15545
+ ],
15546
+ [
15547
+ "canBeQuestion",
15548
+ "canBeQuestion",
15549
+ false
15550
+ ],
15551
+ [
15552
+ "cancel",
15553
+ "verb",
15554
+ false
15555
+ ],
15556
+ [
15557
+ "character_wp",
15558
+ "countable",
15559
+ false
15560
+ ],
15561
+ [
15562
+ "character_wp",
15563
+ "hierarchyAble",
15564
+ false
15565
+ ],
15566
+ [
15567
+ "character_wp",
15568
+ "isEdee",
15569
+ false
15570
+ ],
15571
+ [
15572
+ "character_wp",
15573
+ "isEder",
15574
+ false
15575
+ ],
15576
+ [
15577
+ "character_wp",
15578
+ "object",
15579
+ false
15580
+ ],
15581
+ [
15582
+ "character_wp",
15583
+ "property",
15584
+ false
15585
+ ],
15586
+ [
15587
+ "character_wp",
15588
+ "queryable",
15589
+ false
15590
+ ],
15591
+ [
15592
+ "character_wp",
15593
+ "theAble",
15594
+ false
15595
+ ],
15596
+ [
15597
+ "chartruese_colors",
15598
+ "green_colors",
15599
+ false
15600
+ ],
15601
+ [
15602
+ "chartruese_colors",
15603
+ "hierarchyAble",
15604
+ false
15605
+ ],
15606
+ [
15607
+ "chartruese_colors",
15608
+ "isEdee",
15609
+ false
15610
+ ],
15611
+ [
15612
+ "chartruese_colors",
15613
+ "isEder",
15614
+ false
15615
+ ],
15616
+ [
15617
+ "chartruese_colors",
15618
+ "object",
15619
+ false
15620
+ ],
15621
+ [
15622
+ "chartruese_colors",
15623
+ "property",
15624
+ false
15625
+ ],
15626
+ [
15627
+ "chartruese_colors",
15628
+ "queryable",
15629
+ false
15630
+ ],
15631
+ [
15632
+ "chartruese_colors",
15633
+ "theAble",
15634
+ false
15635
+ ],
15636
+ [
15637
+ "code_wp",
15638
+ "hierarchyAble",
15639
+ false
15640
+ ],
15641
+ [
15642
+ "code_wp",
15643
+ "isEdee",
15644
+ false
15645
+ ],
15646
+ [
15647
+ "code_wp",
15648
+ "isEder",
15649
+ false
15650
+ ],
15651
+ [
15652
+ "code_wp",
15653
+ "object",
15654
+ false
15655
+ ],
15656
+ [
15657
+ "code_wp",
15658
+ "property",
15659
+ false
15660
+ ],
15661
+ [
15662
+ "code_wp",
15663
+ "queryable",
15664
+ false
15665
+ ],
15666
+ [
15667
+ "code_wp",
15668
+ "style_wp",
15669
+ false
15670
+ ],
15671
+ [
15672
+ "code_wp",
15673
+ "theAble",
15674
+ false
15675
+ ],
15676
+ [
15677
+ "color_colors",
15678
+ "concept",
15679
+ false
15680
+ ],
15681
+ [
15682
+ "color_colors",
15683
+ "hierarchyAble",
15684
+ false
15685
+ ],
15686
+ [
15687
+ "color_colors",
15688
+ "isEdee",
15689
+ false
15690
+ ],
15691
+ [
15692
+ "color_colors",
15693
+ "isEder",
15694
+ false
15695
+ ],
15696
+ [
15697
+ "color_colors",
15698
+ "object",
15699
+ false
15700
+ ],
15701
+ [
15702
+ "color_colors",
15703
+ "property",
15704
+ false
15705
+ ],
15706
+ [
15707
+ "color_colors",
15708
+ "queryable",
15709
+ false
15710
+ ],
15711
+ [
15712
+ "color_colors",
15713
+ "theAble",
15714
+ false
15715
+ ],
15716
+ [
15717
+ "color_colors_modifier",
15718
+ "color_colors_modifier",
15719
+ false
15720
+ ],
15721
+ [
15722
+ "concept",
15723
+ "queryable",
15724
+ false
15725
+ ],
15726
+ [
15727
+ "concept",
15728
+ "theAble",
15729
+ false
15730
+ ],
15731
+ [
15732
+ "countable",
15733
+ "hierarchyAble",
15734
+ false
15735
+ ],
15736
+ [
15737
+ "crimson_colors",
15738
+ "hierarchyAble",
15739
+ false
15740
+ ],
15741
+ [
15742
+ "crimson_colors",
15743
+ "isEdee",
15744
+ false
15745
+ ],
15746
+ [
15747
+ "crimson_colors",
15748
+ "isEder",
15749
+ false
15750
+ ],
15751
+ [
15752
+ "crimson_colors",
15753
+ "object",
15754
+ false
15755
+ ],
15756
+ [
15757
+ "crimson_colors",
15758
+ "property",
15759
+ false
15760
+ ],
15761
+ [
15762
+ "crimson_colors",
15763
+ "queryable",
15764
+ false
15765
+ ],
15766
+ [
15767
+ "crimson_colors",
15768
+ "red_colors",
15769
+ false
15770
+ ],
15771
+ [
15772
+ "crimson_colors",
15773
+ "theAble",
15774
+ false
15775
+ ],
15776
+ [
15777
+ "cyan_colors",
15778
+ "blue_colors",
15779
+ false
15780
+ ],
15781
+ [
15782
+ "cyan_colors",
15783
+ "hierarchyAble",
15784
+ false
15785
+ ],
15786
+ [
15787
+ "cyan_colors",
15788
+ "isEdee",
15789
+ false
15790
+ ],
15791
+ [
15792
+ "cyan_colors",
15793
+ "isEder",
15794
+ false
15795
+ ],
15796
+ [
15797
+ "cyan_colors",
15798
+ "object",
15799
+ false
15800
+ ],
15801
+ [
15802
+ "cyan_colors",
15803
+ "property",
15804
+ false
15805
+ ],
15806
+ [
15807
+ "cyan_colors",
15808
+ "queryable",
15809
+ false
15810
+ ],
15811
+ [
15812
+ "cyan_colors",
15813
+ "theAble",
15814
+ false
15815
+ ],
15816
+ [
15817
+ "dark_colors",
15818
+ "brightness_colors",
15819
+ false
15820
+ ],
15821
+ [
15822
+ "dark_colors",
15823
+ "hierarchyAble",
15824
+ false
15825
+ ],
15826
+ [
15827
+ "dark_colors",
15828
+ "isEdee",
15829
+ false
15830
+ ],
15831
+ [
15832
+ "dark_colors",
15833
+ "isEder",
15834
+ false
15835
+ ],
15836
+ [
15837
+ "dark_colors",
15838
+ "object",
15839
+ false
15840
+ ],
15841
+ [
15842
+ "dark_colors",
15843
+ "property",
15844
+ false
15845
+ ],
15846
+ [
15847
+ "dark_colors",
15848
+ "queryable",
15849
+ false
15850
+ ],
15851
+ [
15852
+ "dark_colors",
15853
+ "theAble",
15854
+ false
15855
+ ],
15856
+ [
15857
+ "direction",
15858
+ "direction",
15859
+ false
15860
+ ],
15861
+ [
15862
+ "doubleQuote",
15863
+ "queryable",
15864
+ false
15865
+ ],
15866
+ [
15867
+ "down",
15868
+ "direction",
15869
+ false
15870
+ ],
15871
+ [
15872
+ "evaluate",
15873
+ "verb",
15874
+ false
15875
+ ],
15876
+ [
15877
+ "every",
15878
+ "quantifier",
15879
+ false
15880
+ ],
15881
+ [
15882
+ "gold_colors",
15883
+ "hierarchyAble",
15884
+ false
15885
+ ],
15886
+ [
15887
+ "gold_colors",
15888
+ "isEdee",
15889
+ false
15890
+ ],
15891
+ [
15892
+ "gold_colors",
15893
+ "isEder",
15894
+ false
15895
+ ],
15896
+ [
15897
+ "gold_colors",
15898
+ "object",
15899
+ false
15900
+ ],
15901
+ [
15902
+ "gold_colors",
15903
+ "property",
15904
+ false
15905
+ ],
15906
+ [
15907
+ "gold_colors",
15908
+ "queryable",
15909
+ false
15910
+ ],
15911
+ [
15912
+ "gold_colors",
15913
+ "theAble",
15914
+ false
15915
+ ],
15916
+ [
15917
+ "gold_colors",
15918
+ "yellow_colors",
15919
+ false
15920
+ ],
15921
+ [
15922
+ "gray_colors",
15923
+ "color_colors",
15924
+ false
15925
+ ],
15926
+ [
15927
+ "gray_colors",
15928
+ "hierarchyAble",
15929
+ false
15930
+ ],
15931
+ [
15932
+ "gray_colors",
15933
+ "isEdee",
15934
+ false
15935
+ ],
15936
+ [
15937
+ "gray_colors",
15938
+ "isEder",
15939
+ false
15940
+ ],
15941
+ [
15942
+ "gray_colors",
15943
+ "object",
15944
+ false
15945
+ ],
15946
+ [
15947
+ "gray_colors",
15948
+ "property",
15949
+ false
15950
+ ],
15951
+ [
15952
+ "gray_colors",
15953
+ "queryable",
15954
+ false
15955
+ ],
15956
+ [
15957
+ "gray_colors",
15958
+ "theAble",
15959
+ false
15960
+ ],
15961
+ [
15962
+ "green_colors",
15963
+ "color_colors",
15964
+ false
15965
+ ],
15966
+ [
15967
+ "green_colors",
15968
+ "hierarchyAble",
15969
+ false
15970
+ ],
15971
+ [
15972
+ "green_colors",
15973
+ "isEdee",
15974
+ false
15975
+ ],
15976
+ [
15977
+ "green_colors",
15978
+ "isEder",
15979
+ false
15980
+ ],
15981
+ [
15982
+ "green_colors",
15983
+ "object",
15984
+ false
15985
+ ],
15986
+ [
15987
+ "green_colors",
15988
+ "property",
15989
+ false
15990
+ ],
15991
+ [
15992
+ "green_colors",
15993
+ "queryable",
15994
+ false
15995
+ ],
15996
+ [
15997
+ "green_colors",
15998
+ "theAble",
15999
+ false
16000
+ ],
16001
+ [
16002
+ "hasCountOfPieces",
16003
+ "countable",
16004
+ false
16005
+ ],
16006
+ [
16007
+ "have",
16008
+ "canBeDoQuestion",
16009
+ false
16010
+ ],
16011
+ [
16012
+ "have",
16013
+ "canBeQuestion",
16014
+ false
16015
+ ],
16016
+ [
16017
+ "hex_colors",
16018
+ "color_colors_modifier",
16019
+ false
16020
+ ],
16021
+ [
16022
+ "hex_colors",
16023
+ "hierarchyAble",
16024
+ false
16025
+ ],
16026
+ [
16027
+ "hex_colors",
16028
+ "isEdee",
16029
+ false
16030
+ ],
16031
+ [
16032
+ "hex_colors",
16033
+ "isEder",
16034
+ false
16035
+ ],
16036
+ [
16037
+ "hex_colors",
16038
+ "object",
16039
+ false
16040
+ ],
16041
+ [
16042
+ "hex_colors",
16043
+ "property",
16044
+ false
16045
+ ],
16046
+ [
16047
+ "hex_colors",
16048
+ "queryable",
16049
+ false
16050
+ ],
16051
+ [
16052
+ "hex_colors",
16053
+ "theAble",
16054
+ false
16055
+ ],
16056
+ [
16057
+ "hex_colors_color_colors",
16058
+ "adjective",
16059
+ true
16060
+ ],
16061
+ [
16062
+ "hex_colors_color_colors",
16063
+ "color_colors",
16064
+ false
16065
+ ],
16066
+ [
16067
+ "hex_colors_color_colors",
16068
+ "concept",
16069
+ false
16070
+ ],
16071
+ [
16072
+ "hex_colors_color_colors",
16073
+ "hierarchyAble",
16074
+ false
16075
+ ],
16076
+ [
16077
+ "hex_colors_color_colors",
16078
+ "isEdee",
16079
+ false
16080
+ ],
16081
+ [
16082
+ "hex_colors_color_colors",
16083
+ "isEder",
16084
+ false
16085
+ ],
16086
+ [
16087
+ "hex_colors_color_colors",
16088
+ "object",
16089
+ false
16090
+ ],
16091
+ [
16092
+ "hex_colors_color_colors",
16093
+ "property",
16094
+ false
16095
+ ],
16096
+ [
16097
+ "hex_colors_color_colors",
16098
+ "queryable",
16099
+ false
16100
+ ],
16101
+ [
16102
+ "hex_colors_color_colors",
16103
+ "theAble",
16104
+ false
16105
+ ],
16106
+ [
16107
+ "hierarchyAble",
16108
+ "queryable",
16109
+ false
16110
+ ],
16111
+ [
16112
+ "ifAble",
16113
+ "ifAble",
16114
+ false
16115
+ ],
16116
+ [
16117
+ "indigo_colors",
16118
+ "hierarchyAble",
16119
+ false
16120
+ ],
16121
+ [
16122
+ "indigo_colors",
16123
+ "isEdee",
16124
+ false
16125
+ ],
16126
+ [
16127
+ "indigo_colors",
16128
+ "isEder",
16129
+ false
16130
+ ],
16131
+ [
16132
+ "indigo_colors",
16133
+ "object",
16134
+ false
16135
+ ],
16136
+ [
16137
+ "indigo_colors",
16138
+ "property",
16139
+ false
16140
+ ],
16141
+ [
16142
+ "indigo_colors",
16143
+ "purple_colors",
16144
+ false
16145
+ ],
16146
+ [
16147
+ "indigo_colors",
16148
+ "queryable",
16149
+ false
16150
+ ],
16151
+ [
16152
+ "indigo_colors",
16153
+ "theAble",
16154
+ false
16155
+ ],
16156
+ [
16157
+ "integer",
16158
+ "number",
16159
+ false
16160
+ ],
16161
+ [
16162
+ "is",
16163
+ "canBeQuestion",
16164
+ false
16165
+ ],
16166
+ [
16167
+ "is",
16168
+ "verb",
16169
+ false
16170
+ ],
16171
+ [
16172
+ "isEdee",
16173
+ "isEdee",
16174
+ false
16175
+ ],
16176
+ [
16177
+ "isEder",
16178
+ "isEder",
16179
+ false
16180
+ ],
16181
+ [
16182
+ "it",
16183
+ "pronoun",
16184
+ false
16185
+ ],
16186
+ [
16187
+ "it",
16188
+ "queryable",
16189
+ false
16190
+ ],
16191
+ [
16192
+ "it",
16193
+ "thisitthat",
16194
+ false
16195
+ ],
16196
+ [
16197
+ "it",
16198
+ "toAble",
16199
+ false
16200
+ ],
16201
+ [
16202
+ "italic_wp",
16203
+ "hierarchyAble",
16204
+ false
16205
+ ],
16206
+ [
16207
+ "italic_wp",
16208
+ "isEdee",
16209
+ false
16210
+ ],
16211
+ [
16212
+ "italic_wp",
16213
+ "isEder",
16214
+ false
16215
+ ],
16216
+ [
16217
+ "italic_wp",
16218
+ "object",
16219
+ false
16220
+ ],
16221
+ [
16222
+ "italic_wp",
16223
+ "property",
16224
+ false
16225
+ ],
16226
+ [
16227
+ "italic_wp",
16228
+ "queryable",
16229
+ false
16230
+ ],
16231
+ [
16232
+ "italic_wp",
16233
+ "style_wp",
16234
+ false
16235
+ ],
16236
+ [
16237
+ "italic_wp",
16238
+ "theAble",
16239
+ false
16240
+ ],
16241
+ [
16242
+ "ivory_colors",
16243
+ "hierarchyAble",
16244
+ false
16245
+ ],
16246
+ [
16247
+ "ivory_colors",
16248
+ "isEdee",
16249
+ false
16250
+ ],
16251
+ [
16252
+ "ivory_colors",
16253
+ "isEder",
16254
+ false
16255
+ ],
16256
+ [
16257
+ "ivory_colors",
16258
+ "object",
16259
+ false
16260
+ ],
16261
+ [
16262
+ "ivory_colors",
16263
+ "property",
16264
+ false
16265
+ ],
16266
+ [
16267
+ "ivory_colors",
16268
+ "queryable",
16269
+ false
16270
+ ],
16271
+ [
16272
+ "ivory_colors",
16273
+ "theAble",
16274
+ false
16275
+ ],
16276
+ [
16277
+ "ivory_colors",
16278
+ "white_colors",
16279
+ false
16280
+ ],
16281
+ [
16282
+ "khaki_colors",
16283
+ "hierarchyAble",
16284
+ false
16285
+ ],
16286
+ [
16287
+ "khaki_colors",
16288
+ "isEdee",
16289
+ false
16290
+ ],
16291
+ [
16292
+ "khaki_colors",
16293
+ "isEder",
16294
+ false
16295
+ ],
16296
+ [
16297
+ "khaki_colors",
16298
+ "object",
16299
+ false
16300
+ ],
16301
+ [
16302
+ "khaki_colors",
16303
+ "property",
16304
+ false
16305
+ ],
16306
+ [
16307
+ "khaki_colors",
16308
+ "queryable",
16309
+ false
16310
+ ],
16311
+ [
16312
+ "khaki_colors",
16313
+ "theAble",
16314
+ false
16315
+ ],
16316
+ [
16317
+ "khaki_colors",
16318
+ "yellow_colors",
16319
+ false
16320
+ ],
16321
+ [
16322
+ "lavender_colors",
16323
+ "hierarchyAble",
16324
+ false
16325
+ ],
16326
+ [
16327
+ "lavender_colors",
16328
+ "isEdee",
16329
+ false
16330
+ ],
16331
+ [
16332
+ "lavender_colors",
16333
+ "isEder",
16334
+ false
16335
+ ],
16336
+ [
16337
+ "lavender_colors",
16338
+ "object",
16339
+ false
16340
+ ],
16341
+ [
16342
+ "lavender_colors",
16343
+ "property",
16344
+ false
16345
+ ],
16346
+ [
16347
+ "lavender_colors",
16348
+ "purple_colors",
16349
+ false
16350
+ ],
16351
+ [
16352
+ "lavender_colors",
16353
+ "queryable",
16354
+ false
16355
+ ],
16356
+ [
16357
+ "lavender_colors",
16358
+ "theAble",
16359
+ false
16360
+ ],
16361
+ [
16362
+ "left",
16363
+ "direction",
16364
+ false
16365
+ ],
16366
+ [
16367
+ "light_colors",
16368
+ "brightness_colors",
16369
+ false
16370
+ ],
16371
+ [
16372
+ "light_colors",
16373
+ "hierarchyAble",
16374
+ false
16375
+ ],
16376
+ [
16377
+ "light_colors",
16378
+ "isEdee",
16379
+ false
16380
+ ],
16381
+ [
16382
+ "light_colors",
16383
+ "isEder",
16384
+ false
16385
+ ],
16386
+ [
16387
+ "light_colors",
16388
+ "object",
16389
+ false
16390
+ ],
16391
+ [
16392
+ "light_colors",
16393
+ "property",
16394
+ false
16395
+ ],
16396
+ [
16397
+ "light_colors",
16398
+ "queryable",
16399
+ false
16400
+ ],
16401
+ [
16402
+ "light_colors",
16403
+ "theAble",
16404
+ false
16405
+ ],
16406
+ [
16407
+ "lime_colors",
16408
+ "green_colors",
16409
+ false
16410
+ ],
16411
+ [
16412
+ "lime_colors",
16413
+ "hierarchyAble",
16414
+ false
16415
+ ],
16416
+ [
16417
+ "lime_colors",
16418
+ "isEdee",
16419
+ false
16420
+ ],
16421
+ [
16422
+ "lime_colors",
16423
+ "isEder",
16424
+ false
16425
+ ],
16426
+ [
16427
+ "lime_colors",
16428
+ "object",
16429
+ false
16430
+ ],
16431
+ [
16432
+ "lime_colors",
16433
+ "property",
16434
+ false
16435
+ ],
16436
+ [
16437
+ "lime_colors",
16438
+ "queryable",
16439
+ false
16440
+ ],
16441
+ [
16442
+ "lime_colors",
16443
+ "theAble",
16444
+ false
16445
+ ],
16446
+ [
16447
+ "listening",
16448
+ "action",
16449
+ false
16450
+ ],
16451
+ [
16452
+ "magenta_colors",
16453
+ "hierarchyAble",
16454
+ false
16455
+ ],
16456
+ [
16457
+ "magenta_colors",
16458
+ "isEdee",
16459
+ false
16460
+ ],
16461
+ [
16462
+ "magenta_colors",
16463
+ "isEder",
16464
+ false
16465
+ ],
16466
+ [
16467
+ "magenta_colors",
16468
+ "object",
16469
+ false
16470
+ ],
16471
+ [
16472
+ "magenta_colors",
16473
+ "property",
16474
+ false
16475
+ ],
16476
+ [
16477
+ "magenta_colors",
16478
+ "purple_colors",
16479
+ false
16480
+ ],
16481
+ [
16482
+ "magenta_colors",
16483
+ "queryable",
16484
+ false
16485
+ ],
16486
+ [
16487
+ "magenta_colors",
16488
+ "theAble",
16489
+ false
16490
+ ],
16491
+ [
16492
+ "maroon_colors",
16493
+ "brown_colors",
16494
+ false
16495
+ ],
16496
+ [
16497
+ "maroon_colors",
16498
+ "hierarchyAble",
16499
+ false
16500
+ ],
16501
+ [
16502
+ "maroon_colors",
16503
+ "isEdee",
16504
+ false
16505
+ ],
16506
+ [
16507
+ "maroon_colors",
16508
+ "isEder",
16509
+ false
16510
+ ],
16511
+ [
16512
+ "maroon_colors",
16513
+ "object",
16514
+ false
16515
+ ],
16516
+ [
16517
+ "maroon_colors",
16518
+ "property",
16519
+ false
16520
+ ],
16521
+ [
16522
+ "maroon_colors",
16523
+ "queryable",
16524
+ false
16525
+ ],
16526
+ [
16527
+ "maroon_colors",
16528
+ "theAble",
16529
+ false
16530
+ ],
16531
+ [
16532
+ "memorable",
16533
+ "theAble",
16534
+ false
16535
+ ],
16536
+ [
16537
+ "modifies",
16538
+ "verb",
16539
+ false
16540
+ ],
16541
+ [
16542
+ "move",
16543
+ "verb",
16544
+ false
16545
+ ],
16546
+ [
16547
+ "moveAmount",
16548
+ "preposition",
16549
+ false
16550
+ ],
16551
+ [
16552
+ "navy_colors",
16553
+ "blue_colors",
16554
+ false
16555
+ ],
16556
+ [
16557
+ "navy_colors",
16558
+ "hierarchyAble",
16559
+ false
16560
+ ],
16561
+ [
16562
+ "navy_colors",
16563
+ "isEdee",
16564
+ false
16565
+ ],
16566
+ [
16567
+ "navy_colors",
16568
+ "isEder",
16569
+ false
16570
+ ],
16571
+ [
16572
+ "navy_colors",
16573
+ "object",
16574
+ false
16575
+ ],
16576
+ [
16577
+ "navy_colors",
16578
+ "property",
16579
+ false
16580
+ ],
16581
+ [
16582
+ "navy_colors",
16583
+ "queryable",
16584
+ false
16585
+ ],
16586
+ [
16587
+ "navy_colors",
16588
+ "theAble",
16589
+ false
16590
+ ],
16591
+ [
16592
+ "negatable",
16593
+ "queryable",
16594
+ false
16595
+ ],
16596
+ [
16597
+ "noun",
16598
+ "theAble",
16599
+ false
16600
+ ],
16601
+ [
16602
+ "number",
16603
+ "quantifier",
16604
+ false
16605
+ ],
16606
+ [
16607
+ "number",
16608
+ "queryable",
16609
+ false
16610
+ ],
16611
+ [
16612
+ "object",
16613
+ "queryable",
16614
+ false
16615
+ ],
16616
+ [
16617
+ "object",
16618
+ "theAble",
16619
+ false
16620
+ ],
16621
+ [
16622
+ "olive_colors",
16623
+ "green_colors",
16624
+ false
16625
+ ],
16626
+ [
16627
+ "olive_colors",
16628
+ "hierarchyAble",
16629
+ false
16630
+ ],
16631
+ [
16632
+ "olive_colors",
16633
+ "isEdee",
16634
+ false
16635
+ ],
16636
+ [
16637
+ "olive_colors",
16638
+ "isEder",
16639
+ false
16640
+ ],
16641
+ [
16642
+ "olive_colors",
16643
+ "object",
16644
+ false
16645
+ ],
16646
+ [
16647
+ "olive_colors",
16648
+ "property",
16649
+ false
16650
+ ],
16651
+ [
16652
+ "olive_colors",
16653
+ "queryable",
16654
+ false
16655
+ ],
16656
+ [
16657
+ "olive_colors",
16658
+ "theAble",
16659
+ false
16660
+ ],
16661
+ [
16662
+ "orAble",
16663
+ "ifAble",
16664
+ false
16665
+ ],
16666
+ [
16667
+ "orange_colors",
16668
+ "color_colors",
16669
+ false
16670
+ ],
16671
+ [
16672
+ "orange_colors",
16673
+ "hierarchyAble",
16674
+ false
16675
+ ],
16676
+ [
16677
+ "orange_colors",
16678
+ "isEdee",
16679
+ false
16680
+ ],
16681
+ [
16682
+ "orange_colors",
16683
+ "isEder",
16684
+ false
16685
+ ],
16686
+ [
16687
+ "orange_colors",
16688
+ "object",
16689
+ false
16690
+ ],
16691
+ [
16692
+ "orange_colors",
16693
+ "property",
16694
+ false
16695
+ ],
16696
+ [
16697
+ "orange_colors",
16698
+ "queryable",
16699
+ false
16700
+ ],
16701
+ [
16702
+ "orange_colors",
16703
+ "theAble",
16704
+ false
16705
+ ],
16706
+ [
16707
+ "ordinalOnOrdered",
16708
+ "adjective",
16709
+ false
16710
+ ],
16711
+ [
16712
+ "paragraph_wp",
16713
+ "countable",
16714
+ false
16715
+ ],
16716
+ [
16717
+ "paragraph_wp",
16718
+ "hierarchyAble",
16719
+ false
16720
+ ],
16721
+ [
16722
+ "paragraph_wp",
16723
+ "isEdee",
16724
+ false
16725
+ ],
16726
+ [
16727
+ "paragraph_wp",
16728
+ "isEder",
16729
+ false
16730
+ ],
16731
+ [
16732
+ "paragraph_wp",
16733
+ "object",
16734
+ false
16735
+ ],
16736
+ [
16737
+ "paragraph_wp",
16738
+ "property",
16739
+ false
16740
+ ],
16741
+ [
16742
+ "paragraph_wp",
16743
+ "queryable",
16744
+ false
16745
+ ],
16746
+ [
16747
+ "paragraph_wp",
16748
+ "theAble",
16749
+ false
16750
+ ],
16751
+ [
16752
+ "pink_colors",
16753
+ "color_colors",
16754
+ false
16755
+ ],
16756
+ [
16757
+ "pink_colors",
16758
+ "hierarchyAble",
16759
+ false
16760
+ ],
16761
+ [
16762
+ "pink_colors",
16763
+ "isEdee",
16764
+ false
16765
+ ],
16766
+ [
16767
+ "pink_colors",
16768
+ "isEder",
16769
+ false
16770
+ ],
16771
+ [
16772
+ "pink_colors",
16773
+ "object",
16774
+ false
16775
+ ],
16776
+ [
16777
+ "pink_colors",
16778
+ "property",
16779
+ false
16780
+ ],
16781
+ [
16782
+ "pink_colors",
16783
+ "queryable",
16784
+ false
16785
+ ],
16786
+ [
16787
+ "pink_colors",
16788
+ "theAble",
16789
+ false
16790
+ ],
16791
+ [
16792
+ "preposition",
16793
+ "preposition",
16794
+ false
16795
+ ],
16796
+ [
16797
+ "pronoun",
16798
+ "pronoun",
16799
+ false
16800
+ ],
16801
+ [
16802
+ "property",
16803
+ "queryable",
16804
+ false
16805
+ ],
16806
+ [
16807
+ "property",
16808
+ "theAble",
16809
+ false
16810
+ ],
16811
+ [
16812
+ "propertyOf",
16813
+ "preposition",
16814
+ false
16815
+ ],
16816
+ [
16817
+ "punctuation",
16818
+ "punctuation",
16819
+ false
16820
+ ],
16821
+ [
16822
+ "purple_colors",
16823
+ "color_colors",
16824
+ false
16825
+ ],
16826
+ [
16827
+ "purple_colors",
16828
+ "hierarchyAble",
16829
+ false
16830
+ ],
16831
+ [
16832
+ "purple_colors",
16833
+ "isEdee",
16834
+ false
16835
+ ],
16836
+ [
16837
+ "purple_colors",
16838
+ "isEder",
16839
+ false
16840
+ ],
16841
+ [
16842
+ "purple_colors",
16843
+ "object",
16844
+ false
16845
+ ],
16846
+ [
16847
+ "purple_colors",
16848
+ "property",
16849
+ false
16850
+ ],
16851
+ [
16852
+ "purple_colors",
16853
+ "queryable",
16854
+ false
16855
+ ],
16856
+ [
16857
+ "purple_colors",
16858
+ "theAble",
16859
+ false
16860
+ ],
16861
+ [
16862
+ "quantifier",
16863
+ "quantifier",
16864
+ false
16865
+ ],
16866
+ [
16867
+ "queryable",
16868
+ "queryable",
16869
+ false
16870
+ ],
16871
+ [
16872
+ "questionMark",
16873
+ "punctuation",
16874
+ false
16875
+ ],
16876
+ [
16877
+ "readonly",
16878
+ "queryable",
16879
+ false
16880
+ ],
16881
+ [
16882
+ "reason",
16883
+ "queryable",
16884
+ false
16885
+ ],
16886
+ [
16887
+ "reason",
16888
+ "theAble",
16889
+ false
16890
+ ],
16891
+ [
16892
+ "red_colors",
16893
+ "color_colors",
16894
+ false
16895
+ ],
16896
+ [
16897
+ "red_colors",
16898
+ "hierarchyAble",
16899
+ false
16900
+ ],
16901
+ [
16902
+ "red_colors",
16903
+ "isEdee",
16904
+ false
16905
+ ],
16906
+ [
16907
+ "red_colors",
16908
+ "isEder",
16909
+ false
16910
+ ],
16911
+ [
16912
+ "red_colors",
16913
+ "object",
16914
+ false
16915
+ ],
16916
+ [
16917
+ "red_colors",
16918
+ "property",
16919
+ false
16920
+ ],
16921
+ [
16922
+ "red_colors",
16923
+ "queryable",
16924
+ false
16925
+ ],
16926
+ [
16927
+ "red_colors",
16928
+ "theAble",
16929
+ false
16930
+ ],
16931
+ [
16932
+ "remember",
16933
+ "verb",
16934
+ false
16935
+ ],
16936
+ [
16937
+ "right",
16938
+ "direction",
16939
+ false
16940
+ ],
16941
+ [
16942
+ "select",
16943
+ "verb",
16944
+ false
16945
+ ],
16946
+ [
16947
+ "sienna_colors",
16948
+ "brown_colors",
16949
+ false
16950
+ ],
16951
+ [
16952
+ "sienna_colors",
16953
+ "hierarchyAble",
16954
+ false
16955
+ ],
16956
+ [
16957
+ "sienna_colors",
16958
+ "isEdee",
16959
+ false
16960
+ ],
16961
+ [
16962
+ "sienna_colors",
16963
+ "isEder",
16964
+ false
16965
+ ],
16966
+ [
16967
+ "sienna_colors",
16968
+ "object",
16969
+ false
16970
+ ],
16971
+ [
16972
+ "sienna_colors",
16973
+ "property",
16974
+ false
16975
+ ],
16976
+ [
16977
+ "sienna_colors",
16978
+ "queryable",
16979
+ false
16980
+ ],
16981
+ [
16982
+ "sienna_colors",
16983
+ "theAble",
16984
+ false
16985
+ ],
16986
+ [
16987
+ "silver_colors",
16988
+ "gray_colors",
16989
+ false
16990
+ ],
16991
+ [
16992
+ "silver_colors",
16993
+ "hierarchyAble",
16994
+ false
16995
+ ],
16996
+ [
16997
+ "silver_colors",
16998
+ "isEdee",
16999
+ false
17000
+ ],
17001
+ [
17002
+ "silver_colors",
17003
+ "isEder",
17004
+ false
17005
+ ],
17006
+ [
17007
+ "silver_colors",
17008
+ "object",
17009
+ false
17010
+ ],
17011
+ [
17012
+ "silver_colors",
17013
+ "property",
17014
+ false
17015
+ ],
17016
+ [
17017
+ "silver_colors",
17018
+ "queryable",
17019
+ false
17020
+ ],
17021
+ [
17022
+ "silver_colors",
17023
+ "theAble",
17024
+ false
17025
+ ],
17026
+ [
17027
+ "snow_colors",
17028
+ "hierarchyAble",
17029
+ false
17030
+ ],
17031
+ [
17032
+ "snow_colors",
17033
+ "isEdee",
17034
+ false
17035
+ ],
17036
+ [
17037
+ "snow_colors",
17038
+ "isEder",
17039
+ false
17040
+ ],
17041
+ [
17042
+ "snow_colors",
17043
+ "object",
17044
+ false
17045
+ ],
17046
+ [
17047
+ "snow_colors",
17048
+ "property",
17049
+ false
17050
+ ],
17051
+ [
17052
+ "snow_colors",
17053
+ "queryable",
17054
+ false
17055
+ ],
17056
+ [
17057
+ "snow_colors",
17058
+ "theAble",
17059
+ false
17060
+ ],
17061
+ [
17062
+ "snow_colors",
17063
+ "white_colors",
17064
+ false
17065
+ ],
17066
+ [
17067
+ "statefulElement_wp",
17068
+ "hierarchyAble",
17069
+ false
17070
+ ],
17071
+ [
17072
+ "statefulElement_wp",
17073
+ "isEdee",
17074
+ false
17075
+ ],
17076
+ [
17077
+ "statefulElement_wp",
17078
+ "isEder",
17079
+ false
17080
+ ],
17081
+ [
17082
+ "statefulElement_wp",
17083
+ "object",
17084
+ false
17085
+ ],
17086
+ [
17087
+ "statefulElement_wp",
17088
+ "property",
17089
+ false
17090
+ ],
17091
+ [
17092
+ "statefulElement_wp",
17093
+ "queryable",
17094
+ false
17095
+ ],
17096
+ [
17097
+ "statefulElement_wp",
17098
+ "theAble",
17099
+ false
17100
+ ],
17101
+ [
17102
+ "stm_before",
17103
+ "adjective",
17104
+ false
17105
+ ],
17106
+ [
17107
+ "stop",
17108
+ "verb",
17109
+ false
17110
+ ],
17111
+ [
17112
+ "style_wp",
17113
+ "hierarchyAble",
17114
+ false
17115
+ ],
17116
+ [
17117
+ "style_wp",
17118
+ "isEdee",
17119
+ false
17120
+ ],
17121
+ [
17122
+ "style_wp",
17123
+ "isEder",
17124
+ false
17125
+ ],
17126
+ [
17127
+ "style_wp",
17128
+ "object",
17129
+ false
17130
+ ],
17131
+ [
17132
+ "style_wp",
17133
+ "property",
17134
+ false
17135
+ ],
17136
+ [
17137
+ "style_wp",
17138
+ "queryable",
17139
+ false
17140
+ ],
17141
+ [
17142
+ "style_wp",
17143
+ "theAble",
17144
+ false
17145
+ ],
17146
+ [
17147
+ "tan_colors",
17148
+ "brown_colors",
17149
+ false
17150
+ ],
17151
+ [
17152
+ "tan_colors",
17153
+ "hierarchyAble",
17154
+ false
17155
+ ],
17156
+ [
17157
+ "tan_colors",
17158
+ "isEdee",
17159
+ false
17160
+ ],
17161
+ [
17162
+ "tan_colors",
17163
+ "isEder",
17164
+ false
17165
+ ],
17166
+ [
17167
+ "tan_colors",
17168
+ "object",
17169
+ false
17170
+ ],
17171
+ [
17172
+ "tan_colors",
17173
+ "property",
17174
+ false
17175
+ ],
17176
+ [
17177
+ "tan_colors",
17178
+ "queryable",
17179
+ false
17180
+ ],
17181
+ [
17182
+ "tan_colors",
17183
+ "theAble",
17184
+ false
17185
+ ],
17186
+ [
17187
+ "teal_colors",
17188
+ "green_colors",
17189
+ false
17190
+ ],
17191
+ [
17192
+ "teal_colors",
17193
+ "hierarchyAble",
17194
+ false
17195
+ ],
17196
+ [
17197
+ "teal_colors",
17198
+ "isEdee",
17199
+ false
17200
+ ],
17201
+ [
17202
+ "teal_colors",
17203
+ "isEder",
17204
+ false
17205
+ ],
17206
+ [
17207
+ "teal_colors",
17208
+ "object",
17209
+ false
17210
+ ],
17211
+ [
17212
+ "teal_colors",
17213
+ "property",
17214
+ false
17215
+ ],
17216
+ [
17217
+ "teal_colors",
17218
+ "queryable",
17219
+ false
17220
+ ],
17221
+ [
17222
+ "teal_colors",
17223
+ "theAble",
17224
+ false
17225
+ ],
17226
+ [
17227
+ "that",
17228
+ "thisitthat",
17229
+ false
17230
+ ],
17231
+ [
17232
+ "the",
17233
+ "articlePOS",
17234
+ false
17235
+ ],
17236
+ [
17237
+ "theAble",
17238
+ "queryable",
17239
+ false
17240
+ ],
17241
+ [
17242
+ "this",
17243
+ "pronoun",
17244
+ false
17245
+ ],
17246
+ [
17247
+ "this",
17248
+ "queryable",
17249
+ false
17250
+ ],
17251
+ [
17252
+ "this",
17253
+ "thisitthat",
17254
+ false
17255
+ ],
17256
+ [
17257
+ "thisitthat",
17258
+ "queryable",
17259
+ false
17260
+ ],
17261
+ [
17262
+ "to",
17263
+ "preposition",
17264
+ false
17265
+ ],
17266
+ [
17267
+ "toAble",
17268
+ "toAble",
17269
+ false
17270
+ ],
17271
+ [
17272
+ "turquoise_colors",
17273
+ "blue_colors",
17274
+ false
17275
+ ],
17276
+ [
17277
+ "turquoise_colors",
17278
+ "hierarchyAble",
17279
+ false
17280
+ ],
17281
+ [
17282
+ "turquoise_colors",
17283
+ "isEdee",
17284
+ false
17285
+ ],
17286
+ [
17287
+ "turquoise_colors",
17288
+ "isEder",
17289
+ false
17290
+ ],
17291
+ [
17292
+ "turquoise_colors",
17293
+ "object",
17294
+ false
17295
+ ],
17296
+ [
17297
+ "turquoise_colors",
17298
+ "property",
17299
+ false
17300
+ ],
17301
+ [
17302
+ "turquoise_colors",
17303
+ "queryable",
17304
+ false
17305
+ ],
17306
+ [
17307
+ "turquoise_colors",
17308
+ "theAble",
17309
+ false
17310
+ ],
17311
+ [
17312
+ "type",
17313
+ "property",
17314
+ false
17315
+ ],
17316
+ [
17317
+ "type",
17318
+ "whatAble",
17319
+ false
17320
+ ],
17321
+ [
17322
+ "underline_wp",
17323
+ "hierarchyAble",
17324
+ false
17325
+ ],
17326
+ [
17327
+ "underline_wp",
17328
+ "isEdee",
17329
+ false
17330
+ ],
17331
+ [
17332
+ "underline_wp",
17333
+ "isEder",
17334
+ false
17335
+ ],
17336
+ [
17337
+ "underline_wp",
17338
+ "object",
17339
+ false
17340
+ ],
17341
+ [
17342
+ "underline_wp",
17343
+ "property",
17344
+ false
17345
+ ],
17346
+ [
17347
+ "underline_wp",
17348
+ "queryable",
17349
+ false
17350
+ ],
17351
+ [
17352
+ "underline_wp",
17353
+ "style_wp",
17354
+ false
17355
+ ],
17356
+ [
17357
+ "underline_wp",
17358
+ "theAble",
17359
+ false
17360
+ ],
17361
+ [
17362
+ "underlined_wp",
17363
+ "isEdee",
17364
+ false
17365
+ ],
17366
+ [
17367
+ "underlined_wp",
17368
+ "isEder",
17369
+ false
17370
+ ],
17371
+ [
17372
+ "underlined_wp",
17373
+ "queryable",
17374
+ false
17375
+ ],
17376
+ [
17377
+ "underlined_wp",
17378
+ "theAble",
17379
+ false
17380
+ ],
17381
+ [
17382
+ "underlined_wp",
17383
+ "underline_wp",
17384
+ false
17385
+ ],
17386
+ [
17387
+ "unknown",
17388
+ "hierarchyAble",
17389
+ false
17390
+ ],
17391
+ [
17392
+ "unknown",
17393
+ "queryable",
17394
+ false
17395
+ ],
17396
+ [
17397
+ "unknown",
17398
+ "theAble",
17399
+ false
17400
+ ],
17401
+ [
17402
+ "unselect",
17403
+ "verb",
17404
+ false
17405
+ ],
17406
+ [
17407
+ "up",
17408
+ "direction",
17409
+ false
17410
+ ],
17411
+ [
17412
+ "verb",
17413
+ "verb",
17414
+ false
17415
+ ],
17416
+ [
17417
+ "violet_colors",
17418
+ "hierarchyAble",
17419
+ false
17420
+ ],
17421
+ [
17422
+ "violet_colors",
17423
+ "isEdee",
17424
+ false
17425
+ ],
17426
+ [
17427
+ "violet_colors",
17428
+ "isEder",
17429
+ false
17430
+ ],
17431
+ [
17432
+ "violet_colors",
17433
+ "object",
17434
+ false
17435
+ ],
17436
+ [
17437
+ "violet_colors",
17438
+ "property",
17439
+ false
17440
+ ],
17441
+ [
17442
+ "violet_colors",
17443
+ "purple_colors",
17444
+ false
17445
+ ],
17446
+ [
17447
+ "violet_colors",
17448
+ "queryable",
17449
+ false
17450
+ ],
17451
+ [
17452
+ "violet_colors",
17453
+ "theAble",
17454
+ false
17455
+ ],
17456
+ [
17457
+ "what",
17458
+ "object",
17459
+ false
17460
+ ],
17461
+ [
17462
+ "what",
17463
+ "queryable",
17464
+ false
17465
+ ],
17466
+ [
17467
+ "whatAble",
17468
+ "queryable",
17469
+ false
17470
+ ],
17471
+ [
17472
+ "white_colors",
17473
+ "color_colors",
17474
+ false
17475
+ ],
17476
+ [
17477
+ "white_colors",
17478
+ "hierarchyAble",
17479
+ false
17480
+ ],
17481
+ [
17482
+ "white_colors",
17483
+ "isEdee",
17484
+ false
17485
+ ],
17486
+ [
17487
+ "white_colors",
17488
+ "isEder",
17489
+ false
17490
+ ],
17491
+ [
17492
+ "white_colors",
17493
+ "object",
17494
+ false
17495
+ ],
17496
+ [
17497
+ "white_colors",
17498
+ "property",
17499
+ false
17500
+ ],
17501
+ [
17502
+ "white_colors",
17503
+ "queryable",
17504
+ false
17505
+ ],
17506
+ [
17507
+ "white_colors",
17508
+ "theAble",
17509
+ false
17510
+ ],
17511
+ [
17512
+ "whose",
17513
+ "object",
17514
+ false
17515
+ ],
17516
+ [
17517
+ "word_wp",
17518
+ "countable",
17519
+ false
17520
+ ],
17521
+ [
17522
+ "word_wp",
17523
+ "hierarchyAble",
17524
+ false
17525
+ ],
17526
+ [
17527
+ "word_wp",
17528
+ "isEdee",
17529
+ false
17530
+ ],
17531
+ [
17532
+ "word_wp",
17533
+ "isEder",
17534
+ false
17535
+ ],
17536
+ [
17537
+ "word_wp",
17538
+ "object",
17539
+ false
17540
+ ],
17541
+ [
17542
+ "word_wp",
17543
+ "property",
17544
+ false
17545
+ ],
17546
+ [
17547
+ "word_wp",
17548
+ "queryable",
17549
+ false
17550
+ ],
17551
+ [
17552
+ "word_wp",
17553
+ "statefulElement_wp",
17554
+ false
17555
+ ],
17556
+ [
17557
+ "word_wp",
17558
+ "theAble",
17559
+ false
17560
+ ],
17561
+ [
17562
+ "xfx",
17563
+ "queryable",
17564
+ false
17565
+ ],
17566
+ [
17567
+ "yellow_colors",
17568
+ "color_colors",
17569
+ false
17570
+ ],
17571
+ [
17572
+ "yellow_colors",
17573
+ "hierarchyAble",
17574
+ false
17575
+ ],
17576
+ [
17577
+ "yellow_colors",
17578
+ "isEdee",
17579
+ false
17580
+ ],
17581
+ [
17582
+ "yellow_colors",
17583
+ "isEder",
17584
+ false
17585
+ ],
17586
+ [
17587
+ "yellow_colors",
17588
+ "object",
17589
+ false
17590
+ ],
17591
+ [
17592
+ "yellow_colors",
17593
+ "property",
17594
+ false
17595
+ ],
17596
+ [
17597
+ "yellow_colors",
17598
+ "queryable",
17599
+ false
17600
+ ],
17601
+ [
17602
+ "yellow_colors",
17603
+ "theAble",
17604
+ false
17605
+ ]
17606
+ ],
17607
+ "metadata": {
17608
+ "opChoices": [
17609
+ {
17610
+ "op": [
17611
+ "resetIdSuffix",
17612
+ 0
17613
+ ],
17614
+ "ops": [
17615
+ [
17616
+ "resetIdSuffix",
17617
+ 0
17618
+ ]
17619
+ ],
17620
+ "counter": 1
17621
+ }
17622
+ ]
17623
+ },
17624
+ "trace": "undefined",
17625
+ "contexts": [
17626
+ {
17627
+ "marker": "resetIdSuffix",
17628
+ "value": "resetIdSuffix",
17629
+ "default": true,
17630
+ "text": "resetidsuffix",
17631
+ "word": "resetidsuffix",
17632
+ "raw_text": "resetIdSuffix",
17633
+ "range": {
17634
+ "start": 0,
17635
+ "end": 12
17636
+ },
17637
+ "dead": true,
17638
+ "level": 1,
17639
+ "topLevel": true,
17640
+ "touchedBy": [
17641
+ "wp#call2",
17642
+ "instance0#wp#call2"
17643
+ ]
17644
+ }
17645
+ ],
17646
+ "generated": [
17647
+ ""
17648
+ ],
17649
+ "paraphrases": [
17650
+ "resetidsuffix"
17651
+ ],
17652
+ "paraphrasesParenthesized": [],
17653
+ "generatedParenthesized": [],
17654
+ "responses": [
17655
+ ""
17656
+ ],
17657
+ "associations": [],
17658
+ "learned_contextual_priorities": [],
17659
+ "query": "resetIdSuffix",
17660
+ "key": {
17661
+ "query": "resetIdSuffix"
17662
+ }
17663
+ },
17664
+ {
17665
+ "extraConfig": true,
17666
+ "operators": [
17667
+ "([changeState_wp|make] ([statefulElement_wp]) ([stateValue_wp|]))",
17668
+ "((style_wp/*) [applyStyle_wp] ([statefulElement_wp|]))"
17669
+ ],
17670
+ "bridges": [
17671
+ {
17672
+ "id": "applyStyle_wp",
17673
+ "parents": [
17674
+ "verb"
17675
+ ],
17676
+ "convolution": true,
17677
+ "bridge": "{ ...next(operator), element: before[0], state: after[0], operator: operator, generate: ['element', 'state'] }",
17678
+ "localHierarchy": [
17679
+ [
17680
+ "thisitthat",
17681
+ "statefulElement_wp"
17682
+ ],
17683
+ [
17684
+ "everything",
17685
+ "statefulElement_wp"
17686
+ ]
17687
+ ]
17688
+ },
17689
+ {
17690
+ "id": "changeState_wp",
17691
+ "parents": [
17692
+ "verb"
17693
+ ],
17694
+ "bridge": "{ ...next(operator), element: after[0], state: after[1], operator: operator, generate: ['operator', 'element', 'state'] }",
17695
+ "localHierarchy": [
17696
+ [
17697
+ "thisitthat",
17698
+ "statefulElement_wp"
17699
+ ],
17700
+ [
17701
+ "everything",
17702
+ "statefulElement_wp"
17703
+ ]
17704
+ ]
17705
+ },
17706
+ {
17707
+ "id": "stateValue_wp",
17708
+ "children": [
17709
+ "color_colors",
17710
+ "style_wp"
17711
+ ]
17712
+ }
17713
+ ],
17714
+ "semantics": [
17715
+ {
17716
+ "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:149"
17717
+ },
17718
+ {
17719
+ "where": "/home/dev/code/theprogrammablemind/kms/common/wp.js:158"
17720
+ }
17721
+ ],
17722
+ "priorities": [
17723
+ {
17724
+ "context": [
17725
+ [
17726
+ "changeState_wp",
17727
+ 0
17728
+ ],
17729
+ [
17730
+ "statefulElement_wp",
17731
+ 0
17732
+ ],
17733
+ [
17734
+ "list",
17735
+ 0
17736
+ ]
17737
+ ],
17738
+ "ordered": true,
17739
+ "choose": [
17740
+ 0
17741
+ ]
17742
+ }
17743
+ ]
17744
+ }
17745
+ ],
17746
+ "fragments": [],
17747
+ "semantics": [],
17748
+ "associations": [
17749
+ [
17750
+ [
17751
+ "comma",
17752
+ 0
17753
+ ],
17754
+ [
17755
+ "is",
17756
+ 0
17757
+ ],
17758
+ [
17759
+ "list",
17760
+ 0
17761
+ ],
17762
+ [
17763
+ "unknown",
17764
+ 0
17765
+ ]
17766
+ ],
17767
+ [
17768
+ [
17769
+ "comma",
17770
+ 0
17771
+ ],
17772
+ [
17773
+ "is",
17774
+ 0
17775
+ ],
17776
+ [
17777
+ "list",
17778
+ 0
17779
+ ],
17780
+ [
17781
+ "unknown",
17782
+ 0
17783
+ ],
17784
+ [
17785
+ "unknown",
17786
+ 1
17787
+ ]
17788
+ ],
17789
+ [
17790
+ [
17791
+ "comma",
17792
+ 0
17793
+ ],
17794
+ [
17795
+ "is",
17796
+ 0
17797
+ ],
17798
+ [
17799
+ "list",
17800
+ 0
17801
+ ],
17802
+ [
17803
+ "unknown",
17804
+ 1
17805
+ ]
17806
+ ],
17807
+ [
17808
+ [
17809
+ "comma",
17810
+ 0
17811
+ ],
17812
+ [
15049
17813
  "is",
15050
17814
  0
15051
17815
  ],
@@ -15234,6 +17998,44 @@
15234
17998
  1
15235
17999
  ]
15236
18000
  ],
18001
+ [
18002
+ [
18003
+ "means",
18004
+ 0
18005
+ ],
18006
+ [
18007
+ "underline_wp",
18008
+ 0
18009
+ ],
18010
+ [
18011
+ "unknown",
18012
+ 0
18013
+ ]
18014
+ ],
18015
+ [
18016
+ [
18017
+ "means",
18018
+ 0
18019
+ ],
18020
+ [
18021
+ "underline_wp",
18022
+ 0
18023
+ ],
18024
+ [
18025
+ "unknown",
18026
+ 1
18027
+ ]
18028
+ ],
18029
+ [
18030
+ [
18031
+ "means",
18032
+ 0
18033
+ ],
18034
+ [
18035
+ "unknown",
18036
+ 1
18037
+ ]
18038
+ ],
15237
18039
  [
15238
18040
  [
15239
18041
  "setIdSuffix",