tpmkms_4wp 7.12.8 → 8.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. package/common/animals.instance.json +89 -293
  2. package/common/animals.js +1 -1
  3. package/common/avatar.js +7 -5
  4. package/common/characters.js +12 -5
  5. package/common/crew.instance.json +289 -577
  6. package/common/crew.js +1 -1
  7. package/common/currency.js +0 -2
  8. package/common/dialogues.js +122 -17
  9. package/common/dimension.instance.json +747 -73
  10. package/common/dimension.js +15 -7
  11. package/common/edible.instance.json +243 -435
  12. package/common/edible.js +1 -1
  13. package/common/emotions.instance.json +29 -65
  14. package/common/emotions.js +1 -1
  15. package/common/fastfood.instance.json +1080 -2072
  16. package/common/fastfood.js +1 -1
  17. package/common/formulas.instance.json +992 -0
  18. package/common/formulas.js +19 -6
  19. package/common/formulas.test.json +1187 -3651
  20. package/common/gdefaults.js +2 -0
  21. package/common/help.js +7 -2
  22. package/common/help.test.json +9 -5
  23. package/common/helpers.js +5 -0
  24. package/common/javascript.js +8 -6
  25. package/common/kirk.instance.json +1 -1
  26. package/common/kirk.js +1 -1
  27. package/common/length.instance.json +316 -740
  28. package/common/length.js +1 -1
  29. package/common/math.instance.json +1959 -1
  30. package/common/math.js +17 -5
  31. package/common/meta.instance.json +1 -1
  32. package/common/meta.js +35 -10
  33. package/common/numbers.js +28 -24
  34. package/common/ordering.instance.json +37 -153
  35. package/common/ordering.js +1 -1
  36. package/common/people.instance.json +50 -78
  37. package/common/people.js +1 -1
  38. package/common/pipboy.instance.json +23431 -1082
  39. package/common/pipboy.js +31 -4
  40. package/common/pipboy.test.json +13 -9
  41. package/common/pokemon.instance.json +41 -141
  42. package/common/pokemon.js +1 -1
  43. package/common/pressure.instance.json +93 -33
  44. package/common/pressure.js +1 -1
  45. package/common/properties.instance.json +21 -49
  46. package/common/properties.js +13 -8
  47. package/common/reports.instance.json +23 -63
  48. package/common/reports.js +9 -7
  49. package/common/scorekeeper.instance.json +1 -1
  50. package/common/scorekeeper.js +9 -7
  51. package/common/spock.instance.json +1 -1
  52. package/common/spock.js +1 -1
  53. package/common/tell.js +4 -2
  54. package/common/temperature.instance.json +97 -193
  55. package/common/temperature.js +1 -1
  56. package/common/time.js +36 -20
  57. package/common/time.test.json +66 -44
  58. package/common/tokenize.js +46 -0
  59. package/common/ui.instance.json +9 -1
  60. package/common/weight.instance.json +273 -217
  61. package/common/weight.js +1 -1
  62. package/main.js +2 -8
  63. package/package.json +6 -18
  64. package/common/dimensionTemplate.instance.json +0 -582
  65. package/common/dimensionTemplate.js +0 -35
  66. package/common/formulasTemplate.instance.json +0 -483
  67. package/common/formulasTemplate.js +0 -30
  68. package/common/formulasTemplate.test.json +0 -2
  69. package/common/mathTemplate.instance.json +0 -1635
  70. package/common/mathTemplate.js +0 -32
  71. package/common/mathTemplate.test.json +0 -1422
  72. package/common/pipboyTemplate.instance.json +0 -17420
  73. package/common/pipboyTemplate.js +0 -48
  74. package/common/pipboyTemplate.test.json +0 -2
  75. /package/common/{dimensionTemplate.test.json → tokenize.test.json} +0 -0
