astexplorer.app
Version:
https://astexplorer.net with ES Modules support and Hot Reloading
1 lines • 127 kB
JavaScript
(window.webpackJsonp=window.webpackJsonp||[]).push([[63],{"./node_modules/domelementtype/lib/index.js":function(module,exports,__webpack_require__){"use strict";eval('\nObject.defineProperty(exports, "__esModule", { value: true });\nexports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.Root = exports.isTag = exports.ElementType = void 0;\n/** Types of elements found in htmlparser2\'s DOM */\nvar ElementType;\n(function (ElementType) {\n /** Type for the root element of a document */\n ElementType["Root"] = "root";\n /** Type for Text */\n ElementType["Text"] = "text";\n /** Type for <? ... ?> */\n ElementType["Directive"] = "directive";\n /** Type for \x3c!-- ... --\x3e */\n ElementType["Comment"] = "comment";\n /** Type for <script> tags */\n ElementType["Script"] = "script";\n /** Type for <style> tags */\n ElementType["Style"] = "style";\n /** Type for Any tag */\n ElementType["Tag"] = "tag";\n /** Type for <![CDATA[ ... ]]> */\n ElementType["CDATA"] = "cdata";\n /** Type for <!doctype ...> */\n ElementType["Doctype"] = "doctype";\n})(ElementType = exports.ElementType || (exports.ElementType = {}));\n/**\n * Tests whether an element is a tag or not.\n *\n * @param elem Element to test\n */\nfunction isTag(elem) {\n return (elem.type === ElementType.Tag ||\n elem.type === ElementType.Script ||\n elem.type === ElementType.Style);\n}\nexports.isTag = isTag;\n// Exports for backwards compatibility\n/** Type for the root element of a document */\nexports.Root = ElementType.Root;\n/** Type for Text */\nexports.Text = ElementType.Text;\n/** Type for <? ... ?> */\nexports.Directive = ElementType.Directive;\n/** Type for \x3c!-- ... --\x3e */\nexports.Comment = ElementType.Comment;\n/** Type for <script> tags */\nexports.Script = ElementType.Script;\n/** Type for <style> tags */\nexports.Style = ElementType.Style;\n/** Type for Any tag */\nexports.Tag = ElementType.Tag;\n/** Type for <![CDATA[ ... ]]> */\nexports.CDATA = ElementType.CDATA;\n/** Type for <!doctype ...> */\nexports.Doctype = ElementType.Doctype;\n\n\n//# sourceURL=webpack:///./node_modules/domelementtype/lib/index.js?')},"./node_modules/domhandler/lib/index.js":function(module,exports,__webpack_require__){"use strict";eval('\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, "__esModule", { value: true });\nexports.DomHandler = void 0;\nvar domelementtype_1 = __webpack_require__("./node_modules/domelementtype/lib/index.js");\nvar node_1 = __webpack_require__("./node_modules/domhandler/lib/node.js");\n__exportStar(__webpack_require__("./node_modules/domhandler/lib/node.js"), exports);\nvar reWhitespace = /\\s+/g;\n// Default options\nvar defaultOpts = {\n normalizeWhitespace: false,\n withStartIndices: false,\n withEndIndices: false,\n};\nvar DomHandler = /** @class */ (function () {\n /**\n * @param callback Called once parsing has completed.\n * @param options Settings for the handler.\n * @param elementCB Callback whenever a tag is closed.\n */\n function DomHandler(callback, options, elementCB) {\n /** The elements of the DOM */\n this.dom = [];\n /** The root element for the DOM */\n this.root = new node_1.Document(this.dom);\n /** Indicated whether parsing has been completed. */\n this.done = false;\n /** Stack of open tags. */\n this.tagStack = [this.root];\n /** A data node that is still being written to. */\n this.lastNode = null;\n /** Reference to the parser instance. Used for location information. */\n this.parser = null;\n // Make it possible to skip arguments, for backwards-compatibility\n if (typeof options === "function") {\n elementCB = options;\n options = defaultOpts;\n }\n if (typeof callback === "object") {\n options = callback;\n callback = undefined;\n }\n this.callback = callback !== null && callback !== void 0 ? callback : null;\n this.options = options !== null && options !== void 0 ? options : defaultOpts;\n this.elementCB = elementCB !== null && elementCB !== void 0 ? elementCB : null;\n }\n DomHandler.prototype.onparserinit = function (parser) {\n this.parser = parser;\n };\n // Resets the handler back to starting state\n DomHandler.prototype.onreset = function () {\n var _a;\n this.dom = [];\n this.root = new node_1.Document(this.dom);\n this.done = false;\n this.tagStack = [this.root];\n this.lastNode = null;\n this.parser = (_a = this.parser) !== null && _a !== void 0 ? _a : null;\n };\n // Signals the handler that parsing is done\n DomHandler.prototype.onend = function () {\n if (this.done)\n return;\n this.done = true;\n this.parser = null;\n this.handleCallback(null);\n };\n DomHandler.prototype.onerror = function (error) {\n this.handleCallback(error);\n };\n DomHandler.prototype.onclosetag = function () {\n this.lastNode = null;\n var elem = this.tagStack.pop();\n if (this.options.withEndIndices) {\n elem.endIndex = this.parser.endIndex;\n }\n if (this.elementCB)\n this.elementCB(elem);\n };\n DomHandler.prototype.onopentag = function (name, attribs) {\n var type = this.options.xmlMode ? domelementtype_1.ElementType.Tag : undefined;\n var element = new node_1.Element(name, attribs, undefined, type);\n this.addNode(element);\n this.tagStack.push(element);\n };\n DomHandler.prototype.ontext = function (data) {\n var normalizeWhitespace = this.options.normalizeWhitespace;\n var lastNode = this.lastNode;\n if (lastNode && lastNode.type === domelementtype_1.ElementType.Text) {\n if (normalizeWhitespace) {\n lastNode.data = (lastNode.data + data).replace(reWhitespace, " ");\n }\n else {\n lastNode.data += data;\n }\n }\n else {\n if (normalizeWhitespace) {\n data = data.replace(reWhitespace, " ");\n }\n var node = new node_1.Text(data);\n this.addNode(node);\n this.lastNode = node;\n }\n };\n DomHandler.prototype.oncomment = function (data) {\n if (this.lastNode && this.lastNode.type === domelementtype_1.ElementType.Comment) {\n this.lastNode.data += data;\n return;\n }\n var node = new node_1.Comment(data);\n this.addNode(node);\n this.lastNode = node;\n };\n DomHandler.prototype.oncommentend = function () {\n this.lastNode = null;\n };\n DomHandler.prototype.oncdatastart = function () {\n var text = new node_1.Text("");\n var node = new node_1.NodeWithChildren(domelementtype_1.ElementType.CDATA, [text]);\n this.addNode(node);\n text.parent = node;\n this.lastNode = text;\n };\n DomHandler.prototype.oncdataend = function () {\n this.lastNode = null;\n };\n DomHandler.prototype.onprocessinginstruction = function (name, data) {\n var node = new node_1.ProcessingInstruction(name, data);\n this.addNode(node);\n };\n DomHandler.prototype.handleCallback = function (error) {\n if (typeof this.callback === "function") {\n this.callback(error, this.dom);\n }\n else if (error) {\n throw error;\n }\n };\n DomHandler.prototype.addNode = function (node) {\n var parent = this.tagStack[this.tagStack.length - 1];\n var previousSibling = parent.children[parent.children.length - 1];\n if (this.options.withStartIndices) {\n node.startIndex = this.parser.startIndex;\n }\n if (this.options.withEndIndices) {\n node.endIndex = this.parser.endIndex;\n }\n parent.children.push(node);\n if (previousSibling) {\n node.prev = previousSibling;\n previousSibling.next = node;\n }\n node.parent = parent;\n this.lastNode = null;\n };\n return DomHandler;\n}());\nexports.DomHandler = DomHandler;\nexports.default = DomHandler;\n\n\n//# sourceURL=webpack:///./node_modules/domhandler/lib/index.js?')},"./node_modules/domhandler/lib/node.js":function(module,exports,__webpack_require__){"use strict";eval('\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n if (typeof b !== "function" && b !== null)\n throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nObject.defineProperty(exports, "__esModule", { value: true });\nexports.cloneNode = exports.hasChildren = exports.isDocument = exports.isDirective = exports.isComment = exports.isText = exports.isCDATA = exports.isTag = exports.Element = exports.Document = exports.NodeWithChildren = exports.ProcessingInstruction = exports.Comment = exports.Text = exports.DataNode = exports.Node = void 0;\nvar domelementtype_1 = __webpack_require__("./node_modules/domelementtype/lib/index.js");\nvar nodeTypes = new Map([\n [domelementtype_1.ElementType.Tag, 1],\n [domelementtype_1.ElementType.Script, 1],\n [domelementtype_1.ElementType.Style, 1],\n [domelementtype_1.ElementType.Directive, 1],\n [domelementtype_1.ElementType.Text, 3],\n [domelementtype_1.ElementType.CDATA, 4],\n [domelementtype_1.ElementType.Comment, 8],\n [domelementtype_1.ElementType.Root, 9],\n]);\n/**\n * This object will be used as the prototype for Nodes when creating a\n * DOM-Level-1-compliant structure.\n */\nvar Node = /** @class */ (function () {\n /**\n *\n * @param type The type of the node.\n */\n function Node(type) {\n this.type = type;\n /** Parent of the node */\n this.parent = null;\n /** Previous sibling */\n this.prev = null;\n /** Next sibling */\n this.next = null;\n /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */\n this.startIndex = null;\n /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */\n this.endIndex = null;\n }\n Object.defineProperty(Node.prototype, "nodeType", {\n // Read-only aliases\n get: function () {\n var _a;\n return (_a = nodeTypes.get(this.type)) !== null && _a !== void 0 ? _a : 1;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Node.prototype, "parentNode", {\n // Read-write aliases for properties\n get: function () {\n return this.parent;\n },\n set: function (parent) {\n this.parent = parent;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Node.prototype, "previousSibling", {\n get: function () {\n return this.prev;\n },\n set: function (prev) {\n this.prev = prev;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Node.prototype, "nextSibling", {\n get: function () {\n return this.next;\n },\n set: function (next) {\n this.next = next;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Clone this node, and optionally its children.\n *\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\n Node.prototype.cloneNode = function (recursive) {\n if (recursive === void 0) { recursive = false; }\n return cloneNode(this, recursive);\n };\n return Node;\n}());\nexports.Node = Node;\nvar DataNode = /** @class */ (function (_super) {\n __extends(DataNode, _super);\n /**\n * @param type The type of the node\n * @param data The content of the data node\n */\n function DataNode(type, data) {\n var _this = _super.call(this, type) || this;\n _this.data = data;\n return _this;\n }\n Object.defineProperty(DataNode.prototype, "nodeValue", {\n get: function () {\n return this.data;\n },\n set: function (data) {\n this.data = data;\n },\n enumerable: false,\n configurable: true\n });\n return DataNode;\n}(Node));\nexports.DataNode = DataNode;\nvar Text = /** @class */ (function (_super) {\n __extends(Text, _super);\n function Text(data) {\n return _super.call(this, domelementtype_1.ElementType.Text, data) || this;\n }\n return Text;\n}(DataNode));\nexports.Text = Text;\nvar Comment = /** @class */ (function (_super) {\n __extends(Comment, _super);\n function Comment(data) {\n return _super.call(this, domelementtype_1.ElementType.Comment, data) || this;\n }\n return Comment;\n}(DataNode));\nexports.Comment = Comment;\nvar ProcessingInstruction = /** @class */ (function (_super) {\n __extends(ProcessingInstruction, _super);\n function ProcessingInstruction(name, data) {\n var _this = _super.call(this, domelementtype_1.ElementType.Directive, data) || this;\n _this.name = name;\n return _this;\n }\n return ProcessingInstruction;\n}(DataNode));\nexports.ProcessingInstruction = ProcessingInstruction;\n/**\n * A `Node` that can have children.\n */\nvar NodeWithChildren = /** @class */ (function (_super) {\n __extends(NodeWithChildren, _super);\n /**\n * @param type Type of the node.\n * @param children Children of the node. Only certain node types can have children.\n */\n function NodeWithChildren(type, children) {\n var _this = _super.call(this, type) || this;\n _this.children = children;\n return _this;\n }\n Object.defineProperty(NodeWithChildren.prototype, "firstChild", {\n // Aliases\n get: function () {\n var _a;\n return (_a = this.children[0]) !== null && _a !== void 0 ? _a : null;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(NodeWithChildren.prototype, "lastChild", {\n get: function () {\n return this.children.length > 0\n ? this.children[this.children.length - 1]\n : null;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(NodeWithChildren.prototype, "childNodes", {\n get: function () {\n return this.children;\n },\n set: function (children) {\n this.children = children;\n },\n enumerable: false,\n configurable: true\n });\n return NodeWithChildren;\n}(Node));\nexports.NodeWithChildren = NodeWithChildren;\nvar Document = /** @class */ (function (_super) {\n __extends(Document, _super);\n function Document(children) {\n return _super.call(this, domelementtype_1.ElementType.Root, children) || this;\n }\n return Document;\n}(NodeWithChildren));\nexports.Document = Document;\nvar Element = /** @class */ (function (_super) {\n __extends(Element, _super);\n /**\n * @param name Name of the tag, eg. `div`, `span`.\n * @param attribs Object mapping attribute names to attribute values.\n * @param children Children of the node.\n */\n function Element(name, attribs, children, type) {\n if (children === void 0) { children = []; }\n if (type === void 0) { type = name === "script"\n ? domelementtype_1.ElementType.Script\n : name === "style"\n ? domelementtype_1.ElementType.Style\n : domelementtype_1.ElementType.Tag; }\n var _this = _super.call(this, type, children) || this;\n _this.name = name;\n _this.attribs = attribs;\n return _this;\n }\n Object.defineProperty(Element.prototype, "tagName", {\n // DOM Level 1 aliases\n get: function () {\n return this.name;\n },\n set: function (name) {\n this.name = name;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(Element.prototype, "attributes", {\n get: function () {\n var _this = this;\n return Object.keys(this.attribs).map(function (name) {\n var _a, _b;\n return ({\n name: name,\n value: _this.attribs[name],\n namespace: (_a = _this["x-attribsNamespace"]) === null || _a === void 0 ? void 0 : _a[name],\n prefix: (_b = _this["x-attribsPrefix"]) === null || _b === void 0 ? void 0 : _b[name],\n });\n });\n },\n enumerable: false,\n configurable: true\n });\n return Element;\n}(NodeWithChildren));\nexports.Element = Element;\n/**\n * @param node Node to check.\n * @returns `true` if the node is a `Element`, `false` otherwise.\n */\nfunction isTag(node) {\n return domelementtype_1.isTag(node);\n}\nexports.isTag = isTag;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `CDATA`, `false` otherwise.\n */\nfunction isCDATA(node) {\n return node.type === domelementtype_1.ElementType.CDATA;\n}\nexports.isCDATA = isCDATA;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `Text`, `false` otherwise.\n */\nfunction isText(node) {\n return node.type === domelementtype_1.ElementType.Text;\n}\nexports.isText = isText;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `Comment`, `false` otherwise.\n */\nfunction isComment(node) {\n return node.type === domelementtype_1.ElementType.Comment;\n}\nexports.isComment = isComment;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise.\n */\nfunction isDirective(node) {\n return node.type === domelementtype_1.ElementType.Directive;\n}\nexports.isDirective = isDirective;\n/**\n * @param node Node to check.\n * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise.\n */\nfunction isDocument(node) {\n return node.type === domelementtype_1.ElementType.Root;\n}\nexports.isDocument = isDocument;\n/**\n * @param node Node to check.\n * @returns `true` if the node is a `NodeWithChildren` (has children), `false` otherwise.\n */\nfunction hasChildren(node) {\n return Object.prototype.hasOwnProperty.call(node, "children");\n}\nexports.hasChildren = hasChildren;\n/**\n * Clone a node, and optionally its children.\n *\n * @param recursive Clone child nodes as well.\n * @returns A clone of the node.\n */\nfunction cloneNode(node, recursive) {\n if (recursive === void 0) { recursive = false; }\n var result;\n if (isText(node)) {\n result = new Text(node.data);\n }\n else if (isComment(node)) {\n result = new Comment(node.data);\n }\n else if (isTag(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_1 = new Element(node.name, __assign({}, node.attribs), children);\n children.forEach(function (child) { return (child.parent = clone_1); });\n if (node["x-attribsNamespace"]) {\n clone_1["x-attribsNamespace"] = __assign({}, node["x-attribsNamespace"]);\n }\n if (node["x-attribsPrefix"]) {\n clone_1["x-attribsPrefix"] = __assign({}, node["x-attribsPrefix"]);\n }\n result = clone_1;\n }\n else if (isCDATA(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_2 = new NodeWithChildren(domelementtype_1.ElementType.CDATA, children);\n children.forEach(function (child) { return (child.parent = clone_2); });\n result = clone_2;\n }\n else if (isDocument(node)) {\n var children = recursive ? cloneChildren(node.children) : [];\n var clone_3 = new Document(children);\n children.forEach(function (child) { return (child.parent = clone_3); });\n if (node["x-mode"]) {\n clone_3["x-mode"] = node["x-mode"];\n }\n result = clone_3;\n }\n else if (isDirective(node)) {\n var instruction = new ProcessingInstruction(node.name, node.data);\n if (node["x-name"] != null) {\n instruction["x-name"] = node["x-name"];\n instruction["x-publicId"] = node["x-publicId"];\n instruction["x-systemId"] = node["x-systemId"];\n }\n result = instruction;\n }\n else {\n throw new Error("Not implemented yet: " + node.type);\n }\n result.startIndex = node.startIndex;\n result.endIndex = node.endIndex;\n return result;\n}\nexports.cloneNode = cloneNode;\nfunction cloneChildren(childs) {\n var children = childs.map(function (child) { return cloneNode(child, true); });\n for (var i = 1; i < children.length; i++) {\n children[i].prev = children[i - 1];\n children[i - 1].next = children[i];\n }\n return children;\n}\n\n\n//# sourceURL=webpack:///./node_modules/domhandler/lib/node.js?')},"./node_modules/entities/lib/decode_codepoint.js":function(module,exports,__webpack_require__){"use strict";eval('\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { "default": mod };\n};\nObject.defineProperty(exports, "__esModule", { value: true });\nvar decode_json_1 = __importDefault(__webpack_require__("./node_modules/entities/lib/maps/decode.json"));\n// modified version of https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119\nfunction decodeCodePoint(codePoint) {\n if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) {\n return "\\uFFFD";\n }\n if (codePoint in decode_json_1.default) {\n // @ts-ignore\n codePoint = decode_json_1.default[codePoint];\n }\n var output = "";\n if (codePoint > 0xffff) {\n codePoint -= 0x10000;\n output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800);\n codePoint = 0xdc00 | (codePoint & 0x3ff);\n }\n output += String.fromCharCode(codePoint);\n return output;\n}\nexports.default = decodeCodePoint;\n\n\n//# sourceURL=webpack:///./node_modules/entities/lib/decode_codepoint.js?')},"./node_modules/entities/lib/maps/decode.json":function(module){eval('module.exports = JSON.parse("{\\"0\\":65533,\\"128\\":8364,\\"130\\":8218,\\"131\\":402,\\"132\\":8222,\\"133\\":8230,\\"134\\":8224,\\"135\\":8225,\\"136\\":710,\\"137\\":8240,\\"138\\":352,\\"139\\":8249,\\"140\\":338,\\"142\\":381,\\"145\\":8216,\\"146\\":8217,\\"147\\":8220,\\"148\\":8221,\\"149\\":8226,\\"150\\":8211,\\"151\\":8212,\\"152\\":732,\\"153\\":8482,\\"154\\":353,\\"155\\":8250,\\"156\\":339,\\"158\\":382,\\"159\\":376}");\n\n//# sourceURL=webpack:///./node_modules/entities/lib/maps/decode.json?')},"./node_modules/entities/lib/maps/entities.json":function(module){eval('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\\":\\"∦\\