vue-element-ui-x 0.1.5 → 0.1.7-beta
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/lib/attachments.js +3082 -0
- package/lib/bubble-list.js +13840 -0
- package/lib/bubble.js +13125 -0
- package/lib/components/Attachments/index.js +6 -6
- package/lib/components/Bubble/index.js +188 -192
- package/lib/components/BubbleList/index.js +189 -194
- package/lib/components/Conversations/index.js +6 -6
- package/lib/components/FilesCard/index.js +5 -5
- package/lib/components/Prompts/index.js +21 -21
- package/lib/components/Sender/index.js +4 -4
- package/lib/components/Think/index.js +1 -1
- package/lib/components/Thinking/index.js +1 -1
- package/lib/components/ThoughtChain/index.js +186 -191
- package/lib/components/Typewriter/index.js +182 -186
- package/lib/components/Welcome/index.js +1 -1
- package/lib/conversations.js +18825 -0
- package/lib/files-card.js +2471 -0
- package/lib/index.common.js +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +1707 -1691
- package/lib/index.umd.js +1 -1
- package/lib/mixins/index.js +2 -2
- package/lib/mixins.js +1016 -0
- package/lib/prompts.js +832 -0
- package/lib/sender.js +1911 -0
- package/lib/think.js +799 -0
- package/lib/thinking.js +809 -0
- package/lib/thought-chain.js +30391 -0
- package/lib/typewriter.js +12788 -0
- package/lib/welcome.js +755 -0
- package/package.json +3 -4
- package/src/components/Attachments/index.js +8 -8
- package/src/components/Bubble/index.js +6 -6
- package/src/components/Bubble/src/main.vue +299 -299
- package/src/components/BubbleList/index.js +8 -8
- package/src/components/BubbleList/src/loading.vue +75 -75
- package/src/components/BubbleList/src/main.vue +466 -466
- package/src/components/Conversations/index.js +8 -8
- package/src/components/Conversations/src/main.vue +635 -635
- package/src/components/FilesCard/index.js +8 -8
- package/src/components/FilesCard/src/fileSvg/audio.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/code.vue +35 -35
- package/src/components/FilesCard/src/fileSvg/database.vue +94 -94
- package/src/components/FilesCard/src/fileSvg/excel.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/file.vue +40 -40
- package/src/components/FilesCard/src/fileSvg/image.vue +40 -40
- package/src/components/FilesCard/src/fileSvg/index.js +46 -46
- package/src/components/FilesCard/src/fileSvg/link.vue +54 -54
- package/src/components/FilesCard/src/fileSvg/mark.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/pdf.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/ppt.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/three.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/txt.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/unknown.vue +54 -54
- package/src/components/FilesCard/src/fileSvg/video.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/word.vue +38 -38
- package/src/components/FilesCard/src/fileSvg/zip.vue +38 -38
- package/src/components/FilesCard/src/options.js +18 -18
- package/src/components/Prompts/index.js +8 -8
- package/src/components/Prompts/src/main.vue +248 -248
- package/src/components/Sender/index.js +8 -8
- package/src/components/Sender/src/components/ClearButton.vue +28 -28
- package/src/components/Sender/src/components/Loading.vue +53 -53
- package/src/components/Sender/src/components/LoadingButton.vue +39 -39
- package/src/components/Sender/src/components/SendButton.vue +26 -26
- package/src/components/Sender/src/components/SpeechButton.vue +24 -24
- package/src/components/Sender/src/components/SpeechLoading.vue +87 -87
- package/src/components/Sender/src/components/SpeechLoadingButton.vue +43 -43
- package/src/components/Think/index.js +8 -8
- package/src/components/Think/src/main.vue +190 -190
- package/src/components/Thinking/index.js +8 -8
- package/src/components/Thinking/src/main.vue +195 -195
- package/src/components/ThoughtChain/index.js +8 -8
- package/src/components/ThoughtChain/src/main.vue +293 -293
- package/src/components/Typewriter/index.js +8 -8
- package/src/components/Welcome/index.js +8 -8
- package/src/components/Welcome/src/main.vue +151 -151
- package/src/index.js +23 -3
- package/src/styles/Attachments.scss +236 -236
- package/src/styles/Bubble.scss +157 -157
- package/src/styles/BubbleList.scss +148 -148
- package/src/styles/Conversations.scss +260 -260
- package/src/styles/FilesCard.scss +221 -221
- package/src/styles/Prompts.scss +195 -195
- package/src/styles/Sender.scss +199 -199
- package/src/styles/Think.scss +134 -134
- package/src/styles/Thinking.scss +112 -112
- package/src/styles/ThoughtChain.scss +113 -113
- package/src/styles/Typewriter.scss +66 -66
- package/src/styles/button.scss +302 -0
- package/src/styles/var.scss +1052 -0
- package/src/theme/var.scss +72 -72
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 28);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ([
|
|
@@ -273,7 +273,7 @@ var UNESCAPE_ALL_RE = new RegExp(UNESCAPE_MD_RE.source + '|' + ENTITY_RE.source,
|
|
|
273
273
|
|
|
274
274
|
var DIGITAL_ENTITY_TEST_RE = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i;
|
|
275
275
|
|
|
276
|
-
var entities = __webpack_require__(
|
|
276
|
+
var entities = __webpack_require__(13);
|
|
277
277
|
|
|
278
278
|
function replaceEntityPattern(match, name) {
|
|
279
279
|
var code = 0;
|
|
@@ -378,7 +378,7 @@ function isWhiteSpace(code) {
|
|
|
378
378
|
////////////////////////////////////////////////////////////////////////////////
|
|
379
379
|
|
|
380
380
|
/*eslint-disable max-len*/
|
|
381
|
-
var UNICODE_PUNCT_RE = __webpack_require__(
|
|
381
|
+
var UNICODE_PUNCT_RE = __webpack_require__(7);
|
|
382
382
|
|
|
383
383
|
// Currently without astral characters support.
|
|
384
384
|
function isPunctChar(ch) {
|
|
@@ -492,8 +492,8 @@ function normalizeReference(str) {
|
|
|
492
492
|
// bundled size (e.g. a browser build).
|
|
493
493
|
//
|
|
494
494
|
exports.lib = {};
|
|
495
|
-
exports.lib.mdurl = __webpack_require__(
|
|
496
|
-
exports.lib.ucmicro = __webpack_require__(
|
|
495
|
+
exports.lib.mdurl = __webpack_require__(14);
|
|
496
|
+
exports.lib.ucmicro = __webpack_require__(35);
|
|
497
497
|
|
|
498
498
|
exports.assign = assign;
|
|
499
499
|
exports.isString = isString;
|
|
@@ -2811,17 +2811,18 @@ Prism.languages.js = Prism.languages.javascript;
|
|
|
2811
2811
|
|
|
2812
2812
|
}());
|
|
2813
2813
|
|
|
2814
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(
|
|
2814
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(11)))
|
|
2815
2815
|
|
|
2816
2816
|
/***/ }),
|
|
2817
2817
|
/* 5 */,
|
|
2818
|
-
/* 6
|
|
2818
|
+
/* 6 */,
|
|
2819
|
+
/* 7 */
|
|
2819
2820
|
/***/ (function(module, exports) {
|
|
2820
2821
|
|
|
2821
2822
|
module.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/
|
|
2822
2823
|
|
|
2823
2824
|
/***/ }),
|
|
2824
|
-
/*
|
|
2825
|
+
/* 8 */
|
|
2825
2826
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2826
2827
|
|
|
2827
2828
|
"use strict";
|
|
@@ -3180,7 +3181,7 @@ module.exports = Ruler;
|
|
|
3180
3181
|
|
|
3181
3182
|
|
|
3182
3183
|
/***/ }),
|
|
3183
|
-
/*
|
|
3184
|
+
/* 9 */
|
|
3184
3185
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3185
3186
|
|
|
3186
3187
|
"use strict";
|
|
@@ -3388,26 +3389,26 @@ module.exports = Token;
|
|
|
3388
3389
|
|
|
3389
3390
|
|
|
3390
3391
|
/***/ }),
|
|
3391
|
-
/*
|
|
3392
|
+
/* 10 */
|
|
3392
3393
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3393
3394
|
|
|
3394
3395
|
"use strict";
|
|
3395
3396
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
3396
3397
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
3397
|
-
/* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3398
|
+
/* harmony import */ var _node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23);
|
|
3398
3399
|
// Imports
|
|
3399
3400
|
|
|
3400
3401
|
|
|
3401
3402
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
|
|
3402
3403
|
___CSS_LOADER_EXPORT___.i(_node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
|
|
3403
3404
|
// Module
|
|
3404
|
-
___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-0a15f16e]{overflow-x:auto}.markdown-content[data-v-0a15f16e] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after{content
|
|
3405
|
+
___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-0a15f16e]{overflow-x:auto}.markdown-content[data-v-0a15f16e] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-0a15f16e] ul:last-child li:last-child:after{content:\"\";width:var(--cursor-fog-width);height:1.5em;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}.typer-content.typing-cursor[data-v-0a15f16e]::after{content:var(--cursor-char);margin-left:2px;display:inline-block}.typer-content.typing-cursor-foggy[data-v-0a15f16e]{position:relative;overflow:hidden}.typer-content.typing-cursor-foggy[data-v-0a15f16e]:last-child:after{content:\"\";width:var(--cursor-fog-width);height:100%;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}", ""]);
|
|
3405
3406
|
// Exports
|
|
3406
3407
|
/* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
|
|
3407
3408
|
|
|
3408
3409
|
|
|
3409
3410
|
/***/ }),
|
|
3410
|
-
/*
|
|
3411
|
+
/* 11 */
|
|
3411
3412
|
/***/ (function(module, exports) {
|
|
3412
3413
|
|
|
3413
3414
|
var g;
|
|
@@ -3433,7 +3434,7 @@ module.exports = g;
|
|
|
3433
3434
|
|
|
3434
3435
|
|
|
3435
3436
|
/***/ }),
|
|
3436
|
-
/*
|
|
3437
|
+
/* 12 */
|
|
3437
3438
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3438
3439
|
|
|
3439
3440
|
"use strict";
|
|
@@ -3472,11 +3473,11 @@ render._withStripped = true;
|
|
|
3472
3473
|
// CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=template&id=0a15f16e&scoped=true
|
|
3473
3474
|
|
|
3474
3475
|
// EXTERNAL MODULE: ./node_modules/dompurify/dist/purify.js
|
|
3475
|
-
var purify = __webpack_require__(
|
|
3476
|
+
var purify = __webpack_require__(21);
|
|
3476
3477
|
var purify_default = /*#__PURE__*/__webpack_require__.n(purify);
|
|
3477
3478
|
|
|
3478
3479
|
// EXTERNAL MODULE: ./node_modules/markdown-it/index.js
|
|
3479
|
-
var markdown_it = __webpack_require__(
|
|
3480
|
+
var markdown_it = __webpack_require__(22);
|
|
3480
3481
|
var markdown_it_default = /*#__PURE__*/__webpack_require__.n(markdown_it);
|
|
3481
3482
|
|
|
3482
3483
|
// EXTERNAL MODULE: ./node_modules/prismjs/prism.js
|
|
@@ -3669,7 +3670,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
|
|
|
3669
3670
|
var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
|
|
3670
3671
|
|
|
3671
3672
|
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=0a15f16e&prod&lang=scss&scoped=true
|
|
3672
|
-
var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(
|
|
3673
|
+
var mainvue_type_style_index_0_id_0a15f16e_prod_lang_scss_scoped_true = __webpack_require__(10);
|
|
3673
3674
|
|
|
3674
3675
|
// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=0a15f16e&prod&lang=scss&scoped=true
|
|
3675
3676
|
|
|
@@ -3721,7 +3722,7 @@ main.install = function (Vue) {
|
|
|
3721
3722
|
/* harmony default export */ var Typewriter = __webpack_exports__["default"] = (main);
|
|
3722
3723
|
|
|
3723
3724
|
/***/ }),
|
|
3724
|
-
/*
|
|
3725
|
+
/* 13 */
|
|
3725
3726
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3726
3727
|
|
|
3727
3728
|
"use strict";
|
|
@@ -3730,43 +3731,43 @@ main.install = function (Vue) {
|
|
|
3730
3731
|
|
|
3731
3732
|
|
|
3732
3733
|
/*eslint quotes:0*/
|
|
3733
|
-
module.exports = __webpack_require__(
|
|
3734
|
+
module.exports = __webpack_require__(30);
|
|
3734
3735
|
|
|
3735
3736
|
|
|
3736
3737
|
/***/ }),
|
|
3737
|
-
/*
|
|
3738
|
+
/* 14 */
|
|
3738
3739
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3739
3740
|
|
|
3740
3741
|
"use strict";
|
|
3741
3742
|
|
|
3742
3743
|
|
|
3743
3744
|
|
|
3744
|
-
module.exports.encode = __webpack_require__(
|
|
3745
|
-
module.exports.decode = __webpack_require__(
|
|
3746
|
-
module.exports.format = __webpack_require__(
|
|
3747
|
-
module.exports.parse = __webpack_require__(
|
|
3745
|
+
module.exports.encode = __webpack_require__(31);
|
|
3746
|
+
module.exports.decode = __webpack_require__(32);
|
|
3747
|
+
module.exports.format = __webpack_require__(33);
|
|
3748
|
+
module.exports.parse = __webpack_require__(34);
|
|
3748
3749
|
|
|
3749
3750
|
|
|
3750
3751
|
/***/ }),
|
|
3751
|
-
/*
|
|
3752
|
+
/* 15 */
|
|
3752
3753
|
/***/ (function(module, exports) {
|
|
3753
3754
|
|
|
3754
3755
|
module.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/
|
|
3755
3756
|
|
|
3756
3757
|
/***/ }),
|
|
3757
|
-
/*
|
|
3758
|
+
/* 16 */
|
|
3758
3759
|
/***/ (function(module, exports) {
|
|
3759
3760
|
|
|
3760
3761
|
module.exports=/[\0-\x1F\x7F-\x9F]/
|
|
3761
3762
|
|
|
3762
3763
|
/***/ }),
|
|
3763
|
-
/*
|
|
3764
|
+
/* 17 */
|
|
3764
3765
|
/***/ (function(module, exports) {
|
|
3765
3766
|
|
|
3766
3767
|
module.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/
|
|
3767
3768
|
|
|
3768
3769
|
/***/ }),
|
|
3769
|
-
/*
|
|
3770
|
+
/* 18 */
|
|
3770
3771
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3771
3772
|
|
|
3772
3773
|
"use strict";
|
|
@@ -3801,7 +3802,7 @@ module.exports.HTML_OPEN_CLOSE_TAG_RE = HTML_OPEN_CLOSE_TAG_RE;
|
|
|
3801
3802
|
|
|
3802
3803
|
|
|
3803
3804
|
/***/ }),
|
|
3804
|
-
/*
|
|
3805
|
+
/* 19 */
|
|
3805
3806
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3806
3807
|
|
|
3807
3808
|
"use strict";
|
|
@@ -3938,7 +3939,7 @@ module.exports.postProcess = function strikethrough(state) {
|
|
|
3938
3939
|
|
|
3939
3940
|
|
|
3940
3941
|
/***/ }),
|
|
3941
|
-
/*
|
|
3942
|
+
/* 20 */
|
|
3942
3943
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3943
3944
|
|
|
3944
3945
|
"use strict";
|
|
@@ -4075,10 +4076,10 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
4075
4076
|
|
|
4076
4077
|
|
|
4077
4078
|
/***/ }),
|
|
4078
|
-
/*
|
|
4079
|
+
/* 21 */
|
|
4079
4080
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4080
4081
|
|
|
4081
|
-
/*! @license DOMPurify 3.2.
|
|
4082
|
+
/*! @license DOMPurify 3.2.5 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.5/LICENSE */
|
|
4082
4083
|
|
|
4083
4084
|
(function (global, factory) {
|
|
4084
4085
|
true ? module.exports = factory() :
|
|
@@ -4287,7 +4288,7 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
4287
4288
|
const TMPLIT_EXPR = seal(/\$\{[\w\W]*/gm); // eslint-disable-line unicorn/better-regex
|
|
4288
4289
|
const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/); // eslint-disable-line no-useless-escape
|
|
4289
4290
|
const ARIA_ATTR = seal(/^aria-[\-\w]+$/); // eslint-disable-line no-useless-escape
|
|
4290
|
-
const IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp
|
|
4291
|
+
const IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i // eslint-disable-line no-useless-escape
|
|
4291
4292
|
);
|
|
4292
4293
|
const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
|
|
4293
4294
|
const ATTR_WHITESPACE = seal(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g // eslint-disable-line no-control-regex
|
|
@@ -4384,7 +4385,7 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
4384
4385
|
function createDOMPurify() {
|
|
4385
4386
|
let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
|
|
4386
4387
|
const DOMPurify = root => createDOMPurify(root);
|
|
4387
|
-
DOMPurify.version = '3.2.
|
|
4388
|
+
DOMPurify.version = '3.2.5';
|
|
4388
4389
|
DOMPurify.removed = [];
|
|
4389
4390
|
if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
|
|
4390
4391
|
// Not running in a browser, provide a factory function
|
|
@@ -4623,8 +4624,8 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
4623
4624
|
URI_SAFE_ATTRIBUTES = objectHasOwnProperty(cfg, 'ADD_URI_SAFE_ATTR') ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR, transformCaseFunc) : DEFAULT_URI_SAFE_ATTRIBUTES;
|
|
4624
4625
|
DATA_URI_TAGS = objectHasOwnProperty(cfg, 'ADD_DATA_URI_TAGS') ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS, transformCaseFunc) : DEFAULT_DATA_URI_TAGS;
|
|
4625
4626
|
FORBID_CONTENTS = objectHasOwnProperty(cfg, 'FORBID_CONTENTS') ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
|
|
4626
|
-
FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) :
|
|
4627
|
-
FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) :
|
|
4627
|
+
FORBID_TAGS = objectHasOwnProperty(cfg, 'FORBID_TAGS') ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
|
|
4628
|
+
FORBID_ATTR = objectHasOwnProperty(cfg, 'FORBID_ATTR') ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};
|
|
4628
4629
|
USE_PROFILES = objectHasOwnProperty(cfg, 'USE_PROFILES') ? cfg.USE_PROFILES : false;
|
|
4629
4630
|
ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true
|
|
4630
4631
|
ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true
|
|
@@ -4989,7 +4990,7 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
4989
4990
|
allowedTags: ALLOWED_TAGS
|
|
4990
4991
|
});
|
|
4991
4992
|
/* Detect mXSS attempts abusing namespace confusion */
|
|
4992
|
-
if (
|
|
4993
|
+
if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
|
|
4993
4994
|
_forceRemove(currentNode);
|
|
4994
4995
|
return true;
|
|
4995
4996
|
}
|
|
@@ -5141,8 +5142,7 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
5141
5142
|
value: attrValue
|
|
5142
5143
|
} = attr;
|
|
5143
5144
|
const lcName = transformCaseFunc(name);
|
|
5144
|
-
|
|
5145
|
-
let value = name === 'value' ? initValue : stringTrim(initValue);
|
|
5145
|
+
let value = name === 'value' ? attrValue : stringTrim(attrValue);
|
|
5146
5146
|
/* Execute a hook if present */
|
|
5147
5147
|
hookEvent.attrName = lcName;
|
|
5148
5148
|
hookEvent.attrValue = value;
|
|
@@ -5168,9 +5168,10 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
5168
5168
|
if (hookEvent.forceKeepAttr) {
|
|
5169
5169
|
continue;
|
|
5170
5170
|
}
|
|
5171
|
+
/* Remove attribute */
|
|
5172
|
+
_removeAttribute(name, currentNode);
|
|
5171
5173
|
/* Did the hooks approve of the attribute? */
|
|
5172
5174
|
if (!hookEvent.keepAttr) {
|
|
5173
|
-
_removeAttribute(name, currentNode);
|
|
5174
5175
|
continue;
|
|
5175
5176
|
}
|
|
5176
5177
|
/* Work around a security issue in jQuery 3.0 */
|
|
@@ -5187,7 +5188,6 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
5187
5188
|
/* Is `value` valid for this attribute? */
|
|
5188
5189
|
const lcTag = transformCaseFunc(currentNode.nodeName);
|
|
5189
5190
|
if (!_isValidAttribute(lcTag, lcName, value)) {
|
|
5190
|
-
_removeAttribute(name, currentNode);
|
|
5191
5191
|
continue;
|
|
5192
5192
|
}
|
|
5193
5193
|
/* Handle attributes that require Trusted Types */
|
|
@@ -5208,23 +5208,19 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
5208
5208
|
}
|
|
5209
5209
|
}
|
|
5210
5210
|
/* Handle invalid data-* attribute set by try-catching it */
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
currentNode.setAttribute(name, value);
|
|
5218
|
-
}
|
|
5219
|
-
if (_isClobbered(currentNode)) {
|
|
5220
|
-
_forceRemove(currentNode);
|
|
5221
|
-
} else {
|
|
5222
|
-
arrayPop(DOMPurify.removed);
|
|
5223
|
-
}
|
|
5224
|
-
} catch (_) {
|
|
5225
|
-
_removeAttribute(name, currentNode);
|
|
5211
|
+
try {
|
|
5212
|
+
if (namespaceURI) {
|
|
5213
|
+
currentNode.setAttributeNS(namespaceURI, name, value);
|
|
5214
|
+
} else {
|
|
5215
|
+
/* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
|
|
5216
|
+
currentNode.setAttribute(name, value);
|
|
5226
5217
|
}
|
|
5227
|
-
|
|
5218
|
+
if (_isClobbered(currentNode)) {
|
|
5219
|
+
_forceRemove(currentNode);
|
|
5220
|
+
} else {
|
|
5221
|
+
arrayPop(DOMPurify.removed);
|
|
5222
|
+
}
|
|
5223
|
+
} catch (_) {}
|
|
5228
5224
|
}
|
|
5229
5225
|
/* Execute a hook if present */
|
|
5230
5226
|
_executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
|
|
@@ -5434,18 +5430,18 @@ module.exports.postProcess = function emphasis(state) {
|
|
|
5434
5430
|
|
|
5435
5431
|
|
|
5436
5432
|
/***/ }),
|
|
5437
|
-
/*
|
|
5433
|
+
/* 22 */
|
|
5438
5434
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5439
5435
|
|
|
5440
5436
|
"use strict";
|
|
5441
5437
|
|
|
5442
5438
|
|
|
5443
5439
|
|
|
5444
|
-
module.exports = __webpack_require__(
|
|
5440
|
+
module.exports = __webpack_require__(29);
|
|
5445
5441
|
|
|
5446
5442
|
|
|
5447
5443
|
/***/ }),
|
|
5448
|
-
/*
|
|
5444
|
+
/* 23 */
|
|
5449
5445
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5450
5446
|
|
|
5451
5447
|
"use strict";
|
|
@@ -5461,7 +5457,7 @@ ___CSS_LOADER_EXPORT___.push([module.i, "/**\n * prism.js default theme for Java
|
|
|
5461
5457
|
|
|
5462
5458
|
|
|
5463
5459
|
/***/ }),
|
|
5464
|
-
/*
|
|
5460
|
+
/* 24 */
|
|
5465
5461
|
/***/ (function(module, exports) {
|
|
5466
5462
|
|
|
5467
5463
|
module.exports = function(module) {
|
|
@@ -5489,8 +5485,8 @@ module.exports = function(module) {
|
|
|
5489
5485
|
|
|
5490
5486
|
|
|
5491
5487
|
/***/ }),
|
|
5492
|
-
/*
|
|
5493
|
-
/*
|
|
5488
|
+
/* 25 */,
|
|
5489
|
+
/* 26 */
|
|
5494
5490
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5495
5491
|
|
|
5496
5492
|
"use strict";
|
|
@@ -5500,14 +5496,14 @@ module.exports = function(module) {
|
|
|
5500
5496
|
|
|
5501
5497
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
|
|
5502
5498
|
// Module
|
|
5503
|
-
___CSS_LOADER_EXPORT___.push([module.i, "[data-v-716e941e]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-bubble[data-v-716e941e]{display:flex;gap:var(--el-x-bubble-avatar-placeholder-gap)}.el-x-bubble-avatar-size[data-v-716e941e] .el-avatar{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-avatar-placeholder[data-v-716e941e]{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-start .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-716e941e]{border-start-start-radius:
|
|
5499
|
+
___CSS_LOADER_EXPORT___.push([module.i, "[data-v-716e941e]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-bubble[data-v-716e941e]{display:flex;gap:var(--el-x-bubble-avatar-placeholder-gap)}.el-x-bubble-avatar-size[data-v-716e941e] .el-avatar{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-avatar-placeholder[data-v-716e941e]{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-start .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-716e941e]{border-start-start-radius:2px}.el-x-bubble-end[data-v-716e941e]{justify-content:end;flex-direction:row-reverse}.el-x-bubble-end .el-x-bubble-content-wrapper[data-v-716e941e]{align-items:flex-end}.el-x-bubble-end .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-716e941e]{border-start-end-radius:2px}.el-x-bubble-no-style .el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e]{background-color:rgba(0,0,0,0);padding:0}.el-x-bubble-content-wrapper[data-v-716e941e]{flex:auto;display:flex;flex-direction:column;align-items:flex-start;min-width:0;max-width:100%}.el-x-bubble-content-wrapper .el-x-bubble-header[data-v-716e941e],.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e],.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-716e941e]{font-size:14px;color:#303133;line-height:24px}.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e]{background-color:#edf2fc;padding:12px 18px;border-radius:8px;position:relative;box-sizing:border-box;min-width:0;max-width:var(--bubble-content-max-width);color:#303133;font-size:14px;line-height:24px;word-break:break-word}.el-x-bubble-content-wrapper .el-x-bubble-content .no-content[data-v-716e941e]{height:0}.el-x-bubble-content-wrapper .el-x-bubble-content-round[data-v-716e941e]{border-radius:20px}.el-x-bubble-content-wrapper .el-x-bubble-content-filled[data-v-716e941e]{background-color:#edf2fc}.el-x-bubble-content-wrapper .el-x-bubble-content-borderless[data-v-716e941e]{background-color:#edf2fc;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-outlined[data-v-716e941e]{background:none;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-shadow[data-v-716e941e]{background:none;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04)}.el-x-bubble-content-wrapper .el-x-bubble-content-loading[data-v-716e941e]{width:fit-content}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .el-x-bubble-loading-wrap[data-v-716e941e]{display:flex;justify-content:center;align-items:center;gap:5px}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .dot[data-v-716e941e]{width:5px;height:5px;background-color:#409eff;border-radius:50%;animation:wave-716e941e 1s infinite ease-in-out}@keyframes wave-716e941e{0%,100%{transform:translateY(-2px)}50%{transform:translateY(2px)}}.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-716e941e]{margin-top:8px}", ""]);
|
|
5504
5500
|
// Exports
|
|
5505
5501
|
/* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
|
|
5506
5502
|
|
|
5507
5503
|
|
|
5508
5504
|
/***/ }),
|
|
5509
|
-
/*
|
|
5510
|
-
/*
|
|
5505
|
+
/* 27 */,
|
|
5506
|
+
/* 28 */
|
|
5511
5507
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5512
5508
|
|
|
5513
5509
|
"use strict";
|
|
@@ -5608,7 +5604,7 @@ render._withStripped = true;
|
|
|
5608
5604
|
// CONCATENATED MODULE: ./src/components/Bubble/src/main.vue?vue&type=template&id=716e941e&scoped=true
|
|
5609
5605
|
|
|
5610
5606
|
// EXTERNAL MODULE: ./src/components/Typewriter/index.js + 7 modules
|
|
5611
|
-
var Typewriter = __webpack_require__(
|
|
5607
|
+
var Typewriter = __webpack_require__(12);
|
|
5612
5608
|
|
|
5613
5609
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=script&lang=js
|
|
5614
5610
|
|
|
@@ -5779,7 +5775,7 @@ var injectStylesIntoStyleTag = __webpack_require__(3);
|
|
|
5779
5775
|
var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
|
|
5780
5776
|
|
|
5781
5777
|
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=716e941e&prod&lang=scss&scoped=true
|
|
5782
|
-
var mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true = __webpack_require__(
|
|
5778
|
+
var mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true = __webpack_require__(26);
|
|
5783
5779
|
|
|
5784
5780
|
// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=716e941e&prod&lang=scss&scoped=true
|
|
5785
5781
|
|
|
@@ -5830,7 +5826,7 @@ main.install = function (Vue) {
|
|
|
5830
5826
|
/* harmony default export */ var Bubble = __webpack_exports__["default"] = (main);
|
|
5831
5827
|
|
|
5832
5828
|
/***/ }),
|
|
5833
|
-
/*
|
|
5829
|
+
/* 29 */
|
|
5834
5830
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5835
5831
|
|
|
5836
5832
|
"use strict";
|
|
@@ -5840,20 +5836,20 @@ main.install = function (Vue) {
|
|
|
5840
5836
|
|
|
5841
5837
|
|
|
5842
5838
|
var utils = __webpack_require__(1);
|
|
5843
|
-
var helpers = __webpack_require__(
|
|
5844
|
-
var Renderer = __webpack_require__(
|
|
5845
|
-
var ParserCore = __webpack_require__(
|
|
5846
|
-
var ParserBlock = __webpack_require__(
|
|
5847
|
-
var ParserInline = __webpack_require__(
|
|
5848
|
-
var LinkifyIt = __webpack_require__(
|
|
5849
|
-
var mdurl = __webpack_require__(
|
|
5850
|
-
var punycode = __webpack_require__(
|
|
5839
|
+
var helpers = __webpack_require__(37);
|
|
5840
|
+
var Renderer = __webpack_require__(41);
|
|
5841
|
+
var ParserCore = __webpack_require__(42);
|
|
5842
|
+
var ParserBlock = __webpack_require__(50);
|
|
5843
|
+
var ParserInline = __webpack_require__(64);
|
|
5844
|
+
var LinkifyIt = __webpack_require__(77);
|
|
5845
|
+
var mdurl = __webpack_require__(14);
|
|
5846
|
+
var punycode = __webpack_require__(79);
|
|
5851
5847
|
|
|
5852
5848
|
|
|
5853
5849
|
var config = {
|
|
5854
|
-
default: __webpack_require__(
|
|
5855
|
-
zero: __webpack_require__(
|
|
5856
|
-
commonmark: __webpack_require__(
|
|
5850
|
+
default: __webpack_require__(80),
|
|
5851
|
+
zero: __webpack_require__(81),
|
|
5852
|
+
commonmark: __webpack_require__(82)
|
|
5857
5853
|
};
|
|
5858
5854
|
|
|
5859
5855
|
////////////////////////////////////////////////////////////////////////////////
|
|
@@ -6419,13 +6415,13 @@ module.exports = MarkdownIt;
|
|
|
6419
6415
|
|
|
6420
6416
|
|
|
6421
6417
|
/***/ }),
|
|
6422
|
-
/*
|
|
6418
|
+
/* 30 */
|
|
6423
6419
|
/***/ (function(module) {
|
|
6424
6420
|
|
|
6425
6421
|
module.exports = JSON.parse("{\"Aacute\":\"Á\",\"aacute\":\"á\",\"Abreve\":\"Ă\",\"abreve\":\"ă\",\"ac\":\"∾\",\"acd\":\"∿\",\"acE\":\"∾̳\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"Acy\":\"А\",\"acy\":\"а\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"af\":\"\",\"Afr\":\"𝔄\",\"afr\":\"𝔞\",\"Agrave\":\"À\",\"agrave\":\"à\",\"alefsym\":\"ℵ\",\"aleph\":\"ℵ\",\"Alpha\":\"Α\",\"alpha\":\"α\",\"Amacr\":\"Ā\",\"amacr\":\"ā\",\"amalg\":\"⨿\",\"amp\":\"&\",\"AMP\":\"&\",\"andand\":\"⩕\",\"And\":\"⩓\",\"and\":\"∧\",\"andd\":\"⩜\",\"andslope\":\"⩘\",\"andv\":\"⩚\",\"ang\":\"∠\",\"ange\":\"⦤\",\"angle\":\"∠\",\"angmsdaa\":\"⦨\",\"angmsdab\":\"⦩\",\"angmsdac\":\"⦪\",\"angmsdad\":\"⦫\",\"angmsdae\":\"⦬\",\"angmsdaf\":\"⦭\",\"angmsdag\":\"⦮\",\"angmsdah\":\"⦯\",\"angmsd\":\"∡\",\"angrt\":\"∟\",\"angrtvb\":\"⊾\",\"angrtvbd\":\"⦝\",\"angsph\":\"∢\",\"angst\":\"Å\",\"angzarr\":\"⍼\",\"Aogon\":\"Ą\",\"aogon\":\"ą\",\"Aopf\":\"𝔸\",\"aopf\":\"𝕒\",\"apacir\":\"⩯\",\"ap\":\"≈\",\"apE\":\"⩰\",\"ape\":\"≊\",\"apid\":\"≋\",\"apos\":\"'\",\"ApplyFunction\":\"\",\"approx\":\"≈\",\"approxeq\":\"≊\",\"Aring\":\"Å\",\"aring\":\"å\",\"Ascr\":\"𝒜\",\"ascr\":\"𝒶\",\"Assign\":\"≔\",\"ast\":\"*\",\"asymp\":\"≈\",\"asympeq\":\"≍\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"awconint\":\"∳\",\"awint\":\"⨑\",\"backcong\":\"≌\",\"backepsilon\":\"϶\",\"backprime\":\"‵\",\"backsim\":\"∽\",\"backsimeq\":\"⋍\",\"Backslash\":\"∖\",\"Barv\":\"⫧\",\"barvee\":\"⊽\",\"barwed\":\"⌅\",\"Barwed\":\"⌆\",\"barwedge\":\"⌅\",\"bbrk\":\"⎵\",\"bbrktbrk\":\"⎶\",\"bcong\":\"≌\",\"Bcy\":\"Б\",\"bcy\":\"б\",\"bdquo\":\"„\",\"becaus\":\"∵\",\"because\":\"∵\",\"Because\":\"∵\",\"bemptyv\":\"⦰\",\"bepsi\":\"϶\",\"bernou\":\"ℬ\",\"Bernoullis\":\"ℬ\",\"Beta\":\"Β\",\"beta\":\"β\",\"beth\":\"ℶ\",\"between\":\"≬\",\"Bfr\":\"𝔅\",\"bfr\":\"𝔟\",\"bigcap\":\"⋂\",\"bigcirc\":\"◯\",\"bigcup\":\"⋃\",\"bigodot\":\"⨀\",\"bigoplus\":\"⨁\",\"bigotimes\":\"⨂\",\"bigsqcup\":\"⨆\",\"bigstar\":\"★\",\"bigtriangledown\":\"▽\",\"bigtriangleup\":\"△\",\"biguplus\":\"⨄\",\"bigvee\":\"⋁\",\"bigwedge\":\"⋀\",\"bkarow\":\"⤍\",\"blacklozenge\":\"⧫\",\"blacksquare\":\"▪\",\"blacktriangle\":\"▴\",\"blacktriangledown\":\"▾\",\"blacktriangleleft\":\"◂\",\"blacktriangleright\":\"▸\",\"blank\":\"␣\",\"blk12\":\"▒\",\"blk14\":\"░\",\"blk34\":\"▓\",\"block\":\"█\",\"bne\":\"=⃥\",\"bnequiv\":\"≡⃥\",\"bNot\":\"⫭\",\"bnot\":\"⌐\",\"Bopf\":\"𝔹\",\"bopf\":\"𝕓\",\"bot\":\"⊥\",\"bottom\":\"⊥\",\"bowtie\":\"⋈\",\"boxbox\":\"⧉\",\"boxdl\":\"┐\",\"boxdL\":\"╕\",\"boxDl\":\"╖\",\"boxDL\":\"╗\",\"boxdr\":\"┌\",\"boxdR\":\"╒\",\"boxDr\":\"╓\",\"boxDR\":\"╔\",\"boxh\":\"─\",\"boxH\":\"═\",\"boxhd\":\"┬\",\"boxHd\":\"╤\",\"boxhD\":\"╥\",\"boxHD\":\"╦\",\"boxhu\":\"┴\",\"boxHu\":\"╧\",\"boxhU\":\"╨\",\"boxHU\":\"╩\",\"boxminus\":\"⊟\",\"boxplus\":\"⊞\",\"boxtimes\":\"⊠\",\"boxul\":\"┘\",\"boxuL\":\"╛\",\"boxUl\":\"╜\",\"boxUL\":\"╝\",\"boxur\":\"└\",\"boxuR\":\"╘\",\"boxUr\":\"╙\",\"boxUR\":\"╚\",\"boxv\":\"│\",\"boxV\":\"║\",\"boxvh\":\"┼\",\"boxvH\":\"╪\",\"boxVh\":\"╫\",\"boxVH\":\"╬\",\"boxvl\":\"┤\",\"boxvL\":\"╡\",\"boxVl\":\"╢\",\"boxVL\":\"╣\",\"boxvr\":\"├\",\"boxvR\":\"╞\",\"boxVr\":\"╟\",\"boxVR\":\"╠\",\"bprime\":\"‵\",\"breve\":\"˘\",\"Breve\":\"˘\",\"brvbar\":\"¦\",\"bscr\":\"𝒷\",\"Bscr\":\"ℬ\",\"bsemi\":\"⁏\",\"bsim\":\"∽\",\"bsime\":\"⋍\",\"bsolb\":\"⧅\",\"bsol\":\"\\\\\",\"bsolhsub\":\"⟈\",\"bull\":\"•\",\"bullet\":\"•\",\"bump\":\"≎\",\"bumpE\":\"⪮\",\"bumpe\":\"≏\",\"Bumpeq\":\"≎\",\"bumpeq\":\"≏\",\"Cacute\":\"Ć\",\"cacute\":\"ć\",\"capand\":\"⩄\",\"capbrcup\":\"⩉\",\"capcap\":\"⩋\",\"cap\":\"∩\",\"Cap\":\"⋒\",\"capcup\":\"⩇\",\"capdot\":\"⩀\",\"CapitalDifferentialD\":\"ⅅ\",\"caps\":\"∩︀\",\"caret\":\"⁁\",\"caron\":\"ˇ\",\"Cayleys\":\"ℭ\",\"ccaps\":\"⩍\",\"Ccaron\":\"Č\",\"ccaron\":\"č\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"Ccirc\":\"Ĉ\",\"ccirc\":\"ĉ\",\"Cconint\":\"∰\",\"ccups\":\"⩌\",\"ccupssm\":\"⩐\",\"Cdot\":\"Ċ\",\"cdot\":\"ċ\",\"cedil\":\"¸\",\"Cedilla\":\"¸\",\"cemptyv\":\"⦲\",\"cent\":\"¢\",\"centerdot\":\"·\",\"CenterDot\":\"·\",\"cfr\":\"𝔠\",\"Cfr\":\"ℭ\",\"CHcy\":\"Ч\",\"chcy\":\"ч\",\"check\":\"✓\",\"checkmark\":\"✓\",\"Chi\":\"Χ\",\"chi\":\"χ\",\"circ\":\"ˆ\",\"circeq\":\"≗\",\"circlearrowleft\":\"↺\",\"circlearrowright\":\"↻\",\"circledast\":\"⊛\",\"circledcirc\":\"⊚\",\"circleddash\":\"⊝\",\"CircleDot\":\"⊙\",\"circledR\":\"®\",\"circledS\":\"Ⓢ\",\"CircleMinus\":\"⊖\",\"CirclePlus\":\"⊕\",\"CircleTimes\":\"⊗\",\"cir\":\"○\",\"cirE\":\"⧃\",\"cire\":\"≗\",\"cirfnint\":\"⨐\",\"cirmid\":\"⫯\",\"cirscir\":\"⧂\",\"ClockwiseContourIntegral\":\"∲\",\"CloseCurlyDoubleQuote\":\"”\",\"CloseCurlyQuote\":\"’\",\"clubs\":\"♣\",\"clubsuit\":\"♣\",\"colon\":\":\",\"Colon\":\"∷\",\"Colone\":\"⩴\",\"colone\":\"≔\",\"coloneq\":\"≔\",\"comma\":\",\",\"commat\":\"@\",\"comp\":\"∁\",\"compfn\":\"∘\",\"complement\":\"∁\",\"complexes\":\"ℂ\",\"cong\":\"≅\",\"congdot\":\"⩭\",\"Congruent\":\"≡\",\"conint\":\"∮\",\"Conint\":\"∯\",\"ContourIntegral\":\"∮\",\"copf\":\"𝕔\",\"Copf\":\"ℂ\",\"coprod\":\"∐\",\"Coproduct\":\"∐\",\"copy\":\"©\",\"COPY\":\"©\",\"copysr\":\"℗\",\"CounterClockwiseContourIntegral\":\"∳\",\"crarr\":\"↵\",\"cross\":\"✗\",\"Cross\":\"⨯\",\"Cscr\":\"𝒞\",\"cscr\":\"𝒸\",\"csub\":\"⫏\",\"csube\":\"⫑\",\"csup\":\"⫐\",\"csupe\":\"⫒\",\"ctdot\":\"⋯\",\"cudarrl\":\"⤸\",\"cudarrr\":\"⤵\",\"cuepr\":\"⋞\",\"cuesc\":\"⋟\",\"cularr\":\"↶\",\"cularrp\":\"⤽\",\"cupbrcap\":\"⩈\",\"cupcap\":\"⩆\",\"CupCap\":\"≍\",\"cup\":\"∪\",\"Cup\":\"⋓\",\"cupcup\":\"⩊\",\"cupdot\":\"⊍\",\"cupor\":\"⩅\",\"cups\":\"∪︀\",\"curarr\":\"↷\",\"curarrm\":\"⤼\",\"curlyeqprec\":\"⋞\",\"curlyeqsucc\":\"⋟\",\"curlyvee\":\"⋎\",\"curlywedge\":\"⋏\",\"curren\":\"¤\",\"curvearrowleft\":\"↶\",\"curvearrowright\":\"↷\",\"cuvee\":\"⋎\",\"cuwed\":\"⋏\",\"cwconint\":\"∲\",\"cwint\":\"∱\",\"cylcty\":\"⌭\",\"dagger\":\"†\",\"Dagger\":\"‡\",\"daleth\":\"ℸ\",\"darr\":\"↓\",\"Darr\":\"↡\",\"dArr\":\"⇓\",\"dash\":\"‐\",\"Dashv\":\"⫤\",\"dashv\":\"⊣\",\"dbkarow\":\"⤏\",\"dblac\":\"˝\",\"Dcaron\":\"Ď\",\"dcaron\":\"ď\",\"Dcy\":\"Д\",\"dcy\":\"д\",\"ddagger\":\"‡\",\"ddarr\":\"⇊\",\"DD\":\"ⅅ\",\"dd\":\"ⅆ\",\"DDotrahd\":\"⤑\",\"ddotseq\":\"⩷\",\"deg\":\"°\",\"Del\":\"∇\",\"Delta\":\"Δ\",\"delta\":\"δ\",\"demptyv\":\"⦱\",\"dfisht\":\"⥿\",\"Dfr\":\"𝔇\",\"dfr\":\"𝔡\",\"dHar\":\"⥥\",\"dharl\":\"⇃\",\"dharr\":\"⇂\",\"DiacriticalAcute\":\"´\",\"DiacriticalDot\":\"˙\",\"DiacriticalDoubleAcute\":\"˝\",\"DiacriticalGrave\":\"`\",\"DiacriticalTilde\":\"˜\",\"diam\":\"⋄\",\"diamond\":\"⋄\",\"Diamond\":\"⋄\",\"diamondsuit\":\"♦\",\"diams\":\"♦\",\"die\":\"¨\",\"DifferentialD\":\"ⅆ\",\"digamma\":\"ϝ\",\"disin\":\"⋲\",\"div\":\"÷\",\"divide\":\"÷\",\"divideontimes\":\"⋇\",\"divonx\":\"⋇\",\"DJcy\":\"Ђ\",\"djcy\":\"ђ\",\"dlcorn\":\"⌞\",\"dlcrop\":\"⌍\",\"dollar\":\"$\",\"Dopf\":\"𝔻\",\"dopf\":\"𝕕\",\"Dot\":\"¨\",\"dot\":\"˙\",\"DotDot\":\"⃜\",\"doteq\":\"≐\",\"doteqdot\":\"≑\",\"DotEqual\":\"≐\",\"dotminus\":\"∸\",\"dotplus\":\"∔\",\"dotsquare\":\"⊡\",\"doublebarwedge\":\"⌆\",\"DoubleContourIntegral\":\"∯\",\"DoubleDot\":\"¨\",\"DoubleDownArrow\":\"⇓\",\"DoubleLeftArrow\":\"⇐\",\"DoubleLeftRightArrow\":\"⇔\",\"DoubleLeftTee\":\"⫤\",\"DoubleLongLeftArrow\":\"⟸\",\"DoubleLongLeftRightArrow\":\"⟺\",\"DoubleLongRightArrow\":\"⟹\",\"DoubleRightArrow\":\"⇒\",\"DoubleRightTee\":\"⊨\",\"DoubleUpArrow\":\"⇑\",\"DoubleUpDownArrow\":\"⇕\",\"DoubleVerticalBar\":\"∥\",\"DownArrowBar\":\"⤓\",\"downarrow\":\"↓\",\"DownArrow\":\"↓\",\"Downarrow\":\"⇓\",\"DownArrowUpArrow\":\"⇵\",\"DownBreve\":\"̑\",\"downdownarrows\":\"⇊\",\"downharpoonleft\":\"⇃\",\"downharpoonright\":\"⇂\",\"DownLeftRightVector\":\"⥐\",\"DownLeftTeeVector\":\"⥞\",\"DownLeftVectorBar\":\"⥖\",\"DownLeftVector\":\"↽\",\"DownRightTeeVector\":\"⥟\",\"DownRightVectorBar\":\"⥗\",\"DownRightVector\":\"⇁\",\"DownTeeArrow\":\"↧\",\"DownTee\":\"⊤\",\"drbkarow\":\"⤐\",\"drcorn\":\"⌟\",\"drcrop\":\"⌌\",\"Dscr\":\"𝒟\",\"dscr\":\"𝒹\",\"DScy\":\"Ѕ\",\"dscy\":\"ѕ\",\"dsol\":\"⧶\",\"Dstrok\":\"Đ\",\"dstrok\":\"đ\",\"dtdot\":\"⋱\",\"dtri\":\"▿\",\"dtrif\":\"▾\",\"duarr\":\"⇵\",\"duhar\":\"⥯\",\"dwangle\":\"⦦\",\"DZcy\":\"Џ\",\"dzcy\":\"џ\",\"dzigrarr\":\"⟿\",\"Eacute\":\"É\",\"eacute\":\"é\",\"easter\":\"⩮\",\"Ecaron\":\"Ě\",\"ecaron\":\"ě\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"ecir\":\"≖\",\"ecolon\":\"≕\",\"Ecy\":\"Э\",\"ecy\":\"э\",\"eDDot\":\"⩷\",\"Edot\":\"Ė\",\"edot\":\"ė\",\"eDot\":\"≑\",\"ee\":\"ⅇ\",\"efDot\":\"≒\",\"Efr\":\"𝔈\",\"efr\":\"𝔢\",\"eg\":\"⪚\",\"Egrave\":\"È\",\"egrave\":\"è\",\"egs\":\"⪖\",\"egsdot\":\"⪘\",\"el\":\"⪙\",\"Element\":\"∈\",\"elinters\":\"⏧\",\"ell\":\"ℓ\",\"els\":\"⪕\",\"elsdot\":\"⪗\",\"Emacr\":\"Ē\",\"emacr\":\"ē\",\"empty\":\"∅\",\"emptyset\":\"∅\",\"EmptySmallSquare\":\"◻\",\"emptyv\":\"∅\",\"EmptyVerySmallSquare\":\"▫\",\"emsp13\":\" \",\"emsp14\":\" \",\"emsp\":\" \",\"ENG\":\"Ŋ\",\"eng\":\"ŋ\",\"ensp\":\" \",\"Eogon\":\"Ę\",\"eogon\":\"ę\",\"Eopf\":\"𝔼\",\"eopf\":\"𝕖\",\"epar\":\"⋕\",\"eparsl\":\"⧣\",\"eplus\":\"⩱\",\"epsi\":\"ε\",\"Epsilon\":\"Ε\",\"epsilon\":\"ε\",\"epsiv\":\"ϵ\",\"eqcirc\":\"≖\",\"eqcolon\":\"≕\",\"eqsim\":\"≂\",\"eqslantgtr\":\"⪖\",\"eqslantless\":\"⪕\",\"Equal\":\"⩵\",\"equals\":\"=\",\"EqualTilde\":\"≂\",\"equest\":\"≟\",\"Equilibrium\":\"⇌\",\"equiv\":\"≡\",\"equivDD\":\"⩸\",\"eqvparsl\":\"⧥\",\"erarr\":\"⥱\",\"erDot\":\"≓\",\"escr\":\"ℯ\",\"Escr\":\"ℰ\",\"esdot\":\"≐\",\"Esim\":\"⩳\",\"esim\":\"≂\",\"Eta\":\"Η\",\"eta\":\"η\",\"ETH\":\"Ð\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"euro\":\"€\",\"excl\":\"!\",\"exist\":\"∃\",\"Exists\":\"∃\",\"expectation\":\"ℰ\",\"exponentiale\":\"ⅇ\",\"ExponentialE\":\"ⅇ\",\"fallingdotseq\":\"≒\",\"Fcy\":\"Ф\",\"fcy\":\"ф\",\"female\":\"♀\",\"ffilig\":\"ffi\",\"fflig\":\"ff\",\"ffllig\":\"ffl\",\"Ffr\":\"𝔉\",\"ffr\":\"𝔣\",\"filig\":\"fi\",\"FilledSmallSquare\":\"◼\",\"FilledVerySmallSquare\":\"▪\",\"fjlig\":\"fj\",\"flat\":\"♭\",\"fllig\":\"fl\",\"fltns\":\"▱\",\"fnof\":\"ƒ\",\"Fopf\":\"𝔽\",\"fopf\":\"𝕗\",\"forall\":\"∀\",\"ForAll\":\"∀\",\"fork\":\"⋔\",\"forkv\":\"⫙\",\"Fouriertrf\":\"ℱ\",\"fpartint\":\"⨍\",\"frac12\":\"½\",\"frac13\":\"⅓\",\"frac14\":\"¼\",\"frac15\":\"⅕\",\"frac16\":\"⅙\",\"frac18\":\"⅛\",\"frac23\":\"⅔\",\"frac25\":\"⅖\",\"frac34\":\"¾\",\"frac35\":\"⅗\",\"frac38\":\"⅜\",\"frac45\":\"⅘\",\"frac56\":\"⅚\",\"frac58\":\"⅝\",\"frac78\":\"⅞\",\"frasl\":\"⁄\",\"frown\":\"⌢\",\"fscr\":\"𝒻\",\"Fscr\":\"ℱ\",\"gacute\":\"ǵ\",\"Gamma\":\"Γ\",\"gamma\":\"γ\",\"Gammad\":\"Ϝ\",\"gammad\":\"ϝ\",\"gap\":\"⪆\",\"Gbreve\":\"Ğ\",\"gbreve\":\"ğ\",\"Gcedil\":\"Ģ\",\"Gcirc\":\"Ĝ\",\"gcirc\":\"ĝ\",\"Gcy\":\"Г\",\"gcy\":\"г\",\"Gdot\":\"Ġ\",\"gdot\":\"ġ\",\"ge\":\"≥\",\"gE\":\"≧\",\"gEl\":\"⪌\",\"gel\":\"⋛\",\"geq\":\"≥\",\"geqq\":\"≧\",\"geqslant\":\"⩾\",\"gescc\":\"⪩\",\"ges\":\"⩾\",\"gesdot\":\"⪀\",\"gesdoto\":\"⪂\",\"gesdotol\":\"⪄\",\"gesl\":\"⋛︀\",\"gesles\":\"⪔\",\"Gfr\":\"𝔊\",\"gfr\":\"𝔤\",\"gg\":\"≫\",\"Gg\":\"⋙\",\"ggg\":\"⋙\",\"gimel\":\"ℷ\",\"GJcy\":\"Ѓ\",\"gjcy\":\"ѓ\",\"gla\":\"⪥\",\"gl\":\"≷\",\"glE\":\"⪒\",\"glj\":\"⪤\",\"gnap\":\"⪊\",\"gnapprox\":\"⪊\",\"gne\":\"⪈\",\"gnE\":\"≩\",\"gneq\":\"⪈\",\"gneqq\":\"≩\",\"gnsim\":\"⋧\",\"Gopf\":\"𝔾\",\"gopf\":\"𝕘\",\"grave\":\"`\",\"GreaterEqual\":\"≥\",\"GreaterEqualLess\":\"⋛\",\"GreaterFullEqual\":\"≧\",\"GreaterGreater\":\"⪢\",\"GreaterLess\":\"≷\",\"GreaterSlantEqual\":\"⩾\",\"GreaterTilde\":\"≳\",\"Gscr\":\"𝒢\",\"gscr\":\"ℊ\",\"gsim\":\"≳\",\"gsime\":\"⪎\",\"gsiml\":\"⪐\",\"gtcc\":\"⪧\",\"gtcir\":\"⩺\",\"gt\":\">\",\"GT\":\">\",\"Gt\":\"≫\",\"gtdot\":\"⋗\",\"gtlPar\":\"⦕\",\"gtquest\":\"⩼\",\"gtrapprox\":\"⪆\",\"gtrarr\":\"⥸\",\"gtrdot\":\"⋗\",\"gtreqless\":\"⋛\",\"gtreqqless\":\"⪌\",\"gtrless\":\"≷\",\"gtrsim\":\"≳\",\"gvertneqq\":\"≩︀\",\"gvnE\":\"≩︀\",\"Hacek\":\"ˇ\",\"hairsp\":\" \",\"half\":\"½\",\"hamilt\":\"ℋ\",\"HARDcy\":\"Ъ\",\"hardcy\":\"ъ\",\"harrcir\":\"⥈\",\"harr\":\"↔\",\"hArr\":\"⇔\",\"harrw\":\"↭\",\"Hat\":\"^\",\"hbar\":\"ℏ\",\"Hcirc\":\"Ĥ\",\"hcirc\":\"ĥ\",\"hearts\":\"♥\",\"heartsuit\":\"♥\",\"hellip\":\"…\",\"hercon\":\"⊹\",\"hfr\":\"𝔥\",\"Hfr\":\"ℌ\",\"HilbertSpace\":\"ℋ\",\"hksearow\":\"⤥\",\"hkswarow\":\"⤦\",\"hoarr\":\"⇿\",\"homtht\":\"∻\",\"hookleftarrow\":\"↩\",\"hookrightarrow\":\"↪\",\"hopf\":\"𝕙\",\"Hopf\":\"ℍ\",\"horbar\":\"―\",\"HorizontalLine\":\"─\",\"hscr\":\"𝒽\",\"Hscr\":\"ℋ\",\"hslash\":\"ℏ\",\"Hstrok\":\"Ħ\",\"hstrok\":\"ħ\",\"HumpDownHump\":\"≎\",\"HumpEqual\":\"≏\",\"hybull\":\"⁃\",\"hyphen\":\"‐\",\"Iacute\":\"Í\",\"iacute\":\"í\",\"ic\":\"\",\"Icirc\":\"Î\",\"icirc\":\"î\",\"Icy\":\"И\",\"icy\":\"и\",\"Idot\":\"İ\",\"IEcy\":\"Е\",\"iecy\":\"е\",\"iexcl\":\"¡\",\"iff\":\"⇔\",\"ifr\":\"𝔦\",\"Ifr\":\"ℑ\",\"Igrave\":\"Ì\",\"igrave\":\"ì\",\"ii\":\"ⅈ\",\"iiiint\":\"⨌\",\"iiint\":\"∭\",\"iinfin\":\"⧜\",\"iiota\":\"℩\",\"IJlig\":\"IJ\",\"ijlig\":\"ij\",\"Imacr\":\"Ī\",\"imacr\":\"ī\",\"image\":\"ℑ\",\"ImaginaryI\":\"ⅈ\",\"imagline\":\"ℐ\",\"imagpart\":\"ℑ\",\"imath\":\"ı\",\"Im\":\"ℑ\",\"imof\":\"⊷\",\"imped\":\"Ƶ\",\"Implies\":\"⇒\",\"incare\":\"℅\",\"in\":\"∈\",\"infin\":\"∞\",\"infintie\":\"⧝\",\"inodot\":\"ı\",\"intcal\":\"⊺\",\"int\":\"∫\",\"Int\":\"∬\",\"integers\":\"ℤ\",\"Integral\":\"∫\",\"intercal\":\"⊺\",\"Intersection\":\"⋂\",\"intlarhk\":\"⨗\",\"intprod\":\"⨼\",\"InvisibleComma\":\"\",\"InvisibleTimes\":\"\",\"IOcy\":\"Ё\",\"iocy\":\"ё\",\"Iogon\":\"Į\",\"iogon\":\"į\",\"Iopf\":\"𝕀\",\"iopf\":\"𝕚\",\"Iota\":\"Ι\",\"iota\":\"ι\",\"iprod\":\"⨼\",\"iquest\":\"¿\",\"iscr\":\"𝒾\",\"Iscr\":\"ℐ\",\"isin\":\"∈\",\"isindot\":\"⋵\",\"isinE\":\"⋹\",\"isins\":\"⋴\",\"isinsv\":\"⋳\",\"isinv\":\"∈\",\"it\":\"\",\"Itilde\":\"Ĩ\",\"itilde\":\"ĩ\",\"Iukcy\":\"І\",\"iukcy\":\"і\",\"Iuml\":\"Ï\",\"iuml\":\"ï\",\"Jcirc\":\"Ĵ\",\"jcirc\":\"ĵ\",\"Jcy\":\"Й\",\"jcy\":\"й\",\"Jfr\":\"𝔍\",\"jfr\":\"𝔧\",\"jmath\":\"ȷ\",\"Jopf\":\"𝕁\",\"jopf\":\"𝕛\",\"Jscr\":\"𝒥\",\"jscr\":\"𝒿\",\"Jsercy\":\"Ј\",\"jsercy\":\"ј\",\"Jukcy\":\"Є\",\"jukcy\":\"є\",\"Kappa\":\"Κ\",\"kappa\":\"κ\",\"kappav\":\"ϰ\",\"Kcedil\":\"Ķ\",\"kcedil\":\"ķ\",\"Kcy\":\"К\",\"kcy\":\"к\",\"Kfr\":\"𝔎\",\"kfr\":\"𝔨\",\"kgreen\":\"ĸ\",\"KHcy\":\"Х\",\"khcy\":\"х\",\"KJcy\":\"Ќ\",\"kjcy\":\"ќ\",\"Kopf\":\"𝕂\",\"kopf\":\"𝕜\",\"Kscr\":\"𝒦\",\"kscr\":\"𝓀\",\"lAarr\":\"⇚\",\"Lacute\":\"Ĺ\",\"lacute\":\"ĺ\",\"laemptyv\":\"⦴\",\"lagran\":\"ℒ\",\"Lambda\":\"Λ\",\"lambda\":\"λ\",\"lang\":\"⟨\",\"Lang\":\"⟪\",\"langd\":\"⦑\",\"langle\":\"⟨\",\"lap\":\"⪅\",\"Laplacetrf\":\"ℒ\",\"laquo\":\"«\",\"larrb\":\"⇤\",\"larrbfs\":\"⤟\",\"larr\":\"←\",\"Larr\":\"↞\",\"lArr\":\"⇐\",\"larrfs\":\"⤝\",\"larrhk\":\"↩\",\"larrlp\":\"↫\",\"larrpl\":\"⤹\",\"larrsim\":\"⥳\",\"larrtl\":\"↢\",\"latail\":\"⤙\",\"lAtail\":\"⤛\",\"lat\":\"⪫\",\"late\":\"⪭\",\"lates\":\"⪭︀\",\"lbarr\":\"⤌\",\"lBarr\":\"⤎\",\"lbbrk\":\"❲\",\"lbrace\":\"{\",\"lbrack\":\"[\",\"lbrke\":\"⦋\",\"lbrksld\":\"⦏\",\"lbrkslu\":\"⦍\",\"Lcaron\":\"Ľ\",\"lcaron\":\"ľ\",\"Lcedil\":\"Ļ\",\"lcedil\":\"ļ\",\"lceil\":\"⌈\",\"lcub\":\"{\",\"Lcy\":\"Л\",\"lcy\":\"л\",\"ldca\":\"⤶\",\"ldquo\":\"“\",\"ldquor\":\"„\",\"ldrdhar\":\"⥧\",\"ldrushar\":\"⥋\",\"ldsh\":\"↲\",\"le\":\"≤\",\"lE\":\"≦\",\"LeftAngleBracket\":\"⟨\",\"LeftArrowBar\":\"⇤\",\"leftarrow\":\"←\",\"LeftArrow\":\"←\",\"Leftarrow\":\"⇐\",\"LeftArrowRightArrow\":\"⇆\",\"leftarrowtail\":\"↢\",\"LeftCeiling\":\"⌈\",\"LeftDoubleBracket\":\"⟦\",\"LeftDownTeeVector\":\"⥡\",\"LeftDownVectorBar\":\"⥙\",\"LeftDownVector\":\"⇃\",\"LeftFloor\":\"⌊\",\"leftharpoondown\":\"↽\",\"leftharpoonup\":\"↼\",\"leftleftarrows\":\"⇇\",\"leftrightarrow\":\"↔\",\"LeftRightArrow\":\"↔\",\"Leftrightarrow\":\"⇔\",\"leftrightarrows\":\"⇆\",\"leftrightharpoons\":\"⇋\",\"leftrightsquigarrow\":\"↭\",\"LeftRightVector\":\"⥎\",\"LeftTeeArrow\":\"↤\",\"LeftTee\":\"⊣\",\"LeftTeeVector\":\"⥚\",\"leftthreetimes\":\"⋋\",\"LeftTriangleBar\":\"⧏\",\"LeftTriangle\":\"⊲\",\"LeftTriangleEqual\":\"⊴\",\"LeftUpDownVector\":\"⥑\",\"LeftUpTeeVector\":\"⥠\",\"LeftUpVectorBar\":\"⥘\",\"LeftUpVector\":\"↿\",\"LeftVectorBar\":\"⥒\",\"LeftVector\":\"↼\",\"lEg\":\"⪋\",\"leg\":\"⋚\",\"leq\":\"≤\",\"leqq\":\"≦\",\"leqslant\":\"⩽\",\"lescc\":\"⪨\",\"les\":\"⩽\",\"lesdot\":\"⩿\",\"lesdoto\":\"⪁\",\"lesdotor\":\"⪃\",\"lesg\":\"⋚︀\",\"lesges\":\"⪓\",\"lessapprox\":\"⪅\",\"lessdot\":\"⋖\",\"lesseqgtr\":\"⋚\",\"lesseqqgtr\":\"⪋\",\"LessEqualGreater\":\"⋚\",\"LessFullEqual\":\"≦\",\"LessGreater\":\"≶\",\"lessgtr\":\"≶\",\"LessLess\":\"⪡\",\"lesssim\":\"≲\",\"LessSlantEqual\":\"⩽\",\"LessTilde\":\"≲\",\"lfisht\":\"⥼\",\"lfloor\":\"⌊\",\"Lfr\":\"𝔏\",\"lfr\":\"𝔩\",\"lg\":\"≶\",\"lgE\":\"⪑\",\"lHar\":\"⥢\",\"lhard\":\"↽\",\"lharu\":\"↼\",\"lharul\":\"⥪\",\"lhblk\":\"▄\",\"LJcy\":\"Љ\",\"ljcy\":\"љ\",\"llarr\":\"⇇\",\"ll\":\"≪\",\"Ll\":\"⋘\",\"llcorner\":\"⌞\",\"Lleftarrow\":\"⇚\",\"llhard\":\"⥫\",\"lltri\":\"◺\",\"Lmidot\":\"Ŀ\",\"lmidot\":\"ŀ\",\"lmoustache\":\"⎰\",\"lmoust\":\"⎰\",\"lnap\":\"⪉\",\"lnapprox\":\"⪉\",\"lne\":\"⪇\",\"lnE\":\"≨\",\"lneq\":\"⪇\",\"lneqq\":\"≨\",\"lnsim\":\"⋦\",\"loang\":\"⟬\",\"loarr\":\"⇽\",\"lobrk\":\"⟦\",\"longleftarrow\":\"⟵\",\"LongLeftArrow\":\"⟵\",\"Longleftarrow\":\"⟸\",\"longleftrightarrow\":\"⟷\",\"LongLeftRightArrow\":\"⟷\",\"Longleftrightarrow\":\"⟺\",\"longmapsto\":\"⟼\",\"longrightarrow\":\"⟶\",\"LongRightArrow\":\"⟶\",\"Longrightarrow\":\"⟹\",\"looparrowleft\":\"↫\",\"looparrowright\":\"↬\",\"lopar\":\"⦅\",\"Lopf\":\"𝕃\",\"lopf\":\"𝕝\",\"loplus\":\"⨭\",\"lotimes\":\"⨴\",\"lowast\":\"∗\",\"lowbar\":\"_\",\"LowerLeftArrow\":\"↙\",\"LowerRightArrow\":\"↘\",\"loz\":\"◊\",\"lozenge\":\"◊\",\"lozf\":\"⧫\",\"lpar\":\"(\",\"lparlt\":\"⦓\",\"lrarr\":\"⇆\",\"lrcorner\":\"⌟\",\"lrhar\":\"⇋\",\"lrhard\":\"⥭\",\"lrm\":\"\",\"lrtri\":\"⊿\",\"lsaquo\":\"‹\",\"lscr\":\"𝓁\",\"Lscr\":\"ℒ\",\"lsh\":\"↰\",\"Lsh\":\"↰\",\"lsim\":\"≲\",\"lsime\":\"⪍\",\"lsimg\":\"⪏\",\"lsqb\":\"[\",\"lsquo\":\"‘\",\"lsquor\":\"‚\",\"Lstrok\":\"Ł\",\"lstrok\":\"ł\",\"ltcc\":\"⪦\",\"ltcir\":\"⩹\",\"lt\":\"<\",\"LT\":\"<\",\"Lt\":\"≪\",\"ltdot\":\"⋖\",\"lthree\":\"⋋\",\"ltimes\":\"⋉\",\"ltlarr\":\"⥶\",\"ltquest\":\"⩻\",\"ltri\":\"◃\",\"ltrie\":\"⊴\",\"ltrif\":\"◂\",\"ltrPar\":\"⦖\",\"lurdshar\":\"⥊\",\"luruhar\":\"⥦\",\"lvertneqq\":\"≨︀\",\"lvnE\":\"≨︀\",\"macr\":\"¯\",\"male\":\"♂\",\"malt\":\"✠\",\"maltese\":\"✠\",\"Map\":\"⤅\",\"map\":\"↦\",\"mapsto\":\"↦\",\"mapstodown\":\"↧\",\"mapstoleft\":\"↤\",\"mapstoup\":\"↥\",\"marker\":\"▮\",\"mcomma\":\"⨩\",\"Mcy\":\"М\",\"mcy\":\"м\",\"mdash\":\"—\",\"mDDot\":\"∺\",\"measuredangle\":\"∡\",\"MediumSpace\":\" \",\"Mellintrf\":\"ℳ\",\"Mfr\":\"𝔐\",\"mfr\":\"𝔪\",\"mho\":\"℧\",\"micro\":\"µ\",\"midast\":\"*\",\"midcir\":\"⫰\",\"mid\":\"∣\",\"middot\":\"·\",\"minusb\":\"⊟\",\"minus\":\"−\",\"minusd\":\"∸\",\"minusdu\":\"⨪\",\"MinusPlus\":\"∓\",\"mlcp\":\"⫛\",\"mldr\":\"…\",\"mnplus\":\"∓\",\"models\":\"⊧\",\"Mopf\":\"𝕄\",\"mopf\":\"𝕞\",\"mp\":\"∓\",\"mscr\":\"𝓂\",\"Mscr\":\"ℳ\",\"mstpos\":\"∾\",\"Mu\":\"Μ\",\"mu\":\"μ\",\"multimap\":\"⊸\",\"mumap\":\"⊸\",\"nabla\":\"∇\",\"Nacute\":\"Ń\",\"nacute\":\"ń\",\"nang\":\"∠⃒\",\"nap\":\"≉\",\"napE\":\"⩰̸\",\"napid\":\"≋̸\",\"napos\":\"ʼn\",\"napprox\":\"≉\",\"natural\":\"♮\",\"naturals\":\"ℕ\",\"natur\":\"♮\",\"nbsp\":\" \",\"nbump\":\"≎̸\",\"nbumpe\":\"≏̸\",\"ncap\":\"⩃\",\"Ncaron\":\"Ň\",\"ncaron\":\"ň\",\"Ncedil\":\"Ņ\",\"ncedil\":\"ņ\",\"ncong\":\"≇\",\"ncongdot\":\"⩭̸\",\"ncup\":\"⩂\",\"Ncy\":\"Н\",\"ncy\":\"н\",\"ndash\":\"–\",\"nearhk\":\"⤤\",\"nearr\":\"↗\",\"neArr\":\"⇗\",\"nearrow\":\"↗\",\"ne\":\"≠\",\"nedot\":\"≐̸\",\"NegativeMediumSpace\":\"\",\"NegativeThickSpace\":\"\",\"NegativeThinSpace\":\"\",\"NegativeVeryThinSpace\":\"\",\"nequiv\":\"≢\",\"nesear\":\"⤨\",\"nesim\":\"≂̸\",\"NestedGreaterGreater\":\"≫\",\"NestedLessLess\":\"≪\",\"NewLine\":\"\\n\",\"nexist\":\"∄\",\"nexists\":\"∄\",\"Nfr\":\"𝔑\",\"nfr\":\"𝔫\",\"ngE\":\"≧̸\",\"nge\":\"≱\",\"ngeq\":\"≱\",\"ngeqq\":\"≧̸\",\"ngeqslant\":\"⩾̸\",\"nges\":\"⩾̸\",\"nGg\":\"⋙̸\",\"ngsim\":\"≵\",\"nGt\":\"≫⃒\",\"ngt\":\"≯\",\"ngtr\":\"≯\",\"nGtv\":\"≫̸\",\"nharr\":\"↮\",\"nhArr\":\"⇎\",\"nhpar\":\"⫲\",\"ni\":\"∋\",\"nis\":\"⋼\",\"nisd\":\"⋺\",\"niv\":\"∋\",\"NJcy\":\"Њ\",\"njcy\":\"њ\",\"nlarr\":\"↚\",\"nlArr\":\"⇍\",\"nldr\":\"‥\",\"nlE\":\"≦̸\",\"nle\":\"≰\",\"nleftarrow\":\"↚\",\"nLeftarrow\":\"⇍\",\"nleftrightarrow\":\"↮\",\"nLeftrightarrow\":\"⇎\",\"nleq\":\"≰\",\"nleqq\":\"≦̸\",\"nleqslant\":\"⩽̸\",\"nles\":\"⩽̸\",\"nless\":\"≮\",\"nLl\":\"⋘̸\",\"nlsim\":\"≴\",\"nLt\":\"≪⃒\",\"nlt\":\"≮\",\"nltri\":\"⋪\",\"nltrie\":\"⋬\",\"nLtv\":\"≪̸\",\"nmid\":\"∤\",\"NoBreak\":\"\",\"NonBreakingSpace\":\" \",\"nopf\":\"𝕟\",\"Nopf\":\"ℕ\",\"Not\":\"⫬\",\"not\":\"¬\",\"NotCongruent\":\"≢\",\"NotCupCap\":\"≭\",\"NotDoubleVerticalBar\":\"∦\",\"NotElement\":\"∉\",\"NotEqual\":\"≠\",\"NotEqualTilde\":\"≂̸\",\"NotExists\":\"∄\",\"NotGreater\":\"≯\",\"NotGreaterEqual\":\"≱\",\"NotGreaterFullEqual\":\"≧̸\",\"NotGreaterGreater\":\"≫̸\",\"NotGreaterLess\":\"≹\",\"NotGreaterSlantEqual\":\"⩾̸\",\"NotGreaterTilde\":\"≵\",\"NotHumpDownHump\":\"≎̸\",\"NotHumpEqual\":\"≏̸\",\"notin\":\"∉\",\"notindot\":\"⋵̸\",\"notinE\":\"⋹̸\",\"notinva\":\"∉\",\"notinvb\":\"⋷\",\"notinvc\":\"⋶\",\"NotLeftTriangleBar\":\"⧏̸\",\"NotLeftTriangle\":\"⋪\",\"NotLeftTriangleEqual\":\"⋬\",\"NotLess\":\"≮\",\"NotLessEqual\":\"≰\",\"NotLessGreater\":\"≸\",\"NotLessLess\":\"≪̸\",\"NotLessSlantEqual\":\"⩽̸\",\"NotLessTilde\":\"≴\",\"NotNestedGreaterGreater\":\"⪢̸\",\"NotNestedLessLess\":\"⪡̸\",\"notni\":\"∌\",\"notniva\":\"∌\",\"notnivb\":\"⋾\",\"notnivc\":\"⋽\",\"NotPrecedes\":\"⊀\",\"NotPrecedesEqual\":\"⪯̸\",\"NotPrecedesSlantEqual\":\"⋠\",\"NotReverseElement\":\"∌\",\"NotRightTriangleBar\":\"⧐̸\",\"NotRightTriangle\":\"⋫\",\"NotRightTriangleEqual\":\"⋭\",\"NotSquareSubset\":\"⊏̸\",\"NotSquareSubsetEqual\":\"⋢\",\"NotSquareSuperset\":\"⊐̸\",\"NotSquareSupersetEqual\":\"⋣\",\"NotSubset\":\"⊂⃒\",\"NotSubsetEqual\":\"⊈\",\"NotSucceeds\":\"⊁\",\"NotSucceedsEqual\":\"⪰̸\",\"NotSucceedsSlantEqual\":\"⋡\",\"NotSucceedsTilde\":\"≿̸\",\"NotSuperset\":\"⊃⃒\",\"NotSupersetEqual\":\"⊉\",\"NotTilde\":\"≁\",\"NotTildeEqual\":\"≄\",\"NotTildeFullEqual\":\"≇\",\"NotTildeTilde\":\"≉\",\"NotVerticalBar\":\"∤\",\"nparallel\":\"∦\",\"npar\":\"∦\",\"nparsl\":\"⫽⃥\",\"npart\":\"∂̸\",\"npolint\":\"⨔\",\"npr\":\"⊀\",\"nprcue\":\"⋠\",\"nprec\":\"⊀\",\"npreceq\":\"⪯̸\",\"npre\":\"⪯̸\",\"nrarrc\":\"⤳̸\",\"nrarr\":\"↛\",\"nrArr\":\"⇏\",\"nrarrw\":\"↝̸\",\"nrightarrow\":\"↛\",\"nRightarrow\":\"⇏\",\"nrtri\":\"⋫\",\"nrtrie\":\"⋭\",\"nsc\":\"⊁\",\"nsccue\":\"⋡\",\"nsce\":\"⪰̸\",\"Nscr\":\"𝒩\",\"nscr\":\"𝓃\",\"nshortmid\":\"∤\",\"nshortparallel\":\"∦\",\"nsim\":\"≁\",\"nsime\":\"≄\",\"nsimeq\":\"≄\",\"nsmid\":\"∤\",\"nspar\":\"∦\",\"nsqsube\":\"⋢\",\"nsqsupe\":\"⋣\",\"nsub\":\"⊄\",\"nsubE\":\"⫅̸\",\"nsube\":\"⊈\",\"nsubset\":\"⊂⃒\",\"nsubseteq\":\"⊈\",\"nsubseteqq\":\"⫅̸\",\"nsucc\":\"⊁\",\"nsucceq\":\"⪰̸\",\"nsup\":\"⊅\",\"nsupE\":\"⫆̸\",\"nsupe\":\"⊉\",\"nsupset\":\"⊃⃒\",\"nsupseteq\":\"⊉\",\"nsupseteqq\":\"⫆̸\",\"ntgl\":\"≹\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"ntlg\":\"≸\",\"ntriangleleft\":\"⋪\",\"ntrianglelefteq\":\"⋬\",\"ntriangleright\":\"⋫\",\"ntrianglerighteq\":\"⋭\",\"Nu\":\"Ν\",\"nu\":\"ν\",\"num\":\"#\",\"numero\":\"№\",\"numsp\":\" \",\"nvap\":\"≍⃒\",\"nvdash\":\"⊬\",\"nvDash\":\"⊭\",\"nVdash\":\"⊮\",\"nVDash\":\"⊯\",\"nvge\":\"≥⃒\",\"nvgt\":\">⃒\",\"nvHarr\":\"⤄\",\"nvinfin\":\"⧞\",\"nvlArr\":\"⤂\",\"nvle\":\"≤⃒\",\"nvlt\":\"<⃒\",\"nvltrie\":\"⊴⃒\",\"nvrArr\":\"⤃\",\"nvrtrie\":\"⊵⃒\",\"nvsim\":\"∼⃒\",\"nwarhk\":\"⤣\",\"nwarr\":\"↖\",\"nwArr\":\"⇖\",\"nwarrow\":\"↖\",\"nwnear\":\"⤧\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"oast\":\"⊛\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"ocir\":\"⊚\",\"Ocy\":\"О\",\"ocy\":\"о\",\"odash\":\"⊝\",\"Odblac\":\"Ő\",\"odblac\":\"ő\",\"odiv\":\"⨸\",\"odot\":\"⊙\",\"odsold\":\"⦼\",\"OElig\":\"Œ\",\"oelig\":\"œ\",\"ofcir\":\"⦿\",\"Ofr\":\"𝔒\",\"ofr\":\"𝔬\",\"ogon\":\"˛\",\"Ograve\":\"Ò\",\"ograve\":\"ò\",\"ogt\":\"⧁\",\"ohbar\":\"⦵\",\"ohm\":\"Ω\",\"oint\":\"∮\",\"olarr\":\"↺\",\"olcir\":\"⦾\",\"olcross\":\"⦻\",\"oline\":\"‾\",\"olt\":\"⧀\",\"Omacr\":\"Ō\",\"omacr\":\"ō\",\"Omega\":\"Ω\",\"omega\":\"ω\",\"Omicron\":\"Ο\",\"omicron\":\"ο\",\"omid\":\"⦶\",\"ominus\":\"⊖\",\"Oopf\":\"𝕆\",\"oopf\":\"𝕠\",\"opar\":\"⦷\",\"OpenCurlyDoubleQuote\":\"“\",\"OpenCurlyQuote\":\"‘\",\"operp\":\"⦹\",\"oplus\":\"⊕\",\"orarr\":\"↻\",\"Or\":\"⩔\",\"or\":\"∨\",\"ord\":\"⩝\",\"order\":\"ℴ\",\"orderof\":\"ℴ\",\"ordf\":\"ª\",\"ordm\":\"º\",\"origof\":\"⊶\",\"oror\":\"⩖\",\"orslope\":\"⩗\",\"orv\":\"⩛\",\"oS\":\"Ⓢ\",\"Oscr\":\"𝒪\",\"oscr\":\"ℴ\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"osol\":\"⊘\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"otimesas\":\"⨶\",\"Otimes\":\"⨷\",\"otimes\":\"⊗\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"ovbar\":\"⌽\",\"OverBar\":\"‾\",\"OverBrace\":\"⏞\",\"OverBracket\":\"⎴\",\"OverParenthesis\":\"⏜\",\"para\":\"¶\",\"parallel\":\"∥\",\"par\":\"∥\",\"parsim\":\"⫳\",\"parsl\":\"⫽\",\"part\":\"∂\",\"PartialD\":\"∂\",\"Pcy\":\"П\",\"pcy\":\"п\",\"percnt\":\"%\",\"period\":\".\",\"permil\":\"‰\",\"perp\":\"⊥\",\"pertenk\":\"‱\",\"Pfr\":\"𝔓\",\"pfr\":\"𝔭\",\"Phi\":\"Φ\",\"phi\":\"φ\",\"phiv\":\"ϕ\",\"phmmat\":\"ℳ\",\"phone\":\"☎\",\"Pi\":\"Π\",\"pi\":\"π\",\"pitchfork\":\"⋔\",\"piv\":\"ϖ\",\"planck\":\"ℏ\",\"planckh\":\"ℎ\",\"plankv\":\"ℏ\",\"plusacir\":\"⨣\",\"plusb\":\"⊞\",\"pluscir\":\"⨢\",\"plus\":\"+\",\"plusdo\":\"∔\",\"plusdu\":\"⨥\",\"pluse\":\"⩲\",\"PlusMinus\":\"±\",\"plusmn\":\"±\",\"plussim\":\"⨦\",\"plustwo\":\"⨧\",\"pm\":\"±\",\"Poincareplane\":\"ℌ\",\"pointint\":\"⨕\",\"popf\":\"𝕡\",\"Popf\":\"ℙ\",\"pound\":\"£\",\"prap\":\"⪷\",\"Pr\":\"⪻\",\"pr\":\"≺\",\"prcue\":\"≼\",\"precapprox\":\"⪷\",\"prec\":\"≺\",\"preccurlyeq\":\"≼\",\"Precedes\":\"≺\",\"PrecedesEqual\":\"⪯\",\"PrecedesSlantEqual\":\"≼\",\"PrecedesTilde\":\"≾\",\"preceq\":\"⪯\",\"precnapprox\":\"⪹\",\"precneqq\":\"⪵\",\"precnsim\":\"⋨\",\"pre\":\"⪯\",\"prE\":\"⪳\",\"precsim\":\"≾\",\"prime\":\"′\",\"Prime\":\"″\",\"primes\":\"ℙ\",\"prnap\":\"⪹\",\"prnE\":\"⪵\",\"prnsim\":\"⋨\",\"prod\":\"∏\",\"Product\":\"∏\",\"profalar\":\"⌮\",\"profline\":\"⌒\",\"profsurf\":\"⌓\",\"prop\":\"∝\",\"Proportional\":\"∝\",\"Proportion\":\"∷\",\"propto\":\"∝\",\"prsim\":\"≾\",\"prurel\":\"⊰\",\"Pscr\":\"𝒫\",\"pscr\":\"𝓅\",\"Psi\":\"Ψ\",\"psi\":\"ψ\",\"puncsp\":\" \",\"Qfr\":\"𝔔\",\"qfr\":\"𝔮\",\"qint\":\"⨌\",\"qopf\":\"𝕢\",\"Qopf\":\"ℚ\",\"qprime\":\"⁗\",\"Qscr\":\"𝒬\",\"qscr\":\"𝓆\",\"quaternions\":\"ℍ\",\"quatint\":\"⨖\",\"quest\":\"?\",\"questeq\":\"≟\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"rAarr\":\"⇛\",\"race\":\"∽̱\",\"Racute\":\"Ŕ\",\"racute\":\"ŕ\",\"radic\":\"√\",\"raemptyv\":\"⦳\",\"rang\":\"⟩\",\"Rang\":\"⟫\",\"rangd\":\"⦒\",\"range\":\"⦥\",\"rangle\":\"⟩\",\"raquo\":\"»\",\"rarrap\":\"⥵\",\"rarrb\":\"⇥\",\"rarrbfs\":\"⤠\",\"rarrc\":\"⤳\",\"rarr\":\"→\",\"Rarr\":\"↠\",\"rArr\":\"⇒\",\"rarrfs\":\"⤞\",\"rarrhk\":\"↪\",\"rarrlp\":\"↬\",\"rarrpl\":\"⥅\",\"rarrsim\":\"⥴\",\"Rarrtl\":\"⤖\",\"rarrtl\":\"↣\",\"rarrw\":\"↝\",\"ratail\":\"⤚\",\"rAtail\":\"⤜\",\"ratio\":\"∶\",\"rationals\":\"ℚ\",\"rbarr\":\"⤍\",\"rBarr\":\"⤏\",\"RBarr\":\"⤐\",\"rbbrk\":\"❳\",\"rbrace\":\"}\",\"rbrack\":\"]\",\"rbrke\":\"⦌\",\"rbrksld\":\"⦎\",\"rbrkslu\":\"⦐\",\"Rcaron\":\"Ř\",\"rcaron\":\"ř\",\"Rcedil\":\"Ŗ\",\"rcedil\":\"ŗ\",\"rceil\":\"⌉\",\"rcub\":\"}\",\"Rcy\":\"Р\",\"rcy\":\"р\",\"rdca\":\"⤷\",\"rdldhar\":\"⥩\",\"rdquo\":\"”\",\"rdquor\":\"”\",\"rdsh\":\"↳\",\"real\":\"ℜ\",\"realine\":\"ℛ\",\"realpart\":\"ℜ\",\"reals\":\"ℝ\",\"Re\":\"ℜ\",\"rect\":\"▭\",\"reg\":\"®\",\"REG\":\"®\",\"ReverseElement\":\"∋\",\"ReverseEquilibrium\":\"⇋\",\"ReverseUpEquilibrium\":\"⥯\",\"rfisht\":\"⥽\",\"rfloor\":\"⌋\",\"rfr\":\"𝔯\",\"Rfr\":\"ℜ\",\"rHar\":\"⥤\",\"rhard\":\"⇁\",\"rharu\":\"⇀\",\"rharul\":\"⥬\",\"Rho\":\"Ρ\",\"rho\":\"ρ\",\"rhov\":\"ϱ\",\"RightAngleBracket\":\"⟩\",\"RightArrowBar\":\"⇥\",\"rightarrow\":\"→\",\"RightArrow\":\"→\",\"Rightarrow\":\"⇒\",\"RightArrowLeftArrow\":\"⇄\",\"rightarrowtail\":\"↣\",\"RightCeiling\":\"⌉\",\"RightDoubleBracket\":\"⟧\",\"RightDownTeeVector\":\"⥝\",\"RightDownVectorBar\":\"⥕\",\"RightDownVector\":\"⇂\",\"RightFloor\":\"⌋\",\"rightharpoondown\":\"⇁\",\"rightharpoonup\":\"⇀\",\"rightleftarrows\":\"⇄\",\"rightleftharpoons\":\"⇌\",\"rightrightarrows\":\"⇉\",\"rightsquigarrow\":\"↝\",\"RightTeeArrow\":\"↦\",\"RightTee\":\"⊢\",\"RightTeeVector\":\"⥛\",\"rightthreetimes\":\"⋌\",\"RightTriangleBar\":\"⧐\",\"RightTriangle\":\"⊳\",\"RightTriangleEqual\":\"⊵\",\"RightUpDownVector\":\"⥏\",\"RightUpTeeVector\":\"⥜\",\"RightUpVectorBar\":\"⥔\",\"RightUpVector\":\"↾\",\"RightVectorBar\":\"⥓\",\"RightVector\":\"⇀\",\"ring\":\"˚\",\"risingdotseq\":\"≓\",\"rlarr\":\"⇄\",\"rlhar\":\"⇌\",\"rlm\":\"\",\"rmoustache\":\"⎱\",\"rmoust\":\"⎱\",\"rnmid\":\"⫮\",\"roang\":\"⟭\",\"roarr\":\"⇾\",\"robrk\":\"⟧\",\"ropar\":\"⦆\",\"ropf\":\"𝕣\",\"Ropf\":\"ℝ\",\"roplus\":\"⨮\",\"rotimes\":\"⨵\",\"RoundImplies\":\"⥰\",\"rpar\":\")\",\"rpargt\":\"⦔\",\"rppolint\":\"⨒\",\"rrarr\":\"⇉\",\"Rrightarrow\":\"⇛\",\"rsaquo\":\"›\",\"rscr\":\"𝓇\",\"Rscr\":\"ℛ\",\"rsh\":\"↱\",\"Rsh\":\"↱\",\"rsqb\":\"]\",\"rsquo\":\"’\",\"rsquor\":\"’\",\"rthree\":\"⋌\",\"rtimes\":\"⋊\",\"rtri\":\"▹\",\"rtrie\":\"⊵\",\"rtrif\":\"▸\",\"rtriltri\":\"⧎\",\"RuleDelayed\":\"⧴\",\"ruluhar\":\"⥨\",\"rx\":\"℞\",\"Sacute\":\"Ś\",\"sacute\":\"ś\",\"sbquo\":\"‚\",\"scap\":\"⪸\",\"Scaron\":\"Š\",\"scaron\":\"š\",\"Sc\":\"⪼\",\"sc\":\"≻\",\"sccue\":\"≽\",\"sce\":\"⪰\",\"scE\":\"⪴\",\"Scedil\":\"Ş\",\"scedil\":\"ş\",\"Scirc\":\"Ŝ\",\"scirc\":\"ŝ\",\"scnap\":\"⪺\",\"scnE\":\"⪶\",\"scnsim\":\"⋩\",\"scpolint\":\"⨓\",\"scsim\":\"≿\",\"Scy\":\"С\",\"scy\":\"с\",\"sdotb\":\"⊡\",\"sdot\":\"⋅\",\"sdote\":\"⩦\",\"searhk\":\"⤥\",\"searr\":\"↘\",\"seArr\":\"⇘\",\"searrow\":\"↘\",\"sect\":\"§\",\"semi\":\";\",\"seswar\":\"⤩\",\"setminus\":\"∖\",\"setmn\":\"∖\",\"sext\":\"✶\",\"Sfr\":\"𝔖\",\"sfr\":\"𝔰\",\"sfrown\":\"⌢\",\"sharp\":\"♯\",\"SHCHcy\":\"Щ\",\"shchcy\":\"щ\",\"SHcy\":\"Ш\",\"shcy\":\"ш\",\"ShortDownArrow\":\"↓\",\"ShortLeftArrow\":\"←\",\"shortmid\":\"∣\",\"shortparallel\":\"∥\",\"ShortRightArrow\":\"→\",\"ShortUpArrow\":\"↑\",\"shy\":\"\",\"Sigma\":\"Σ\",\"sigma\":\"σ\",\"sigmaf\":\"ς\",\"sigmav\":\"ς\",\"sim\":\"∼\",\"simdot\":\"⩪\",\"sime\":\"≃\",\"simeq\":\"≃\",\"simg\":\"⪞\",\"simgE\":\"⪠\",\"siml\":\"⪝\",\"simlE\":\"⪟\",\"simne\":\"≆\",\"simplus\":\"⨤\",\"simrarr\":\"⥲\",\"slarr\":\"←\",\"SmallCircle\":\"∘\",\"smallsetminus\":\"∖\",\"smashp\":\"⨳\",\"smeparsl\":\"⧤\",\"smid\":\"∣\",\"smile\":\"⌣\",\"smt\":\"⪪\",\"smte\":\"⪬\",\"smtes\":\"⪬︀\",\"SOFTcy\":\"Ь\",\"softcy\":\"ь\",\"solbar\":\"⌿\",\"solb\":\"⧄\",\"sol\":\"/\",\"Sopf\":\"𝕊\",\"sopf\":\"𝕤\",\"spades\":\"♠\",\"spadesuit\":\"♠\",\"spar\":\"∥\",\"sqcap\":\"⊓\",\"sqcaps\":\"⊓︀\",\"sqcup\":\"⊔\",\"sqcups\":\"⊔︀\",\"Sqrt\":\"√\",\"sqsub\":\"⊏\",\"sqsube\":\"⊑\",\"sqsubset\":\"⊏\",\"sqsubseteq\":\"⊑\",\"sqsup\":\"⊐\",\"sqsupe\":\"⊒\",\"sqsupset\":\"⊐\",\"sqsupseteq\":\"⊒\",\"square\":\"□\",\"Square\":\"□\",\"SquareIntersection\":\"⊓\",\"SquareSubset\":\"⊏\",\"SquareSubsetEqual\":\"⊑\",\"SquareSuperset\":\"⊐\",\"SquareSupersetEqual\":\"⊒\",\"SquareUnion\":\"⊔\",\"squarf\":\"▪\",\"squ\":\"□\",\"squf\":\"▪\",\"srarr\":\"→\",\"Sscr\":\"𝒮\",\"sscr\":\"𝓈\",\"ssetmn\":\"∖\",\"ssmile\":\"⌣\",\"sstarf\":\"⋆\",\"Star\":\"⋆\",\"star\":\"☆\",\"starf\":\"★\",\"straightepsilon\":\"ϵ\",\"straightphi\":\"ϕ\",\"strns\":\"¯\",\"sub\":\"⊂\",\"Sub\":\"⋐\",\"subdot\":\"⪽\",\"subE\":\"⫅\",\"sube\":\"⊆\",\"subedot\":\"⫃\",\"submult\":\"⫁\",\"subnE\":\"⫋\",\"subne\":\"⊊\",\"subplus\":\"⪿\",\"subrarr\":\"⥹\",\"subset\":\"⊂\",\"Subset\":\"⋐\",\"subseteq\":\"⊆\",\"subseteqq\":\"⫅\",\"SubsetEqual\":\"⊆\",\"subsetneq\":\"⊊\",\"subsetneqq\":\"⫋\",\"subsim\":\"⫇\",\"subsub\":\"⫕\",\"subsup\":\"⫓\",\"succapprox\":\"⪸\",\"succ\":\"≻\",\"succcurlyeq\":\"≽\",\"Succeeds\":\"≻\",\"SucceedsEqual\":\"⪰\",\"SucceedsSlantEqual\":\"≽\",\"SucceedsTilde\":\"≿\",\"succeq\":\"⪰\",\"succnapprox\":\"⪺\",\"succneqq\":\"⪶\",\"succnsim\":\"⋩\",\"succsim\":\"≿\",\"SuchThat\":\"∋\",\"sum\":\"∑\",\"Sum\":\"∑\",\"sung\":\"♪\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"sup\":\"⊃\",\"Sup\":\"⋑\",\"supdot\":\"⪾\",\"supdsub\":\"⫘\",\"supE\":\"⫆\",\"supe\":\"⊇\",\"supedot\":\"⫄\",\"Superset\":\"⊃\",\"SupersetEqual\":\"⊇\",\"suphsol\":\"⟉\",\"suphsub\":\"⫗\",\"suplarr\":\"⥻\",\"supmult\":\"⫂\",\"supnE\":\"⫌\",\"supne\":\"⊋\",\"supplus\":\"⫀\",\"supset\":\"⊃\",\"Supset\":\"⋑\",\"supseteq\":\"⊇\",\"supseteqq\":\"⫆\",\"supsetneq\":\"⊋\",\"supsetneqq\":\"⫌\",\"supsim\":\"⫈\",\"supsub\":\"⫔\",\"supsup\":\"⫖\",\"swarhk\":\"⤦\",\"swarr\":\"↙\",\"swArr\":\"⇙\",\"swarrow\":\"↙\",\"swnwar\":\"⤪\",\"szlig\":\"ß\",\"Tab\":\"\\t\",\"target\":\"⌖\",\"Tau\":\"Τ\",\"tau\":\"τ\",\"tbrk\":\"⎴\",\"Tcaron\":\"Ť\",\"tcaron\":\"ť\",\"Tcedil\":\"Ţ\",\"tcedil\":\"ţ\",\"Tcy\":\"Т\",\"tcy\":\"т\",\"tdot\":\"⃛\",\"telrec\":\"⌕\",\"Tfr\":\"𝔗\",\"tfr\":\"𝔱\",\"there4\":\"∴\",\"therefore\":\"∴\",\"Therefore\":\"∴\",\"Theta\":\"Θ\",\"theta\":\"θ\",\"thetasym\":\"ϑ\",\"thetav\":\"ϑ\",\"thickapprox\":\"≈\",\"thicksim\":\"∼\",\"ThickSpace\":\" \",\"ThinSpace\":\" \",\"thinsp\":\" \",\"thkap\":\"≈\",\"thksim\":\"∼\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"tilde\":\"˜\",\"Tilde\":\"∼\",\"TildeEqual\":\"≃\",\"TildeFullEqual\":\"≅\",\"TildeTilde\":\"≈\",\"timesbar\":\"⨱\",\"timesb\":\"⊠\",\"times\":\"×\",\"timesd\":\"⨰\",\"tint\":\"∭\",\"toea\":\"⤨\",\"topbot\":\"⌶\",\"topcir\":\"⫱\",\"top\":\"⊤\",\"Topf\":\"𝕋\",\"topf\":\"𝕥\",\"topfork\":\"⫚\",\"tosa\":\"⤩\",\"tprime\":\"‴\",\"trade\":\"™\",\"TRADE\":\"™\",\"triangle\":\"▵\",\"triangledown\":\"▿\",\"triangleleft\":\"◃\",\"trianglelefteq\":\"⊴\",\"triangleq\":\"≜\",\"triangleright\":\"▹\",\"trianglerighteq\":\"⊵\",\"tridot\":\"◬\",\"trie\":\"≜\",\"triminus\":\"⨺\",\"TripleDot\":\"⃛\",\"triplus\":\"⨹\",\"trisb\":\"⧍\",\"tritime\":\"⨻\",\"trpezium\":\"⏢\",\"Tscr\":\"𝒯\",\"tscr\":\"𝓉\",\"TScy\":\"Ц\",\"tscy\":\"ц\",\"TSHcy\":\"Ћ\",\"tshcy\":\"ћ\",\"Tstrok\":\"Ŧ\",\"tstrok\":\"ŧ\",\"twixt\":\"≬\",\"twoheadleftarrow\":\"↞\",\"twoheadrightarrow\":\"↠\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"uarr\":\"↑\",\"Uarr\":\"↟\",\"uArr\":\"⇑\",\"Uarrocir\":\"⥉\",\"Ubrcy\":\"Ў\",\"ubrcy\":\"ў\",\"Ubreve\":\"Ŭ\",\"ubreve\":\"ŭ\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ucy\":\"У\",\"ucy\":\"у\",\"udarr\":\"⇅\",\"Udblac\":\"Ű\",\"udblac\":\"ű\",\"udhar\":\"⥮\",\"ufisht\":\"⥾\",\"Ufr\":\"𝔘\",\"ufr\":\"𝔲\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uHar\":\"⥣\",\"uharl\":\"↿\",\"uharr\":\"↾\",\"uhblk\":\"▀\",\"ulcorn\":\"⌜\",\"ulcorner\":\"⌜\",\"ulcrop\":\"⌏\",\"ultri\":\"◸\",\"Umacr\":\"Ū\",\"umacr\":\"ū\",\"uml\":\"¨\",\"UnderBar\":\"_\",\"UnderBrace\":\"⏟\",\"UnderBracket\":\"⎵\",\"UnderParenthesis\":\"⏝\",\"Union\":\"⋃\",\"UnionPlus\":\"⊎\",\"Uogon\":\"Ų\",\"uogon\":\"ų\",\"Uopf\":\"𝕌\",\"uopf\":\"𝕦\",\"UpArrowBar\":\"⤒\",\"uparrow\":\"↑\",\"UpArrow\":\"↑\",\"Uparrow\":\"⇑\",\"UpArrowDownArrow\":\"⇅\",\"updownarrow\":\"↕\",\"UpDownArrow\":\"↕\",\"Updownarrow\":\"⇕\",\"UpEquilibrium\":\"⥮\",\"upharpoonleft\":\"↿\",\"upharpoonright\":\"↾\",\"uplus\":\"⊎\",\"UpperLeftArrow\":\"↖\",\"UpperRightArrow\":\"↗\",\"upsi\":\"υ\",\"Upsi\":\"ϒ\",\"upsih\":\"ϒ\",\"Upsilon\":\"Υ\",\"upsilon\":\"υ\",\"UpTeeArrow\":\"↥\",\"UpTee\":\"⊥\",\"upuparrows\":\"⇈\",\"urcorn\":\"⌝\",\"urcorner\":\"⌝\",\"urcrop\":\"⌎\",\"Uring\":\"Ů\",\"uring\":\"ů\",\"urtri\":\"◹\",\"Uscr\":\"𝒰\",\"uscr\":\"𝓊\",\"utdot\":\"⋰\",\"Utilde\":\"Ũ\",\"utilde\":\"ũ\",\"utri\":\"▵\",\"utrif\":\"▴\",\"uuarr\":\"⇈\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"uwangle\":\"⦧\",\"vangrt\":\"⦜\",\"varepsilon\":\"ϵ\",\"varkappa\":\"ϰ\",\"varnothing\":\"∅\",\"varphi\":\"ϕ\",\"varpi\":\"ϖ\",\"varpropto\":\"∝\",\"varr\":\"↕\",\"vArr\":\"⇕\",\"varrho\":\"ϱ\",\"varsigma\":\"ς\",\"varsubsetneq\":\"⊊︀\",\"varsubsetneqq\":\"⫋︀\",\"varsupsetneq\":\"⊋︀\",\"varsupsetneqq\":\"⫌︀\",\"vartheta\":\"ϑ\",\"vartriangleleft\":\"⊲\",\"vartriangleright\":\"⊳\",\"vBar\":\"⫨\",\"Vbar\":\"⫫\",\"vBarv\":\"⫩\",\"Vcy\":\"В\",\"vcy\":\"в\",\"vdash\":\"⊢\",\"vDash\":\"⊨\",\"Vdash\":\"⊩\",\"VDash\":\"⊫\",\"Vdashl\":\"⫦\",\"veebar\":\"⊻\",\"vee\":\"∨\",\"Vee\":\"⋁\",\"veeeq\":\"≚\",\"vellip\":\"⋮\",\"verbar\":\"|\",\"Verbar\":\"‖\",\"vert\":\"|\",\"Vert\":\"‖\",\"VerticalBar\":\"∣\",\"VerticalLine\":\"|\",\"VerticalSeparator\":\"❘\",\"VerticalTilde\":\"≀\",\"VeryThinSpace\":\" \",\"Vfr\":\"𝔙\",\"vfr\":\"𝔳\",\"vltri\":\"⊲\",\"vnsub\":\"⊂⃒\",\"vnsup\":\"⊃⃒\",\"Vopf\":\"𝕍\",\"vopf\":\"𝕧\",\"vprop\":\"∝\",\"vrtri\":\"⊳\",\"Vscr\":\"𝒱\",\"vscr\":\"𝓋\",\"vsubnE\":\"⫋︀\",\"vsubne\":\"⊊︀\",\"vsupnE\":\"⫌︀\",\"vsupne\":\"⊋︀\",\"Vvdash\":\"⊪\",\"vzigzag\":\"⦚\",\"Wcirc\":\"Ŵ\",\"wcirc\":\"ŵ\",\"wedbar\":\"⩟\",\"wedge\":\"∧\",\"Wedge\":\"⋀\",\"wedgeq\":\"≙\",\"weierp\":\"℘\",\"Wfr\":\"𝔚\",\"wfr\":\"𝔴\",\"Wopf\":\"𝕎\",\"wopf\":\"𝕨\",\"wp\":\"℘\",\"wr\":\"≀\",\"wreath\":\"≀\",\"Wscr\":\"𝒲\",\"wscr\":\"𝓌\",\"xcap\":\"⋂\",\"xcirc\":\"◯\",\"xcup\":\"⋃\",\"xdtri\":\"▽\",\"Xfr\":\"𝔛\",\"xfr\":\"𝔵\",\"xharr\":\"⟷\",\"xhArr\":\"⟺\",\"Xi\":\"Ξ\",\"xi\":\"ξ\",\"xlarr\":\"⟵\",\"xlArr\":\"⟸\",\"xmap\":\"⟼\",\"xnis\":\"⋻\",\"xodot\":\"⨀\",\"Xopf\":\"𝕏\",\"xopf\":\"𝕩\",\"xoplus\":\"⨁\",\"xotime\":\"⨂\",\"xrarr\":\"⟶\",\"xrArr\":\"⟹\",\"Xscr\":\"𝒳\",\"xscr\":\"𝓍\",\"xsqcup\":\"⨆\",\"xuplus\":\"⨄\",\"xutri\":\"△\",\"xvee\":\"⋁\",\"xwedge\":\"⋀\",\"Yacute\":\"Ý\",\"yacute\":\"ý\",\"YAcy\":\"Я\",\"yacy\":\"я\",\"Ycirc\":\"Ŷ\",\"ycirc\":\"ŷ\",\"Ycy\":\"Ы\",\"ycy\":\"ы\",\"yen\":\"¥\",\"Yfr\":\"𝔜\",\"yfr\":\"𝔶\",\"YIcy\":\"Ї\",\"yicy\":\"ї\",\"Yopf\":\"𝕐\",\"yopf\":\"𝕪\",\"Yscr\":\"𝒴\",\"yscr\":\"𝓎\",\"YUcy\":\"Ю\",\"yucy\":\"ю\",\"yuml\":\"ÿ\",\"Yuml\":\"Ÿ\",\"Zacute\":\"Ź\",\"zacute\":\"ź\",\"Zcaron\":\"Ž\",\"zcaron\":\"ž\",\"Zcy\":\"З\",\"zcy\":\"з\",\"Zdot\":\"Ż\",\"zdot\":\"ż\",\"zeetrf\":\"ℨ\",\"ZeroWidthSpace\":\"\",\"Zeta\":\"Ζ\",\"zeta\":\"ζ\",\"zfr\":\"𝔷\",\"Zfr\":\"ℨ\",\"ZHcy\":\"Ж\",\"zhcy\":\"ж\",\"zigrarr\":\"⇝\",\"zopf\":\"𝕫\",\"Zopf\":\"ℤ\",\"Zscr\":\"𝒵\",\"zscr\":\"𝓏\",\"zwj\":\"\",\"zwnj\":\"\"}");
|
|
6426
6422
|
|
|
6427
6423
|
/***/ }),
|
|
6428
|
-
/*
|
|
6424
|
+
/* 31 */
|
|
6429
6425
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6430
6426
|
|
|
6431
6427
|
"use strict";
|
|
@@ -6530,7 +6526,7 @@ module.exports = encode;
|
|
|
6530
6526
|
|
|
6531
6527
|
|
|
6532
6528
|
/***/ }),
|
|
6533
|
-
/*
|
|
6529
|
+
/* 32 */
|
|
6534
6530
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6535
6531
|
|
|
6536
6532
|
"use strict";
|
|
@@ -6659,7 +6655,7 @@ module.exports = decode;
|
|
|
6659
6655
|
|
|
6660
6656
|
|
|
6661
6657
|
/***/ }),
|
|
6662
|
-
/*
|
|
6658
|
+
/* 33 */
|
|
6663
6659
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6664
6660
|
|
|
6665
6661
|
"use strict";
|
|
@@ -6691,7 +6687,7 @@ module.exports = function format(url) {
|
|
|
6691
6687
|
|
|
6692
6688
|
|
|
6693
6689
|
/***/ }),
|
|
6694
|
-
/*
|
|
6690
|
+
/* 34 */
|
|
6695
6691
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6696
6692
|
|
|
6697
6693
|
"use strict";
|
|
@@ -7010,27 +7006,27 @@ module.exports = urlParse;
|
|
|
7010
7006
|
|
|
7011
7007
|
|
|
7012
7008
|
/***/ }),
|
|
7013
|
-
/*
|
|
7009
|
+
/* 35 */
|
|
7014
7010
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7015
7011
|
|
|
7016
7012
|
"use strict";
|
|
7017
7013
|
|
|
7018
7014
|
|
|
7019
|
-
exports.Any = __webpack_require__(
|
|
7020
|
-
exports.Cc = __webpack_require__(
|
|
7021
|
-
exports.Cf = __webpack_require__(
|
|
7022
|
-
exports.P = __webpack_require__(
|
|
7023
|
-
exports.Z = __webpack_require__(
|
|
7015
|
+
exports.Any = __webpack_require__(15);
|
|
7016
|
+
exports.Cc = __webpack_require__(16);
|
|
7017
|
+
exports.Cf = __webpack_require__(36);
|
|
7018
|
+
exports.P = __webpack_require__(7);
|
|
7019
|
+
exports.Z = __webpack_require__(17);
|
|
7024
7020
|
|
|
7025
7021
|
|
|
7026
7022
|
/***/ }),
|
|
7027
|
-
/*
|
|
7023
|
+
/* 36 */
|
|
7028
7024
|
/***/ (function(module, exports) {
|
|
7029
7025
|
|
|
7030
7026
|
module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/
|
|
7031
7027
|
|
|
7032
7028
|
/***/ }),
|
|
7033
|
-
/*
|
|
7029
|
+
/* 37 */
|
|
7034
7030
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7035
7031
|
|
|
7036
7032
|
"use strict";
|
|
@@ -7038,13 +7034,13 @@ module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u2
|
|
|
7038
7034
|
|
|
7039
7035
|
|
|
7040
7036
|
|
|
7041
|
-
exports.parseLinkLabel = __webpack_require__(
|
|
7042
|
-
exports.parseLinkDestination = __webpack_require__(
|
|
7043
|
-
exports.parseLinkTitle = __webpack_require__(
|
|
7037
|
+
exports.parseLinkLabel = __webpack_require__(38);
|
|
7038
|
+
exports.parseLinkDestination = __webpack_require__(39);
|
|
7039
|
+
exports.parseLinkTitle = __webpack_require__(40);
|
|
7044
7040
|
|
|
7045
7041
|
|
|
7046
7042
|
/***/ }),
|
|
7047
|
-
/*
|
|
7043
|
+
/* 38 */
|
|
7048
7044
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7049
7045
|
|
|
7050
7046
|
"use strict";
|
|
@@ -7099,7 +7095,7 @@ module.exports = function parseLinkLabel(state, start, disableNested) {
|
|
|
7099
7095
|
|
|
7100
7096
|
|
|
7101
7097
|
/***/ }),
|
|
7102
|
-
/*
|
|
7098
|
+
/* 39 */
|
|
7103
7099
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7104
7100
|
|
|
7105
7101
|
"use strict";
|
|
@@ -7188,7 +7184,7 @@ module.exports = function parseLinkDestination(str, pos, max) {
|
|
|
7188
7184
|
|
|
7189
7185
|
|
|
7190
7186
|
/***/ }),
|
|
7191
|
-
/*
|
|
7187
|
+
/* 40 */
|
|
7192
7188
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7193
7189
|
|
|
7194
7190
|
"use strict";
|
|
@@ -7250,7 +7246,7 @@ module.exports = function parseLinkTitle(str, pos, max) {
|
|
|
7250
7246
|
|
|
7251
7247
|
|
|
7252
7248
|
/***/ }),
|
|
7253
|
-
/*
|
|
7249
|
+
/* 41 */
|
|
7254
7250
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7255
7251
|
|
|
7256
7252
|
"use strict";
|
|
@@ -7598,7 +7594,7 @@ module.exports = Renderer;
|
|
|
7598
7594
|
|
|
7599
7595
|
|
|
7600
7596
|
/***/ }),
|
|
7601
|
-
/*
|
|
7597
|
+
/* 42 */
|
|
7602
7598
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7603
7599
|
|
|
7604
7600
|
"use strict";
|
|
@@ -7611,16 +7607,16 @@ module.exports = Renderer;
|
|
|
7611
7607
|
|
|
7612
7608
|
|
|
7613
7609
|
|
|
7614
|
-
var Ruler = __webpack_require__(
|
|
7610
|
+
var Ruler = __webpack_require__(8);
|
|
7615
7611
|
|
|
7616
7612
|
|
|
7617
7613
|
var _rules = [
|
|
7618
|
-
[ 'normalize', __webpack_require__(
|
|
7619
|
-
[ 'block', __webpack_require__(
|
|
7620
|
-
[ 'inline', __webpack_require__(
|
|
7621
|
-
[ 'linkify', __webpack_require__(
|
|
7622
|
-
[ 'replacements', __webpack_require__(
|
|
7623
|
-
[ 'smartquotes', __webpack_require__(
|
|
7614
|
+
[ 'normalize', __webpack_require__(43) ],
|
|
7615
|
+
[ 'block', __webpack_require__(44) ],
|
|
7616
|
+
[ 'inline', __webpack_require__(45) ],
|
|
7617
|
+
[ 'linkify', __webpack_require__(46) ],
|
|
7618
|
+
[ 'replacements', __webpack_require__(47) ],
|
|
7619
|
+
[ 'smartquotes', __webpack_require__(48) ]
|
|
7624
7620
|
];
|
|
7625
7621
|
|
|
7626
7622
|
|
|
@@ -7656,14 +7652,14 @@ Core.prototype.process = function (state) {
|
|
|
7656
7652
|
}
|
|
7657
7653
|
};
|
|
7658
7654
|
|
|
7659
|
-
Core.prototype.State = __webpack_require__(
|
|
7655
|
+
Core.prototype.State = __webpack_require__(49);
|
|
7660
7656
|
|
|
7661
7657
|
|
|
7662
7658
|
module.exports = Core;
|
|
7663
7659
|
|
|
7664
7660
|
|
|
7665
7661
|
/***/ }),
|
|
7666
|
-
/*
|
|
7662
|
+
/* 43 */
|
|
7667
7663
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7668
7664
|
|
|
7669
7665
|
"use strict";
|
|
@@ -7691,7 +7687,7 @@ module.exports = function normalize(state) {
|
|
|
7691
7687
|
|
|
7692
7688
|
|
|
7693
7689
|
/***/ }),
|
|
7694
|
-
/*
|
|
7690
|
+
/* 44 */
|
|
7695
7691
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7696
7692
|
|
|
7697
7693
|
"use strict";
|
|
@@ -7714,7 +7710,7 @@ module.exports = function block(state) {
|
|
|
7714
7710
|
|
|
7715
7711
|
|
|
7716
7712
|
/***/ }),
|
|
7717
|
-
/*
|
|
7713
|
+
/* 45 */
|
|
7718
7714
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7719
7715
|
|
|
7720
7716
|
"use strict";
|
|
@@ -7734,7 +7730,7 @@ module.exports = function inline(state) {
|
|
|
7734
7730
|
|
|
7735
7731
|
|
|
7736
7732
|
/***/ }),
|
|
7737
|
-
/*
|
|
7733
|
+
/* 46 */
|
|
7738
7734
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7739
7735
|
|
|
7740
7736
|
"use strict";
|
|
@@ -7874,7 +7870,7 @@ module.exports = function linkify(state) {
|
|
|
7874
7870
|
|
|
7875
7871
|
|
|
7876
7872
|
/***/ }),
|
|
7877
|
-
/*
|
|
7873
|
+
/* 47 */
|
|
7878
7874
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7879
7875
|
|
|
7880
7876
|
"use strict";
|
|
@@ -7988,7 +7984,7 @@ module.exports = function replace(state) {
|
|
|
7988
7984
|
|
|
7989
7985
|
|
|
7990
7986
|
/***/ }),
|
|
7991
|
-
/*
|
|
7987
|
+
/* 48 */
|
|
7992
7988
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7993
7989
|
|
|
7994
7990
|
"use strict";
|
|
@@ -8196,7 +8192,7 @@ module.exports = function smartquotes(state) {
|
|
|
8196
8192
|
|
|
8197
8193
|
|
|
8198
8194
|
/***/ }),
|
|
8199
|
-
/*
|
|
8195
|
+
/* 49 */
|
|
8200
8196
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8201
8197
|
|
|
8202
8198
|
"use strict";
|
|
@@ -8204,7 +8200,7 @@ module.exports = function smartquotes(state) {
|
|
|
8204
8200
|
//
|
|
8205
8201
|
|
|
8206
8202
|
|
|
8207
|
-
var Token = __webpack_require__(
|
|
8203
|
+
var Token = __webpack_require__(9);
|
|
8208
8204
|
|
|
8209
8205
|
|
|
8210
8206
|
function StateCore(src, md, env) {
|
|
@@ -8223,7 +8219,7 @@ module.exports = StateCore;
|
|
|
8223
8219
|
|
|
8224
8220
|
|
|
8225
8221
|
/***/ }),
|
|
8226
|
-
/*
|
|
8222
|
+
/* 50 */
|
|
8227
8223
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8228
8224
|
|
|
8229
8225
|
"use strict";
|
|
@@ -8235,23 +8231,23 @@ module.exports = StateCore;
|
|
|
8235
8231
|
|
|
8236
8232
|
|
|
8237
8233
|
|
|
8238
|
-
var Ruler = __webpack_require__(
|
|
8234
|
+
var Ruler = __webpack_require__(8);
|
|
8239
8235
|
|
|
8240
8236
|
|
|
8241
8237
|
var _rules = [
|
|
8242
8238
|
// First 2 params - rule name & source. Secondary array - list of rules,
|
|
8243
8239
|
// which can be terminated by this one.
|
|
8244
|
-
[ 'table', __webpack_require__(
|
|
8245
|
-
[ 'code', __webpack_require__(
|
|
8246
|
-
[ 'fence', __webpack_require__(
|
|
8247
|
-
[ 'blockquote', __webpack_require__(
|
|
8248
|
-
[ 'hr', __webpack_require__(
|
|
8249
|
-
[ 'list', __webpack_require__(
|
|
8250
|
-
[ 'reference', __webpack_require__(
|
|
8251
|
-
[ 'html_block', __webpack_require__(
|
|
8252
|
-
[ 'heading', __webpack_require__(
|
|
8253
|
-
[ 'lheading', __webpack_require__(
|
|
8254
|
-
[ 'paragraph', __webpack_require__(
|
|
8240
|
+
[ 'table', __webpack_require__(51), [ 'paragraph', 'reference' ] ],
|
|
8241
|
+
[ 'code', __webpack_require__(52) ],
|
|
8242
|
+
[ 'fence', __webpack_require__(53), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
|
|
8243
|
+
[ 'blockquote', __webpack_require__(54), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
|
|
8244
|
+
[ 'hr', __webpack_require__(55), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
|
|
8245
|
+
[ 'list', __webpack_require__(56), [ 'paragraph', 'reference', 'blockquote' ] ],
|
|
8246
|
+
[ 'reference', __webpack_require__(57) ],
|
|
8247
|
+
[ 'html_block', __webpack_require__(58), [ 'paragraph', 'reference', 'blockquote' ] ],
|
|
8248
|
+
[ 'heading', __webpack_require__(60), [ 'paragraph', 'reference', 'blockquote' ] ],
|
|
8249
|
+
[ 'lheading', __webpack_require__(61) ],
|
|
8250
|
+
[ 'paragraph', __webpack_require__(62) ]
|
|
8255
8251
|
];
|
|
8256
8252
|
|
|
8257
8253
|
|
|
@@ -8345,14 +8341,14 @@ ParserBlock.prototype.parse = function (src, md, env, outTokens) {
|
|
|
8345
8341
|
};
|
|
8346
8342
|
|
|
8347
8343
|
|
|
8348
|
-
ParserBlock.prototype.State = __webpack_require__(
|
|
8344
|
+
ParserBlock.prototype.State = __webpack_require__(63);
|
|
8349
8345
|
|
|
8350
8346
|
|
|
8351
8347
|
module.exports = ParserBlock;
|
|
8352
8348
|
|
|
8353
8349
|
|
|
8354
8350
|
/***/ }),
|
|
8355
|
-
/*
|
|
8351
|
+
/* 51 */
|
|
8356
8352
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8357
8353
|
|
|
8358
8354
|
"use strict";
|
|
@@ -8580,7 +8576,7 @@ module.exports = function table(state, startLine, endLine, silent) {
|
|
|
8580
8576
|
|
|
8581
8577
|
|
|
8582
8578
|
/***/ }),
|
|
8583
|
-
/*
|
|
8579
|
+
/* 52 */
|
|
8584
8580
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8585
8581
|
|
|
8586
8582
|
"use strict";
|
|
@@ -8621,7 +8617,7 @@ module.exports = function code(state, startLine, endLine/*, silent*/) {
|
|
|
8621
8617
|
|
|
8622
8618
|
|
|
8623
8619
|
/***/ }),
|
|
8624
|
-
/*
|
|
8620
|
+
/* 53 */
|
|
8625
8621
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8626
8622
|
|
|
8627
8623
|
"use strict";
|
|
@@ -8726,7 +8722,7 @@ module.exports = function fence(state, startLine, endLine, silent) {
|
|
|
8726
8722
|
|
|
8727
8723
|
|
|
8728
8724
|
/***/ }),
|
|
8729
|
-
/*
|
|
8725
|
+
/* 54 */
|
|
8730
8726
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8731
8727
|
|
|
8732
8728
|
"use strict";
|
|
@@ -9017,7 +9013,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) {
|
|
|
9017
9013
|
|
|
9018
9014
|
|
|
9019
9015
|
/***/ }),
|
|
9020
|
-
/*
|
|
9016
|
+
/* 55 */
|
|
9021
9017
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9022
9018
|
|
|
9023
9019
|
"use strict";
|
|
@@ -9069,7 +9065,7 @@ module.exports = function hr(state, startLine, endLine, silent) {
|
|
|
9069
9065
|
|
|
9070
9066
|
|
|
9071
9067
|
/***/ }),
|
|
9072
|
-
/*
|
|
9068
|
+
/* 56 */
|
|
9073
9069
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9074
9070
|
|
|
9075
9071
|
"use strict";
|
|
@@ -9440,7 +9436,7 @@ module.exports = function list(state, startLine, endLine, silent) {
|
|
|
9440
9436
|
|
|
9441
9437
|
|
|
9442
9438
|
/***/ }),
|
|
9443
|
-
/*
|
|
9439
|
+
/* 57 */
|
|
9444
9440
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9445
9441
|
|
|
9446
9442
|
"use strict";
|
|
@@ -9645,7 +9641,7 @@ module.exports = function reference(state, startLine, _endLine, silent) {
|
|
|
9645
9641
|
|
|
9646
9642
|
|
|
9647
9643
|
/***/ }),
|
|
9648
|
-
/*
|
|
9644
|
+
/* 58 */
|
|
9649
9645
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9650
9646
|
|
|
9651
9647
|
"use strict";
|
|
@@ -9654,8 +9650,8 @@ module.exports = function reference(state, startLine, _endLine, silent) {
|
|
|
9654
9650
|
|
|
9655
9651
|
|
|
9656
9652
|
|
|
9657
|
-
var block_names = __webpack_require__(
|
|
9658
|
-
var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(
|
|
9653
|
+
var block_names = __webpack_require__(59);
|
|
9654
|
+
var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(18).HTML_OPEN_CLOSE_TAG_RE;
|
|
9659
9655
|
|
|
9660
9656
|
// An array of opening and corresponding closing sequences for html tags,
|
|
9661
9657
|
// last argument defines whether it can terminate a paragraph or not
|
|
@@ -9726,7 +9722,7 @@ module.exports = function html_block(state, startLine, endLine, silent) {
|
|
|
9726
9722
|
|
|
9727
9723
|
|
|
9728
9724
|
/***/ }),
|
|
9729
|
-
/*
|
|
9725
|
+
/* 59 */
|
|
9730
9726
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9731
9727
|
|
|
9732
9728
|
"use strict";
|
|
@@ -9803,7 +9799,7 @@ module.exports = [
|
|
|
9803
9799
|
|
|
9804
9800
|
|
|
9805
9801
|
/***/ }),
|
|
9806
|
-
/*
|
|
9802
|
+
/* 60 */
|
|
9807
9803
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9808
9804
|
|
|
9809
9805
|
"use strict";
|
|
@@ -9865,7 +9861,7 @@ module.exports = function heading(state, startLine, endLine, silent) {
|
|
|
9865
9861
|
|
|
9866
9862
|
|
|
9867
9863
|
/***/ }),
|
|
9868
|
-
/*
|
|
9864
|
+
/* 61 */
|
|
9869
9865
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9870
9866
|
|
|
9871
9867
|
"use strict";
|
|
@@ -9955,7 +9951,7 @@ module.exports = function lheading(state, startLine, endLine/*, silent*/) {
|
|
|
9955
9951
|
|
|
9956
9952
|
|
|
9957
9953
|
/***/ }),
|
|
9958
|
-
/*
|
|
9954
|
+
/* 62 */
|
|
9959
9955
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9960
9956
|
|
|
9961
9957
|
"use strict";
|
|
@@ -10014,7 +10010,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) {
|
|
|
10014
10010
|
|
|
10015
10011
|
|
|
10016
10012
|
/***/ }),
|
|
10017
|
-
/*
|
|
10013
|
+
/* 63 */
|
|
10018
10014
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10019
10015
|
|
|
10020
10016
|
"use strict";
|
|
@@ -10022,7 +10018,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) {
|
|
|
10022
10018
|
|
|
10023
10019
|
|
|
10024
10020
|
|
|
10025
|
-
var Token = __webpack_require__(
|
|
10021
|
+
var Token = __webpack_require__(9);
|
|
10026
10022
|
var isSpace = __webpack_require__(1).isSpace;
|
|
10027
10023
|
|
|
10028
10024
|
|
|
@@ -10252,7 +10248,7 @@ module.exports = StateBlock;
|
|
|
10252
10248
|
|
|
10253
10249
|
|
|
10254
10250
|
/***/ }),
|
|
10255
|
-
/*
|
|
10251
|
+
/* 64 */
|
|
10256
10252
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10257
10253
|
|
|
10258
10254
|
"use strict";
|
|
@@ -10264,31 +10260,31 @@ module.exports = StateBlock;
|
|
|
10264
10260
|
|
|
10265
10261
|
|
|
10266
10262
|
|
|
10267
|
-
var Ruler = __webpack_require__(
|
|
10263
|
+
var Ruler = __webpack_require__(8);
|
|
10268
10264
|
|
|
10269
10265
|
|
|
10270
10266
|
////////////////////////////////////////////////////////////////////////////////
|
|
10271
10267
|
// Parser rules
|
|
10272
10268
|
|
|
10273
10269
|
var _rules = [
|
|
10274
|
-
[ 'text', __webpack_require__(
|
|
10275
|
-
[ 'newline', __webpack_require__(
|
|
10276
|
-
[ 'escape', __webpack_require__(
|
|
10277
|
-
[ 'backticks', __webpack_require__(
|
|
10278
|
-
[ 'strikethrough', __webpack_require__(
|
|
10279
|
-
[ 'emphasis', __webpack_require__(
|
|
10280
|
-
[ 'link', __webpack_require__(
|
|
10281
|
-
[ 'image', __webpack_require__(
|
|
10282
|
-
[ 'autolink', __webpack_require__(
|
|
10283
|
-
[ 'html_inline', __webpack_require__(
|
|
10284
|
-
[ 'entity', __webpack_require__(
|
|
10270
|
+
[ 'text', __webpack_require__(65) ],
|
|
10271
|
+
[ 'newline', __webpack_require__(66) ],
|
|
10272
|
+
[ 'escape', __webpack_require__(67) ],
|
|
10273
|
+
[ 'backticks', __webpack_require__(68) ],
|
|
10274
|
+
[ 'strikethrough', __webpack_require__(19).tokenize ],
|
|
10275
|
+
[ 'emphasis', __webpack_require__(20).tokenize ],
|
|
10276
|
+
[ 'link', __webpack_require__(69) ],
|
|
10277
|
+
[ 'image', __webpack_require__(70) ],
|
|
10278
|
+
[ 'autolink', __webpack_require__(71) ],
|
|
10279
|
+
[ 'html_inline', __webpack_require__(72) ],
|
|
10280
|
+
[ 'entity', __webpack_require__(73) ]
|
|
10285
10281
|
];
|
|
10286
10282
|
|
|
10287
10283
|
var _rules2 = [
|
|
10288
|
-
[ 'balance_pairs', __webpack_require__(
|
|
10289
|
-
[ 'strikethrough', __webpack_require__(
|
|
10290
|
-
[ 'emphasis', __webpack_require__(
|
|
10291
|
-
[ 'text_collapse', __webpack_require__(
|
|
10284
|
+
[ 'balance_pairs', __webpack_require__(74) ],
|
|
10285
|
+
[ 'strikethrough', __webpack_require__(19).postProcess ],
|
|
10286
|
+
[ 'emphasis', __webpack_require__(20).postProcess ],
|
|
10287
|
+
[ 'text_collapse', __webpack_require__(75) ]
|
|
10292
10288
|
];
|
|
10293
10289
|
|
|
10294
10290
|
|
|
@@ -10429,14 +10425,14 @@ ParserInline.prototype.parse = function (str, md, env, outTokens) {
|
|
|
10429
10425
|
};
|
|
10430
10426
|
|
|
10431
10427
|
|
|
10432
|
-
ParserInline.prototype.State = __webpack_require__(
|
|
10428
|
+
ParserInline.prototype.State = __webpack_require__(76);
|
|
10433
10429
|
|
|
10434
10430
|
|
|
10435
10431
|
module.exports = ParserInline;
|
|
10436
10432
|
|
|
10437
10433
|
|
|
10438
10434
|
/***/ }),
|
|
10439
|
-
/*
|
|
10435
|
+
/* 65 */
|
|
10440
10436
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10441
10437
|
|
|
10442
10438
|
"use strict";
|
|
@@ -10532,7 +10528,7 @@ module.exports = function text(state, silent) {
|
|
|
10532
10528
|
|
|
10533
10529
|
|
|
10534
10530
|
/***/ }),
|
|
10535
|
-
/*
|
|
10531
|
+
/* 66 */
|
|
10536
10532
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10537
10533
|
|
|
10538
10534
|
"use strict";
|
|
@@ -10585,7 +10581,7 @@ module.exports = function newline(state, silent) {
|
|
|
10585
10581
|
|
|
10586
10582
|
|
|
10587
10583
|
/***/ }),
|
|
10588
|
-
/*
|
|
10584
|
+
/* 67 */
|
|
10589
10585
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10590
10586
|
|
|
10591
10587
|
"use strict";
|
|
@@ -10644,7 +10640,7 @@ module.exports = function escape(state, silent) {
|
|
|
10644
10640
|
|
|
10645
10641
|
|
|
10646
10642
|
/***/ }),
|
|
10647
|
-
/*
|
|
10643
|
+
/* 68 */
|
|
10648
10644
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10649
10645
|
|
|
10650
10646
|
"use strict";
|
|
@@ -10714,7 +10710,7 @@ module.exports = function backtick(state, silent) {
|
|
|
10714
10710
|
|
|
10715
10711
|
|
|
10716
10712
|
/***/ }),
|
|
10717
|
-
/*
|
|
10713
|
+
/* 69 */
|
|
10718
10714
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10719
10715
|
|
|
10720
10716
|
"use strict";
|
|
@@ -10869,7 +10865,7 @@ module.exports = function link(state, silent) {
|
|
|
10869
10865
|
|
|
10870
10866
|
|
|
10871
10867
|
/***/ }),
|
|
10872
|
-
/*
|
|
10868
|
+
/* 70 */
|
|
10873
10869
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10874
10870
|
|
|
10875
10871
|
"use strict";
|
|
@@ -11028,7 +11024,7 @@ module.exports = function image(state, silent) {
|
|
|
11028
11024
|
|
|
11029
11025
|
|
|
11030
11026
|
/***/ }),
|
|
11031
|
-
/*
|
|
11027
|
+
/* 71 */
|
|
11032
11028
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11033
11029
|
|
|
11034
11030
|
"use strict";
|
|
@@ -11111,7 +11107,7 @@ module.exports = function autolink(state, silent) {
|
|
|
11111
11107
|
|
|
11112
11108
|
|
|
11113
11109
|
/***/ }),
|
|
11114
|
-
/*
|
|
11110
|
+
/* 72 */
|
|
11115
11111
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11116
11112
|
|
|
11117
11113
|
"use strict";
|
|
@@ -11120,7 +11116,7 @@ module.exports = function autolink(state, silent) {
|
|
|
11120
11116
|
|
|
11121
11117
|
|
|
11122
11118
|
|
|
11123
|
-
var HTML_TAG_RE = __webpack_require__(
|
|
11119
|
+
var HTML_TAG_RE = __webpack_require__(18).HTML_TAG_RE;
|
|
11124
11120
|
|
|
11125
11121
|
|
|
11126
11122
|
function isLetter(ch) {
|
|
@@ -11165,7 +11161,7 @@ module.exports = function html_inline(state, silent) {
|
|
|
11165
11161
|
|
|
11166
11162
|
|
|
11167
11163
|
/***/ }),
|
|
11168
|
-
/*
|
|
11164
|
+
/* 73 */
|
|
11169
11165
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11170
11166
|
|
|
11171
11167
|
"use strict";
|
|
@@ -11173,7 +11169,7 @@ module.exports = function html_inline(state, silent) {
|
|
|
11173
11169
|
|
|
11174
11170
|
|
|
11175
11171
|
|
|
11176
|
-
var entities = __webpack_require__(
|
|
11172
|
+
var entities = __webpack_require__(13);
|
|
11177
11173
|
var has = __webpack_require__(1).has;
|
|
11178
11174
|
var isValidEntityCode = __webpack_require__(1).isValidEntityCode;
|
|
11179
11175
|
var fromCodePoint = __webpack_require__(1).fromCodePoint;
|
|
@@ -11220,7 +11216,7 @@ module.exports = function entity(state, silent) {
|
|
|
11220
11216
|
|
|
11221
11217
|
|
|
11222
11218
|
/***/ }),
|
|
11223
|
-
/*
|
|
11219
|
+
/* 74 */
|
|
11224
11220
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11225
11221
|
|
|
11226
11222
|
"use strict";
|
|
@@ -11357,7 +11353,7 @@ module.exports = function link_pairs(state) {
|
|
|
11357
11353
|
|
|
11358
11354
|
|
|
11359
11355
|
/***/ }),
|
|
11360
|
-
/*
|
|
11356
|
+
/* 75 */
|
|
11361
11357
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11362
11358
|
|
|
11363
11359
|
"use strict";
|
|
@@ -11405,7 +11401,7 @@ module.exports = function text_collapse(state) {
|
|
|
11405
11401
|
|
|
11406
11402
|
|
|
11407
11403
|
/***/ }),
|
|
11408
|
-
/*
|
|
11404
|
+
/* 76 */
|
|
11409
11405
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11410
11406
|
|
|
11411
11407
|
"use strict";
|
|
@@ -11414,7 +11410,7 @@ module.exports = function text_collapse(state) {
|
|
|
11414
11410
|
|
|
11415
11411
|
|
|
11416
11412
|
|
|
11417
|
-
var Token = __webpack_require__(
|
|
11413
|
+
var Token = __webpack_require__(9);
|
|
11418
11414
|
var isWhiteSpace = __webpack_require__(1).isWhiteSpace;
|
|
11419
11415
|
var isPunctChar = __webpack_require__(1).isPunctChar;
|
|
11420
11416
|
var isMdAsciiPunct = __webpack_require__(1).isMdAsciiPunct;
|
|
@@ -11566,7 +11562,7 @@ module.exports = StateInline;
|
|
|
11566
11562
|
|
|
11567
11563
|
|
|
11568
11564
|
/***/ }),
|
|
11569
|
-
/*
|
|
11565
|
+
/* 77 */
|
|
11570
11566
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11571
11567
|
|
|
11572
11568
|
"use strict";
|
|
@@ -11722,7 +11718,7 @@ function createNormalizer() {
|
|
|
11722
11718
|
function compile(self) {
|
|
11723
11719
|
|
|
11724
11720
|
// Load & clone RE patterns.
|
|
11725
|
-
var re = self.re = __webpack_require__(
|
|
11721
|
+
var re = self.re = __webpack_require__(78)(self.__opts__);
|
|
11726
11722
|
|
|
11727
11723
|
// Define dynamic patterns
|
|
11728
11724
|
var tlds = self.__tlds__.slice();
|
|
@@ -12209,7 +12205,7 @@ module.exports = LinkifyIt;
|
|
|
12209
12205
|
|
|
12210
12206
|
|
|
12211
12207
|
/***/ }),
|
|
12212
|
-
/*
|
|
12208
|
+
/* 78 */
|
|
12213
12209
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12214
12210
|
|
|
12215
12211
|
"use strict";
|
|
@@ -12220,10 +12216,10 @@ module.exports = function (opts) {
|
|
|
12220
12216
|
var re = {};
|
|
12221
12217
|
|
|
12222
12218
|
// Use direct extract instead of `regenerate` to reduse browserified size
|
|
12223
|
-
re.src_Any = __webpack_require__(
|
|
12224
|
-
re.src_Cc = __webpack_require__(
|
|
12225
|
-
re.src_Z = __webpack_require__(
|
|
12226
|
-
re.src_P = __webpack_require__(
|
|
12219
|
+
re.src_Any = __webpack_require__(15).source;
|
|
12220
|
+
re.src_Cc = __webpack_require__(16).source;
|
|
12221
|
+
re.src_Z = __webpack_require__(17).source;
|
|
12222
|
+
re.src_P = __webpack_require__(7).source;
|
|
12227
12223
|
|
|
12228
12224
|
// \p{\Z\P\Cc\CF} (white spaces + control + format + punctuation)
|
|
12229
12225
|
re.src_ZPCc = [ re.src_Z, re.src_P, re.src_Cc ].join('|');
|
|
@@ -12397,7 +12393,7 @@ module.exports = function (opts) {
|
|
|
12397
12393
|
|
|
12398
12394
|
|
|
12399
12395
|
/***/ }),
|
|
12400
|
-
/*
|
|
12396
|
+
/* 79 */
|
|
12401
12397
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12402
12398
|
|
|
12403
12399
|
/* WEBPACK VAR INJECTION */(function(module, global) {var __WEBPACK_AMD_DEFINE_RESULT__;/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
@@ -12920,10 +12916,10 @@ module.exports = function (opts) {
|
|
|
12920
12916
|
|
|
12921
12917
|
}(this));
|
|
12922
12918
|
|
|
12923
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(
|
|
12919
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(24)(module), __webpack_require__(11)))
|
|
12924
12920
|
|
|
12925
12921
|
/***/ }),
|
|
12926
|
-
/*
|
|
12922
|
+
/* 80 */
|
|
12927
12923
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12928
12924
|
|
|
12929
12925
|
"use strict";
|
|
@@ -12971,7 +12967,7 @@ module.exports = {
|
|
|
12971
12967
|
|
|
12972
12968
|
|
|
12973
12969
|
/***/ }),
|
|
12974
|
-
/*
|
|
12970
|
+
/* 81 */
|
|
12975
12971
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12976
12972
|
|
|
12977
12973
|
"use strict";
|
|
@@ -13040,7 +13036,7 @@ module.exports = {
|
|
|
13040
13036
|
|
|
13041
13037
|
|
|
13042
13038
|
/***/ }),
|
|
13043
|
-
/*
|
|
13039
|
+
/* 82 */
|
|
13044
13040
|
/***/ (function(module, exports, __webpack_require__) {
|
|
13045
13041
|
|
|
13046
13042
|
"use strict";
|