@@ -1,5 +1,5 @@
1
1
  {
2
- "queries": [
2
+ "configs": [
3
3
  "troy modifies ounces",
4
4
  "weight is a dimension",
5
5
  "kilograms grams pounds (troy ounces) ounces and tons are units of weight",
@@ -200,6 +200,10 @@
200
200
  "convertToUnits",
201
201
  "queryable"
202
202
  ],
203
+ [
204
+ "convertToUnits",
205
+ "testingValue"
206
+ ],
203
207
  [
204
208
  "countable",
205
209
  "hierarchyAble"
@@ -352,6 +356,10 @@
352
356
  "it",
353
357
  "toAble"
354
358
  ],
359
+ [
360
+ "length",
361
+ "dimension"
362
+ ],
355
363
  [
356
364
  "lowest",
357
365
  "condition"
@@ -580,6 +588,10 @@
580
588
  "reason",
581
589
  "theAble"
582
590
  ],
591
+ [
592
+ "testingValue",
593
+ "testingValue"
594
+ ],
583
595
  [
584
596
  "that",
585
597
  "thisitthat"
@@ -704,9 +716,17 @@
704
716
  "whose",
705
717
  "object"
706
718
  ],
719
+ [
720
+ "x",
721
+ "number"
722
+ ],
707
723
  [
708
724
  "xfx",
709
725
  "queryable"
726
+ ],
727
+ [
728
+ "y",
729
+ "number"
710
730
  ]
711
731
  ],
712
732
  "metadata": {
@@ -779,29 +799,29 @@
779
799
  "dead": true,
780
800
  "modifiers": [
781
801
  {
802
+ "value": "troy",
803
+ "unknown": true,
804
+ "text": "troy",
782
805
  "marker": "unknown",
806
+ "word": "troy",
783
807
  "range": {
784
808
  "start": 0,
785
809
  "end": 3
786
810
  },
787
- "word": "troy",
788
- "text": "troy",
789
- "value": "troy",
790
- "unknown": true,
791
811
  "dead": true,
792
812
  "level": 1
793
813
  }
794
814
  ],
795
815
  "concept": {
816
+ "value": "ounces",
817
+ "unknown": true,
818
+ "text": "ounces",
796
819
  "marker": "unknown",
820
+ "word": "ounces",
797
821
  "range": {
798
822
  "start": 14,
799
823
  "end": 19
800
824
  },
801
- "word": "ounces",
802
- "text": "ounces",
803
- "value": "ounces",
804
- "unknown": true,
805
825
  "dead": true,
806
826
  "level": 1
807
827
  },
@@ -1051,6 +1071,10 @@
1051
1071
  "convertToUnits",
1052
1072
  "queryable"
1053
1073
  ],
1074
+ [
1075
+ "convertToUnits",
1076
+ "testingValue"
1077
+ ],
1054
1078
  [
1055
1079
  "countable",
1056
1080
  "hierarchyAble"
@@ -1203,6 +1227,10 @@
1203
1227
  "it",
1204
1228
  "toAble"
1205
1229
  ],
1230
+ [
1231
+ "length",
1232
+ "dimension"
1233
+ ],
1206
1234
  [
1207
1235
  "lowest",
1208
1236
  "condition"
@@ -1467,6 +1495,10 @@
1467
1495
  "reason",
1468
1496
  "theAble"
1469
1497
  ],
1498
+ [
1499
+ "testingValue",
1500
+ "testingValue"
1501
+ ],
1470
1502
  [
1471
1503
  "that",
1472
1504
  "thisitthat"
@@ -1663,9 +1695,17 @@
1663
1695
  "whose",
1664
1696
  "object"
1665
1697
  ],
1698
+ [
1699
+ "x",
1700
+ "number"
1701
+ ],
1666
1702
  [
1667
1703
  "xfx",
1668
1704
  "queryable"
1705
+ ],
1706
+ [
1707
+ "y",
1708
+ "number"
1669
1709
  ]
1670
1710
  ],
