tpmkms_4wp 7.12.2 → 7.12.3-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/common/avatar.js +6 -6
  2. package/common/comparable.js +1 -1
  3. package/common/concept.js +2 -0
  4. package/common/countable.js +1 -1
  5. package/common/crew.instance.json +36 -0
  6. package/common/crew.js +3 -2
  7. package/common/crew.test.json +45 -45
  8. package/common/currency.js +2 -0
  9. package/common/dialogues.js +11 -3
  10. package/common/dimension.js +5 -3
  11. package/common/dimension.test.json +204 -158
  12. package/common/edible.instance.json +56 -0
  13. package/common/edible.js +1 -2
  14. package/common/edible.test.json +34 -4
  15. package/common/emotions.js +2 -0
  16. package/common/fastfood.instance.json +732 -224
  17. package/common/fastfood.js +3 -4
  18. package/common/fastfood.test.json +686 -2164
  19. package/common/formulas.js +3 -1
  20. package/common/formulas.test.json +25 -85
  21. package/common/formulasTemplate.js +1 -1
  22. package/common/gdefaults.js +2 -1
  23. package/common/help.js +2 -0
  24. package/common/hierarchy.js +4 -2
  25. package/common/javascript.js +2 -0
  26. package/common/math.js +13 -5
  27. package/common/math.test.json +127 -543
  28. package/common/mathTemplate.js +1 -1
  29. package/common/ordering.instance.json +0 -68
  30. package/common/ordering.js +2 -0
  31. package/common/people.js +2 -0
  32. package/common/people.test.json +118 -56
  33. package/common/pipboy.js +3 -1
  34. package/common/pipboy.test.json +1813 -91
  35. package/common/pipboyTemplate.js +1 -1
  36. package/common/pokemon.js +2 -0
  37. package/common/pokemon.test.json +1658 -4
  38. package/common/properties.js +3 -3
  39. package/common/properties.test.json +198 -90
  40. package/common/reports.instance.json +1 -1
  41. package/common/reports.js +4 -1
  42. package/common/scorekeeper.js +3 -3
  43. package/common/scorekeeper.test.json +46 -46
  44. package/common/sizeable.js +1 -1
  45. package/common/stgame.js +2 -0
  46. package/common/tell.js +2 -0
  47. package/common/temperature.instance.json +0 -112
  48. package/common/time.js +2 -0
  49. package/common/ui.js +3 -1
  50. package/common/weight.test.json +22 -22
  51. package/package.json +2 -2
@@ -48,6 +48,8 @@
48
48
  "gdefaults": "gdefaults2",
49
49
  "help": "help2",
50
50
  "hierarchy": "hierarchy2",
51
+ "math": "math2",
52
+ "mathTemplate": "mathTemplate2",
51
53
  "meta": "meta2",
52
54
  "numbers": "numbers2",
53
55
  "pipboy": "pipboy1",
@@ -81,6 +83,10 @@
81
83
  },
82
84
  "hierarchy2": {
83
85
  },
86
+ "math2": {
87
+ },
88
+ "mathTemplate2": {
89
+ },
84
90
  "meta2": {
85
91
  },
86
92
  "numbers2": {
@@ -156,6 +162,12 @@
156
162
  "range",
157
163
  "accuracy"
158
164
  ],
165
+ "mathematical_operator": [
166
+ "*",
167
+ "+",
168
+ "/",
169
+ "-"
170
+ ],
159
171
  "notAble": [
160
172
  "unknown"
161
173
  ],
@@ -267,6 +279,11 @@
267
279
  "that",
268
280
  "orAble",
269
281
  "ifAble",
282
+ "*",
283
+ "mathematical_operator",
284
+ "+",
285
+ "/",
286
+ "-",
270
287
  "pistol",
271
288
  "weapon",
272
289
  "rifle",
@@ -305,6 +322,18 @@
305
322
  "accuracy"
306
323
  ],
