tpmkms_4wp 7.12.2 → 7.12.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/avatar.js +6 -6
- package/common/comparable.js +1 -1
- package/common/concept.js +2 -0
- package/common/countable.js +1 -1
- package/common/crew.instance.json +36 -0
- package/common/crew.js +3 -2
- package/common/crew.test.json +45 -45
- package/common/currency.js +2 -0
- package/common/dialogues.js +11 -3
- package/common/dimension.js +5 -3
- package/common/dimension.test.json +204 -158
- package/common/edible.instance.json +56 -0
- package/common/edible.js +1 -2
- package/common/edible.test.json +34 -4
- package/common/emotions.js +2 -0
- package/common/fastfood.instance.json +732 -224
- package/common/fastfood.js +3 -4
- package/common/fastfood.test.json +686 -2164
- package/common/formulas.js +3 -1
- package/common/formulas.test.json +25 -85
- package/common/formulasTemplate.js +1 -1
- package/common/gdefaults.js +2 -1
- package/common/help.js +2 -0
- package/common/hierarchy.js +4 -2
- package/common/javascript.js +2 -0
- package/common/math.js +13 -5
- package/common/math.test.json +127 -543
- package/common/mathTemplate.js +1 -1
- package/common/ordering.instance.json +0 -68
- package/common/ordering.js +2 -0
- package/common/people.js +2 -0
- package/common/people.test.json +118 -56
- package/common/pipboy.js +3 -1
- package/common/pipboy.test.json +1813 -91
- package/common/pipboyTemplate.js +1 -1
- package/common/pokemon.js +2 -0
- package/common/pokemon.test.json +1658 -4
- package/common/properties.js +3 -3
- package/common/properties.test.json +198 -90
- package/common/reports.instance.json +1 -1
- package/common/reports.js +4 -1
- package/common/scorekeeper.js +3 -3
- package/common/scorekeeper.test.json +46 -46
- package/common/sizeable.js +1 -1
- package/common/stgame.js +2 -0
- package/common/tell.js +2 -0
- package/common/temperature.instance.json +0 -112
- package/common/time.js +2 -0
- package/common/ui.js +3 -1
- package/common/weight.test.json +22 -22
- package/package.json +2 -2
    
        package/common/math.test.json
    CHANGED
    
    | @@ -268,7 +268,7 @@ | |
| 268 268 | 
             
                  }
         | 
| 269 269 | 
             
                ],
         | 
| 270 270 | 
             
                "generatedParenthesized": [
         | 
| 271 | 
            -
                  "(((times) is (20)))"
         | 
| 271 | 
            +
                  "((((10) times (2)) is (20)))"
         | 
| 272 272 | 
             
                ],
         | 
| 273 273 | 
             
                "metadata": {
         | 
| 274 274 | 
             
                  "opChoices": [
         | 
| @@ -989,11 +989,11 @@ | |
| 989 989 | 
             
                        },
         | 
| 990 990 | 
             
                        "word": "is"
         | 
| 991 991 | 
             
                      },
         | 
| 992 | 
            -
                      "generatedParenthesized": "(((times) is (20)))",
         | 
| 992 | 
            +
                      "generatedParenthesized": "((((10) times (2)) is (20)))",
         | 
| 993 993 | 
             
                      "paraphrases": "what is 10 times 2?",
         | 
| 994 994 | 
             
                      "paraphrasesParenthesized": "(((what) is ((10) times (2)))?)",
         | 
| 995 995 | 
             
                      "responses": [
         | 
| 996 | 
            -
                        "times is 20"
         | 
| 996 | 
            +
                        "10 times 2 is 20"
         | 
| 997 997 | 
             
                      ]
         | 
| 998 998 | 
             
                    },
         | 
| 999 999 | 
             
                    {
         | 
| @@ -1088,7 +1088,7 @@ | |
| 1088 1088 | 
             
                          "dead": true,
         | 
| 1089 1089 | 
             
                          "level": 1,
         | 
| 1090 1090 | 
             
                          "marker": "mathematical_operator",
         | 
| 1091 | 
            -
                          " | 
| 1091 | 
            +
                          "modifier_mathematical": {
         | 
| 1092 1092 | 
             
                            "level": 0,
         | 
| 1093 1093 | 
             
                            "marker": "mathematical",
         | 
| 1094 1094 | 
             
                            "range": {
         | 
| @@ -1103,7 +1103,7 @@ | |
| 1103 1103 | 
             
                            "word": "mathematical"
         | 
| 1104 1104 | 
             
                          },
         | 
| 1105 1105 | 
             
                          "modifiers": [
         | 
| 1106 | 
            -
                            " | 
| 1106 | 
            +
                            "modifier_mathematical"
         | 
| 1107 1107 | 
             
                          ],
         | 
| 1108 1108 | 
             
                          "number": "many",
         | 
| 1109 1109 | 
             
                          "range": {
         | 
| @@ -1196,7 +1196,7 @@ | |
| 1196 1196 | 
             
                ],
         | 
| 1197 1197 | 
             
                "query": "what is 10 times 2",
         | 
| 1198 1198 | 
             
                "responses": [
         | 
| 1199 | 
            -
                  "times is 20"
         | 
| 1199 | 
            +
                  "10 times 2 is 20"
         | 
| 1200 1200 | 
             
                ]
         | 
| 1201 1201 | 
             
              },
         | 
| 1202 1202 | 
             
              {
         | 
| @@ -1573,7 +1573,7 @@ | |
| 1573 1573 | 
             
                  }
         | 
| 1574 1574 | 
             
                ],
         | 
| 1575 1575 | 
             
                "generatedParenthesized": [
         | 
| 1576 | 
            -
                  "(((times) is (60)))"
         | 
| 1576 | 
            +
                  "(((((10) times (2)) times (3)) is (60)))"
         | 
| 1577 1577 | 
             
                ],
         | 
| 1578 1578 | 
             
                "metadata": {
         | 
| 1579 1579 | 
             
                  "opChoices": [
         | 
| @@ -2469,11 +2469,11 @@ | |
| 2469 2469 | 
             
                        },
         | 
| 2470 2470 | 
             
                        "word": "is"
         | 
| 2471 2471 | 
             
                      },
         | 
| 2472 | 
            -
                      "generatedParenthesized": "(((times) is (60)))",
         | 
| 2472 | 
            +
                      "generatedParenthesized": "(((((10) times (2)) times (3)) is (60)))",
         | 
| 2473 2473 | 
             
                      "paraphrases": "what is 10 times 2 times 3?",
         | 
| 2474 2474 | 
             
                      "paraphrasesParenthesized": "(((what) is (((10) times (2)) times (3)))?)",
         | 
| 2475 2475 | 
             
                      "responses": [
         | 
| 2476 | 
            -
                        "times is 60"
         | 
| 2476 | 
            +
                        "10 times 2 times 3 is 60"
         | 
| 2477 2477 | 
             
                      ]
         | 
| 2478 2478 | 
             
                    },
         | 
| 2479 2479 | 
             
                    {
         | 
| @@ -2568,7 +2568,7 @@ | |
| 2568 2568 | 
             
                          "dead": true,
         | 
| 2569 2569 | 
             
                          "level": 1,
         | 
| 2570 2570 | 
             
                          "marker": "mathematical_operator",
         | 
| 2571 | 
            -
                          " | 
| 2571 | 
            +
                          "modifier_mathematical": {
         | 
| 2572 2572 | 
             
                            "level": 0,
         | 
| 2573 2573 | 
             
                            "marker": "mathematical",
         | 
| 2574 2574 | 
             
                            "range": {
         | 
| @@ -2583,7 +2583,7 @@ | |
| 2583 2583 | 
             
                            "word": "mathematical"
         | 
| 2584 2584 | 
             
                          },
         | 
| 2585 2585 | 
             
                          "modifiers": [
         | 
| 2586 | 
            -
                            " | 
| 2586 | 
            +
                            "modifier_mathematical"
         | 
| 2587 2587 | 
             
                          ],
         | 
| 2588 2588 | 
             
                          "number": "many",
         | 
| 2589 2589 | 
             
                          "range": {
         | 
| @@ -2676,7 +2676,7 @@ | |
| 2676 2676 | 
             
                ],
         | 
| 2677 2677 | 
             
                "query": "what is 10 times 2 times 3",
         | 
| 2678 2678 | 
             
                "responses": [
         | 
| 2679 | 
            -
                  "times is 60"
         | 
| 2679 | 
            +
                  "10 times 2 times 3 is 60"
         | 
| 2680 2680 | 
             
                ]
         | 
| 2681 2681 | 
             
              },
         | 
| 2682 2682 | 
             
              {
         | 
| @@ -3053,7 +3053,7 @@ | |
| 3053 3053 | 
             
                  }
         | 
| 3054 3054 | 
             
                ],
         | 
| 3055 3055 | 
             
                "generatedParenthesized": [
         | 
| 3056 | 
            -
                  "(((plus) is (15)))"
         | 
| 3056 | 
            +
                  "(((((10) plus (2)) plus (3)) is (15)))"
         | 
| 3057 3057 | 
             
                ],
         | 
| 3058 3058 | 
             
                "metadata": {
         | 
| 3059 3059 | 
             
                  "opChoices": [
         | 
| @@ -3949,11 +3949,11 @@ | |
| 3949 3949 | 
             
                        },
         | 
| 3950 3950 | 
             
                        "word": "is"
         | 
| 3951 3951 | 
             
                      },
         | 
| 3952 | 
            -
                      "generatedParenthesized": "(((plus) is (15)))",
         | 
| 3952 | 
            +
                      "generatedParenthesized": "(((((10) plus (2)) plus (3)) is (15)))",
         | 
| 3953 3953 | 
             
                      "paraphrases": "what is 10 plus 2 plus 3?",
         | 
| 3954 3954 | 
             
                      "paraphrasesParenthesized": "(((what) is (((10) plus (2)) plus (3)))?)",
         | 
| 3955 3955 | 
             
                      "responses": [
         | 
| 3956 | 
            -
                        "plus is 15"
         | 
| 3956 | 
            +
                        "10 plus 2 plus 3 is 15"
         | 
| 3957 3957 | 
             
                      ]
         | 
| 3958 3958 | 
             
                    },
         | 
| 3959 3959 | 
             
                    {
         | 
| @@ -4048,7 +4048,7 @@ | |
| 4048 4048 | 
             
                          "dead": true,
         | 
| 4049 4049 | 
             
                          "level": 1,
         | 
| 4050 4050 | 
             
                          "marker": "mathematical_operator",
         | 
| 4051 | 
            -
                          " | 
| 4051 | 
            +
                          "modifier_mathematical": {
         | 
| 4052 4052 | 
             
                            "level": 0,
         | 
| 4053 4053 | 
             
                            "marker": "mathematical",
         | 
| 4054 4054 | 
             
                            "range": {
         | 
| @@ -4063,7 +4063,7 @@ | |
| 4063 4063 | 
             
                            "word": "mathematical"
         | 
| 4064 4064 | 
             
                          },
         | 
| 4065 4065 | 
             
                          "modifiers": [
         | 
| 4066 | 
            -
                            " | 
| 4066 | 
            +
                            "modifier_mathematical"
         | 
| 4067 4067 | 
             
                          ],
         | 
| 4068 4068 | 
             
                          "number": "many",
         | 
| 4069 4069 | 
             
                          "range": {
         | 
| @@ -4156,7 +4156,7 @@ | |
| 4156 4156 | 
             
                ],
         | 
| 4157 4157 | 
             
                "query": "what is 10 plus 2 plus 3",
         | 
| 4158 4158 | 
             
                "responses": [
         | 
| 4159 | 
            -
                  "plus is 15"
         | 
| 4159 | 
            +
                  "10 plus 2 plus 3 is 15"
         | 
| 4160 4160 | 
             
                ]
         | 
| 4161 4161 | 
             
              },
         | 
| 4162 4162 | 
             
              {
         | 
| @@ -4555,7 +4555,7 @@ | |
| 4555 4555 | 
             
                  }
         | 
| 4556 4556 | 
             
                ],
         | 