1671
1711
  "metadata": {
@@ -1774,15 +1814,15 @@
1774
1814
  },
1775
1815
  "one": {
1776
1816
  "number": "one",
1817
+ "value": "weight",
1818
+ "unknown": true,
1819
+ "text": "weight",
1777
1820
  "marker": "unknown",
1821
+ "word": "weight",
1778
1822
  "range": {
1779
1823
  "start": 0,
1780
1824
  "end": 20
1781
1825
  },
1782
- "word": "weight",
1783
- "text": "weight",
1784
- "value": "weight",
1785
- "unknown": true,
1786
1826
  "dead": true,
1787
1827
  "types": [
1788
1828
  "unknown"
@@ -2095,6 +2135,10 @@
2095
2135
  "convertToUnits",
2096
2136
  "queryable"
2097
2137
  ],
2138
+ [
2139
+ "convertToUnits",
2140
+ "testingValue"
2141
+ ],
2098
2142
  [
2099
2143
  "countable",
2100
2144
  "hierarchyAble"
@@ -2247,6 +2291,10 @@
2247
2291
  "it",
2248
2292
  "toAble"
2249
2293
  ],
2294
+ [
2295
+ "length",
2296
+ "dimension"
2297
+ ],
2250
2298
  [
2251
2299
  "lowest",
2252
2300
  "condition"
@@ -2511,6 +2559,10 @@
2511
2559
  "reason",
2512
2560
  "theAble"
2513
2561
  ],
2562
+ [
2563
+ "testingValue",
2564
+ "testingValue"
2565
+ ],
2514
2566
  [
2515
2567
  "that",
2516
2568
  "thisitthat"
@@ -2739,9 +2791,17 @@
2739
2791
  "whose",
2740
2792
  "object"
2741
2793
  ],
2794
+ [
2795
+ "x",
2796
+ "number"
2797
+ ],
2742
2798
  [
2743
2799
  "xfx",
2744
2800
  "queryable"
2801
+ ],
2802
+ [
2803
+ "y",
2804
+ "number"
2745
2805
  ]
2746
2806
  ],
2747
2807
  "metadata": {
@@ -3284,41 +3344,41 @@
3284
3344
  "isList": true,
3285
3345
  "value": [
3286
3346
  {
3347
+ "value": "kilograms",
3348
+ "unknown": true,
3349
+ "text": "kilograms",
3287
3350
  "marker": "unknown",
3351
+ "word": "kilograms",
3288
3352
  "range": {
3289
3353
  "start": 0,
3290
3354
  "end": 8
3291
3355
  },
3292
- "word": "kilograms",
3293
- "text": "kilograms",
3294
- "value": "kilograms",
3295
- "unknown": true,
3296
3356
  "dead": true,
3297
3357
  "level": 1
3298
3358
  },
3299
3359
  {
3360
+ "value": "grams",
3361
+ "unknown": true,
3362
+ "text": "grams",
3300
3363
  "marker": "unknown",
3364
+ "word": "grams",
3301
3365
  "range": {
3302
3366
  "start": 10,
3303
3367
  "end": 14
3304
3368
  },
3305
- "word": "grams",
3306
- "text": "grams",
3307
- "value": "grams",
3308
- "unknown": true,
3309
3369
  "dead": true,
3310
3370
  "level": 1
3311
3371
  },
3312
3372
  {
3373
+ "value": "pounds",
3374
+ "unknown": true,
3375
+ "text": "pounds",
3313
3376
  "marker": "unknown",
3377
+ "word": "pounds",
3314
3378
  "range": {
3315
3379
  "start": 16,
3316
3380
  "end": 21
3317
3381
  },
3318
- "word": "pounds",
3319
- "text": "pounds",
3320
- "value": "pounds",
3321
- "unknown": true,
3322
3382
  "dead": true,
3323
3383
  "level": 1
3324
3384
  },
@@ -3372,15 +3432,15 @@
3372
3432
  "level": 1
3373
3433
  },
3374
3434
  {
3435
+ "value": "tons",
3436
+ "unknown": true,
3437
+ "text": "tons",
3375
3438
  "marker": "unknown",
3439
+ "word": "tons",
3376
3440
  "range": {
3377
3441
  "start": 48,
3378
3442
  "end": 51
3379
3443
  },
3380
- "word": "tons",
3381
- "text": "tons",
3382
- "value": "tons",
3383
- "unknown": true,
3384
3444
  "dead": true,
3385
3445
  "level": 1
3386
3446
  }
@@ -3622,40 +3682,6 @@
3622
3682
  0
3623
3683
  ]