307
324
  "parents": {
325
+ "*": [
326
+ "mathematical_operator"
327
+ ],
328
+ "+": [
329
+ "mathematical_operator"
330
+ ],
331
+ "-": [
332
+ "mathematical_operator"
333
+ ],
334
+ "/": [
335
+ "mathematical_operator"
336
+ ],
308
337
  "a": [
309
338
  "articlePOS"
310
339
  ],
@@ -499,6 +528,14 @@
499
528
  "initHandlers": [
500
529
  ],
501
530
  "root": {
531
+ "*": {
532
+ },
533
+ "+": {
534
+ },
535
+ "-": {
536
+ },
537
+ "/": {
538
+ },
502
539
  "a": {
503
540
  },
504
541
  "accuracy": {
@@ -561,6 +598,8 @@
561
598
  },
562
599
  "luck": {
563
600
  },
601
+ "mathematical_operator": {
602
+ },
564
603
  "meat": {
565
604
  },
566
605
  "medicine": {
@@ -1262,6 +1301,8 @@
1262
1301
  "gdefaults": "gdefaults2",
1263
1302
  "help": "help2",
1264
1303
  "hierarchy": "hierarchy2",
1304
+ "math": "math2",
1305
+ "mathTemplate": "mathTemplate2",
1265
1306
  "meta": "meta2",
1266
1307
  "numbers": "numbers2",
1267
1308
  "pipboy": "pipboy1",
@@ -1295,6 +1336,10 @@
1295
1336
  },
1296
1337
  "hierarchy2": {
1297
1338
  },
1339
+ "math2": {
1340
+ },
1341
+ "mathTemplate2": {
1342
+ },
1298
1343
  "meta2": {
1299
1344
  },
1300
1345
  "numbers2": {
@@ -1370,6 +1415,12 @@
1370
1415
  "range",
1371
1416
  "accuracy"
1372
1417
  ],
1418
+ "mathematical_operator": [
1419
+ "*",
1420
+ "+",
1421
+ "/",
1422
+ "-"
1423
+ ],
1373
1424
  "notAble": [
1374
1425
  "unknown"
1375
1426
  ],
@@ -1481,6 +1532,11 @@
1481
1532
  "that",
1482
1533
  "orAble",
1483
1534
  "ifAble",
1535
+ "*",
1536
+ "mathematical_operator",
1537
+ "+",
1538
+ "/",
1539
+ "-",
1484
1540
  "pistol",
1485
1541
  "weapon",
1486
1542
  "rifle",
@@ -1519,6 +1575,18 @@
1519
1575
  "accuracy"
1520
1576
  ],
1521
1577
  "parents": {
1578
+ "*": [
1579
+ "mathematical_operator"
1580
+ ],
1581
+ "+": [
1582
+ "mathematical_operator"
1583
+ ],
1584
+ "-": [
1585
+ "mathematical_operator"
1586
+ ],
1587
+ "/": [
1588
+ "mathematical_operator"
1589
+ ],
1522
1590
  "a": [
1523
1591
  "articlePOS"
1524
1592
  ],
@@ -1713,6 +1781,14 @@
1713
1781
  "initHandlers": [
1714
1782
  ],
1715
1783
  "root": {
1784
+ "*": {
1785
+ },
1786
+ "+": {
1787
+ },
1788
+ "-": {
1789
+ },
1790
+ "/": {
1791
+ },
1716
1792
  "a": {
1717
1793
  },
1718
1794
  "accuracy": {
@@ -1775,6 +1851,8 @@
1775
1851
  },
1776
1852
  "luck": {
1777
1853
  },
1854
+ "mathematical_operator": {
1855
+ },
1778
1856
  "meat": {
1779
1857
  },
1780
1858
  "medicine": {
@@ -2476,6 +2554,8 @@
2476
2554
  "gdefaults": "gdefaults2",
2477
2555
  "help": "help2",
2478
2556
  "hierarchy": "hierarchy2",
2557
+ "math": "math2",
2558
+ "mathTemplate": "mathTemplate2",
2479
2559
  "meta": "meta2",
2480
2560
  "numbers": "numbers2",
2481
2561
  "pipboy": "pipboy1",
@@ -2509,6 +2589,10 @@
2509
2589
  },
2510
2590
  "hierarchy2": {
2511
2591
  },
2592
+ "math2": {
2593
+ },
2594
+ "mathTemplate2": {
2595
+ },
2512
2596
  "meta2": {
2513
2597
  },
2514
2598
  "numbers2": {
@@ -2584,6 +2668,12 @@
2584
2668
  "range",
2585
2669
  "accuracy"
2586
2670
  ],
2671
+ "mathematical_operator": [
2672
+ "*",
2673
+ "+",
2674
+ "/",
2675
+ "-"
2676
+ ],
2587
2677
  "notAble": [
2588
2678
  "unknown"
2589
2679
  ],
@@ -2695,6 +2785,11 @@
2695
2785
  "that",
2696
2786
  "orAble",
2697
2787
  "ifAble",
2788
+ "*",
2789
+ "mathematical_operator",
2790
+ "+",
2791
+ "/",
2792
+ "-",
2698
2793
  "pistol",
2699
2794
  "weapon",
2700
2795
  "rifle",
@@ -2733,6 +2828,18 @@
2733
2828
  "accuracy"
2734
2829
  ],
2735
2830
  "parents": {
2831
+ "*": [
2832
+ "mathematical_operator"
2833
+ ],
2834
+ "+": [
2835
+ "mathematical_operator"
2836
+ ],
2837
+ "-": [
2838
+ "mathematical_operator"
2839
+ ],
2840
+ "/": [
2841
+ "mathematical_operator"
2842
+ ],
2736
2843
  "a": [
2737
2844
  "articlePOS"
2738
2845
  ],
@@ -2927,6 +3034,14 @@
2927
3034
  "initHandlers": [
2928
3035
  ],
2929
3036
  "root": {
3037
+ "*": {
3038
+ },
3039
+ "+": {
3040
+ },
3041
+ "-": {
3042
+ },
3043
+ "/": {
3044
+ },
2930
3045
  "a": {
2931
3046
  },
2932
3047
  "accuracy": {
@@ -2989,6 +3104,8 @@
2989
3104
  },
2990
3105
  "luck": {
2991
3106
  },
3107
+ "mathematical_operator": {
3108
+ },
2992
3109
  "meat": {
2993
3110
  },
2994
3111
  "medicine": {
@@ -3733,6 +3850,8 @@
3733
3850
  "gdefaults": "gdefaults2",
3734
3851
  "help": "help2",
3735
3852
  "hierarchy": "hierarchy2",
3853
+ "math": "math2",
3854
+ "mathTemplate": "mathTemplate2",
3736
3855
  "meta": "meta2",
3737
3856
  "numbers": "numbers2",
3738
3857
  "pipboy": "pipboy1",
@@ -3766,6 +3885,10 @@
3766
3885
  },
3767
3886
  "hierarchy2": {
3768
3887
  },
3888
+ "math2": {
3889
+ },
3890
+ "mathTemplate2": {
3891
+ },
3769
3892
  "meta2": {
3770
3893
  },
3771
3894
  "numbers2": {
@@ -3841,6 +3964,12 @@
3841
3964
  "range",
3842
3965
  "accuracy"
3843
3966
  ],
3967
+ "mathematical_operator": [
3968
+ "*",
3969
+ "+",
3970
+ "/",
3971
+ "-"
3972
+ ],
3844
3973
  "notAble": [
3845
3974
  "unknown"
3846
3975
  ],
@@ -3952,6 +4081,11 @@
3952
4081
  "that",
3953
4082
  "orAble",
3954
4083
  "ifAble",
4084
+ "*",
4085
+ "mathematical_operator",
4086
+ "+",
4087
+ "/",
4088
+ "-",
3955
4089
  "pistol",
3956
4090
  "weapon",
3957
4091
  "rifle",
@@ -3990,6 +4124,18 @@
3990
4124
  "accuracy"
3991
4125
  ],
3992
4126
  "parents": {
4127
+ "*": [
4128
+ "mathematical_operator"
4129
+ ],
4130
+ "+": [
4131
+ "mathematical_operator"
4132
+ ],
4133
+ "-": [
4134
+ "mathematical_operator"
4135
+ ],
4136
+ "/": [
4137
+ "mathematical_operator"
4138
+ ],
3993
4139
  "a": [
3994
4140
  "articlePOS"
3995
4141
  ],
@@ -4184,6 +4330,14 @@
4184
4330
  "initHandlers": [
4185
4331
  ],
4186
4332
  "root": {
4333
+ "*": {
4334
+ },
4335
+ "+": {
4336
+ },
4337
+ "-": {
4338
+ },
4339
+ "/": {
4340
+ },
4187
4341
  "a": {
4188
4342
  },
4189
4343
  "accuracy": {
@@ -4246,6 +4400,8 @@
4246
4400
  },
4247
4401
  "luck": {
4248
4402
  },
4403
+ "mathematical_operator": {
4404
+ },
4249
4405
  "meat": {
4250
4406
  },
4251
4407
  "medicine": {
@@ -5058,6 +5214,8 @@
5058
5214
  "gdefaults": "gdefaults2",
5059
5215
  "help": "help2",
5060
5216
  "hierarchy": "hierarchy2",
5217
+ "math": "math2",
5218
+ "mathTemplate": "mathTemplate2",
5061
5219
  "meta": "meta2",
5062
5220
  "numbers": "numbers2",
5063
5221
  "pipboy": "pipboy1",
@@ -5091,6 +5249,10 @@
5091
5249
  },
5092
5250
  "hierarchy2": {
5093
5251
  },
5252
+ "math2": {
5253
+ },
5254
+ "mathTemplate2": {
5255
+ },
5094
5256
  "meta2": {
5095
5257
  },
5096
5258
  "numbers2": {
@@ -5166,6 +5328,12 @@
5166
5328
  "range",
5167
5329
  "accuracy"
5168
5330
  ],
5331
+ "mathematical_operator": [
5332
+ "*",
5333
+ "+",
5334
+ "/",
5335
+ "-"
5336
+ ],
5169
5337
  "notAble": [
5170
5338
  "unknown"
5171
5339
  ],
@@ -5277,6 +5445,11 @@
5277
5445
  "that",
5278
5446
  "orAble",
5279
5447
  "ifAble",
5448
+ "*",
5449
+ "mathematical_operator",
5450
+ "+",
5451
+ "/",
5452
+ "-",
5280
5453
  "pistol",
5281
5454
  "weapon",
5282
5455
  "rifle",
@@ -5315,6 +5488,18 @@
5315
5488
  "accuracy"
5316
5489
  ],
5317
5490
  "parents": {
5491
+ "*": [
5492
+ "mathematical_operator"
5493
+ ],
5494
+ "+": [
5495
+ "mathematical_operator"
5496
+ ],
5497
+ "-": [
5498
+ "mathematical_operator"
5499
+ ],
5500
+ "/": [
5501
+ "mathematical_operator"
5502
+ ],
5318
5503
  "a": [
5319
5504
  "articlePOS"
5320
5505
  ],
@@ -5509,6 +5694,14 @@
5509
5694
  "initHandlers": [
5510
5695
  ],
5511
5696
  "root": {
5697
+ "*": {
5698
+ },
5699
+ "+": {
5700
+ },
5701
+ "-": {
5702
+ },
5703
+ "/": {
5704
+ },
5512
5705
  "a": {
5513
5706
  },
5514
5707
  "accuracy": {
@@ -5571,6 +5764,8 @@
5571
5764
  },
5572
5765
  "luck": {
5573
5766
  },
5767
+ "mathematical_operator": {
5768
+ },
5574
5769
  "meat": {
5575
5770
  },
5576
5771
  "medicine": {
@@ -6394,6 +6589,8 @@
6394
6589
  "gdefaults": "gdefaults2",
6395
6590
  "help": "help2",
6396
6591
  "hierarchy": "hierarchy2",
6592
+ "math": "math2",
6593
+ "mathTemplate": "mathTemplate2",
6397
6594
  "meta": "meta2",
6398
6595
  "numbers": "numbers2",
6399
6596
  "pipboy": "pipboy1",
@@ -6427,6 +6624,10 @@
6427
6624
  },
6428
6625
  "hierarchy2": {
6429
6626
  },
6627
+ "math2": {
6628
+ },
6629
+ "mathTemplate2": {
6630
+ },
6430
6631
  "meta2": {
6431
6632
  },
6432
6633
  "numbers2": {
@@ -6503,6 +6704,12 @@
6503
6704
  "range",
6504
6705
  "accuracy"
6505
6706
  ],
6707
+ "mathematical_operator": [
6708
+ "*",
6709
+ "+",
6710
+ "/",
6711
+ "-"
6712
+ ],
6506
6713
  "notAble": [
6507
6714
  "unknown"
6508
6715
  ],
@@ -6614,6 +6821,11 @@
6614
6821
  "that",
6615
6822
  "orAble",
6616
6823
  "ifAble",
6824
+ "*",
6825
+ "mathematical_operator",
6826
+ "+",
6827
+ "/",
6828
+ "-",
6617
6829
  "pistol",
6618
6830
  "weapon",
6619
6831
  "rifle",
@@ -6652,6 +6864,18 @@
6652
6864
  "accuracy"
6653
6865
  ],
6654
6866
  "parents": {
6867
+ "*": [
6868
+ "mathematical_operator"
6869
+ ],
6870
+ "+": [
6871
+ "mathematical_operator"
6872
+ ],
6873
+ "-": [
6874
+ "mathematical_operator"
6875
+ ],
6876
+ "/": [
6877
+ "mathematical_operator"
6878
+ ],
6655
6879
  "a": [
6656
6880
  "articlePOS"
6657
6881
  ],
@@ -6846,6 +7070,14 @@
6846
7070
  "initHandlers": [
6847
7071
  ],
6848
7072
  "root": {
7073
+ "*": {
7074
+ },
7075
+ "+": {
7076
+ },
7077
+ "-": {
7078
+ },
7079
+ "/": {
7080
+ },
6849
7081
  "a": {
6850
7082
  },
6851
7083
  "accuracy": {
@@ -6908,6 +7140,8 @@
6908
7140
  },
6909
7141
  "luck": {
6910
7142
  },
7143
+ "mathematical_operator": {
7144
+ },
6911
7145
  "meat": {
6912
7146
  },
6913
7147
  "medicine": {
@@ -7725,6 +7959,8 @@
7725
7959
  "gdefaults": "gdefaults2",
7726
7960
  "help": "help2",
7727
7961
  "hierarchy": "hierarchy2",
7962
+ "math": "math2",
7963
+ "mathTemplate": "mathTemplate2",
7728
7964
  "meta": "meta2",
7729
7965
  "numbers": "numbers2",
7730
7966
  "pipboy": "pipboy1",
@@ -7758,6 +7994,10 @@
7758
7994
  },
7759
7995
  "hierarchy2": {
7760
7996
  },
7997
+ "math2": {
7998
+ },
7999
+ "mathTemplate2": {
8000
+ },
7761
8001
  "meta2": {
7762
8002
  },
7763
8003
  "numbers2": {
@@ -7834,6 +8074,12 @@
7834
8074
  "range",
7835
8075
  "accuracy"
7836
8076
  ],
8077
+ "mathematical_operator": [
8078
+ "*",
8079
+ "+",
8080
+ "/",
8081
+ "-"
8082
+ ],
7837
8083
  "notAble": [
7838
8084
  "unknown"
7839
8085
  ],
@@ -7945,6 +8191,11 @@
7945
8191
  "that",
7946
8192
  "orAble",
7947
8193
  "ifAble",
8194
+ "*",
8195
+ "mathematical_operator",
8196
+ "+",
8197
+ "/",
8198
+ "-",
7948
8199
  "pistol",
7949
8200
  "weapon",
7950
8201
  "rifle",
@@ -7983,6 +8234,18 @@
7983
8234
  "accuracy"
7984
8235
  ],
7985
8236
  "parents": {
8237
+ "*": [
8238
+ "mathematical_operator"
8239
+ ],
8240
+ "+": [
8241
+ "mathematical_operator"
8242
+ ],
8243
+ "-": [
8244
+ "mathematical_operator"
8245
+ ],
8246
+ "/": [
8247
+ "mathematical_operator"
8248
+ ],
7986
8249
  "a": [
7987
8250
  "articlePOS"
7988
8251
  ],
@@ -8177,6 +8440,14 @@
8177
8440
  "initHandlers": [
8178
8441
  ],
8179
8442
  "root": {
8443
+ "*": {
8444
+ },
8445
+ "+": {
8446
+ },
8447
+ "-": {
8448
+ },
8449
+ "/": {
8450
+ },
8180
8451
  "a": {
8181
8452
  },
8182
8453
  "accuracy": {
@@ -8239,6 +8510,8 @@
8239
8510
  },
8240
8511
  "luck": {
8241
8512
  },
8513
+ "mathematical_operator": {
8514
+ },
8242
8515
  "meat": {
8243
8516
  },
8244
8517
  "medicine": {
@@ -9013,6 +9286,8 @@
9013
9286
  "gdefaults": "gdefaults2",
9014
9287
  "help": "help2",
9015
9288
  "hierarchy": "hierarchy2",
9289
+ "math": "math2",
9290
+ "mathTemplate": "mathTemplate2",
9016
9291
  "meta": "meta2",
9017
9292
  "numbers": "numbers2",
9018
9293
  "pipboy": "pipboy1",
@@ -9046,6 +9321,10 @@
9046
9321
  },
9047
9322
  "hierarchy2": {
9048
9323
  },
9324
+ "math2": {
9325
+ },
9326
+ "mathTemplate2": {
9327
+ },
9049
9328
  "meta2": {
9050
9329
  },
9051
9330
  "numbers2": {
@@ -9122,6 +9401,12 @@
9122
9401
  "range",
9123
9402
  "accuracy"
9124
9403
  ],
9404
+ "mathematical_operator": [
9405
+ "*",
9406
+ "+",
9407
+ "/",
9408
+ "-"
9409
+ ],
9125
9410
  "notAble": [
9126
9411
  "unknown"
9127
9412
  ],
@@ -9233,6 +9518,11 @@
9233
9518
  "that",
9234
9519
  "orAble",
9235
9520
  "ifAble",
9521
+ "*",
9522
+ "mathematical_operator",
9523
+ "+",
9524
+ "/",
9525
+ "-",
9236
9526
  "pistol",
9237
9527
  "weapon",
9238
9528
  "rifle",
@@ -9271,6 +9561,18 @@
9271
9561
  "accuracy"
9272
9562
  ],
9273
9563
  "parents": {
9564
+ "*": [
9565
+ "mathematical_operator"
9566
+ ],
9567
+ "+": [
9568
+ "mathematical_operator"
9569
+ ],
9570
+ "-": [
9571
+ "mathematical_operator"
9572
+ ],
9573
+ "/": [
9574
+ "mathematical_operator"
9575
+ ],
9274
9576
  "a": [
9275
9577
  "articlePOS"
9276
9578
  ],
@@ -9465,6 +9767,14 @@
9465
9767
  "initHandlers": [
9466
9768
  ],
9467
9769
  "root": {
9770
+ "*": {
9771
+ },
9772
+ "+": {
9773
+ },
9774
+ "-": {
9775
+ },
9776
+ "/": {
9777
+ },
9468
9778
  "a": {
9469
9779
  },
9470
9780
  "accuracy": {
@@ -9527,6 +9837,8 @@
9527
9837
  },
9528
9838
  "luck": {
9529
9839
  },
9840
+ "mathematical_operator": {
9841
+ },
9530
9842
  "meat": {
9531
9843
  },
9532
9844
  "medicine": {
@@ -10338,6 +10650,8 @@
10338
10650
  "gdefaults": "gdefaults2",
10339
10651
  "help": "help2",
10340
10652
  "hierarchy": "hierarchy2",
10653
+ "math": "math2",
10654
+ "mathTemplate": "mathTemplate2",
10341
10655
  "meta": "meta2",
10342
10656
  "numbers": "numbers2",
10343
10657
  "pipboy": "pipboy1",
@@ -10371,6 +10685,10 @@
10371
10685
  },
10372
10686
  "hierarchy2": {
10373
10687
  },
10688
+ "math2": {
10689
+ },
10690
+ "mathTemplate2": {
10691
+ },
10374
10692
  "meta2": {
10375
10693
  },
10376
10694
  "numbers2": {
@@ -10447,6 +10765,12 @@
10447
10765
  "range",
10448
10766
  "accuracy"
10449
10767
  ],
10768
+ "mathematical_operator": [
10769
+ "*",
10770
+ "+",
10771
+ "/",
10772
+ "-"
10773
+ ],
10450
10774
  "notAble": [
10451
10775
  "unknown"
10452
10776
  ],
@@ -10558,6 +10882,11 @@
10558
10882
  "that",
10559
10883
  "orAble",
10560
10884
  "ifAble",
10885
+ "*",
10886
+ "mathematical_operator",
10887
+ "+",
10888
+ "/",
10889
+ "-",
10561
10890
  "pistol",
10562
10891
  "weapon",
10563
10892
  "rifle",
@@ -10596,6 +10925,18 @@
10596
10925
  "accuracy"
10597
10926
  ],
10598
10927
  "parents": {
10928
+ "*": [
10929
+ "mathematical_operator"
10930
+ ],
10931
+ "+": [
10932
+ "mathematical_operator"
10933
+ ],
10934
+ "-": [
10935
+ "mathematical_operator"
10936
+ ],
10937
+ "/": [
10938
+ "mathematical_operator"
10939
+ ],
10599
10940
  "a": [
10600
10941
  "articlePOS"
10601
10942
  ],
@@ -10790,6 +11131,14 @@
10790
11131
  "initHandlers": [
10791
11132
  ],
10792
11133
  "root": {
11134
+ "*": {
11135
+ },
11136
+ "+": {
11137
+ },
11138
+ "-": {
11139
+ },
11140
+ "/": {
11141
+ },
10793
11142
  "a": {
10794
11143
  },
10795
11144
  "accuracy": {
@@ -10852,6 +11201,8 @@
10852
11201
  },
10853
11202
  "luck": {
10854
11203
  },
11204
+ "mathematical_operator": {
11205
+ },
10855
11206
  "meat": {
10856
11207
  },
10857
11208
  "medicine": {
@@ -11620,6 +11971,8 @@
11620
11971
  "gdefaults": "gdefaults2",
11621
11972
  "help": "help2",
11622
11973
  "hierarchy": "hierarchy2",
11974
+ "math": "math2",
11975
+ "mathTemplate": "mathTemplate2",
11623
11976
  "meta": "meta2",
11624
11977
  "numbers": "numbers2",
11625
11978
  "pipboy": "pipboy1",
@@ -11653,6 +12006,10 @@
11653
12006
  },
11654
12007
  "hierarchy2": {
11655
12008
  },
12009
+ "math2": {
12010
+ },
12011
+ "mathTemplate2": {
12012
+ },
11656
12013
  "meta2": {
11657
12014
  },
11658
12015
  "numbers2": {
@@ -11729,6 +12086,12 @@
11729
12086
  "range",
11730
12087
  "accuracy"
11731
12088
  ],
12089
+ "mathematical_operator": [
12090
+ "*",
12091
+ "+",
12092
+ "/",
12093
+ "-"
12094
+ ],
11732
12095
  "notAble": [
11733
12096
  "unknown"
11734
12097
  ],
@@ -11840,6 +12203,11 @@
11840
12203
  "that",
11841
12204
  "orAble",
11842
12205
  "ifAble",
12206
+ "*",
12207
+ "mathematical_operator",
12208
+ "+",
12209
+ "/",
12210
+ "-",
11843
12211
  "pistol",
11844
12212
  "weapon",
11845
12213
  "rifle",
@@ -11878,6 +12246,18 @@
11878
12246
  "accuracy"
11879
12247
  ],
11880
12248
  "parents": {
12249
+ "*": [
12250
+ "mathematical_operator"
12251
+ ],
12252
+ "+": [
12253
+ "mathematical_operator"
12254
+ ],
12255
+ "-": [
12256
+ "mathematical_operator"
12257
+ ],
12258
+ "/": [
12259
+ "mathematical_operator"
12260
+ ],
11881
12261
  "a": [
11882
12262
  "articlePOS"
11883
12263
  ],
@@ -12072,6 +12452,14 @@
12072
12452
  "initHandlers": [
12073
12453
  ],
12074
12454
  "root": {
12455
+ "*": {
12456
+ },
12457
+ "+": {
12458
+ },
12459
+ "-": {
12460
+ },
12461
+ "/": {
12462
+ },
12075
12463
  "a": {
12076
12464
  },
12077
12465
  "accuracy": {
@@ -12134,6 +12522,8 @@
12134
12522
  },
12135
12523
  "luck": {
12136
12524
  },
12525
+ "mathematical_operator": {
12526
+ },
12137
12527
  "meat": {
12138
12528
  },
12139
12529
  "medicine": {
@@ -12903,6 +13293,8 @@
12903
13293
  "gdefaults": "gdefaults2",
12904
13294
  "help": "help2",
12905
13295
  "hierarchy": "hierarchy2",
13296
+ "math": "math2",
13297
+ "mathTemplate": "mathTemplate2",
12906
13298
  "meta": "meta2",
12907
13299
  "numbers": "numbers2",
12908
13300
  "pipboy": "pipboy1",
@@ -12936,6 +13328,10 @@
12936
13328
  },
12937
13329
  "hierarchy2": {
12938
13330
  },
13331
+ "math2": {
13332
+ },
13333
+ "mathTemplate2": {
13334
+ },
12939
13335
  "meta2": {
12940
13336
  },
12941
13337
  "numbers2": {
@@ -13012,6 +13408,12 @@
13012
13408
  "range",
13013
13409
  "accuracy"
13014
13410
  ],
13411
+ "mathematical_operator": [
13412
+ "*",
13413
+ "+",
13414
+ "/",
13415
+ "-"
13416
+ ],
13015
13417
  "notAble": [
13016
13418
  "unknown"
13017
13419
  ],
@@ -13123,6 +13525,11 @@
13123
13525
  "that",
13124
13526
  "orAble",
13125
13527
  "ifAble",
13528
+ "*",
13529
+ "mathematical_operator",
13530
+ "+",
13531
+ "/",
13532
+ "-",
13126
13533
  "pistol",
13127
13534
  "weapon",
13128
13535
  "rifle",
@@ -13161,6 +13568,18 @@
13161
13568
  "accuracy"
13162
13569
  ],
13163
13570
  "parents": {
13571
+ "*": [
13572
+ "mathematical_operator"
13573
+ ],
13574
+ "+": [
13575
+ "mathematical_operator"
13576
+ ],
13577
+ "-": [
13578
+ "mathematical_operator"
13579
+ ],
13580
+ "/": [
13581
+ "mathematical_operator"
13582
+ ],
13164
13583
  "a": [
13165
13584
  "articlePOS"
13166
13585
  ],
@@ -13355,6 +13774,14 @@
13355
13774
  "initHandlers": [
13356
13775
  ],
13357
13776
  "root": {
13777
+ "*": {
13778
+ },
13779
+ "+": {
13780
+ },
13781
+ "-": {
13782
+ },
13783
+ "/": {
13784
+ },
13358
13785
  "a": {
13359
13786
  },
13360
13787
  "accuracy": {
@@ -13417,6 +13844,8 @@
13417
13844
  },
13418
13845
  "luck": {
13419
13846
  },
13847
+ "mathematical_operator": {
13848
+ },
13420
13849
  "meat": {
13421
13850
  },
13422
13851
  "medicine": {
@@ -14185,6 +14614,8 @@
14185
14614
  "gdefaults": "gdefaults2",
14186
14615
  "help": "help2",
14187
14616
  "hierarchy": "hierarchy2",
14617
+ "math": "math2",
14618
+ "mathTemplate": "mathTemplate2",
14188
14619
  "meta": "meta2",
14189
14620
  "numbers": "numbers2",
14190
14621
  "pipboy": "pipboy1",
@@ -14218,6 +14649,10 @@
14218
14649
  },
14219
14650
  "hierarchy2": {
14220
14651
  },
14652
+ "math2": {
14653
+ },
14654
+ "mathTemplate2": {
14655
+ },
14221
14656
  "meta2": {
14222
14657
  },
14223
14658
  "numbers2": {
@@ -14294,6 +14729,12 @@
14294
14729
  "range",
14295
14730
  "accuracy"
14296
14731
  ],
14732
+ "mathematical_operator": [
14733
+ "*",
14734
+ "+",
14735
+ "/",
14736
+ "-"
14737
+ ],
14297
14738
  "notAble": [
14298
14739
  "unknown"
14299
14740
  ],
@@ -14405,6 +14846,11 @@
14405
14846
  "that",
14406
14847
  "orAble",
14407
14848
  "ifAble",
14849
+ "*",
14850
+ "mathematical_operator",
14851
+ "+",
14852
+ "/",
14853
+ "-",
14408
14854
  "pistol",
14409
14855
  "weapon",
14410
14856
  "rifle",
@@ -14443,6 +14889,18 @@
14443
14889
  "accuracy"
14444
14890
  ],
14445
14891
  "parents": {
14892
+ "*": [
14893
+ "mathematical_operator"
14894
+ ],
14895
+ "+": [
14896
+ "mathematical_operator"
14897
+ ],
14898
+ "-": [
14899
+ "mathematical_operator"
14900
+ ],
14901
+ "/": [
14902
+ "mathematical_operator"
14903
+ ],
14446
14904
  "a": [
14447
14905
  "articlePOS"
14448
14906
  ],
@@ -14637,6 +15095,14 @@
14637
15095
  "initHandlers": [
14638
15096
  ],
14639
15097
  "root": {
15098
+ "*": {
15099
+ },
15100
+ "+": {
15101
+ },
15102
+ "-": {
15103
+ },
15104
+ "/": {
15105
+ },
14640
15106
  "a": {
14641
15107
  },
14642
15108
  "accuracy": {
@@ -14699,6 +15165,8 @@
14699
15165
  },
14700
15166
  "luck": {
14701
15167
  },
15168
+ "mathematical_operator": {
15169
+ },
14702
15170
  "meat": {
14703
15171
  },
14704
15172
  "medicine": {
@@ -15468,6 +15936,8 @@
15468
15936
  "gdefaults": "gdefaults2",
15469
15937
  "help": "help2",
15470
15938
  "hierarchy": "hierarchy2",
15939
+ "math": "math2",
15940
+ "mathTemplate": "mathTemplate2",
15471
15941
  "meta": "meta2",
15472
15942
  "numbers": "numbers2",
15473
15943
  "pipboy": "pipboy1",
@@ -15501,6 +15971,10 @@
15501
15971
  },
15502
15972
  "hierarchy2": {
15503
15973
  },
15974
+ "math2": {
15975
+ },
15976
+ "mathTemplate2": {
15977
+ },
15504
15978
  "meta2": {
15505
15979
  },
15506
15980
  "numbers2": {
@@ -15577,6 +16051,12 @@
15577
16051
  "range",
15578
16052
  "accuracy"
15579
16053
  ],
16054
+ "mathematical_operator": [
16055
+ "*",
16056
+ "+",
16057
+ "/",
16058
+ "-"
16059
+ ],
15580
16060
  "notAble": [
15581
16061
  "unknown"
15582
16062
  ],
@@ -15688,6 +16168,11 @@
15688
16168
  "that",
15689
16169
  "orAble",
15690
16170
  "ifAble",
16171
+ "*",
16172
+ "mathematical_operator",
16173
+ "+",
16174
+ "/",
16175
+ "-",
15691
16176
  "pistol",
15692
16177
  "weapon",
15693
16178
  "rifle",
@@ -15726,6 +16211,18 @@
15726
16211
  "accuracy"
15727
16212
  ],
15728
16213
  "parents": {
16214
+ "*": [
16215
+ "mathematical_operator"
16216
+ ],
16217
+ "+": [
16218
+ "mathematical_operator"
16219
+ ],
16220
+ "-": [
16221
+ "mathematical_operator"
16222
+ ],
16223
+ "/": [
16224
+ "mathematical_operator"
16225
+ ],
15729
16226
  "a": [
15730
16227
  "articlePOS"
15731
16228
  ],
@@ -15920,6 +16417,14 @@
15920
16417
  "initHandlers": [
15921
16418
  ],
15922
16419
  "root": {
16420
+ "*": {
16421
+ },
16422
+ "+": {
16423
+ },
16424
+ "-": {
16425
+ },
16426
+ "/": {
16427
+ },
15923
16428
  "a": {
15924
16429
  },
15925
16430
  "accuracy": {
@@ -15982,6 +16487,8 @@
15982
16487
  },
15983
16488
  "luck": {
15984
16489
  },
16490
+ "mathematical_operator": {
16491
+ },
15985
16492
  "meat": {
15986
16493
  },
15987
16494
  "medicine": {
@@ -16750,10 +17257,6 @@
16750
17257
  "outfit",
16751
17258
  0
16752
17259
  ],
16753
- [
16754
- "the",
16755
- 0
16756
- ],
16757
17260
  [
16758
17261
  "unknown",
16759
17262
  0
@@ -16797,6 +17300,8 @@
16797
17300
  "gdefaults": "gdefaults2",
16798
17301
  "help": "help2",
16799
17302
  "hierarchy": "hierarchy2",
17303
+ "math": "math2",
17304
+ "mathTemplate": "mathTemplate2",
16800
17305
  "meta": "meta2",
16801
17306
  "numbers": "numbers2",
16802
17307
  "pipboy": "pipboy1",
@@ -16830,6 +17335,10 @@
16830
17335
  },
16831
17336
  "hierarchy2": {
16832
17337
  },
17338
+ "math2": {
17339
+ },
17340
+ "mathTemplate2": {
17341
+ },
16833
17342
  "meta2": {
16834
17343
  },
16835
17344
  "numbers2": {
@@ -16905,6 +17414,12 @@
16905
17414
  "range",
16906
17415
  "accuracy"
16907
17416
  ],
17417
+ "mathematical_operator": [
17418
+ "*",
17419
+ "+",
17420
+ "/",
17421
+ "-"
17422
+ ],
16908
17423
  "notAble": [
16909
17424
  "unknown"
16910
17425
  ],
@@ -17016,6 +17531,11 @@
17016
17531
  "that",
17017
17532
  "orAble",
17018
17533
  "ifAble",
17534
+ "*",
17535
+ "mathematical_operator",
17536
+ "+",
17537
+ "/",
17538
+ "-",
17019
17539
  "pistol",
17020
17540
  "weapon",
17021
17541
  "rifle",
@@ -17054,6 +17574,18 @@
17054
17574
  "accuracy"
17055
17575
  ],
17056
17576
  "parents": {
17577
+ "*": [
17578
+ "mathematical_operator"
17579
+ ],
17580
+ "+": [
17581
+ "mathematical_operator"
17582
+ ],
17583
+ "-": [
17584
+ "mathematical_operator"
17585
+ ],
17586
+ "/": [
17587
+ "mathematical_operator"
17588
+ ],
17057
17589
  "a": [
17058
17590
  "articlePOS"
17059
17591
  ],
@@ -17248,6 +17780,14 @@
17248
17780
  "initHandlers": [
17249
17781
  ],
17250
17782
  "root": {
17783
+ "*": {
17784
+ },
17785
+ "+": {
17786
+ },
17787
+ "-": {
17788
+ },
17789
+ "/": {
17790
+ },
17251
17791
  "a": {
17252
17792
  },
17253
17793
  "accuracy": {
@@ -17310,6 +17850,8 @@
17310
17850
  },
17311
17851
  "luck": {
17312
17852
  },
17853
+ "mathematical_operator": {
17854
+ },
17313
17855
  "meat": {
17314
17856
  },
17315
17857
  "medicine": {
@@ -18116,10 +18658,6 @@
18116
18658
  "outfit",
18117
18659
  0
18118
18660
  ],
18119
- [
18120
- "the",
18121
- 0
18122
- ],
18123
18661
  [
18124
18662
  "unknown",
18125
18663
  0
@@ -18188,6 +18726,8 @@
18188
18726
  "gdefaults": "gdefaults2",
18189
18727
  "help": "help2",
18190
18728
  "hierarchy": "hierarchy2",
18729
+ "math": "math2",
18730
+ "mathTemplate": "mathTemplate2",
18191
18731
  "meta": "meta2",
18192
18732
  "numbers": "numbers2",
18193
18733
  "pipboy": "pipboy1",
@@ -18221,6 +18761,10 @@
18221
18761
  },
18222
18762
  "hierarchy2": {
18223
18763
  },
18764
+ "math2": {
18765
+ },
18766
+ "mathTemplate2": {
18767
+ },
18224
18768
  "meta2": {
18225
18769
  },
18226
18770
  "numbers2": {
@@ -18300,6 +18844,12 @@
18300
18844
  "range",
18301
18845
  "accuracy"
18302
18846
  ],
18847
+ "mathematical_operator": [
18848
+ "*",
18849
+ "+",
18850
+ "/",
18851
+ "-"
18852
+ ],
18303
18853
  "notAble": [
18304
18854
  "unknown"
18305
18855
  ],
@@ -18411,6 +18961,11 @@
18411
18961
  "that",
18412
18962
  "orAble",
18413
18963
  "ifAble",
18964
+ "*",
18965
+ "mathematical_operator",
18966
+ "+",
18967
+ "/",
18968
+ "-",
18414
18969
  "pistol",
18415
18970
  "weapon",
18416
18971
  "rifle",
@@ -18449,6 +19004,18 @@
18449
19004
  "accuracy"
18450
19005
  ],
18451
19006
  "parents": {
19007
+ "*": [
19008
+ "mathematical_operator"
19009
+ ],
19010
+ "+": [
19011
+ "mathematical_operator"
19012
+ ],
19013
+ "-": [
19014
+ "mathematical_operator"
19015
+ ],
19016
+ "/": [
19017
+ "mathematical_operator"
19018
+ ],
18452
19019
  "a": [
18453
19020
  "articlePOS"
18454
19021
  ],
@@ -18643,6 +19210,14 @@
18643
19210
  "initHandlers": [
18644
19211
  ],
18645
19212
  "root": {
19213
+ "*": {
19214
+ },
19215
+ "+": {
19216
+ },
19217
+ "-": {
19218
+ },
19219
+ "/": {
19220
+ },
18646
19221
  "a": {
18647
19222
  },
18648
19223
  "accuracy": {
@@ -18705,6 +19280,8 @@
18705
19280
  },
18706
19281
  "luck": {
18707
19282
  },
19283
+ "mathematical_operator": {
19284
+ },
18708
19285
  "meat": {
18709
19286
  },
18710
19287
  "medicine": {
@@ -19569,10 +20146,6 @@
19569
20146
  "outfit",
19570
20147
  0
19571
20148
  ],
19572
- [
19573
- "the",
19574
- 0
19575
- ],
19576
20149
  [
19577
20150
  "this",
19578
20151
  0
@@ -19662,6 +20235,8 @@
19662
20235
  "gdefaults": "gdefaults2",
19663
20236
  "help": "help2",
19664
20237
  "hierarchy": "hierarchy2",
20238
+ "math": "math2",
20239
+ "mathTemplate": "mathTemplate2",
19665
20240
  "meta": "meta2",
19666
20241
  "numbers": "numbers2",
19667
20242
  "pipboy": "pipboy1",
@@ -19695,6 +20270,10 @@
19695
20270
  },
19696
20271
  "hierarchy2": {
19697
20272
  },
20273
+ "math2": {
20274
+ },
20275
+ "mathTemplate2": {
20276
+ },
19698
20277
  "meta2": {
19699
20278
  },
19700
20279
  "numbers2": {
@@ -19791,6 +20370,12 @@
19791
20370
  "range",
19792
20371
  "accuracy"
19793
20372
  ],
20373
+ "mathematical_operator": [
20374
+ "*",
20375
+ "+",
20376
+ "/",
20377
+ "-"
20378
+ ],
19794
20379
  "notAble": [
19795
20380
  "unknown"
19796
20381
  ],
@@ -19902,6 +20487,11 @@
19902
20487
  "that",
19903
20488
  "orAble",
19904
20489
  "ifAble",
20490
+ "*",
20491
+ "mathematical_operator",
20492
+ "+",
20493
+ "/",
20494
+ "-",
19905
20495
  "pistol",
19906
20496
  "weapon",
19907
20497
  "rifle",
@@ -19940,6 +20530,18 @@
19940
20530
  "accuracy"
19941
20531
  ],
19942
20532
  "parents": {
20533
+ "*": [
20534
+ "mathematical_operator"
20535
+ ],
20536
+ "+": [
20537
+ "mathematical_operator"
20538
+ ],
20539
+ "-": [
20540
+ "mathematical_operator"
20541
+ ],
20542
+ "/": [
20543
+ "mathematical_operator"
20544
+ ],
19943
20545
  "a": [
19944
20546
  "articlePOS"
19945
20547
  ],
@@ -20134,6 +20736,14 @@
20134
20736
  "initHandlers": [
20135
20737
  ],
20136
20738
  "root": {
20739
+ "*": {
20740
+ },
20741
+ "+": {
20742
+ },
20743
+ "-": {
20744
+ },
20745
+ "/": {
20746
+ },
20137
20747
  "a": {
20138
20748
  },
20139
20749
  "accuracy": {
@@ -20196,6 +20806,8 @@
20196
20806
  },
20197
20807
  "luck": {
20198
20808
  },
20809
+ "mathematical_operator": {
20810
+ },
20199
20811
  "meat": {
20200
20812
  },
20201
20813
  "medicine": {
@@ -21055,6 +21667,8 @@
21055
21667
  "gdefaults": "gdefaults2",
21056
21668
  "help": "help2",
21057
21669
  "hierarchy": "hierarchy2",
21670
+ "math": "math2",
21671
+ "mathTemplate": "mathTemplate2",
21058
21672
  "meta": "meta2",
21059
21673
  "numbers": "numbers2",
21060
21674
  "pipboy": "pipboy1",
@@ -21088,6 +21702,10 @@
21088
21702
  },
21089
21703
  "hierarchy2": {
21090
21704
  },
21705
+ "math2": {
21706
+ },
21707
+ "mathTemplate2": {
21708
+ },
21091
21709
  "meta2": {
21092
21710
  },
21093
21711
  "numbers2": {
@@ -21167,6 +21785,12 @@
21167
21785
  "range",
21168
21786
  "accuracy"
21169
21787
  ],
21788
+ "mathematical_operator": [
21789
+ "*",
21790
+ "+",
21791
+ "/",
21792
+ "-"
21793
+ ],
21170
21794
  "notAble": [
21171
21795
  "unknown"
21172
21796
  ],
@@ -21278,6 +21902,11 @@
21278
21902
  "that",
21279
21903
  "orAble",
21280
21904
  "ifAble",
21905
+ "*",
21906
+ "mathematical_operator",
21907
+ "+",
21908
+ "/",
21909
+ "-",
21281
21910
  "pistol",
21282
21911
  "weapon",
21283
21912
  "rifle",
@@ -21316,6 +21945,18 @@
21316
21945
  "accuracy"
21317
21946
  ],
21318
21947
  "parents": {
21948
+ "*": [
21949
+ "mathematical_operator"
21950
+ ],
21951
+ "+": [
21952
+ "mathematical_operator"
21953
+ ],
21954
+ "-": [
21955
+ "mathematical_operator"
21956
+ ],
21957
+ "/": [
21958
+ "mathematical_operator"
21959
+ ],
21319
21960
  "a": [
21320
21961
  "articlePOS"
21321
21962
  ],
@@ -21510,6 +22151,14 @@
21510
22151
  "initHandlers": [
21511
22152
  ],
21512
22153
  "root": {
22154
+ "*": {
22155
+ },
22156
+ "+": {
22157
+ },
22158
+ "-": {
22159
+ },
22160
+ "/": {
22161
+ },
21513
22162
  "a": {
21514
22163
  },
21515
22164
  "accuracy": {
@@ -21572,6 +22221,8 @@
21572
22221
  },
21573
22222
  "luck": {
21574
22223
  },
22224
+ "mathematical_operator": {
22225
+ },
21575
22226
  "meat": {
21576
22227
  },
21577
22228
  "medicine": {
@@ -22296,6 +22947,7 @@
22296
22947
  "default": true,
22297
22948
  "item": {
22298
22949
  "dead": true,
22950
+ "instance": true,
22299
22951
  "level": 1,
22300
22952
  "marker": "stimpak",
22301
22953
  "modifiers": [
@@ -22436,6 +23088,8 @@
22436
23088
  "gdefaults": "gdefaults2",
22437
23089
  "help": "help2",
22438
23090
  "hierarchy": "hierarchy2",
23091
+ "math": "math2",
23092
+ "mathTemplate": "mathTemplate2",
22439
23093
  "meta": "meta2",
22440
23094
  "numbers": "numbers2",
22441
23095
  "pipboy": "pipboy1",
@@ -22469,6 +23123,10 @@
22469
23123
  },
22470
23124
  "hierarchy2": {
22471
23125
  },
23126
+ "math2": {
23127
+ },
23128
+ "mathTemplate2": {
23129
+ },
22472
23130
  "meta2": {
22473
23131
  },
22474
23132
  "numbers2": {
@@ -22548,6 +23206,12 @@
22548
23206
  "range",
22549
23207
  "accuracy"
22550
23208
  ],
23209
+ "mathematical_operator": [
23210
+ "*",
23211
+ "+",
23212
+ "/",
23213
+ "-"
23214
+ ],
22551
23215
  "notAble": [
22552
23216
  "unknown"
22553
23217
  ],
@@ -22659,6 +23323,11 @@
22659
23323
  "that",
22660
23324
  "orAble",
22661
23325
  "ifAble",
23326
+ "*",
23327
+ "mathematical_operator",
23328
+ "+",
23329
+ "/",
23330
+ "-",
22662
23331
  "pistol",
22663
23332
  "weapon",
22664
23333
  "rifle",
@@ -22697,6 +23366,18 @@
22697
23366
  "accuracy"
22698
23367
  ],
22699
23368
  "parents": {
23369
+ "*": [
23370
+ "mathematical_operator"
23371
+ ],
23372
+ "+": [
23373
+ "mathematical_operator"
23374
+ ],
23375
+ "-": [
23376
+ "mathematical_operator"
23377
+ ],
23378
+ "/": [
23379
+ "mathematical_operator"
23380
+ ],
22700
23381
  "a": [
22701
23382
  "articlePOS"
22702
23383
  ],
@@ -22891,6 +23572,14 @@
22891
23572
  "initHandlers": [
22892
23573
  ],
22893
23574
  "root": {
23575
+ "*": {
23576
+ },
23577
+ "+": {
23578
+ },
23579
+ "-": {
23580
+ },
23581
+ "/": {
23582
+ },
22894
23583
  "a": {
22895
23584
  },
22896
23585
  "accuracy": {
@@ -22953,6 +23642,8 @@
22953
23642
  },
22954
23643
  "luck": {
22955
23644
  },
23645
+ "mathematical_operator": {
23646
+ },
22956
23647
  "meat": {
22957
23648
  },
22958
23649
  "medicine": {
@@ -23062,6 +23753,7 @@
23062
23753
  "default": true,
23063
23754
  "item": {
23064
23755
  "dead": true,
23756
+ "instance": true,
23065
23757
  "level": 1,
23066
23758
  "marker": "stimpak",
23067
23759
  "modifiers": [
@@ -23679,6 +24371,7 @@
23679
24371
  "default": true,
23680
24372
  "item": {
23681
24373
  "dead": true,
24374
+ "instance": true,
23682
24375
  "level": 1,
23683
24376
  "marker": "stimpak",
23684
24377
  "modifiers": [
@@ -23727,6 +24420,7 @@
23727
24420
  "word": "apply"
23728
24421
  }
23729
24422
  ],
24423
+ "developerTest": false,
23730
24424
  "generatedParenthesized": [
23731
24425
  ""
23732
24426
  ],
@@ -23819,6 +24513,8 @@
23819
24513
  "gdefaults": "gdefaults2",
23820
24514
  "help": "help2",
23821
24515
  "hierarchy": "hierarchy2",
24516
+ "math": "math2",
24517
+ "mathTemplate": "mathTemplate2",
23822
24518
  "meta": "meta2",
23823
24519
  "numbers": "numbers2",
23824
24520
  "pipboy": "pipboy1",
@@ -23852,6 +24548,10 @@
23852
24548
  },
23853
24549
  "hierarchy2": {
23854
24550
  },
24551
+ "math2": {
24552
+ },
24553
+ "mathTemplate2": {
24554
+ },
23855
24555
  "meta2": {
23856
24556
  },
23857
24557
  "numbers2": {
@@ -23931,6 +24631,12 @@
23931
24631
  "range",
23932
24632
  "accuracy"
23933
24633
  ],
24634
+ "mathematical_operator": [
24635
+ "*",
24636
+ "+",
24637
+ "/",
24638
+ "-"
24639
+ ],
23934
24640
  "notAble": [
23935
24641
  "unknown"
23936
24642
  ],
@@ -23962,7 +24668,8 @@
23962
24668
  "whatAble",
23963
24669
  "this",
23964
24670
  "thisitthat",
23965
- "reason"
24671
+ "reason",
24672
+ "number"
23966
24673
  ],
23967
24674
  "takeable": [
23968
24675
  "medicine",
@@ -24042,6 +24749,12 @@
24042
24749
  "that",
24043
24750
  "orAble",
24044
24751
  "ifAble",
24752
+ "number",
24753
+ "*",
24754
+ "mathematical_operator",
24755
+ "+",
24756
+ "/",
24757
+ "-",
24045
24758
  "pistol",
24046
24759
  "weapon",
24047
24760
  "rifle",
@@ -24080,6 +24793,18 @@
24080
24793
  "accuracy"
24081
24794
  ],
24082
24795
  "parents": {
24796
+ "*": [
24797
+ "mathematical_operator"
24798
+ ],
24799
+ "+": [
24800
+ "mathematical_operator"
24801
+ ],
24802
+ "-": [
24803
+ "mathematical_operator"
24804
+ ],
24805
+ "/": [
24806
+ "mathematical_operator"
24807
+ ],
24083
24808
  "a": [
24084
24809
  "articlePOS"
24085
24810
  ],
@@ -24175,6 +24900,9 @@
24175
24900
  "noun": [
24176
24901
  "theAble"
24177
24902
  ],
24903
+ "number": [
24904
+ "queryable"
24905
+ ],
24178
24906
  "object": [
24179
24907
  "queryable",
24180
24908
  "theAble"
@@ -24274,6 +25002,14 @@
24274
25002
  "initHandlers": [
24275
25003
  ],
24276
25004
  "root": {
25005
+ "*": {
25006
+ },
25007
+ "+": {
25008
+ },
25009
+ "-": {
25010
+ },
25011
+ "/": {
25012
+ },
24277
25013
  "a": {
24278
25014
  },
24279
25015
  "accuracy": {
@@ -24336,6 +25072,8 @@
24336
25072
  },
24337
25073
  "luck": {
24338
25074
  },
25075
+ "mathematical_operator": {
25076
+ },
24339
25077
  "meat": {
24340
25078
  },
24341
25079
  "medicine": {
@@ -24348,6 +25086,8 @@
24348
25086
  },
24349
25087
  "noun": {
24350
25088
  },
25089
+ "number": {
25090
+ },
24351
25091
  "object": {
24352
25092
  },
24353
25093
  "orAble": {
@@ -24445,6 +25185,7 @@
24445
25185
  "default": true,
24446
25186
  "item": {
24447
25187
  "dead": true,
25188
+ "instance": true,
24448
25189
  "level": 1,
24449
25190
  "marker": "stimpak",
24450
25191
  "modifiers": [
@@ -24493,8 +25234,8 @@
24493
25234
  "word": "apply"
24494
25235
  },
24495
25236
  "generatedParenthesized": "",
24496
- "paraphrases": "apply 4 stimpacks",
24497
- "paraphrasesParenthesized": "(apply ((4) (stimpacks)))",
25237
+ "paraphrases": "apply four stimpacks",
25238
+ "paraphrasesParenthesized": "(apply ((four) (stimpacks)))",
24498
25239
  "responses": [
24499
25240
  ""
24500
25241
  ]
@@ -25017,10 +25758,10 @@
25017
25758
  ]
25018
25759
  },
25019
25760
  "paraphrases": [
25020
- "apply 4 stimpacks"
25761
+ "apply four stimpacks"
25021
25762
  ],
25022
25763
  "paraphrasesParenthesized": [
25023
- "(apply ((4) (stimpacks)))"
25764
+ "(apply ((four) (stimpacks)))"
25024
25765
  ],
25025
25766
  "query": "apply four stimpacks",
25026
25767
  "responses": [
@@ -25217,10 +25958,6 @@
25217
25958
  "outfit",
25218
25959
  0
25219
25960
  ],
25220
- [
25221
- "the",
25222
- 0
25223
- ],
25224
25961
  [
25225
25962
  "this",
25226
25963
  0
@@ -25335,6 +26072,8 @@
25335
26072
  "gdefaults": "gdefaults2",
25336
26073
  "help": "help2",
25337
26074
  "hierarchy": "hierarchy2",
26075
+ "math": "math2",
26076
+ "mathTemplate": "mathTemplate2",
25338
26077
  "meta": "meta2",
25339
26078
  "numbers": "numbers2",
25340
26079
  "pipboy": "pipboy1",
@@ -25368,6 +26107,10 @@
25368
26107
  },
25369
26108
  "hierarchy2": {
25370
26109
  },
26110
+ "math2": {
26111
+ },
26112
+ "mathTemplate2": {
26113
+ },
25371
26114
  "meta2": {
25372
26115
  },
25373
26116
  "numbers2": {
@@ -25479,6 +26222,12 @@
25479
26222
  "range",
25480
26223
  "accuracy"
25481
26224
  ],
26225
+ "mathematical_operator": [
26226
+ "*",
26227
+ "+",
26228
+ "/",
26229
+ "-"
26230
+ ],
25482
26231
  "notAble": [
25483
26232
  "unknown"
25484
26233
  ],
@@ -25590,6 +26339,11 @@
25590
26339
  "that",
25591
26340
  "orAble",
25592
26341
  "ifAble",
26342
+ "*",
26343
+ "mathematical_operator",
26344
+ "+",
26345
+ "/",
26346
+ "-",
25593
26347
  "pistol",
25594
26348
  "weapon",
25595
26349
  "rifle",
@@ -25628,6 +26382,18 @@
25628
26382
  "accuracy"
25629
26383
  ],
25630
26384
  "parents": {
26385
+ "*": [
26386
+ "mathematical_operator"
26387
+ ],
26388
+ "+": [
26389
+ "mathematical_operator"
26390
+ ],
26391
+ "-": [
26392
+ "mathematical_operator"
26393
+ ],
26394
+ "/": [
26395
+ "mathematical_operator"
26396
+ ],
25631
26397
  "a": [
25632
26398
  "articlePOS"
25633
26399
  ],
@@ -25822,6 +26588,14 @@
25822
26588
  "initHandlers": [
25823
26589
  ],
25824
26590
  "root": {
26591
+ "*": {
26592
+ },
26593
+ "+": {
26594
+ },
26595
+ "-": {
26596
+ },
26597
+ "/": {
26598
+ },
25825
26599
  "a": {
25826
26600
  },
25827
26601
  "accuracy": {
@@ -25884,6 +26658,8 @@
25884
26658
  },
25885
26659
  "luck": {
25886
26660
  },
26661
+ "mathematical_operator": {
26662
+ },
25887
26663
  "meat": {
25888
26664
  },
25889
26665
  "medicine": {
@@ -26663,6 +27439,8 @@
26663
27439
  "gdefaults": "gdefaults2",
26664
27440
  "help": "help2",
26665
27441
  "hierarchy": "hierarchy2",
27442
+ "math": "math2",
27443
+ "mathTemplate": "mathTemplate2",
26666
27444
  "meta": "meta2",
26667
27445
  "numbers": "numbers2",
26668
27446
  "pipboy": "pipboy1",
@@ -26696,6 +27474,10 @@
26696
27474
  },
26697
27475
  "hierarchy2": {
26698
27476
  },
27477
+ "math2": {
27478
+ },
27479
+ "mathTemplate2": {
27480
+ },
26699
27481
  "meta2": {
26700
27482
  },
26701
27483
  "numbers2": {
@@ -26772,6 +27554,12 @@
26772
27554
  "range",
26773
27555
  "accuracy"
26774
27556
  ],
27557
+ "mathematical_operator": [
27558
+ "*",
27559
+ "+",
27560
+ "/",
27561
+ "-"
27562
+ ],
26775
27563
  "notAble": [
26776
27564
  "unknown"
26777
27565
  ],
@@ -26883,6 +27671,11 @@
26883
27671
  "that",
26884
27672
  "orAble",
26885
27673
  "ifAble",
27674
+ "*",
27675
+ "mathematical_operator",
27676
+ "+",
27677
+ "/",
27678
+ "-",
26886
27679
  "pistol",
26887
27680
  "weapon",
26888
27681
  "rifle",
@@ -26921,6 +27714,18 @@
26921
27714
  "accuracy"
26922
27715
  ],
26923
27716
  "parents": {
27717
+ "*": [
27718
+ "mathematical_operator"
27719
+ ],
27720
+ "+": [
27721
+ "mathematical_operator"
27722
+ ],
27723
+ "-": [
27724
+ "mathematical_operator"
27725
+ ],
27726
+ "/": [
27727
+ "mathematical_operator"
27728
+ ],
26924
27729
  "a": [
26925
27730
  "articlePOS"
26926
27731
  ],
@@ -27115,6 +27920,14 @@
27115
27920
  "initHandlers": [
27116
27921
  ],
27117
27922
  "root": {
27923
+ "*": {
27924
+ },
27925
+ "+": {
27926
+ },
27927
+ "-": {
27928
+ },
27929
+ "/": {
27930
+ },
27118
27931
  "a": {
27119
27932
  },
27120
27933
  "accuracy": {
@@ -27177,6 +27990,8 @@
27177
27990
  },
27178
27991
  "luck": {
27179
27992
  },
27993
+ "mathematical_operator": {
27994
+ },
27180
27995
  "meat": {
27181
27996
  },
27182
27997
  "medicine": {
@@ -27886,6 +28701,8 @@
27886
28701
  "gdefaults": "gdefaults2",
27887
28702
  "help": "help2",
27888
28703
  "hierarchy": "hierarchy2",
28704
+ "math": "math2",
28705
+ "mathTemplate": "mathTemplate2",
27889
28706
  "meta": "meta2",
27890
28707
  "numbers": "numbers2",
27891
28708
  "pipboy": "pipboy1",
@@ -27919,6 +28736,10 @@
27919
28736
  },
27920
28737
  "hierarchy2": {
27921
28738
  },
28739
+ "math2": {
28740
+ },
28741
+ "mathTemplate2": {
28742
+ },
27922
28743
  "meta2": {
27923
28744
  },
27924
28745
  "numbers2": {
@@ -27995,6 +28816,12 @@
27995
28816
  "range",
27996
28817
  "accuracy"
27997
28818
  ],
28819
+ "mathematical_operator": [
28820
+ "*",
28821
+ "+",
28822
+ "/",
28823
+ "-"
28824
+ ],
27998
28825
  "notAble": [
27999
28826
  "unknown"
28000
28827
  ],
@@ -28106,6 +28933,11 @@
28106
28933
  "that",
28107
28934
  "orAble",
28108
28935
  "ifAble",
28936
+ "*",
28937
+ "mathematical_operator",
28938
+ "+",
28939
+ "/",
28940
+ "-",
28109
28941
  "pistol",
28110
28942
  "weapon",
28111
28943
  "rifle",
@@ -28144,6 +28976,18 @@
28144
28976
  "accuracy"
28145
28977
  ],
28146
28978
  "parents": {
28979
+ "*": [
28980
+ "mathematical_operator"
28981
+ ],
28982
+ "+": [
28983
+ "mathematical_operator"
28984
+ ],
28985
+ "-": [
28986
+ "mathematical_operator"
28987
+ ],
28988
+ "/": [
28989
+ "mathematical_operator"
28990
+ ],
28147
28991
  "a": [
28148
28992
  "articlePOS"
28149
28993
  ],
@@ -28338,6 +29182,14 @@
28338
29182
  "initHandlers": [
28339
29183
  ],
28340
29184
  "root": {
29185
+ "*": {
29186
+ },
29187
+ "+": {
29188
+ },
29189
+ "-": {
29190
+ },
29191
+ "/": {
29192
+ },
28341
29193
  "a": {
28342
29194
  },
28343
29195
  "accuracy": {
@@ -28400,6 +29252,8 @@
28400
29252
  },
28401
29253
  "luck": {
28402
29254
  },
29255
+ "mathematical_operator": {
29256
+ },
28403
29257
  "meat": {
28404
29258
  },
28405
29259
  "medicine": {
@@ -29213,10 +30067,6 @@
29213
30067
  "put",
29214
30068
  0
29215
30069
  ],
29216
- [
29217
- "the",
29218
- 0
29219
- ],
29220
30070
  [
29221
30071
  "unknown",
29222
30072
  0
@@ -29319,6 +30169,8 @@
29319
30169
  "gdefaults": "gdefaults2",
29320
30170
  "help": "help2",
29321
30171
  "hierarchy": "hierarchy2",
30172
+ "math": "math2",
30173
+ "mathTemplate": "mathTemplate2",
29322
30174
  "meta": "meta2",
29323
30175
  "numbers": "numbers2",
29324
30176
  "pipboy": "pipboy1",
@@ -29352,6 +30204,10 @@
29352
30204
  },
29353
30205
  "hierarchy2": {
29354
30206
  },
30207
+ "math2": {
30208
+ },
30209
+ "mathTemplate2": {
30210
+ },
29355
30211
  "meta2": {
29356
30212
  },
29357
30213
  "numbers2": {
@@ -29431,6 +30287,12 @@
29431
30287
  "range",
29432
30288
  "accuracy"
29433
30289
  ],
30290
+ "mathematical_operator": [
30291
+ "*",
30292
+ "+",
30293
+ "/",
30294
+ "-"
30295
+ ],
29434
30296
  "notAble": [
29435
30297
  "unknown"
29436
30298
  ],
@@ -29542,6 +30404,11 @@
29542
30404
  "that",
29543
30405
  "orAble",
29544
30406
  "ifAble",
30407
+ "*",
30408
+ "mathematical_operator",
30409
+ "+",
30410
+ "/",
30411
+ "-",
29545
30412
  "pistol",
29546
30413
  "weapon",
29547
30414
  "rifle",
@@ -29580,6 +30447,18 @@
29580
30447
  "accuracy"
29581
30448
  ],
29582
30449
  "parents": {
30450
+ "*": [
30451
+ "mathematical_operator"
30452
+ ],
30453
+ "+": [
30454
+ "mathematical_operator"
30455
+ ],
30456
+ "-": [
30457
+ "mathematical_operator"
30458
+ ],
30459
+ "/": [
30460
+ "mathematical_operator"
30461
+ ],
29583
30462
  "a": [
29584
30463
  "articlePOS"
29585
30464
  ],
@@ -29774,6 +30653,14 @@
29774
30653
  "initHandlers": [
29775
30654
  ],
29776
30655
  "root": {
30656
+ "*": {
30657
+ },
30658
+ "+": {
30659
+ },
30660
+ "-": {
30661
+ },
30662
+ "/": {
30663
+ },
29777
30664
  "a": {
29778
30665
  },
29779
30666
  "accuracy": {
@@ -29836,6 +30723,8 @@
29836
30723
  },
29837
30724
  "luck": {
29838
30725
  },
30726
+ "mathematical_operator": {
30727
+ },
29839
30728
  "meat": {
29840
30729
  },
29841
30730
  "medicine": {
@@ -30681,6 +31570,8 @@
30681
31570
  "gdefaults": "gdefaults2",
30682
31571
  "help": "help2",
30683
31572
  "hierarchy": "hierarchy2",
31573
+ "math": "math2",
31574
+ "mathTemplate": "mathTemplate2",
30684
31575
  "meta": "meta2",
30685
31576
  "numbers": "numbers2",
30686
31577
  "pipboy": "pipboy1",
@@ -30714,6 +31605,10 @@
30714
31605
  },
30715
31606
  "hierarchy2": {
30716
31607
  },
31608
+ "math2": {
31609
+ },
31610
+ "mathTemplate2": {
31611
+ },
30717
31612
  "meta2": {
30718
31613
  },
30719
31614
  "numbers2": {
@@ -30792,6 +31687,12 @@
30792
31687
  "range",
30793
31688
  "accuracy"
30794
31689
  ],
31690
+ "mathematical_operator": [
31691
+ "*",
31692
+ "+",
31693
+ "/",
31694
+ "-"
31695
+ ],
30795
31696
  "notAble": [
30796
31697
  "unknown"
30797
31698
  ],
@@ -30903,6 +31804,11 @@
30903
31804
  "that",
30904
31805
  "orAble",
30905
31806
  "ifAble",
31807
+ "*",
31808
+ "mathematical_operator",
31809
+ "+",
31810
+ "/",
31811
+ "-",
30906
31812
  "pistol",
30907
31813
  "weapon",
30908
31814
  "rifle",
@@ -30941,6 +31847,18 @@
30941
31847
  "accuracy"
30942
31848
  ],
30943
31849
  "parents": {
31850
+ "*": [
31851
+ "mathematical_operator"
31852
+ ],
31853
+ "+": [
31854
+ "mathematical_operator"
31855
+ ],
31856
+ "-": [
31857
+ "mathematical_operator"
31858
+ ],
31859
+ "/": [
31860
+ "mathematical_operator"
31861
+ ],
30944
31862
  "a": [
30945
31863
  "articlePOS"
30946
31864
  ],
@@ -31135,6 +32053,14 @@
31135
32053
  "initHandlers": [
31136
32054
  ],
31137
32055
  "root": {
32056
+ "*": {
32057
+ },
32058
+ "+": {
32059
+ },
32060
+ "-": {
32061
+ },
32062
+ "/": {
32063
+ },
31138
32064
  "a": {
31139
32065
  },
31140
32066
  "accuracy": {
@@ -31197,6 +32123,8 @@
31197
32123
  },
31198
32124
  "luck": {
31199
32125
  },
32126
+ "mathematical_operator": {
32127
+ },
31200
32128
  "meat": {
31201
32129
  },
31202
32130
  "medicine": {
@@ -31944,6 +32872,7 @@
31944
32872
  "dead": true,
31945
32873
  "determiner": "the",
31946
32874
  "focusableForPhrase": true,
32875
+ "instance": true,
31947
32876
  "level": 1,
31948
32877
  "marker": "weapon",
31949
32878
  "modifiers": [
@@ -32098,6 +33027,8 @@
32098
33027
  "gdefaults": "gdefaults2",
32099
33028
  "help": "help2",
32100
33029
  "hierarchy": "hierarchy2",
33030
+ "math": "math2",
33031
+ "mathTemplate": "mathTemplate2",
32101
33032
  "meta": "meta2",
32102
33033
  "numbers": "numbers2",
32103
33034
  "pipboy": "pipboy1",
@@ -32131,6 +33062,10 @@
32131
33062
  },
32132
33063
  "hierarchy2": {
32133
33064
  },
33065
+ "math2": {
33066
+ },
33067
+ "mathTemplate2": {
33068
+ },
32134
33069
  "meta2": {
32135
33070
  },
32136
33071
  "numbers2": {
@@ -32207,6 +33142,12 @@
32207
33142
  "range",
32208
33143
  "accuracy"
32209
33144
  ],
33145
+ "mathematical_operator": [
33146
+ "*",
33147
+ "+",
33148
+ "/",
33149
+ "-"
33150
+ ],
32210
33151
  "notAble": [
32211
33152
  "unknown"
32212
33153
  ],
@@ -32318,6 +33259,11 @@
32318
33259
  "that",
32319
33260
  "orAble",
32320
33261
  "ifAble",
33262
+ "*",
33263
+ "mathematical_operator",
33264
+ "+",
33265
+ "/",
33266
+ "-",
32321
33267
  "pistol",
32322
33268
  "weapon",
32323
33269
  "rifle",
@@ -32356,6 +33302,18 @@
32356
33302
  "accuracy"
32357
33303
  ],
32358
33304
  "parents": {
33305
+ "*": [
33306
+ "mathematical_operator"
33307
+ ],
33308
+ "+": [
33309
+ "mathematical_operator"
33310
+ ],
33311
+ "-": [
33312
+ "mathematical_operator"
33313
+ ],
33314
+ "/": [
33315
+ "mathematical_operator"
33316
+ ],
32359
33317
  "a": [
32360
33318
  "articlePOS"
32361
33319
  ],
@@ -32550,6 +33508,14 @@
32550
33508
  "initHandlers": [
32551
33509
  ],
32552
33510
  "root": {
33511
+ "*": {
33512
+ },
33513
+ "+": {
33514
+ },
33515
+ "-": {
33516
+ },
33517
+ "/": {
33518
+ },
32553
33519
  "a": {
32554
33520
  },
32555
33521
  "accuracy": {
@@ -32612,6 +33578,8 @@
32612
33578
  },
32613
33579
  "luck": {
32614
33580
  },
33581
+ "mathematical_operator": {
33582
+ },
32615
33583
  "meat": {
32616
33584
  },
32617
33585
  "medicine": {
@@ -32730,6 +33698,7 @@
32730
33698
  "dead": true,
32731
33699
  "determiner": "the",
32732
33700
  "focusableForPhrase": true,
33701
+ "instance": true,
32733
33702
  "level": 1,
32734
33703
  "marker": "weapon",
32735
33704
  "modifiers": [
@@ -33443,6 +34412,8 @@
33443
34412
  "gdefaults": "gdefaults2",
33444
34413
  "help": "help2",
33445
34414
  "hierarchy": "hierarchy2",
34415
+ "math": "math2",
34416
+ "mathTemplate": "mathTemplate2",
33446
34417
  "meta": "meta2",
33447
34418
  "numbers": "numbers2",
33448
34419
  "pipboy": "pipboy1",
@@ -33476,6 +34447,10 @@
33476
34447
  },
33477
34448
  "hierarchy2": {
33478
34449
  },
34450
+ "math2": {
34451
+ },
34452
+ "mathTemplate2": {
34453
+ },
33479
34454
  "meta2": {
33480
34455
  },
33481
34456
  "numbers2": {
@@ -33552,6 +34527,12 @@
33552
34527
  "range",
33553
34528
  "accuracy"
33554
34529
  ],
34530
+ "mathematical_operator": [
34531
+ "*",
34532
+ "+",
34533
+ "/",
34534
+ "-"
34535
+ ],
33555
34536
  "notAble": [
33556
34537
  "unknown"
33557
34538
  ],
@@ -33663,6 +34644,11 @@
33663
34644
  "that",
33664
34645
  "orAble",
33665
34646
  "ifAble",
34647
+ "*",
34648
+ "mathematical_operator",
34649
+ "+",
34650
+ "/",
34651
+ "-",
33666
34652
  "pistol",
33667
34653
  "weapon",
33668
34654
  "rifle",
@@ -33701,6 +34687,18 @@
33701
34687
  "accuracy"
33702
34688
  ],
33703
34689
  "parents": {
34690
+ "*": [
34691
+ "mathematical_operator"
34692
+ ],
34693
+ "+": [
34694
+ "mathematical_operator"
34695
+ ],
34696
+ "-": [
34697
+ "mathematical_operator"
34698
+ ],
34699
+ "/": [
34700
+ "mathematical_operator"
34701
+ ],
33704
34702
  "a": [
33705
34703
  "articlePOS"
33706
34704
  ],
@@ -33895,6 +34893,14 @@
33895
34893
  "initHandlers": [
33896
34894
  ],
33897
34895
  "root": {
34896
+ "*": {
34897
+ },
34898
+ "+": {
34899
+ },
34900
+ "-": {
34901
+ },
34902
+ "/": {
34903
+ },
33898
34904
  "a": {
33899
34905
  },
33900
34906
  "accuracy": {
@@ -33957,6 +34963,8 @@
33957
34963
  },
33958
34964
  "luck": {
33959
34965
  },
34966
+ "mathematical_operator": {
34967
+ },
33960
34968
  "meat": {
33961
34969
  },
33962
34970
  "medicine": {
@@ -34770,6 +35778,8 @@
34770
35778
  "gdefaults": "gdefaults2",
34771
35779
  "help": "help2",
34772
35780
  "hierarchy": "hierarchy2",
35781
+ "math": "math2",
35782
+ "mathTemplate": "mathTemplate2",
34773
35783
  "meta": "meta2",
34774
35784
  "numbers": "numbers2",
34775
35785
  "pipboy": "pipboy1",
@@ -34803,6 +35813,10 @@
34803
35813
  },
34804
35814
  "hierarchy2": {
34805
35815
  },
35816
+ "math2": {
35817
+ },
35818
+ "mathTemplate2": {
35819
+ },
34806
35820
  "meta2": {
34807
35821
  },
34808
35822
  "numbers2": {
@@ -34879,6 +35893,12 @@
34879
35893
  "range",
34880
35894
  "accuracy"
34881
35895
  ],
35896
+ "mathematical_operator": [
35897
+ "*",
35898
+ "+",
35899
+ "/",
35900
+ "-"
35901
+ ],
34882
35902
  "notAble": [
34883
35903
  "unknown"
34884
35904
  ],
@@ -34990,6 +36010,11 @@
34990
36010
  "that",
34991
36011
  "orAble",
34992
36012
  "ifAble",
36013
+ "*",
36014
+ "mathematical_operator",
36015
+ "+",
36016
+ "/",
36017
+ "-",
34993
36018
  "pistol",
34994
36019
  "weapon",
34995
36020
  "rifle",
@@ -35028,6 +36053,18 @@
35028
36053
  "accuracy"
35029
36054
  ],
35030
36055
  "parents": {
36056
+ "*": [
36057
+ "mathematical_operator"
36058
+ ],
36059
+ "+": [
36060
+ "mathematical_operator"
36061
+ ],
36062
+ "-": [
36063
+ "mathematical_operator"
36064
+ ],
36065
+ "/": [
36066
+ "mathematical_operator"
36067
+ ],
35031
36068
  "a": [
35032
36069
  "articlePOS"
35033
36070
  ],
@@ -35222,6 +36259,14 @@
35222
36259
  "initHandlers": [
35223
36260
  ],
35224
36261
  "root": {
36262
+ "*": {
36263
+ },
36264
+ "+": {
36265
+ },
36266
+ "-": {
36267
+ },
36268
+ "/": {
36269
+ },
35225
36270
  "a": {
35226
36271
  },
35227
36272
  "accuracy": {
@@ -35284,6 +36329,8 @@
35284
36329
  },
35285
36330
  "luck": {
35286
36331
  },
36332
+ "mathematical_operator": {
36333
+ },
35287
36334
  "meat": {
35288
36335
  },
35289
36336
  "medicine": {
@@ -36111,6 +37158,8 @@
36111
37158
  "gdefaults": "gdefaults2",
36112
37159
  "help": "help2",
36113
37160
  "hierarchy": "hierarchy2",
37161
+ "math": "math2",
37162
+ "mathTemplate": "mathTemplate2",
36114
37163
  "meta": "meta2",
36115
37164
  "numbers": "numbers2",
36116
37165
  "pipboy": "pipboy1",
@@ -36144,6 +37193,10 @@
36144
37193
  },
36145
37194
  "hierarchy2": {
36146
37195
  },
37196
+ "math2": {
37197
+ },
37198
+ "mathTemplate2": {
37199
+ },
36147
37200
  "meta2": {
36148
37201
  },
36149
37202
  "numbers2": {
@@ -36222,6 +37275,12 @@
36222
37275
  "range",
36223
37276
  "accuracy"
36224
37277
  ],
37278
+ "mathematical_operator": [
37279
+ "*",
37280
+ "+",
37281
+ "/",
37282
+ "-"
37283
+ ],
36225
37284
  "notAble": [
36226
37285
  "unknown"
36227
37286
  ],
@@ -36333,6 +37392,11 @@
36333
37392
  "that",
36334
37393
  "orAble",
36335
37394
  "ifAble",
37395
+ "*",
37396
+ "mathematical_operator",
37397
+ "+",
37398
+ "/",
37399
+ "-",
36336
37400
  "pistol",
36337
37401
  "weapon",
36338
37402
  "rifle",
@@ -36371,6 +37435,18 @@
36371
37435
  "accuracy"
36372
37436
  ],
36373
37437
  "parents": {
37438
+ "*": [
37439
+ "mathematical_operator"
37440
+ ],
37441
+ "+": [
37442
+ "mathematical_operator"
37443
+ ],
37444
+ "-": [
37445
+ "mathematical_operator"
37446
+ ],
37447
+ "/": [
37448
+ "mathematical_operator"
37449
+ ],
36374
37450
  "a": [
36375
37451
  "articlePOS"
36376
37452
  ],
@@ -36565,6 +37641,14 @@
36565
37641
  "initHandlers": [
36566
37642
  ],
36567
37643
  "root": {
37644
+ "*": {
37645
+ },
37646
+ "+": {
37647
+ },
37648
+ "-": {
37649
+ },
37650
+ "/": {
37651
+ },
36568
37652
  "a": {
36569
37653
  },
36570
37654
  "accuracy": {
@@ -36627,6 +37711,8 @@
36627
37711
  },
36628
37712
  "luck": {
36629
37713
  },
37714
+ "mathematical_operator": {
37715
+ },
36630
37716
  "meat": {
36631
37717
  },
36632
37718
  "medicine": {
@@ -37464,6 +38550,8 @@
37464
38550
  "gdefaults": "gdefaults2",
37465
38551
  "help": "help2",
37466
38552
  "hierarchy": "hierarchy2",
38553
+ "math": "math2",
38554
+ "mathTemplate": "mathTemplate2",
37467
38555
  "meta": "meta2",
37468
38556
  "numbers": "numbers2",
37469
38557
  "pipboy": "pipboy1",
@@ -37497,6 +38585,10 @@
37497
38585
  },
37498
38586
  "hierarchy2": {
37499
38587
  },
38588
+ "math2": {
38589
+ },
38590
+ "mathTemplate2": {
38591
+ },
37500
38592
  "meta2": {
37501
38593
  },
37502
38594
  "numbers2": {
@@ -37575,6 +38667,12 @@
37575
38667
  "range",
37576
38668
  "accuracy"
37577
38669
  ],
38670
+ "mathematical_operator": [
38671
+ "*",
38672
+ "+",
38673
+ "/",
38674
+ "-"
38675
+ ],
37578
38676
  "notAble": [
37579
38677
  "unknown"
37580
38678
  ],
@@ -37686,6 +38784,11 @@
37686
38784
  "that",
37687
38785
  "orAble",
37688
38786
  "ifAble",
38787
+ "*",
38788
+ "mathematical_operator",
38789
+ "+",
38790
+ "/",
38791
+ "-",
37689
38792
  "pistol",
37690
38793
  "weapon",
37691
38794
  "rifle",
@@ -37724,6 +38827,18 @@
37724
38827
  "accuracy"
37725
38828
  ],
37726
38829
  "parents": {
38830
+ "*": [
38831
+ "mathematical_operator"
38832
+ ],
38833
+ "+": [
38834
+ "mathematical_operator"
38835
+ ],
38836
+ "-": [
38837
+ "mathematical_operator"
38838
+ ],
38839
+ "/": [
38840
+ "mathematical_operator"
38841
+ ],
37727
38842
  "a": [
37728
38843
  "articlePOS"
37729
38844
  ],
@@ -37918,6 +39033,14 @@
37918
39033
  "initHandlers": [
37919
39034
  ],
37920
39035
  "root": {
39036
+ "*": {
39037
+ },
39038
+ "+": {
39039
+ },
39040
+ "-": {
39041
+ },
39042
+ "/": {
39043
+ },
37921
39044
  "a": {
37922
39045
  },
37923
39046
  "accuracy": {
@@ -37980,6 +39103,8 @@
37980
39103
  },
37981
39104
  "luck": {
37982
39105
  },
39106
+ "mathematical_operator": {
39107
+ },
37983
39108
  "meat": {
37984
39109
  },
37985
39110
  "medicine": {
@@ -38765,6 +39890,8 @@
38765
39890
  "gdefaults": "gdefaults2",
38766
39891
  "help": "help2",
38767
39892
  "hierarchy": "hierarchy2",
39893
+ "math": "math2",
39894
+ "mathTemplate": "mathTemplate2",
38768
39895
  "meta": "meta2",
38769
39896
  "numbers": "numbers2",
38770
39897
  "pipboy": "pipboy1",
@@ -38798,6 +39925,10 @@
38798
39925
  },
38799
39926
  "hierarchy2": {
38800
39927
  },
39928
+ "math2": {
39929
+ },
39930
+ "mathTemplate2": {
39931
+ },
38801
39932
  "meta2": {
38802
39933
  },
38803
39934
  "numbers2": {
@@ -38876,6 +40007,12 @@
38876
40007
  "range",
38877
40008
  "accuracy"
38878
40009
  ],
40010
+ "mathematical_operator": [
40011
+ "*",
40012
+ "+",
40013
+ "/",
40014
+ "-"
40015
+ ],
38879
40016
  "notAble": [
38880
40017
  "unknown"
38881
40018
  ],
@@ -38987,6 +40124,11 @@
38987
40124
  "that",
38988
40125
  "orAble",
38989
40126
  "ifAble",
40127
+ "*",
40128
+ "mathematical_operator",
40129
+ "+",
40130
+ "/",
40131
+ "-",
38990
40132
  "pistol",
38991
40133
  "weapon",
38992
40134
  "rifle",
@@ -39025,6 +40167,18 @@
39025
40167
  "accuracy"
39026
40168
  ],
39027
40169
  "parents": {
40170
+ "*": [
40171
+ "mathematical_operator"
40172
+ ],
40173
+ "+": [
40174
+ "mathematical_operator"
40175
+ ],
40176
+ "-": [
40177
+ "mathematical_operator"
40178
+ ],
40179
+ "/": [
40180
+ "mathematical_operator"
40181
+ ],
39028
40182
  "a": [
39029
40183
  "articlePOS"
39030
40184
  ],
@@ -39219,6 +40373,14 @@
39219
40373
  "initHandlers": [
39220
40374
  ],
39221
40375
  "root": {
40376
+ "*": {
40377
+ },
40378
+ "+": {
40379
+ },
40380
+ "-": {
40381
+ },
40382
+ "/": {
40383
+ },
39222
40384
  "a": {
39223
40385
  },
39224
40386
  "accuracy": {
@@ -39281,6 +40443,8 @@
39281
40443
  },
39282
40444
  "luck": {
39283
40445
  },
40446
+ "mathematical_operator": {
40447
+ },
39284
40448
  "meat": {
39285
40449
  },
39286
40450
  "medicine": {
@@ -40101,6 +41265,8 @@
40101
41265
  "gdefaults": "gdefaults2",
40102
41266
  "help": "help2",
40103
41267
  "hierarchy": "hierarchy2",
41268
+ "math": "math2",
41269
+ "mathTemplate": "mathTemplate2",
40104
41270
  "meta": "meta2",
40105
41271
  "numbers": "numbers2",
40106
41272
  "pipboy": "pipboy1",
@@ -40134,6 +41300,10 @@
40134
41300
  },
40135
41301
  "hierarchy2": {
40136
41302
  },
41303
+ "math2": {
41304
+ },
41305
+ "mathTemplate2": {
41306
+ },
40137
41307
  "meta2": {
40138
41308
  },
40139
41309
  "numbers2": {
@@ -40212,6 +41382,12 @@
40212
41382
  "range",
40213
41383
  "accuracy"
40214
41384
  ],
41385
+ "mathematical_operator": [
41386
+ "*",
41387
+ "+",
41388
+ "/",
41389
+ "-"
41390
+ ],
40215
41391
  "notAble": [
40216
41392
  "unknown"
40217
41393
  ],
@@ -40323,6 +41499,11 @@
40323
41499
  "that",
40324
41500
  "orAble",
40325
41501
  "ifAble",
41502
+ "*",
41503
+ "mathematical_operator",
41504
+ "+",
41505
+ "/",
41506
+ "-",
40326
41507
  "pistol",
40327
41508
  "weapon",
40328
41509
  "rifle",
@@ -40361,6 +41542,18 @@
40361
41542
  "accuracy"
40362
41543
  ],
40363
41544
  "parents": {
41545
+ "*": [
41546
+ "mathematical_operator"
41547
+ ],
41548
+ "+": [
41549
+ "mathematical_operator"
41550
+ ],
41551
+ "-": [
41552
+ "mathematical_operator"
41553
+ ],
41554
+ "/": [
41555
+ "mathematical_operator"
41556
+ ],
40364
41557
  "a": [
40365
41558
  "articlePOS"
40366
41559
  ],
@@ -40555,6 +41748,14 @@
40555
41748
  "initHandlers": [
40556
41749
  ],
40557
41750
  "root": {
41751
+ "*": {
41752
+ },
41753
+ "+": {
41754
+ },
41755
+ "-": {
41756
+ },
41757
+ "/": {
41758
+ },
40558
41759
  "a": {
40559
41760
  },
40560
41761
  "accuracy": {
@@ -40617,6 +41818,8 @@
40617
41818
  },
40618
41819
  "luck": {
40619
41820
  },
41821
+ "mathematical_operator": {
41822
+ },
40620
41823
  "meat": {
40621
41824
  },
40622
41825
  "medicine": {
@@ -41467,6 +42670,8 @@
41467
42670
  "gdefaults": "gdefaults2",
41468
42671
  "help": "help2",
41469
42672
  "hierarchy": "hierarchy2",
42673
+ "math": "math2",
42674
+ "mathTemplate": "mathTemplate2",
41470
42675
  "meta": "meta2",
41471
42676
  "numbers": "numbers2",
41472
42677
  "pipboy": "pipboy1",
@@ -41500,6 +42705,10 @@
41500
42705
  },
41501
42706
  "hierarchy2": {
41502
42707
  },
42708
+ "math2": {
42709
+ },
42710
+ "mathTemplate2": {
42711
+ },
41503
42712
  "meta2": {
41504
42713
  },
41505
42714
  "numbers2": {
@@ -41576,6 +42785,12 @@
41576
42785
  "range",
41577
42786
  "accuracy"
41578
42787
  ],
42788
+ "mathematical_operator": [
42789
+ "*",
42790
+ "+",
42791
+ "/",
42792
+ "-"
42793
+ ],
41579
42794
  "notAble": [
41580
42795
  "unknown"
41581
42796
  ],
@@ -41687,6 +42902,11 @@
41687
42902
  "that",
41688
42903
  "orAble",
41689
42904
  "ifAble",
42905
+ "*",
42906
+ "mathematical_operator",
42907
+ "+",
42908
+ "/",
42909
+ "-",
41690
42910
  "pistol",
41691
42911
  "weapon",
41692
42912
  "rifle",
@@ -41725,6 +42945,18 @@
41725
42945
  "accuracy"
41726
42946
  ],
41727
42947
  "parents": {
42948
+ "*": [
42949
+ "mathematical_operator"
42950
+ ],
42951
+ "+": [
42952
+ "mathematical_operator"
42953
+ ],
42954
+ "-": [
42955
+ "mathematical_operator"
42956
+ ],
42957
+ "/": [
42958
+ "mathematical_operator"
42959
+ ],
41728
42960
  "a": [
41729
42961
  "articlePOS"
41730
42962
  ],
@@ -41919,6 +43151,14 @@
41919
43151
  "initHandlers": [
41920
43152
  ],
41921
43153
  "root": {
43154
+ "*": {
43155
+ },
43156
+ "+": {
43157
+ },
43158
+ "-": {
43159
+ },
43160
+ "/": {
43161
+ },
41922
43162
  "a": {
41923
43163
  },
41924
43164
  "accuracy": {
@@ -41981,6 +43221,8 @@
41981
43221
  },
41982
43222
  "luck": {
41983
43223
  },
43224
+ "mathematical_operator": {
43225
+ },
41984
43226
  "meat": {
41985
43227
  },
41986
43228
  "medicine": {
@@ -42817,6 +44059,8 @@
42817
44059
  "gdefaults": "gdefaults2",
42818
44060
  "help": "help2",
42819
44061
  "hierarchy": "hierarchy2",
44062
+ "math": "math2",
44063
+ "mathTemplate": "mathTemplate2",
42820
44064
  "meta": "meta2",
42821
44065
  "numbers": "numbers2",
42822
44066
  "pipboy": "pipboy1",
@@ -42850,6 +44094,10 @@
42850
44094
  },
42851
44095
  "hierarchy2": {
42852
44096
  },
44097
+ "math2": {
44098
+ },
44099
+ "mathTemplate2": {
44100
+ },
42853
44101
  "meta2": {
42854
44102
  },
42855
44103
  "numbers2": {
@@ -42926,6 +44174,12 @@
42926
44174
  "range",
42927
44175
  "accuracy"
42928
44176
  ],
44177
+ "mathematical_operator": [
44178
+ "*",
44179
+ "+",
44180
+ "/",
44181
+ "-"
44182
+ ],
42929
44183
  "notAble": [
42930
44184
  "unknown"
42931
44185
  ],
@@ -43037,6 +44291,11 @@
43037
44291
  "that",
43038
44292
  "orAble",
43039
44293
  "ifAble",
44294
+ "*",
44295
+ "mathematical_operator",
44296
+ "+",
44297
+ "/",
44298
+ "-",
43040
44299
  "pistol",
43041
44300
  "weapon",
43042
44301
  "rifle",
@@ -43075,6 +44334,18 @@
43075
44334
  "accuracy"
43076
44335
  ],
43077
44336
  "parents": {
44337
+ "*": [
44338
+ "mathematical_operator"
44339
+ ],
44340
+ "+": [
44341
+ "mathematical_operator"
44342
+ ],
44343
+ "-": [
44344
+ "mathematical_operator"
44345
+ ],
44346
+ "/": [
44347
+ "mathematical_operator"
44348
+ ],
43078
44349
  "a": [
43079
44350
  "articlePOS"
43080
44351
  ],
@@ -43269,6 +44540,14 @@
43269
44540
  "initHandlers": [
43270
44541
  ],
43271
44542
  "root": {
44543
+ "*": {
44544
+ },
44545
+ "+": {
44546
+ },
44547
+ "-": {
44548
+ },
44549
+ "/": {
44550
+ },
43272
44551
  "a": {
43273
44552
  },
43274
44553
  "accuracy": {
@@ -43331,6 +44610,8 @@
43331
44610
  },
43332
44611
  "luck": {
43333
44612
  },
44613
+ "mathematical_operator": {
44614
+ },
43334
44615
  "meat": {
43335
44616
  },
43336
44617
  "medicine": {
@@ -44116,6 +45397,8 @@
44116
45397
  "gdefaults": "gdefaults2",
44117
45398
  "help": "help2",
44118
45399
  "hierarchy": "hierarchy2",
45400
+ "math": "math2",
45401
+ "mathTemplate": "mathTemplate2",
44119
45402
  "meta": "meta2",
44120
45403
  "numbers": "numbers2",
44121
45404
  "pipboy": "pipboy1",
@@ -44149,6 +45432,10 @@
44149
45432
  },
44150
45433
  "hierarchy2": {
44151
45434
  },
45435
+ "math2": {
45436
+ },
45437
+ "mathTemplate2": {
45438
+ },
44152
45439
  "meta2": {
44153
45440
  },
44154
45441
  "numbers2": {
@@ -44225,6 +45512,12 @@
44225
45512
  "range",
44226
45513
  "accuracy"
44227
45514
  ],
45515
+ "mathematical_operator": [
45516
+ "*",
45517
+ "+",
45518
+ "/",
45519
+ "-"
45520
+ ],
44228
45521
  "notAble": [
44229
45522
  "unknown"
44230
45523
  ],
@@ -44336,6 +45629,11 @@
44336
45629
  "that",
44337
45630
  "orAble",
44338
45631
  "ifAble",
45632
+ "*",
45633
+ "mathematical_operator",
45634
+ "+",
45635
+ "/",
45636
+ "-",
44339
45637
  "pistol",
44340
45638
  "weapon",
44341
45639
  "rifle",
@@ -44374,6 +45672,18 @@
44374
45672
  "accuracy"
44375
45673
  ],
44376
45674
  "parents": {
45675
+ "*": [
45676
+ "mathematical_operator"
45677
+ ],
45678
+ "+": [
45679
+ "mathematical_operator"
45680
+ ],
45681
+ "-": [
45682
+ "mathematical_operator"
45683
+ ],
45684
+ "/": [
45685
+ "mathematical_operator"
45686
+ ],
44377
45687
  "a": [
44378
45688
  "articlePOS"
44379
45689
  ],
@@ -44568,6 +45878,14 @@
44568
45878
  "initHandlers": [
44569
45879
  ],
44570
45880
  "root": {
45881
+ "*": {
45882
+ },
45883
+ "+": {
45884
+ },
45885
+ "-": {
45886
+ },
45887
+ "/": {
45888
+ },
44571
45889
  "a": {
44572
45890
  },
44573
45891
  "accuracy": {
@@ -44630,6 +45948,8 @@
44630
45948
  },
44631
45949
  "luck": {
44632
45950
  },
45951
+ "mathematical_operator": {
45952
+ },
44633
45953
  "meat": {
44634
45954
  },
44635
45955
  "medicine": {
@@ -45507,6 +46827,8 @@
45507
46827
  "gdefaults": "gdefaults2",
45508
46828
  "help": "help2",
45509
46829
  "hierarchy": "hierarchy2",
46830
+ "math": "math2",
46831
+ "mathTemplate": "mathTemplate2",
45510
46832
  "meta": "meta2",
45511
46833
  "numbers": "numbers2",
45512
46834
  "pipboy": "pipboy1",
@@ -45540,6 +46862,10 @@
45540
46862
  },
45541
46863
  "hierarchy2": {
45542
46864
  },
46865
+ "math2": {
46866
+ },
46867
+ "mathTemplate2": {
46868
+ },
45543
46869
  "meta2": {
45544
46870
  },
45545
46871
  "numbers2": {
@@ -45615,6 +46941,12 @@
45615
46941
  "range",
45616
46942
  "accuracy"
45617
46943
  ],
46944
+ "mathematical_operator": [
46945
+ "*",
46946
+ "+",
46947
+ "/",
46948
+ "-"
46949
+ ],
45618
46950
  "notAble": [
45619
46951
  "unknown"
45620
46952
  ],
@@ -45726,6 +47058,11 @@
45726
47058
  "that",
45727
47059
  "orAble",
45728
47060
  "ifAble",
47061
+ "*",
47062
+ "mathematical_operator",
47063
+ "+",
47064
+ "/",
47065
+ "-",
45729
47066
  "pistol",
45730
47067
  "weapon",
45731
47068
  "rifle",
@@ -45764,6 +47101,18 @@
45764
47101
  "accuracy"
45765
47102
  ],
45766
47103
  "parents": {
47104
+ "*": [
47105
+ "mathematical_operator"
47106
+ ],
47107
+ "+": [
47108
+ "mathematical_operator"
47109
+ ],
47110
+ "-": [
47111
+ "mathematical_operator"
47112
+ ],
47113
+ "/": [
47114
+ "mathematical_operator"
47115
+ ],
45767
47116
  "a": [
45768
47117
  "articlePOS"
45769
47118
  ],
@@ -45958,6 +47307,14 @@
45958
47307
  "initHandlers": [
45959
47308
  ],
45960
47309
  "root": {
47310
+ "*": {
47311
+ },
47312
+ "+": {
47313
+ },
47314
+ "-": {
47315
+ },
47316
+ "/": {
47317
+ },
45961
47318
  "a": {
45962
47319
  },
45963
47320
  "accuracy": {
@@ -46020,6 +47377,8 @@
46020
47377
  },
46021
47378
  "luck": {
46022
47379
  },
47380
+ "mathematical_operator": {
47381
+ },
46023
47382
  "meat": {
46024
47383
  },
46025
47384
  "medicine": {
@@ -47069,6 +48428,8 @@
47069
48428
  "gdefaults": "gdefaults2",
47070
48429
  "help": "help2",
47071
48430
  "hierarchy": "hierarchy2",
48431
+ "math": "math2",
48432
+ "mathTemplate": "mathTemplate2",
47072
48433
  "meta": "meta2",
47073
48434
  "numbers": "numbers2",
47074
48435
  "pipboy": "pipboy1",
@@ -47102,6 +48463,10 @@
47102
48463
  },
47103
48464
  "hierarchy2": {
47104
48465
  },
48466
+ "math2": {
48467
+ },
48468
+ "mathTemplate2": {
48469
+ },
47105
48470
  "meta2": {
47106
48471
  },
47107
48472
  "numbers2": {
@@ -47184,6 +48549,12 @@
47184
48549
  "range",
47185
48550
  "accuracy"
47186
48551
  ],
48552
+ "mathematical_operator": [
48553
+ "*",
48554
+ "+",
48555
+ "/",
48556
+ "-"
48557
+ ],
47187
48558
  "notAble": [
47188
48559
  "unknown"
47189
48560
  ],
@@ -47295,6 +48666,11 @@
47295
48666
  "that",
47296
48667
  "orAble",
47297
48668
  "ifAble",
48669
+ "*",
48670
+ "mathematical_operator",
48671
+ "+",
48672
+ "/",
48673
+ "-",
47298
48674
  "pistol",
47299
48675
  "weapon",
47300
48676
  "rifle",
@@ -47333,6 +48709,18 @@
47333
48709
  "accuracy"
47334
48710
  ],
47335
48711
  "parents": {
48712
+ "*": [
48713
+ "mathematical_operator"
48714
+ ],
48715
+ "+": [
48716
+ "mathematical_operator"
48717
+ ],
48718
+ "-": [
48719
+ "mathematical_operator"
48720
+ ],
48721
+ "/": [
48722
+ "mathematical_operator"
48723
+ ],
47336
48724
  "a": [
47337
48725
  "articlePOS"
47338
48726
  ],
@@ -47527,6 +48915,14 @@
47527
48915
  "initHandlers": [
47528
48916
  ],
47529
48917
  "root": {
48918
+ "*": {
48919
+ },
48920
+ "+": {
48921
+ },
48922
+ "-": {
48923
+ },
48924
+ "/": {
48925
+ },
47530
48926
  "a": {
47531
48927
  },
47532
48928
  "accuracy": {
@@ -47589,6 +48985,8 @@
47589
48985
  },
47590
48986
  "luck": {
47591
48987
  },
48988
+ "mathematical_operator": {
48989
+ },
47592
48990
  "meat": {
47593
48991
  },
47594
48992
  "medicine": {
@@ -48487,6 +49885,8 @@
48487
49885
  "gdefaults": "gdefaults2",
48488
49886
  "help": "help2",
48489
49887
  "hierarchy": "hierarchy2",
49888
+ "math": "math2",
49889
+ "mathTemplate": "mathTemplate2",
48490
49890
  "meta": "meta2",
48491
49891
  "numbers": "numbers2",
48492
49892
  "pipboy": "pipboy1",
@@ -48520,6 +49920,10 @@
48520
49920
  },
48521
49921
  "hierarchy2": {
48522
49922
  },
49923
+ "math2": {
49924
+ },
49925
+ "mathTemplate2": {
49926
+ },
48523
49927
  "meta2": {
48524
49928
  },
48525
49929
  "numbers2": {
@@ -48598,6 +50002,12 @@
48598
50002
  "range",
48599
50003
  "accuracy"
48600
50004
  ],
50005
+ "mathematical_operator": [
50006
+ "*",
50007
+ "+",
50008
+ "/",
50009
+ "-"
50010
+ ],
48601
50011
  "notAble": [
48602
50012
  "unknown"
48603
50013
  ],
@@ -48709,6 +50119,11 @@
48709
50119
  "that",
48710
50120
  "orAble",
48711
50121
  "ifAble",
50122
+ "*",
50123
+ "mathematical_operator",
50124
+ "+",
50125
+ "/",
50126
+ "-",
48712
50127
  "pistol",
48713
50128
  "weapon",
48714
50129
  "rifle",
@@ -48747,6 +50162,18 @@
48747
50162
  "accuracy"
48748
50163
  ],
48749
50164
  "parents": {
50165
+ "*": [
50166
+ "mathematical_operator"
50167
+ ],
50168
+ "+": [
50169
+ "mathematical_operator"
50170
+ ],
50171
+ "-": [
50172
+ "mathematical_operator"
50173
+ ],
50174
+ "/": [
50175
+ "mathematical_operator"
50176
+ ],
48750
50177
  "a": [
48751
50178
  "articlePOS"
48752
50179
  ],
@@ -48941,6 +50368,14 @@
48941
50368
  "initHandlers": [
48942
50369
  ],
48943
50370
  "root": {
50371
+ "*": {
50372
+ },
50373
+ "+": {
50374
+ },
50375
+ "-": {
50376
+ },
50377
+ "/": {
50378
+ },
48944
50379
  "a": {
48945
50380
  },
48946
50381
  "accuracy": {
@@ -49003,6 +50438,8 @@
49003
50438
  },
49004
50439
  "luck": {
49005
50440
  },
50441
+ "mathematical_operator": {
50442
+ },
49006
50443
  "meat": {
49007
50444
  },
49008
50445
  "medicine": {
@@ -49893,6 +51330,8 @@
49893
51330
  "gdefaults": "gdefaults2",
49894
51331
  "help": "help2",
49895
51332
  "hierarchy": "hierarchy2",
51333
+ "math": "math2",
51334
+ "mathTemplate": "mathTemplate2",
49896
51335
  "meta": "meta2",
49897
51336
  "numbers": "numbers2",
49898
51337
  "pipboy": "pipboy1",
@@ -49926,6 +51365,10 @@
49926
51365
  },
49927
51366
  "hierarchy2": {
49928
51367
  },
51368
+ "math2": {
51369
+ },
51370
+ "mathTemplate2": {
51371
+ },
49929
51372
  "meta2": {
49930
51373
  },
49931
51374
  "numbers2": {
@@ -50002,6 +51445,12 @@
50002
51445
  "range",
50003
51446
  "accuracy"
50004
51447
  ],
51448
+ "mathematical_operator": [
51449
+ "*",
51450
+ "+",
51451
+ "/",
51452
+ "-"
51453
+ ],
50005
51454
  "notAble": [
50006
51455
  "unknown"
50007
51456
  ],
@@ -50113,6 +51562,11 @@
50113
51562
  "that",
50114
51563
  "orAble",
50115
51564
  "ifAble",
51565
+ "*",
51566
+ "mathematical_operator",
51567
+ "+",
51568
+ "/",
51569
+ "-",
50116
51570
  "pistol",
50117
51571
  "weapon",
50118
51572
  "rifle",
@@ -50151,6 +51605,18 @@
50151
51605
  "accuracy"
50152
51606
  ],
50153
51607
  "parents": {
51608
+ "*": [
51609
+ "mathematical_operator"
51610
+ ],
51611
+ "+": [
51612
+ "mathematical_operator"
51613
+ ],
51614
+ "-": [
51615
+ "mathematical_operator"
51616
+ ],
51617
+ "/": [
51618
+ "mathematical_operator"
51619
+ ],
50154
51620
  "a": [
50155
51621
  "articlePOS"
50156
51622
  ],
@@ -50345,6 +51811,14 @@
50345
51811
  "initHandlers": [
50346
51812
  ],
50347
51813
  "root": {
51814
+ "*": {
51815
+ },
51816
+ "+": {
51817
+ },
51818
+ "-": {
51819
+ },
51820
+ "/": {
51821
+ },
50348
51822
  "a": {
50349
51823
  },
50350
51824
  "accuracy": {
@@ -50407,6 +51881,8 @@
50407
51881
  },
50408
51882
  "luck": {
50409
51883
  },
51884
+ "mathematical_operator": {
51885
+ },
50410
51886
  "meat": {
50411
51887
  },
50412
51888
  "medicine": {
@@ -51124,13 +52600,11 @@
51124
52600
  0
51125
52601
  ],
51126
52602
  [
51127
- "propertyOf",
52603
+ "item",
51128
52604
  0
51129
- ]
51130
- ],
51131
- [
52605
+ ],
51132
52606
  [
51133
- "is",
52607
+ "property",
51134
52608
  0
51135
52609
  ],
51136
52610
  [
@@ -51140,6 +52614,10 @@
51140
52614
  [
51141
52615
  "the",
51142
52616
  0
52617
+ ],
52618
+ [
52619
+ "what",
52620
+ 0
51143
52621
  ]
51144
52622
  ],
51145
52623
  [
@@ -51150,17 +52628,19 @@
51150
52628
  [
51151
52629
  "propertyOf",
51152
52630
  0
51153
- ],
52631
+ ]
52632
+ ],
52633
+ [
51154
52634
  [
51155
- "the",
52635
+ "is",
51156
52636
  0
51157
52637
  ],
51158
52638
  [
51159
- "type",
52639
+ "propertyOf",
51160
52640
  0
51161
52641
  ],
51162
52642
  [
51163
- "what",
52643
+ "the",
51164
52644
  0
51165
52645
  ]
51166
52646
  ],
@@ -51234,7 +52714,9 @@
51234
52714
  "object": {
51235
52715
  "atomic": true,
51236
52716
  "dead": true,
51237
- "item": {
52717
+ "level": 1,
52718
+ "marker": "item_property",
52719
+ "modifier_item": {
51238
52720
  "level": 0,
51239
52721
  "marker": "item",
51240
52722
  "range": {
@@ -51248,10 +52730,8 @@
51248
52730
  "value": "item",
51249
52731
  "word": "item"
51250
52732
  },
51251
- "level": 1,
51252
- "marker": "item_property",
51253
52733
  "modifiers": [
51254
- "item"
52734
+ "modifier_item"
51255
52735
  ],
51256
52736
  "number": "many",
51257
52737
  "range": {
@@ -51293,7 +52773,9 @@
51293
52773
  {
51294
52774
  "atomic": true,
51295
52775
  "dead": true,
51296
- "item": {
52776
+ "level": 1,
52777
+ "marker": "item_property",
52778
+ "modifier_item": {
51297
52779
  "level": 0,
51298
52780
  "marker": "item",
51299
52781
  "range": {
@@ -51307,10 +52789,8 @@
51307
52789
  "value": "item",
51308
52790
  "word": "item"
51309
52791
  },
51310
- "level": 1,
51311
- "marker": "item_property",
51312
52792
  "modifiers": [
51313
- "item"
52793
+ "modifier_item"
51314
52794
  ],
51315
52795
  "number": "many",
51316
52796
  "range": {
@@ -51423,7 +52903,9 @@
51423
52903
  "object": {
51424
52904
  "atomic": true,
51425
52905
  "dead": true,
51426
- "item": {
52906
+ "level": 1,
52907
+ "marker": "item_property",
52908
+ "modifier_item": {
51427
52909
  "level": 0,
51428
52910
  "marker": "item",
51429
52911
  "range": {
@@ -51437,10 +52919,8 @@
51437
52919
  "value": "item",
51438
52920
  "word": "item"
51439
52921
  },
51440
- "level": 1,
51441
- "marker": "item_property",
51442
52922
  "modifiers": [
51443
- "item"
52923
+ "modifier_item"
51444
52924
  ],
51445
52925
  "number": "many",
51446
52926
  "range": {
@@ -51482,7 +52962,9 @@
51482
52962
  {
51483
52963
  "atomic": true,
51484
52964
  "dead": true,
51485
- "item": {
52965
+ "level": 1,
52966
+ "marker": "item_property",
52967
+ "modifier_item": {
51486
52968
  "level": 0,
51487
52969
  "marker": "item",
51488
52970
  "range": {
@@ -51496,10 +52978,8 @@
51496
52978
  "value": "item",
51497
52979
  "word": "item"
51498
52980
  },
51499
- "level": 1,
51500
- "marker": "item_property",
51501
52981
  "modifiers": [
51502
- "item"
52982
+ "modifier_item"
51503
52983
  ],
51504
52984
  "number": "many",
51505
52985
  "range": {
@@ -51584,7 +53064,9 @@
51584
53064
  "object": {
51585
53065
  "atomic": true,
51586
53066
  "dead": true,
51587
- "item": {
53067
+ "level": 1,
53068
+ "marker": "item_property",
53069
+ "modifier_item": {
51588
53070
  "level": 0,
51589
53071
  "marker": "item",
51590
53072
  "range": {
@@ -51598,10 +53080,8 @@
51598
53080
  "value": "item",
51599
53081
  "word": "item"
51600
53082
  },
51601
- "level": 1,
51602
- "marker": "item_property",
51603
53083
  "modifiers": [
51604
- "item"
53084
+ "modifier_item"
51605
53085
  ],
51606
53086
  "number": "many",
51607
53087
  "range": {
@@ -51643,7 +53123,9 @@
51643
53123
  {
51644
53124
  "atomic": true,
51645
53125
  "dead": true,
51646
- "item": {
53126
+ "level": 1,
53127
+ "marker": "item_property",
53128
+ "modifier_item": {
51647
53129
  "level": 0,
51648
53130
  "marker": "item",
51649
53131
  "range": {
@@ -51657,10 +53139,8 @@
51657
53139
  "value": "item",
51658
53140
  "word": "item"
51659
53141
  },
51660
- "level": 1,
51661
- "marker": "item_property",
51662
53142
  "modifiers": [
51663
- "item"
53143
+ "modifier_item"
51664
53144
  ],
51665
53145
  "number": "many",
51666
53146
  "range": {
@@ -51692,14 +53172,14 @@
51692
53172
  }
51693
53173
  ],
51694
53174
  "generatedParenthesized": [
51695
- "((((the (types)) of ((item) (properties))) are (((damages), (lucks), (hps), (rads), (values), (aps), (charismas), (ranges) and (accuracies)))))"
53175
+ "((((the (types)) of ((item) (properties))) are (((damage), (luck), (hp), (rad), (value), (ap), (charisma), (range) and (accuracy)))))"
51696
53176
  ],
51697
53177
  "metadata": {
51698
53178
  "opChoices": [
51699
53179
  {
51700
53180
  "counter": 1,
51701
53181
  "op": [
51702
- "item_property",
53182
+ "type",
51703
53183
  0
51704
53184
  ],
51705
53185
  "ops": [
@@ -51740,7 +53220,7 @@
51740
53220
  {
51741
53221
  "counter": 2,
51742
53222
  "op": [
51743
- "type",
53223
+ "item_property",
51744
53224
  0
51745
53225
  ],
51746
53226
  "ops": [
@@ -51749,15 +53229,23 @@
51749
53229
  0
51750
53230
  ],
51751
53231
  [
51752
- "propertyOf",
53232
+ "item",
51753
53233
  0
51754
53234
  ],
51755
53235
  [
51756
- "the",
53236
+ "item_property",
51757
53237
  0
51758
53238
  ],
51759
53239
  [
51760
- "type",
53240
+ "property",
53241
+ 0
53242
+ ],
53243
+ [
53244
+ "propertyOf",
53245
+ 0
53246
+ ],
53247
+ [
53248
+ "the",
51761
53249
  0
51762
53250
  ],
51763
53251
  [
@@ -51883,6 +53371,8 @@
51883
53371
  "gdefaults": "gdefaults2",
51884
53372
  "help": "help2",
51885
53373
  "hierarchy": "hierarchy2",
53374
+ "math": "math2",
53375
+ "mathTemplate": "mathTemplate2",
51886
53376
  "meta": "meta2",
51887
53377
  "numbers": "numbers2",
51888
53378
  "pipboy": "pipboy1",
@@ -51916,6 +53406,10 @@
51916
53406
  },
51917
53407
  "hierarchy2": {
51918
53408
  },
53409
+ "math2": {
53410
+ },
53411
+ "mathTemplate2": {
53412
+ },
51919
53413
  "meta2": {
51920
53414
  },
51921
53415
  "numbers2": {
@@ -51991,6 +53485,12 @@
51991
53485
  "range",
51992
53486
  "accuracy"
51993
53487
  ],
53488
+ "mathematical_operator": [
53489
+ "*",
53490
+ "+",
53491
+ "/",
53492
+ "-"
53493
+ ],
51994
53494
  "notAble": [
51995
53495
  "unknown"
51996
53496
  ],
@@ -52102,6 +53602,11 @@
52102
53602
  "that",
52103
53603
  "orAble",
52104
53604
  "ifAble",
53605
+ "*",
53606
+ "mathematical_operator",
53607
+ "+",
53608
+ "/",
53609
+ "-",
52105
53610
  "pistol",
52106
53611
  "weapon",
52107
53612
  "rifle",
@@ -52140,6 +53645,18 @@
52140
53645
  "accuracy"
52141
53646
  ],
52142
53647
  "parents": {
53648
+ "*": [
53649
+ "mathematical_operator"
53650
+ ],
53651
+ "+": [
53652
+ "mathematical_operator"
53653
+ ],
53654
+ "-": [
53655
+ "mathematical_operator"
53656
+ ],
53657
+ "/": [
53658
+ "mathematical_operator"
53659
+ ],
52143
53660
  "a": [
52144
53661
  "articlePOS"
52145
53662
  ],
@@ -52334,6 +53851,14 @@
52334
53851
  "initHandlers": [
52335
53852
  ],
52336
53853
  "root": {
53854
+ "*": {
53855
+ },
53856
+ "+": {
53857
+ },
53858
+ "-": {
53859
+ },
53860
+ "/": {
53861
+ },
52337
53862
  "a": {
52338
53863
  },
52339
53864
  "accuracy": {
@@ -52396,6 +53921,8 @@
52396
53921
  },
52397
53922
  "luck": {
52398
53923
  },
53924
+ "mathematical_operator": {
53925
+ },
52399
53926
  "meat": {
52400
53927
  },
52401
53928
  "medicine": {
@@ -52524,7 +54051,9 @@
52524
54051
  "object": {
52525
54052
  "atomic": true,
52526
54053
  "dead": true,
52527
- "item": {
54054
+ "level": 1,
54055
+ "marker": "item_property",
54056
+ "modifier_item": {
52528
54057
  "level": 0,
52529
54058
  "marker": "item",
52530
54059
  "range": {
@@ -52538,10 +54067,8 @@
52538
54067
  "value": "item",
52539
54068
  "word": "item"
52540
54069
  },
52541
- "level": 1,
52542
- "marker": "item_property",
52543
54070
  "modifiers": [
52544
- "item"
54071
+ "modifier_item"
52545
54072
  ],
52546
54073
  "number": "many",
52547
54074
  "range": {
@@ -52583,7 +54110,9 @@
52583
54110
  {
52584
54111
  "atomic": true,
52585
54112
  "dead": true,
52586
- "item": {
54113
+ "level": 1,
54114
+ "marker": "item_property",
54115
+ "modifier_item": {
52587
54116
  "level": 0,
52588
54117
  "marker": "item",
52589
54118
  "range": {
@@ -52597,10 +54126,8 @@
52597
54126
  "value": "item",
52598
54127
  "word": "item"
52599
54128
  },
52600
- "level": 1,
52601
- "marker": "item_property",
52602
54129
  "modifiers": [
52603
- "item"
54130
+ "modifier_item"
52604
54131
  ],
52605
54132
  "number": "many",
52606
54133
  "range": {
@@ -52713,7 +54240,9 @@
52713
54240
  "object": {
52714
54241
  "atomic": true,
52715
54242
  "dead": true,
52716
- "item": {
54243
+ "level": 1,
54244
+ "marker": "item_property",
54245
+ "modifier_item": {
52717
54246
  "level": 0,
52718
54247
  "marker": "item",
52719
54248
  "range": {
@@ -52727,10 +54256,8 @@
52727
54256
  "value": "item",
52728
54257
  "word": "item"
52729
54258
  },
52730
- "level": 1,
52731
- "marker": "item_property",
52732
54259
  "modifiers": [
52733
- "item"
54260
+ "modifier_item"
52734
54261
  ],
52735
54262
  "number": "many",
52736
54263
  "range": {
@@ -52772,7 +54299,9 @@
52772
54299
  {
52773
54300
  "atomic": true,
52774
54301
  "dead": true,
52775
- "item": {
54302
+ "level": 1,
54303
+ "marker": "item_property",
54304
+ "modifier_item": {
52776
54305
  "level": 0,
52777
54306
  "marker": "item",
52778
54307
  "range": {
@@ -52786,10 +54315,8 @@
52786
54315
  "value": "item",
52787
54316
  "word": "item"
52788
54317
  },
52789
- "level": 1,
52790
- "marker": "item_property",
52791
54318
  "modifiers": [
52792
- "item"
54319
+ "modifier_item"
52793
54320
  ],
52794
54321
  "number": "many",
52795
54322
  "range": {
@@ -52874,7 +54401,9 @@
52874
54401
  "object": {
52875
54402
  "atomic": true,
52876
54403
  "dead": true,
52877
- "item": {
54404
+ "level": 1,
54405
+ "marker": "item_property",
54406
+ "modifier_item": {
52878
54407
  "level": 0,
52879
54408
  "marker": "item",
52880
54409
  "range": {
@@ -52888,10 +54417,8 @@
52888
54417
  "value": "item",
52889
54418
  "word": "item"
52890
54419
  },
52891
- "level": 1,
52892
- "marker": "item_property",
52893
54420
  "modifiers": [
52894
- "item"
54421
+ "modifier_item"
52895
54422
  ],
52896
54423
  "number": "many",
52897
54424
  "range": {
@@ -52933,7 +54460,9 @@
52933
54460
  {
52934
54461
  "atomic": true,
52935
54462
  "dead": true,
52936
- "item": {
54463
+ "level": 1,
54464
+ "marker": "item_property",
54465
+ "modifier_item": {
52937
54466
  "level": 0,
52938
54467
  "marker": "item",
52939
54468
  "range": {
@@ -52947,10 +54476,8 @@
52947
54476
  "value": "item",
52948
54477
  "word": "item"
52949
54478
  },
52950
- "level": 1,
52951
- "marker": "item_property",
52952
54479
  "modifiers": [
52953
- "item"
54480
+ "modifier_item"
52954
54481
  ],
52955
54482
  "number": "many",
52956
54483
  "range": {
@@ -52980,11 +54507,11 @@
52980
54507
  },
52981
54508
  "word": "are"
52982
54509
  },
52983
- "generatedParenthesized": "((((the (types)) of ((item) (properties))) are (((damages), (lucks), (hps), (rads), (values), (aps), (charismas), (ranges) and (accuracies)))))",
54510
+ "generatedParenthesized": "((((the (types)) of ((item) (properties))) are (((damage), (luck), (hp), (rad), (value), (ap), (charisma), (range) and (accuracy)))))",
52984
54511
  "paraphrases": "what are the types of item properties?",
52985
54512
  "paraphrasesParenthesized": "(((what) are ((the (types)) of ((item) (properties))))?)",
52986
54513
  "responses": [
52987
- "the types of item properties are damages, lucks, hps, rads, values, aps, charismas, ranges and accuracies"
54514
+ "the types of item properties are damage, luck, hp, rad, value, ap, charisma, range and accuracy"
52988
54515
  ]
52989
54516
  },
52990
54517
  {
@@ -53512,7 +55039,7 @@
53512
55039
  ],
53513
55040
  "query": "what are the types of item properties",
53514
55041
  "responses": [
53515
- "the types of item properties are damages, lucks, hps, rads, values, aps, charismas, ranges and accuracies"
55042
+ "the types of item properties are damage, luck, hp, rad, value, ap, charisma, range and accuracy"
53516
55043
  ]
53517
55044
  },
53518
55045
  {
@@ -53653,6 +55180,8 @@
53653
55180
  "gdefaults": "gdefaults2",
53654
55181
  "help": "help2",
53655
55182
  "hierarchy": "hierarchy2",
55183
+ "math": "math2",
55184
+ "mathTemplate": "mathTemplate2",
53656
55185
  "meta": "meta2",
53657
55186
  "numbers": "numbers2",
53658
55187
  "pipboy": "pipboy1",
@@ -53686,6 +55215,10 @@
53686
55215
  },
53687
55216
  "hierarchy2": {
53688
55217
  },
55218
+ "math2": {
55219
+ },
55220
+ "mathTemplate2": {
55221
+ },
53689
55222
  "meta2": {
53690
55223
  },
53691
55224
  "numbers2": {
@@ -53762,6 +55295,12 @@
53762
55295
  "range",
53763
55296
  "accuracy"
53764
55297
  ],
55298
+ "mathematical_operator": [
55299
+ "*",
55300
+ "+",
55301
+ "/",
55302
+ "-"
55303
+ ],
53765
55304
  "notAble": [
53766
55305
  "unknown"
53767
55306
  ],
@@ -53873,6 +55412,11 @@
53873
55412
  "that",
53874
55413
  "orAble",
53875
55414
  "ifAble",
55415
+ "*",
55416
+ "mathematical_operator",
55417
+ "+",
55418
+ "/",
55419
+ "-",
53876
55420
  "pistol",
53877
55421
  "weapon",
53878
55422
  "rifle",
@@ -53911,6 +55455,18 @@
53911
55455
  "accuracy"
53912
55456
  ],
53913
55457
  "parents": {
55458
+ "*": [
55459
+ "mathematical_operator"
55460
+ ],
55461
+ "+": [
55462
+ "mathematical_operator"
55463
+ ],
55464
+ "-": [
55465
+ "mathematical_operator"
55466
+ ],
55467
+ "/": [
55468
+ "mathematical_operator"
55469
+ ],
53914
55470
  "a": [
53915
55471
  "articlePOS"
53916
55472
  ],
@@ -54105,6 +55661,14 @@
54105
55661
  "initHandlers": [
54106
55662
  ],
54107
55663
  "root": {
55664
+ "*": {
55665
+ },
55666
+ "+": {
55667
+ },
55668
+ "-": {
55669
+ },
55670
+ "/": {
55671
+ },
54108
55672
  "a": {
54109
55673
  },
54110
55674
  "accuracy": {
@@ -54167,6 +55731,8 @@
54167
55731
  },
54168
55732
  "luck": {
54169
55733
  },
55734
+ "mathematical_operator": {
55735
+ },
54170
55736
  "meat": {
54171
55737
  },
54172
55738
  "medicine": {
@@ -54984,6 +56550,8 @@
54984
56550
  "gdefaults": "gdefaults2",
54985
56551
  "help": "help2",
54986
56552
  "hierarchy": "hierarchy2",
56553
+ "math": "math2",
56554
+ "mathTemplate": "mathTemplate2",
54987
56555
  "meta": "meta2",
54988
56556
  "numbers": "numbers2",
54989
56557
  "pipboy": "pipboy1",
@@ -55017,6 +56585,10 @@
55017
56585
  },
55018
56586
  "hierarchy2": {
55019
56587
  },
56588
+ "math2": {
56589
+ },
56590
+ "mathTemplate2": {
56591
+ },
55020
56592
  "meta2": {
55021
56593
  },
55022
56594
  "numbers2": {
@@ -55093,6 +56665,12 @@
55093
56665
  "range",
55094
56666
  "accuracy"
55095
56667
  ],
56668
+ "mathematical_operator": [
56669
+ "*",
56670
+ "+",
56671
+ "/",
56672
+ "-"
56673
+ ],
55096
56674
  "notAble": [
55097
56675
  "unknown"
55098
56676
  ],
@@ -55204,6 +56782,11 @@
55204
56782
  "that",
55205
56783
  "orAble",
55206
56784
  "ifAble",
56785
+ "*",
56786
+ "mathematical_operator",
56787
+ "+",
56788
+ "/",
56789
+ "-",
55207
56790
  "pistol",
55208
56791
  "weapon",
55209
56792
  "rifle",
@@ -55242,6 +56825,18 @@
55242
56825
  "accuracy"
55243
56826
  ],
55244
56827
  "parents": {
56828
+ "*": [
56829
+ "mathematical_operator"
56830
+ ],
56831
+ "+": [
56832
+ "mathematical_operator"
56833
+ ],
56834
+ "-": [
56835
+ "mathematical_operator"
56836
+ ],
56837
+ "/": [
56838
+ "mathematical_operator"
56839
+ ],
55245
56840
  "a": [
55246
56841
  "articlePOS"
55247
56842
  ],
@@ -55436,6 +57031,14 @@
55436
57031
  "initHandlers": [
55437
57032
  ],
55438
57033
  "root": {
57034
+ "*": {
57035
+ },
57036
+ "+": {
57037
+ },
57038
+ "-": {
57039
+ },
57040
+ "/": {
57041
+ },
55439
57042
  "a": {
55440
57043
  },
55441
57044
  "accuracy": {
@@ -55498,6 +57101,8 @@
55498
57101
  },
55499
57102
  "luck": {
55500
57103
  },
57104
+ "mathematical_operator": {
57105
+ },
55501
57106
  "meat": {
55502
57107
  },
55503
57108
  "medicine": {
@@ -56273,6 +57878,8 @@
56273
57878
  "gdefaults": "gdefaults2",
56274
57879
  "help": "help2",
56275
57880
  "hierarchy": "hierarchy2",
57881
+ "math": "math2",
57882
+ "mathTemplate": "mathTemplate2",
56276
57883
  "meta": "meta2",
56277
57884
  "numbers": "numbers2",
56278
57885
  "pipboy": "pipboy1",
@@ -56306,6 +57913,10 @@
56306
57913
  },
56307
57914
  "hierarchy2": {
56308
57915
  },
57916
+ "math2": {
57917
+ },
57918
+ "mathTemplate2": {
57919
+ },
56309
57920
  "meta2": {
56310
57921
  },
56311
57922
  "numbers2": {
@@ -56384,6 +57995,12 @@
56384
57995
  "range",
56385
57996
  "accuracy"
56386
57997
  ],
57998
+ "mathematical_operator": [
57999
+ "*",
58000
+ "+",
58001
+ "/",
58002
+ "-"
58003
+ ],
56387
58004
  "notAble": [
56388
58005
  "unknown"
56389
58006
  ],
@@ -56495,6 +58112,11 @@
56495
58112
  "that",
56496
58113
  "orAble",
56497
58114
  "ifAble",
58115
+ "*",
58116
+ "mathematical_operator",
58117
+ "+",
58118
+ "/",
58119
+ "-",
56498
58120
  "pistol",
56499
58121
  "weapon",
56500
58122
  "rifle",
@@ -56533,6 +58155,18 @@
56533
58155
  "accuracy"
56534
58156
  ],
56535
58157
  "parents": {
58158
+ "*": [
58159
+ "mathematical_operator"
58160
+ ],
58161
+ "+": [
58162
+ "mathematical_operator"
58163
+ ],
58164
+ "-": [
58165
+ "mathematical_operator"
58166
+ ],
58167
+ "/": [
58168
+ "mathematical_operator"
58169
+ ],
56536
58170
  "a": [
56537
58171
  "articlePOS"
56538
58172
  ],
@@ -56727,6 +58361,14 @@
56727
58361
  "initHandlers": [
56728
58362
  ],
56729
58363
  "root": {
58364
+ "*": {
58365
+ },
58366
+ "+": {
58367
+ },
58368
+ "-": {
58369
+ },
58370
+ "/": {
58371
+ },
56730
58372
  "a": {
56731
58373
  },
56732
58374
  "accuracy": {
@@ -56789,6 +58431,8 @@
56789
58431
  },
56790
58432
  "luck": {
56791
58433
  },
58434
+ "mathematical_operator": {
58435
+ },
56792
58436
  "meat": {
56793
58437
  },
56794
58438
  "medicine": {
@@ -57557,6 +59201,8 @@
57557
59201
  "gdefaults": "gdefaults2",
57558
59202
  "help": "help2",
57559
59203
  "hierarchy": "hierarchy2",
59204
+ "math": "math2",
59205
+ "mathTemplate": "mathTemplate2",
57560
59206
  "meta": "meta2",
57561
59207
  "numbers": "numbers2",
57562
59208
  "pipboy": "pipboy1",
@@ -57590,6 +59236,10 @@
57590
59236
  },
57591
59237
  "hierarchy2": {
57592
59238
  },
59239
+ "math2": {
59240
+ },
59241
+ "mathTemplate2": {
59242
+ },
57593
59243
  "meta2": {
57594
59244
  },
57595
59245
  "numbers2": {
@@ -57666,6 +59316,12 @@
57666
59316
  "range",
57667
59317
  "accuracy"
57668
59318
  ],
59319
+ "mathematical_operator": [
59320
+ "*",
59321
+ "+",
59322
+ "/",
59323
+ "-"
59324
+ ],
57669
59325
  "notAble": [
57670
59326
  "unknown"
57671
59327
  ],
@@ -57777,6 +59433,11 @@
57777
59433
  "that",
57778
59434
  "orAble",
57779
59435
  "ifAble",
59436
+ "*",
59437
+ "mathematical_operator",
59438
+ "+",
59439
+ "/",
59440
+ "-",
57780
59441
  "pistol",
57781
59442
  "weapon",
57782
59443
  "rifle",
@@ -57815,6 +59476,18 @@
57815
59476
  "accuracy"
57816
59477
  ],
57817
59478
  "parents": {
59479
+ "*": [
59480
+ "mathematical_operator"
59481
+ ],
59482
+ "+": [
59483
+ "mathematical_operator"
59484
+ ],
59485
+ "-": [
59486
+ "mathematical_operator"
59487
+ ],
59488
+ "/": [
59489
+ "mathematical_operator"
59490
+ ],
57818
59491
  "a": [
57819
59492
  "articlePOS"
57820
59493
  ],
@@ -58009,6 +59682,14 @@
58009
59682
  "initHandlers": [
58010
59683
  ],
58011
59684
  "root": {
59685
+ "*": {
59686
+ },
59687
+ "+": {
59688
+ },
59689
+ "-": {
59690
+ },
59691
+ "/": {
59692
+ },
58012
59693
  "a": {
58013
59694
  },
58014
59695
  "accuracy": {
@@ -58071,6 +59752,8 @@
58071
59752
  },
58072
59753
  "luck": {
58073
59754
  },
59755
+ "mathematical_operator": {
59756
+ },
58074
59757
  "meat": {
58075
59758
  },
58076
59759
  "medicine": {
@@ -58839,6 +60522,8 @@
58839
60522
  "gdefaults": "gdefaults2",
58840
60523
  "help": "help2",
58841
60524
  "hierarchy": "hierarchy2",
60525
+ "math": "math2",
60526
+ "mathTemplate": "mathTemplate2",
58842
60527
  "meta": "meta2",
58843
60528
  "numbers": "numbers2",
58844
60529
  "pipboy": "pipboy1",
@@ -58872,6 +60557,10 @@
58872
60557
  },
58873
60558
  "hierarchy2": {
58874
60559
  },
60560
+ "math2": {
60561
+ },
60562
+ "mathTemplate2": {
60563
+ },
58875
60564
  "meta2": {
58876
60565
  },
58877
60566
  "numbers2": {
@@ -58948,6 +60637,12 @@
58948
60637
  "range",
58949
60638
  "accuracy"
58950
60639
  ],
60640
+ "mathematical_operator": [
60641
+ "*",
60642
+ "+",
60643
+ "/",
60644
+ "-"
60645
+ ],
58951
60646
  "notAble": [
58952
60647
  "unknown"
58953
60648
  ],
@@ -59059,6 +60754,11 @@
59059
60754
  "that",
59060
60755
  "orAble",
59061
60756
  "ifAble",
60757
+ "*",
60758
+ "mathematical_operator",
60759
+ "+",
60760
+ "/",
60761
+ "-",
59062
60762
  "pistol",
59063
60763
  "weapon",
59064
60764
  "rifle",
@@ -59097,6 +60797,18 @@
59097
60797
  "accuracy"
59098
60798
  ],
59099
60799
  "parents": {
60800
+ "*": [
60801
+ "mathematical_operator"
60802
+ ],
60803
+ "+": [
60804
+ "mathematical_operator"
60805
+ ],
60806
+ "-": [
60807
+ "mathematical_operator"
60808
+ ],
60809
+ "/": [
60810
+ "mathematical_operator"
60811
+ ],
59100
60812
  "a": [
59101
60813
  "articlePOS"
59102
60814
  ],
@@ -59291,6 +61003,14 @@
59291
61003
  "initHandlers": [
59292
61004
  ],
59293
61005
  "root": {
61006
+ "*": {
61007
+ },
61008
+ "+": {
61009
+ },
61010
+ "-": {
61011
+ },
61012
+ "/": {
61013
+ },
59294
61014
  "a": {
59295
61015
  },
59296
61016
  "accuracy": {
@@ -59353,6 +61073,8 @@
59353
61073
  },
59354
61074
  "luck": {
59355
61075
  },
61076
+ "mathematical_operator": {
61077
+ },
59356
61078
  "meat": {
59357
61079
  },
59358
61080
  "medicine": {