| 4557 4557 | 
             
                "generatedParenthesized": [
         | 
| 4558 | 
            -
                  "(((plus) is (16)))"
         | 
| 4558 | 
            +
                  "((((10) plus ((2) times (3))) is (16)))"
         | 
| 4559 4559 | 
             
                ],
         | 
| 4560 4560 | 
             
                "metadata": {
         | 
| 4561 4561 | 
             
                  "opChoices": [
         | 
| @@ -5451,11 +5451,11 @@ | |
| 5451 5451 | 
             
                        },
         | 
| 5452 5452 | 
             
                        "word": "is"
         | 
| 5453 5453 | 
             
                      },
         | 
| 5454 | 
            -
                      "generatedParenthesized": "(((plus) is (16)))",
         | 
| 5454 | 
            +
                      "generatedParenthesized": "((((10) plus ((2) times (3))) is (16)))",
         | 
| 5455 5455 | 
             
                      "paraphrases": "what is 10 plus 2 times 3?",
         | 
| 5456 5456 | 
             
                      "paraphrasesParenthesized": "(((what) is ((10) plus ((2) times (3))))?)",
         | 
| 5457 5457 | 
             
                      "responses": [
         | 
| 5458 | 
            -
                        "plus is 16"
         | 
| 5458 | 
            +
                        "10 plus 2 times 3 is 16"
         | 
| 5459 5459 | 
             
                      ]
         | 
| 5460 5460 | 
             
                    },
         | 
| 5461 5461 | 
             
                    {
         | 
| @@ -5550,7 +5550,7 @@ | |
| 5550 5550 | 
             
                          "dead": true,
         | 
| 5551 5551 | 
             
                          "level": 1,
         | 
| 5552 5552 | 
             
                          "marker": "mathematical_operator",
         | 
| 5553 | 
            -
                          " | 
| 5553 | 
            +
                          "modifier_mathematical": {
         | 
| 5554 5554 | 
             
                            "level": 0,
         | 
| 5555 5555 | 
             
                            "marker": "mathematical",
         | 
| 5556 5556 | 
             
                            "range": {
         | 
| @@ -5565,7 +5565,7 @@ | |
| 5565 5565 | 
             
                            "word": "mathematical"
         | 
| 5566 5566 | 
             
                          },
         | 
| 5567 5567 | 
             
                          "modifiers": [
         | 
| 5568 | 
            -
                            " | 
| 5568 | 
            +
                            "modifier_mathematical"
         | 
| 5569 5569 | 
             
                          ],
         | 
| 5570 5570 | 
             
                          "number": "many",
         | 
| 5571 5571 | 
             
                          "range": {
         | 
| @@ -5658,7 +5658,7 @@ | |
| 5658 5658 | 
             
                ],
         | 
| 5659 5659 | 
             
                "query": "what is 10 plus 2 times 3",
         | 
| 5660 5660 | 
             
                "responses": [
         | 
| 5661 | 
            -
                  "plus is 16"
         | 
| 5661 | 
            +
                  "10 plus 2 times 3 is 16"
         | 
| 5662 5662 | 
             
                ]
         | 
| 5663 5663 | 
             
              },
         | 
| 5664 5664 | 
             
              {
         | 
| @@ -6188,7 +6188,7 @@ | |
| 6188 6188 | 
             
                  }
         | 
| 6189 6189 | 
             
                ],
         | 
| 6190 6190 | 
             
                "generatedParenthesized": [
         | 
| 6191 | 
            -
                  "(((minus) is (14)))"
         | 
| 6191 | 
            +
                  "(((((10) plus ((2) times (3))) minus (2)) is (14)))"
         | 
| 6192 6192 | 
             
                ],
         | 
| 6193 6193 | 
             
                "metadata": {
         | 
| 6194 6194 | 
             
                  "opChoices": [
         | 
| @@ -7275,11 +7275,11 @@ | |
| 7275 7275 | 
             
                        },
         | 
| 7276 7276 | 
             
                        "word": "is"
         | 
| 7277 7277 | 
             
                      },
         | 
| 7278 | 
            -
                      "generatedParenthesized": "(((minus) is (14)))",
         | 
| 7278 | 
            +
                      "generatedParenthesized": "(((((10) plus ((2) times (3))) minus (2)) is (14)))",
         | 
| 7279 7279 | 
             
                      "paraphrases": "what is 10 plus 2 times 3 minus 2?",
         | 
| 7280 7280 | 
             
                      "paraphrasesParenthesized": "(((what) is (((10) plus ((2) times (3))) minus (2)))?)",
         | 
| 7281 7281 | 
             
                      "responses": [
         | 
| 7282 | 
            -
                        "minus is 14"
         | 
| 7282 | 
            +
                        "10 plus 2 times 3 minus 2 is 14"
         | 
| 7283 7283 | 
             
                      ]
         | 
| 7284 7284 | 
             
                    },
         | 
| 7285 7285 | 
             
                    {
         | 
| @@ -7374,7 +7374,7 @@ | |
| 7374 7374 | 
             
                          "dead": true,
         | 
| 7375 7375 | 
             
                          "level": 1,
         | 
| 7376 7376 | 
             
                          "marker": "mathematical_operator",
         | 
| 7377 | 
            -
                          " | 
| 7377 | 
            +
                          "modifier_mathematical": {
         | 
| 7378 7378 | 
             
                            "level": 0,
         | 
| 7379 7379 | 
             
                            "marker": "mathematical",
         | 
| 7380 7380 | 
             
                            "range": {
         | 
| @@ -7389,7 +7389,7 @@ | |
| 7389 7389 | 
             
                            "word": "mathematical"
         | 
| 7390 7390 | 
             
                          },
         | 
| 7391 7391 | 
             
                          "modifiers": [
         | 
| 7392 | 
            -
                            " | 
| 7392 | 
            +
                            "modifier_mathematical"
         | 
| 7393 7393 | 
             
                          ],
         | 
| 7394 7394 | 
             
                          "number": "many",
         | 
| 7395 7395 | 
             
                          "range": {
         | 
| @@ -7482,7 +7482,7 @@ | |
| 7482 7482 | 
             
                ],
         | 
| 7483 7483 | 
             
                "query": "what is 10 plus 2 times 3 minus 2",
         | 
| 7484 7484 | 
             
                "responses": [
         | 
| 7485 | 
            -
                  "minus is 14"
         | 
| 7485 | 
            +
                  "10 plus 2 times 3 minus 2 is 14"
         | 
| 7486 7486 | 
             
                ]
         | 
| 7487 7487 | 
             
              },
         | 
| 7488 7488 | 
             
              {
         | 
| @@ -7758,7 +7758,7 @@ | |
| 7758 7758 | 
             
                  }
         | 
| 7759 7759 | 
             
                ],
         | 
| 7760 7760 | 
             
                "generatedParenthesized": [
         | 
| 7761 | 
            -
                  "(((+) is (20)))"
         | 
| 7761 | 
            +
                  "((((10) + (10)) is (20)))"
         | 
| 7762 7762 | 
             
                ],
         | 
| 7763 7763 | 
             
                "metadata": {
         | 
| 7764 7764 | 
             
                  "opChoices": [
         | 
| @@ -8479,11 +8479,11 @@ | |
| 8479 8479 | 
             
                        },
         | 
| 8480 8480 | 
             
                        "word": "is"
         | 
| 8481 8481 | 
             
                      },
         | 
| 8482 | 
            -
                      "generatedParenthesized": "(((+) is (20)))",
         | 
| 8482 | 
            +
                      "generatedParenthesized": "((((10) + (10)) is (20)))",
         | 
| 8483 8483 | 
             
                      "paraphrases": "what is 10 + 10?",
         | 
| 8484 8484 | 
             
                      "paraphrasesParenthesized": "(((what) is ((10) + (10)))?)",
         | 
| 8485 8485 | 
             
                      "responses": [
         | 
| 8486 | 
            -
                        "+ is 20"
         | 
| 8486 | 
            +
                        "10 + 10 is 20"
         | 
| 8487 8487 | 
             
                      ]
         | 
| 8488 8488 | 
             
                    },
         | 
| 8489 8489 | 
             
                    {
         | 
| @@ -8578,7 +8578,7 @@ | |
| 8578 8578 | 
             
                          "dead": true,
         | 
| 8579 8579 | 
             
                          "level": 1,
         | 
| 8580 8580 | 
             
                          "marker": "mathematical_operator",
         | 
| 8581 | 
            -
                          " | 
| 8581 | 
            +
                          "modifier_mathematical": {
         | 
| 8582 8582 | 
             
                            "level": 0,
         | 
| 8583 8583 | 
             
                            "marker": "mathematical",
         | 
| 8584 8584 | 
             
                            "range": {
         | 
| @@ -8593,7 +8593,7 @@ | |
| 8593 8593 | 
             
                            "word": "mathematical"
         | 
| 8594 8594 | 
             
                          },
         | 
| 8595 8595 | 
             
                          "modifiers": [
         | 
| 8596 | 
            -
                            " | 
| 8596 | 
            +
                            "modifier_mathematical"
         | 
| 8597 8597 | 
             
                          ],
         | 
| 8598 8598 | 
             
                          "number": "many",
         | 
| 8599 8599 | 
             
                          "range": {
         | 
| @@ -8686,7 +8686,7 @@ | |
| 8686 8686 | 
             
                ],
         | 
| 8687 8687 | 
             
                "query": "what is 10 + 10",
         | 
| 8688 8688 | 
             
                "responses": [
         | 
| 8689 | 
            -
                  "+ is 20"
         | 
| 8689 | 
            +
                  "10 + 10 is 20"
         | 
| 8690 8690 | 
             
                ]
         | 
| 8691 8691 | 
             
              },
         | 
| 8692 8692 | 
             
              {
         | 
| @@ -9228,7 +9228,7 @@ | |
| 9228 9228 | 
             
                  }
         | 
| 9229 9229 | 
             
                ],
         | 
| 9230 9230 | 
             
                "generatedParenthesized": [
         | 
| 9231 | 
            -
                  "(((-) is (99)))"
         | 
| 9231 | 
            +
                  "((((((10) * (10)) + (2)) - (3)) is (99)))"
         | 
| 9232 9232 | 
             
                ],
         | 
| 9233 9233 | 
             
                "metadata": {
         | 
| 9234 9234 | 
             
                  "opChoices": [
         | 
| @@ -10315,11 +10315,11 @@ | |
| 10315 10315 | 
             
                        },
         | 
| 10316 10316 | 
             
                        "word": "is"
         | 
| 10317 10317 | 
             
                      },
         | 
| 10318 | 
            -
                      "generatedParenthesized": "(((-) is (99)))",
         | 
| 10318 | 
            +
                      "generatedParenthesized": "((((((10) * (10)) + (2)) - (3)) is (99)))",
         | 
| 10319 10319 | 
             
                      "paraphrases": "what is 10 * 10 + 2 - 3?",
         | 
| 10320 10320 | 
             
                      "paraphrasesParenthesized": "(((what) is ((((10) * (10)) + (2)) - (3)))?)",
         | 
| 10321 10321 | 
             
                      "responses": [
         | 
| 10322 | 
            -
                        "- is 99"
         | 
| 10322 | 
            +
                        "10 * 10 + 2 - 3 is 99"
         | 
| 10323 10323 | 
             
                      ]
         | 
| 10324 10324 | 
             
                    },
         | 