3624
3684
  ],
3625
- [
3626
- [
3627
- "is",
3628
- 0
3629
- ],
3630
- [
3631
- "list",
3632
- 0
3633
- ],
3634
- [
3635
- "ounce",
3636
- 0
3637
- ],
3638
- [
3639
- "propertyOf",
3640
- 0
3641
- ],
3642
- [
3643
- "unit",
3644
- 0
3645
- ],
3646
- [
3647
- "unknown",
3648
- 0
3649
- ],
3650
- [
3651
- "unknown",
3652
- 1
3653
- ],
3654
- [
3655
- "weight",
3656
- 0
3657
- ]
3658
- ],
3659
3685
  [
3660
3686
  [
3661
3687
  "is",
@@ -3845,20 +3871,6 @@
3845
3871
  "propertyOf",
3846
3872
  1
3847
3873
  ]
3848
- ],
3849
- [
3850
- [
3851
- "troy",
3852
- 0
3853
- ],
3854
- [
3855
- "unknown",
3856
- 0
3857
- ],
3858
- [
3859
- "weight",
3860
- 0
3861
- ]
3862
3874
  ]
3863
3875
  ],
3864
3876
  "learned_contextual_priorities": [],
@@ -4053,6 +4065,10 @@
4053
4065
  "convertToUnits",
4054
4066
  "queryable"
4055
4067
  ],
4068
+ [
4069
+ "convertToUnits",
4070
+ "testingValue"
4071
+ ],
4056
4072
  [
4057
4073
  "countable",
4058
4074
  "hierarchyAble"
@@ -4269,6 +4285,10 @@
4269
4285
  "kilogram",
4270
4286
  "unit"
4271
4287
  ],
4288
+ [
4289
+ "length",
4290
+ "dimension"
4291
+ ],
4272
4292
  [
4273
4293
  "lowest",
4274
4294
  "condition"
@@ -4569,6 +4589,10 @@
4569
4589
  "reason",
4570
4590
  "theAble"
4571
4591
  ],
4592
+ [
4593
+ "testingValue",
4594
+ "testingValue"
4595
+ ],
4572
4596
  [
4573
4597
  "that",
4574
4598
  "thisitthat"
@@ -4833,9 +4857,17 @@
4833
4857
  "whose",
4834
4858
  "object"
4835
4859
  ],
4860
+ [
4861
+ "x",
4862
+ "number"
4863
+ ],
4836
4864
  [
4837
4865
  "xfx",
4838
4866
  "queryable"
4867
+ ],
4868
+ [
4869
+ "y",
4870
+ "number"
4839
4871
  ]
4840
4872
  ],
4841
4873
  "metadata": {
@@ -5078,16 +5110,6 @@
5078
5110
  ""
5079
5111
  ],
