@khanacademy/math-input 8.1.2 → 9.0.0
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/CHANGELOG.md +19 -0
- package/dist/components/input/cursor-contexts.d.ts +9 -9
- package/dist/components/input/math-wrapper.d.ts +4 -4
- package/dist/components/input/mathquill-helpers.d.ts +1 -1
- package/dist/components/input/mathquill-instance.d.ts +1 -1
- package/dist/components/input/mathquill-types.d.ts +2 -2
- package/dist/components/key-handlers/handle-arrow.d.ts +2 -2
- package/dist/components/key-handlers/handle-backspace.d.ts +1 -1
- package/dist/components/key-handlers/handle-exponent.d.ts +2 -2
- package/dist/components/key-handlers/handle-jump-out.d.ts +2 -2
- package/dist/components/key-handlers/key-translator.d.ts +2 -2
- package/dist/components/keypad/button-assets.d.ts +1 -1
- package/dist/components/keypad/keypad-button.d.ts +1 -1
- package/dist/components/keypad/keypad-pages/extras-page.d.ts +2 -2
- package/dist/components/keypad/keypad-pages/fractions-page.d.ts +9 -0
- package/dist/components/keypad/keypad-pages/geometry-page.d.ts +1 -1
- package/dist/components/keypad/keypad-pages/numbers-page.d.ts +1 -1
- package/dist/components/keypad/keypad-pages/operators-page.d.ts +1 -1
- package/dist/components/keypad/keypad.d.ts +4 -3
- package/dist/components/keypad/mobile-keypad.d.ts +3 -3
- package/dist/components/keypad/shared-keys.d.ts +3 -3
- package/dist/components/keypad/utils.d.ts +2 -0
- package/dist/components/keypad-legacy/compute-layout-parameters.d.ts +1 -1
- package/dist/components/keypad-legacy/empty-keypad-button.d.ts +1 -1
- package/dist/components/keypad-legacy/gesture-manager.d.ts +3 -3
- package/dist/components/keypad-legacy/gesture-state-machine.d.ts +1 -1
- package/dist/components/keypad-legacy/keypad-button.d.ts +2 -1
- package/dist/components/keypad-legacy/multi-symbol-grid.d.ts +1 -1
- package/dist/components/keypad-legacy/multi-symbol-popover.d.ts +1 -1
- package/dist/components/keypad-legacy/node-manager.d.ts +1 -1
- package/dist/components/keypad-legacy/store/actions.d.ts +1 -1
- package/dist/components/keypad-legacy/store/types.d.ts +3 -3
- package/dist/components/keypad-legacy/touchable-keypad-button.d.ts +3 -3
- package/dist/components/keypad-switch.d.ts +1 -1
- package/dist/components/prop-types.d.ts +12 -0
- package/dist/components/tabbar/tabbar.d.ts +2 -2
- package/dist/components/tabbar/types.d.ts +1 -1
- package/dist/data/key-configs.d.ts +2 -2
- package/dist/es/index.js +848 -240
- package/dist/es/index.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +848 -240
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +6 -5
- package/package.json +6 -6
- package/src/components/input/cursor-contexts.ts +9 -9
- package/src/components/input/math-input.tsx +12 -12
- package/src/components/input/math-wrapper.ts +7 -3
- package/src/components/input/mathquill-helpers.ts +3 -5
- package/src/components/input/mathquill-instance.ts +1 -1
- package/src/components/input/mathquill-types.ts +5 -2
- package/src/components/key-handlers/handle-arrow.ts +4 -3
- package/src/components/key-handlers/handle-backspace.ts +3 -2
- package/src/components/key-handlers/handle-exponent.ts +4 -5
- package/src/components/key-handlers/handle-jump-out.ts +4 -5
- package/src/components/key-handlers/key-translator.ts +6 -5
- package/src/components/keypad/__tests__/keypad-button.test.tsx +44 -3
- package/src/components/keypad/__tests__/keypad-v2-mathquill.test.tsx +4 -3
- package/src/components/keypad/__tests__/keypad-v2.cypress.ts +2 -32
- package/src/components/keypad/__tests__/keypad.test.tsx +46 -0
- package/src/components/keypad/__tests__/test-data-tabs.ts +21 -0
- package/src/components/keypad/button-assets.tsx +761 -60
- package/src/components/keypad/keypad-button.stories.tsx +4 -2
- package/src/components/keypad/keypad-button.tsx +2 -3
- package/src/components/keypad/keypad-mathquill.stories.tsx +3 -2
- package/src/components/keypad/keypad-pages/extras-page.tsx +3 -2
- package/src/components/keypad/keypad-pages/fractions-page.tsx +125 -0
- package/src/components/keypad/keypad-pages/geometry-page.tsx +2 -1
- package/src/components/keypad/keypad-pages/numbers-page.tsx +2 -1
- package/src/components/keypad/keypad-pages/operators-page.tsx +2 -1
- package/src/components/keypad/keypad.stories.tsx +17 -2
- package/src/components/keypad/keypad.tsx +56 -22
- package/src/components/keypad/mobile-keypad.tsx +10 -3
- package/src/components/keypad/shared-keys.tsx +5 -28
- package/src/components/keypad/utils.ts +30 -0
- package/src/components/keypad-context.ts +1 -1
- package/src/components/keypad-legacy/compute-layout-parameters.ts +1 -1
- package/src/components/keypad-legacy/echo-manager.tsx +1 -1
- package/src/components/keypad-legacy/empty-keypad-button.tsx +1 -1
- package/src/components/keypad-legacy/gesture-manager.ts +4 -4
- package/src/components/keypad-legacy/gesture-state-machine.ts +1 -1
- package/src/components/keypad-legacy/keypad-button.tsx +2 -1
- package/src/components/keypad-legacy/many-keypad-button.tsx +2 -1
- package/src/components/keypad-legacy/multi-symbol-grid.tsx +2 -1
- package/src/components/keypad-legacy/multi-symbol-popover.tsx +2 -1
- package/src/components/keypad-legacy/node-manager.ts +1 -1
- package/src/components/keypad-legacy/store/actions.ts +1 -2
- package/src/components/keypad-legacy/store/index.ts +1 -1
- package/src/components/keypad-legacy/store/types.ts +3 -4
- package/src/components/keypad-legacy/touchable-keypad-button.tsx +3 -3
- package/src/components/keypad-legacy/two-page-keypad.tsx +1 -1
- package/src/components/keypad-switch.tsx +2 -1
- package/src/components/{prop-types.js → prop-types.ts} +1 -0
- package/src/components/tabbar/tabbar.tsx +4 -2
- package/src/components/tabbar/types.ts +1 -0
- package/src/data/key-configs.ts +4 -3
- package/src/full-math-input.stories.tsx +36 -4
- package/src/index.ts +1 -0
- package/src/types.ts +6 -6
- package/tsconfig-build.tsbuildinfo +1 -1
- package/dist/components/common-style.js.flow +0 -27
- package/dist/components/input/cursor-contexts.js.flow +0 -26
- package/dist/components/input/cursor-handle.js.flow +0 -28
- package/dist/components/input/drag-listener.js.flow +0 -19
- package/dist/components/input/math-input.js.flow +0 -153
- package/dist/components/input/math-wrapper.js.flow +0 -54
- package/dist/components/input/mathquill-helpers.js.flow +0 -56
- package/dist/components/input/mathquill-instance.js.flow +0 -24
- package/dist/components/input/mathquill-types.js.flow +0 -362
- package/dist/components/input/scroll-into-view.js.flow +0 -20
- package/dist/components/key-handlers/handle-arrow.js.flow +0 -12
- package/dist/components/key-handlers/handle-backspace.js.flow +0 -14
- package/dist/components/key-handlers/handle-exponent.js.flow +0 -12
- package/dist/components/key-handlers/handle-jump-out.js.flow +0 -14
- package/dist/components/key-handlers/key-translator.js.flow +0 -10
- package/dist/components/keypad/button-assets.js.flow +0 -12
- package/dist/components/keypad/index.js.flow +0 -8
- package/dist/components/keypad/keypad-button.js.flow +0 -18
- package/dist/components/keypad/keypad-pages/extras-page.js.flow +0 -13
- package/dist/components/keypad/keypad-pages/geometry-page.js.flow +0 -11
- package/dist/components/keypad/keypad-pages/numbers-page.js.flow +0 -11
- package/dist/components/keypad/keypad-pages/operators-page.js.flow +0 -15
- package/dist/components/keypad/keypad.js.flow +0 -37
- package/dist/components/keypad/mobile-keypad.js.flow +0 -57
- package/dist/components/keypad/shared-keys.js.flow +0 -20
- package/dist/components/keypad-context.js.flow +0 -18
- package/dist/components/keypad-legacy/compute-layout-parameters.js.flow +0 -21
- package/dist/components/keypad-legacy/corner-decal.js.flow +0 -15
- package/dist/components/keypad-legacy/echo-manager.js.flow +0 -20
- package/dist/components/keypad-legacy/empty-keypad-button.js.flow +0 -23
- package/dist/components/keypad-legacy/expression-keypad.js.flow +0 -34
- package/dist/components/keypad-legacy/fraction-keypad.js.flow +0 -33
- package/dist/components/keypad-legacy/gesture-manager.js.flow +0 -97
- package/dist/components/keypad-legacy/gesture-state-machine.js.flow +0 -118
- package/dist/components/keypad-legacy/icon.js.flow +0 -18
- package/dist/components/keypad-legacy/index.js.flow +0 -7
- package/dist/components/keypad-legacy/keypad-button.js.flow +0 -80
- package/dist/components/keypad-legacy/keypad-container.js.flow +0 -63
- package/dist/components/keypad-legacy/keypad.js.flow +0 -40
- package/dist/components/keypad-legacy/many-keypad-button.js.flow +0 -17
- package/dist/components/keypad-legacy/math-icon.js.flow +0 -19
- package/dist/components/keypad-legacy/multi-symbol-grid.js.flow +0 -16
- package/dist/components/keypad-legacy/multi-symbol-popover.js.flow +0 -15
- package/dist/components/keypad-legacy/navigation-pad.js.flow +0 -16
- package/dist/components/keypad-legacy/node-manager.js.flow +0 -60
- package/dist/components/keypad-legacy/popover-manager.js.flow +0 -15
- package/dist/components/keypad-legacy/popover-state-machine.js.flow +0 -77
- package/dist/components/keypad-legacy/provided-keypad.js.flow +0 -38
- package/dist/components/keypad-legacy/store/actions.js.flow +0 -90
- package/dist/components/keypad-legacy/store/echo-reducer.js.flow +0 -10
- package/dist/components/keypad-legacy/store/index.js.flow +0 -22
- package/dist/components/keypad-legacy/store/input-reducer.js.flow +0 -13
- package/dist/components/keypad-legacy/store/keypad-reducer.js.flow +0 -13
- package/dist/components/keypad-legacy/store/layout-reducer.js.flow +0 -13
- package/dist/components/keypad-legacy/store/shared.js.flow +0 -14
- package/dist/components/keypad-legacy/store/types.js.flow +0 -53
- package/dist/components/keypad-legacy/styles.js.flow +0 -11
- package/dist/components/keypad-legacy/svg-icon.js.flow +0 -15
- package/dist/components/keypad-legacy/text-icon.js.flow +0 -16
- package/dist/components/keypad-legacy/touchable-keypad-button.js.flow +0 -59
- package/dist/components/keypad-legacy/two-page-keypad.js.flow +0 -31
- package/dist/components/keypad-legacy/z-indexes.js.flow +0 -13
- package/dist/components/keypad-switch.js.flow +0 -15
- package/dist/components/tabbar/icons.js.flow +0 -14
- package/dist/components/tabbar/index.js.flow +0 -8
- package/dist/components/tabbar/item.js.flow +0 -19
- package/dist/components/tabbar/tabbar.js.flow +0 -18
- package/dist/components/tabbar/types.js.flow +0 -12
- package/dist/data/key-configs.js.flow +0 -10
- package/dist/data/keys.js.flow +0 -122
- package/dist/enums.js.flow +0 -54
- package/dist/fake-react-native-web/index.js.flow +0 -8
- package/dist/fake-react-native-web/text.js.flow +0 -19
- package/dist/fake-react-native-web/view.js.flow +0 -29
- package/dist/index.js.flow +0 -24
- package/dist/types.js.flow +0 -91
- package/dist/utils.js.flow +0 -7
package/dist/es/index.js
CHANGED
|
@@ -327,25 +327,16 @@ class DragListener {
|
|
|
327
327
|
* the radical.
|
|
328
328
|
*/
|
|
329
329
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
IN_NUMERATOR: "IN_NUMERATOR",
|
|
341
|
-
// The cursor is in the denominator of a fraction.
|
|
342
|
-
IN_DENOMINATOR: "IN_DENOMINATOR",
|
|
343
|
-
// The cursor is sitting before a fraction; that is, the cursor is within
|
|
344
|
-
// what looks to be a mixed number preceding a fraction. This will only be
|
|
345
|
-
// the case when the only math between the cursor and the fraction to its
|
|
346
|
-
// write is non-leaf math (numbers and variables).
|
|
347
|
-
BEFORE_FRACTION: "BEFORE_FRACTION"
|
|
348
|
-
};
|
|
330
|
+
let CursorContext = /*#__PURE__*/function (CursorContext) {
|
|
331
|
+
CursorContext["NONE"] = "NONE";
|
|
332
|
+
CursorContext["IN_PARENS"] = "IN_PARENS";
|
|
333
|
+
CursorContext["IN_SUPER_SCRIPT"] = "IN_SUPER_SCRIPT";
|
|
334
|
+
CursorContext["IN_SUB_SCRIPT"] = "IN_SUB_SCRIPT";
|
|
335
|
+
CursorContext["IN_NUMERATOR"] = "IN_NUMERATOR";
|
|
336
|
+
CursorContext["IN_DENOMINATOR"] = "IN_DENOMINATOR";
|
|
337
|
+
CursorContext["BEFORE_FRACTION"] = "BEFORE_FRACTION";
|
|
338
|
+
return CursorContext;
|
|
339
|
+
}({});
|
|
349
340
|
|
|
350
341
|
// We only need one MathQuill instance (referred to as MQ in the docs)
|
|
351
342
|
// and that contains some MQ constants and the MathField constructor
|
|
@@ -1626,7 +1617,7 @@ class MathInput extends React.Component {
|
|
|
1626
1617
|
y += dy;
|
|
1627
1618
|
const points = [[x - dx, y], [x, y], [x + dx, y]];
|
|
1628
1619
|
const elements = points
|
|
1629
|
-
// @ts-expect-error
|
|
1620
|
+
// @ts-expect-error - TS2556 - A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
1630
1621
|
.map(point => document.elementFromPoint(...point))
|
|
1631
1622
|
// We exclude the root container itself and any nodes marked
|
|
1632
1623
|
// as non-leaf which are fractions, parens, and roots. The
|
|
@@ -1647,13 +1638,13 @@ class MathInput extends React.Component {
|
|
|
1647
1638
|
const counts = {};
|
|
1648
1639
|
const elementsById = {};
|
|
1649
1640
|
for (const element of elements) {
|
|
1650
|
-
// @ts-expect-error
|
|
1641
|
+
// @ts-expect-error - TS2531 - Object is possibly 'null'.
|
|
1651
1642
|
const id = element.getAttribute("mathquill-command-id");
|
|
1652
1643
|
if (id != null) {
|
|
1653
1644
|
counts[id] = (counts[id] || 0) + 1;
|
|
1654
1645
|
elementsById[id] = element;
|
|
1655
1646
|
} else {
|
|
1656
|
-
// @ts-expect-error
|
|
1647
|
+
// @ts-expect-error - TS2345 - Argument of type 'Element | null' is not assignable to parameter of type 'HTMLElement | null'.
|
|
1657
1648
|
nonLeafElements.push(element);
|
|
1658
1649
|
}
|
|
1659
1650
|
}
|
|
@@ -1682,7 +1673,7 @@ class MathInput extends React.Component {
|
|
|
1682
1673
|
// hit count in the situation should not have serious effects on
|
|
1683
1674
|
// the overall accuracy of the algorithm.
|
|
1684
1675
|
if (hitNode == null && nonLeafElements.length > 0) {
|
|
1685
|
-
// @ts-expect-error
|
|
1676
|
+
// @ts-expect-error - TS2322 - Type 'HTMLElement | null' is not assignable to type 'null'.
|
|
1686
1677
|
hitNode = nonLeafElements[0];
|
|
1687
1678
|
}
|
|
1688
1679
|
if (hitNode !== null) {
|
|
@@ -2059,10 +2050,10 @@ class MathInput extends React.Component {
|
|
|
2059
2050
|
window.removeEventListener("touchstart", this.recordTouchStartOutside);
|
|
2060
2051
|
window.removeEventListener("touchend", this.blurOnTouchEndOutside);
|
|
2061
2052
|
window.removeEventListener("touchcancel", this.blurOnTouchEndOutside);
|
|
2062
|
-
// @ts-expect-error
|
|
2053
|
+
// @ts-expect-error - TS2769 - No overload matches this call.
|
|
2063
2054
|
window.removeEventListener("resize", this._clearKeypadBoundsCache());
|
|
2064
2055
|
window.removeEventListener("orientationchange",
|
|
2065
|
-
// @ts-expect-error
|
|
2056
|
+
// @ts-expect-error - TS2769 - No overload matches this call.
|
|
2066
2057
|
this._clearKeypadBoundsCache());
|
|
2067
2058
|
}
|
|
2068
2059
|
render() {
|
|
@@ -2097,7 +2088,7 @@ class MathInput extends React.Component {
|
|
|
2097
2088
|
ariaLabel: ariaLabel
|
|
2098
2089
|
}, /*#__PURE__*/React.createElement("div", {
|
|
2099
2090
|
className: "keypad-input"
|
|
2100
|
-
// @ts-expect-error
|
|
2091
|
+
// @ts-expect-error - TS2322 - Type 'string' is not assignable to type 'number | undefined'.
|
|
2101
2092
|
,
|
|
2102
2093
|
tabIndex: "0",
|
|
2103
2094
|
ref: node => {
|
|
@@ -3510,253 +3501,753 @@ function ButtonAsset({
|
|
|
3510
3501
|
fill: "#21242C",
|
|
3511
3502
|
d: "M22.2 10.696h.208a2.26 2.26 0 0 1 .312-.026c.936.087 1.664.511 2.184 1.274.676 1.023 1.014 2.418 1.014 4.186 0 .468-.017.84-.052 1.118-.225 2.305-.823 4.463-1.794 6.474-.59 1.23-1.282 2.305-2.08 3.224-.78.919-1.551 1.569-2.314 1.95-.537.243-1.005.364-1.404.364h-.182c-.762 0-1.395-.269-1.898-.806-.918-.97-1.378-2.522-1.378-4.654 0-.832.087-1.707.26-2.626.641-3.467 1.95-6.3 3.926-8.502 1.058-1.161 2.123-1.82 3.198-1.976Zm1.664 3.588c0-1.768-.46-2.652-1.378-2.652-.572 0-1.161.373-1.768 1.118-.866 1.092-1.603 2.652-2.21 4.68-.346 1.092-.52 1.733-.52 1.924.85.017 1.69.026 2.522.026l2.522-.026c.087-.087.243-.763.468-2.028.243-1.265.364-2.28.364-3.042Zm-1.248 6.734.13-.442h-5.07l-.026.182c-.537 2.15-.806 3.753-.806 4.81 0 1.179.208 1.993.624 2.444.19.208.442.312.754.312.694 0 1.421-.563 2.184-1.69.815-1.196 1.552-3.068 2.21-5.616Z"
|
|
3512
3503
|
}));
|
|
3513
|
-
case "
|
|
3504
|
+
case "a":
|
|
3514
3505
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3506
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3507
|
+
width: "44",
|
|
3508
|
+
height: "44",
|
|
3518
3509
|
fill: "none",
|
|
3519
|
-
|
|
3510
|
+
viewBox: "0 0 44 44"
|
|
3520
3511
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3521
|
-
|
|
3522
|
-
|
|
3512
|
+
fill: "#21242C",
|
|
3513
|
+
d: "M27.781 24.022c.156 0 .26.009.312.026a.18.18 0 0 1 .13.052c.035.035.052.087.052.156 0 .052-.026.182-.078.39-.381 1.456-.85 2.462-1.404 3.016a2.573 2.573 0 0 1-.832.546 2.776 2.776 0 0 1-.624.052c-1.092 0-1.855-.425-2.288-1.274-.087-.225-.13-.33-.13-.312-.017-.017-.052-.008-.104.026l-.104.104c-.832.78-1.655 1.257-2.47 1.43-.104.017-.32.026-.65.026-1.144 0-2.089-.477-2.834-1.43-.52-.762-.78-1.733-.78-2.912 0-.277.009-.468.026-.572a7.916 7.916 0 0 1 1.066-3.172c.607-1.023 1.326-1.846 2.158-2.47 1.005-.78 2.063-1.17 3.172-1.17.867 0 1.647.425 2.34 1.274.277-.52.676-.78 1.196-.78a.93.93 0 0 1 .598.208.64.64 0 0 1 .26.52c0 .226-.33 1.62-.988 4.186-.641 2.548-.962 3.978-.962 4.29 0 .728.243 1.092.728 1.092.156-.017.33-.095.52-.234.364-.346.72-1.178 1.066-2.496.104-.347.19-.529.26-.546.035-.017.121-.026.26-.026h.104Zm-9.594 1.222c0 .624.13 1.127.39 1.508.277.382.676.572 1.196.572.503 0 1.04-.208 1.612-.624.208-.139.485-.398.832-.78.364-.381.58-.641.65-.78.035-.07.269-.997.702-2.782.45-1.785.676-2.747.676-2.886 0-.208-.095-.503-.286-.884-.381-.745-.927-1.118-1.638-1.118-.693 0-1.309.295-1.846.884a6.274 6.274 0 0 0-1.196 2.028 20.753 20.753 0 0 0-1.066 4.264c0 .052-.009.148-.026.286v.312Z"
|
|
3523
3514
|
}));
|
|
3524
|
-
case "
|
|
3515
|
+
case "b":
|
|
3525
3516
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3526
3517
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3527
|
-
width: "
|
|
3528
|
-
height: "
|
|
3518
|
+
width: "44",
|
|
3519
|
+
height: "44",
|
|
3529
3520
|
fill: "none",
|
|
3530
|
-
viewBox: "0 0
|
|
3521
|
+
viewBox: "0 0 44 44"
|
|
3531
3522
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3532
3523
|
fill: "#21242C",
|
|
3533
|
-
d: "
|
|
3524
|
+
d: "M18.74 10.242c.018 0 .642-.043 1.873-.13 1.248-.104 1.88-.156 1.898-.156.208 0 .312.078.312.234 0 .156-.295 1.395-.884 3.718-.139.59-.295 1.196-.468 1.82a60.807 60.807 0 0 1-.364 1.404l-.104.494c0 .052.052.026.156-.078a4.832 4.832 0 0 1 1.976-.988c.208-.035.424-.052.65-.052.225 0 .442.017.65.052.901.208 1.62.676 2.158 1.404.537.728.806 1.647.806 2.756 0 1.941-.685 3.692-2.054 5.252-1.352 1.543-2.825 2.314-4.42 2.314-.503 0-.98-.113-1.43-.338-1.352-.607-2.028-1.89-2.028-3.848 0-.503.052-.997.156-1.482 0-.017.433-1.794 1.3-5.33l1.326-5.304c.035-.243-.026-.39-.182-.442-.139-.07-.381-.104-.728-.104h-.286c-.364 0-.572-.026-.624-.078-.104-.087-.113-.295-.026-.624.07-.243.13-.381.182-.416.052-.052.104-.078.156-.078Zm6.423 9.308c0-1.387-.529-2.08-1.586-2.08-.035 0-.096.009-.182.026h-.13c-.902.19-1.75.815-2.548 1.872a1.501 1.501 0 0 0-.13.156l-.078.104c0 .017-.156.641-.468 1.872a96.026 96.026 0 0 0-.494 2.08 7.731 7.731 0 0 0-.156 1.456c0 .832.208 1.456.624 1.872.277.277.624.416 1.04.416.572 0 1.152-.277 1.742-.832.433-.399.78-.884 1.04-1.456.277-.59.563-1.5.858-2.73.312-1.248.468-2.167.468-2.756Z"
|
|
3534
3525
|
}));
|
|
3535
|
-
case "
|
|
3526
|
+
case "c":
|
|
3536
3527
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3528
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3529
|
+
width: "44",
|
|
3530
|
+
height: "44",
|
|
3540
3531
|
fill: "none",
|
|
3541
|
-
|
|
3532
|
+
viewBox: "0 0 44 44"
|
|
3542
3533
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
d: "M12.9571 13.2929c.3905.3905.3905 1.0237 0 1.4142C11.6871 15.9771 11 17.9485 11 20c0 2.0515.6871 4.0229 1.9571 5.2929.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0C9.81292 24.9771 9 22.4485 9 20c0-2.4485.81292-4.9771 2.5429-6.7071.3905-.3905 1.0237-.3905 1.4142 0zm4.5858 0c.3905-.3905 1.0237-.3905 1.4142 0C20.6871 15.0229 21.5 17.5515 21.5 20c0 2.4485-.8129 4.9771-2.5429 6.7071-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142C18.8129 24.0229 19.5 22.0515 19.5 20c0-2.0515-.6871-4.0229-1.9571-5.2929-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
3546
|
-
fill: "#21242C"
|
|
3547
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
3548
|
-
fillRule: "evenodd",
|
|
3549
|
-
clipRule: "evenodd",
|
|
3550
|
-
d: "M25.5429 16.2929c.3905-.3905 1.0237-.3905 1.4142 0l3 3c.3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L26.8358 21H16.25c-.5523 0-1-.4477-1-1s.4477-1 1-1h10.5858l-1.2929-1.2929c-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
3551
|
-
fill: "#1865F2"
|
|
3534
|
+
fill: "#21242C",
|
|
3535
|
+
d: "M26.932 24.854c.07 0 .182.087.338.26.173.156.26.268.26.338 0 .156-.269.476-.806.962-1.075.97-2.435 1.577-4.082 1.82-.381.034-.72.052-1.014.052-1.855 0-3.146-.763-3.874-2.288a4.598 4.598 0 0 1-.494-2.132c0-.797.165-1.612.494-2.444.503-1.3 1.317-2.4 2.444-3.302 1.144-.919 2.357-1.448 3.64-1.586.104-.017.269-.026.494-.026.607 0 1.17.095 1.69.286.97.416 1.456 1.075 1.456 1.976 0 .537-.165.98-.494 1.326-.33.33-.745.494-1.248.494-.33 0-.59-.087-.78-.26-.19-.19-.286-.45-.286-.78 0-.295.087-.58.26-.858.173-.277.399-.477.676-.598.139-.087.234-.13.286-.13.07 0 .009-.06-.182-.182-.33-.19-.789-.286-1.378-.286-.52 0-1.014.121-1.482.364-.364.156-.737.425-1.118.806a5.29 5.29 0 0 0-1.092 1.612c-.277.624-.555 1.517-.832 2.678-.19.814-.286 1.465-.286 1.95 0 .797.225 1.395.676 1.794.399.416.936.624 1.612.624.26 0 .529-.018.806-.052 1.63-.243 2.964-.962 4.004-2.158.156-.174.26-.26.312-.26Z"
|
|
3552
3536
|
}));
|
|
3553
|
-
case "
|
|
3537
|
+
case "d":
|
|
3554
3538
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3540
|
+
width: "44",
|
|
3541
|
+
height: "44",
|
|
3558
3542
|
fill: "none",
|
|
3559
|
-
|
|
3543
|
+
viewBox: "0 0 44 44"
|
|
3560
3544
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
3564
|
-
fill: "#1865F2"
|
|
3565
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
3566
|
-
fillRule: "evenodd",
|
|
3567
|
-
clipRule: "evenodd",
|
|
3568
|
-
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
3569
|
-
fill: "#21242C"
|
|
3545
|
+
fill: "#21242C",
|
|
3546
|
+
d: "M26.634 10.112c.26-.017.555-.035.884-.052.33-.035.572-.06.728-.078.173-.017.269-.026.286-.026.208 0 .312.07.312.208 0 .121-.641 2.747-1.924 7.878a2094.732 2094.732 0 0 0-1.924 7.8 2.156 2.156 0 0 0-.026.39c0 .728.243 1.092.728 1.092.156-.017.33-.095.52-.234.364-.347.72-1.179 1.066-2.496.104-.347.19-.529.26-.546.035-.017.121-.026.26-.026h.104c.33 0 .494.07.494.208 0 .07-.026.208-.078.416-.381 1.456-.85 2.461-1.404 3.016a2.572 2.572 0 0 1-.832.546 2.776 2.776 0 0 1-.624.052c-1.092 0-1.855-.425-2.288-1.274-.087-.225-.13-.33-.13-.312-.017-.017-.052-.009-.104.026l-.104.104c-.832.78-1.655 1.257-2.47 1.43-.104.017-.32.026-.65.026-1.144 0-2.089-.477-2.834-1.43-.52-.763-.78-1.733-.78-2.912 0-1.612.59-3.207 1.768-4.784 1.075-1.317 2.27-2.14 3.588-2.47a3.87 3.87 0 0 1 1.066-.156c.953 0 1.681.364 2.184 1.092.087.104.13.139.13.104l.702-2.834c.468-1.837.71-2.8.728-2.886 0-.208-.052-.347-.156-.416-.19-.07-.537-.113-1.04-.13h-.546a1.192 1.192 0 0 1-.182-.208c0-.035.026-.2.078-.494.087-.33.2-.494.338-.494a17.914 17.914 0 0 1 .962-.078l.91-.052Zm-2.236 9.412c-.381-1.37-1.031-2.054-1.95-2.054-.693 0-1.309.295-1.846.884a6.274 6.274 0 0 0-1.196 2.028 20.753 20.753 0 0 0-1.066 4.264c0 .052-.009.147-.026.286v.312c0 .624.13 1.127.39 1.508.277.381.676.572 1.196.572.919 0 1.88-.624 2.886-1.872l.208-.286.702-2.808c.312-1.265.546-2.21.702-2.834Z"
|
|
3570
3547
|
}));
|
|
3571
|
-
case "
|
|
3548
|
+
case "e":
|
|
3572
3549
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3550
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3551
|
+
width: "44",
|
|
3552
|
+
height: "44",
|
|
3576
3553
|
fill: "none",
|
|
3577
|
-
|
|
3578
|
-
display: "block",
|
|
3579
|
-
transform: "scale(1,-1)"
|
|
3580
|
-
},
|
|
3581
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
3554
|
+
viewBox: "0 0 44 44"
|
|
3582
3555
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
3586
|
-
fill: "#1865F2"
|
|
3587
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
3588
|
-
fillRule: "evenodd",
|
|
3589
|
-
clipRule: "evenodd",
|
|
3590
|
-
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
3591
|
-
fill: "#21242C"
|
|
3556
|
+
fill: "#21242C",
|
|
3557
|
+
d: "M26.5 24.854c.07 0 .182.087.338.26.174.156.26.268.26.338 0 .156-.268.476-.806.962-1.421 1.248-3.094 1.872-5.018 1.872-.953 0-1.76-.234-2.418-.702-.381-.208-.728-.546-1.04-1.014-.572-.867-.858-1.846-.858-2.938 0-.659.07-1.309.208-1.95.364-1.352 1.11-2.505 2.236-3.458 1.144-.954 2.514-1.517 4.108-1.69.018-.017.156-.026.416-.026h.078c.728 0 1.344.165 1.846.494.52.312.858.745 1.014 1.3.018.07.026.225.026.468 0 .312-.017.529-.052.65-.364 1.23-1.308 2.036-2.834 2.418-.85.225-2.01.346-3.484.364-.641 0-.97.017-.988.052 0 .017-.017.13-.052.338-.19.85-.286 1.543-.286 2.08 0 .814.182 1.465.546 1.95.364.468.91.702 1.638.702 1.942 0 3.545-.737 4.81-2.21.156-.174.26-.26.312-.26Zm-.858-6.032c-.104-.901-.693-1.352-1.768-1.352-.606 0-1.23.173-1.872.52-.85.503-1.482 1.291-1.898 2.366-.19.52-.286.806-.286.858 0 .017.174.026.52.026.572 0 1.1-.017 1.586-.052 1.023-.087 1.786-.234 2.288-.442a2.776 2.776 0 0 0 1.248-1.04c.122-.26.182-.555.182-.884Z"
|
|
3592
3558
|
}));
|
|
3593
|
-
case "
|
|
3559
|
+
case "f":
|
|
3594
3560
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3561
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3562
|
+
width: "44",
|
|
3563
|
+
height: "44",
|
|
3598
3564
|
fill: "none",
|
|
3599
|
-
|
|
3600
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3601
|
-
fillRule: "evenodd",
|
|
3602
|
-
clipRule: "evenodd",
|
|
3603
|
-
d: "M9 11c.55228 0 1 .4477 1 1v16c0 .5523-.44772 1-1 1s-1-.4477-1-1V12c0-.5523.44772-1 1-1zm5 1c0-.5523.4477-1 1-1h3.9998c.0001 0 0 0 0 0 .1356 0 .2651.027.383.0759.1171.0484.2268.1201.3222.2149l.0042.0042c.1931.1942.29.448.2908.702V16c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L16.5858 13H15c-.5523 0-1-.4477-1-1z",
|
|
3604
|
-
fill: "#1865F2"
|
|
3605
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
3606
|
-
fillRule: "evenodd",
|
|
3607
|
-
clipRule: "evenodd",
|
|
3608
|
-
d: "M23 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3609
|
-
fill: "#21242C"
|
|
3610
|
-
}), /*#__PURE__*/React.createElement("g", {
|
|
3611
|
-
clipPath: "url(#clip0_874_41680)"
|
|
3612
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3613
|
-
fillRule: "evenodd",
|
|
3614
|
-
clipRule: "evenodd",
|
|
3615
|
-
d: "M20 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H21c-.5523 0-1-.4477-1-1z",
|
|
3616
|
-
fill: "#21242C"
|
|
3617
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
3618
|
-
fillRule: "evenodd",
|
|
3619
|
-
clipRule: "evenodd",
|
|
3620
|
-
d: "M23 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3621
|
-
fill: "#1865F2"
|
|
3622
|
-
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
3623
|
-
id: "clip0_874_41680"
|
|
3565
|
+
viewBox: "0 0 44 44"
|
|
3624
3566
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3625
|
-
fill: "#
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
case "JUMP_OUT_NUMERATOR":
|
|
3567
|
+
fill: "#21242C",
|
|
3568
|
+
d: "M18.695 32.212c.468.104.72.156.754.156.399 0 .745-.364 1.04-1.092.208-.572.84-3.657 1.898-9.256.485-2.617.737-3.935.754-3.952v-.078h-1.222c-.815 0-1.248-.017-1.3-.052-.121-.07-.139-.26-.052-.572.07-.26.113-.399.13-.416.035-.087.104-.13.208-.13.121-.017.529-.026 1.222-.026.832 0 1.248-.009 1.248-.026 0-.035.078-.468.234-1.3.156-.832.26-1.335.312-1.508.364-1.647.91-2.79 1.638-3.432.693-.572 1.413-.858 2.158-.858.624.035 1.144.225 1.56.572.433.347.65.806.65 1.378 0 .503-.156.927-.468 1.274-.312.347-.702.52-1.17.52-.763 0-1.144-.364-1.144-1.092 0-.641.303-1.11.91-1.404l.234-.13c-.312-.104-.572-.156-.78-.156-.503 0-.832.33-.988.988-.139.52-.364 1.655-.676 3.406l-.338 1.716c0 .035.477.052 1.43.052.78 0 1.248.009 1.404.026.156.017.234.078.234.182 0 .19-.06.468-.182.832-.035.087-.121.139-.26.156h-2.834l-.598 3.172c-.641 3.31-1.04 5.313-1.196 6.006-.59 2.617-1.378 4.394-2.366 5.33-.641.555-1.274.832-1.898.832-.624 0-1.144-.173-1.56-.52-.416-.347-.624-.806-.624-1.378 0-.52.156-.962.468-1.326.312-.347.702-.52 1.17-.52.763 0 1.144.364 1.144 1.092 0 .641-.303 1.11-.91 1.404l-.234.13Z"
|
|
3569
|
+
}));
|
|
3570
|
+
case "g":
|
|
3630
3571
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3572
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3573
|
+
width: "44",
|
|
3574
|
+
height: "44",
|
|
3634
3575
|
fill: "none",
|
|
3635
|
-
|
|
3636
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3637
|
-
fillRule: "evenodd",
|
|
3638
|
-
clipRule: "evenodd",
|
|
3639
|
-
d: "M26 13c.5523 0 1 .4477 1 1v11.5858l1.2929-1.2929c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0l-3-3c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0L25 25.5858V14c0-.5523.4477-1 1-1zM13 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3640
|
-
fill: "#1865F2"
|
|
3641
|
-
}), /*#__PURE__*/React.createElement("g", {
|
|
3642
|
-
clipPath: "url(#clip0_874_41686)"
|
|
3643
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3644
|
-
fillRule: "evenodd",
|
|
3645
|
-
clipRule: "evenodd",
|
|
3646
|
-
d: "M10 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H11c-.5523 0-1-.4477-1-1z",
|
|
3647
|
-
fill: "#21242C"
|
|
3648
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
3649
|
-
fillRule: "evenodd",
|
|
3650
|
-
clipRule: "evenodd",
|
|
3651
|
-
d: "M13 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3652
|
-
fill: "#21242C"
|
|
3653
|
-
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
3654
|
-
id: "clip0_874_41686"
|
|
3576
|
+
viewBox: "0 0 44 44"
|
|
3655
3577
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3656
|
-
fill: "#
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
case "JUMP_OUT_DENOMINATOR":
|
|
3578
|
+
fill: "#21242C",
|
|
3579
|
+
d: "M17.729 29.846c.312 0 .572.095.78.286.208.19.312.442.312.754 0 .468-.174.867-.52 1.196-.122.121-.165.182-.13.182.173.052.693.078 1.56.078.658 0 1.178-.104 1.56-.312.398-.19.771-.486 1.118-.884.346-.381.589-.78.728-1.196.104-.33.242-.867.416-1.612.225-.832.338-1.318.338-1.456a5.177 5.177 0 0 1-2.08 1.066 3.946 3.946 0 0 1-.65.052c-1.127 0-2.02-.39-2.678-1.17-.642-.797-.962-1.794-.962-2.99 0-1.092.251-2.14.754-3.146.797-1.664 1.941-2.869 3.432-3.614.797-.381 1.551-.572 2.262-.572.797 0 1.551.416 2.262 1.248a.854.854 0 0 0 .104-.13c.242-.399.606-.598 1.092-.598a.93.93 0 0 1 .598.208.64.64 0 0 1 .26.52c0 .26-.494 2.357-1.482 6.292-.988 3.935-1.508 5.945-1.56 6.032-.33.936-1.014 1.707-2.054 2.314-1.023.624-2.176.936-3.458.936-1.994 0-3.172-.381-3.536-1.144-.087-.156-.13-.364-.13-.624 0-.45.156-.85.468-1.196.312-.347.71-.52 1.196-.52Zm8.06-10.374c-.139-.45-.278-.798-.416-1.04a1.757 1.757 0 0 0-.598-.65c-.278-.208-.616-.312-1.014-.312a1.1 1.1 0 0 0-.182.026h-.13c-.728.173-1.361.624-1.898 1.352-.486.641-.945 1.811-1.378 3.51-.295 1.178-.442 2.045-.442 2.6 0 1.37.537 2.054 1.612 2.054.988 0 1.941-.607 2.86-1.82l.208-.26a459.483 459.483 0 0 0 1.378-5.46Z"
|
|
3580
|
+
}));
|
|
3581
|
+
case "h":
|
|
3661
3582
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3583
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3584
|
+
width: "44",
|
|
3585
|
+
height: "44",
|
|
3665
3586
|
fill: "none",
|
|
3666
|
-
|
|
3667
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3668
|
-
fillRule: "evenodd",
|
|
3669
|
-
clipRule: "evenodd",
|
|
3670
|
-
d: "M31 11c.5523 0 1 .4477 1 1v16c0 .5523-.4477 1-1 1s-1-.4477-1-1V12c0-.5523.4477-1 1-1zm-9 9c0-.5523.4477-1 1-1h4c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L24.5858 21H23c-.5523 0-1-.4477-1-1z",
|
|
3671
|
-
fill: "#1865F2"
|
|
3672
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
3673
|
-
fillRule: "evenodd",
|
|
3674
|
-
clipRule: "evenodd",
|
|
3675
|
-
d: "M11 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3676
|
-
fill: "#21242C"
|
|
3677
|
-
}), /*#__PURE__*/React.createElement("g", {
|
|
3678
|
-
clipPath: "url(#clip0_874_41692)"
|
|
3679
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
3680
|
-
fillRule: "evenodd",
|
|
3681
|
-
clipRule: "evenodd",
|
|
3682
|
-
d: "M8 20c0-.5523.44772-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H9c-.55228 0-1-.4477-1-1z",
|
|
3683
|
-
fill: "#21242C"
|
|
3684
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
3685
|
-
fillRule: "evenodd",
|
|
3686
|
-
clipRule: "evenodd",
|
|
3687
|
-
d: "M11 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
3688
|
-
fill: "#21242C"
|
|
3689
|
-
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
3690
|
-
id: "clip0_874_41692"
|
|
3587
|
+
viewBox: "0 0 44 44"
|
|
3691
3588
|
}, /*#__PURE__*/React.createElement("path", {
|
|
3692
|
-
fill: "#
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
}))));
|
|
3696
|
-
|
|
3697
|
-
/**
|
|
3698
|
-
* ANYTHING BELOW IS NOT YET HANDLED
|
|
3699
|
-
*/
|
|
3700
|
-
case "MANY":
|
|
3701
|
-
case "NOOP":
|
|
3702
|
-
case "UP":
|
|
3703
|
-
case "DOWN":
|
|
3704
|
-
case "LEFT":
|
|
3705
|
-
case "RIGHT":
|
|
3706
|
-
case "PHI":
|
|
3707
|
-
case "NTHROOT3":
|
|
3708
|
-
case "POW":
|
|
3709
|
-
case "LOG_B":
|
|
3710
|
-
case "a":
|
|
3711
|
-
case "b":
|
|
3712
|
-
case "c":
|
|
3713
|
-
case "d":
|
|
3714
|
-
case "e":
|
|
3715
|
-
case "f":
|
|
3716
|
-
case "g":
|
|
3717
|
-
case "h":
|
|
3589
|
+
fill: "#21242C",
|
|
3590
|
+
d: "M25.274 28.26c-.676 0-1.23-.2-1.664-.598-.433-.416-.65-.945-.65-1.586 0-.277.087-.659.26-1.144.815-2.097 1.335-3.735 1.56-4.914.052-.26.078-.59.078-.988 0-1.023-.425-1.534-1.274-1.534-.312 0-.537.017-.676.052-1.162.243-2.184 1.075-3.068 2.496l-.182.338-.884 3.51c-.555 2.253-.876 3.484-.962 3.692-.226.468-.607.702-1.144.702-.208 0-.416-.07-.624-.208a.56.56 0 0 1-.286-.494c0-.208 1.274-5.408 3.822-15.6 0-.208-.052-.347-.156-.416-.19-.07-.537-.113-1.04-.13h-.546a1.192 1.192 0 0 1-.182-.208c0-.035.026-.2.078-.494.086-.33.2-.494.338-.494.017 0 .641-.043 1.872-.13 1.248-.104 1.88-.156 1.898-.156.208 0 .312.078.312.234 0 .19-.312 1.5-.936 3.926-.659 2.565-.988 3.874-.988 3.926 0 .035.06-.009.182-.13 1.023-.936 2.15-1.404 3.38-1.404.953 0 1.716.234 2.288.702.572.468.858 1.153.858 2.054 0 .399-.026.728-.078.988-.156.884-.633 2.418-1.43 4.602-.312.85-.468 1.465-.468 1.846.017.243.06.407.13.494.07.087.2.13.39.13.485 0 .936-.26 1.352-.78.433-.537.771-1.248 1.014-2.132.052-.19.104-.303.156-.338.052-.035.19-.052.416-.052.33.052.502.121.52.208 0 .017-.035.147-.104.39-.277 1.023-.72 1.863-1.326 2.522-.59.745-1.335 1.118-2.236 1.118Z"
|
|
3591
|
+
}));
|
|
3718
3592
|
case "i":
|
|
3593
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3594
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3595
|
+
width: "44",
|
|
3596
|
+
height: "44",
|
|
3597
|
+
fill: "none",
|
|
3598
|
+
viewBox: "0 0 44 44"
|
|
3599
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3600
|
+
fill: "#21242C",
|
|
3601
|
+
d: "M22.302 12.4c0-.399.165-.763.495-1.092.329-.33.71-.494 1.143-.494.313 0 .572.104.78.312.226.208.338.468.338.78 0 .381-.173.745-.52 1.092-.346.347-.727.52-1.143.52-.313 0-.572-.104-.78-.312-.208-.208-.313-.477-.313-.806Zm-.598 15.886c-.675 0-1.221-.2-1.637-.598-.416-.399-.625-.936-.625-1.612 0-.295.018-.494.052-.598 0-.035.4-1.1 1.197-3.198.797-2.115 1.196-3.19 1.196-3.224.086-.277.13-.59.13-.936 0-.416-.148-.624-.442-.624h-.052c-.416 0-.815.2-1.197.598-.554.572-.962 1.387-1.221 2.444a.427.427 0 0 1-.027.104.307.307 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.675c-.105-.104-.157-.182-.157-.234 0-.052.026-.173.078-.364.451-1.49 1.11-2.53 1.977-3.12.468-.364.97-.546 1.508-.546.693 0 1.265.2 1.716.598.45.399.675.936.675 1.612 0 .225-.043.485-.13.78-.017.035-.416 1.1-1.196 3.198l-1.17 3.146c-.086.381-.13.659-.13.832 0 .433.148.65.442.65.243 0 .46-.052.65-.156.763-.364 1.361-1.274 1.794-2.73.053-.208.096-.33.13-.364.052-.035.2-.052.442-.052.156 0 .26.009.313.026.069 0 .12.017.155.052.035.035.052.095.052.182 0 .07-.026.182-.078.338-.329.988-.806 1.846-1.43 2.574-.606.728-1.325 1.092-2.157 1.092Z"
|
|
3602
|
+
}));
|
|
3719
3603
|
case "j":
|
|
3604
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3605
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3606
|
+
width: "44",
|
|
3607
|
+
height: "44",
|
|
3608
|
+
fill: "none",
|
|
3609
|
+
viewBox: "0 0 44 44"
|
|
3610
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3611
|
+
fill: "#21242C",
|
|
3612
|
+
d: "M24.365 12.504c0-.45.164-.84.494-1.17.329-.347.719-.52 1.17-.52.294 0 .537.095.728.286.208.173.329.407.364.702 0 .468-.156.875-.468 1.222-.312.33-.702.494-1.17.494-.312 0-.572-.087-.78-.26a1.059 1.059 0 0 1-.338-.754Zm-.234 5.72c0-.503-.226-.754-.676-.754-.191 0-.39.035-.598.104-.468.156-.928.485-1.378.988-.434.503-.798 1.118-1.092 1.846a1.45 1.45 0 0 1-.078.182.454.454 0 0 0-.052.13l-.078.026a.492.492 0 0 1-.156.026h-.598c-.14-.139-.156-.32-.052-.546.52-1.248 1.196-2.201 2.028-2.86.589-.468 1.187-.745 1.794-.832h.208c.12-.017.225-.026.312-.026.416.017.797.104 1.144.26.45.277.78.572.988.884.225.295.338.728.338 1.3v.416l-1.274 5.174c-.884 3.467-1.352 5.27-1.404 5.408-.278.745-.754 1.404-1.43 1.976a5.47 5.47 0 0 1-2.21 1.222 5.448 5.448 0 0 1-1.274.156c-.676 0-1.222-.147-1.638-.442-.416-.295-.624-.728-.624-1.3 0-.485.173-.893.52-1.222.346-.33.736-.494 1.17-.494.329 0 .589.095.78.286.208.19.312.45.312.78 0 .624-.278 1.1-.832 1.43.086.017.208.026.364.026.589 0 1.126-.251 1.612-.754a4.877 4.877 0 0 0 1.118-1.69l.286-1.092c.19-.745.416-1.647.676-2.704.277-1.075.554-2.158.832-3.25.277-1.092.51-2.054.702-2.886.19-.85.286-1.343.286-1.482 0-.121-.01-.217-.026-.286Z"
|
|
3613
|
+
}));
|
|
3720
3614
|
case "k":
|
|
3615
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3616
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3617
|
+
width: "44",
|
|
3618
|
+
height: "44",
|
|
3619
|
+
fill: "none",
|
|
3620
|
+
viewBox: "0 0 44 44"
|
|
3621
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3622
|
+
fill: "#21242C",
|
|
3623
|
+
d: "M18.783 10.242c.017 0 .641-.043 1.872-.13 1.248-.104 1.88-.156 1.898-.156.208 0 .312.07.312.208 0 .121-.434 1.933-1.3 5.434-.867 3.432-1.3 5.209-1.3 5.33.33-.208.598-.381.806-.52.208-.156.372-.286.494-.39.121-.121.416-.407.884-.858 1.04-1.04 1.768-1.69 2.184-1.95.693-.468 1.352-.702 1.976-.702.52 0 .927.173 1.222.52.312.347.468.806.468 1.378 0 .624-.148 1.135-.442 1.534-.295.381-.71.572-1.248.572a1.24 1.24 0 0 1-.832-.286c-.208-.19-.312-.442-.312-.754 0-.433.147-.797.442-1.092a1.703 1.703 0 0 1 1.04-.546l.182-.052c-.208-.208-.416-.312-.624-.312-.59 0-1.283.295-2.08.884-.33.26-.832.728-1.508 1.404a29.066 29.066 0 0 1-1.768 1.612c.814.19 1.37.338 1.664.442.832.33 1.386.78 1.664 1.352.156.312.234.65.234 1.014 0 .225-.052.598-.156 1.118-.087.52-.13.85-.13.988 0 .693.234 1.04.702 1.04.312 0 .598-.13.858-.39.433-.433.823-1.335 1.17-2.704.034-.139.208-.208.52-.208.242 0 .381.017.416.052.104.07.112.251.026.546-.468 1.577-1.066 2.643-1.794 3.198-.434.312-.858.468-1.274.468-.798 0-1.439-.234-1.924-.702-.468-.485-.702-1.127-.702-1.924a5.2 5.2 0 0 1 .078-.728c.052-.33.078-.563.078-.702 0-.225-.052-.442-.156-.65-.226-.433-.65-.771-1.274-1.014-.572-.19-.97-.286-1.196-.286H19.9c-.226.85-.442 1.673-.65 2.47a99.07 99.07 0 0 1-.442 1.794 9.4 9.4 0 0 1-.234.91 1.231 1.231 0 0 1-.468.572c-.226.173-.468.26-.728.26-.208 0-.416-.07-.624-.208a.56.56 0 0 1-.286-.494c0-.173.32-1.56.962-4.16.641-2.6 1.274-5.157 1.898-7.67l.962-3.77c.034-.243-.026-.39-.182-.442-.139-.07-.382-.104-.728-.104h-.286c-.364 0-.572-.026-.624-.078-.104-.087-.113-.295-.026-.624.07-.243.13-.381.182-.416.052-.052.104-.078.156-.078Z"
|
|
3624
|
+
}));
|
|
3721
3625
|
case "l":
|
|
3626
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3627
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3628
|
+
width: "44",
|
|
3629
|
+
height: "44",
|
|
3630
|
+
fill: "none",
|
|
3631
|
+
viewBox: "0 0 44 44"
|
|
3632
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3633
|
+
fill: "#21242C",
|
|
3634
|
+
d: "M21.69 28.286c-.78 0-1.404-.217-1.872-.65-.468-.45-.702-1.066-.702-1.846 0-.208.009-.355.026-.442l3.328-13.364a.24.24 0 0 0 0-.156.426.426 0 0 1-.026-.13c0-.035-.017-.06-.052-.078a.408.408 0 0 0-.104-.078c-.017-.017-.052-.026-.104-.026a.426.426 0 0 0-.13-.026.445.445 0 0 0-.182-.026.761.761 0 0 0-.182-.026h-.39c-.416 0-.659-.06-.728-.182-.017-.052 0-.2.052-.442.087-.33.165-.511.234-.546.052-.017.693-.07 1.924-.156a121.23 121.23 0 0 1 1.95-.156c.208 0 .312.07.312.208 0 .19-.633 2.79-1.898 7.8s-1.915 7.635-1.95 7.878c0 .035-.009.113-.026.234v.234c0 .503.121.823.364.962a.72.72 0 0 0 .312.052.986.986 0 0 0 .312-.078c.485-.277.919-1.161 1.3-2.652.104-.347.19-.529.26-.546.035-.017.121-.026.26-.026h.104c.312.087.477.165.494.234 0 .121-.07.425-.208.91-.139.468-.269.84-.39 1.118-.485 1.127-1.11 1.777-1.872 1.95a2.243 2.243 0 0 1-.416.052Z"
|
|
3635
|
+
}));
|
|
3722
3636
|
case "m":
|
|
3637
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3638
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3639
|
+
width: "44",
|
|
3640
|
+
height: "44",
|
|
3641
|
+
fill: "none",
|
|
3642
|
+
viewBox: "0 0 44 44"
|
|
3643
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3644
|
+
fill: "#21242C",
|
|
3645
|
+
d: "M13.395 28.286a.968.968 0 0 1-.624-.208.597.597 0 0 1-.26-.52c0-.226.33-1.647.988-4.264.676-2.67 1.014-4.065 1.014-4.186.052-.26.078-.494.078-.702 0-.624-.217-.936-.65-.936-.156 0-.33.06-.52.182-.416.33-.832 1.291-1.248 2.886a.427.427 0 0 1-.026.104.301.301 0 0 1-.052.078l-.026.026c-.018.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.226.121-.659.364-1.3.347-1.005.728-1.707 1.144-2.106.416-.416.875-.624 1.378-.624 1.092 0 1.854.39 2.288 1.17.19.33.286.572.286.728 0 .035.009.052.026.052l.286-.286c1.057-1.11 2.28-1.664 3.666-1.664 1.681 0 2.695.71 3.042 2.132l.026.078.208-.26c.641-.763 1.386-1.317 2.236-1.664a4.865 4.865 0 0 1 1.638-.286c.953 0 1.716.234 2.288.702.572.468.858 1.152.858 2.054 0 .399-.026.728-.078.988-.156.884-.633 2.418-1.43 4.602-.312.832-.468 1.447-.468 1.846.017.242.06.407.13.494.07.087.2.13.39.13.485 0 .936-.26 1.352-.78.433-.538.771-1.248 1.014-2.132.052-.19.104-.303.156-.338.052-.035.19-.052.416-.052.33.052.503.121.52.208 0 .017-.035.147-.104.39-.45 1.612-1.265 2.747-2.444 3.406-.312.156-.685.234-1.118.234-.659 0-1.222-.208-1.69-.624-.416-.485-.624-.997-.624-1.534 0-.33.121-.815.364-1.456.762-2.028 1.248-3.57 1.456-4.628.052-.26.078-.59.078-.988 0-1.023-.425-1.534-1.274-1.534-.312 0-.538.017-.676.052-1.213.26-2.245 1.118-3.094 2.574l-.182.312-.858 3.484c-.572 2.27-.901 3.492-.988 3.666-.226.468-.598.702-1.118.702-.416 0-.694-.174-.832-.52l-.026-.078a.398.398 0 0 1-.052-.156c0-.19.294-1.43.884-3.718.138-.555.277-1.127.416-1.716.156-.607.277-1.092.364-1.456.104-.381.156-.59.156-.624.052-.26.078-.59.078-.988 0-1.023-.425-1.534-1.274-1.534-.312 0-.538.017-.676.052-1.213.26-2.245 1.118-3.094 2.574l-.182.312-.858 3.484c-.572 2.27-.901 3.492-.988 3.666-.226.468-.598.702-1.118.702Z"
|
|
3646
|
+
}));
|
|
3723
3647
|
case "n":
|
|
3648
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3649
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3650
|
+
width: "44",
|
|
3651
|
+
height: "44",
|
|
3652
|
+
fill: "none",
|
|
3653
|
+
viewBox: "0 0 44 44"
|
|
3654
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3655
|
+
fill: "#21242C",
|
|
3656
|
+
d: "M17.013 28.286a.968.968 0 0 1-.624-.208.596.596 0 0 1-.26-.52c0-.226.33-1.638.988-4.238.659-2.6 1.005-4.013 1.04-4.238a4.07 4.07 0 0 0 .026-.598c0-.676-.208-1.014-.624-1.014-.399 0-.763.32-1.092.962-.19.364-.373.91-.546 1.638a8.959 8.959 0 0 0-.156.546c-.035.104-.2.156-.494.156h-.364c-.104-.104-.156-.182-.156-.234 0-.07.043-.252.13-.546.52-2.046 1.317-3.19 2.392-3.432.139-.035.286-.052.442-.052 1.023 0 1.76.39 2.21 1.17.19.33.286.572.286.728 0 .035.009.052.026.052l.286-.286c1.075-1.11 2.28-1.664 3.614-1.664.953 0 1.716.234 2.288.702.572.468.858 1.152.858 2.054 0 .399-.026.728-.078.988-.173.988-.65 2.505-1.43 4.55-.312.832-.468 1.447-.468 1.846 0 .45.147.676.442.676.59 0 1.092-.312 1.508-.936a7.04 7.04 0 0 0 .988-2.158c.035-.139.208-.208.52-.208.33.052.503.121.52.208 0 .017-.035.147-.104.39-.45 1.612-1.265 2.747-2.444 3.406-.312.156-.685.234-1.118.234-.659 0-1.222-.208-1.69-.624-.416-.485-.624-.997-.624-1.534 0-.33.121-.815.364-1.456.763-2.028 1.248-3.57 1.456-4.628.052-.26.078-.59.078-.988 0-1.023-.425-1.534-1.274-1.534-.312 0-.537.017-.676.052-1.213.26-2.245 1.118-3.094 2.574l-.182.312-.858 3.484c-.572 2.27-.901 3.492-.988 3.666-.225.468-.598.702-1.118.702Z"
|
|
3657
|
+
}));
|
|
3724
3658
|
case "o":
|
|
3659
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3660
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3661
|
+
width: "44",
|
|
3662
|
+
height: "44",
|
|
3663
|
+
fill: "none",
|
|
3664
|
+
viewBox: "0 0 44 44"
|
|
3665
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3666
|
+
fill: "#21242C",
|
|
3667
|
+
d: "M23.152 16.534h.364c.555 0 .902.009 1.04.026 1.092.19 1.95.676 2.575 1.456.623.78.936 1.786.936 3.016 0 1.023-.27 2.046-.806 3.068a7.88 7.88 0 0 1-2.756 3.042c-1.18.763-2.375 1.144-3.588 1.144-1.214 0-2.193-.347-2.939-1.04-.745-.693-1.204-1.603-1.378-2.73a4.113 4.113 0 0 1-.026-.572c0-.45.026-.814.078-1.092.156-.884.494-1.742 1.014-2.574a8.9 8.9 0 0 1 1.82-2.158c1.18-.919 2.401-1.447 3.666-1.586Zm-4.316 8.346c0 .745.2 1.344.599 1.794.416.434.953.65 1.612.65.311 0 .623-.052.936-.156 1.265-.416 2.21-1.37 2.834-2.86.38-.936.693-2.106.936-3.51.017-.104.026-.372.026-.806 0-1.681-.711-2.522-2.133-2.522-1.091 0-2.053.503-2.886 1.508-.572.694-1.04 1.699-1.404 3.016-.346 1.265-.52 2.227-.52 2.886Z"
|
|
3668
|
+
}));
|
|
3725
3669
|
case "p":
|
|
3670
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3671
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3672
|
+
width: "44",
|
|
3673
|
+
height: "44",
|
|
3674
|
+
fill: "none",
|
|
3675
|
+
viewBox: "0 0 44 44"
|
|
3676
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3677
|
+
fill: "#21242C",
|
|
3678
|
+
d: "M16.216 20.772c-.104-.104-.156-.182-.156-.234 0-.139.113-.546.338-1.222.33-1.005.72-1.733 1.17-2.184.416-.416.875-.624 1.378-.624 1.3 0 2.132.555 2.496 1.664l.26-.234c.78-.728 1.586-1.188 2.418-1.378.208-.035.425-.052.65-.052.225 0 .442.017.65.052.901.208 1.62.676 2.158 1.404.537.71.806 1.62.806 2.73 0 .815-.165 1.698-.494 2.652a8.628 8.628 0 0 1-1.924 3.016c-.85.85-1.777 1.43-2.782 1.742a4.732 4.732 0 0 1-1.248.156 3.04 3.04 0 0 1-1.014-.156 2.818 2.818 0 0 1-1.144-.91l-.13-.13c-.017.017-.208.771-.572 2.262-.364 1.49-.546 2.244-.546 2.262v.078c.017.035.035.06.052.078a.2.2 0 0 0 .078.026c.035.017.07.026.104.026a.429.429 0 0 0 .13.026h.182c.07.017.13.026.182.026h1.092c.087.121.13.2.13.234.017.035 0 .19-.052.468-.052.208-.104.338-.156.39-.052.07-.165.104-.338.104-.277 0-.737-.009-1.378-.026a55.471 55.471 0 0 0-1.404-.026c-1.213 0-1.985.017-2.314.052h-.208c-.121-.121-.182-.217-.182-.286 0-.07.035-.217.104-.442.052-.226.095-.356.13-.39l.104-.078h.52c.59-.017.927-.121 1.014-.312.052-.104.58-2.176 1.586-6.214 1.023-4.039 1.551-6.18 1.586-6.422.017-.087.026-.208.026-.364 0-.71-.217-1.066-.65-1.066a.761.761 0 0 0-.52.182c-.416.33-.832 1.291-1.248 2.886a.427.427 0 0 1-.026.104.301.301 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.676Zm9.932-1.222c0-1.387-.529-2.08-1.586-2.08a1.1 1.1 0 0 0-.182.026h-.13c-.901.19-1.75.815-2.548 1.872a1.523 1.523 0 0 0-.13.156l-.078.104c0 .017-.035.147-.104.39a38.14 38.14 0 0 1-.286 1.118c-.121.52-.234.97-.338 1.352-.45 1.837-.676 2.79-.676 2.86.121.416.234.72.338.91.381.71.91 1.066 1.586 1.066.555 0 1.066-.19 1.534-.572.468-.399.858-.91 1.17-1.534.312-.59.633-1.56.962-2.912.312-1.248.468-2.167.468-2.756Z"
|
|
3679
|
+
}));
|
|
3726
3680
|
case "q":
|
|
3681
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3682
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3683
|
+
width: "44",
|
|
3684
|
+
height: "44",
|
|
3685
|
+
fill: "none",
|
|
3686
|
+
viewBox: "0 0 44 44"
|
|
3687
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3688
|
+
fill: "#21242C",
|
|
3689
|
+
d: "M23.01 32.992h-1.43c-.59.017-1.022.026-1.3.026-.26 0-.39-.07-.39-.208 0-.035.009-.096.026-.182a.601.601 0 0 0 .052-.208c.07-.278.13-.442.182-.494.07-.052.243-.078.52-.078.832 0 1.335-.06 1.508-.182.104-.07.347-.858.728-2.366.347-1.404.529-2.115.546-2.132 0-.017-.06.009-.182.078a5.075 5.075 0 0 1-1.95.988c-.104.017-.32.026-.65.026-1.144 0-2.089-.477-2.834-1.43-.52-.763-.78-1.733-.78-2.912 0-.277.009-.468.026-.572a7.916 7.916 0 0 1 1.066-3.172c.607-1.023 1.326-1.846 2.158-2.47 1.005-.78 2.063-1.17 3.172-1.17.988 0 1.785.45 2.392 1.352.416-.416.694-.668.832-.754.59-.416.988-.624 1.196-.624.174 0 .26.07.26.208 0 .156-.598 2.626-1.794 7.41-1.23 4.922-1.846 7.418-1.846 7.488 0 .139.295.216.884.234h.936c.087.121.13.19.13.208.017.035 0 .2-.052.494-.07.225-.156.39-.26.494h-.338c-.537-.035-1.473-.052-2.808-.052Zm2.34-13.468c-.381-1.37-1.031-2.054-1.95-2.054-.693 0-1.308.295-1.846.884a6.274 6.274 0 0 0-1.196 2.028 20.755 20.755 0 0 0-1.066 4.264c0 .052-.009.147-.026.286v.312c0 .624.13 1.127.39 1.508.277.381.676.572 1.196.572.919 0 1.88-.624 2.886-1.872l.208-.286.702-2.808c.312-1.265.546-2.21.702-2.834Z"
|
|
3690
|
+
}));
|
|
3727
3691
|
case "r":
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3692
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3693
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3694
|
+
width: "44",
|
|
3695
|
+
height: "44",
|
|
3696
|
+
fill: "none",
|
|
3697
|
+
viewBox: "0 0 44 44"
|
|
3698
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3699
|
+
fill: "#21242C",
|
|
3700
|
+
d: "M18.943 28.286a.968.968 0 0 1-.624-.208.596.596 0 0 1-.26-.52c0-.226.346-1.716 1.04-4.472.693-2.756 1.04-4.29 1.04-4.602 0-.676-.226-1.014-.676-1.014a.72.72 0 0 0-.494.182c-.416.33-.832 1.291-1.248 2.886a.427.427 0 0 1-.026.104.304.304 0 0 1-.052.078l-.026.026c-.018.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.139.112-.546.338-1.222.329-1.005.719-1.733 1.17-2.184.416-.416.875-.624 1.378-.624.676 0 1.23.165 1.664.494.381.295.632.598.754.91a.64.64 0 0 0 .078.182c.017 0 .086-.07.208-.208.641-.71 1.378-1.153 2.21-1.326.104-.017.329-.026.676-.026.641 0 1.161.182 1.56.546.398.364.598.858.598 1.482 0 .554-.156 1.022-.468 1.404-.295.364-.694.546-1.196.546-.33 0-.607-.096-.832-.286-.208-.19-.312-.442-.312-.754 0-.85.485-1.404 1.456-1.664-.382-.226-.694-.338-.936-.338-.364 0-.711.087-1.04.26-.572.277-1.118.832-1.638 1.664a3.45 3.45 0 0 0-.39.858c-.087.295-.382 1.447-.884 3.458-.59 2.427-.928 3.718-1.014 3.874-.226.468-.598.702-1.118.702Z"
|
|
3701
|
+
}));
|
|
3702
|
+
case "s":
|
|
3703
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3704
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3705
|
+
width: "44",
|
|
3706
|
+
height: "44",
|
|
3707
|
+
fill: "none",
|
|
3708
|
+
viewBox: "0 0 44 44"
|
|
3709
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3710
|
+
fill: "#21242C",
|
|
3711
|
+
d: "M18.974 23.84c.33 0 .59.095.78.286.208.19.312.442.312.754 0 .294-.086.58-.26.858a1.505 1.505 0 0 1-.65.624 3.46 3.46 0 0 1-.364.13l-.104.052c-.017 0-.017.008 0 .026.052.087.208.2.468.338.503.26 1.162.39 1.976.39 1.317 0 2.245-.425 2.782-1.274.26-.434.39-.832.39-1.196 0-.555-.286-.97-.858-1.248-.156-.104-.59-.225-1.3-.364a28.175 28.175 0 0 0-.416-.078 1.515 1.515 0 0 0-.364-.078 7.27 7.27 0 0 0-.26-.078 3.629 3.629 0 0 0-.26-.078 1.156 1.156 0 0 0-.208-.104 5.875 5.875 0 0 0-.26-.182c-.71-.503-1.066-1.213-1.066-2.132 0-.97.355-1.846 1.066-2.626.797-.901 1.907-1.352 3.328-1.352 1.681 0 2.695.59 3.042 1.768.035.087.052.251.052.494 0 .485-.13.884-.39 1.196-.26.294-.607.442-1.04.442-.277 0-.503-.078-.676-.234-.173-.156-.26-.373-.26-.65 0-.572.26-.988.78-1.248.139-.07.217-.104.234-.104.052 0 .043-.044-.026-.13-.416-.382-1.014-.572-1.794-.572-.676 0-1.248.19-1.716.572a1.823 1.823 0 0 0-.702 1.482c0 .312.13.59.39.832.173.156.615.312 1.326.468.798.173 1.318.32 1.56.442.815.364 1.36.97 1.638 1.82.035.104.06.33.078.676 0 .59-.147 1.204-.442 1.846-.85 1.768-2.444 2.652-4.784 2.652-1.854 0-3.024-.538-3.51-1.612a2.13 2.13 0 0 1-.182-.91c0-.537.156-.988.468-1.352.33-.364.737-.546 1.222-.546Z"
|
|
3712
|
+
}));
|
|
3713
|
+
case "t":
|
|
3714
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3715
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3716
|
+
width: "44",
|
|
3717
|
+
height: "44",
|
|
3718
|
+
fill: "none",
|
|
3719
|
+
viewBox: "0 0 44 44"
|
|
3720
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3721
|
+
fill: "#21242C",
|
|
3722
|
+
d: "M18.974 23.84c.33 0 .59.095.78.286.208.19.312.442.312.754 0 .294-.086.58-.26.858a1.505 1.505 0 0 1-.65.624 3.46 3.46 0 0 1-.364.13l-.104.052c-.017 0-.017.008 0 .026.052.087.208.2.468.338.503.26 1.162.39 1.976.39 1.317 0 2.245-.425 2.782-1.274.26-.434.39-.832.39-1.196 0-.555-.286-.97-.858-1.248-.156-.104-.59-.225-1.3-.364a28.175 28.175 0 0 0-.416-.078 1.515 1.515 0 0 0-.364-.078 7.27 7.27 0 0 0-.26-.078 3.629 3.629 0 0 0-.26-.078 1.156 1.156 0 0 0-.208-.104 5.875 5.875 0 0 0-.26-.182c-.71-.503-1.066-1.213-1.066-2.132 0-.97.355-1.846 1.066-2.626.797-.901 1.907-1.352 3.328-1.352 1.681 0 2.695.59 3.042 1.768.035.087.052.251.052.494 0 .485-.13.884-.39 1.196-.26.294-.607.442-1.04.442-.277 0-.503-.078-.676-.234-.173-.156-.26-.373-.26-.65 0-.572.26-.988.78-1.248.139-.07.217-.104.234-.104.052 0 .043-.044-.026-.13-.416-.382-1.014-.572-1.794-.572-.676 0-1.248.19-1.716.572a1.823 1.823 0 0 0-.702 1.482c0 .312.13.59.39.832.173.156.615.312 1.326.468.798.173 1.318.32 1.56.442.815.364 1.36.97 1.638 1.82.035.104.06.33.078.676 0 .59-.147 1.204-.442 1.846-.85 1.768-2.444 2.652-4.784 2.652-1.854 0-3.024-.538-3.51-1.612a2.13 2.13 0 0 1-.182-.91c0-.537.156-.988.468-1.352.33-.364.737-.546 1.222-.546Z"
|
|
3723
|
+
}));
|
|
3724
|
+
case "u":
|
|
3725
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3726
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3727
|
+
width: "44",
|
|
3728
|
+
height: "44",
|
|
3729
|
+
fill: "none",
|
|
3730
|
+
viewBox: "0 0 44 44"
|
|
3731
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3732
|
+
fill: "#21242C",
|
|
3733
|
+
d: "M26.598 16.794a.87.87 0 0 1 .598.208c.174.121.26.303.26.546l-1.976 8.268a2.36 2.36 0 0 0-.026.416c0 .728.243 1.092.728 1.092.4-.052.737-.382 1.014-.988.191-.399.416-1.1.676-2.106.035-.139.208-.208.52-.208.156 0 .26.009.312.026.052 0 .096.017.13.052.035.034.052.086.052.156 0 .052-.026.182-.078.39-.52 2.045-1.265 3.232-2.236 3.562a2.77 2.77 0 0 1-.624.052c-1.144 0-1.932-.486-2.366-1.456a4.683 4.683 0 0 0-.312.286c-.866.797-1.75 1.196-2.652 1.196-.762 0-1.438-.156-2.028-.468-.71-.416-1.152-1.066-1.326-1.95a7.492 7.492 0 0 1-.026-.806c0-.416.018-.737.052-.962.122-.745.52-2.02 1.196-3.822.382-1.023.572-1.733.572-2.132 0-.243-.026-.408-.078-.494-.034-.104-.13-.156-.286-.156h-.13c-.398 0-.78.182-1.144.546-.554.554-.979 1.386-1.274 2.496a.423.423 0 0 1-.026.104.299.299 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.052.026-.174.078-.364.347-1.196.884-2.14 1.612-2.834.607-.555 1.231-.832 1.872-.832.728 0 1.31.208 1.742.624.434.398.65.918.65 1.56 0 .346-.156.927-.468 1.742-.71 1.906-1.135 3.32-1.274 4.238a5.18 5.18 0 0 0-.026.598c0 .659.104 1.161.312 1.508.208.347.59.52 1.144.52.728 0 1.387-.312 1.976-.936.347-.347.564-.624.65-.832.035-.07.364-1.387.988-3.952.52-2.08.832-3.293.936-3.64.104-.364.226-.615.364-.754.295-.26.607-.39.936-.39Z"
|
|
3734
|
+
}));
|
|
3731
3735
|
case "v":
|
|
3736
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3737
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3738
|
+
width: "44",
|
|
3739
|
+
height: "44",
|
|
3740
|
+
fill: "none",
|
|
3741
|
+
viewBox: "0 0 44 44"
|
|
3742
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3743
|
+
fill: "#21242C",
|
|
3744
|
+
d: "M21.956 28.286c-1.109 0-1.993-.277-2.652-.832-.641-.572-.962-1.404-.962-2.496 0-.312.018-.607.052-.884.156-.832.564-2.106 1.222-3.822l.416-1.248a2.8 2.8 0 0 0 .156-.884c0-.433-.164-.65-.494-.65-.121 0-.26.026-.416.078-.884.312-1.551 1.309-2.002 2.99a.422.422 0 0 1-.026.104.299.299 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.052.026-.182.078-.39.416-1.37 1.058-2.392 1.924-3.068a2.554 2.554 0 0 1 1.612-.546c.676 0 1.231.19 1.664.572.434.381.65.884.65 1.508 0 .295-.026.52-.078.676 0 .121-.13.503-.39 1.144-.797 2.167-1.222 3.71-1.274 4.628 0 .468.044.85.13 1.144.226.745.772 1.118 1.638 1.118.468 0 .884-.139 1.248-.416 1.075-.71 1.968-2.349 2.678-4.914.139-.485.208-.884.208-1.196 0-.763-.338-1.447-1.014-2.054-.225-.208-.338-.442-.338-.702 0-.399.156-.754.468-1.066.33-.33.694-.494 1.092-.494.416 0 .737.2.962.598.226.381.338.84.338 1.378 0 .607-.173 1.603-.52 2.99-.329 1.335-.745 2.496-1.248 3.484-1.092 2.236-2.461 3.354-4.108 3.354Z"
|
|
3745
|
+
}));
|
|
3732
3746
|
case "w":
|
|
3747
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3748
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3749
|
+
width: "44",
|
|
3750
|
+
height: "44",
|
|
3751
|
+
fill: "none",
|
|
3752
|
+
viewBox: "0 0 44 44"
|
|
3753
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3754
|
+
fill: "#21242C",
|
|
3755
|
+
d: "M24.368 16.794c.243 0 .45.07.624.208.174.121.26.303.26.546 0 .225-.26 1.335-.78 3.328-.502 1.993-.771 3.137-.806 3.432-.034.19-.052.494-.052.91 0 .503.044.884.13 1.144.104.243.286.46.546.65a1.88 1.88 0 0 0 1.066.312c1.23 0 2.21-1.057 2.938-3.172.399-1.04.668-1.993.806-2.86.018-.087.026-.217.026-.39 0-.867-.312-1.56-.936-2.08-.277-.225-.416-.503-.416-.832 0-.399.165-.745.494-1.04.33-.312.694-.468 1.092-.468a.2.2 0 0 1 .078.026h.104c.728.19 1.092.832 1.092 1.924 0 .555-.164 1.551-.494 2.99-.346 1.317-.676 2.383-.988 3.198-.85 2.15-1.993 3.363-3.432 3.64a3.324 3.324 0 0 1-.494.026c-.78 0-1.464-.13-2.054-.39-.59-.277-1.005-.659-1.248-1.144-.381.503-.771.884-1.17 1.144-.381.26-.884.39-1.508.39-1.161 0-2.097-.277-2.808-.832-.693-.555-1.04-1.378-1.04-2.47 0-.468.018-.78.052-.936.104-.693.494-1.95 1.17-3.77.382-1.023.572-1.733.572-2.132 0-.243-.026-.407-.078-.494-.034-.104-.13-.156-.286-.156h-.13c-.398 0-.78.182-1.144.546-.554.555-.98 1.387-1.274 2.496a.422.422 0 0 1-.026.104.299.299 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.052.026-.173.078-.364.174-.52.338-.936.494-1.248.642-1.3 1.465-2.08 2.47-2.34.104-.035.304-.052.598-.052.71 0 1.274.208 1.69.624.416.399.624.91.624 1.534 0 .347-.156.927-.468 1.742-.762 2.045-1.178 3.493-1.248 4.342v.338c0 .693.165 1.24.494 1.638.33.381.806.572 1.43.572.746 0 1.404-.529 1.976-1.586l.13-.234v-.598c.035-.503.06-.797.078-.884a170.904 170.904 0 0 1 1.144-4.706c.278-1.092.45-1.699.52-1.82.226-.468.598-.702 1.118-.702Z"
|
|
3756
|
+
}));
|
|
3757
|
+
case "x":
|
|
3758
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3759
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3760
|
+
width: "44",
|
|
3761
|
+
height: "44",
|
|
3762
|
+
fill: "none",
|
|
3763
|
+
viewBox: "0 0 44 44"
|
|
3764
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3765
|
+
fill: "#21242C",
|
|
3766
|
+
d: "M16.069 20.772c-.104-.104-.156-.2-.156-.286.069-.468.337-1.066.805-1.794.815-1.23 1.838-1.942 3.069-2.132a4.23 4.23 0 0 1 .546-.052c.606 0 1.16.156 1.664.468.52.312.892.702 1.117 1.17l.416-.546c.642-.728 1.378-1.092 2.21-1.092.711 0 1.283.208 1.716.624a1.9 1.9 0 0 1 .677 1.482c0 .537-.156.988-.468 1.352-.295.364-.694.546-1.197.546-.329 0-.598-.096-.805-.286-.209-.19-.313-.442-.313-.754 0-.798.434-1.344 1.3-1.638 0-.017-.095-.078-.285-.182-.174-.104-.425-.156-.755-.156-.225 0-.39.017-.494.052-.658.277-1.143.85-1.456 1.716-.052.139-.303 1.11-.753 2.912-.451 1.785-.694 2.79-.729 3.016-.052.26-.078.52-.078.78 0 .416.122.745.364.988.243.242.564.364.963.364.727 0 1.386-.304 1.976-.91.589-.624.988-1.309 1.196-2.054.052-.174.104-.269.155-.286.052-.035.191-.052.416-.052.33 0 .494.07.494.208 0 .017-.017.113-.052.286-.294 1.075-.9 2.01-1.82 2.808-.814.641-1.672.962-2.574.962-1.213 0-2.131-.546-2.756-1.638-.502.78-1.143 1.3-1.924 1.56a3.32 3.32 0 0 1-.675.052c-1.006 0-1.716-.356-2.133-1.066a2.013 2.013 0 0 1-.26-1.04c0-.52.156-.962.468-1.326a1.505 1.505 0 0 1 1.196-.546c.746 0 1.119.364 1.119 1.092 0 .641-.304 1.11-.91 1.404a1.256 1.256 0 0 0-.13.078 1.005 1.005 0 0 0-.13.052.2.2 0 0 1-.078.026l-.078.026c0 .052.13.13.39.234.207.087.433.13.675.13.624 0 1.162-.39 1.613-1.17.19-.312.528-1.439 1.014-3.38.104-.399.216-.84.337-1.326.122-.486.209-.858.26-1.118.07-.26.113-.416.13-.468.087-.468.13-.806.13-1.014 0-.416-.112-.745-.337-.988-.226-.243-.538-.364-.936-.364-.78 0-1.456.303-2.029.91a4.835 4.835 0 0 0-1.195 2.054c-.035.156-.078.251-.13.286-.035.017-.174.026-.416.026h-.364Z"
|
|
3767
|
+
}));
|
|
3768
|
+
case "y":
|
|
3769
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3770
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3771
|
+
width: "44",
|
|
3772
|
+
height: "44",
|
|
3773
|
+
fill: "none",
|
|
3774
|
+
viewBox: "0 0 44 44"
|
|
3775
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3776
|
+
fill: "#21242C",
|
|
3777
|
+
d: "M27.639 16.794c.242 0 .45.07.624.208.173.121.26.295.26.52 0 .225-.425 2.045-1.274 5.46-.85 3.415-1.335 5.287-1.456 5.616a6.657 6.657 0 0 1-1.352 2.34 6.756 6.756 0 0 1-2.132 1.716c-.936.45-1.812.676-2.626.676-1.317 0-2.21-.416-2.678-1.248-.174-.243-.26-.59-.26-1.04 0-.59.165-1.049.494-1.378.364-.33.745-.494 1.144-.494.762 0 1.144.364 1.144 1.092 0 .641-.303 1.11-.91 1.404a1.01 1.01 0 0 1-.13.052c-.052.035-.095.06-.13.078a.2.2 0 0 1-.078.026l-.078.026c.052.104.234.217.546.338.277.104.555.156.832.156h.208c.294 0 .52-.017.676-.052.659-.19 1.282-.633 1.872-1.326.59-.694 1.04-1.525 1.352-2.496.19-.572.286-.91.286-1.014 0-.018-.017-.009-.052.026a1.168 1.168 0 0 0-.156.104 3.534 3.534 0 0 1-2.132.702c-.884 0-1.612-.208-2.184-.624-.572-.416-.945-1.014-1.118-1.794a7.464 7.464 0 0 1-.026-.806c0-.416.017-.737.052-.962.121-.745.52-2.02 1.196-3.822.381-1.023.572-1.733.572-2.132 0-.243-.026-.408-.078-.494-.035-.104-.13-.156-.286-.156h-.13c-.399 0-.78.182-1.144.546-.555.554-.98 1.386-1.274 2.496a.427.427 0 0 1-.026.104.304.304 0 0 1-.052.078l-.026.026c-.018.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.052.026-.174.078-.364.364-1.213.91-2.158 1.638-2.834.59-.555 1.204-.832 1.846-.832.728 0 1.309.2 1.742.598.433.398.65.953.65 1.664-.035.33-.06.511-.078.546 0 .104-.13.477-.39 1.118-.71 1.924-1.136 3.336-1.274 4.238a5.157 5.157 0 0 0-.026.598c0 .659.104 1.161.312 1.508.208.347.59.52 1.144.52.398 0 .771-.104 1.118-.312.364-.208.633-.408.806-.598.19-.208.424-.486.702-.832 0-.018.043-.19.13-.52.086-.347.208-.858.364-1.534l.494-1.924c.659-2.6 1.023-3.96 1.092-4.082.225-.468.598-.702 1.118-.702Z"
|
|
3778
|
+
}));
|
|
3733
3779
|
case "z":
|
|
3780
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3781
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3782
|
+
width: "44",
|
|
3783
|
+
height: "44",
|
|
3784
|
+
fill: "none",
|
|
3785
|
+
viewBox: "0 0 44 44"
|
|
3786
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3787
|
+
fill: "#21242C",
|
|
3788
|
+
d: "M17.023 28.286c-.104-.104-.156-.182-.156-.234 0-.07.052-.182.156-.338.277-.52.728-1.153 1.352-1.898.728-.832 1.967-2.046 3.718-3.64 1.335-1.213 2.236-2.063 2.704-2.548.208-.277.269-.416.182-.416-.208 0-.667-.096-1.378-.286-.763-.19-1.309-.286-1.638-.286-.503 0-.927.087-1.274.26-.347.156-.563.364-.65.624-.243.139-.407.216-.494.234-.364 0-.546-.07-.546-.208 0-.087.026-.208.078-.364a4.135 4.135 0 0 1 1.118-1.742c.52-.485 1.092-.78 1.716-.884.208-.035.355-.052.442-.052.26 0 .503.052.728.156.225.104.39.208.494.312.121.087.303.251.546.494.537.52.997.78 1.378.78.156 0 .277-.017.364-.052.295-.139.676-.598 1.144-1.378.121-.19.208-.286.26-.286.052-.017.173-.026.364-.026h.338c.104.104.156.173.156.208 0 .07-.078.242-.234.52a14.514 14.514 0 0 1-1.248 1.69c-.78.919-2.01 2.132-3.692 3.64-1.387 1.23-2.331 2.123-2.834 2.678l-.312.312.39.026c.381 0 .875.078 1.482.234.884.225 1.49.338 1.82.338.693 0 1.309-.165 1.846-.494.555-.347.91-.78 1.066-1.3.07-.156.13-.252.182-.286.052-.035.182-.052.39-.052.347 0 .52.087.52.26 0 .017-.017.095-.052.234a5.683 5.683 0 0 1-1.43 2.418 4.579 4.579 0 0 1-2.392 1.326 2.865 2.865 0 0 1-.442.026c-.295 0-.563-.06-.806-.182-.243-.121-.58-.381-1.014-.78-.364-.364-.633-.59-.806-.676-.139-.087-.33-.13-.572-.13-.763 0-1.447.52-2.054 1.56-.087.139-.277.208-.572.208h-.338Z"
|
|
3789
|
+
}));
|
|
3734
3790
|
case "A":
|
|
3791
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3792
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3793
|
+
width: "44",
|
|
3794
|
+
height: "44",
|
|
3795
|
+
fill: "none",
|
|
3796
|
+
viewBox: "0 0 44 44"
|
|
3797
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3798
|
+
fill: "#21242C",
|
|
3799
|
+
d: "M13.342 30c-.121-.122-.182-.217-.182-.286 0-.07.026-.217.078-.442.07-.225.121-.355.156-.39l.104-.078h.364c1.213-.052 2.097-.485 2.652-1.3.104-.104 1.673-2.748 4.706-7.93 3.05-5.2 4.593-7.826 4.628-7.878.087-.156.165-.243.234-.26.087-.035.286-.052.598-.052h.442c.104.156.156.242.156.26l.728 8.398c.485 5.598.745 8.424.78 8.476.087.19.65.286 1.69.286.19 0 .32.009.39.026.087 0 .147.017.182.052.052.034.078.095.078.182 0 .035-.026.156-.078.364-.052.26-.104.424-.156.494-.035.052-.147.078-.338.078-.312 0-.832-.009-1.56-.026a73.87 73.87 0 0 0-1.716-.026c-1.63 0-2.695.017-3.198.052h-.312a1.188 1.188 0 0 1-.182-.208c0-.052.026-.217.078-.494.07-.225.121-.364.156-.416l.104-.078h.52c.936-.035 1.49-.182 1.664-.442l-.312-3.9h-6.188l-.884 1.508c-.624 1.04-.945 1.603-.962 1.69a.877.877 0 0 0-.104.39c0 .433.399.684 1.196.754.33 0 .494.087.494.26 0 .087-.026.208-.078.364-.052.242-.104.398-.156.468-.052.07-.165.104-.338.104-.295 0-.763-.009-1.404-.026a58.722 58.722 0 0 0-1.456-.026c-1.23 0-2.02.017-2.366.052h-.208Zm12.324-6.76c0-.19-.113-1.543-.338-4.056-.208-2.514-.32-3.779-.338-3.796l-.702 1.118c-.277.468-.823 1.395-1.638 2.782l-2.34 3.952 2.678.026c1.785 0 2.678-.009 2.678-.026Z"
|
|
3800
|
+
}));
|
|
3735
3801
|
case "B":
|
|
3802
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3803
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3804
|
+
width: "44",
|
|
3805
|
+
height: "44",
|
|
3806
|
+
fill: "none",
|
|
3807
|
+
viewBox: "0 0 44 44"
|
|
3808
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3809
|
+
fill: "#21242C",
|
|
3810
|
+
d: "M19.624 13.672c0-.017-.009-.035-.026-.052-.018-.034-.044-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.766.766 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.416 0-.668-.008-.754-.026a.237.237 0 0 1-.182-.156c-.035-.052-.026-.208.026-.468.086-.312.164-.485.234-.52.017-.017 1.144-.026 3.38-.026 4.489 0 6.855.017 7.098.052 1.196.173 2.132.59 2.808 1.248.693.659 1.04 1.43 1.04 2.314a3.5 3.5 0 0 1-.494 1.768c-.382.694-.997 1.326-1.846 1.898a7.429 7.429 0 0 1-2.626 1.118l-.26.078c1.144.156 2.062.555 2.756 1.196.71.641 1.066 1.439 1.066 2.392 0 1.248-.572 2.418-1.716 3.51-1.335 1.283-2.921 2.002-4.758 2.158-.122.017-1.95.026-5.486.026-3.467 0-5.226-.017-5.278-.052a.247.247 0 0 1-.104-.208c0-.121.017-.242.052-.364.086-.33.173-.511.26-.546.069-.017.199-.026.39-.026h.156c.468 0 .988-.026 1.56-.078.242-.052.407-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Zm9.386 2.184c0-.59-.156-1.092-.468-1.508a2.108 2.108 0 0 0-1.196-.832c-.122-.034-.919-.06-2.392-.078-.347 0-.711.009-1.092.026h-1.248c-.243.018-.399.078-.468.182-.052.07-.347 1.161-.884 3.276-.52 2.115-.789 3.233-.806 3.354h2.106c1.404 0 2.21-.017 2.418-.052a4.935 4.935 0 0 0 2.002-.832c.641-.45 1.135-.988 1.482-1.612.364-.659.546-1.3.546-1.924Zm-1.404 8.19c0-.762-.208-1.395-.624-1.898a2.298 2.298 0 0 0-1.534-.884c-.104-.017-.824-.026-2.158-.026-2.046 0-3.077.009-3.094.026 0 .035-.156.668-.468 1.898-.295 1.23-.59 2.453-.884 3.666l-.468 1.82c0 .07.104.113.312.13.208 0 .91.009 2.106.026 1.542 0 2.374-.008 2.496-.026 1.126-.121 2.123-.624 2.99-1.508.884-.884 1.326-1.959 1.326-3.224Z"
|
|
3811
|
+
}));
|
|
3736
3812
|
case "C":
|
|
3813
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3814
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3815
|
+
width: "44",
|
|
3816
|
+
height: "44",
|
|
3817
|
+
fill: "none",
|
|
3818
|
+
viewBox: "0 0 44 44"
|
|
3819
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3820
|
+
fill: "#21242C",
|
|
3821
|
+
d: "M29.633 17.494c0-1.439-.32-2.565-.962-3.38-.624-.832-1.525-1.248-2.704-1.248-.919 0-1.915.217-2.99.65-1.872.797-3.337 2.14-4.394 4.03-.953 1.681-1.551 3.657-1.794 5.928-.017.139-.026.39-.026.754 0 1.976.659 3.397 1.976 4.264.832.59 1.855.884 3.068.884.659 0 1.378-.147 2.158-.442 1.023-.416 1.95-1.1 2.782-2.054.832-.953 1.404-1.993 1.716-3.12.07-.225.121-.355.156-.39.052-.035.19-.052.416-.052.364 0 .546.07.546.208 0 .035-.017.121-.052.26-.416 1.543-1.248 2.93-2.496 4.16s-2.652 2.028-4.212 2.392a7.283 7.283 0 0 1-1.82.234c-1.785 0-3.285-.511-4.498-1.534-1.213-1.023-1.985-2.323-2.314-3.9a7.212 7.212 0 0 1-.182-1.69c0-2.08.65-4.1 1.95-6.058a13.533 13.533 0 0 1 2.886-3.172 11.881 11.881 0 0 1 3.796-2.054c1.023-.312 1.959-.468 2.808-.468.624 0 .988.009 1.092.026 1.04.173 1.915.607 2.626 1.3a8.298 8.298 0 0 1 .468.624c.087.104.139.156.156.156.052 0 .286-.225.702-.676.121-.104.251-.225.39-.364l.416-.416c.139-.156.225-.251.26-.286l.39-.39h.156c.243 0 .364.06.364.182 0 .07-.277 1.257-.832 3.562-.624 2.41-.936 3.623-.936 3.64a.38.38 0 0 1-.13.182c-.052.017-.208.026-.468.026h-.416l-.156-.156c0-.035.017-.19.052-.468.035-.347.052-.728.052-1.144Z"
|
|
3822
|
+
}));
|
|
3737
3823
|
case "D":
|
|
3824
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3826
|
+
width: "44",
|
|
3827
|
+
height: "44",
|
|
3828
|
+
fill: "none",
|
|
3829
|
+
viewBox: "0 0 44 44"
|
|
3830
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3831
|
+
fill: "#21242C",
|
|
3832
|
+
d: "M18.696 13.672c0-.017-.008-.035-.026-.052-.017-.034-.043-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.765.765 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.589 0-.91-.06-.962-.182-.017-.052 0-.2.052-.442.087-.33.165-.511.234-.546.035-.017 1.76-.026 5.174-.026 2.895.017 4.516.035 4.862.052.347 0 .694.043 1.04.13 1.37.312 2.462 1.032 3.276 2.158.815 1.127 1.222 2.53 1.222 4.212 0 .867-.104 1.716-.312 2.548-.485 1.959-1.499 3.736-3.042 5.33-1.75 1.803-3.744 2.886-5.98 3.25l-.364.052L17.37 30h-2.886c-1.542 0-2.322-.043-2.34-.13v-.026a.455.455 0 0 1-.052-.13c0-.034.026-.156.078-.364.07-.277.139-.433.208-.468.07-.052.269-.078.598-.078.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Zm10.816 4.134c0-1.283-.338-2.297-1.014-3.042-.676-.745-1.62-1.178-2.834-1.3H24.52a14.24 14.24 0 0 0-1.69 0h-1.092c-.225.018-.381.095-.468.234-.034.07-.667 2.566-1.898 7.488-1.23 4.923-1.846 7.41-1.846 7.462 0 .07.096.113.286.13h2.002c1.404 0 2.193-.008 2.366-.026 1.647-.26 3.034-.953 4.16-2.08a7.868 7.868 0 0 0 1.534-2.184c.399-.832.772-1.933 1.118-3.302.347-1.37.52-2.496.52-3.38Z"
|
|
3833
|
+
}));
|
|
3738
3834
|
case "E":
|
|
3835
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3836
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3837
|
+
width: "44",
|
|
3838
|
+
height: "44",
|
|
3839
|
+
fill: "none",
|
|
3840
|
+
viewBox: "0 0 44 44"
|
|
3841
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3842
|
+
fill: "#21242C",
|
|
3843
|
+
d: "M30.55 18.3c0-.174.026-.52.078-1.04.052-.52.078-.85.078-.988 0-.763-.13-1.343-.39-1.742-.242-.399-.684-.676-1.326-.832-.572-.122-1.898-.182-3.978-.182-1.473.017-2.244.034-2.314.052a.478.478 0 0 0-.26.26 377.68 377.68 0 0 0-.832 3.198c-.52 2.08-.78 3.137-.78 3.172.399.017.815.026 1.248.026h.234c1.127 0 1.933-.07 2.418-.208.503-.156.893-.546 1.17-1.17.104-.19.234-.564.39-1.118a.577.577 0 0 0 .026-.182 1.3 1.3 0 0 0 .026-.156l.052-.104c.018-.035.044-.052.078-.052a.492.492 0 0 1 .156-.026 1.095 1.095 0 0 1 .468 0 .29.29 0 0 1 .13.026c.035.017.052.034.052.052.018 0 .035.026.052.078l.078.078-.858 3.432c-.572 2.305-.884 3.475-.936 3.51-.052.052-.19.078-.416.078-.225 0-.364-.026-.416-.078-.104-.052-.112-.26-.026-.624.122-.45.182-.84.182-1.17 0-.503-.173-.823-.52-.962-.312-.139-1.161-.208-2.548-.208h-1.352c-.104.364-.433 1.655-.988 3.874-.537 2.201-.806 3.32-.806 3.354 0 .07.096.113.286.13.208 0 .902.009 2.08.026 1.63 0 2.704-.017 3.224-.052a6.765 6.765 0 0 0 1.56-.338 4.382 4.382 0 0 0 2.106-1.456c.572-.693 1.188-1.829 1.846-3.406.174-.381.286-.59.338-.624.052-.035.174-.052.364-.052.208 0 .338.017.39.052.104.07.156.165.156.286-1.82 4.402-2.773 6.647-2.86 6.734-.052.035-2.53.052-7.436.052h-6.552c-.624-.017-.944-.06-.962-.13v-.026a.454.454 0 0 1-.052-.13c0-.035.026-.156.078-.364.07-.277.139-.434.208-.468.07-.052.269-.078.598-.078.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.035-.087.65-2.522 1.846-7.306 1.214-4.784 1.82-7.21 1.82-7.28 0-.121-.034-.182-.104-.182-.138-.052-.598-.096-1.378-.13h-.806a1.188 1.188 0 0 1-.182-.208c0-.052.026-.2.078-.442.07-.312.156-.494.26-.546h14.404c.122.121.182.216.182.286 0 .087-.112 1.066-.338 2.938-.225 1.854-.346 2.8-.364 2.834-.034.121-.208.182-.52.182h-.312c-.121-.104-.182-.19-.182-.26Z"
|
|
3844
|
+
}));
|
|
3739
3845
|
case "F":
|
|
3846
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3847
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3848
|
+
width: "44",
|
|
3849
|
+
height: "44",
|
|
3850
|
+
fill: "none",
|
|
3851
|
+
viewBox: "0 0 44 44"
|
|
3852
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3853
|
+
fill: "#21242C",
|
|
3854
|
+
d: "M18.456 29.948c-.485 0-1.118.008-1.898.026h-1.664c-.208 0-.338-.044-.39-.13a.454.454 0 0 1-.052-.13c0-.035.026-.156.078-.364.07-.277.14-.434.208-.468.07-.052.27-.078.598-.078.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.035-.087.65-2.522 1.846-7.306 1.214-4.784 1.82-7.21 1.82-7.28 0-.121-.034-.182-.104-.182-.138-.052-.598-.096-1.378-.13h-.806a1.188 1.188 0 0 1-.182-.208c0-.052.026-.2.078-.442.07-.312.156-.494.26-.546h14.014c.122.121.182.216.182.286 0 .087-.112 1.066-.338 2.938-.225 1.854-.346 2.8-.364 2.834-.034.121-.208.182-.52.182h-.312c-.12-.104-.182-.19-.182-.26v-.104a.677.677 0 0 0 .026-.208c.018-.087.026-.174.026-.26.07-.503.104-1.006.104-1.508 0-1.248-.398-2.037-1.196-2.366a3.938 3.938 0 0 0-1.274-.286c-.485-.035-1.473-.052-2.964-.052-1.386.017-2.114.034-2.184.052-.138.052-.225.13-.26.234-.017.017-.312 1.152-.884 3.406l-.832 3.354h1.43c1.04-.018 1.612-.035 1.716-.052.572-.104.988-.286 1.248-.546.364-.312.668-.936.91-1.872a2.488 2.488 0 0 0 .078-.312c0-.035.01-.07.026-.104.018-.052.035-.078.052-.078l.104-.052a.492.492 0 0 1 .156-.026h.52c.122.087.182.173.182.26 0 .052-.277 1.187-.832 3.406-.537 2.218-.823 3.363-.858 3.432-.034.121-.208.182-.52.182h-.312c-.104-.087-.164-.156-.182-.208-.017-.07.01-.226.078-.468.122-.485.182-.901.182-1.248 0-.52-.216-.84-.65-.962-.312-.104-1.04-.156-2.184-.156h-1.43l-.832 3.302c-.554 2.15-.832 3.276-.832 3.38 0 .104.052.173.156.208.208.104.928.156 2.158.156h.65c.104.104.156.182.156.234.018.035 0 .19-.052.468-.069.225-.156.39-.26.494h-.442c-.71-.035-2.019-.052-3.926-.052Z"
|
|
3855
|
+
}));
|
|
3740
3856
|
case "G":
|
|
3857
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3858
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3859
|
+
width: "44",
|
|
3860
|
+
height: "44",
|
|
3861
|
+
fill: "none",
|
|
3862
|
+
viewBox: "0 0 44 44"
|
|
3863
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3864
|
+
fill: "#21242C",
|
|
3865
|
+
d: "M20.152 30.572c-2.045 0-3.735-.641-5.07-1.924-1.334-1.3-2.002-3.033-2.002-5.2 0-2.08.65-4.1 1.95-6.058a13.533 13.533 0 0 1 2.886-3.172 11.882 11.882 0 0 1 3.796-2.054c1.023-.312 1.959-.468 2.808-.468.624 0 .988.009 1.092.026 1.04.173 1.916.607 2.626 1.3a8.215 8.215 0 0 1 .468.624c.087.104.139.156.156.156.052 0 .286-.225.702-.676.122-.104.252-.225.39-.364l.416-.416c.139-.156.226-.251.26-.286l.39-.39h.156c.243 0 .364.06.364.182 0 .07-.277 1.257-.832 3.562-.624 2.41-.936 3.623-.936 3.64a.38.38 0 0 1-.13.182c-.052.017-.208.026-.468.026h-.416l-.156-.156c0-.035.018-.19.052-.468.035-.347.052-.728.052-1.144 0-1.439-.32-2.565-.962-3.38-.624-.832-1.525-1.248-2.704-1.248-.918 0-1.915.217-2.99.65-1.733.728-3.12 1.941-4.16 3.64-1.022 1.681-1.69 3.71-2.002 6.084-.034.312-.052.65-.052 1.014 0 .988.174 1.846.52 2.574.815 1.577 2.297 2.427 4.446 2.548h.156c.936 0 1.794-.2 2.574-.598.78-.399 1.318-.91 1.612-1.534.052-.139.182-.615.39-1.43.208-.832.312-1.291.312-1.378 0-.139-.121-.225-.364-.26-.225-.035-.736-.06-1.534-.078h-.962a1.193 1.193 0 0 1-.182-.208c0-.035.026-.2.078-.494.07-.225.156-.39.26-.494h.442c.694.035 1.907.052 3.64.052h1.612a55.257 55.257 0 0 1 1.326-.026c.243 0 .364.07.364.208 0 .052-.017.182-.052.39a1.823 1.823 0 0 0-.052.208.796.796 0 0 1-.052.156c0 .017-.017.052-.052.104a.17.17 0 0 1-.078.078.714.714 0 0 0-.156.026h-.26c-.346 0-.702.026-1.066.078a.468.468 0 0 0-.286.286l-.104.338c-.052.225-.147.59-.286 1.092-.121.485-.234.919-.338 1.3a36.88 36.88 0 0 0-.156.65 76.37 76.37 0 0 0-.13.572 5.985 5.985 0 0 1-.13.442 3.75 3.75 0 0 1-.104.39 2.39 2.39 0 0 1-.078.286 4.933 4.933 0 0 1-.052.234.654.654 0 0 1-.078.156.299.299 0 0 1-.052.078c-.017.017-.043.026-.078.026-.052 0-.104-.026-.156-.078-.156-.087-.372-.277-.65-.572-.26-.312-.433-.555-.52-.728 0-.017-.017-.009-.052.026a1.191 1.191 0 0 0-.156.104c-.572.537-1.326.97-2.262 1.3a8.785 8.785 0 0 1-2.938.494Z"
|
|
3866
|
+
}));
|
|
3741
3867
|
case "H":
|
|
3868
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3869
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3870
|
+
width: "44",
|
|
3871
|
+
height: "44",
|
|
3872
|
+
fill: "none",
|
|
3873
|
+
viewBox: "0 0 44 44"
|
|
3874
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3875
|
+
fill: "#21242C",
|
|
3876
|
+
d: "M33.842 12.268c.19 0 .312.018.364.052.052.035.078.104.078.208s-.017.226-.052.364c-.087.295-.173.468-.26.52h-.182a.765.765 0 0 0-.182.026h-.468c-.919.018-1.447.078-1.586.182a.458.458 0 0 0-.182.182c-.052.087-.684 2.548-1.898 7.384-1.196 4.819-1.794 7.254-1.794 7.306 0 .121.035.182.104.182.139.052.607.096 1.404.13h.806c.087.122.13.2.13.234.018.017 0 .174-.052.468-.07.226-.156.39-.26.494h-.39c-.641-.035-1.803-.052-3.484-.052-.433 0-1.022.009-1.768.026h-1.612c-.294 0-.442-.07-.442-.208 0-.017.009-.07.026-.156.018-.104.035-.182.052-.234.087-.33.174-.511.26-.546.07-.017.2-.026.39-.026H23c.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.052-.087.364-1.265.936-3.536.572-2.27.858-3.432.858-3.484 0-.017-1.256-.026-3.77-.026h-3.77l-.858 3.51c-.59 2.323-.884 3.527-.884 3.614 0 .104.026.165.078.182.122.052.598.096 1.43.13h.806c.087.122.13.2.13.234.017.017 0 .174-.052.468-.07.226-.156.39-.26.494h-.39c-.641-.035-1.802-.052-3.484-.052-.433 0-1.022.009-1.768.026h-1.612c-.295 0-.442-.078-.442-.234 0-.034.026-.156.078-.364.087-.33.174-.511.26-.546.07-.017.2-.026.39-.026h.156c.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514 0-.017-.009-.035-.026-.052-.017-.034-.043-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.765.765 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.416 0-.667-.008-.754-.026a.238.238 0 0 1-.182-.156c-.034-.052-.026-.208.026-.468.07-.295.148-.468.234-.52.035-.017.182-.026.442-.026.71.035 1.89.052 3.536.052h1.716a78.756 78.756 0 0 1 1.612-.026c.226 0 .355.052.39.156.035.052.026.208-.026.468-.086.295-.173.468-.26.52h-.182a.765.765 0 0 0-.182.026h-.468c-.918.018-1.447.078-1.586.182a.458.458 0 0 0-.182.182c-.052.07-.33 1.136-.832 3.198-.121.45-.251.953-.39 1.508s-.242.962-.312 1.222l-.104.39c0 .035 1.257.052 3.77.052h3.77l.026-.078c0-.052.269-1.118.806-3.198.485-1.993.728-3.06.728-3.198 0-.034-.017-.07-.052-.104-.017-.034-.052-.06-.104-.078a.577.577 0 0 0-.182-.026.79.79 0 0 0-.234-.026h-.286a1.388 1.388 0 0 0-.312-.026h-.312c-.624 0-.936-.087-.936-.26 0-.364.052-.624.156-.78.052-.086.2-.13.442-.13.312 0 .832.009 1.56.026a75.373 75.373 0 0 0 3.874 0 77.95 77.95 0 0 1 1.508-.026Z"
|
|
3877
|
+
}));
|
|
3742
3878
|
case "I":
|
|
3879
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3880
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3881
|
+
width: "44",
|
|
3882
|
+
height: "44",
|
|
3883
|
+
fill: "none",
|
|
3884
|
+
viewBox: "0 0 44 44"
|
|
3885
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3886
|
+
fill: "#21242C",
|
|
3887
|
+
d: "M17.392 29.974c-.294 0-.442-.078-.442-.234 0-.034.026-.156.078-.364.087-.33.174-.511.26-.546.052-.017.182-.026.39-.026h.156c1.058 0 1.716-.06 1.976-.182.018 0 .035-.009.052-.026.087-.035.182-.234.286-.598.104-.364.53-2.063 1.274-5.096.208-.78.364-1.395.468-1.846 1.214-4.853 1.82-7.297 1.82-7.332a.458.458 0 0 1-.052-.13c-.173-.104-.788-.156-1.846-.156h-.52c-.104-.087-.164-.156-.182-.208-.017-.07.01-.216.078-.442.052-.26.113-.425.182-.494.052-.035.2-.052.442-.052 1.248.035 2.514.052 3.796.052h1.43c1.11 0 1.742-.017 1.898-.052h.26c.122.121.182.217.182.286 0 .07-.026.19-.078.364-.052.26-.112.425-.182.494-.052.035-.25.052-.598.052-.537 0-1.092.026-1.664.078-.225.052-.39.139-.494.26-.052.07-.39 1.326-1.014 3.77s-1.23 4.88-1.82 7.306l-.884 3.614c0 .139.061.217.182.234.174.052.65.087 1.43.104h.832c.087.122.13.2.13.234.018.017 0 .174-.052.468-.069.226-.156.39-.26.494h-.416c-.64-.035-1.828-.052-3.562-.052-.433 0-1.048.009-1.846.026h-1.69Z"
|
|
3888
|
+
}));
|
|
3743
3889
|
case "J":
|
|
3890
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3891
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3892
|
+
width: "44",
|
|
3893
|
+
height: "44",
|
|
3894
|
+
fill: "none",
|
|
3895
|
+
viewBox: "0 0 44 44"
|
|
3896
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3897
|
+
fill: "#21242C",
|
|
3898
|
+
d: "M26.411 13.75c0-.208-.806-.312-2.418-.312h-.65c-.104-.087-.165-.156-.182-.208-.017-.07.009-.234.078-.494.07-.225.156-.39.26-.494h.442c.71.035 1.976.052 3.796.052h1.716a64.884 64.884 0 0 1 1.43-.026c.19 0 .295.043.312.13.035.07.052.113.052.13 0 .035-.026.156-.078.364-.07.277-.139.442-.208.494-.052.035-.208.052-.468.052h-.234c-.763 0-1.196.121-1.3.364-.07.226-.607 2.366-1.612 6.422-1.092 4.299-1.647 6.457-1.664 6.474-.364 1.058-1.083 1.968-2.158 2.73-1.075.763-2.297 1.144-3.666 1.144-1.057 0-1.924-.26-2.6-.78-.659-.537-.988-1.23-.988-2.08 0-.607.173-1.127.52-1.56.364-.45.84-.676 1.43-.676.78 0 1.213.382 1.3 1.144 0 .503-.147.927-.442 1.274a1.783 1.783 0 0 1-1.092.65c-.139.035-.208.07-.208.104 0 .018.06.087.182.208.45.503 1.1.754 1.95.754.659 0 1.3-.286 1.924-.858.641-.59 1.1-1.3 1.378-2.132.07-.208.615-2.375 1.638-6.5 1.04-4.125 1.56-6.249 1.56-6.37Z"
|
|
3899
|
+
}));
|
|
3744
3900
|
case "K":
|
|
3901
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3902
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3903
|
+
width: "44",
|
|
3904
|
+
height: "44",
|
|
3905
|
+
fill: "none",
|
|
3906
|
+
viewBox: "0 0 44 44"
|
|
3907
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3908
|
+
fill: "#21242C",
|
|
3909
|
+
d: "M18.378 13.672c0-.017-.009-.035-.026-.052-.018-.034-.044-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.766.766 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.59 0-.91-.06-.962-.182-.018-.052 0-.2.052-.442.086-.312.164-.494.234-.546.034-.017.182-.026.442-.026.71.035 1.889.052 3.536.052h1.716a78.746 78.746 0 0 1 1.612-.026c.294 0 .442.07.442.208 0 .087-.026.208-.078.364-.087.347-.165.529-.234.546-.07.035-.347.052-.832.052-.936.018-1.474.078-1.612.182a.457.457 0 0 0-.182.182l-2.106 8.268c.017 0 1.612-1.248 4.784-3.744 3.189-2.496 4.818-3.779 4.888-3.848.242-.242.364-.442.364-.598 0-.26-.217-.407-.65-.442-.278 0-.416-.095-.416-.286 0-.034.026-.156.078-.364a4.2 4.2 0 0 1 .13-.39c.052-.086.199-.13.442-.13.277 0 .736.009 1.378.026.658.018 1.196.026 1.612.026.936 0 1.577-.017 1.924-.052.26-.017.424-.009.494.026.086.018.13.095.13.234 0 .07-.035.217-.104.442-.052.208-.087.32-.104.338-.052.087-.217.13-.494.13a6.474 6.474 0 0 0-3.536 1.326l-.312.208c-.035.018-.928.71-2.678 2.08a486.183 486.183 0 0 0-2.652 2.08l.234.572c.156.381.398.962.728 1.742.329.78.632 1.517.91 2.21 1.3 3.068 1.993 4.654 2.08 4.758.034.035.078.07.13.104.242.174.684.269 1.326.286h.546c.086.122.13.2.13.234.017.017 0 .174-.052.468-.07.226-.156.39-.26.494h-.286a33.632 33.632 0 0 0-2.47-.078c-2.063 0-3.25.026-3.562.078h-.26a1.188 1.188 0 0 1-.182-.208c0-.052.026-.216.078-.494.052-.208.112-.346.182-.416.052-.052.164-.078.338-.078.866 0 1.3-.216 1.3-.65 0-.087-.512-1.343-1.534-3.77l-1.508-3.588-1.768 1.378-1.768 1.378-.598 2.418c-.399 1.595-.598 2.436-.598 2.522 0 .104.026.165.078.182.121.052.598.096 1.43.13h.806c.104.156.156.252.156.286 0 .277-.061.538-.182.78-.087.087-.226.13-.416.13-.295 0-.824-.009-1.586-.026a86.31 86.31 0 0 0-1.976-.026 83.8 83.8 0 0 0-1.924.026h-1.482c-.226 0-.364-.043-.416-.13a.455.455 0 0 1-.052-.13c0-.034.026-.156.078-.364.069-.277.138-.433.208-.468.069-.052.268-.078.598-.078.468 0 .988-.026 1.56-.078.242-.052.407-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Z"
|
|
3910
|
+
}));
|
|
3745
3911
|
case "L":
|
|
3912
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3913
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3914
|
+
width: "44",
|
|
3915
|
+
height: "44",
|
|
3916
|
+
fill: "none",
|
|
3917
|
+
viewBox: "0 0 44 44"
|
|
3918
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3919
|
+
fill: "#21242C",
|
|
3920
|
+
d: "M20.561 13.672c0-.017-.008-.035-.026-.052-.017-.034-.043-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.765.765 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.416 0-.667-.008-.754-.026a.238.238 0 0 1-.182-.156c-.034-.052-.026-.208.026-.468.087-.33.165-.502.234-.52.052-.017.182-.026.39-.026a60.53 60.53 0 0 0 3.302.078h1.04c.451-.017.78-.026.988-.026h.936c.382-.017.668-.026.858-.026.208-.017.338-.026.39-.026h.312c.104.104.156.182.156.234.018.035 0 .19-.052.468-.069.243-.147.407-.234.494h-.988c-1.196.018-1.898.095-2.106.234-.12.07-.242.32-.364.754-.12.416-.702 2.696-1.742 6.838a996.167 996.167 0 0 1-1.586 6.448l-.234.936c0 .07.078.113.234.13.156 0 .668.009 1.534.026 1.3 0 2.22-.043 2.756-.13.555-.087 1.162-.32 1.82-.702a4.712 4.712 0 0 0 1.664-1.586c.434-.676.858-1.569 1.274-2.678.122-.346.217-.59.286-.728.087-.052.234-.078.442-.078h.338c.104.156.156.252.156.286 0 .035-.182.546-.546 1.534-.346.988-.719 2.037-1.118 3.146a63.854 63.854 0 0 0-.676 1.898c-.052.104-.095.165-.13.182-.052.035-2.288.052-6.708.052s-6.656-.017-6.708-.052a.247.247 0 0 1-.104-.208c0-.121.018-.242.052-.364.087-.33.174-.511.26-.546.07-.017.2-.026.39-.026h.156c.468 0 .988-.026 1.56-.078.243-.052.408-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Z"
|
|
3921
|
+
}));
|
|
3746
3922
|
case "M":
|
|
3923
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3924
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3925
|
+
width: "44",
|
|
3926
|
+
height: "44",
|
|
3927
|
+
fill: "none",
|
|
3928
|
+
viewBox: "0 0 44 44"
|
|
3929
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3930
|
+
fill: "#21242C",
|
|
3931
|
+
d: "M16.335 30c-.242 0-.667-.009-1.274-.026a54.61 54.61 0 0 0-1.585-.026c-1.249 0-2.02.009-2.315.026-.415.017-.65.009-.701-.026-.105-.035-.157-.113-.157-.234 0-.034.026-.156.079-.364a4.2 4.2 0 0 1 .13-.39c.034-.104.225-.156.572-.156 1.248-.07 2.019-.416 2.314-1.04.069-.104.667-2.427 1.793-6.968 1.144-4.558 1.716-6.942 1.716-7.15 0-.07-.026-.104-.078-.104h-.052c-.173-.052-.623-.086-1.352-.104-.433 0-.693-.008-.78-.026a.314.314 0 0 1-.181-.182c-.018-.07-.01-.19.025-.364.104-.346.182-.537.234-.572.052-.035.936-.052 2.652-.052 1.37 0 2.159.009 2.366.026.226 0 .364.035.416.104.018.07.338 2.514.962 7.332.625 4.802.936 7.22.936 7.254 0 .018.105-.13.313-.442.208-.33.485-.771.832-1.326l1.222-1.924c.468-.728.953-1.49 1.456-2.288.502-.815 1.005-1.62 1.508-2.418l1.43-2.314c.468-.728.875-1.37 1.222-1.924.363-.572.65-1.031.857-1.378l.313-.494.078-.078a.785.785 0 0 0 .104-.078l.155-.052h2.496c1.665 0 2.523.017 2.575.052a.247.247 0 0 1 .103.208c0 .052-.026.19-.078.416a2.99 2.99 0 0 0-.078.364c-.069.104-.39.156-.962.156-.935.018-1.473.078-1.611.182a.457.457 0 0 0-.183.182c-.052.087-.684 2.54-1.898 7.358-1.195 4.819-1.793 7.254-1.793 7.306 0 .121.026.19.078.208.12.052.598.096 1.43.13h.805c.104.156.157.252.157.286 0 .277-.061.538-.182.78-.087.087-.226.13-.417.13-.294 0-.805-.009-1.534-.026a82.147 82.147 0 0 0-1.924-.026c-.537 0-1.16.009-1.872.026h-1.43c-.225 0-.364-.043-.416-.13-.034-.052-.026-.216.026-.494.07-.277.14-.433.209-.468.069-.052.268-.078.598-.078.468 0 .988-.026 1.56-.078.242-.052.407-.156.494-.312.034-.07.363-1.335.988-3.796.623-2.478 1.239-4.931 1.846-7.358.606-2.427.91-3.649.91-3.666-1.526 2.41-3.207 5.088-5.044 8.034l-5.122 8.138c-.157.156-.364.234-.625.234-.26 0-.416-.06-.468-.182-.052-.087-.39-2.565-1.014-7.436-.606-4.87-.962-7.74-1.066-8.606-2.34 9.273-3.51 13.997-3.51 14.17.104.572.729.858 1.872.858h.26c.104.087.165.165.182.234.018.07-.008.226-.078.468-.069.277-.138.433-.207.468-.07.017-.165.026-.287.026Z"
|
|
3932
|
+
}));
|
|
3747
3933
|
case "N":
|
|
3934
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3935
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3936
|
+
width: "44",
|
|
3937
|
+
height: "44",
|
|
3938
|
+
fill: "none",
|
|
3939
|
+
viewBox: "0 0 44 44"
|
|
3940
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3941
|
+
fill: "#21242C",
|
|
3942
|
+
d: "M12.76 29.974c-.26 0-.39-.078-.39-.234 0-.052.026-.19.078-.416.07-.225.113-.347.13-.364.035-.104.234-.156.598-.156 1.179-.052 1.942-.39 2.288-1.014.087-.156 1.292-4.914 3.614-14.274-.034-.017-.511-.043-1.43-.078-.52 0-.832-.008-.936-.026a.184.184 0 0 1-.156-.156c-.034-.052-.026-.208.026-.468.087-.312.165-.485.234-.52.035-.017.876-.026 2.522-.026 1.335 0 2.098.009 2.288.026.208 0 .33.043.364.13l1.378 3.25c.919 2.167 1.846 4.35 2.782 6.552.936 2.201 1.413 3.346 1.43 3.432l1.404-5.538c.919-3.657 1.378-5.607 1.378-5.85 0-.45-.554-.72-1.664-.806-.364 0-.563-.06-.598-.182-.034-.052-.026-.19.026-.416.018-.052.035-.113.052-.182a.713.713 0 0 0 .026-.156.299.299 0 0 1 .078-.182l.052-.052a.11.11 0 0 1 .078-.026h.13c.243 0 .676.017 1.3.052a62.89 62.89 0 0 0 1.664.026c.451 0 .962-.008 1.534-.026.59-.017.997-.026 1.222-.026.26 0 .39.087.39.26 0 .07-.034.217-.104.442-.052.208-.086.32-.104.338-.034.087-.225.13-.572.13-1.23.052-2.002.399-2.314 1.04l-3.874 15.34c-.034.121-.216.182-.546.182-.242 0-.39-.017-.442-.052L20.04 14.296c-2.253 9.03-3.38 13.58-3.38 13.65.104.572.728.858 1.872.858h.26c.104.087.165.165.182.234.018.052-.008.208-.078.468-.069.226-.156.39-.26.494h-.338c-.537-.035-1.473-.052-2.808-.052-.346 0-.823.009-1.43.026h-1.3Z"
|
|
3943
|
+
}));
|
|
3748
3944
|
case "O":
|
|
3945
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3946
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3947
|
+
width: "44",
|
|
3948
|
+
height: "44",
|
|
3949
|
+
fill: "none",
|
|
3950
|
+
viewBox: "0 0 44 44"
|
|
3951
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3952
|
+
fill: "#21242C",
|
|
3953
|
+
d: "M24.019 11.696h.442c.659 0 1.075.008 1.248.026 1.699.242 3.06.988 4.082 2.236 1.023 1.248 1.534 2.825 1.534 4.732 0 2.34-.754 4.558-2.262 6.656-.988 1.421-2.184 2.574-3.588 3.458-1.82 1.179-3.649 1.768-5.486 1.768-1.855 0-3.397-.59-4.628-1.768-1.317-1.283-1.976-2.999-1.976-5.148 0-.607.009-.997.026-1.17.312-2.375 1.317-4.559 3.016-6.552a16.549 16.549 0 0 1 1.56-1.56c1.924-1.595 3.935-2.488 6.032-2.678Zm4.628 5.928c0-1.317-.303-2.4-.91-3.25-.59-.85-1.413-1.378-2.47-1.586a3.627 3.627 0 0 0-.806-.078 3.99 3.99 0 0 0-.962.104c-1.075.19-2.089.676-3.042 1.456-.399.312-.875.789-1.43 1.43-.797 1.023-1.473 2.34-2.028 3.952-.555 1.595-.832 3.172-.832 4.732 0 1.248.243 2.305.728 3.172.503.866 1.196 1.447 2.08 1.742.45.139.875.208 1.274.208 1.057 0 2.097-.33 3.12-.988 2.063-1.352 3.57-3.57 4.524-6.656.503-1.647.754-3.06.754-4.238Z"
|
|
3954
|
+
}));
|
|
3749
3955
|
case "P":
|
|
3956
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3957
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3958
|
+
width: "44",
|
|
3959
|
+
height: "44",
|
|
3960
|
+
fill: "none",
|
|
3961
|
+
viewBox: "0 0 44 44"
|
|
3962
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3963
|
+
fill: "#21242C",
|
|
3964
|
+
d: "M21.121 13.672c0-.017-.009-.035-.026-.052-.017-.034-.043-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.765.765 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.433 0-.693-.008-.78-.026a.314.314 0 0 1-.182-.182c-.017-.07-.009-.19.026-.364.104-.346.182-.537.234-.572.052-.035 1.733-.052 5.044-.052 3.293.017 5.053.043 5.278.078 1.023.173 1.872.537 2.548 1.092.693.537 1.144 1.248 1.352 2.132.017.104.026.33.026.676 0 .434-.017.72-.052.858-.208.988-.763 1.924-1.664 2.808-1.196 1.179-2.739 1.924-4.628 2.236-.121.018-1.031.035-2.73.052h-2.47l-.78 3.094c-.52 2.01-.78 3.077-.78 3.198s.026.19.078.208c.121.052.598.096 1.43.13h.806c.104.156.156.252.156.286 0 .277-.06.538-.182.78-.087.087-.225.13-.416.13-.295 0-.823-.009-1.586-.026a86.304 86.304 0 0 0-1.976-.026 83.8 83.8 0 0 0-1.924.026h-1.482c-.225 0-.364-.043-.416-.13a.455.455 0 0 1-.052-.13c0-.034.026-.156.078-.364.07-.277.139-.433.208-.468.07-.052.269-.078.598-.078.468 0 .988-.026 1.56-.078.243-.052.407-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Zm9.308 1.924c0-.659-.19-1.135-.572-1.43-.381-.312-.927-.537-1.638-.676-.121-.017-.815-.034-2.08-.052-.295 0-.598.009-.91.026h-1.066c-.225.018-.381.095-.468.234a79.01 79.01 0 0 0-.52 2.002c-.295 1.23-.59 2.427-.884 3.588-.295 1.162-.45 1.75-.468 1.768 0 .035.702.052 2.106.052 1.456-.017 2.253-.035 2.392-.052 1.161-.173 2.054-.59 2.678-1.248.468-.468.858-1.308 1.17-2.522.173-.71.26-1.274.26-1.69Z"
|
|
3965
|
+
}));
|
|
3750
3966
|
case "Q":
|
|
3967
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3968
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3969
|
+
width: "44",
|
|
3970
|
+
height: "44",
|
|
3971
|
+
fill: "none",
|
|
3972
|
+
viewBox: "0 0 44 44"
|
|
3973
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3974
|
+
fill: "#21242C",
|
|
3975
|
+
d: "M22.09 32.08c0-.19.01-.511.027-.962.034-.433.052-.71.052-.832v-.104l-.39.104c-.797.19-1.526.286-2.184.286-1.837 0-3.371-.59-4.602-1.768-1.318-1.283-1.976-2.999-1.976-5.148 0-.607.008-.997.026-1.17.312-2.375 1.317-4.559 3.016-6.552a16.573 16.573 0 0 1 1.56-1.56c1.924-1.595 3.934-2.488 6.032-2.678h.442c.659 0 1.075.008 1.248.026 1.698.242 3.06.988 4.082 2.236 1.023 1.248 1.534 2.825 1.534 4.732 0 2.322-.72 4.498-2.158 6.526-1.439 2.01-3.137 3.466-5.096 4.368l-.442.208v.13a.2.2 0 0 0 .026.078.489.489 0 0 1 .026.156c.017.07.035.13.052.182.156.676.355 1.144.598 1.404.242.26.633.39 1.17.39a2.86 2.86 0 0 0 1.794-.624c.537-.399.884-.875 1.04-1.43.104-.243.216-.364.338-.364.156 0 .251.078.286.234 0 .104-.06.355-.182.754-.71 2.097-1.673 3.45-2.886 4.056-.433.19-.867.286-1.3.286-.797 0-1.352-.26-1.664-.78-.312-.503-.468-1.23-.468-2.184Zm-1.351-6.11c.624 0 1.135.225 1.534.676.416.45.667 1.092.754 1.924l.338-.234c1.335-.919 2.41-2.193 3.224-3.822.832-1.63 1.378-3.484 1.638-5.564.017-.174.026-.546.026-1.118 0-2.028-.59-3.476-1.768-4.342-.676-.52-1.465-.78-2.366-.78-.832 0-1.681.216-2.548.65-1.56.763-2.86 2.054-3.9 3.874-1.04 1.802-1.69 3.83-1.95 6.084-.018.19-.026.546-.026 1.066 0 1.802.468 3.163 1.404 4.082.416.364.667.546.754.546v-.208c0-.78.303-1.447.91-2.002.624-.555 1.282-.832 1.976-.832Zm-.858 3.562a5.38 5.38 0 0 0 2.34-.546l-.026-.26c-.07-.953-.39-1.525-.962-1.716a3.178 3.178 0 0 0-.494-.052h-.156a.426.426 0 0 0-.104-.026c-.07 0-.182.026-.338.078a1.88 1.88 0 0 0-.91.624c-.26.294-.39.633-.39 1.014 0 .59.346.884 1.04.884Z"
|
|
3976
|
+
}));
|
|
3751
3977
|
case "R":
|
|
3978
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3979
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3980
|
+
width: "44",
|
|
3981
|
+
height: "44",
|
|
3982
|
+
fill: "none",
|
|
3983
|
+
viewBox: "0 0 44 44"
|
|
3984
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3985
|
+
fill: "#21242C",
|
|
3986
|
+
d: "M19.598 13.672c0-.017-.009-.035-.026-.052-.018-.034-.044-.052-.078-.052l-.104-.052a.363.363 0 0 0-.156-.026.766.766 0 0 0-.182-.026h-.442a.79.79 0 0 0-.234-.026h-.26c-.416 0-.668-.008-.754-.026a.237.237 0 0 1-.182-.156c-.035-.052-.026-.208.026-.468.086-.312.164-.485.234-.52.034-.017 1.542-.026 4.524-.026 2.981.017 4.593.043 4.836.078 1.577.226 2.773.763 3.588 1.612.641.694.962 1.465.962 2.314 0 .174-.035.434-.104.78-.399 1.543-1.673 2.79-3.822 3.744-.763.295-1.196.442-1.3.442l.182.13c1.161.659 1.742 1.612 1.742 2.86 0 .208-.044.763-.13 1.664a20.47 20.47 0 0 0-.13 2.054c0 .607.06 1.04.182 1.3.121.243.39.364.806.364.242 0 .398-.017.468-.052.658-.26 1.126-.84 1.404-1.742.086-.242.156-.39.208-.442.052-.052.182-.078.39-.078.346 0 .52.104.52.312 0 .312-.208.806-.624 1.482-.52.763-1.127 1.24-1.82 1.43-.139.035-.39.052-.754.052-1.803 0-2.973-.546-3.51-1.638-.156-.277-.243-.624-.26-1.04v-.442l.052-.39c.017-.139.034-.242.052-.312.017-.07.06-.216.13-.442a6.33 6.33 0 0 0 .156-.598c.26-.988.39-1.62.39-1.898 0-.867-.373-1.508-1.118-1.924-.26-.121-.477-.19-.65-.208-.174-.017-.789-.035-1.846-.052H20.17l-.832 3.38c-.572 2.288-.858 3.45-.858 3.484 0 .121.026.19.078.208.121.052.598.096 1.43.13h.806c.086.122.13.2.13.234.017.017 0 .174-.052.468-.07.226-.156.39-.26.494h-.39c-.624-.035-1.76-.052-3.406-.052-.416 0-.997.009-1.742.026h-1.638c-.295 0-.442-.078-.442-.234 0-.034.026-.156.078-.364.086-.33.173-.511.26-.546.069-.017.199-.026.39-.026h.156c.468 0 .988-.026 1.56-.078.242-.052.407-.156.494-.312.052-.07.676-2.479 1.872-7.228 1.196-4.75 1.794-7.254 1.794-7.514Zm8.502.676c-.364-.381-.841-.624-1.43-.728-.59-.121-1.43-.182-2.522-.182a8.5 8.5 0 0 0-.65.026h-.858c-.226.018-.382.095-.468.234-.018.052-.312 1.213-.884 3.484-.572 2.254-.858 3.398-.858 3.432 0 .017.598.026 1.794.026 1.352-.017 2.253-.078 2.704-.182 1.126-.19 1.993-.702 2.6-1.534.277-.398.511-.918.702-1.56.19-.659.286-1.248.286-1.768 0-.537-.139-.953-.416-1.248Z"
|
|
3987
|
+
}));
|
|
3752
3988
|
case "S":
|
|
3989
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
3990
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3991
|
+
width: "44",
|
|
3992
|
+
height: "44",
|
|
3993
|
+
fill: "none",
|
|
3994
|
+
viewBox: "0 0 44 44"
|
|
3995
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
3996
|
+
fill: "#21242C",
|
|
3997
|
+
d: "M28.405 16.48c0-1.179-.303-2.089-.91-2.73-.589-.641-1.447-.962-2.574-.962-.953 0-1.872.39-2.756 1.17-.866.78-1.3 1.707-1.3 2.782 0 .537.13.997.39 1.378.278.381.633.641 1.066.78.052.035.65.208 1.794.52a99.54 99.54 0 0 0 1.768.442c.26.07.59.243.988.52 1.04.745 1.56 1.855 1.56 3.328 0 .45-.069.936-.208 1.456a4.94 4.94 0 0 1-.52 1.43c-1.074 2.132-2.756 3.44-5.044 3.926a5.719 5.719 0 0 1-.884.052c-1.716 0-3.05-.477-4.004-1.43l-.26-.286-.728.806c-.485.537-.754.823-.806.858-.052.035-.138.052-.26.052-.225 0-.338-.07-.338-.208 0-.052.503-2.089 1.508-6.11.035-.104.208-.156.52-.156h.338c.087.087.13.147.13.182.018.017.01.156-.026.416a6.79 6.79 0 0 0-.13 1.326c.07 1.127.477 1.967 1.222 2.522.763.555 1.794.832 3.094.832.174 0 .382-.017.624-.052.815-.19 1.543-.624 2.184-1.3.66-.676 1.075-1.456 1.248-2.34.035-.139.052-.407.052-.806 0-1.11-.45-1.863-1.352-2.262-.104-.017-.728-.173-1.872-.468-1.144-.312-1.742-.485-1.794-.52a3.428 3.428 0 0 1-1.846-1.3c-.45-.659-.676-1.439-.676-2.34 0-.867.243-1.76.728-2.678.503-.936 1.101-1.655 1.794-2.158.884-.763 1.95-1.24 3.198-1.43.07-.017.165-.026.286-.026h.286c1.803 0 3.068.555 3.796 1.664l1.534-1.664h.104a.429.429 0 0 1 .13-.026c.226 0 .338.06.338.182 0 .121-.25 1.179-.754 3.172-.485 1.976-.754 2.99-.806 3.042-.052.052-.19.078-.416.078-.346 0-.52-.078-.52-.234 0-.104.01-.19.026-.26 0-.087.01-.269.026-.546a6.19 6.19 0 0 0 .052-.624Z"
|
|
3998
|
+
}));
|
|
3753
3999
|
case "T":
|
|
4000
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4001
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4002
|
+
width: "44",
|
|
4003
|
+
height: "44",
|
|
4004
|
+
fill: "none",
|
|
4005
|
+
viewBox: "0 0 44 44"
|
|
4006
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4007
|
+
fill: "#21242C",
|
|
4008
|
+
d: "M25.198 30c-.468 0-1.248-.009-2.34-.026a165.36 165.36 0 0 0-2.522-.026c-2.236 0-3.657.017-4.264.052h-.39a1.192 1.192 0 0 1-.182-.208c0-.052.026-.217.078-.494.07-.225.156-.39.26-.494h.728c1.04 0 1.742-.026 2.106-.078.295-.017.511-.07.65-.156.017-.017.035-.026.052-.026.087-.052.173-.225.26-.52.087-.312.433-1.673 1.04-4.082.295-1.179.537-2.14.728-2.886 1.213-4.767 1.82-7.202 1.82-7.306 0-.087-.251-.13-.754-.13h-.806c-1.161 0-1.924.052-2.288.156-.745.156-1.309.46-1.69.91-.468.52-.98 1.577-1.534 3.172-.121.381-.208.607-.26.676-.052.07-.173.104-.364.104h-.078c-.225 0-.364-.026-.416-.078-.052-.052-.078-.095-.078-.13 0-.104.26-.936.78-2.496a74.24 74.24 0 0 1 .962-2.86c.104-.33.217-.555.338-.676h12.168c2.323 0 3.484.043 3.484.13v.026l.026.026v.078c0 .104-.156 1.092-.468 2.964-.295 1.872-.45 2.817-.468 2.834 0 .052-.035.095-.104.13-.035.035-.165.052-.39.052h-.26a.424.424 0 0 0-.104-.026l-.078-.078a.781.781 0 0 0-.078-.104c0-.121.026-.355.078-.702.156-.936.234-1.62.234-2.054 0-.399-.052-.728-.156-.988-.104-.26-.225-.46-.364-.598-.121-.139-.355-.243-.702-.312a6.478 6.478 0 0 0-.858-.13 33.843 33.843 0 0 0-1.196-.052c-.797 0-1.309.017-1.534.052-.208.017-.355.078-.442.182-.017.017-.633 2.444-1.846 7.28-1.213 4.819-1.82 7.263-1.82 7.332 0 .121.113.2.338.234.243.07.893.113 1.95.13.59 0 .936.009 1.04.026.121.017.2.07.234.156.017.052 0 .2-.052.442-.07.312-.147.494-.234.546L25.38 30h-.182Z"
|
|
4009
|
+
}));
|
|
3754
4010
|
case "U":
|
|
4011
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4012
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4013
|
+
width: "44",
|
|
4014
|
+
height: "44",
|
|
4015
|
+
fill: "none",
|
|
4016
|
+
viewBox: "0 0 44 44"
|
|
4017
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4018
|
+
fill: "#21242C",
|
|
4019
|
+
d: "M17.078 26.36c0 .954.26 1.699.78 2.236.537.52 1.291.78 2.262.78 1.421 0 2.67-.46 3.744-1.378 1.092-.919 1.855-2.028 2.288-3.328 1.699-6.777 2.548-10.253 2.548-10.426 0-.45-.555-.72-1.664-.806-.364 0-.563-.06-.598-.182-.035-.052-.026-.19.026-.416.017-.052.035-.113.052-.182a.706.706 0 0 0 .026-.156.304.304 0 0 1 .078-.182l.052-.052c.017-.017.043-.026.078-.026h.13c.26 0 .71.017 1.352.052a51.568 51.568 0 0 0 3.224 0c.59-.017.997-.026 1.222-.026.26 0 .39.087.39.26 0 .07-.035.217-.104.442-.052.208-.087.32-.104.338-.052.087-.243.13-.572.13-1.23.052-2.002.399-2.314 1.04-.035.087-.468 1.76-1.3 5.018-.71 2.93-1.144 4.654-1.3 5.174-.52 1.543-1.465 2.912-2.834 4.108-1.37 1.196-2.895 1.794-4.576 1.794-1.404 0-2.583-.398-3.536-1.196-.953-.797-1.525-1.837-1.716-3.12a4.412 4.412 0 0 1-.026-.598c0-.399.017-.754.052-1.066.035-.156.269-1.118.702-2.886.45-1.785.884-3.536 1.3-5.252.433-1.716.65-2.643.65-2.782 0-.121-.494-.2-1.482-.234-.416 0-.667-.008-.754-.026a.238.238 0 0 1-.182-.156c-.035-.052-.026-.208.026-.468.07-.295.147-.468.234-.52.035-.017.182-.026.442-.026.71.035 1.89.052 3.536.052h1.716a78.767 78.767 0 0 1 1.612-.026c.225 0 .355.052.39.156.035.052.026.208-.026.468-.087.295-.173.468-.26.52h-.182a.766.766 0 0 0-.182.026h-.468c-.919.018-1.447.078-1.586.182a.458.458 0 0 0-.182.182c-.017.035-.26.954-.728 2.756a431.596 431.596 0 0 0-1.43 5.616c-.468 1.942-.72 3.085-.754 3.432a5.338 5.338 0 0 0-.052.754Z"
|
|
4020
|
+
}));
|
|
3755
4021
|
case "V":
|
|
4022
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4023
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4024
|
+
width: "44",
|
|
4025
|
+
height: "44",
|
|
4026
|
+
fill: "none",
|
|
4027
|
+
viewBox: "0 0 44 44"
|
|
4028
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4029
|
+
fill: "#21242C",
|
|
4030
|
+
d: "M15.955 13.438c-.121-.121-.182-.216-.182-.286 0-.138.043-.312.13-.52.087-.208.156-.338.208-.39h.286c.728.052 1.638.078 2.73.078 2.045 0 3.25-.026 3.614-.078H23c.104.104.156.182.156.234.017.035 0 .19-.052.468-.07.243-.147.407-.234.494h-.546c-.381.035-.641.052-.78.052-.503.087-.78.217-.832.39 0 .035.251 2.219.754 6.552.503 4.316.763 6.483.78 6.5l1.898-3.042a950.553 950.553 0 0 0 3.796-6.136 279.681 279.681 0 0 0 1.95-3.198c.087-.173.13-.303.13-.39 0-.399-.39-.641-1.17-.728-.33 0-.494-.087-.494-.26 0-.087.026-.208.078-.364.052-.242.104-.399.156-.468.052-.07.165-.104.338-.104.295 0 .763.009 1.404.026.659.018 1.144.026 1.456.026 1.196 0 1.95-.017 2.262-.052h.182c.121.121.182.217.182.286 0 .312-.078.59-.234.832-.052.052-.2.078-.442.078-.936.052-1.681.33-2.236.832l-.182.182c-.07.087-.113.139-.13.156a.99.99 0 0 1-.182.26c-6.379 10.348-9.62 15.548-9.724 15.6l-.13.078-.468.026c-.312 0-.494-.017-.546-.052-.07-.035-.104-.078-.104-.13-.052-.104-.39-2.877-1.014-8.32-.659-5.512-.997-8.294-1.014-8.346-.104-.19-.546-.286-1.326-.286h-.728Z"
|
|
4031
|
+
}));
|
|
3756
4032
|
case "W":
|
|
4033
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4034
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4035
|
+
width: "44",
|
|
4036
|
+
height: "44",
|
|
4037
|
+
fill: "none",
|
|
4038
|
+
viewBox: "0 0 44 44"
|
|
4039
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4040
|
+
fill: "#21242C",
|
|
4041
|
+
d: "M11.232 13.438c-.122-.121-.182-.216-.182-.286 0-.381.112-.684.338-.91h.312a37.18 37.18 0 0 0 2.6.078h.832c.38-.017.667-.026.858-.026h.806c.329-.017.58-.026.754-.026.173-.017.277-.026.312-.026h.26c.104.104.156.182.156.234.017.035 0 .19-.052.468-.07.243-.148.407-.234.494h-.546c-.503.018-.92.07-1.248.156-.26.104-.408.2-.442.286 0 .121.138 2.219.416 6.292.294 4.073.45 6.17.468 6.292 2.704-4.784 4.74-8.372 6.11-10.764l-.052-.962c-.052-.728-.14-1.118-.26-1.17-.104-.07-.468-.112-1.092-.13-.486 0-.746-.06-.78-.182-.035-.052-.026-.19.026-.416.086-.347.164-.537.234-.572.052-.017.32-.017.806 0 .589.035 1.412.052 2.47.052.502 0 1.092-.008 1.768-.026a68.319 68.319 0 0 1 1.456-.026c.294 0 .442.06.442.182 0 .07-.026.226-.078.468-.052.226-.087.347-.104.364-.035.104-.26.156-.676.156-.902.035-1.44.165-1.612.39-.052.052-.07.113-.052.182 0 .208.138 2.28.416 6.214.277 3.918.416 5.98.416 6.188l.052-.078a5.08 5.08 0 0 0 .156-.26c.086-.139.19-.303.312-.494.12-.208.268-.468.442-.78.19-.312.398-.667.624-1.066.225-.399.485-.867.78-1.404l1.014-1.742c2.236-3.934 3.37-5.954 3.406-6.058a.828.828 0 0 0 .052-.234c0-.277-.174-.485-.52-.624a2.459 2.459 0 0 0-1.066-.234c-.243 0-.364-.087-.364-.26 0-.052.017-.165.052-.338a.577.577 0 0 0 .026-.182.713.713 0 0 0 .026-.156l.052-.104a.17.17 0 0 1 .078-.078.29.29 0 0 1 .13-.026.677.677 0 0 1 .208-.026c.312 0 .788.009 1.43.026h1.43c1.144 0 1.88-.017 2.21-.052.242 0 .364.095.364.286 0 .104-.035.26-.104.468-.07.208-.122.33-.156.364-.052.052-.14.078-.26.078-1.092 0-1.933.407-2.522 1.222-.122.19-.191.295-.208.312l-4.394 7.696c-2.912 5.13-4.377 7.705-4.394 7.722-.104.122-.312.182-.624.182-.26 0-.425-.043-.494-.13-.052-.052-.226-2.184-.52-6.396-.278-4.23-.416-6.404-.416-6.526l-.312.468c-.382.642-1.491 2.574-3.328 5.798a403.24 403.24 0 0 1-1.794 3.146l-1.43 2.548c-.312.537-.477.815-.494.832-.104.173-.33.26-.676.26-.33 0-.512-.06-.546-.182 0-.052-.191-2.817-.572-8.294-.382-5.494-.581-8.25-.598-8.268-.035-.156-.122-.251-.26-.286-.14-.052-.477-.086-1.014-.104h-.624Z"
|
|
4042
|
+
}));
|
|
3757
4043
|
case "X":
|
|
4044
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4045
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4046
|
+
width: "44",
|
|
4047
|
+
height: "44",
|
|
4048
|
+
fill: "none",
|
|
4049
|
+
viewBox: "0 0 44 44"
|
|
4050
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4051
|
+
fill: "#21242C",
|
|
4052
|
+
d: "M12.326 30c-.277 0-.416-.095-.416-.286 0-.07.026-.208.078-.416.07-.242.13-.381.182-.416.052-.035.217-.06.494-.078 1.491-.052 2.661-.502 3.51-1.352.174-.173 1.18-1.265 3.016-3.276 1.838-2.028 2.748-3.05 2.73-3.068-1.889-4.819-2.877-7.271-2.964-7.358-.156-.19-.702-.294-1.638-.312h-.728a1.188 1.188 0 0 1-.182-.208c0-.052.026-.216.078-.494.07-.225.156-.39.26-.494h.364c.59.035 1.638.052 3.146.052h1.664a75.269 75.269 0 0 1 1.612-.026c.174 0 .286.018.338.052.052.018.078.078.078.182 0 .416-.06.685-.182.806-.034.087-.182.13-.442.13-.658.07-1.109.208-1.352.416l-.052.026c.78 1.907 1.448 3.588 2.002 5.044L25.3 17.39c.815-.884 1.456-1.595 1.924-2.132.382-.398.616-.667.702-.806a.625.625 0 0 0 .104-.416c-.052-.26-.26-.442-.624-.546a1.45 1.45 0 0 1-.338-.052c-.156 0-.268-.035-.338-.104-.069-.07-.069-.268 0-.598.07-.225.156-.39.26-.494h.312c.4.052 1.44.078 3.12.078 1.508 0 2.366-.026 2.574-.078h.208c.122.121.182.217.182.286 0 .139-.043.312-.13.52-.069.208-.13.338-.182.39h-.416c-1.334.052-2.426.425-3.276 1.118-.156.156-.25.243-.286.26a.465.465 0 0 1-.13.13c-.069.07-.849.928-2.34 2.574l-2.262 2.496c0 .018.27.72.806 2.106.555 1.37 1.118 2.765 1.69 4.186.572 1.422.893 2.167.962 2.236.174.156.702.243 1.586.26.607 0 .91.07.91.208 0 .19-.06.468-.182.832-.052.087-.19.13-.416.13h-1.378a68.88 68.88 0 0 0-1.794-.026c-.52 0-1.135.009-1.846.026H23.22c-.225 0-.364-.043-.416-.13-.034-.052-.026-.216.026-.494.07-.26.13-.407.182-.442.052-.052.182-.087.39-.104.312-.017.642-.086.988-.208.295-.139.442-.225.442-.26-.017 0-.424-1.014-1.222-3.042l-1.222-3.068c-.017 0-.84.902-2.47 2.704-1.612 1.785-2.426 2.695-2.444 2.73a.647.647 0 0 0-.208.468c0 .33.252.546.754.65.018 0 .07.009.156.026h.156c.208 0 .312.087.312.26 0 .104-.026.252-.078.442-.052.226-.104.364-.156.416-.052.035-.182.052-.39.052h-1.534a68.47 68.47 0 0 0-1.56-.026c-1.352 0-2.218.017-2.6.052Z"
|
|
4053
|
+
}));
|
|
3758
4054
|
case "Y":
|
|
4055
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4056
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4057
|
+
width: "44",
|
|
4058
|
+
height: "44",
|
|
4059
|
+
fill: "none",
|
|
4060
|
+
viewBox: "0 0 44 44"
|
|
4061
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4062
|
+
fill: "#21242C",
|
|
4063
|
+
d: "M29.994 12.294a40.338 40.338 0 0 0 2.912 0c.503-.035.85-.052 1.04-.052.226 0 .338.087.338.26 0 .052-.034.19-.104.416-.052.226-.086.347-.104.364-.034.104-.216.156-.546.156-1.248.087-2.262.52-3.042 1.3-.156.156-1.369 1.569-3.64 4.238l-3.354 3.926-.676 2.704c-.468 1.855-.702 2.825-.702 2.912 0 .19.59.286 1.768.286.295 0 .477.018.546.052.087.017.13.087.13.208 0 .364-.052.624-.156.78-.052.087-.199.13-.442.13h-1.56a82.14 82.14 0 0 0-1.924-.026c-.554 0-1.187.009-1.898.026h-1.482c-.294 0-.442-.06-.442-.182 0-.07.026-.216.078-.442.052-.242.087-.373.104-.39.035-.104.356-.156.962-.156.676-.017 1.118-.052 1.326-.104.226-.052.382-.165.468-.338.052-.086.304-1.022.754-2.808l.65-2.678c-.71-2.028-1.776-5.053-3.198-9.074a.973.973 0 0 0-.494-.286c-.156-.034-.537-.06-1.144-.078-.624 0-.936-.087-.936-.26 0-.035.026-.156.078-.364.07-.312.148-.494.234-.546.035-.017.156-.026.364-.026a45.9 45.9 0 0 0 2.834.078c2.115 0 3.337-.026 3.666-.078h.26c.104.104.156.182.156.234.018.035 0 .19-.052.468-.069.225-.156.39-.26.494h-.312c-.97 0-1.456.113-1.456.338 0 .087.434 1.37 1.3 3.848.867 2.462 1.309 3.7 1.326 3.718l.078-.078c.07-.07.174-.182.312-.338.139-.173.321-.381.546-.624.226-.26.503-.58.832-.962.33-.381.702-.823 1.118-1.326 1.855-2.166 2.843-3.336 2.964-3.51.156-.225.234-.416.234-.572 0-.277-.277-.442-.832-.494-.294 0-.442-.087-.442-.26 0-.035.018-.156.052-.364.052-.26.096-.416.13-.468.052-.07.174-.104.364-.104.243 0 .668.017 1.274.052Z"
|
|
4064
|
+
}));
|
|
3759
4065
|
case "Z":
|
|
4066
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4067
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4068
|
+
width: "44",
|
|
4069
|
+
height: "44",
|
|
4070
|
+
fill: "none",
|
|
4071
|
+
viewBox: "0 0 44 44"
|
|
4072
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4073
|
+
fill: "#21242C",
|
|
4074
|
+
d: "M14.634 29.792c0-.26.052-.494.156-.702 0-.017 2.297-2.608 6.89-7.774a4794.75 4794.75 0 0 1 6.942-7.826l-.26-.052h-1.924c-1.56.018-2.41.035-2.548.052-1.317.174-2.349.615-3.094 1.326-.745.71-1.326 1.707-1.742 2.99l-.052.156-.052.156-.052.104v.078l-.026.052c-.052.087-.217.13-.494.13-.295 0-.468-.087-.52-.26l.832-2.808c.139-.45.277-.918.416-1.404.156-.485.269-.858.338-1.118.087-.26.13-.399.13-.416.052-.104.095-.165.13-.182.052-.035 2.08-.052 6.084-.052h6.006c.087.087.13.156.13.208 0 .035-.052.26-.156.676-9.152 10.313-13.737 15.487-13.754 15.522l-.078.078h2.314c1.647-.017 2.54-.034 2.678-.052 1.265-.156 2.262-.529 2.99-1.118.745-.59 1.36-1.517 1.846-2.782.121-.277.26-.676.416-1.196.139-.433.234-.693.286-.78.07-.086.182-.13.338-.13h.104c.364 0 .546.096.546.286 0 .07-.355 1.24-1.066 3.51-.71 2.27-1.11 3.432-1.196 3.484-.052.035-2.14.052-6.266.052-4.108 0-6.18-.017-6.214-.052-.052-.052-.078-.104-.078-.156Z"
|
|
4075
|
+
}));
|
|
4076
|
+
case "JUMP_OUT_PARENTHESES":
|
|
4077
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4078
|
+
width: "40",
|
|
4079
|
+
height: "40",
|
|
4080
|
+
viewBox: "0 0 40 40",
|
|
4081
|
+
fill: "none",
|
|
4082
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4083
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4084
|
+
fillRule: "evenodd",
|
|
4085
|
+
clipRule: "evenodd",
|
|
4086
|
+
d: "M12.9571 13.2929c.3905.3905.3905 1.0237 0 1.4142C11.6871 15.9771 11 17.9485 11 20c0 2.0515.6871 4.0229 1.9571 5.2929.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0C9.81292 24.9771 9 22.4485 9 20c0-2.4485.81292-4.9771 2.5429-6.7071.3905-.3905 1.0237-.3905 1.4142 0zm4.5858 0c.3905-.3905 1.0237-.3905 1.4142 0C20.6871 15.0229 21.5 17.5515 21.5 20c0 2.4485-.8129 4.9771-2.5429 6.7071-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142C18.8129 24.0229 19.5 22.0515 19.5 20c0-2.0515-.6871-4.0229-1.9571-5.2929-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
4087
|
+
fill: "#21242C"
|
|
4088
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4089
|
+
fillRule: "evenodd",
|
|
4090
|
+
clipRule: "evenodd",
|
|
4091
|
+
d: "M25.5429 16.2929c.3905-.3905 1.0237-.3905 1.4142 0l3 3c.3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L26.8358 21H16.25c-.5523 0-1-.4477-1-1s.4477-1 1-1h10.5858l-1.2929-1.2929c-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
4092
|
+
fill: "#1865F2"
|
|
4093
|
+
}));
|
|
4094
|
+
case "JUMP_OUT_EXPONENT":
|
|
4095
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4096
|
+
width: "40",
|
|
4097
|
+
height: "40",
|
|
4098
|
+
viewBox: "0 0 40 40",
|
|
4099
|
+
fill: "none",
|
|
4100
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4101
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4102
|
+
fillRule: "evenodd",
|
|
4103
|
+
clipRule: "evenodd",
|
|
4104
|
+
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
4105
|
+
fill: "#1865F2"
|
|
4106
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4107
|
+
fillRule: "evenodd",
|
|
4108
|
+
clipRule: "evenodd",
|
|
4109
|
+
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
4110
|
+
fill: "#21242C"
|
|
4111
|
+
}));
|
|
4112
|
+
case "JUMP_OUT_BASE":
|
|
4113
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4114
|
+
width: "40",
|
|
4115
|
+
height: "40",
|
|
4116
|
+
viewBox: "0 0 40 40",
|
|
4117
|
+
fill: "none",
|
|
4118
|
+
style: {
|
|
4119
|
+
display: "block",
|
|
4120
|
+
transform: "scale(1,-1)"
|
|
4121
|
+
},
|
|
4122
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4123
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4124
|
+
fillRule: "evenodd",
|
|
4125
|
+
clipRule: "evenodd",
|
|
4126
|
+
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
4127
|
+
fill: "#1865F2"
|
|
4128
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4129
|
+
fillRule: "evenodd",
|
|
4130
|
+
clipRule: "evenodd",
|
|
4131
|
+
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
4132
|
+
fill: "#21242C"
|
|
4133
|
+
}));
|
|
4134
|
+
case "JUMP_INTO_NUMERATOR":
|
|
4135
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4136
|
+
width: "40",
|
|
4137
|
+
height: "40",
|
|
4138
|
+
viewBox: "0 0 40 40",
|
|
4139
|
+
fill: "none",
|
|
4140
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4141
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4142
|
+
fillRule: "evenodd",
|
|
4143
|
+
clipRule: "evenodd",
|
|
4144
|
+
d: "M9 11c.55228 0 1 .4477 1 1v16c0 .5523-.44772 1-1 1s-1-.4477-1-1V12c0-.5523.44772-1 1-1zm5 1c0-.5523.4477-1 1-1h3.9998c.0001 0 0 0 0 0 .1356 0 .2651.027.383.0759.1171.0484.2268.1201.3222.2149l.0042.0042c.1931.1942.29.448.2908.702V16c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L16.5858 13H15c-.5523 0-1-.4477-1-1z",
|
|
4145
|
+
fill: "#1865F2"
|
|
4146
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4147
|
+
fillRule: "evenodd",
|
|
4148
|
+
clipRule: "evenodd",
|
|
4149
|
+
d: "M23 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4150
|
+
fill: "#21242C"
|
|
4151
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4152
|
+
clipPath: "url(#clip0_874_41680)"
|
|
4153
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4154
|
+
fillRule: "evenodd",
|
|
4155
|
+
clipRule: "evenodd",
|
|
4156
|
+
d: "M20 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H21c-.5523 0-1-.4477-1-1z",
|
|
4157
|
+
fill: "#21242C"
|
|
4158
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4159
|
+
fillRule: "evenodd",
|
|
4160
|
+
clipRule: "evenodd",
|
|
4161
|
+
d: "M23 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4162
|
+
fill: "#1865F2"
|
|
4163
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
4164
|
+
id: "clip0_874_41680"
|
|
4165
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4166
|
+
fill: "#fff",
|
|
4167
|
+
transform: "translate(20 19)",
|
|
4168
|
+
d: "M0 0h12v2H0z"
|
|
4169
|
+
}))));
|
|
4170
|
+
case "JUMP_OUT_NUMERATOR":
|
|
4171
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4172
|
+
width: "40",
|
|
4173
|
+
height: "40",
|
|
4174
|
+
viewBox: "0 0 40 40",
|
|
4175
|
+
fill: "none",
|
|
4176
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4177
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4178
|
+
fillRule: "evenodd",
|
|
4179
|
+
clipRule: "evenodd",
|
|
4180
|
+
d: "M26 13c.5523 0 1 .4477 1 1v11.5858l1.2929-1.2929c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0l-3-3c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0L25 25.5858V14c0-.5523.4477-1 1-1zM13 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4181
|
+
fill: "#1865F2"
|
|
4182
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4183
|
+
clipPath: "url(#clip0_874_41686)"
|
|
4184
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4185
|
+
fillRule: "evenodd",
|
|
4186
|
+
clipRule: "evenodd",
|
|
4187
|
+
d: "M10 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H11c-.5523 0-1-.4477-1-1z",
|
|
4188
|
+
fill: "#21242C"
|
|
4189
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4190
|
+
fillRule: "evenodd",
|
|
4191
|
+
clipRule: "evenodd",
|
|
4192
|
+
d: "M13 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4193
|
+
fill: "#21242C"
|
|
4194
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
4195
|
+
id: "clip0_874_41686"
|
|
4196
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4197
|
+
fill: "#fff",
|
|
4198
|
+
transform: "translate(10 19)",
|
|
4199
|
+
d: "M0 0h12v2H0z"
|
|
4200
|
+
}))));
|
|
4201
|
+
case "JUMP_OUT_DENOMINATOR":
|
|
4202
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
4203
|
+
width: "40",
|
|
4204
|
+
height: "40",
|
|
4205
|
+
viewBox: "0 0 40 40",
|
|
4206
|
+
fill: "none",
|
|
4207
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4208
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4209
|
+
fillRule: "evenodd",
|
|
4210
|
+
clipRule: "evenodd",
|
|
4211
|
+
d: "M31 11c.5523 0 1 .4477 1 1v16c0 .5523-.4477 1-1 1s-1-.4477-1-1V12c0-.5523.4477-1 1-1zm-9 9c0-.5523.4477-1 1-1h4c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L24.5858 21H23c-.5523 0-1-.4477-1-1z",
|
|
4212
|
+
fill: "#1865F2"
|
|
4213
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4214
|
+
fillRule: "evenodd",
|
|
4215
|
+
clipRule: "evenodd",
|
|
4216
|
+
d: "M11 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4217
|
+
fill: "#21242C"
|
|
4218
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4219
|
+
clipPath: "url(#clip0_874_41692)"
|
|
4220
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4221
|
+
fillRule: "evenodd",
|
|
4222
|
+
clipRule: "evenodd",
|
|
4223
|
+
d: "M8 20c0-.5523.44772-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H9c-.55228 0-1-.4477-1-1z",
|
|
4224
|
+
fill: "#21242C"
|
|
4225
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
4226
|
+
fillRule: "evenodd",
|
|
4227
|
+
clipRule: "evenodd",
|
|
4228
|
+
d: "M11 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
4229
|
+
fill: "#21242C"
|
|
4230
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
4231
|
+
id: "clip0_874_41692"
|
|
4232
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4233
|
+
fill: "#fff",
|
|
4234
|
+
transform: "translate(8 19)",
|
|
4235
|
+
d: "M0 0h12v2H0z"
|
|
4236
|
+
}))));
|
|
4237
|
+
|
|
4238
|
+
/**
|
|
4239
|
+
* ANYTHING BELOW IS NOT YET HANDLED
|
|
4240
|
+
*/
|
|
4241
|
+
case "MANY":
|
|
4242
|
+
case "NOOP":
|
|
4243
|
+
case "UP":
|
|
4244
|
+
case "DOWN":
|
|
4245
|
+
case "LEFT":
|
|
4246
|
+
case "RIGHT":
|
|
4247
|
+
case "PHI":
|
|
4248
|
+
case "NTHROOT3":
|
|
4249
|
+
case "POW":
|
|
4250
|
+
case "LOG_B":
|
|
3760
4251
|
// placeholder
|
|
3761
4252
|
return /*#__PURE__*/React.createElement("svg", {
|
|
3762
4253
|
width: "40",
|
|
@@ -3797,7 +4288,7 @@ const KeypadButton$2 = ({
|
|
|
3797
4288
|
gridRow: coord[1] + 1
|
|
3798
4289
|
}, style)
|
|
3799
4290
|
}, /*#__PURE__*/React.createElement(Clickable, {
|
|
3800
|
-
onClick:
|
|
4291
|
+
onClick: e => onClickKey(keyConfig.id, e),
|
|
3801
4292
|
style: styles$e.clickable,
|
|
3802
4293
|
"aria-label": keyConfig.ariaLabel
|
|
3803
4294
|
}, ({
|
|
@@ -3886,6 +4377,116 @@ function ExtrasPage(props) {
|
|
|
3886
4377
|
}));
|
|
3887
4378
|
}
|
|
3888
4379
|
|
|
4380
|
+
// This is a helper function that returns the correct context for the cursor
|
|
4381
|
+
// based on the cursorContext prop. It is used in the keypad to determine
|
|
4382
|
+
// which key to render as the "jump out" key.
|
|
4383
|
+
function getCursorContextConfig(cursorContext) {
|
|
4384
|
+
if (!cursorContext) {
|
|
4385
|
+
return null;
|
|
4386
|
+
}
|
|
4387
|
+
switch (cursorContext) {
|
|
4388
|
+
case CursorContext.NONE:
|
|
4389
|
+
return null;
|
|
4390
|
+
case CursorContext.IN_PARENS:
|
|
4391
|
+
return KeyConfigs.JUMP_OUT_PARENTHESES;
|
|
4392
|
+
case CursorContext.IN_SUPER_SCRIPT:
|
|
4393
|
+
return KeyConfigs.JUMP_OUT_EXPONENT;
|
|
4394
|
+
case CursorContext.IN_SUB_SCRIPT:
|
|
4395
|
+
return KeyConfigs.JUMP_OUT_BASE;
|
|
4396
|
+
case CursorContext.IN_NUMERATOR:
|
|
4397
|
+
return KeyConfigs.JUMP_OUT_NUMERATOR;
|
|
4398
|
+
case CursorContext.IN_DENOMINATOR:
|
|
4399
|
+
return KeyConfigs.JUMP_OUT_DENOMINATOR;
|
|
4400
|
+
case CursorContext.BEFORE_FRACTION:
|
|
4401
|
+
return KeyConfigs.JUMP_INTO_NUMERATOR;
|
|
4402
|
+
}
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
function FractionsPage(props) {
|
|
4406
|
+
const {
|
|
4407
|
+
onClickKey,
|
|
4408
|
+
cursorContext
|
|
4409
|
+
} = props;
|
|
4410
|
+
const cursorKeyConfig = getCursorContextConfig(cursorContext);
|
|
4411
|
+
// These keys are arranged sequentially so that tabbing follows numerical order. This
|
|
4412
|
+
// allows us to visually mimic a keypad without affecting a11y. The visual order of the
|
|
4413
|
+
// keys in the keypad is determined by their coordinates, not their order in the DOM.
|
|
4414
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4415
|
+
keyConfig: KeyConfigs.NUM_1,
|
|
4416
|
+
onClickKey: onClickKey,
|
|
4417
|
+
coord: [0, 2]
|
|
4418
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4419
|
+
keyConfig: KeyConfigs.NUM_2,
|
|
4420
|
+
onClickKey: onClickKey,
|
|
4421
|
+
coord: [1, 2]
|
|
4422
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4423
|
+
keyConfig: KeyConfigs.NUM_3,
|
|
4424
|
+
onClickKey: onClickKey,
|
|
4425
|
+
coord: [2, 2]
|
|
4426
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4427
|
+
keyConfig: KeyConfigs.NUM_4,
|
|
4428
|
+
onClickKey: onClickKey,
|
|
4429
|
+
coord: [0, 1]
|
|
4430
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4431
|
+
keyConfig: KeyConfigs.NUM_5,
|
|
4432
|
+
onClickKey: onClickKey,
|
|
4433
|
+
coord: [1, 1]
|
|
4434
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4435
|
+
keyConfig: KeyConfigs.NUM_6,
|
|
4436
|
+
onClickKey: onClickKey,
|
|
4437
|
+
coord: [2, 1]
|
|
4438
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4439
|
+
keyConfig: KeyConfigs.NUM_7,
|
|
4440
|
+
onClickKey: onClickKey,
|
|
4441
|
+
coord: [0, 0]
|
|
4442
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4443
|
+
keyConfig: KeyConfigs.NUM_8,
|
|
4444
|
+
onClickKey: onClickKey,
|
|
4445
|
+
coord: [1, 0]
|
|
4446
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4447
|
+
keyConfig: KeyConfigs.NUM_9,
|
|
4448
|
+
onClickKey: onClickKey,
|
|
4449
|
+
coord: [2, 0]
|
|
4450
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4451
|
+
keyConfig: KeyConfigs.NUM_0,
|
|
4452
|
+
onClickKey: onClickKey,
|
|
4453
|
+
coord: [0, 3]
|
|
4454
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4455
|
+
keyConfig: KeyConfigs.DECIMAL,
|
|
4456
|
+
onClickKey: onClickKey,
|
|
4457
|
+
coord: [1, 3]
|
|
4458
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4459
|
+
keyConfig: KeyConfigs.NEGATIVE,
|
|
4460
|
+
onClickKey: onClickKey,
|
|
4461
|
+
coord: [2, 3]
|
|
4462
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4463
|
+
keyConfig: KeyConfigs.PERCENT,
|
|
4464
|
+
onClickKey: onClickKey,
|
|
4465
|
+
coord: [3, 0],
|
|
4466
|
+
secondary: true
|
|
4467
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4468
|
+
keyConfig: KeyConfigs.PI,
|
|
4469
|
+
onClickKey: onClickKey,
|
|
4470
|
+
coord: [3, 1],
|
|
4471
|
+
secondary: true
|
|
4472
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4473
|
+
keyConfig: KeyConfigs.FRAC_INCLUSIVE,
|
|
4474
|
+
onClickKey: onClickKey,
|
|
4475
|
+
coord: [3, 2],
|
|
4476
|
+
secondary: true
|
|
4477
|
+
}), cursorKeyConfig && /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4478
|
+
keyConfig: cursorKeyConfig,
|
|
4479
|
+
onClickKey: onClickKey,
|
|
4480
|
+
coord: [3, 3],
|
|
4481
|
+
secondary: true
|
|
4482
|
+
}), /*#__PURE__*/React.createElement(KeypadButton$2, {
|
|
4483
|
+
keyConfig: KeyConfigs.BACKSPACE,
|
|
4484
|
+
onClickKey: onClickKey,
|
|
4485
|
+
coord: [4, 3],
|
|
4486
|
+
action: true
|
|
4487
|
+
}));
|
|
4488
|
+
}
|
|
4489
|
+
|
|
3889
4490
|
function GeometryPage(props) {
|
|
3890
4491
|
const {
|
|
3891
4492
|
onClickKey
|
|
@@ -4031,27 +4632,6 @@ function OperatorsPage(props) {
|
|
|
4031
4632
|
})));
|
|
4032
4633
|
}
|
|
4033
4634
|
|
|
4034
|
-
function getCursorContextConfig(cursorContext) {
|
|
4035
|
-
if (!cursorContext) {
|
|
4036
|
-
return null;
|
|
4037
|
-
}
|
|
4038
|
-
switch (cursorContext) {
|
|
4039
|
-
case CursorContext.NONE:
|
|
4040
|
-
return null;
|
|
4041
|
-
case CursorContext.IN_PARENS:
|
|
4042
|
-
return KeyConfigs.JUMP_OUT_PARENTHESES;
|
|
4043
|
-
case CursorContext.IN_SUPER_SCRIPT:
|
|
4044
|
-
return KeyConfigs.JUMP_OUT_EXPONENT;
|
|
4045
|
-
case CursorContext.IN_SUB_SCRIPT:
|
|
4046
|
-
return KeyConfigs.JUMP_OUT_BASE;
|
|
4047
|
-
case CursorContext.IN_NUMERATOR:
|
|
4048
|
-
return KeyConfigs.JUMP_OUT_NUMERATOR;
|
|
4049
|
-
case CursorContext.IN_DENOMINATOR:
|
|
4050
|
-
return KeyConfigs.JUMP_OUT_DENOMINATOR;
|
|
4051
|
-
case CursorContext.BEFORE_FRACTION:
|
|
4052
|
-
return KeyConfigs.JUMP_INTO_NUMERATOR;
|
|
4053
|
-
}
|
|
4054
|
-
}
|
|
4055
4635
|
function SharedKeys(props) {
|
|
4056
4636
|
const {
|
|
4057
4637
|
onClickKey,
|
|
@@ -4115,29 +4695,38 @@ function SharedKeys(props) {
|
|
|
4115
4695
|
const defaultProps = {
|
|
4116
4696
|
extraKeys: []
|
|
4117
4697
|
};
|
|
4118
|
-
function
|
|
4698
|
+
function getAvailableTabs(props) {
|
|
4119
4699
|
var _props$extraKeys;
|
|
4120
|
-
|
|
4700
|
+
// We don't want to show any available tabs on the fractions keypad
|
|
4701
|
+
if (props.fractionsOnly) {
|
|
4702
|
+
return [];
|
|
4703
|
+
}
|
|
4704
|
+
const tabs = ["Numbers"];
|
|
4121
4705
|
if (
|
|
4122
4706
|
// OperatorsButtonSets
|
|
4123
4707
|
props.preAlgebra || props.logarithms || props.basicRelations || props.advancedRelations) {
|
|
4124
|
-
|
|
4708
|
+
tabs.push("Operators");
|
|
4125
4709
|
}
|
|
4126
4710
|
if (props.trigonometry) {
|
|
4127
|
-
|
|
4711
|
+
tabs.push("Geometry");
|
|
4128
4712
|
}
|
|
4129
4713
|
if ((_props$extraKeys = props.extraKeys) != null && _props$extraKeys.length) {
|
|
4130
|
-
|
|
4714
|
+
tabs.push("Extras");
|
|
4131
4715
|
}
|
|
4132
|
-
return
|
|
4716
|
+
return tabs;
|
|
4133
4717
|
}
|
|
4134
4718
|
|
|
4135
4719
|
// The main (v2) Keypad. Use this component to present an accessible, onscreen
|
|
4136
4720
|
// keypad to learners for entering math expressions.
|
|
4137
4721
|
function Keypad$2(props) {
|
|
4138
|
-
|
|
4722
|
+
// If we're using the Fractions keyapd, we want to default select that page
|
|
4723
|
+
// Otherwise, we want to default to the Numbers page
|
|
4724
|
+
const defaultSelectedPage = props.fractionsOnly ? "Fractions" : "Numbers";
|
|
4725
|
+
const [selectedPage, setSelectedPage] = React.useState(defaultSelectedPage);
|
|
4139
4726
|
const [isMounted, setIsMounted] = React.useState(false);
|
|
4140
|
-
|
|
4727
|
+
|
|
4728
|
+
// We don't want any tabs available on mobile fractions keypad
|
|
4729
|
+
const availableTabs = getAvailableTabs(props);
|
|
4141
4730
|
const {
|
|
4142
4731
|
onClickKey,
|
|
4143
4732
|
cursorContext,
|
|
@@ -4149,8 +4738,17 @@ function Keypad$2(props) {
|
|
|
4149
4738
|
basicRelations,
|
|
4150
4739
|
advancedRelations,
|
|
4151
4740
|
showDismiss,
|
|
4741
|
+
fractionsOnly,
|
|
4152
4742
|
sendEvent
|
|
4153
4743
|
} = props;
|
|
4744
|
+
|
|
4745
|
+
// Use a different grid for our fraction keypad
|
|
4746
|
+
const gridStyle = fractionsOnly ? styles$d.fractionsGrid : styles$d.expressionGrid;
|
|
4747
|
+
|
|
4748
|
+
// This useeffect is only used to ensure that we can test the keypad in storybook
|
|
4749
|
+
useEffect(() => {
|
|
4750
|
+
setSelectedPage(defaultSelectedPage);
|
|
4751
|
+
}, [fractionsOnly, defaultSelectedPage]);
|
|
4154
4752
|
useEffect(() => {
|
|
4155
4753
|
if (!isMounted) {
|
|
4156
4754
|
sendEvent == null ? void 0 : sendEvent({
|
|
@@ -4174,7 +4772,7 @@ function Keypad$2(props) {
|
|
|
4174
4772
|
};
|
|
4175
4773
|
}, [sendEvent, isMounted]);
|
|
4176
4774
|
return /*#__PURE__*/React.createElement(View$1, null, /*#__PURE__*/React.createElement(Tabbar, {
|
|
4177
|
-
items:
|
|
4775
|
+
items: availableTabs,
|
|
4178
4776
|
selectedItem: selectedPage,
|
|
4179
4777
|
onSelectItem: tabbarItem => {
|
|
4180
4778
|
setSelectedPage(tabbarItem);
|
|
@@ -4182,11 +4780,14 @@ function Keypad$2(props) {
|
|
|
4182
4780
|
style: styles$d.tabbar,
|
|
4183
4781
|
onClickClose: showDismiss ? () => onClickKey("DISMISS") : undefined
|
|
4184
4782
|
}), /*#__PURE__*/React.createElement(View$1, {
|
|
4185
|
-
style: styles$d.
|
|
4783
|
+
style: [styles$d.keypadGrid, gridStyle],
|
|
4186
4784
|
role: "grid",
|
|
4187
4785
|
tabIndex: 0,
|
|
4188
4786
|
"aria-label": "Keypad"
|
|
4189
|
-
}, selectedPage === "
|
|
4787
|
+
}, selectedPage === "Fractions" && /*#__PURE__*/React.createElement(FractionsPage, {
|
|
4788
|
+
onClickKey: onClickKey,
|
|
4789
|
+
cursorContext: cursorContext
|
|
4790
|
+
}), selectedPage === "Numbers" && /*#__PURE__*/React.createElement(NumbersPage, {
|
|
4190
4791
|
onClickKey: onClickKey
|
|
4191
4792
|
}), selectedPage === "Extras" && /*#__PURE__*/React.createElement(ExtrasPage, {
|
|
4192
4793
|
onClickKey: onClickKey,
|
|
@@ -4199,7 +4800,7 @@ function Keypad$2(props) {
|
|
|
4199
4800
|
advancedRelations: advancedRelations
|
|
4200
4801
|
}), selectedPage === "Geometry" && /*#__PURE__*/React.createElement(GeometryPage, {
|
|
4201
4802
|
onClickKey: onClickKey
|
|
4202
|
-
}), /*#__PURE__*/React.createElement(SharedKeys, {
|
|
4803
|
+
}), !fractionsOnly && /*#__PURE__*/React.createElement(SharedKeys, {
|
|
4203
4804
|
onClickKey: onClickKey,
|
|
4204
4805
|
cursorContext: cursorContext,
|
|
4205
4806
|
multiplicationDot: multiplicationDot,
|
|
@@ -4212,11 +4813,16 @@ const styles$d = StyleSheet.create({
|
|
|
4212
4813
|
tabbar: {
|
|
4213
4814
|
background: Color.white
|
|
4214
4815
|
},
|
|
4215
|
-
|
|
4816
|
+
keypadGrid: {
|
|
4216
4817
|
display: "grid",
|
|
4217
|
-
gridTemplateColumns: "repeat(6, 1fr)",
|
|
4218
4818
|
gridTemplateRows: "repeat(4, 1fr)",
|
|
4219
4819
|
backgroundColor: "#DBDCDD"
|
|
4820
|
+
},
|
|
4821
|
+
expressionGrid: {
|
|
4822
|
+
gridTemplateColumns: "repeat(6, 1fr)"
|
|
4823
|
+
},
|
|
4824
|
+
fractionsGrid: {
|
|
4825
|
+
gridTemplateColumns: "repeat(5, 1fr)"
|
|
4220
4826
|
}
|
|
4221
4827
|
});
|
|
4222
4828
|
|
|
@@ -4335,6 +4941,7 @@ class MobileKeypad extends React.Component {
|
|
|
4335
4941
|
extraKeys: keypadConfig == null ? void 0 : keypadConfig.extraKeys,
|
|
4336
4942
|
onClickKey: key => this._handleClickKey(key),
|
|
4337
4943
|
cursorContext: cursor == null ? void 0 : cursor.context,
|
|
4944
|
+
fractionsOnly: !isExpression,
|
|
4338
4945
|
multiplicationDot: isExpression,
|
|
4339
4946
|
divisionKey: isExpression,
|
|
4340
4947
|
trigonometry: isExpression,
|
|
@@ -8821,7 +9428,7 @@ function KeypadSwitch(props) {
|
|
|
8821
9428
|
* wraps each (Server)ItemRenderer render site and the Keypad rendered in the
|
|
8822
9429
|
* ExerciseFooter.
|
|
8823
9430
|
*/
|
|
8824
|
-
// @ts-expect-error
|
|
9431
|
+
// @ts-expect-error - TS2322 - Type 'Context<{ setKeypadElement: (keypadElement: HTMLElement | null | undefined) => void; keypadElement: null; setRenderer: (renderer: RendererInterface | null | undefined) => void; renderer: null; setScrollableElement: (scrollableElement: HTMLElement | ... 1 more ... | undefined) => void; scrollableElement: null; }>' is not assignable to type 'Context<KeypadContext>'.
|
|
8825
9432
|
const context = /*#__PURE__*/React.createContext({
|
|
8826
9433
|
setKeypadElement: keypadElement => {},
|
|
8827
9434
|
keypadElement: null,
|
|
@@ -8836,6 +9443,7 @@ const context = /*#__PURE__*/React.createContext({
|
|
|
8836
9443
|
*/
|
|
8837
9444
|
|
|
8838
9445
|
// NOTE(jared): This is no longer guaranteed to be React element
|
|
9446
|
+
// @deprecated Use `KeypadAPI` Typescript interface instead.
|
|
8839
9447
|
const keypadElementPropType = PropTypes.shape({
|
|
8840
9448
|
activate: PropTypes.func.isRequired,
|
|
8841
9449
|
dismiss: PropTypes.func.isRequired,
|