| 10325 10325 | 
             
                    {
         | 
| @@ -10414,7 +10414,7 @@ | |
| 10414 10414 | 
             
                          "dead": true,
         | 
| 10415 10415 | 
             
                          "level": 1,
         | 
| 10416 10416 | 
             
                          "marker": "mathematical_operator",
         | 
| 10417 | 
            -
                          " | 
| 10417 | 
            +
                          "modifier_mathematical": {
         | 
| 10418 10418 | 
             
                            "level": 0,
         | 
| 10419 10419 | 
             
                            "marker": "mathematical",
         | 
| 10420 10420 | 
             
                            "range": {
         | 
| @@ -10429,7 +10429,7 @@ | |
| 10429 10429 | 
             
                            "word": "mathematical"
         | 
| 10430 10430 | 
             
                          },
         | 
| 10431 10431 | 
             
                          "modifiers": [
         | 
| 10432 | 
            -
                            " | 
| 10432 | 
            +
                            "modifier_mathematical"
         | 
| 10433 10433 | 
             
                          ],
         | 
| 10434 10434 | 
             
                          "number": "many",
         | 
| 10435 10435 | 
             
                          "range": {
         | 
| @@ -10522,7 +10522,7 @@ | |
| 10522 10522 | 
             
                ],
         | 
| 10523 10523 | 
             
                "query": "what is 10 * 10 + 2 - 3",
         | 
| 10524 10524 | 
             
                "responses": [
         | 
| 10525 | 
            -
                  "- is 99"
         | 
| 10525 | 
            +
                  "10 * 10 + 2 - 3 is 99"
         | 
| 10526 10526 | 
             
                ]
         | 
| 10527 10527 | 
             
              },
         | 
| 10528 10528 | 
             
              {
         | 
| @@ -11199,7 +11199,7 @@ | |
| 11199 11199 | 
             
                          "dead": true,
         | 
| 11200 11200 | 
             
                          "level": 1,
         | 
| 11201 11201 | 
             
                          "marker": "mathematical_operator",
         | 
| 11202 | 
            -
                          " | 
| 11202 | 
            +
                          "modifier_mathematical": {
         | 
| 11203 11203 | 
             
                            "level": 0,
         | 
| 11204 11204 | 
             
                            "marker": "mathematical",
         | 
| 11205 11205 | 
             
                            "range": {
         | 
| @@ -11214,7 +11214,7 @@ | |
| 11214 11214 | 
             
                            "word": "mathematical"
         | 
| 11215 11215 | 
             
                          },
         | 
| 11216 11216 | 
             
                          "modifiers": [
         | 
| 11217 | 
            -
                            " | 
| 11217 | 
            +
                            "modifier_mathematical"
         | 
| 11218 11218 | 
             
                          ],
         | 
| 11219 11219 | 
             
                          "number": "many",
         | 
| 11220 11220 | 
             
                          "range": {
         | 
| @@ -12815,7 +12815,7 @@ | |
| 12815 12815 | 
             
                          "dead": true,
         | 
| 12816 12816 | 
             
                          "level": 1,
         | 
| 12817 12817 | 
             
                          "marker": "mathematical_operator",
         | 
| 12818 | 
            -
                          " | 
| 12818 | 
            +
                          "modifier_mathematical": {
         | 
| 12819 12819 | 
             
                            "level": 0,
         | 
| 12820 12820 | 
             
                            "marker": "mathematical",
         | 
| 12821 12821 | 
             
                            "range": {
         | 
| @@ -12830,7 +12830,7 @@ | |
| 12830 12830 | 
             
                            "word": "mathematical"
         | 
| 12831 12831 | 
             
                          },
         | 
| 12832 12832 | 
             
                          "modifiers": [
         | 
| 12833 | 
            -
                            " | 
| 12833 | 
            +
                            "modifier_mathematical"
         | 
| 12834 12834 | 
             
                          ],
         | 
| 12835 12835 | 
             
                          "number": "many",
         | 
| 12836 12836 | 
             
                          "range": {
         | 
| @@ -14944,7 +14944,7 @@ | |
| 14944 14944 | 
             
                          "dead": true,
         | 
| 14945 14945 | 
             
                          "level": 1,
         | 
| 14946 14946 | 
             
                          "marker": "mathematical_operator",
         | 
| 14947 | 
            -
                          " | 
| 14947 | 
            +
                          "modifier_mathematical": {
         | 
| 14948 14948 | 
             
                            "level": 0,
         | 
| 14949 14949 | 
             
                            "marker": "mathematical",
         | 
| 14950 14950 | 
             
                            "range": {
         | 
| @@ -14959,7 +14959,7 @@ | |
| 14959 14959 | 
             
                            "word": "mathematical"
         | 
| 14960 14960 | 
             
                          },
         | 
| 14961 14961 | 
             
                          "modifiers": [
         | 
| 14962 | 
            -
                            " | 
| 14962 | 
            +
                            "modifier_mathematical"
         | 
| 14963 14963 | 
             
                          ],
         | 
| 14964 14964 | 
             
                          "number": "many",
         | 
| 14965 14965 | 
             
                          "range": {
         | 
| @@ -16390,7 +16390,7 @@ | |
| 16390 16390 | 
             
                          "dead": true,
         | 
| 16391 16391 | 
             
                          "level": 1,
         | 
| 16392 16392 | 
             
                          "marker": "mathematical_operator",
         | 
| 16393 | 
            -
                          " | 
| 16393 | 
            +
                          "modifier_mathematical": {
         | 
| 16394 16394 | 
             
                            "level": 0,
         | 
| 16395 16395 | 
             
                            "marker": "mathematical",
         | 
| 16396 16396 | 
             
                            "range": {
         | 
| @@ -16405,7 +16405,7 @@ | |
| 16405 16405 | 
             
                            "word": "mathematical"
         | 
| 16406 16406 | 
             
                          },
         | 
| 16407 16407 | 
             
                          "modifiers": [
         | 
| 16408 | 
            -
                            " | 
| 16408 | 
            +
                            "modifier_mathematical"
         | 
| 16409 16409 | 
             
                          ],
         | 
| 16410 16410 | 
             
                          "number": "many",
         | 
| 16411 16411 | 
             
                          "range": {
         | 
| @@ -16966,7 +16966,7 @@ | |
| 16966 16966 | 
             
                "generatedParenthesized": [
         | 
| 16967 16967 | 
             
                  "",
         | 
| 16968 16968 | 
             
                  "",
         | 
| 16969 | 
            -
                  "(((times) is (600)))"
         | 
| 16969 | 
            +
                  "((((price) times (quantity)) is (600)))"
         | 
| 16970 16970 | 
             
                ],
         | 
| 16971 16971 | 
             
                "metadata": {
         | 
| 16972 16972 | 
             
                  "opChoices": [
         | 
| @@ -18109,13 +18109,13 @@ | |
| 18109 18109 | 
             
                        },
         | 
| 18110 18110 | 
             
                        "word": "is"
         | 
| 18111 18111 | 
             
                      },
         | 
| 18112 | 
            -
                      "generatedParenthesized": "(((times) is (600)))",
         | 
| 18112 | 
            +
                      "generatedParenthesized": "((((price) times (quantity)) is (600)))",
         | 
| 18113 18113 | 
             
                      "paraphrases": "what is price times quantity?",
         | 
| 18114 18114 | 
             
                      "paraphrasesParenthesized": "(((what) is ((price) times (quantity)))?)",
         | 
| 18115 18115 | 
             
                      "responses": [
         | 
| 18116 18116 | 
             
                        "",
         | 
| 18117 18117 | 
             
                        "",
         | 
| 18118 | 
            -
                        "times is 600"
         | 
| 18118 | 
            +
                        "price times quantity is 600"
         | 
| 18119 18119 | 
             
                      ]
         | 
| 18120 18120 | 
             
                    },
         | 
| 18121 18121 | 
             
                    {
         | 
| @@ -18175,7 +18175,7 @@ | |
| 18175 18175 | 
             
                      "responses": [
         | 
| 18176 18176 | 
             
                        "",
         | 
| 18177 18177 | 
             
                        "",
         | 
| 18178 | 
            -
                        "times is 600"
         | 
| 18178 | 
            +
                        "price times quantity is 600"
         | 
| 18179 18179 | 
             
                      ]
         | 
| 18180 18180 | 
             
                    },
         | 
| 18181 18181 | 
             
                    {
         | 
| @@ -18235,7 +18235,7 @@ | |
| 18235 18235 | 
             
                      "responses": [
         | 
| 18236 18236 | 
             
                        "",
         | 
| 18237 18237 | 
             
                        "",
         | 
| 18238 | 
            -
                        "times is 600"
         | 
| 18238 | 
            +
                        "price times quantity is 600"
         | 
| 18239 18239 | 
             
                      ]
         | 
| 18240 18240 | 
             
                    },
         | 
| 18241 18241 | 
             
                    {
         | 
| @@ -18330,7 +18330,7 @@ | |
| 18330 18330 | 
             
                          "dead": true,
         | 
| 18331 18331 | 
             
                          "level": 1,
         | 
| 18332 18332 | 
             
                          "marker": "mathematical_operator",
         | 
| 18333 | 
            -
                          " | 
| 18333 | 
            +
                          "modifier_mathematical": {
         | 
| 18334 18334 | 
             
                            "level": 0,
         | 
| 18335 18335 | 
             
                            "marker": "mathematical",
         | 
| 18336 18336 | 
             
                            "range": {
         | 
| @@ -18345,7 +18345,7 @@ | |
| 18345 18345 | 
             
                            "word": "mathematical"
         | 
| 18346 18346 | 
             
                          },
         | 
| 18347 18347 | 
             
                          "modifiers": [
         | 
| 18348 | 
            -
                            " | 
| 18348 | 
            +
                            "modifier_mathematical"
         | 
| 18349 18349 | 
             
                          ],
         | 
| 18350 18350 | 
             
                          "number": "many",
         | 
| 18351 18351 | 
             
                          "range": {
         | 
| @@ -18444,7 +18444,7 @@ | |
| 18444 18444 | 
             
                "responses": [
         | 
| 18445 18445 | 
             
                  "",
         | 
| 18446 18446 | 
             
                  "",
         | 
| 18447 | 
            -
                  "times is 600"
         | 
| 18447 | 
            +
                  "price times quantity is 600"
         | 
| 18448 18448 | 
             
                ]
         | 
| 18449 18449 | 
             
              },
         | 
| 18450 18450 | 
             
              {
         | 
| @@ -19026,7 +19026,7 @@ | |
| 19026 19026 | 
             
                  "",
         | 
| 19027 19027 | 
             
                  "",
         | 
| 19028 19028 | 
             
                  "",
         | 
| 19029 | 
            -
                  "(((worth) is ((600))))"
         | 
| 19029 | 
            +
                  "(((the (worth)) is ((600))))"
         | 
| 19030 19030 | 
             
                ],
         | 
| 19031 19031 | 
             
                "metadata": {
         | 
| 19032 19032 | 
             
                  "opChoices": [
         | 
| @@ -20608,14 +20608,14 @@ | |
| 20608 20608 | 
             
                        },
         | 
| 20609 20609 | 
             
                        "word": "is"
         | 
| 20610 20610 | 
             
                      },
         | 
| 20611 | 
            -
                      "generatedParenthesized": "(((worth) is ((600))))",
         | 
| 20611 | 
            +
                      "generatedParenthesized": "(((the (worth)) is ((600))))",
         | 
| 20612 20612 | 
             
                      "paraphrases": "what is the worth?",
         | 
| 20613 20613 | 
             
                      "paraphrasesParenthesized": "(((what) is (the (worth)))?)",
         | 
| 20614 20614 | 
             
                      "responses": [
         | 
| 20615 20615 | 
             
                        "",
         | 
| 20616 20616 | 
             
                        "",
         | 
| 20617 20617 | 
             
                        "",
         | 
| 20618 | 
            -
                        "worth is 600"
         | 
| 20618 | 
            +
                        "the worth is 600"
         | 
| 20619 20619 | 
             
                      ]
         | 
| 20620 20620 | 
             
                    },
         | 
| 20621 20621 | 
             
                    {
         | 
| @@ -20712,7 +20712,7 @@ | |
| 20712 20712 | 
             
                        "",
         | 
| 20713 20713 | 
             
                        "",
         | 
| 20714 20714 | 
             
                        "",
         | 
| 20715 | 
            -
                        "worth is 600"
         | 
| 20715 | 
            +
                        "the worth is 600"
         | 
| 20716 20716 | 
             
                      ]
         | 
| 20717 20717 | 
             
                    },
         | 
| 20718 20718 | 
             
                    {
         | 
| @@ -20773,7 +20773,7 @@ | |
| 20773 20773 | 
             
                        "",
         | 
| 20774 20774 | 
             
                        "",
         | 
| 20775 20775 | 
             
                        "",
         | 
| 20776 | 
            -
                        "worth is 600"
         | 
| 20776 | 
            +
                        "the worth is 600"
         | 
| 20777 20777 | 
             
                      ]
         | 
| 20778 20778 | 
             
                    },
         | 
| 20779 20779 | 
             
                    {
         | 
| @@ -20834,7 +20834,7 @@ | |
| 20834 20834 | 
             
                        "",
         | 
| 20835 20835 | 
             
                        "",
         | 
| 20836 20836 | 
             
                        "",
         | 
| 20837 | 
            -
                        "worth is 600"
         | 
| 20837 | 
            +
                        "the worth is 600"
         | 
| 20838 20838 | 
             
                      ]
         | 
| 20839 20839 | 
             
                    },
         | 
| 20840 20840 | 
             
                    {
         | 
| @@ -20929,7 +20929,7 @@ | |
| 20929 20929 | 
             
                          "dead": true,
         | 
| 20930 20930 | 
             
                          "level": 1,
         | 
| 20931 20931 | 
             
                          "marker": "mathematical_operator",
         | 
| 20932 | 
            -
                          " | 
| 20932 | 
            +
                          "modifier_mathematical": {
         | 
| 20933 20933 | 
             
                            "level": 0,
         | 
| 20934 20934 | 
             
                            "marker": "mathematical",
         | 
| 20935 20935 | 
             
                            "range": {
         | 
| @@ -20944,7 +20944,7 @@ | |
| 20944 20944 | 
             
                            "word": "mathematical"
         | 
| 20945 20945 | 
             
                          },
         | 
| 20946 20946 | 
             
                          "modifiers": [
         | 
| 20947 | 
            -
                            " | 
| 20947 | 
            +
                            "modifier_mathematical"
         | 
| 20948 20948 | 
             
                          ],
         | 
| 20949 20949 | 
             
                          "number": "many",
         | 
| 20950 20950 | 
             
                          "range": {
         | 
| @@ -21046,7 +21046,7 @@ | |
| 21046 21046 | 
             
                  "",
         | 
| 21047 21047 | 
             
                  "",
         | 
| 21048 21048 | 
             
                  "",
         | 
| 21049 | 
            -
                  "worth is 600"
         | 
| 21049 | 
            +
                  "the worth is 600"
         | 
| 21050 21050 | 
             
                ]
         | 
| 21051 21051 | 
             
              },
         | 
| 21052 21052 | 
             
              {
         | 
| @@ -21723,7 +21723,7 @@ | |
| 21723 21723 | 
             
                          "dead": true,
         | 
| 21724 21724 | 
             
                          "level": 1,
         | 
| 21725 21725 | 
             
                          "marker": "mathematical_operator",
         | 
| 21726 | 
            -
                          " | 
| 21726 | 
            +
                          "modifier_mathematical": {
         | 
| 21727 21727 | 
             
                            "level": 0,
         | 
| 21728 21728 | 
             
                            "marker": "mathematical",
         | 
| 21729 21729 | 
             
                            "range": {
         | 
| @@ -21738,7 +21738,7 @@ | |
| 21738 21738 | 
             
                            "word": "mathematical"
         | 
| 21739 21739 | 
             
                          },
         | 
| 21740 21740 | 
             
                          "modifiers": [
         | 
| 21741 | 
            -
                            " | 
| 21741 | 
            +
                            "modifier_mathematical"
         | 
| 21742 21742 | 
             
                          ],
         | 
| 21743 21743 | 
             
                          "number": "many",
         | 
| 21744 21744 | 
             
                          "range": {
         | 
| @@ -21877,59 +21877,7 @@ | |
| 21877 21877 | 
             
                  {
         | 
| 21878 21878 | 
             
                    "dead": true,
         | 
| 21879 21879 | 
             
                    "evaluate": true,
         | 
| 21880 | 
            -
                    " | 
| 21881 | 
            -
                      "dead": true,
         | 
| 21882 | 
            -
                      "evaluate": true,
         | 
| 21883 | 
            -
                      "isResponse": true,
         | 
| 21884 | 
            -
                      "level": 1,
         | 
| 21885 | 
            -
                      "marker": "plusExpression",
         | 
| 21886 | 
            -
                      "number": "one",
         | 
| 21887 | 
            -
                      "paraphrase": true,
         | 
| 21888 | 
            -
                      "range": {
         | 
| 21889 | 
            -
                        "end": 4,
         | 
| 21890 | 
            -
                        "start": 0
         | 
| 21891 | 
            -
                      },
         | 
| 21892 | 
            -
                      "text": "4 + x",
         | 
| 21893 | 
            -
                      "topLevel": true,
         | 
| 21894 | 
            -
                      "types": [
         | 
| 21895 | 
            -
                        "number",
         | 
| 21896 | 
            -
                        "plusExpression"
         | 
| 21897 | 
            -
                      ],
         | 
| 21898 | 
            -
                      "value": null,
         | 
| 21899 | 
            -
                      "word": "+",
         | 
| 21900 | 
            -
                      "x": {
         | 
| 21901 | 
            -
                        "dead": true,
         | 
| 21902 | 
            -
                        "instance": true,
         | 
| 21903 | 
            -
                        "level": 1,
         | 
| 21904 | 
            -
                        "marker": "number",
         | 
| 21905 | 
            -
                        "range": {
         | 
| 21906 | 
            -
                          "end": 0,
         | 
| 21907 | 
            -
                          "start": 0
         | 
| 21908 | 
            -
                        },
         | 
| 21909 | 
            -
                        "text": "4",
         | 
| 21910 | 
            -
                        "types": [
         | 
| 21911 | 
            -
                          "number"
         | 
| 21912 | 
            -
                        ],
         | 
| 21913 | 
            -
                        "value": 4,
         | 
| 21914 | 
            -
                        "word": "4"
         | 
| 21915 | 
            -
                      },
         | 
| 21916 | 
            -
                      "y": {
         | 
| 21917 | 
            -
                        "dead": true,
         | 
| 21918 | 
            -
                        "default": true,
         | 
| 21919 | 
            -
                        "level": 1,
         | 
| 21920 | 
            -
                        "marker": "x",
         | 
| 21921 | 
            -
                        "range": {
         | 
| 21922 | 
            -
                          "end": 4,
         | 
| 21923 | 
            -
                          "start": 4
         | 
| 21924 | 
            -
                        },
         | 
| 21925 | 
            -
                        "text": "x",
         | 
| 21926 | 
            -
                        "types": [
         | 
| 21927 | 
            -
                          "x"
         | 
| 21928 | 
            -
                        ],
         | 
| 21929 | 
            -
                        "word": "x"
         | 
| 21930 | 
            -
                      }
         | 
| 21931 | 
            -
                    },
         | 
| 21932 | 
            -
                    "isResponse": true,
         | 
| 21880 | 
            +
                    "isResponse": false,
         | 
| 21933 21881 | 
             
                    "level": 1,
         | 
| 21934 21882 | 
             
                    "marker": "plusExpression",
         | 
| 21935 21883 | 
             
                    "number": "one",
         | 
| @@ -21983,7 +21931,7 @@ | |
| 21983 21931 | 
             
                  }
         | 
| 21984 21932 | 
             
                ],
         | 
| 21985 21933 | 
             
                "generatedParenthesized": [
         | 
| 21986 | 
            -
                  " | 
| 21934 | 
            +
                  ""
         | 
| 21987 21935 | 
             
                ],
         | 
| 21988 21936 | 
             
                "metadata": {
         | 
| 21989 21937 | 
             
                  "opChoices": [
         | 
| @@ -22431,59 +22379,7 @@ | |
| 22431 22379 | 
             
                      "context": {
         | 
| 22432 22380 | 
             
                        "dead": true,
         | 
| 22433 22381 | 
             
                        "evaluate": true,
         | 
| 22434 | 
            -
                        " | 
| 22435 | 
            -
                          "dead": true,
         | 
| 22436 | 
            -
                          "evaluate": true,
         | 
| 22437 | 
            -
                          "isResponse": true,
         | 
| 22438 | 
            -
                          "level": 1,
         | 
| 22439 | 
            -
                          "marker": "plusExpression",
         | 
| 22440 | 
            -
                          "number": "one",
         | 
| 22441 | 
            -
                          "paraphrase": true,
         | 
| 22442 | 
            -
                          "range": {
         | 
| 22443 | 
            -
                            "end": 4,
         | 
| 22444 | 
            -
                            "start": 0
         | 
| 22445 | 
            -
                          },
         | 
| 22446 | 
            -
                          "text": "4 + x",
         | 
| 22447 | 
            -
                          "topLevel": true,
         | 
| 22448 | 
            -
                          "types": [
         | 
| 22449 | 
            -
                            "number",
         | 
| 22450 | 
            -
                            "plusExpression"
         | 
| 22451 | 
            -
                          ],
         | 
| 22452 | 
            -
                          "value": null,
         | 
| 22453 | 
            -
                          "word": "+",
         | 
| 22454 | 
            -
                          "x": {
         | 
| 22455 | 
            -
                            "dead": true,
         | 
| 22456 | 
            -
                            "instance": true,
         | 
| 22457 | 
            -
                            "level": 1,
         | 
| 22458 | 
            -
                            "marker": "number",
         | 
| 22459 | 
            -
                            "range": {
         | 
| 22460 | 
            -
                              "end": 0,
         | 
| 22461 | 
            -
                              "start": 0
         | 
| 22462 | 
            -
                            },
         | 
| 22463 | 
            -
                            "text": "4",
         | 
| 22464 | 
            -
                            "types": [
         | 
| 22465 | 
            -
                              "number"
         | 
| 22466 | 
            -
                            ],
         | 
| 22467 | 
            -
                            "value": 4,
         | 
| 22468 | 
            -
                            "word": "4"
         | 
| 22469 | 
            -
                          },
         | 
| 22470 | 
            -
                          "y": {
         | 
| 22471 | 
            -
                            "dead": true,
         | 
| 22472 | 
            -
                            "default": true,
         | 
| 22473 | 
            -
                            "level": 1,
         | 
| 22474 | 
            -
                            "marker": "x",
         | 
| 22475 | 
            -
                            "range": {
         | 
| 22476 | 
            -
                              "end": 4,
         | 
| 22477 | 
            -
                              "start": 4
         | 
| 22478 | 
            -
                            },
         | 
| 22479 | 
            -
                            "text": "x",
         | 
| 22480 | 
            -
                            "types": [
         | 
| 22481 | 
            -
                              "x"
         | 
| 22482 | 
            -
                            ],
         | 
| 22483 | 
            -
                            "word": "x"
         | 
| 22484 | 
            -
                          }
         | 
| 22485 | 
            -
                        },
         | 
| 22486 | 
            -
                        "isResponse": true,
         | 
| 22382 | 
            +
                        "isResponse": false,
         | 
| 22487 22383 | 
             
                        "level": 1,
         | 
| 22488 22384 | 
             
                        "marker": "plusExpression",
         | 
| 22489 22385 | 
             
                        "number": "one",
         | 
| @@ -22535,11 +22431,11 @@ | |
| 22535 22431 | 
             
                          "word": "x"
         | 
| 22536 22432 | 
             
                        }
         | 
| 22537 22433 | 
             
                      },
         | 
| 22538 | 
            -
                      "generatedParenthesized": " | 
| 22434 | 
            +
                      "generatedParenthesized": "",
         | 
| 22539 22435 | 
             
                      "paraphrases": "4 + x",
         | 
| 22540 22436 | 
             
                      "paraphrasesParenthesized": "((4) + (x))",
         | 
| 22541 22437 | 
             
                      "responses": [
         | 
| 22542 | 
            -
                        " | 
| 22438 | 
            +
                        ""
         | 
| 22543 22439 | 
             
                      ]
         | 
| 22544 22440 | 
             
                    },
         | 
| 22545 22441 | 
             
                    {
         | 
| @@ -22634,7 +22530,7 @@ | |
| 22634 22530 | 
             
                          "dead": true,
         | 
| 22635 22531 | 
             
                          "level": 1,
         | 
| 22636 22532 | 
             
                          "marker": "mathematical_operator",
         | 
| 22637 | 
            -
                          " | 
| 22533 | 
            +
                          "modifier_mathematical": {
         | 
| 22638 22534 | 
             
                            "level": 0,
         | 
| 22639 22535 | 
             
                            "marker": "mathematical",
         | 
| 22640 22536 | 
             
                            "range": {
         | 
| @@ -22649,7 +22545,7 @@ | |
| 22649 22545 | 
             
                            "word": "mathematical"
         | 
| 22650 22546 | 
             
                          },
         | 
| 22651 22547 | 
             
                          "modifiers": [
         | 
| 22652 | 
            -
                            " | 
| 22548 | 
            +
                            "modifier_mathematical"
         | 
| 22653 22549 | 
             
                          ],
         | 
| 22654 22550 | 
             
                          "number": "many",
         | 
| 22655 22551 | 
             
                          "range": {
         | 
| @@ -22742,7 +22638,7 @@ | |
| 22742 22638 | 
             
                ],
         | 
| 22743 22639 | 
             
                "query": "4 + x",
         | 
| 22744 22640 | 
             
                "responses": [
         | 
| 22745 | 
            -
                  " | 
| 22641 | 
            +
                  ""
         | 
| 22746 22642 | 
             
                ]
         | 
| 22747 22643 | 
             
              },
         | 
| 22748 22644 | 
             
              {
         | 
| @@ -22788,59 +22684,7 @@ | |
| 22788 22684 | 
             
                  {
         | 
| 22789 22685 | 
             
                    "dead": true,
         | 
| 22790 22686 | 
             
                    "evaluate": true,
         | 
| 22791 | 
            -
                    " | 
| 22792 | 
            -
                      "dead": true,
         | 
| 22793 | 
            -
                      "evaluate": true,
         | 
| 22794 | 
            -
                      "isResponse": true,
         | 
| 22795 | 
            -
                      "level": 1,
         | 
| 22796 | 
            -
                      "marker": "minusExpression",
         | 
| 22797 | 
            -
                      "number": "one",
         | 
| 22798 | 
            -
                      "paraphrase": true,
         | 
| 22799 | 
            -
                      "range": {
         | 
| 22800 | 
            -
                        "end": 4,
         | 
| 22801 | 
            -
                        "start": 0
         | 
| 22802 | 
            -
                      },
         | 
| 22803 | 
            -
                      "text": "4 - x",
         | 
| 22804 | 
            -
                      "topLevel": true,
         | 
| 22805 | 
            -
                      "types": [
         | 
| 22806 | 
            -
                        "minusExpression",
         | 
| 22807 | 
            -
                        "number"
         | 
| 22808 | 
            -
                      ],
         | 
| 22809 | 
            -
                      "value": null,
         | 
| 22810 | 
            -
                      "word": "-",
         | 
| 22811 | 
            -
                      "x": {
         | 
| 22812 | 
            -
                        "dead": true,
         | 
| 22813 | 
            -
                        "instance": true,
         | 
| 22814 | 
            -
                        "level": 1,
         | 
| 22815 | 
            -
                        "marker": "number",
         | 
| 22816 | 
            -
                        "range": {
         | 
| 22817 | 
            -
                          "end": 0,
         | 
| 22818 | 
            -
                          "start": 0
         | 
| 22819 | 
            -
                        },
         | 
| 22820 | 
            -
                        "text": "4",
         | 
| 22821 | 
            -
                        "types": [
         | 
| 22822 | 
            -
                          "number"
         | 
| 22823 | 
            -
                        ],
         | 
| 22824 | 
            -
                        "value": 4,
         | 
| 22825 | 
            -
                        "word": "4"
         | 
| 22826 | 
            -
                      },
         | 
| 22827 | 
            -
                      "y": {
         | 
| 22828 | 
            -
                        "dead": true,
         | 
| 22829 | 
            -
                        "default": true,
         | 
| 22830 | 
            -
                        "level": 1,
         | 
| 22831 | 
            -
                        "marker": "x",
         | 
| 22832 | 
            -
                        "range": {
         | 
| 22833 | 
            -
                          "end": 4,
         | 
| 22834 | 
            -
                          "start": 4
         | 
| 22835 | 
            -
                        },
         | 
| 22836 | 
            -
                        "text": "x",
         | 
| 22837 | 
            -
                        "types": [
         | 
| 22838 | 
            -
                          "x"
         | 
| 22839 | 
            -
                        ],
         | 
| 22840 | 
            -
                        "word": "x"
         | 
| 22841 | 
            -
                      }
         | 
| 22842 | 
            -
                    },
         | 
| 22843 | 
            -
                    "isResponse": true,
         | 
| 22687 | 
            +
                    "isResponse": false,
         | 
| 22844 22688 | 
             
                    "level": 1,
         | 
| 22845 22689 | 
             
                    "marker": "minusExpression",
         | 
| 22846 22690 | 
             
                    "number": "one",
         | 
| @@ -22894,7 +22738,7 @@ | |
| 22894 22738 | 
             
                  }
         | 
| 22895 22739 | 
             
                ],
         | 
| 22896 22740 | 
             
                "generatedParenthesized": [
         | 
| 22897 | 
            -
                  " | 
| 22741 | 
            +
                  ""
         | 
| 22898 22742 | 
             
                ],
         | 
| 22899 22743 | 
             
                "metadata": {
         | 
| 22900 22744 | 
             
                  "opChoices": [
         | 
| @@ -23342,59 +23186,7 @@ | |
| 23342 23186 | 
             
                      "context": {
         | 
| 23343 23187 | 
             
                        "dead": true,
         | 
| 23344 23188 | 
             
                        "evaluate": true,
         | 
| 23345 | 
            -
                        " | 
| 23346 | 
            -
                          "dead": true,
         | 
| 23347 | 
            -
                          "evaluate": true,
         | 
| 23348 | 
            -
                          "isResponse": true,
         | 
| 23349 | 
            -
                          "level": 1,
         | 
| 23350 | 
            -
                          "marker": "minusExpression",
         | 
| 23351 | 
            -
                          "number": "one",
         | 
| 23352 | 
            -
                          "paraphrase": true,
         | 
| 23353 | 
            -
                          "range": {
         | 
| 23354 | 
            -
                            "end": 4,
         | 
| 23355 | 
            -
                            "start": 0
         | 
| 23356 | 
            -
                          },
         | 
| 23357 | 
            -
                          "text": "4 - x",
         | 
| 23358 | 
            -
                          "topLevel": true,
         | 
| 23359 | 
            -
                          "types": [
         | 
| 23360 | 
            -
                            "minusExpression",
         | 
| 23361 | 
            -
                            "number"
         | 
| 23362 | 
            -
                          ],
         | 
| 23363 | 
            -
                          "value": null,
         | 
| 23364 | 
            -
                          "word": "-",
         | 
| 23365 | 
            -
                          "x": {
         | 
| 23366 | 
            -
                            "dead": true,
         | 
| 23367 | 
            -
                            "instance": true,
         | 
| 23368 | 
            -
                            "level": 1,
         | 
| 23369 | 
            -
                            "marker": "number",
         | 
| 23370 | 
            -
                            "range": {
         | 
| 23371 | 
            -
                              "end": 0,
         | 
| 23372 | 
            -
                              "start": 0
         | 
| 23373 | 
            -
                            },
         | 
| 23374 | 
            -
                            "text": "4",
         | 
| 23375 | 
            -
                            "types": [
         | 
| 23376 | 
            -
                              "number"
         | 
| 23377 | 
            -
                            ],
         | 
| 23378 | 
            -
                            "value": 4,
         | 
| 23379 | 
            -
                            "word": "4"
         | 
| 23380 | 
            -
                          },
         | 
| 23381 | 
            -
                          "y": {
         | 
| 23382 | 
            -
                            "dead": true,
         | 
| 23383 | 
            -
                            "default": true,
         | 
| 23384 | 
            -
                            "level": 1,
         | 
| 23385 | 
            -
                            "marker": "x",
         | 
| 23386 | 
            -
                            "range": {
         | 
| 23387 | 
            -
                              "end": 4,
         | 
| 23388 | 
            -
                              "start": 4
         | 
| 23389 | 
            -
                            },
         | 
| 23390 | 
            -
                            "text": "x",
         | 
| 23391 | 
            -
                            "types": [
         | 
| 23392 | 
            -
                              "x"
         | 
| 23393 | 
            -
                            ],
         | 
| 23394 | 
            -
                            "word": "x"
         | 
| 23395 | 
            -
                          }
         | 
| 23396 | 
            -
                        },
         | 
| 23397 | 
            -
                        "isResponse": true,
         | 
| 23189 | 
            +
                        "isResponse": false,
         | 
| 23398 23190 | 
             
                        "level": 1,
         | 
| 23399 23191 | 
             
                        "marker": "minusExpression",
         | 
| 23400 23192 | 
             
                        "number": "one",
         | 
| @@ -23446,11 +23238,11 @@ | |
| 23446 23238 | 
             
                          "word": "x"
         | 
| 23447 23239 | 
             
                        }
         | 
| 23448 23240 | 
             
                      },
         | 
| 23449 | 
            -
                      "generatedParenthesized": " | 
| 23241 | 
            +
                      "generatedParenthesized": "",
         | 
| 23450 23242 | 
             
                      "paraphrases": "4 - x",
         | 
| 23451 23243 | 
             
                      "paraphrasesParenthesized": "((4) - (x))",
         | 
| 23452 23244 | 
             
                      "responses": [
         | 
| 23453 | 
            -
                        " | 
| 23245 | 
            +
                        ""
         | 
| 23454 23246 | 
             
                      ]
         | 
| 23455 23247 | 
             
                    },
         | 
| 23456 23248 | 
             
                    {
         | 
| @@ -23545,7 +23337,7 @@ | |
| 23545 23337 | 
             
                          "dead": true,
         | 
| 23546 23338 | 
             
                          "level": 1,
         | 
| 23547 23339 | 
             
                          "marker": "mathematical_operator",
         | 
| 23548 | 
            -
                          " | 
| 23340 | 
            +
                          "modifier_mathematical": {
         | 
| 23549 23341 | 
             
                            "level": 0,
         | 
| 23550 23342 | 
             
                            "marker": "mathematical",
         | 
| 23551 23343 | 
             
                            "range": {
         | 
| @@ -23560,7 +23352,7 @@ | |
| 23560 23352 | 
             
                            "word": "mathematical"
         | 
| 23561 23353 | 
             
                          },
         | 
| 23562 23354 | 
             
                          "modifiers": [
         | 
| 23563 | 
            -
                            " | 
| 23355 | 
            +
                            "modifier_mathematical"
         | 
| 23564 23356 | 
             
                          ],
         | 
| 23565 23357 | 
             
                          "number": "many",
         | 
| 23566 23358 | 
             
                          "range": {
         | 
| @@ -23653,7 +23445,7 @@ | |
| 23653 23445 | 
             
                ],
         | 
| 23654 23446 | 
             
                "query": "4 - x",
         | 
| 23655 23447 | 
             
                "responses": [
         | 
| 23656 | 
            -
                  " | 
| 23448 | 
            +
                  ""
         | 
| 23657 23449 | 
             
                ]
         | 
| 23658 23450 | 
             
              },
         | 
| 23659 23451 | 
             
              {
         | 
| @@ -23699,59 +23491,7 @@ | |
| 23699 23491 | 
             
                  {
         | 
| 23700 23492 | 
             
                    "dead": true,
         | 
| 23701 23493 | 
             
                    "evaluate": true,
         | 
| 23702 | 
            -
                    " | 
| 23703 | 
            -
                      "dead": true,
         | 
| 23704 | 
            -
                      "evaluate": true,
         | 
| 23705 | 
            -
                      "isResponse": true,
         | 
| 23706 | 
            -
                      "level": 1,
         | 
| 23707 | 
            -
                      "marker": "timesExpression",
         | 
| 23708 | 
            -
                      "number": "one",
         | 
| 23709 | 
            -
                      "paraphrase": true,
         | 
| 23710 | 
            -
                      "range": {
         | 
| 23711 | 
            -
                        "end": 4,
         | 
| 23712 | 
            -
                        "start": 0
         | 
| 23713 | 
            -
                      },
         | 
| 23714 | 
            -
                      "text": "4 * x",
         | 
| 23715 | 
            -
                      "topLevel": true,
         | 
| 23716 | 
            -
                      "types": [
         | 
| 23717 | 
            -
                        "number",
         | 
| 23718 | 
            -
                        "timesExpression"
         | 
| 23719 | 
            -
                      ],
         | 
| 23720 | 
            -
                      "value": null,
         | 
| 23721 | 
            -
                      "word": "*",
         | 
| 23722 | 
            -
                      "x": {
         | 
| 23723 | 
            -
                        "dead": true,
         | 
| 23724 | 
            -
                        "instance": true,
         | 
| 23725 | 
            -
                        "level": 1,
         | 
| 23726 | 
            -
                        "marker": "number",
         | 
| 23727 | 
            -
                        "range": {
         | 
| 23728 | 
            -
                          "end": 0,
         | 
| 23729 | 
            -
                          "start": 0
         | 
| 23730 | 
            -
                        },
         | 
| 23731 | 
            -
                        "text": "4",
         | 
| 23732 | 
            -
                        "types": [
         | 
| 23733 | 
            -
                          "number"
         | 
| 23734 | 
            -
                        ],
         | 
| 23735 | 
            -
                        "value": 4,
         | 
| 23736 | 
            -
                        "word": "4"
         | 
| 23737 | 
            -
                      },
         | 
| 23738 | 
            -
                      "y": {
         | 
| 23739 | 
            -
                        "dead": true,
         | 
| 23740 | 
            -
                        "default": true,
         | 
| 23741 | 
            -
                        "level": 1,
         | 
| 23742 | 
            -
                        "marker": "x",
         | 
| 23743 | 
            -
                        "range": {
         | 
| 23744 | 
            -
                          "end": 4,
         | 
| 23745 | 
            -
                          "start": 4
         | 
| 23746 | 
            -
                        },
         | 
| 23747 | 
            -
                        "text": "x",
         | 
| 23748 | 
            -
                        "types": [
         | 
| 23749 | 
            -
                          "x"
         | 
| 23750 | 
            -
                        ],
         | 
| 23751 | 
            -
                        "word": "x"
         | 
| 23752 | 
            -
                      }
         | 
| 23753 | 
            -
                    },
         | 
| 23754 | 
            -
                    "isResponse": true,
         | 
| 23494 | 
            +
                    "isResponse": false,
         | 
| 23755 23495 | 
             
                    "level": 1,
         | 
| 23756 23496 | 
             
                    "marker": "timesExpression",
         | 
| 23757 23497 | 
             
                    "number": "one",
         | 
| @@ -23805,7 +23545,7 @@ | |
| 23805 23545 | 
             
                  }
         | 
| 23806 23546 | 
             
                ],
         | 
| 23807 23547 | 
             
                "generatedParenthesized": [
         | 
| 23808 | 
            -
                  " | 
| 23548 | 
            +
                  ""
         | 
| 23809 23549 | 
             
                ],
         | 
| 23810 23550 | 
             
                "metadata": {
         | 
| 23811 23551 | 
             
                  "opChoices": [
         | 
| @@ -24253,59 +23993,7 @@ | |
| 24253 23993 | 
             
                      "context": {
         | 
| 24254 23994 | 
             
                        "dead": true,
         | 
| 24255 23995 | 
             
                        "evaluate": true,
         | 
| 24256 | 
            -
                        " | 
| 24257 | 
            -
                          "dead": true,
         | 
| 24258 | 
            -
                          "evaluate": true,
         | 
| 24259 | 
            -
                          "isResponse": true,
         | 
| 24260 | 
            -
                          "level": 1,
         | 
| 24261 | 
            -
                          "marker": "timesExpression",
         | 
| 24262 | 
            -
                          "number": "one",
         | 
| 24263 | 
            -
                          "paraphrase": true,
         | 
| 24264 | 
            -
                          "range": {
         | 
| 24265 | 
            -
                            "end": 4,
         | 
| 24266 | 
            -
                            "start": 0
         | 
| 24267 | 
            -
                          },
         | 
| 24268 | 
            -
                          "text": "4 * x",
         | 
| 24269 | 
            -
                          "topLevel": true,
         | 
| 24270 | 
            -
                          "types": [
         | 
| 24271 | 
            -
                            "number",
         | 
| 24272 | 
            -
                            "timesExpression"
         | 
| 24273 | 
            -
                          ],
         | 
| 24274 | 
            -
                          "value": null,
         | 
| 24275 | 
            -
                          "word": "*",
         | 
| 24276 | 
            -
                          "x": {
         | 
| 24277 | 
            -
                            "dead": true,
         | 
| 24278 | 
            -
                            "instance": true,
         | 
| 24279 | 
            -
                            "level": 1,
         | 
| 24280 | 
            -
                            "marker": "number",
         | 
| 24281 | 
            -
                            "range": {
         | 
| 24282 | 
            -
                              "end": 0,
         | 
| 24283 | 
            -
                              "start": 0
         | 
| 24284 | 
            -
                            },
         | 
| 24285 | 
            -
                            "text": "4",
         | 
| 24286 | 
            -
                            "types": [
         | 
| 24287 | 
            -
                              "number"
         | 
| 24288 | 
            -
                            ],
         | 
| 24289 | 
            -
                            "value": 4,
         | 
| 24290 | 
            -
                            "word": "4"
         | 
| 24291 | 
            -
                          },
         | 
| 24292 | 
            -
                          "y": {
         | 
| 24293 | 
            -
                            "dead": true,
         | 
| 24294 | 
            -
                            "default": true,
         | 
| 24295 | 
            -
                            "level": 1,
         | 
| 24296 | 
            -
                            "marker": "x",
         | 
| 24297 | 
            -
                            "range": {
         | 
| 24298 | 
            -
                              "end": 4,
         | 
| 24299 | 
            -
                              "start": 4
         | 
| 24300 | 
            -
                            },
         | 
| 24301 | 
            -
                            "text": "x",
         | 
| 24302 | 
            -
                            "types": [
         | 
| 24303 | 
            -
                              "x"
         | 
| 24304 | 
            -
                            ],
         | 
| 24305 | 
            -
                            "word": "x"
         | 
| 24306 | 
            -
                          }
         | 
| 24307 | 
            -
                        },
         | 
| 24308 | 
            -
                        "isResponse": true,
         | 
| 23996 | 
            +
                        "isResponse": false,
         | 
| 24309 23997 | 
             
                        "level": 1,
         | 
| 24310 23998 | 
             
                        "marker": "timesExpression",
         | 
| 24311 23999 | 
             
                        "number": "one",
         | 
| @@ -24357,11 +24045,11 @@ | |
| 24357 24045 | 
             
                          "word": "x"
         | 
| 24358 24046 | 
             
                        }
         | 
| 24359 24047 | 
             
                      },
         | 
| 24360 | 
            -
                      "generatedParenthesized": " | 
| 24048 | 
            +
                      "generatedParenthesized": "",
         | 
| 24361 24049 | 
             
                      "paraphrases": "4 * x",
         | 
| 24362 24050 | 
             
                      "paraphrasesParenthesized": "((4) * (x))",
         | 
| 24363 24051 | 
             
                      "responses": [
         | 
| 24364 | 
            -
                        " | 
| 24052 | 
            +
                        ""
         | 
| 24365 24053 | 
             
                      ]
         | 
| 24366 24054 | 
             
                    },
         | 
| 24367 24055 | 
             
                    {
         | 
| @@ -24456,7 +24144,7 @@ | |
| 24456 24144 | 
             
                          "dead": true,
         | 
| 24457 24145 | 
             
                          "level": 1,
         | 
| 24458 24146 | 
             
                          "marker": "mathematical_operator",
         | 
| 24459 | 
            -
                          " | 
| 24147 | 
            +
                          "modifier_mathematical": {
         | 
| 24460 24148 | 
             
                            "level": 0,
         | 
| 24461 24149 | 
             
                            "marker": "mathematical",
         | 
| 24462 24150 | 
             
                            "range": {
         | 
| @@ -24471,7 +24159,7 @@ | |
| 24471 24159 | 
             
                            "word": "mathematical"
         | 
| 24472 24160 | 
             
                          },
         | 
| 24473 24161 | 
             
                          "modifiers": [
         | 
| 24474 | 
            -
                            " | 
| 24162 | 
            +
                            "modifier_mathematical"
         | 
| 24475 24163 | 
             
                          ],
         | 
| 24476 24164 | 
             
                          "number": "many",
         | 
| 24477 24165 | 
             
                          "range": {
         | 
| @@ -24564,7 +24252,7 @@ | |
| 24564 24252 | 
             
                ],
         | 
| 24565 24253 | 
             
                "query": "4 * x",
         | 
| 24566 24254 | 
             
                "responses": [
         | 
| 24567 | 
            -
                  " | 
| 24255 | 
            +
                  ""
         | 
| 24568 24256 | 
             
                ]
         | 
| 24569 24257 | 
             
              },
         | 
| 24570 24258 | 
             
              {
         | 
| @@ -24610,59 +24298,7 @@ | |
| 24610 24298 | 
             
                  {
         | 
| 24611 24299 | 
             
                    "dead": true,
         | 
| 24612 24300 | 
             
                    "evaluate": true,
         | 
| 24613 | 
            -
                    " | 
| 24614 | 
            -
                      "dead": true,
         | 
| 24615 | 
            -
                      "evaluate": true,
         | 
| 24616 | 
            -
                      "isResponse": true,
         | 
| 24617 | 
            -
                      "level": 1,
         | 
| 24618 | 
            -
                      "marker": "divideByExpression",
         | 
| 24619 | 
            -
                      "number": "one",
         | 
| 24620 | 
            -
                      "paraphrase": true,
         | 
| 24621 | 
            -
                      "range": {
         | 
| 24622 | 
            -
                        "end": 4,
         | 
| 24623 | 
            -
                        "start": 0
         | 
| 24624 | 
            -
                      },
         | 
| 24625 | 
            -
                      "text": "4 / x",
         | 
| 24626 | 
            -
                      "topLevel": true,
         | 
| 24627 | 
            -
                      "types": [
         | 
| 24628 | 
            -
                        "divideByExpression",
         | 
| 24629 | 
            -
                        "number"
         | 
| 24630 | 
            -
                      ],
         | 
| 24631 | 
            -
                      "value": null,
         | 
| 24632 | 
            -
                      "word": "/",
         | 
| 24633 | 
            -
                      "x": {
         | 
| 24634 | 
            -
                        "dead": true,
         | 
| 24635 | 
            -
                        "instance": true,
         | 
| 24636 | 
            -
                        "level": 1,
         | 
| 24637 | 
            -
                        "marker": "number",
         | 
| 24638 | 
            -
                        "range": {
         | 
| 24639 | 
            -
                          "end": 0,
         | 
| 24640 | 
            -
                          "start": 0
         | 
| 24641 | 
            -
                        },
         | 
| 24642 | 
            -
                        "text": "4",
         | 
| 24643 | 
            -
                        "types": [
         | 
| 24644 | 
            -
                          "number"
         | 
| 24645 | 
            -
                        ],
         | 
| 24646 | 
            -
                        "value": 4,
         | 
| 24647 | 
            -
                        "word": "4"
         | 
| 24648 | 
            -
                      },
         | 
| 24649 | 
            -
                      "y": {
         | 
| 24650 | 
            -
                        "dead": true,
         | 
| 24651 | 
            -
                        "default": true,
         | 
| 24652 | 
            -
                        "level": 1,
         | 
| 24653 | 
            -
                        "marker": "x",
         | 
| 24654 | 
            -
                        "range": {
         | 
| 24655 | 
            -
                          "end": 4,
         | 
| 24656 | 
            -
                          "start": 4
         | 
| 24657 | 
            -
                        },
         | 
| 24658 | 
            -
                        "text": "x",
         | 
| 24659 | 
            -
                        "types": [
         | 
| 24660 | 
            -
                          "x"
         | 
| 24661 | 
            -
                        ],
         | 
| 24662 | 
            -
                        "word": "x"
         | 
| 24663 | 
            -
                      }
         | 
| 24664 | 
            -
                    },
         | 
| 24665 | 
            -
                    "isResponse": true,
         | 
| 24301 | 
            +
                    "isResponse": false,
         | 
| 24666 24302 | 
             
                    "level": 1,
         | 
| 24667 24303 | 
             
                    "marker": "divideByExpression",
         | 
| 24668 24304 | 
             
                    "number": "one",
         | 
| @@ -24716,7 +24352,7 @@ | |
| 24716 24352 | 
             
                  }
         | 
| 24717 24353 | 
             
                ],
         | 
| 24718 24354 | 
             
                "generatedParenthesized": [
         | 
| 24719 | 
            -
                  " | 
| 24355 | 
            +
                  ""
         | 
| 24720 24356 | 
             
                ],
         | 
| 24721 24357 | 
             
                "metadata": {
         | 
| 24722 24358 | 
             
                  "opChoices": [
         | 
| @@ -25164,59 +24800,7 @@ | |
| 25164 24800 | 
             
                      "context": {
         | 
| 25165 24801 | 
             
                        "dead": true,
         | 
| 25166 24802 | 
             
                        "evaluate": true,
         | 
| 25167 | 
            -
                        " | 
| 25168 | 
            -
                          "dead": true,
         | 
| 25169 | 
            -
                          "evaluate": true,
         | 
| 25170 | 
            -
                          "isResponse": true,
         | 
| 25171 | 
            -
                          "level": 1,
         | 
| 25172 | 
            -
                          "marker": "divideByExpression",
         | 
| 25173 | 
            -
                          "number": "one",
         | 
| 25174 | 
            -
                          "paraphrase": true,
         | 
| 25175 | 
            -
                          "range": {
         | 
| 25176 | 
            -
                            "end": 4,
         | 
| 25177 | 
            -
                            "start": 0
         | 
| 25178 | 
            -
                          },
         | 
| 25179 | 
            -
                          "text": "4 / x",
         | 
| 25180 | 
            -
                          "topLevel": true,
         | 
| 25181 | 
            -
                          "types": [
         | 
| 25182 | 
            -
                            "divideByExpression",
         | 
| 25183 | 
            -
                            "number"
         | 
| 25184 | 
            -
                          ],
         | 
| 25185 | 
            -
                          "value": null,
         | 
| 25186 | 
            -
                          "word": "/",
         | 
| 25187 | 
            -
                          "x": {
         | 
| 25188 | 
            -
                            "dead": true,
         | 
| 25189 | 
            -
                            "instance": true,
         | 
| 25190 | 
            -
                            "level": 1,
         | 
| 25191 | 
            -
                            "marker": "number",
         | 
| 25192 | 
            -
                            "range": {
         | 
| 25193 | 
            -
                              "end": 0,
         | 
| 25194 | 
            -
                              "start": 0
         | 
| 25195 | 
            -
                            },
         | 
| 25196 | 
            -
                            "text": "4",
         | 
| 25197 | 
            -
                            "types": [
         | 
| 25198 | 
            -
                              "number"
         | 
| 25199 | 
            -
                            ],
         | 
| 25200 | 
            -
                            "value": 4,
         | 
| 25201 | 
            -
                            "word": "4"
         | 
| 25202 | 
            -
                          },
         | 
| 25203 | 
            -
                          "y": {
         | 
| 25204 | 
            -
                            "dead": true,
         | 
| 25205 | 
            -
                            "default": true,
         | 
| 25206 | 
            -
                            "level": 1,
         | 
| 25207 | 
            -
                            "marker": "x",
         | 
| 25208 | 
            -
                            "range": {
         | 
| 25209 | 
            -
                              "end": 4,
         | 
| 25210 | 
            -
                              "start": 4
         | 
| 25211 | 
            -
                            },
         | 
| 25212 | 
            -
                            "text": "x",
         | 
| 25213 | 
            -
                            "types": [
         | 
| 25214 | 
            -
                              "x"
         | 
| 25215 | 
            -
                            ],
         | 
| 25216 | 
            -
                            "word": "x"
         | 
| 25217 | 
            -
                          }
         | 
| 25218 | 
            -
                        },
         | 
| 25219 | 
            -
                        "isResponse": true,
         | 
| 24803 | 
            +
                        "isResponse": false,
         | 
| 25220 24804 | 
             
                        "level": 1,
         | 
| 25221 24805 | 
             
                        "marker": "divideByExpression",
         | 
| 25222 24806 | 
             
                        "number": "one",
         | 
| @@ -25268,11 +24852,11 @@ | |
| 25268 24852 | 
             
                          "word": "x"
         | 
| 25269 24853 | 
             
                        }
         | 
| 25270 24854 | 
             
                      },
         | 
| 25271 | 
            -
                      "generatedParenthesized": " | 
| 24855 | 
            +
                      "generatedParenthesized": "",
         | 
| 25272 24856 | 
             
                      "paraphrases": "4 / x",
         | 
| 25273 24857 | 
             
                      "paraphrasesParenthesized": "((4) / (x))",
         | 
| 25274 24858 | 
             
                      "responses": [
         | 
| 25275 | 
            -
                        " | 
| 24859 | 
            +
                        ""
         | 
| 25276 24860 | 
             
                      ]
         | 
| 25277 24861 | 
             
                    },
         | 
| 25278 24862 | 
             
                    {
         | 
| @@ -25367,7 +24951,7 @@ | |
| 25367 24951 | 
             
                          "dead": true,
         | 
| 25368 24952 | 
             
                          "level": 1,
         | 
| 25369 24953 | 
             
                          "marker": "mathematical_operator",
         | 
| 25370 | 
            -
                          " | 
| 24954 | 
            +
                          "modifier_mathematical": {
         | 
| 25371 24955 | 
             
                            "level": 0,
         | 
| 25372 24956 | 
             
                            "marker": "mathematical",
         | 
| 25373 24957 | 
             
                            "range": {
         | 
| @@ -25382,7 +24966,7 @@ | |
| 25382 24966 | 
             
                            "word": "mathematical"
         | 
| 25383 24967 | 
             
                          },
         | 
| 25384 24968 | 
             
                          "modifiers": [
         | 
| 25385 | 
            -
                            " | 
| 24969 | 
            +
                            "modifier_mathematical"
         | 
| 25386 24970 | 
             
                          ],
         | 
| 25387 24971 | 
             
                          "number": "many",
         | 
| 25388 24972 | 
             
                          "range": {
         | 
| @@ -25475,7 +25059,7 @@ | |
| 25475 25059 | 
             
                ],
         | 
| 25476 25060 | 
             
                "query": "4 / x",
         | 
| 25477 25061 | 
             
                "responses": [
         | 
| 25478 | 
            -
                  " | 
| 25062 | 
            +
                  ""
         | 
| 25479 25063 | 
             
                ]
         | 
| 25480 25064 | 
             
              },
         | 
| 25481 25065 | 
             
              {
         | 
| @@ -25799,7 +25383,7 @@ | |
| 25799 25383 | 
             
                ],
         | 
| 25800 25384 | 
             
                "generatedParenthesized": [
         | 
| 25801 25385 | 
             
                  "",
         | 
| 25802 | 
            -
                  "(((price) is ((20))))"
         | 
| 25386 | 
            +
                  "(((the (price)) is ((20))))"
         | 
| 25803 25387 | 
             
                ],
         | 
| 25804 25388 | 
             
                "metadata": {
         | 
| 25805 25389 | 
             
                  "opChoices": [
         | 
| @@ -26620,12 +26204,12 @@ | |
| 26620 26204 | 
             
                        },
         | 
| 26621 26205 | 
             
                        "word": "is"
         | 
| 26622 26206 | 
             
                      },
         | 
| 26623 | 
            -
                      "generatedParenthesized": "(((price) is ((20))))",
         | 
| 26207 | 
            +
                      "generatedParenthesized": "(((the (price)) is ((20))))",
         | 
| 26624 26208 | 
             
                      "paraphrases": "what is the price?",
         | 
| 26625 26209 | 
             
                      "paraphrasesParenthesized": "(((what) is (the (price)))?)",
         | 
| 26626 26210 | 
             
                      "responses": [
         | 
| 26627 26211 | 
             
                        "",
         | 
| 26628 | 
            -
                        "price is 20"
         | 
| 26212 | 
            +
                        "the price is 20"
         | 
| 26629 26213 | 
             
                      ]
         | 
| 26630 26214 | 
             
                    },
         | 
| 26631 26215 | 
             
                    {
         | 
| @@ -26684,7 +26268,7 @@ | |
| 26684 26268 | 
             
                      "paraphrasesParenthesized": "((price) is (20))",
         | 
| 26685 26269 | 
             
                      "responses": [
         | 
| 26686 26270 | 
             
                        "",
         | 
| 26687 | 
            -
                        "price is 20"
         | 
| 26271 | 
            +
                        "the price is 20"
         | 
| 26688 26272 | 
             
                      ]
         | 
| 26689 26273 | 
             
                    },
         | 
| 26690 26274 | 
             
                    {
         | 
| @@ -26779,7 +26363,7 @@ | |
| 26779 26363 | 
             
                          "dead": true,
         | 
| 26780 26364 | 
             
                          "level": 1,
         | 
| 26781 26365 | 
             
                          "marker": "mathematical_operator",
         | 
| 26782 | 
            -
                          " | 
| 26366 | 
            +
                          "modifier_mathematical": {
         | 
| 26783 26367 | 
             
                            "level": 0,
         | 
| 26784 26368 | 
             
                            "marker": "mathematical",
         | 
| 26785 26369 | 
             
                            "range": {
         | 
| @@ -26794,7 +26378,7 @@ | |
| 26794 26378 | 
             
                            "word": "mathematical"
         | 
| 26795 26379 | 
             
                          },
         | 
| 26796 26380 | 
             
                          "modifiers": [
         | 
| 26797 | 
            -
                            " | 
| 26381 | 
            +
                            "modifier_mathematical"
         | 
| 26798 26382 | 
             
                          ],
         | 
| 26799 26383 | 
             
                          "number": "many",
         | 
| 26800 26384 | 
             
                          "range": {
         | 
| @@ -26890,7 +26474,7 @@ | |
| 26890 26474 | 
             
                "query": "price is 20 what is the price",
         | 
| 26891 26475 | 
             
                "responses": [
         | 
| 26892 26476 | 
             
                  "",
         | 
| 26893 | 
            -
                  "price is 20"
         | 
| 26477 | 
            +
                  "the price is 20"
         | 
| 26894 26478 | 
             
                ]
         | 
| 26895 26479 | 
             
              },
         | 
| 26896 26480 | 
             
              {
         | 
| @@ -28374,7 +27958,7 @@ | |
| 28374 27958 | 
             
                          "dead": true,
         | 
| 28375 27959 | 
             
                          "level": 1,
         | 
| 28376 27960 | 
             
                          "marker": "mathematical_operator",
         | 
| 28377 | 
            -
                          " | 
| 27961 | 
            +
                          "modifier_mathematical": {
         | 
| 28378 27962 | 
             
                            "level": 0,
         | 
| 28379 27963 | 
             
                            "marker": "mathematical",
         | 
| 28380 27964 | 
             
                            "range": {
         | 
| @@ -28389,7 +27973,7 @@ | |
| 28389 27973 | 
             
                            "word": "mathematical"
         | 
| 28390 27974 | 
             
                          },
         | 
| 28391 27975 | 
             
                          "modifiers": [
         | 
| 28392 | 
            -
                            " | 
| 27976 | 
            +
                            "modifier_mathematical"
         | 
| 28393 27977 | 
             
                          ],
         | 
| 28394 27978 | 
             
                          "number": "many",
         | 
| 28395 27979 | 
             
                          "range": {
         | 
| @@ -29475,7 +29059,7 @@ | |
| 29475 29059 | 
             
                          "dead": true,
         | 
| 29476 29060 | 
             
                          "level": 1,
         | 
| 29477 29061 | 
             
                          "marker": "mathematical_operator",
         | 
| 29478 | 
            -
                          " | 
| 29062 | 
            +
                          "modifier_mathematical": {
         | 
| 29479 29063 | 
             
                            "level": 0,
         | 
| 29480 29064 | 
             
                            "marker": "mathematical",
         | 
| 29481 29065 | 
             
                            "range": {
         | 
| @@ -29490,7 +29074,7 @@ | |
| 29490 29074 | 
             
                            "word": "mathematical"
         | 
| 29491 29075 | 
             
                          },
         | 
| 29492 29076 | 
             
                          "modifiers": [
         | 
| 29493 | 
            -
                            " | 
| 29077 | 
            +
                            "modifier_mathematical"
         | 
| 29494 29078 | 
             
                          ],
         | 
| 29495 29079 | 
             
                          "number": "many",
         | 
| 29496 29080 | 
             
                          "range": {
         | 
| @@ -31931,7 +31515,7 @@ | |
| 31931 31515 | 
             
                          "dead": true,
         | 
| 31932 31516 | 
             
                          "level": 1,
         | 
| 31933 31517 | 
             
                          "marker": "mathematical_operator",
         | 
| 31934 | 
            -
                          " | 
| 31518 | 
            +
                          "modifier_mathematical": {
         | 
| 31935 31519 | 
             
                            "level": 0,
         | 
| 31936 31520 | 
             
                            "marker": "mathematical",
         | 
| 31937 31521 | 
             
                            "range": {
         | 
| @@ -31946,7 +31530,7 @@ | |
| 31946 31530 | 
             
                            "word": "mathematical"
         | 
| 31947 31531 | 
             
                          },
         | 
| 31948 31532 | 
             
                          "modifiers": [
         | 
| 31949 | 
            -
                            " | 
| 31533 | 
            +
                            "modifier_mathematical"
         | 
| 31950 31534 | 
             
                          ],
         | 
| 31951 31535 | 
             
                          "number": "many",
         | 
| 31952 31536 | 
             
                          "range": {
         | 
| @@ -32391,7 +31975,7 @@ | |
| 32391 31975 | 
             
                ],
         | 
| 32392 31976 | 
             
                "generatedParenthesized": [
         | 
| 32393 31977 | 
             
                  "",
         | 
| 32394 | 
            -
                  "(((price) is ((20))))"
         | 
| 31978 | 
            +
                  "(((the (price)) is ((20))))"
         | 
| 32395 31979 | 
             
                ],
         | 
| 32396 31980 | 
             
                "metadata": {
         | 
| 32397 31981 | 
             
                  "opChoices": [
         | 
| @@ -33259,12 +32843,12 @@ | |
| 33259 32843 | 
             
                        },
         | 
| 33260 32844 | 
             
                        "word": "is"
         | 
| 33261 32845 | 
             
                      },
         | 
| 33262 | 
            -
                      "generatedParenthesized": "(((price) is ((20))))",
         | 
| 32846 | 
            +
                      "generatedParenthesized": "(((the (price)) is ((20))))",
         | 
| 33263 32847 | 
             
                      "paraphrases": "what is the price?",
         | 
| 33264 32848 | 
             
                      "paraphrasesParenthesized": "(((what) is (the (price)))?)",
         | 
| 33265 32849 | 
             
                      "responses": [
         | 
| 33266 32850 | 
             
                        "",
         | 
| 33267 | 
            -
                        "price is 20"
         | 
| 32851 | 
            +
                        "the price is 20"
         | 
| 33268 32852 | 
             
                      ]
         | 
| 33269 32853 | 
             
                    },
         | 
| 33270 32854 | 
             
                    {
         | 
| @@ -33330,7 +32914,7 @@ | |
| 33330 32914 | 
             
                      "paraphrasesParenthesized": "((the (price)) is (20))",
         | 
| 33331 32915 | 
             
                      "responses": [
         | 
| 33332 32916 | 
             
                        "",
         | 
| 33333 | 
            -
                        "price is 20"
         | 
| 32917 | 
            +
                        "the price is 20"
         | 
| 33334 32918 | 
             
                      ]
         | 
| 33335 32919 | 
             
                    },
         | 
| 33336 32920 | 
             
                    {
         | 
| @@ -33425,7 +33009,7 @@ | |
| 33425 33009 | 
             
                          "dead": true,
         | 
| 33426 33010 | 
             
                          "level": 1,
         | 
| 33427 33011 | 
             
                          "marker": "mathematical_operator",
         | 
| 33428 | 
            -
                          " | 
| 33012 | 
            +
                          "modifier_mathematical": {
         | 
| 33429 33013 | 
             
                            "level": 0,
         | 
| 33430 33014 | 
             
                            "marker": "mathematical",
         | 
| 33431 33015 | 
             
                            "range": {
         | 
| @@ -33440,7 +33024,7 @@ | |
| 33440 33024 | 
             
                            "word": "mathematical"
         | 
| 33441 33025 | 
             
                          },
         | 
| 33442 33026 | 
             
                          "modifiers": [
         | 
| 33443 | 
            -
                            " | 
| 33027 | 
            +
                            "modifier_mathematical"
         | 
| 33444 33028 | 
             
                          ],
         | 
| 33445 33029 | 
             
                          "number": "many",
         | 
| 33446 33030 | 
             
                          "range": {
         | 
| @@ -33536,7 +33120,7 @@ | |
| 33536 33120 | 
             
                "query": "the price is 20 what is the price",
         | 
| 33537 33121 | 
             
                "responses": [
         | 
| 33538 33122 | 
             
                  "",
         | 
| 33539 | 
            -
                  "price is 20"
         | 
| 33123 | 
            +
                  "the price is 20"
         | 
| 33540 33124 | 
             
                ]
         | 
| 33541 33125 | 
             
              },
         | 
| 33542 33126 | 
             
              {
         | 
| @@ -34277,7 +33861,7 @@ | |
| 34277 33861 | 
             
                          "dead": true,
         | 
| 34278 33862 | 
             
                          "level": 1,
         | 
| 34279 33863 | 
             
                          "marker": "mathematical_operator",
         | 
| 34280 | 
            -
                          " | 
| 33864 | 
            +
                          "modifier_mathematical": {
         | 
| 34281 33865 | 
             
                            "level": 0,
         | 
| 34282 33866 | 
             
                            "marker": "mathematical",
         | 
| 34283 33867 | 
             
                            "range": {
         | 
| @@ -34292,7 +33876,7 @@ | |
| 34292 33876 | 
             
                            "word": "mathematical"
         | 
| 34293 33877 | 
             
                          },
         | 
| 34294 33878 | 
             
                          "modifiers": [
         | 
| 34295 | 
            -
                            " | 
| 33879 | 
            +
                            "modifier_mathematical"
         | 
| 34296 33880 | 
             
                          ],
         | 
| 34297 33881 | 
             
                          "number": "many",
         | 
| 34298 33882 | 
             
                          "range": {
         | 
| @@ -35258,7 +34842,7 @@ | |
| 35258 34842 | 
             
                          "dead": true,
         | 
| 35259 34843 | 
             
                          "level": 1,
         | 
| 35260 34844 | 
             
                          "marker": "mathematical_operator",
         | 
| 35261 | 
            -
                          " | 
| 34845 | 
            +
                          "modifier_mathematical": {
         | 
| 35262 34846 | 
             
                            "level": 0,
         | 
| 35263 34847 | 
             
                            "marker": "mathematical",
         | 
| 35264 34848 | 
             
                            "range": {
         | 
| @@ -35273,7 +34857,7 @@ | |
| 35273 34857 | 
             
                            "word": "mathematical"
         | 
| 35274 34858 | 
             
                          },
         | 
| 35275 34859 | 
             
                          "modifiers": [
         | 
| 35276 | 
            -
                            " | 
| 34860 | 
            +
                            "modifier_mathematical"
         | 
| 35277 34861 | 
             
                          ],
         | 
| 35278 34862 | 
             
                          "number": "many",
         | 
| 35279 34863 | 
             
                          "range": {
         | 
| @@ -35990,7 +35574,7 @@ | |
| 35990 35574 | 
             
                          "dead": true,
         | 
| 35991 35575 | 
             
                          "level": 1,
         | 
| 35992 35576 | 
             
                          "marker": "mathematical_operator",
         | 
| 35993 | 
            -
                          " | 
| 35577 | 
            +
                          "modifier_mathematical": {
         | 
| 35994 35578 | 
             
                            "level": 0,
         | 
| 35995 35579 | 
             
                            "marker": "mathematical",
         | 
| 35996 35580 | 
             
                            "range": {
         | 
| @@ -36005,7 +35589,7 @@ | |
| 36005 35589 | 
             
                            "word": "mathematical"
         | 
| 36006 35590 | 
             
                          },
         | 
| 36007 35591 | 
             
                          "modifiers": [
         | 
| 36008 | 
            -
                            " | 
| 35592 | 
            +
                            "modifier_mathematical"
         | 
| 36009 35593 | 
             
                          ],
         | 
| 36010 35594 | 
             
                          "number": "many",
         | 
| 36011 35595 | 
             
                          "range": {
         |