5080
5112
  "associations": [
5081
- [
5082
- [
5083
- "*",
5084
- 0
5085
- ],
5086
- [
5087
- "troy",
5088
- 0
5089
- ]
5090
- ],
5091
5113
  [
5092
5114
  [
5093
5115
  "equals",
@@ -5345,6 +5367,10 @@
5345
5367
  "convertToUnits",
5346
5368
  "queryable"
5347
5369
  ],
5370
+ [
5371
+ "convertToUnits",
5372
+ "testingValue"
5373
+ ],
5348
5374
  [
5349
5375
  "countable",
5350
5376
  "hierarchyAble"
@@ -5561,6 +5587,10 @@
5561
5587
  "kilogram",
5562
5588
  "unit"
5563
5589
  ],
5590
+ [
5591
+ "length",
5592
+ "dimension"
5593
+ ],
5564
5594
  [
5565
5595
  "lowest",
5566
5596
  "condition"
@@ -5861,6 +5891,10 @@
5861
5891
  "reason",
5862
5892
  "theAble"
5863
5893
  ],
5894
+ [
5895
+ "testingValue",
5896
+ "testingValue"
5897
+ ],
5864
5898
  [
5865
5899
  "that",
5866
5900
  "thisitthat"
@@ -6125,9 +6159,17 @@
6125
6159
  "whose",
6126
6160
  "object"
6127
6161
  ],
6162
+ [
6163
+ "x",
6164
+ "number"
6165
+ ],
6128
6166
  [
6129
6167
  "xfx",
6130
6168
  "queryable"
6169
+ ],
6170
+ [
6171
+ "y",
6172
+ "number"
6131
6173
  ]
6132
6174
  ],
6133
6175
  "metadata": {
@@ -6362,16 +6404,6 @@
6362
6404
  ""
6363
6405
  ],
6364
6406
  "associations": [
6365
- [
6366
- [
6367
- "/",
6368
- 0
6369
- ],
6370
- [
6371
- "troy",
6372
- 0
6373
- ]
6374
- ],
6375
6407
  [
6376
6408
  [
6377
6409
  "divideByOperator",
@@ -6629,6 +6661,10 @@
6629
6661
  "convertToUnits",
6630
6662
  "queryable"
6631
6663
  ],
6664
+ [
6665
+ "convertToUnits",
6666
+ "testingValue"
6667
+ ],
6632
6668
  [
6633
6669
  "countable",
6634
6670
  "hierarchyAble"
@@ -6845,6 +6881,10 @@
6845
6881
  "kilogram",
6846
6882
  "unit"
6847
6883
  ],
6884
+ [
6885
+ "length",
6886
+ "dimension"
6887
+ ],
6848
6888
  [
6849
6889
  "lowest",
6850
6890
  "condition"
@@ -7145,6 +7185,10 @@
7145
7185
  "reason",
7146
7186
  "theAble"
7147
7187
  ],
7188
+ [
7189
+ "testingValue",
7190
+ "testingValue"
7191
+ ],
7148
7192
  [
7149
7193
  "that",
7150
7194
  "thisitthat"
@@ -7409,9 +7453,17 @@
7409
7453
  "whose",
7410
7454
  "object"
7411
7455
  ],
7456
+ [
7457
+ "x",
7458
+ "number"
7459
+ ],
7412
7460
  [
7413
7461
  "xfx",
7414
7462
  "queryable"
7463
+ ],
7464
+ [
7465
+ "y",
7466
+ "number"
7415
7467
  ]
7416
7468
  ],
7417
7469
  "metadata": {
@@ -7880,6 +7932,10 @@
7880
7932
  "convertToUnits",
7881
7933
  "queryable"
7882
7934
  ],
7935
+ [
7936
+ "convertToUnits",
7937
+ "testingValue"
7938
+ ],
7883
7939
  [
7884
7940
  "countable",
7885
7941
  "hierarchyAble"
@@ -8096,6 +8152,10 @@
8096
8152
  "kilogram",
8097
8153
  "unit"
8098
8154
  ],
8155
+ [
8156
+ "length",
8157
+ "dimension"
8158
+ ],
8099
8159
  [
8100
8160
  "lowest",
8101
8161
  "condition"
@@ -8396,6 +8456,10 @@
8396
8456
  "reason",
8397
8457
  "theAble"
8398
8458
  ],
8459
+ [
8460
+ "testingValue",
8461
+ "testingValue"
8462
+ ],
8399
8463
  [
8400
8464
  "that",
8401
8465
  "thisitthat"
@@ -8660,9 +8724,17 @@
8660
8724
  "whose",
8661
8725
  "object"
8662
8726
  ],
8727
+ [
8728
+ "x",
8729
+ "number"
8730
+ ],
8663
8731
  [
8664
8732
  "xfx",
8665
8733
  "queryable"
8734
+ ],
8735
+ [
8736
+ "y",
8737
+ "number"
8666
8738
  ]
8667
8739
  ],
8668
8740
  "metadata": {
@@ -9131,6 +9203,10 @@
9131
9203
  "convertToUnits",
9132
9204
  "queryable"
9133
9205
  ],
9206
+ [
9207
+ "convertToUnits",
9208
+ "testingValue"
9209
+ ],
9134
9210
  [
9135
9211
  "countable",
9136
9212
  "hierarchyAble"
@@ -9347,6 +9423,10 @@
9347
9423
  "kilogram",
9348
9424
  "unit"
9349
9425
  ],
9426
+ [
9427
+ "length",
9428
+ "dimension"
9429
+ ],
9350
9430
  [
9351
9431
  "lowest",
9352
9432
  "condition"
@@ -9647,6 +9727,10 @@
9647
9727
  "reason",
9648
9728
  "theAble"
9649
9729
  ],
9730
+ [
9731
+ "testingValue",
9732
+ "testingValue"
9733
+ ],
9650
9734
  [
9651
9735
  "that",
9652
9736
  "thisitthat"
@@ -9911,9 +9995,17 @@
9911
9995
  "whose",
9912
9996
  "object"
9913
9997
  ],
9998
+ [
9999
+ "x",
10000
+ "number"
10001
+ ],
9914
10002
  [
9915
10003
  "xfx",
9916
10004
  "queryable"
10005
+ ],
10006
+ [
10007
+ "y",
10008
+ "number"
9917
10009
  ]
9918
10010
  ],
9919
10011
  "metadata": {
@@ -10382,6 +10474,10 @@
10382
10474
  "convertToUnits",
10383
10475
  "queryable"
10384
10476
  ],
10477
+ [
10478
+ "convertToUnits",
10479
+ "testingValue"
10480
+ ],
10385
10481
  [
10386
10482
  "countable",
10387
10483
  "hierarchyAble"
@@ -10598,6 +10694,10 @@
10598
10694
  "kilogram",
10599
10695
  "unit"
10600
10696
  ],
10697
+ [
10698
+ "length",
10699
+ "dimension"
10700
+ ],
10601
10701
  [
10602
10702
  "lowest",
10603
10703
  "condition"
@@ -10898,6 +10998,10 @@
10898
10998
  "reason",
10899
10999
  "theAble"
10900
11000
  ],
11001
+ [
11002
+ "testingValue",
11003
+ "testingValue"
11004
+ ],
10901
11005
  [
10902
11006
  "that",
10903
11007
  "thisitthat"
@@ -11162,9 +11266,17 @@
11162
11266
  "whose",
11163
11267
  "object"
11164
11268
  ],
11269
+ [
11270
+ "x",
11271
+ "number"
11272
+ ],
11165
11273
  [
11166
11274
  "xfx",
11167
11275
  "queryable"
11276
+ ],
11277
+ [
11278
+ "y",
11279
+ "number"
11168
11280
  ]
11169
11281
  ],
11170
11282
  "metadata": {
@@ -11633,6 +11745,10 @@
11633
11745
  "convertToUnits",
11634
11746
  "queryable"
11635
11747
  ],
11748
+ [
11749
+ "convertToUnits",
11750
+ "testingValue"
11751
+ ],
11636
11752
  [
11637
11753
  "countable",
11638
11754
  "hierarchyAble"
@@ -11849,6 +11965,10 @@
11849
11965
  "kilogram",
11850
11966
  "unit"
11851
11967
  ],
11968
+ [
11969
+ "length",
11970
+ "dimension"
11971
+ ],
11852
11972
  [
11853
11973
  "lowest",
11854
11974
  "condition"
@@ -12149,6 +12269,10 @@
12149
12269
  "reason",
12150
12270
  "theAble"
12151
12271
  ],
12272
+ [
12273
+ "testingValue",
12274
+ "testingValue"
12275
+ ],
12152
12276
  [
12153
12277
  "that",
12154
12278
  "thisitthat"
@@ -12413,9 +12537,17 @@
12413
12537
  "whose",
12414
12538
  "object"
12415
12539
  ],
12540
+ [
12541
+ "x",
12542
+ "number"
12543
+ ],
12416
12544
  [
12417
12545
  "xfx",
12418
12546
  "queryable"
12547
+ ],
12548
+ [
12549
+ "y",
12550
+ "number"
12419
12551
  ]
12420
12552
  ],
12421
12553
  "metadata": {
@@ -12884,6 +13016,10 @@
12884
13016
  "convertToUnits",
12885
13017
  "queryable"
12886
13018
  ],
13019
+ [
13020
+ "convertToUnits",
13021
+ "testingValue"
13022
+ ],
12887
13023
  [
12888
13024
  "countable",
12889
13025
  "hierarchyAble"
@@ -13100,6 +13236,10 @@
13100
13236
  "kilogram",
13101
13237
  "unit"
13102
13238
  ],
13239
+ [
13240
+ "length",
13241
+ "dimension"
13242
+ ],
13103
13243
  [
13104
13244
  "lowest",
13105
13245
  "condition"
@@ -13400,6 +13540,10 @@
13400
13540
  "reason",
13401
13541
  "theAble"
13402
13542
  ],
13543
+ [
13544
+ "testingValue",
13545
+ "testingValue"
13546
+ ],
13403
13547
  [
13404
13548
  "that",
13405
13549
  "thisitthat"
@@ -13664,9 +13808,17 @@
13664
13808
  "whose",
13665
13809
  "object"
13666
13810
  ],
13811
+ [
13812
+ "x",
13813
+ "number"
13814
+ ],
13667
13815
  [
13668
13816
  "xfx",
13669
13817
  "queryable"
13818
+ ],
13819
+ [
13820
+ "y",
13821
+ "number"
13670
13822
  ]
13671
13823
  ],
13672
13824
  "metadata": {
@@ -13822,15 +13974,15 @@
13822
13974
  "timesExpression"
13823
13975
  ],
13824
13976
  "x": {
13977
+ "value": "tonne",
13978
+ "unknown": true,
13979
+ "text": "tonne",
13825
13980
  "marker": "unknown",
13981
+ "word": "tonne",
13826
13982
  "range": {
13827
13983
  "start": 6,
13828
13984
  "end": 10
13829
13985
  },
13830
- "word": "tonne",
13831
- "text": "tonne",
13832
- "value": "tonne",
13833
- "unknown": true,
13834
13986
  "dead": true,
13835
13987
  "types": [
13836
13988
  "number",
@@ -13878,20 +14030,6 @@
13878
14030
  ""
13879
14031
  ],
13880
14032
  "associations": [
13881
- [
13882
- [
13883
- "*",
13884
- 0
13885
- ],
13886
- [
13887
- "ton",
13888
- 0
13889
- ],
13890
- [
13891
- "unknown",
13892
- 0
13893
- ]
13894
- ],
13895
14033
  [
13896
14034
  [
13897
14035
  "equals",
@@ -14161,6 +14299,10 @@
14161
14299
  "convertToUnits",
14162
14300
  "queryable"
14163
14301
  ],
14302
+ [
14303
+ "convertToUnits",
14304
+ "testingValue"
14305
+ ],
14164
14306
  [
14165
14307
  "countable",
14166
14308
  "hierarchyAble"
@@ -14377,6 +14519,10 @@
14377
14519
  "kilogram",
14378
14520
  "unit"
14379
14521
  ],
14522
+ [
14523
+ "length",
14524
+ "dimension"
14525
+ ],
14380
14526
  [
14381
14527
  "lowest",
14382
14528
  "condition"
@@ -14677,6 +14823,10 @@
14677
14823
  "reason",
14678
14824
  "theAble"
14679
14825
  ],
14826
+ [
14827
+ "testingValue",
14828
+ "testingValue"
14829
+ ],
14680
14830
  [
14681
14831
  "that",
14682
14832
  "thisitthat"
@@ -14941,9 +15091,17 @@
14941
15091
  "whose",
14942
15092
  "object"
14943
15093
  ],
15094
+ [
15095
+ "x",
15096
+ "number"
15097
+ ],
14944
15098
  [
14945
15099
  "xfx",
14946
15100
  "queryable"
15101
+ ],
15102
+ [
15103
+ "y",
15104
+ "number"
14947
15105
  ]
14948
15106
  ],
14949
15107
  "metadata": {
@@ -15155,16 +15313,6 @@
15155
15313
  ""
15156
15314
  ],
15157
15315
  "associations": [
15158
- [
15159
- [
15160
- "*",
15161
- 0
15162
- ],
15163
- [
15164
- "ton",
15165
- 0
15166
- ]
15167
- ],
15168
15316
  [
15169
15317
  [
15170
15318
  "equals",
@@ -15240,50 +15388,6 @@
15240
15388
  "fragments": [],
15241
15389
  "semantics": [],
15242
15390
  "associations": [
15243
- [
15244
- [
15245
- "*",
15246
- 0
15247
- ],
15248
- [
15249
- "ton",
15250
- 0
15251
- ]
15252
- ],
15253
- [
15254
- [
15255
- "*",
15256
- 0
15257
- ],
15258
- [
15259
- "ton",
15260
- 0
15261
- ],
15262
- [
15263
- "unknown",
15264
- 0
15265
- ]
15266
- ],
15267
- [
15268
- [
15269
- "*",
15270
- 0
15271
- ],
15272
- [
15273
- "troy",
15274
- 0
15275
- ]
15276
- ],
15277
- [
15278
- [
15279
- "/",
15280
- 0
15281
- ],
15282
- [
15283
- "troy",
15284
- 0
15285
- ]
15286
- ],
15287
15391
  [
15288
15392
  [
15289
15393
  "a",
@@ -16070,40 +16174,6 @@
16070
16174
  0
16071
16175
  ]
16072
16176
  ],
16073
- [
16074
- [
16075
- "is",
16076
- 0
16077
- ],
16078
- [
16079
- "list",
16080
- 0
16081
- ],
16082
- [
16083
- "ounce",
16084
- 0
16085
- ],
16086
- [
16087
- "propertyOf",
16088
- 0
16089
- ],
16090
- [
16091
- "unit",
16092
- 0
16093
- ],
16094
- [
16095
- "unknown",
16096
- 0
16097
- ],
16098
- [
16099
- "unknown",
16100
- 1
16101
- ],
16102
- [
16103
- "weight",
16104
- 0
16105
- ]
16106
- ],
16107
16177
  [
16108
16178
  [
16109
16179
  "is",
@@ -16337,20 +16407,6 @@
16337
16407
  "unknown",
16338
16408
  1
16339
16409
  ]
16340
- ],
16341
- [
16342
- [
16343
- "troy",
16344
- 0
16345
- ],
16346
- [
16347
- "unknown",
16348
- 0
16349
- ],
16350
- [
16351
- "weight",
16352
- 0
16353
- ]
16354
16410
  ]
16355
16411
  ],
16356
16412
  "learned_contextual_priorities": []