@scalar/api-reference-react 0.0.3 → 0.0.5

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.
@@ -0,0 +1,3744 @@
1
+ var M = {}, k = {};
2
+ function Fe(u, e, r) {
3
+ if (r === void 0 && (r = Array.prototype), u && typeof r.find == "function")
4
+ return r.find.call(u, e);
5
+ for (var t = 0; t < u.length; t++)
6
+ if (Object.prototype.hasOwnProperty.call(u, t)) {
7
+ var n = u[t];
8
+ if (e.call(void 0, n, t, u))
9
+ return n;
10
+ }
11
+ }
12
+ function bu(u, e) {
13
+ return e === void 0 && (e = Object), e && typeof e.freeze == "function" ? e.freeze(u) : u;
14
+ }
15
+ function xe(u, e) {
16
+ if (u === null || typeof u != "object")
17
+ throw new TypeError("target is not an object");
18
+ for (var r in e)
19
+ Object.prototype.hasOwnProperty.call(e, r) && (u[r] = e[r]);
20
+ return u;
21
+ }
22
+ var Zu = bu({
23
+ /**
24
+ * `text/html`, the only mime type that triggers treating an XML document as HTML.
25
+ *
26
+ * @see DOMParser.SupportedType.isHTML
27
+ * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
28
+ * @see https://en.wikipedia.org/wiki/HTML Wikipedia
29
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
30
+ * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring WHATWG HTML Spec
31
+ */
32
+ HTML: "text/html",
33
+ /**
34
+ * Helper method to check a mime type if it indicates an HTML document
35
+ *
36
+ * @param {string} [value]
37
+ * @returns {boolean}
38
+ *
39
+ * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
40
+ * @see https://en.wikipedia.org/wiki/HTML Wikipedia
41
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
42
+ * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring */
43
+ isHTML: function(u) {
44
+ return u === Zu.HTML;
45
+ },
46
+ /**
47
+ * `application/xml`, the standard mime type for XML documents.
48
+ *
49
+ * @see https://www.iana.org/assignments/media-types/application/xml IANA MimeType registration
50
+ * @see https://tools.ietf.org/html/rfc7303#section-9.1 RFC 7303
51
+ * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
52
+ */
53
+ XML_APPLICATION: "application/xml",
54
+ /**
55
+ * `text/html`, an alias for `application/xml`.
56
+ *
57
+ * @see https://tools.ietf.org/html/rfc7303#section-9.2 RFC 7303
58
+ * @see https://www.iana.org/assignments/media-types/text/xml IANA MimeType registration
59
+ * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
60
+ */
61
+ XML_TEXT: "text/xml",
62
+ /**
63
+ * `application/xhtml+xml`, indicates an XML document that has the default HTML namespace,
64
+ * but is parsed as an XML document.
65
+ *
66
+ * @see https://www.iana.org/assignments/media-types/application/xhtml+xml IANA MimeType registration
67
+ * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument WHATWG DOM Spec
68
+ * @see https://en.wikipedia.org/wiki/XHTML Wikipedia
69
+ */
70
+ XML_XHTML_APPLICATION: "application/xhtml+xml",
71
+ /**
72
+ * `image/svg+xml`,
73
+ *
74
+ * @see https://www.iana.org/assignments/media-types/image/svg+xml IANA MimeType registration
75
+ * @see https://www.w3.org/TR/SVG11/ W3C SVG 1.1
76
+ * @see https://en.wikipedia.org/wiki/Scalable_Vector_Graphics Wikipedia
77
+ */
78
+ XML_SVG_IMAGE: "image/svg+xml"
79
+ }), Ju = bu({
80
+ /**
81
+ * The XHTML namespace.
82
+ *
83
+ * @see http://www.w3.org/1999/xhtml
84
+ */
85
+ HTML: "http://www.w3.org/1999/xhtml",
86
+ /**
87
+ * Checks if `uri` equals `NAMESPACE.HTML`.
88
+ *
89
+ * @param {string} [uri]
90
+ *
91
+ * @see NAMESPACE.HTML
92
+ */
93
+ isHTML: function(u) {
94
+ return u === Ju.HTML;
95
+ },
96
+ /**
97
+ * The SVG namespace.
98
+ *
99
+ * @see http://www.w3.org/2000/svg
100
+ */
101
+ SVG: "http://www.w3.org/2000/svg",
102
+ /**
103
+ * The `xml:` namespace.
104
+ *
105
+ * @see http://www.w3.org/XML/1998/namespace
106
+ */
107
+ XML: "http://www.w3.org/XML/1998/namespace",
108
+ /**
109
+ * The `xmlns:` namespace
110
+ *
111
+ * @see https://www.w3.org/2000/xmlns/
112
+ */
113
+ XMLNS: "http://www.w3.org/2000/xmlns/"
114
+ });
115
+ k.assign = xe;
116
+ k.find = Fe;
117
+ k.freeze = bu;
118
+ k.MIME_TYPE = Zu;
119
+ k.NAMESPACE = Ju;
120
+ var Wu = k, O = Wu.find, K = Wu.NAMESPACE;
121
+ function Se(u) {
122
+ return u !== "";
123
+ }
124
+ function qe(u) {
125
+ return u ? u.split(/[\t\n\f\r ]+/).filter(Se) : [];
126
+ }
127
+ function Oe(u, e) {
128
+ return u.hasOwnProperty(e) || (u[e] = !0), u;
129
+ }
130
+ function Iu(u) {
131
+ if (!u)
132
+ return [];
133
+ var e = qe(u);
134
+ return Object.keys(e.reduce(Oe, {}));
135
+ }
136
+ function Re(u) {
137
+ return function(e) {
138
+ return u && u.indexOf(e) !== -1;
139
+ };
140
+ }
141
+ function ru(u, e) {
142
+ for (var r in u)
143
+ Object.prototype.hasOwnProperty.call(u, r) && (e[r] = u[r]);
144
+ }
145
+ function y(u, e) {
146
+ var r = u.prototype;
147
+ if (!(r instanceof e)) {
148
+ let t = function() {
149
+ };
150
+ t.prototype = e.prototype, t = new t(), ru(r, t), u.prototype = r = t;
151
+ }
152
+ r.constructor != u && (typeof u != "function" && console.error("unknown Class:" + u), r.constructor = u);
153
+ }
154
+ var T = {}, q = T.ELEMENT_NODE = 1, $ = T.ATTRIBUTE_NODE = 2, su = T.TEXT_NODE = 3, Ku = T.CDATA_SECTION_NODE = 4, ue = T.ENTITY_REFERENCE_NODE = 5, _e = T.ENTITY_NODE = 6, ee = T.PROCESSING_INSTRUCTION_NODE = 7, re = T.COMMENT_NODE = 8, te = T.DOCUMENT_NODE = 9, ne = T.DOCUMENT_TYPE_NODE = 10, L = T.DOCUMENT_FRAGMENT_NODE = 11, Le = T.NOTATION_NODE = 12, b = {}, v = {};
155
+ b.INDEX_SIZE_ERR = (v[1] = "Index size error", 1);
156
+ b.DOMSTRING_SIZE_ERR = (v[2] = "DOMString size error", 2);
157
+ var N = b.HIERARCHY_REQUEST_ERR = (v[3] = "Hierarchy request error", 3);
158
+ b.WRONG_DOCUMENT_ERR = (v[4] = "Wrong document", 4);
159
+ b.INVALID_CHARACTER_ERR = (v[5] = "Invalid character", 5);
160
+ b.NO_DATA_ALLOWED_ERR = (v[6] = "No data allowed", 6);
161
+ b.NO_MODIFICATION_ALLOWED_ERR = (v[7] = "No modification allowed", 7);
162
+ var ae = b.NOT_FOUND_ERR = (v[8] = "Not found", 8);
163
+ b.NOT_SUPPORTED_ERR = (v[9] = "Not supported", 9);
164
+ var ku = b.INUSE_ATTRIBUTE_ERR = (v[10] = "Attribute in use", 10);
165
+ b.INVALID_STATE_ERR = (v[11] = "Invalid state", 11);
166
+ b.SYNTAX_ERR = (v[12] = "Syntax error", 12);
167
+ b.INVALID_MODIFICATION_ERR = (v[13] = "Invalid modification", 13);
168
+ b.NAMESPACE_ERR = (v[14] = "Invalid namespace", 14);
169
+ b.INVALID_ACCESS_ERR = (v[15] = "Invalid access", 15);
170
+ function m(u, e) {
171
+ if (e instanceof Error)
172
+ var r = e;
173
+ else
174
+ r = this, Error.call(this, v[u]), this.message = v[u], Error.captureStackTrace && Error.captureStackTrace(this, m);
175
+ return r.code = u, e && (this.message = this.message + ": " + e), r;
176
+ }
177
+ m.prototype = Error.prototype;
178
+ ru(b, m);
179
+ function _() {
180
+ }
181
+ _.prototype = {
182
+ /**
183
+ * The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
184
+ * @standard level1
185
+ */
186
+ length: 0,
187
+ /**
188
+ * Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.
189
+ * @standard level1
190
+ * @param index unsigned long
191
+ * Index into the collection.
192
+ * @return Node
193
+ * The node at the indexth position in the NodeList, or null if that is not a valid index.
194
+ */
195
+ item: function(u) {
196
+ return u >= 0 && u < this.length ? this[u] : null;
197
+ },
198
+ toString: function(u, e) {
199
+ for (var r = [], t = 0; t < this.length; t++)
200
+ j(this[t], r, u, e);
201
+ return r.join("");
202
+ },
203
+ /**
204
+ * @private
205
+ * @param {function (Node):boolean} predicate
206
+ * @returns {Node[]}
207
+ */
208
+ filter: function(u) {
209
+ return Array.prototype.filter.call(this, u);
210
+ },
211
+ /**
212
+ * @private
213
+ * @param {Node} item
214
+ * @returns {number}
215
+ */
216
+ indexOf: function(u) {
217
+ return Array.prototype.indexOf.call(this, u);
218
+ }
219
+ };
220
+ function X(u, e) {
221
+ this._node = u, this._refresh = e, wu(this);
222
+ }
223
+ function wu(u) {
224
+ var e = u._node._inc || u._node.ownerDocument._inc;
225
+ if (u._inc !== e) {
226
+ var r = u._refresh(u._node);
227
+ if (Ee(u, "length", r.length), !u.$$length || r.length < u.$$length)
228
+ for (var t = r.length; t in u; t++)
229
+ Object.prototype.hasOwnProperty.call(u, t) && delete u[t];
230
+ ru(r, u), u._inc = e;
231
+ }
232
+ }
233
+ X.prototype.item = function(u) {
234
+ return wu(this), this[u] || null;
235
+ };
236
+ y(X, _);
237
+ function lu() {
238
+ }
239
+ function ie(u, e) {
240
+ for (var r = u.length; r--; )
241
+ if (u[r] === e)
242
+ return r;
243
+ }
244
+ function Uu(u, e, r, t) {
245
+ if (t ? e[ie(e, t)] = r : e[e.length++] = r, u) {
246
+ r.ownerElement = u;
247
+ var n = u.ownerDocument;
248
+ n && (t && le(n, u, t), Ie(n, u, r));
249
+ }
250
+ }
251
+ function Mu(u, e, r) {
252
+ var t = ie(e, r);
253
+ if (t >= 0) {
254
+ for (var n = e.length - 1; t < n; )
255
+ e[t] = e[++t];
256
+ if (e.length = n, u) {
257
+ var a = u.ownerDocument;
258
+ a && (le(a, u, r), r.ownerElement = null);
259
+ }
260
+ } else
261
+ throw new m(ae, new Error(u.tagName + "@" + r));
262
+ }
263
+ lu.prototype = {
264
+ length: 0,
265
+ item: _.prototype.item,
266
+ getNamedItem: function(u) {
267
+ for (var e = this.length; e--; ) {
268
+ var r = this[e];
269
+ if (r.nodeName == u)
270
+ return r;
271
+ }
272
+ },
273
+ setNamedItem: function(u) {
274
+ var e = u.ownerElement;
275
+ if (e && e != this._ownerElement)
276
+ throw new m(ku);
277
+ var r = this.getNamedItem(u.nodeName);
278
+ return Uu(this._ownerElement, this, u, r), r;
279
+ },
280
+ /* returns Node */
281
+ setNamedItemNS: function(u) {
282
+ var e = u.ownerElement, r;
283
+ if (e && e != this._ownerElement)
284
+ throw new m(ku);
285
+ return r = this.getNamedItemNS(u.namespaceURI, u.localName), Uu(this._ownerElement, this, u, r), r;
286
+ },
287
+ /* returns Node */
288
+ removeNamedItem: function(u) {
289
+ var e = this.getNamedItem(u);
290
+ return Mu(this._ownerElement, this, e), e;
291
+ },
292
+ // raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR
293
+ //for level2
294
+ removeNamedItemNS: function(u, e) {
295
+ var r = this.getNamedItemNS(u, e);
296
+ return Mu(this._ownerElement, this, r), r;
297
+ },
298
+ getNamedItemNS: function(u, e) {
299
+ for (var r = this.length; r--; ) {
300
+ var t = this[r];
301
+ if (t.localName == e && t.namespaceURI == u)
302
+ return t;
303
+ }
304
+ return null;
305
+ }
306
+ };
307
+ function oe() {
308
+ }
309
+ oe.prototype = {
310
+ /**
311
+ * The DOMImplementation.hasFeature() method returns a Boolean flag indicating if a given feature is supported.
312
+ * The different implementations fairly diverged in what kind of features were reported.
313
+ * The latest version of the spec settled to force this method to always return true, where the functionality was accurate and in use.
314
+ *
315
+ * @deprecated It is deprecated and modern browsers return true in all cases.
316
+ *
317
+ * @param {string} feature
318
+ * @param {string} [version]
319
+ * @returns {boolean} always true
320
+ *
321
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature MDN
322
+ * @see https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-5CED94D7 DOM Level 1 Core
323
+ * @see https://dom.spec.whatwg.org/#dom-domimplementation-hasfeature DOM Living Standard
324
+ */
325
+ hasFeature: function(u, e) {
326
+ return !0;
327
+ },
328
+ /**
329
+ * Creates an XML Document object of the specified type with its document element.
330
+ *
331
+ * __It behaves slightly different from the description in the living standard__:
332
+ * - There is no interface/class `XMLDocument`, it returns a `Document` instance.
333
+ * - `contentType`, `encoding`, `mode`, `origin`, `url` fields are currently not declared.
334
+ * - this implementation is not validating names or qualified names
335
+ * (when parsing XML strings, the SAX parser takes care of that)
336
+ *
337
+ * @param {string|null} namespaceURI
338
+ * @param {string} qualifiedName
339
+ * @param {DocumentType=null} doctype
340
+ * @returns {Document}
341
+ *
342
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument MDN
343
+ * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument DOM Level 2 Core (initial)
344
+ * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument DOM Level 2 Core
345
+ *
346
+ * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
347
+ * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
348
+ * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
349
+ */
350
+ createDocument: function(u, e, r) {
351
+ var t = new tu();
352
+ if (t.implementation = this, t.childNodes = new _(), t.doctype = r || null, r && t.appendChild(r), e) {
353
+ var n = t.createElementNS(u, e);
354
+ t.appendChild(n);
355
+ }
356
+ return t;
357
+ },
358
+ /**
359
+ * Returns a doctype, with the given `qualifiedName`, `publicId`, and `systemId`.
360
+ *
361
+ * __This behavior is slightly different from the in the specs__:
362
+ * - this implementation is not validating names or qualified names
363
+ * (when parsing XML strings, the SAX parser takes care of that)
364
+ *
365
+ * @param {string} qualifiedName
366
+ * @param {string} [publicId]
367
+ * @param {string} [systemId]
368
+ * @returns {DocumentType} which can either be used with `DOMImplementation.createDocument` upon document creation
369
+ * or can be put into the document via methods like `Node.insertBefore()` or `Node.replaceChild()`
370
+ *
371
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType MDN
372
+ * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocType DOM Level 2 Core
373
+ * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype DOM Living Standard
374
+ *
375
+ * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
376
+ * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
377
+ * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
378
+ */
379
+ createDocumentType: function(u, e, r) {
380
+ var t = new Du();
381
+ return t.name = u, t.nodeName = u, t.publicId = e || "", t.systemId = r || "", t;
382
+ }
383
+ };
384
+ function D() {
385
+ }
386
+ D.prototype = {
387
+ firstChild: null,
388
+ lastChild: null,
389
+ previousSibling: null,
390
+ nextSibling: null,
391
+ attributes: null,
392
+ parentNode: null,
393
+ childNodes: null,
394
+ ownerDocument: null,
395
+ nodeValue: null,
396
+ namespaceURI: null,
397
+ prefix: null,
398
+ localName: null,
399
+ // Modified in DOM Level 2:
400
+ insertBefore: function(u, e) {
401
+ return cu(this, u, e);
402
+ },
403
+ replaceChild: function(u, e) {
404
+ cu(this, u, e, pe), e && this.removeChild(e);
405
+ },
406
+ removeChild: function(u) {
407
+ return ce(this, u);
408
+ },
409
+ appendChild: function(u) {
410
+ return this.insertBefore(u, null);
411
+ },
412
+ hasChildNodes: function() {
413
+ return this.firstChild != null;
414
+ },
415
+ cloneNode: function(u) {
416
+ return gu(this.ownerDocument || this, this, u);
417
+ },
418
+ // Modified in DOM Level 2:
419
+ normalize: function() {
420
+ for (var u = this.firstChild; u; ) {
421
+ var e = u.nextSibling;
422
+ e && e.nodeType == su && u.nodeType == su ? (this.removeChild(e), u.appendData(e.data)) : (u.normalize(), u = e);
423
+ }
424
+ },
425
+ // Introduced in DOM Level 2:
426
+ isSupported: function(u, e) {
427
+ return this.ownerDocument.implementation.hasFeature(u, e);
428
+ },
429
+ // Introduced in DOM Level 2:
430
+ hasAttributes: function() {
431
+ return this.attributes.length > 0;
432
+ },
433
+ /**
434
+ * Look up the prefix associated to the given namespace URI, starting from this node.
435
+ * **The default namespace declarations are ignored by this method.**
436
+ * See Namespace Prefix Lookup for details on the algorithm used by this method.
437
+ *
438
+ * _Note: The implementation seems to be incomplete when compared to the algorithm described in the specs._
439
+ *
440
+ * @param {string | null} namespaceURI
441
+ * @returns {string | null}
442
+ * @see https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespacePrefix
443
+ * @see https://www.w3.org/TR/DOM-Level-3-Core/namespaces-algorithms.html#lookupNamespacePrefixAlgo
444
+ * @see https://dom.spec.whatwg.org/#dom-node-lookupprefix
445
+ * @see https://github.com/xmldom/xmldom/issues/322
446
+ */
447
+ lookupPrefix: function(u) {
448
+ for (var e = this; e; ) {
449
+ var r = e._nsMap;
450
+ if (r) {
451
+ for (var t in r)
452
+ if (Object.prototype.hasOwnProperty.call(r, t) && r[t] === u)
453
+ return t;
454
+ }
455
+ e = e.nodeType == $ ? e.ownerDocument : e.parentNode;
456
+ }
457
+ return null;
458
+ },
459
+ // Introduced in DOM Level 3:
460
+ lookupNamespaceURI: function(u) {
461
+ for (var e = this; e; ) {
462
+ var r = e._nsMap;
463
+ if (r && Object.prototype.hasOwnProperty.call(r, u))
464
+ return r[u];
465
+ e = e.nodeType == $ ? e.ownerDocument : e.parentNode;
466
+ }
467
+ return null;
468
+ },
469
+ // Introduced in DOM Level 3:
470
+ isDefaultNamespace: function(u) {
471
+ var e = this.lookupPrefix(u);
472
+ return e == null;
473
+ }
474
+ };
475
+ function se(u) {
476
+ return u == "<" && "&lt;" || u == ">" && "&gt;" || u == "&" && "&amp;" || u == '"' && "&quot;" || "&#" + u.charCodeAt() + ";";
477
+ }
478
+ ru(T, D);
479
+ ru(T, D.prototype);
480
+ function uu(u, e) {
481
+ if (e(u))
482
+ return !0;
483
+ if (u = u.firstChild)
484
+ do
485
+ if (uu(u, e))
486
+ return !0;
487
+ while (u = u.nextSibling);
488
+ }
489
+ function tu() {
490
+ this.ownerDocument = this;
491
+ }
492
+ function Ie(u, e, r) {
493
+ u && u._inc++;
494
+ var t = r.namespaceURI;
495
+ t === K.XMLNS && (e._nsMap[r.prefix ? r.localName : ""] = r.value);
496
+ }
497
+ function le(u, e, r, t) {
498
+ u && u._inc++;
499
+ var n = r.namespaceURI;
500
+ n === K.XMLNS && delete e._nsMap[r.prefix ? r.localName : ""];
501
+ }
502
+ function Bu(u, e, r) {
503
+ if (u && u._inc) {
504
+ u._inc++;
505
+ var t = e.childNodes;
506
+ if (r)
507
+ t[t.length++] = r;
508
+ else {
509
+ for (var n = e.firstChild, a = 0; n; )
510
+ t[a++] = n, n = n.nextSibling;
511
+ t.length = a, delete t[t.length];
512
+ }
513
+ }
514
+ }
515
+ function ce(u, e) {
516
+ var r = e.previousSibling, t = e.nextSibling;
517
+ return r ? r.nextSibling = t : u.firstChild = t, t ? t.previousSibling = r : u.lastChild = r, e.parentNode = null, e.previousSibling = null, e.nextSibling = null, Bu(u.ownerDocument, u), e;
518
+ }
519
+ function ke(u) {
520
+ return u && (u.nodeType === D.DOCUMENT_NODE || u.nodeType === D.DOCUMENT_FRAGMENT_NODE || u.nodeType === D.ELEMENT_NODE);
521
+ }
522
+ function Ue(u) {
523
+ return u && (R(u) || Nu(u) || I(u) || u.nodeType === D.DOCUMENT_FRAGMENT_NODE || u.nodeType === D.COMMENT_NODE || u.nodeType === D.PROCESSING_INSTRUCTION_NODE);
524
+ }
525
+ function I(u) {
526
+ return u && u.nodeType === D.DOCUMENT_TYPE_NODE;
527
+ }
528
+ function R(u) {
529
+ return u && u.nodeType === D.ELEMENT_NODE;
530
+ }
531
+ function Nu(u) {
532
+ return u && u.nodeType === D.TEXT_NODE;
533
+ }
534
+ function Pu(u, e) {
535
+ var r = u.childNodes || [];
536
+ if (O(r, R) || I(e))
537
+ return !1;
538
+ var t = O(r, I);
539
+ return !(e && t && r.indexOf(t) > r.indexOf(e));
540
+ }
541
+ function Vu(u, e) {
542
+ var r = u.childNodes || [];
543
+ function t(a) {
544
+ return R(a) && a !== e;
545
+ }
546
+ if (O(r, t))
547
+ return !1;
548
+ var n = O(r, I);
549
+ return !(e && n && r.indexOf(n) > r.indexOf(e));
550
+ }
551
+ function Me(u, e, r) {
552
+ if (!ke(u))
553
+ throw new m(N, "Unexpected parent node type " + u.nodeType);
554
+ if (r && r.parentNode !== u)
555
+ throw new m(ae, "child not in parent");
556
+ if (
557
+ // 4. If `node` is not a DocumentFragment, DocumentType, Element, or CharacterData node, then throw a "HierarchyRequestError" DOMException.
558
+ !Ue(e) || // 5. If either `node` is a Text node and `parent` is a document,
559
+ // the sax parser currently adds top level text nodes, this will be fixed in 0.9.0
560
+ // || (node.nodeType === Node.TEXT_NODE && parent.nodeType === Node.DOCUMENT_NODE)
561
+ // or `node` is a doctype and `parent` is not a document, then throw a "HierarchyRequestError" DOMException.
562
+ I(e) && u.nodeType !== D.DOCUMENT_NODE
563
+ )
564
+ throw new m(
565
+ N,
566
+ "Unexpected node type " + e.nodeType + " for parent node type " + u.nodeType
567
+ );
568
+ }
569
+ function Pe(u, e, r) {
570
+ var t = u.childNodes || [], n = e.childNodes || [];
571
+ if (e.nodeType === D.DOCUMENT_FRAGMENT_NODE) {
572
+ var a = n.filter(R);
573
+ if (a.length > 1 || O(n, Nu))
574
+ throw new m(N, "More than one element or text in fragment");
575
+ if (a.length === 1 && !Pu(u, r))
576
+ throw new m(N, "Element in fragment can not be inserted before doctype");
577
+ }
578
+ if (R(e) && !Pu(u, r))
579
+ throw new m(N, "Only one element can be added and only after doctype");
580
+ if (I(e)) {
581
+ if (O(t, I))
582
+ throw new m(N, "Only one doctype is allowed");
583
+ var i = O(t, R);
584
+ if (r && t.indexOf(i) < t.indexOf(r))
585
+ throw new m(N, "Doctype can only be inserted before an element");
586
+ if (!r && i)
587
+ throw new m(N, "Doctype can not be appended since element is present");
588
+ }
589
+ }
590
+ function pe(u, e, r) {
591
+ var t = u.childNodes || [], n = e.childNodes || [];
592
+ if (e.nodeType === D.DOCUMENT_FRAGMENT_NODE) {
593
+ var a = n.filter(R);
594
+ if (a.length > 1 || O(n, Nu))
595
+ throw new m(N, "More than one element or text in fragment");
596
+ if (a.length === 1 && !Vu(u, r))
597
+ throw new m(N, "Element in fragment can not be inserted before doctype");
598
+ }
599
+ if (R(e) && !Vu(u, r))
600
+ throw new m(N, "Only one element can be added and only after doctype");
601
+ if (I(e)) {
602
+ if (O(t, function(o) {
603
+ return I(o) && o !== r;
604
+ }))
605
+ throw new m(N, "Only one doctype is allowed");
606
+ var i = O(t, R);
607
+ if (r && t.indexOf(i) < t.indexOf(r))
608
+ throw new m(N, "Doctype can only be inserted before an element");
609
+ }
610
+ }
611
+ function cu(u, e, r, t) {
612
+ Me(u, e, r), u.nodeType === D.DOCUMENT_NODE && (t || Pe)(u, e, r);
613
+ var n = e.parentNode;
614
+ if (n && n.removeChild(e), e.nodeType === L) {
615
+ var a = e.firstChild;
616
+ if (a == null)
617
+ return e;
618
+ var i = e.lastChild;
619
+ } else
620
+ a = i = e;
621
+ var s = r ? r.previousSibling : u.lastChild;
622
+ a.previousSibling = s, i.nextSibling = r, s ? s.nextSibling = a : u.firstChild = a, r == null ? u.lastChild = i : r.previousSibling = i;
623
+ do
624
+ a.parentNode = u;
625
+ while (a !== i && (a = a.nextSibling));
626
+ return Bu(u.ownerDocument || u, u), e.nodeType == L && (e.firstChild = e.lastChild = null), e;
627
+ }
628
+ function Ve(u, e) {
629
+ return e.parentNode && e.parentNode.removeChild(e), e.parentNode = u, e.previousSibling = u.lastChild, e.nextSibling = null, e.previousSibling ? e.previousSibling.nextSibling = e : u.firstChild = e, u.lastChild = e, Bu(u.ownerDocument, u, e), e;
630
+ }
631
+ tu.prototype = {
632
+ //implementation : null,
633
+ nodeName: "#document",
634
+ nodeType: te,
635
+ /**
636
+ * The DocumentType node of the document.
637
+ *
638
+ * @readonly
639
+ * @type DocumentType
640
+ */
641
+ doctype: null,
642
+ documentElement: null,
643
+ _inc: 1,
644
+ insertBefore: function(u, e) {
645
+ if (u.nodeType == L) {
646
+ for (var r = u.firstChild; r; ) {
647
+ var t = r.nextSibling;
648
+ this.insertBefore(r, e), r = t;
649
+ }
650
+ return u;
651
+ }
652
+ return cu(this, u, e), u.ownerDocument = this, this.documentElement === null && u.nodeType === q && (this.documentElement = u), u;
653
+ },
654
+ removeChild: function(u) {
655
+ return this.documentElement == u && (this.documentElement = null), ce(this, u);
656
+ },
657
+ replaceChild: function(u, e) {
658
+ cu(this, u, e, pe), u.ownerDocument = this, e && this.removeChild(e), R(u) && (this.documentElement = u);
659
+ },
660
+ // Introduced in DOM Level 2:
661
+ importNode: function(u, e) {
662
+ return me(this, u, e);
663
+ },
664
+ // Introduced in DOM Level 2:
665
+ getElementById: function(u) {
666
+ var e = null;
667
+ return uu(this.documentElement, function(r) {
668
+ if (r.nodeType == q && r.getAttribute("id") == u)
669
+ return e = r, !0;
670
+ }), e;
671
+ },
672
+ /**
673
+ * The `getElementsByClassName` method of `Document` interface returns an array-like object
674
+ * of all child elements which have **all** of the given class name(s).
675
+ *
676
+ * Returns an empty list if `classeNames` is an empty string or only contains HTML white space characters.
677
+ *
678
+ *
679
+ * Warning: This is a live LiveNodeList.
680
+ * Changes in the DOM will reflect in the array as the changes occur.
681
+ * If an element selected by this array no longer qualifies for the selector,
682
+ * it will automatically be removed. Be aware of this for iteration purposes.
683
+ *
684
+ * @param {string} classNames is a string representing the class name(s) to match; multiple class names are separated by (ASCII-)whitespace
685
+ *
686
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementsByClassName
687
+ * @see https://dom.spec.whatwg.org/#concept-getelementsbyclassname
688
+ */
689
+ getElementsByClassName: function(u) {
690
+ var e = Iu(u);
691
+ return new X(this, function(r) {
692
+ var t = [];
693
+ return e.length > 0 && uu(r.documentElement, function(n) {
694
+ if (n !== r && n.nodeType === q) {
695
+ var a = n.getAttribute("class");
696
+ if (a) {
697
+ var i = u === a;
698
+ if (!i) {
699
+ var s = Iu(a);
700
+ i = e.every(Re(s));
701
+ }
702
+ i && t.push(n);
703
+ }
704
+ }
705
+ }), t;
706
+ });
707
+ },
708
+ //document factory method:
709
+ createElement: function(u) {
710
+ var e = new P();
711
+ e.ownerDocument = this, e.nodeName = u, e.tagName = u, e.localName = u, e.childNodes = new _();
712
+ var r = e.attributes = new lu();
713
+ return r._ownerElement = e, e;
714
+ },
715
+ createDocumentFragment: function() {
716
+ var u = new fu();
717
+ return u.ownerDocument = this, u.childNodes = new _(), u;
718
+ },
719
+ createTextNode: function(u) {
720
+ var e = new yu();
721
+ return e.ownerDocument = this, e.appendData(u), e;
722
+ },
723
+ createComment: function(u) {
724
+ var e = new Tu();
725
+ return e.ownerDocument = this, e.appendData(u), e;
726
+ },
727
+ createCDATASection: function(u) {
728
+ var e = new Fu();
729
+ return e.ownerDocument = this, e.appendData(u), e;
730
+ },
731
+ createProcessingInstruction: function(u, e) {
732
+ var r = new Su();
733
+ return r.ownerDocument = this, r.tagName = r.nodeName = r.target = u, r.nodeValue = r.data = e, r;
734
+ },
735
+ createAttribute: function(u) {
736
+ var e = new pu();
737
+ return e.ownerDocument = this, e.name = u, e.nodeName = u, e.localName = u, e.specified = !0, e;
738
+ },
739
+ createEntityReference: function(u) {
740
+ var e = new xu();
741
+ return e.ownerDocument = this, e.nodeName = u, e;
742
+ },
743
+ // Introduced in DOM Level 2:
744
+ createElementNS: function(u, e) {
745
+ var r = new P(), t = e.split(":"), n = r.attributes = new lu();
746
+ return r.childNodes = new _(), r.ownerDocument = this, r.nodeName = e, r.tagName = e, r.namespaceURI = u, t.length == 2 ? (r.prefix = t[0], r.localName = t[1]) : r.localName = e, n._ownerElement = r, r;
747
+ },
748
+ // Introduced in DOM Level 2:
749
+ createAttributeNS: function(u, e) {
750
+ var r = new pu(), t = e.split(":");
751
+ return r.ownerDocument = this, r.nodeName = e, r.name = e, r.namespaceURI = u, r.specified = !0, t.length == 2 ? (r.prefix = t[0], r.localName = t[1]) : r.localName = e, r;
752
+ }
753
+ };
754
+ y(tu, D);
755
+ function P() {
756
+ this._nsMap = {};
757
+ }
758
+ P.prototype = {
759
+ nodeType: q,
760
+ hasAttribute: function(u) {
761
+ return this.getAttributeNode(u) != null;
762
+ },
763
+ getAttribute: function(u) {
764
+ var e = this.getAttributeNode(u);
765
+ return e && e.value || "";
766
+ },
767
+ getAttributeNode: function(u) {
768
+ return this.attributes.getNamedItem(u);
769
+ },
770
+ setAttribute: function(u, e) {
771
+ var r = this.ownerDocument.createAttribute(u);
772
+ r.value = r.nodeValue = "" + e, this.setAttributeNode(r);
773
+ },
774
+ removeAttribute: function(u) {
775
+ var e = this.getAttributeNode(u);
776
+ e && this.removeAttributeNode(e);
777
+ },
778
+ //four real opeartion method
779
+ appendChild: function(u) {
780
+ return u.nodeType === L ? this.insertBefore(u, null) : Ve(this, u);
781
+ },
782
+ setAttributeNode: function(u) {
783
+ return this.attributes.setNamedItem(u);
784
+ },
785
+ setAttributeNodeNS: function(u) {
786
+ return this.attributes.setNamedItemNS(u);
787
+ },
788
+ removeAttributeNode: function(u) {
789
+ return this.attributes.removeNamedItem(u.nodeName);
790
+ },
791
+ //get real attribute name,and remove it by removeAttributeNode
792
+ removeAttributeNS: function(u, e) {
793
+ var r = this.getAttributeNodeNS(u, e);
794
+ r && this.removeAttributeNode(r);
795
+ },
796
+ hasAttributeNS: function(u, e) {
797
+ return this.getAttributeNodeNS(u, e) != null;
798
+ },
799
+ getAttributeNS: function(u, e) {
800
+ var r = this.getAttributeNodeNS(u, e);
801
+ return r && r.value || "";
802
+ },
803
+ setAttributeNS: function(u, e, r) {
804
+ var t = this.ownerDocument.createAttributeNS(u, e);
805
+ t.value = t.nodeValue = "" + r, this.setAttributeNode(t);
806
+ },
807
+ getAttributeNodeNS: function(u, e) {
808
+ return this.attributes.getNamedItemNS(u, e);
809
+ },
810
+ getElementsByTagName: function(u) {
811
+ return new X(this, function(e) {
812
+ var r = [];
813
+ return uu(e, function(t) {
814
+ t !== e && t.nodeType == q && (u === "*" || t.tagName == u) && r.push(t);
815
+ }), r;
816
+ });
817
+ },
818
+ getElementsByTagNameNS: function(u, e) {
819
+ return new X(this, function(r) {
820
+ var t = [];
821
+ return uu(r, function(n) {
822
+ n !== r && n.nodeType === q && (u === "*" || n.namespaceURI === u) && (e === "*" || n.localName == e) && t.push(n);
823
+ }), t;
824
+ });
825
+ }
826
+ };
827
+ tu.prototype.getElementsByTagName = P.prototype.getElementsByTagName;
828
+ tu.prototype.getElementsByTagNameNS = P.prototype.getElementsByTagNameNS;
829
+ y(P, D);
830
+ function pu() {
831
+ }
832
+ pu.prototype.nodeType = $;
833
+ y(pu, D);
834
+ function nu() {
835
+ }
836
+ nu.prototype = {
837
+ data: "",
838
+ substringData: function(u, e) {
839
+ return this.data.substring(u, u + e);
840
+ },
841
+ appendData: function(u) {
842
+ u = this.data + u, this.nodeValue = this.data = u, this.length = u.length;
843
+ },
844
+ insertData: function(u, e) {
845
+ this.replaceData(u, 0, e);
846
+ },
847
+ appendChild: function(u) {
848
+ throw new Error(v[N]);
849
+ },
850
+ deleteData: function(u, e) {
851
+ this.replaceData(u, e, "");
852
+ },
853
+ replaceData: function(u, e, r) {
854
+ var t = this.data.substring(0, u), n = this.data.substring(u + e);
855
+ r = t + r + n, this.nodeValue = this.data = r, this.length = r.length;
856
+ }
857
+ };
858
+ y(nu, D);
859
+ function yu() {
860
+ }
861
+ yu.prototype = {
862
+ nodeName: "#text",
863
+ nodeType: su,
864
+ splitText: function(u) {
865
+ var e = this.data, r = e.substring(u);
866
+ e = e.substring(0, u), this.data = this.nodeValue = e, this.length = e.length;
867
+ var t = this.ownerDocument.createTextNode(r);
868
+ return this.parentNode && this.parentNode.insertBefore(t, this.nextSibling), t;
869
+ }
870
+ };
871
+ y(yu, nu);
872
+ function Tu() {
873
+ }
874
+ Tu.prototype = {
875
+ nodeName: "#comment",
876
+ nodeType: re
877
+ };
878
+ y(Tu, nu);
879
+ function Fu() {
880
+ }
881
+ Fu.prototype = {
882
+ nodeName: "#cdata-section",
883
+ nodeType: Ku
884
+ };
885
+ y(Fu, nu);
886
+ function Du() {
887
+ }
888
+ Du.prototype.nodeType = ne;
889
+ y(Du, D);
890
+ function De() {
891
+ }
892
+ De.prototype.nodeType = Le;
893
+ y(De, D);
894
+ function fe() {
895
+ }
896
+ fe.prototype.nodeType = _e;
897
+ y(fe, D);
898
+ function xu() {
899
+ }
900
+ xu.prototype.nodeType = ue;
901
+ y(xu, D);
902
+ function fu() {
903
+ }
904
+ fu.prototype.nodeName = "#document-fragment";
905
+ fu.prototype.nodeType = L;
906
+ y(fu, D);
907
+ function Su() {
908
+ }
909
+ Su.prototype.nodeType = ee;
910
+ y(Su, D);
911
+ function Ae() {
912
+ }
913
+ Ae.prototype.serializeToString = function(u, e, r) {
914
+ return he.call(u, e, r);
915
+ };
916
+ D.prototype.toString = he;
917
+ function he(u, e) {
918
+ var r = [], t = this.nodeType == 9 && this.documentElement || this, n = t.prefix, a = t.namespaceURI;
919
+ if (a && n == null) {
920
+ var n = t.lookupPrefix(a);
921
+ if (n == null)
922
+ var i = [
923
+ { namespace: a, prefix: null }
924
+ //{namespace:uri,prefix:''}
925
+ ];
926
+ }
927
+ return j(this, r, u, e, i), r.join("");
928
+ }
929
+ function Gu(u, e, r) {
930
+ var t = u.prefix || "", n = u.namespaceURI;
931
+ if (!n || t === "xml" && n === K.XML || n === K.XMLNS)
932
+ return !1;
933
+ for (var a = r.length; a--; ) {
934
+ var i = r[a];
935
+ if (i.prefix === t)
936
+ return i.namespace !== n;
937
+ }
938
+ return !0;
939
+ }
940
+ function du(u, e, r) {
941
+ u.push(" ", e, '="', r.replace(/[<>&"\t\n\r]/g, se), '"');
942
+ }
943
+ function j(u, e, r, t, n) {
944
+ if (n || (n = []), t)
945
+ if (u = t(u), u) {
946
+ if (typeof u == "string") {
947
+ e.push(u);
948
+ return;
949
+ }
950
+ } else
951
+ return;
952
+ switch (u.nodeType) {
953
+ case q:
954
+ var a = u.attributes, i = a.length, g = u.firstChild, s = u.tagName;
955
+ r = K.isHTML(u.namespaceURI) || r;
956
+ var o = s;
957
+ if (!r && !u.prefix && u.namespaceURI) {
958
+ for (var l, c = 0; c < a.length; c++)
959
+ if (a.item(c).name === "xmlns") {
960
+ l = a.item(c).value;
961
+ break;
962
+ }
963
+ if (!l)
964
+ for (var f = n.length - 1; f >= 0; f--) {
965
+ var p = n[f];
966
+ if (p.prefix === "" && p.namespace === u.namespaceURI) {
967
+ l = p.namespace;
968
+ break;
969
+ }
970
+ }
971
+ if (l !== u.namespaceURI)
972
+ for (var f = n.length - 1; f >= 0; f--) {
973
+ var p = n[f];
974
+ if (p.namespace === u.namespaceURI) {
975
+ p.prefix && (o = p.prefix + ":" + s);
976
+ break;
977
+ }
978
+ }
979
+ }
980
+ e.push("<", o);
981
+ for (var d = 0; d < i; d++) {
982
+ var B = a.item(d);
983
+ B.prefix == "xmlns" ? n.push({ prefix: B.localName, namespace: B.value }) : B.nodeName == "xmlns" && n.push({ prefix: "", namespace: B.value });
984
+ }
985
+ for (var d = 0; d < i; d++) {
986
+ var B = a.item(d);
987
+ if (Gu(B, r, n)) {
988
+ var E = B.prefix || "", A = B.namespaceURI;
989
+ du(e, E ? "xmlns:" + E : "xmlns", A), n.push({ prefix: E, namespace: A });
990
+ }
991
+ j(B, e, r, t, n);
992
+ }
993
+ if (s === o && Gu(u, r, n)) {
994
+ var E = u.prefix || "", A = u.namespaceURI;
995
+ du(e, E ? "xmlns:" + E : "xmlns", A), n.push({ prefix: E, namespace: A });
996
+ }
997
+ if (g || r && !/^(?:meta|link|img|br|hr|input)$/i.test(s)) {
998
+ if (e.push(">"), r && /^script$/i.test(s))
999
+ for (; g; )
1000
+ g.data ? e.push(g.data) : j(g, e, r, t, n.slice()), g = g.nextSibling;
1001
+ else
1002
+ for (; g; )
1003
+ j(g, e, r, t, n.slice()), g = g.nextSibling;
1004
+ e.push("</", o, ">");
1005
+ } else
1006
+ e.push("/>");
1007
+ return;
1008
+ case te:
1009
+ case L:
1010
+ for (var g = u.firstChild; g; )
1011
+ j(g, e, r, t, n.slice()), g = g.nextSibling;
1012
+ return;
1013
+ case $:
1014
+ return du(e, u.name, u.value);
1015
+ case su:
1016
+ return e.push(
1017
+ u.data.replace(/[<&>]/g, se)
1018
+ );
1019
+ case Ku:
1020
+ return e.push("<![CDATA[", u.data, "]]>");
1021
+ case re:
1022
+ return e.push("<!--", u.data, "-->");
1023
+ case ne:
1024
+ var Q = u.publicId, C = u.systemId;
1025
+ if (e.push("<!DOCTYPE ", u.name), Q)
1026
+ e.push(" PUBLIC ", Q), C && C != "." && e.push(" ", C), e.push(">");
1027
+ else if (C && C != ".")
1028
+ e.push(" SYSTEM ", C, ">");
1029
+ else {
1030
+ var x = u.internalSubset;
1031
+ x && e.push(" [", x, "]"), e.push(">");
1032
+ }
1033
+ return;
1034
+ case ee:
1035
+ return e.push("<?", u.target, " ", u.data, "?>");
1036
+ case ue:
1037
+ return e.push("&", u.nodeName, ";");
1038
+ default:
1039
+ e.push("??", u.nodeName);
1040
+ }
1041
+ }
1042
+ function me(u, e, r) {
1043
+ var t;
1044
+ switch (e.nodeType) {
1045
+ case q:
1046
+ t = e.cloneNode(!1), t.ownerDocument = u;
1047
+ case L:
1048
+ break;
1049
+ case $:
1050
+ r = !0;
1051
+ break;
1052
+ }
1053
+ if (t || (t = e.cloneNode(!1)), t.ownerDocument = u, t.parentNode = null, r)
1054
+ for (var n = e.firstChild; n; )
1055
+ t.appendChild(me(u, n, r)), n = n.nextSibling;
1056
+ return t;
1057
+ }
1058
+ function gu(u, e, r) {
1059
+ var t = new e.constructor();
1060
+ for (var n in e)
1061
+ if (Object.prototype.hasOwnProperty.call(e, n)) {
1062
+ var a = e[n];
1063
+ typeof a != "object" && a != t[n] && (t[n] = a);
1064
+ }
1065
+ switch (e.childNodes && (t.childNodes = new _()), t.ownerDocument = u, t.nodeType) {
1066
+ case q:
1067
+ var i = e.attributes, s = t.attributes = new lu(), o = i.length;
1068
+ s._ownerElement = t;
1069
+ for (var l = 0; l < o; l++)
1070
+ t.setAttributeNode(gu(u, i.item(l), !0));
1071
+ break;
1072
+ case $:
1073
+ r = !0;
1074
+ }
1075
+ if (r)
1076
+ for (var c = e.firstChild; c; )
1077
+ t.appendChild(gu(u, c, r)), c = c.nextSibling;
1078
+ return t;
1079
+ }
1080
+ function Ee(u, e, r) {
1081
+ u[e] = r;
1082
+ }
1083
+ try {
1084
+ if (Object.defineProperty) {
1085
+ let u = function(e) {
1086
+ switch (e.nodeType) {
1087
+ case q:
1088
+ case L:
1089
+ var r = [];
1090
+ for (e = e.firstChild; e; )
1091
+ e.nodeType !== 7 && e.nodeType !== 8 && r.push(u(e)), e = e.nextSibling;
1092
+ return r.join("");
1093
+ default:
1094
+ return e.nodeValue;
1095
+ }
1096
+ };
1097
+ Object.defineProperty(X.prototype, "length", {
1098
+ get: function() {
1099
+ return wu(this), this.$$length;
1100
+ }
1101
+ }), Object.defineProperty(D.prototype, "textContent", {
1102
+ get: function() {
1103
+ return u(this);
1104
+ },
1105
+ set: function(e) {
1106
+ switch (this.nodeType) {
1107
+ case q:
1108
+ case L:
1109
+ for (; this.firstChild; )
1110
+ this.removeChild(this.firstChild);
1111
+ (e || String(e)) && this.appendChild(this.ownerDocument.createTextNode(e));
1112
+ break;
1113
+ default:
1114
+ this.data = e, this.value = e, this.nodeValue = e;
1115
+ }
1116
+ }
1117
+ }), Ee = function(e, r, t) {
1118
+ e["$$" + r] = t;
1119
+ };
1120
+ }
1121
+ } catch {
1122
+ }
1123
+ M.DocumentType = Du;
1124
+ M.DOMException = m;
1125
+ M.DOMImplementation = oe;
1126
+ M.Element = P;
1127
+ M.Node = D;
1128
+ M.NodeList = _;
1129
+ M.XMLSerializer = Ae;
1130
+ var Au = {}, de = {};
1131
+ (function(u) {
1132
+ var e = k.freeze;
1133
+ u.XML_ENTITIES = e({
1134
+ amp: "&",
1135
+ apos: "'",
1136
+ gt: ">",
1137
+ lt: "<",
1138
+ quot: '"'
1139
+ }), u.HTML_ENTITIES = e({
1140
+ Aacute: "Á",
1141
+ aacute: "á",
1142
+ Abreve: "Ă",
1143
+ abreve: "ă",
1144
+ ac: "∾",
1145
+ acd: "∿",
1146
+ acE: "∾̳",
1147
+ Acirc: "Â",
1148
+ acirc: "â",
1149
+ acute: "´",
1150
+ Acy: "А",
1151
+ acy: "а",
1152
+ AElig: "Æ",
1153
+ aelig: "æ",
1154
+ af: "⁡",
1155
+ Afr: "𝔄",
1156
+ afr: "𝔞",
1157
+ Agrave: "À",
1158
+ agrave: "à",
1159
+ alefsym: "ℵ",
1160
+ aleph: "ℵ",
1161
+ Alpha: "Α",
1162
+ alpha: "α",
1163
+ Amacr: "Ā",
1164
+ amacr: "ā",
1165
+ amalg: "⨿",
1166
+ AMP: "&",
1167
+ amp: "&",
1168
+ And: "⩓",
1169
+ and: "∧",
1170
+ andand: "⩕",
1171
+ andd: "⩜",
1172
+ andslope: "⩘",
1173
+ andv: "⩚",
1174
+ ang: "∠",
1175
+ ange: "⦤",
1176
+ angle: "∠",
1177
+ angmsd: "∡",
1178
+ angmsdaa: "⦨",
1179
+ angmsdab: "⦩",
1180
+ angmsdac: "⦪",
1181
+ angmsdad: "⦫",
1182
+ angmsdae: "⦬",
1183
+ angmsdaf: "⦭",
1184
+ angmsdag: "⦮",
1185
+ angmsdah: "⦯",
1186
+ angrt: "∟",
1187
+ angrtvb: "⊾",
1188
+ angrtvbd: "⦝",
1189
+ angsph: "∢",
1190
+ angst: "Å",
1191
+ angzarr: "⍼",
1192
+ Aogon: "Ą",
1193
+ aogon: "ą",
1194
+ Aopf: "𝔸",
1195
+ aopf: "𝕒",
1196
+ ap: "≈",
1197
+ apacir: "⩯",
1198
+ apE: "⩰",
1199
+ ape: "≊",
1200
+ apid: "≋",
1201
+ apos: "'",
1202
+ ApplyFunction: "⁡",
1203
+ approx: "≈",
1204
+ approxeq: "≊",
1205
+ Aring: "Å",
1206
+ aring: "å",
1207
+ Ascr: "𝒜",
1208
+ ascr: "𝒶",
1209
+ Assign: "≔",
1210
+ ast: "*",
1211
+ asymp: "≈",
1212
+ asympeq: "≍",
1213
+ Atilde: "Ã",
1214
+ atilde: "ã",
1215
+ Auml: "Ä",
1216
+ auml: "ä",
1217
+ awconint: "∳",
1218
+ awint: "⨑",
1219
+ backcong: "≌",
1220
+ backepsilon: "϶",
1221
+ backprime: "‵",
1222
+ backsim: "∽",
1223
+ backsimeq: "⋍",
1224
+ Backslash: "∖",
1225
+ Barv: "⫧",
1226
+ barvee: "⊽",
1227
+ Barwed: "⌆",
1228
+ barwed: "⌅",
1229
+ barwedge: "⌅",
1230
+ bbrk: "⎵",
1231
+ bbrktbrk: "⎶",
1232
+ bcong: "≌",
1233
+ Bcy: "Б",
1234
+ bcy: "б",
1235
+ bdquo: "„",
1236
+ becaus: "∵",
1237
+ Because: "∵",
1238
+ because: "∵",
1239
+ bemptyv: "⦰",
1240
+ bepsi: "϶",
1241
+ bernou: "ℬ",
1242
+ Bernoullis: "ℬ",
1243
+ Beta: "Β",
1244
+ beta: "β",
1245
+ beth: "ℶ",
1246
+ between: "≬",
1247
+ Bfr: "𝔅",
1248
+ bfr: "𝔟",
1249
+ bigcap: "⋂",
1250
+ bigcirc: "◯",
1251
+ bigcup: "⋃",
1252
+ bigodot: "⨀",
1253
+ bigoplus: "⨁",
1254
+ bigotimes: "⨂",
1255
+ bigsqcup: "⨆",
1256
+ bigstar: "★",
1257
+ bigtriangledown: "▽",
1258
+ bigtriangleup: "△",
1259
+ biguplus: "⨄",
1260
+ bigvee: "⋁",
1261
+ bigwedge: "⋀",
1262
+ bkarow: "⤍",
1263
+ blacklozenge: "⧫",
1264
+ blacksquare: "▪",
1265
+ blacktriangle: "▴",
1266
+ blacktriangledown: "▾",
1267
+ blacktriangleleft: "◂",
1268
+ blacktriangleright: "▸",
1269
+ blank: "␣",
1270
+ blk12: "▒",
1271
+ blk14: "░",
1272
+ blk34: "▓",
1273
+ block: "█",
1274
+ bne: "=⃥",
1275
+ bnequiv: "≡⃥",
1276
+ bNot: "⫭",
1277
+ bnot: "⌐",
1278
+ Bopf: "𝔹",
1279
+ bopf: "𝕓",
1280
+ bot: "⊥",
1281
+ bottom: "⊥",
1282
+ bowtie: "⋈",
1283
+ boxbox: "⧉",
1284
+ boxDL: "╗",
1285
+ boxDl: "╖",
1286
+ boxdL: "╕",
1287
+ boxdl: "┐",
1288
+ boxDR: "╔",
1289
+ boxDr: "╓",
1290
+ boxdR: "╒",
1291
+ boxdr: "┌",
1292
+ boxH: "═",
1293
+ boxh: "─",
1294
+ boxHD: "╦",
1295
+ boxHd: "╤",
1296
+ boxhD: "╥",
1297
+ boxhd: "┬",
1298
+ boxHU: "╩",
1299
+ boxHu: "╧",
1300
+ boxhU: "╨",
1301
+ boxhu: "┴",
1302
+ boxminus: "⊟",
1303
+ boxplus: "⊞",
1304
+ boxtimes: "⊠",
1305
+ boxUL: "╝",
1306
+ boxUl: "╜",
1307
+ boxuL: "╛",
1308
+ boxul: "┘",
1309
+ boxUR: "╚",
1310
+ boxUr: "╙",
1311
+ boxuR: "╘",
1312
+ boxur: "└",
1313
+ boxV: "║",
1314
+ boxv: "│",
1315
+ boxVH: "╬",
1316
+ boxVh: "╫",
1317
+ boxvH: "╪",
1318
+ boxvh: "┼",
1319
+ boxVL: "╣",
1320
+ boxVl: "╢",
1321
+ boxvL: "╡",
1322
+ boxvl: "┤",
1323
+ boxVR: "╠",
1324
+ boxVr: "╟",
1325
+ boxvR: "╞",
1326
+ boxvr: "├",
1327
+ bprime: "‵",
1328
+ Breve: "˘",
1329
+ breve: "˘",
1330
+ brvbar: "¦",
1331
+ Bscr: "ℬ",
1332
+ bscr: "𝒷",
1333
+ bsemi: "⁏",
1334
+ bsim: "∽",
1335
+ bsime: "⋍",
1336
+ bsol: "\\",
1337
+ bsolb: "⧅",
1338
+ bsolhsub: "⟈",
1339
+ bull: "•",
1340
+ bullet: "•",
1341
+ bump: "≎",
1342
+ bumpE: "⪮",
1343
+ bumpe: "≏",
1344
+ Bumpeq: "≎",
1345
+ bumpeq: "≏",
1346
+ Cacute: "Ć",
1347
+ cacute: "ć",
1348
+ Cap: "⋒",
1349
+ cap: "∩",
1350
+ capand: "⩄",
1351
+ capbrcup: "⩉",
1352
+ capcap: "⩋",
1353
+ capcup: "⩇",
1354
+ capdot: "⩀",
1355
+ CapitalDifferentialD: "ⅅ",
1356
+ caps: "∩︀",
1357
+ caret: "⁁",
1358
+ caron: "ˇ",
1359
+ Cayleys: "ℭ",
1360
+ ccaps: "⩍",
1361
+ Ccaron: "Č",
1362
+ ccaron: "č",
1363
+ Ccedil: "Ç",
1364
+ ccedil: "ç",
1365
+ Ccirc: "Ĉ",
1366
+ ccirc: "ĉ",
1367
+ Cconint: "∰",
1368
+ ccups: "⩌",
1369
+ ccupssm: "⩐",
1370
+ Cdot: "Ċ",
1371
+ cdot: "ċ",
1372
+ cedil: "¸",
1373
+ Cedilla: "¸",
1374
+ cemptyv: "⦲",
1375
+ cent: "¢",
1376
+ CenterDot: "·",
1377
+ centerdot: "·",
1378
+ Cfr: "ℭ",
1379
+ cfr: "𝔠",
1380
+ CHcy: "Ч",
1381
+ chcy: "ч",
1382
+ check: "✓",
1383
+ checkmark: "✓",
1384
+ Chi: "Χ",
1385
+ chi: "χ",
1386
+ cir: "○",
1387
+ circ: "ˆ",
1388
+ circeq: "≗",
1389
+ circlearrowleft: "↺",
1390
+ circlearrowright: "↻",
1391
+ circledast: "⊛",
1392
+ circledcirc: "⊚",
1393
+ circleddash: "⊝",
1394
+ CircleDot: "⊙",
1395
+ circledR: "®",
1396
+ circledS: "Ⓢ",
1397
+ CircleMinus: "⊖",
1398
+ CirclePlus: "⊕",
1399
+ CircleTimes: "⊗",
1400
+ cirE: "⧃",
1401
+ cire: "≗",
1402
+ cirfnint: "⨐",
1403
+ cirmid: "⫯",
1404
+ cirscir: "⧂",
1405
+ ClockwiseContourIntegral: "∲",
1406
+ CloseCurlyDoubleQuote: "”",
1407
+ CloseCurlyQuote: "’",
1408
+ clubs: "♣",
1409
+ clubsuit: "♣",
1410
+ Colon: "∷",
1411
+ colon: ":",
1412
+ Colone: "⩴",
1413
+ colone: "≔",
1414
+ coloneq: "≔",
1415
+ comma: ",",
1416
+ commat: "@",
1417
+ comp: "∁",
1418
+ compfn: "∘",
1419
+ complement: "∁",
1420
+ complexes: "ℂ",
1421
+ cong: "≅",
1422
+ congdot: "⩭",
1423
+ Congruent: "≡",
1424
+ Conint: "∯",
1425
+ conint: "∮",
1426
+ ContourIntegral: "∮",
1427
+ Copf: "ℂ",
1428
+ copf: "𝕔",
1429
+ coprod: "∐",
1430
+ Coproduct: "∐",
1431
+ COPY: "©",
1432
+ copy: "©",
1433
+ copysr: "℗",
1434
+ CounterClockwiseContourIntegral: "∳",
1435
+ crarr: "↵",
1436
+ Cross: "⨯",
1437
+ cross: "✗",
1438
+ Cscr: "𝒞",
1439
+ cscr: "𝒸",
1440
+ csub: "⫏",
1441
+ csube: "⫑",
1442
+ csup: "⫐",
1443
+ csupe: "⫒",
1444
+ ctdot: "⋯",
1445
+ cudarrl: "⤸",
1446
+ cudarrr: "⤵",
1447
+ cuepr: "⋞",
1448
+ cuesc: "⋟",
1449
+ cularr: "↶",
1450
+ cularrp: "⤽",
1451
+ Cup: "⋓",
1452
+ cup: "∪",
1453
+ cupbrcap: "⩈",
1454
+ CupCap: "≍",
1455
+ cupcap: "⩆",
1456
+ cupcup: "⩊",
1457
+ cupdot: "⊍",
1458
+ cupor: "⩅",
1459
+ cups: "∪︀",
1460
+ curarr: "↷",
1461
+ curarrm: "⤼",
1462
+ curlyeqprec: "⋞",
1463
+ curlyeqsucc: "⋟",
1464
+ curlyvee: "⋎",
1465
+ curlywedge: "⋏",
1466
+ curren: "¤",
1467
+ curvearrowleft: "↶",
1468
+ curvearrowright: "↷",
1469
+ cuvee: "⋎",
1470
+ cuwed: "⋏",
1471
+ cwconint: "∲",
1472
+ cwint: "∱",
1473
+ cylcty: "⌭",
1474
+ Dagger: "‡",
1475
+ dagger: "†",
1476
+ daleth: "ℸ",
1477
+ Darr: "↡",
1478
+ dArr: "⇓",
1479
+ darr: "↓",
1480
+ dash: "‐",
1481
+ Dashv: "⫤",
1482
+ dashv: "⊣",
1483
+ dbkarow: "⤏",
1484
+ dblac: "˝",
1485
+ Dcaron: "Ď",
1486
+ dcaron: "ď",
1487
+ Dcy: "Д",
1488
+ dcy: "д",
1489
+ DD: "ⅅ",
1490
+ dd: "ⅆ",
1491
+ ddagger: "‡",
1492
+ ddarr: "⇊",
1493
+ DDotrahd: "⤑",
1494
+ ddotseq: "⩷",
1495
+ deg: "°",
1496
+ Del: "∇",
1497
+ Delta: "Δ",
1498
+ delta: "δ",
1499
+ demptyv: "⦱",
1500
+ dfisht: "⥿",
1501
+ Dfr: "𝔇",
1502
+ dfr: "𝔡",
1503
+ dHar: "⥥",
1504
+ dharl: "⇃",
1505
+ dharr: "⇂",
1506
+ DiacriticalAcute: "´",
1507
+ DiacriticalDot: "˙",
1508
+ DiacriticalDoubleAcute: "˝",
1509
+ DiacriticalGrave: "`",
1510
+ DiacriticalTilde: "˜",
1511
+ diam: "⋄",
1512
+ Diamond: "⋄",
1513
+ diamond: "⋄",
1514
+ diamondsuit: "♦",
1515
+ diams: "♦",
1516
+ die: "¨",
1517
+ DifferentialD: "ⅆ",
1518
+ digamma: "ϝ",
1519
+ disin: "⋲",
1520
+ div: "÷",
1521
+ divide: "÷",
1522
+ divideontimes: "⋇",
1523
+ divonx: "⋇",
1524
+ DJcy: "Ђ",
1525
+ djcy: "ђ",
1526
+ dlcorn: "⌞",
1527
+ dlcrop: "⌍",
1528
+ dollar: "$",
1529
+ Dopf: "𝔻",
1530
+ dopf: "𝕕",
1531
+ Dot: "¨",
1532
+ dot: "˙",
1533
+ DotDot: "⃜",
1534
+ doteq: "≐",
1535
+ doteqdot: "≑",
1536
+ DotEqual: "≐",
1537
+ dotminus: "∸",
1538
+ dotplus: "∔",
1539
+ dotsquare: "⊡",
1540
+ doublebarwedge: "⌆",
1541
+ DoubleContourIntegral: "∯",
1542
+ DoubleDot: "¨",
1543
+ DoubleDownArrow: "⇓",
1544
+ DoubleLeftArrow: "⇐",
1545
+ DoubleLeftRightArrow: "⇔",
1546
+ DoubleLeftTee: "⫤",
1547
+ DoubleLongLeftArrow: "⟸",
1548
+ DoubleLongLeftRightArrow: "⟺",
1549
+ DoubleLongRightArrow: "⟹",
1550
+ DoubleRightArrow: "⇒",
1551
+ DoubleRightTee: "⊨",
1552
+ DoubleUpArrow: "⇑",
1553
+ DoubleUpDownArrow: "⇕",
1554
+ DoubleVerticalBar: "∥",
1555
+ DownArrow: "↓",
1556
+ Downarrow: "⇓",
1557
+ downarrow: "↓",
1558
+ DownArrowBar: "⤓",
1559
+ DownArrowUpArrow: "⇵",
1560
+ DownBreve: "̑",
1561
+ downdownarrows: "⇊",
1562
+ downharpoonleft: "⇃",
1563
+ downharpoonright: "⇂",
1564
+ DownLeftRightVector: "⥐",
1565
+ DownLeftTeeVector: "⥞",
1566
+ DownLeftVector: "↽",
1567
+ DownLeftVectorBar: "⥖",
1568
+ DownRightTeeVector: "⥟",
1569
+ DownRightVector: "⇁",
1570
+ DownRightVectorBar: "⥗",
1571
+ DownTee: "⊤",
1572
+ DownTeeArrow: "↧",
1573
+ drbkarow: "⤐",
1574
+ drcorn: "⌟",
1575
+ drcrop: "⌌",
1576
+ Dscr: "𝒟",
1577
+ dscr: "𝒹",
1578
+ DScy: "Ѕ",
1579
+ dscy: "ѕ",
1580
+ dsol: "⧶",
1581
+ Dstrok: "Đ",
1582
+ dstrok: "đ",
1583
+ dtdot: "⋱",
1584
+ dtri: "▿",
1585
+ dtrif: "▾",
1586
+ duarr: "⇵",
1587
+ duhar: "⥯",
1588
+ dwangle: "⦦",
1589
+ DZcy: "Џ",
1590
+ dzcy: "џ",
1591
+ dzigrarr: "⟿",
1592
+ Eacute: "É",
1593
+ eacute: "é",
1594
+ easter: "⩮",
1595
+ Ecaron: "Ě",
1596
+ ecaron: "ě",
1597
+ ecir: "≖",
1598
+ Ecirc: "Ê",
1599
+ ecirc: "ê",
1600
+ ecolon: "≕",
1601
+ Ecy: "Э",
1602
+ ecy: "э",
1603
+ eDDot: "⩷",
1604
+ Edot: "Ė",
1605
+ eDot: "≑",
1606
+ edot: "ė",
1607
+ ee: "ⅇ",
1608
+ efDot: "≒",
1609
+ Efr: "𝔈",
1610
+ efr: "𝔢",
1611
+ eg: "⪚",
1612
+ Egrave: "È",
1613
+ egrave: "è",
1614
+ egs: "⪖",
1615
+ egsdot: "⪘",
1616
+ el: "⪙",
1617
+ Element: "∈",
1618
+ elinters: "⏧",
1619
+ ell: "ℓ",
1620
+ els: "⪕",
1621
+ elsdot: "⪗",
1622
+ Emacr: "Ē",
1623
+ emacr: "ē",
1624
+ empty: "∅",
1625
+ emptyset: "∅",
1626
+ EmptySmallSquare: "◻",
1627
+ emptyv: "∅",
1628
+ EmptyVerySmallSquare: "▫",
1629
+ emsp: " ",
1630
+ emsp13: " ",
1631
+ emsp14: " ",
1632
+ ENG: "Ŋ",
1633
+ eng: "ŋ",
1634
+ ensp: " ",
1635
+ Eogon: "Ę",
1636
+ eogon: "ę",
1637
+ Eopf: "𝔼",
1638
+ eopf: "𝕖",
1639
+ epar: "⋕",
1640
+ eparsl: "⧣",
1641
+ eplus: "⩱",
1642
+ epsi: "ε",
1643
+ Epsilon: "Ε",
1644
+ epsilon: "ε",
1645
+ epsiv: "ϵ",
1646
+ eqcirc: "≖",
1647
+ eqcolon: "≕",
1648
+ eqsim: "≂",
1649
+ eqslantgtr: "⪖",
1650
+ eqslantless: "⪕",
1651
+ Equal: "⩵",
1652
+ equals: "=",
1653
+ EqualTilde: "≂",
1654
+ equest: "≟",
1655
+ Equilibrium: "⇌",
1656
+ equiv: "≡",
1657
+ equivDD: "⩸",
1658
+ eqvparsl: "⧥",
1659
+ erarr: "⥱",
1660
+ erDot: "≓",
1661
+ Escr: "ℰ",
1662
+ escr: "ℯ",
1663
+ esdot: "≐",
1664
+ Esim: "⩳",
1665
+ esim: "≂",
1666
+ Eta: "Η",
1667
+ eta: "η",
1668
+ ETH: "Ð",
1669
+ eth: "ð",
1670
+ Euml: "Ë",
1671
+ euml: "ë",
1672
+ euro: "€",
1673
+ excl: "!",
1674
+ exist: "∃",
1675
+ Exists: "∃",
1676
+ expectation: "ℰ",
1677
+ ExponentialE: "ⅇ",
1678
+ exponentiale: "ⅇ",
1679
+ fallingdotseq: "≒",
1680
+ Fcy: "Ф",
1681
+ fcy: "ф",
1682
+ female: "♀",
1683
+ ffilig: "ffi",
1684
+ fflig: "ff",
1685
+ ffllig: "ffl",
1686
+ Ffr: "𝔉",
1687
+ ffr: "𝔣",
1688
+ filig: "fi",
1689
+ FilledSmallSquare: "◼",
1690
+ FilledVerySmallSquare: "▪",
1691
+ fjlig: "fj",
1692
+ flat: "♭",
1693
+ fllig: "fl",
1694
+ fltns: "▱",
1695
+ fnof: "ƒ",
1696
+ Fopf: "𝔽",
1697
+ fopf: "𝕗",
1698
+ ForAll: "∀",
1699
+ forall: "∀",
1700
+ fork: "⋔",
1701
+ forkv: "⫙",
1702
+ Fouriertrf: "ℱ",
1703
+ fpartint: "⨍",
1704
+ frac12: "½",
1705
+ frac13: "⅓",
1706
+ frac14: "¼",
1707
+ frac15: "⅕",
1708
+ frac16: "⅙",
1709
+ frac18: "⅛",
1710
+ frac23: "⅔",
1711
+ frac25: "⅖",
1712
+ frac34: "¾",
1713
+ frac35: "⅗",
1714
+ frac38: "⅜",
1715
+ frac45: "⅘",
1716
+ frac56: "⅚",
1717
+ frac58: "⅝",
1718
+ frac78: "⅞",
1719
+ frasl: "⁄",
1720
+ frown: "⌢",
1721
+ Fscr: "ℱ",
1722
+ fscr: "𝒻",
1723
+ gacute: "ǵ",
1724
+ Gamma: "Γ",
1725
+ gamma: "γ",
1726
+ Gammad: "Ϝ",
1727
+ gammad: "ϝ",
1728
+ gap: "⪆",
1729
+ Gbreve: "Ğ",
1730
+ gbreve: "ğ",
1731
+ Gcedil: "Ģ",
1732
+ Gcirc: "Ĝ",
1733
+ gcirc: "ĝ",
1734
+ Gcy: "Г",
1735
+ gcy: "г",
1736
+ Gdot: "Ġ",
1737
+ gdot: "ġ",
1738
+ gE: "≧",
1739
+ ge: "≥",
1740
+ gEl: "⪌",
1741
+ gel: "⋛",
1742
+ geq: "≥",
1743
+ geqq: "≧",
1744
+ geqslant: "⩾",
1745
+ ges: "⩾",
1746
+ gescc: "⪩",
1747
+ gesdot: "⪀",
1748
+ gesdoto: "⪂",
1749
+ gesdotol: "⪄",
1750
+ gesl: "⋛︀",
1751
+ gesles: "⪔",
1752
+ Gfr: "𝔊",
1753
+ gfr: "𝔤",
1754
+ Gg: "⋙",
1755
+ gg: "≫",
1756
+ ggg: "⋙",
1757
+ gimel: "ℷ",
1758
+ GJcy: "Ѓ",
1759
+ gjcy: "ѓ",
1760
+ gl: "≷",
1761
+ gla: "⪥",
1762
+ glE: "⪒",
1763
+ glj: "⪤",
1764
+ gnap: "⪊",
1765
+ gnapprox: "⪊",
1766
+ gnE: "≩",
1767
+ gne: "⪈",
1768
+ gneq: "⪈",
1769
+ gneqq: "≩",
1770
+ gnsim: "⋧",
1771
+ Gopf: "𝔾",
1772
+ gopf: "𝕘",
1773
+ grave: "`",
1774
+ GreaterEqual: "≥",
1775
+ GreaterEqualLess: "⋛",
1776
+ GreaterFullEqual: "≧",
1777
+ GreaterGreater: "⪢",
1778
+ GreaterLess: "≷",
1779
+ GreaterSlantEqual: "⩾",
1780
+ GreaterTilde: "≳",
1781
+ Gscr: "𝒢",
1782
+ gscr: "ℊ",
1783
+ gsim: "≳",
1784
+ gsime: "⪎",
1785
+ gsiml: "⪐",
1786
+ Gt: "≫",
1787
+ GT: ">",
1788
+ gt: ">",
1789
+ gtcc: "⪧",
1790
+ gtcir: "⩺",
1791
+ gtdot: "⋗",
1792
+ gtlPar: "⦕",
1793
+ gtquest: "⩼",
1794
+ gtrapprox: "⪆",
1795
+ gtrarr: "⥸",
1796
+ gtrdot: "⋗",
1797
+ gtreqless: "⋛",
1798
+ gtreqqless: "⪌",
1799
+ gtrless: "≷",
1800
+ gtrsim: "≳",
1801
+ gvertneqq: "≩︀",
1802
+ gvnE: "≩︀",
1803
+ Hacek: "ˇ",
1804
+ hairsp: " ",
1805
+ half: "½",
1806
+ hamilt: "ℋ",
1807
+ HARDcy: "Ъ",
1808
+ hardcy: "ъ",
1809
+ hArr: "⇔",
1810
+ harr: "↔",
1811
+ harrcir: "⥈",
1812
+ harrw: "↭",
1813
+ Hat: "^",
1814
+ hbar: "ℏ",
1815
+ Hcirc: "Ĥ",
1816
+ hcirc: "ĥ",
1817
+ hearts: "♥",
1818
+ heartsuit: "♥",
1819
+ hellip: "…",
1820
+ hercon: "⊹",
1821
+ Hfr: "ℌ",
1822
+ hfr: "𝔥",
1823
+ HilbertSpace: "ℋ",
1824
+ hksearow: "⤥",
1825
+ hkswarow: "⤦",
1826
+ hoarr: "⇿",
1827
+ homtht: "∻",
1828
+ hookleftarrow: "↩",
1829
+ hookrightarrow: "↪",
1830
+ Hopf: "ℍ",
1831
+ hopf: "𝕙",
1832
+ horbar: "―",
1833
+ HorizontalLine: "─",
1834
+ Hscr: "ℋ",
1835
+ hscr: "𝒽",
1836
+ hslash: "ℏ",
1837
+ Hstrok: "Ħ",
1838
+ hstrok: "ħ",
1839
+ HumpDownHump: "≎",
1840
+ HumpEqual: "≏",
1841
+ hybull: "⁃",
1842
+ hyphen: "‐",
1843
+ Iacute: "Í",
1844
+ iacute: "í",
1845
+ ic: "⁣",
1846
+ Icirc: "Î",
1847
+ icirc: "î",
1848
+ Icy: "И",
1849
+ icy: "и",
1850
+ Idot: "İ",
1851
+ IEcy: "Е",
1852
+ iecy: "е",
1853
+ iexcl: "¡",
1854
+ iff: "⇔",
1855
+ Ifr: "ℑ",
1856
+ ifr: "𝔦",
1857
+ Igrave: "Ì",
1858
+ igrave: "ì",
1859
+ ii: "ⅈ",
1860
+ iiiint: "⨌",
1861
+ iiint: "∭",
1862
+ iinfin: "⧜",
1863
+ iiota: "℩",
1864
+ IJlig: "IJ",
1865
+ ijlig: "ij",
1866
+ Im: "ℑ",
1867
+ Imacr: "Ī",
1868
+ imacr: "ī",
1869
+ image: "ℑ",
1870
+ ImaginaryI: "ⅈ",
1871
+ imagline: "ℐ",
1872
+ imagpart: "ℑ",
1873
+ imath: "ı",
1874
+ imof: "⊷",
1875
+ imped: "Ƶ",
1876
+ Implies: "⇒",
1877
+ in: "∈",
1878
+ incare: "℅",
1879
+ infin: "∞",
1880
+ infintie: "⧝",
1881
+ inodot: "ı",
1882
+ Int: "∬",
1883
+ int: "∫",
1884
+ intcal: "⊺",
1885
+ integers: "ℤ",
1886
+ Integral: "∫",
1887
+ intercal: "⊺",
1888
+ Intersection: "⋂",
1889
+ intlarhk: "⨗",
1890
+ intprod: "⨼",
1891
+ InvisibleComma: "⁣",
1892
+ InvisibleTimes: "⁢",
1893
+ IOcy: "Ё",
1894
+ iocy: "ё",
1895
+ Iogon: "Į",
1896
+ iogon: "į",
1897
+ Iopf: "𝕀",
1898
+ iopf: "𝕚",
1899
+ Iota: "Ι",
1900
+ iota: "ι",
1901
+ iprod: "⨼",
1902
+ iquest: "¿",
1903
+ Iscr: "ℐ",
1904
+ iscr: "𝒾",
1905
+ isin: "∈",
1906
+ isindot: "⋵",
1907
+ isinE: "⋹",
1908
+ isins: "⋴",
1909
+ isinsv: "⋳",
1910
+ isinv: "∈",
1911
+ it: "⁢",
1912
+ Itilde: "Ĩ",
1913
+ itilde: "ĩ",
1914
+ Iukcy: "І",
1915
+ iukcy: "і",
1916
+ Iuml: "Ï",
1917
+ iuml: "ï",
1918
+ Jcirc: "Ĵ",
1919
+ jcirc: "ĵ",
1920
+ Jcy: "Й",
1921
+ jcy: "й",
1922
+ Jfr: "𝔍",
1923
+ jfr: "𝔧",
1924
+ jmath: "ȷ",
1925
+ Jopf: "𝕁",
1926
+ jopf: "𝕛",
1927
+ Jscr: "𝒥",
1928
+ jscr: "𝒿",
1929
+ Jsercy: "Ј",
1930
+ jsercy: "ј",
1931
+ Jukcy: "Є",
1932
+ jukcy: "є",
1933
+ Kappa: "Κ",
1934
+ kappa: "κ",
1935
+ kappav: "ϰ",
1936
+ Kcedil: "Ķ",
1937
+ kcedil: "ķ",
1938
+ Kcy: "К",
1939
+ kcy: "к",
1940
+ Kfr: "𝔎",
1941
+ kfr: "𝔨",
1942
+ kgreen: "ĸ",
1943
+ KHcy: "Х",
1944
+ khcy: "х",
1945
+ KJcy: "Ќ",
1946
+ kjcy: "ќ",
1947
+ Kopf: "𝕂",
1948
+ kopf: "𝕜",
1949
+ Kscr: "𝒦",
1950
+ kscr: "𝓀",
1951
+ lAarr: "⇚",
1952
+ Lacute: "Ĺ",
1953
+ lacute: "ĺ",
1954
+ laemptyv: "⦴",
1955
+ lagran: "ℒ",
1956
+ Lambda: "Λ",
1957
+ lambda: "λ",
1958
+ Lang: "⟪",
1959
+ lang: "⟨",
1960
+ langd: "⦑",
1961
+ langle: "⟨",
1962
+ lap: "⪅",
1963
+ Laplacetrf: "ℒ",
1964
+ laquo: "«",
1965
+ Larr: "↞",
1966
+ lArr: "⇐",
1967
+ larr: "←",
1968
+ larrb: "⇤",
1969
+ larrbfs: "⤟",
1970
+ larrfs: "⤝",
1971
+ larrhk: "↩",
1972
+ larrlp: "↫",
1973
+ larrpl: "⤹",
1974
+ larrsim: "⥳",
1975
+ larrtl: "↢",
1976
+ lat: "⪫",
1977
+ lAtail: "⤛",
1978
+ latail: "⤙",
1979
+ late: "⪭",
1980
+ lates: "⪭︀",
1981
+ lBarr: "⤎",
1982
+ lbarr: "⤌",
1983
+ lbbrk: "❲",
1984
+ lbrace: "{",
1985
+ lbrack: "[",
1986
+ lbrke: "⦋",
1987
+ lbrksld: "⦏",
1988
+ lbrkslu: "⦍",
1989
+ Lcaron: "Ľ",
1990
+ lcaron: "ľ",
1991
+ Lcedil: "Ļ",
1992
+ lcedil: "ļ",
1993
+ lceil: "⌈",
1994
+ lcub: "{",
1995
+ Lcy: "Л",
1996
+ lcy: "л",
1997
+ ldca: "⤶",
1998
+ ldquo: "“",
1999
+ ldquor: "„",
2000
+ ldrdhar: "⥧",
2001
+ ldrushar: "⥋",
2002
+ ldsh: "↲",
2003
+ lE: "≦",
2004
+ le: "≤",
2005
+ LeftAngleBracket: "⟨",
2006
+ LeftArrow: "←",
2007
+ Leftarrow: "⇐",
2008
+ leftarrow: "←",
2009
+ LeftArrowBar: "⇤",
2010
+ LeftArrowRightArrow: "⇆",
2011
+ leftarrowtail: "↢",
2012
+ LeftCeiling: "⌈",
2013
+ LeftDoubleBracket: "⟦",
2014
+ LeftDownTeeVector: "⥡",
2015
+ LeftDownVector: "⇃",
2016
+ LeftDownVectorBar: "⥙",
2017
+ LeftFloor: "⌊",
2018
+ leftharpoondown: "↽",
2019
+ leftharpoonup: "↼",
2020
+ leftleftarrows: "⇇",
2021
+ LeftRightArrow: "↔",
2022
+ Leftrightarrow: "⇔",
2023
+ leftrightarrow: "↔",
2024
+ leftrightarrows: "⇆",
2025
+ leftrightharpoons: "⇋",
2026
+ leftrightsquigarrow: "↭",
2027
+ LeftRightVector: "⥎",
2028
+ LeftTee: "⊣",
2029
+ LeftTeeArrow: "↤",
2030
+ LeftTeeVector: "⥚",
2031
+ leftthreetimes: "⋋",
2032
+ LeftTriangle: "⊲",
2033
+ LeftTriangleBar: "⧏",
2034
+ LeftTriangleEqual: "⊴",
2035
+ LeftUpDownVector: "⥑",
2036
+ LeftUpTeeVector: "⥠",
2037
+ LeftUpVector: "↿",
2038
+ LeftUpVectorBar: "⥘",
2039
+ LeftVector: "↼",
2040
+ LeftVectorBar: "⥒",
2041
+ lEg: "⪋",
2042
+ leg: "⋚",
2043
+ leq: "≤",
2044
+ leqq: "≦",
2045
+ leqslant: "⩽",
2046
+ les: "⩽",
2047
+ lescc: "⪨",
2048
+ lesdot: "⩿",
2049
+ lesdoto: "⪁",
2050
+ lesdotor: "⪃",
2051
+ lesg: "⋚︀",
2052
+ lesges: "⪓",
2053
+ lessapprox: "⪅",
2054
+ lessdot: "⋖",
2055
+ lesseqgtr: "⋚",
2056
+ lesseqqgtr: "⪋",
2057
+ LessEqualGreater: "⋚",
2058
+ LessFullEqual: "≦",
2059
+ LessGreater: "≶",
2060
+ lessgtr: "≶",
2061
+ LessLess: "⪡",
2062
+ lesssim: "≲",
2063
+ LessSlantEqual: "⩽",
2064
+ LessTilde: "≲",
2065
+ lfisht: "⥼",
2066
+ lfloor: "⌊",
2067
+ Lfr: "𝔏",
2068
+ lfr: "𝔩",
2069
+ lg: "≶",
2070
+ lgE: "⪑",
2071
+ lHar: "⥢",
2072
+ lhard: "↽",
2073
+ lharu: "↼",
2074
+ lharul: "⥪",
2075
+ lhblk: "▄",
2076
+ LJcy: "Љ",
2077
+ ljcy: "љ",
2078
+ Ll: "⋘",
2079
+ ll: "≪",
2080
+ llarr: "⇇",
2081
+ llcorner: "⌞",
2082
+ Lleftarrow: "⇚",
2083
+ llhard: "⥫",
2084
+ lltri: "◺",
2085
+ Lmidot: "Ŀ",
2086
+ lmidot: "ŀ",
2087
+ lmoust: "⎰",
2088
+ lmoustache: "⎰",
2089
+ lnap: "⪉",
2090
+ lnapprox: "⪉",
2091
+ lnE: "≨",
2092
+ lne: "⪇",
2093
+ lneq: "⪇",
2094
+ lneqq: "≨",
2095
+ lnsim: "⋦",
2096
+ loang: "⟬",
2097
+ loarr: "⇽",
2098
+ lobrk: "⟦",
2099
+ LongLeftArrow: "⟵",
2100
+ Longleftarrow: "⟸",
2101
+ longleftarrow: "⟵",
2102
+ LongLeftRightArrow: "⟷",
2103
+ Longleftrightarrow: "⟺",
2104
+ longleftrightarrow: "⟷",
2105
+ longmapsto: "⟼",
2106
+ LongRightArrow: "⟶",
2107
+ Longrightarrow: "⟹",
2108
+ longrightarrow: "⟶",
2109
+ looparrowleft: "↫",
2110
+ looparrowright: "↬",
2111
+ lopar: "⦅",
2112
+ Lopf: "𝕃",
2113
+ lopf: "𝕝",
2114
+ loplus: "⨭",
2115
+ lotimes: "⨴",
2116
+ lowast: "∗",
2117
+ lowbar: "_",
2118
+ LowerLeftArrow: "↙",
2119
+ LowerRightArrow: "↘",
2120
+ loz: "◊",
2121
+ lozenge: "◊",
2122
+ lozf: "⧫",
2123
+ lpar: "(",
2124
+ lparlt: "⦓",
2125
+ lrarr: "⇆",
2126
+ lrcorner: "⌟",
2127
+ lrhar: "⇋",
2128
+ lrhard: "⥭",
2129
+ lrm: "‎",
2130
+ lrtri: "⊿",
2131
+ lsaquo: "‹",
2132
+ Lscr: "ℒ",
2133
+ lscr: "𝓁",
2134
+ Lsh: "↰",
2135
+ lsh: "↰",
2136
+ lsim: "≲",
2137
+ lsime: "⪍",
2138
+ lsimg: "⪏",
2139
+ lsqb: "[",
2140
+ lsquo: "‘",
2141
+ lsquor: "‚",
2142
+ Lstrok: "Ł",
2143
+ lstrok: "ł",
2144
+ Lt: "≪",
2145
+ LT: "<",
2146
+ lt: "<",
2147
+ ltcc: "⪦",
2148
+ ltcir: "⩹",
2149
+ ltdot: "⋖",
2150
+ lthree: "⋋",
2151
+ ltimes: "⋉",
2152
+ ltlarr: "⥶",
2153
+ ltquest: "⩻",
2154
+ ltri: "◃",
2155
+ ltrie: "⊴",
2156
+ ltrif: "◂",
2157
+ ltrPar: "⦖",
2158
+ lurdshar: "⥊",
2159
+ luruhar: "⥦",
2160
+ lvertneqq: "≨︀",
2161
+ lvnE: "≨︀",
2162
+ macr: "¯",
2163
+ male: "♂",
2164
+ malt: "✠",
2165
+ maltese: "✠",
2166
+ Map: "⤅",
2167
+ map: "↦",
2168
+ mapsto: "↦",
2169
+ mapstodown: "↧",
2170
+ mapstoleft: "↤",
2171
+ mapstoup: "↥",
2172
+ marker: "▮",
2173
+ mcomma: "⨩",
2174
+ Mcy: "М",
2175
+ mcy: "м",
2176
+ mdash: "—",
2177
+ mDDot: "∺",
2178
+ measuredangle: "∡",
2179
+ MediumSpace: " ",
2180
+ Mellintrf: "ℳ",
2181
+ Mfr: "𝔐",
2182
+ mfr: "𝔪",
2183
+ mho: "℧",
2184
+ micro: "µ",
2185
+ mid: "∣",
2186
+ midast: "*",
2187
+ midcir: "⫰",
2188
+ middot: "·",
2189
+ minus: "−",
2190
+ minusb: "⊟",
2191
+ minusd: "∸",
2192
+ minusdu: "⨪",
2193
+ MinusPlus: "∓",
2194
+ mlcp: "⫛",
2195
+ mldr: "…",
2196
+ mnplus: "∓",
2197
+ models: "⊧",
2198
+ Mopf: "𝕄",
2199
+ mopf: "𝕞",
2200
+ mp: "∓",
2201
+ Mscr: "ℳ",
2202
+ mscr: "𝓂",
2203
+ mstpos: "∾",
2204
+ Mu: "Μ",
2205
+ mu: "μ",
2206
+ multimap: "⊸",
2207
+ mumap: "⊸",
2208
+ nabla: "∇",
2209
+ Nacute: "Ń",
2210
+ nacute: "ń",
2211
+ nang: "∠⃒",
2212
+ nap: "≉",
2213
+ napE: "⩰̸",
2214
+ napid: "≋̸",
2215
+ napos: "ʼn",
2216
+ napprox: "≉",
2217
+ natur: "♮",
2218
+ natural: "♮",
2219
+ naturals: "ℕ",
2220
+ nbsp: " ",
2221
+ nbump: "≎̸",
2222
+ nbumpe: "≏̸",
2223
+ ncap: "⩃",
2224
+ Ncaron: "Ň",
2225
+ ncaron: "ň",
2226
+ Ncedil: "Ņ",
2227
+ ncedil: "ņ",
2228
+ ncong: "≇",
2229
+ ncongdot: "⩭̸",
2230
+ ncup: "⩂",
2231
+ Ncy: "Н",
2232
+ ncy: "н",
2233
+ ndash: "–",
2234
+ ne: "≠",
2235
+ nearhk: "⤤",
2236
+ neArr: "⇗",
2237
+ nearr: "↗",
2238
+ nearrow: "↗",
2239
+ nedot: "≐̸",
2240
+ NegativeMediumSpace: "​",
2241
+ NegativeThickSpace: "​",
2242
+ NegativeThinSpace: "​",
2243
+ NegativeVeryThinSpace: "​",
2244
+ nequiv: "≢",
2245
+ nesear: "⤨",
2246
+ nesim: "≂̸",
2247
+ NestedGreaterGreater: "≫",
2248
+ NestedLessLess: "≪",
2249
+ NewLine: `
2250
+ `,
2251
+ nexist: "∄",
2252
+ nexists: "∄",
2253
+ Nfr: "𝔑",
2254
+ nfr: "𝔫",
2255
+ ngE: "≧̸",
2256
+ nge: "≱",
2257
+ ngeq: "≱",
2258
+ ngeqq: "≧̸",
2259
+ ngeqslant: "⩾̸",
2260
+ nges: "⩾̸",
2261
+ nGg: "⋙̸",
2262
+ ngsim: "≵",
2263
+ nGt: "≫⃒",
2264
+ ngt: "≯",
2265
+ ngtr: "≯",
2266
+ nGtv: "≫̸",
2267
+ nhArr: "⇎",
2268
+ nharr: "↮",
2269
+ nhpar: "⫲",
2270
+ ni: "∋",
2271
+ nis: "⋼",
2272
+ nisd: "⋺",
2273
+ niv: "∋",
2274
+ NJcy: "Њ",
2275
+ njcy: "њ",
2276
+ nlArr: "⇍",
2277
+ nlarr: "↚",
2278
+ nldr: "‥",
2279
+ nlE: "≦̸",
2280
+ nle: "≰",
2281
+ nLeftarrow: "⇍",
2282
+ nleftarrow: "↚",
2283
+ nLeftrightarrow: "⇎",
2284
+ nleftrightarrow: "↮",
2285
+ nleq: "≰",
2286
+ nleqq: "≦̸",
2287
+ nleqslant: "⩽̸",
2288
+ nles: "⩽̸",
2289
+ nless: "≮",
2290
+ nLl: "⋘̸",
2291
+ nlsim: "≴",
2292
+ nLt: "≪⃒",
2293
+ nlt: "≮",
2294
+ nltri: "⋪",
2295
+ nltrie: "⋬",
2296
+ nLtv: "≪̸",
2297
+ nmid: "∤",
2298
+ NoBreak: "⁠",
2299
+ NonBreakingSpace: " ",
2300
+ Nopf: "ℕ",
2301
+ nopf: "𝕟",
2302
+ Not: "⫬",
2303
+ not: "¬",
2304
+ NotCongruent: "≢",
2305
+ NotCupCap: "≭",
2306
+ NotDoubleVerticalBar: "∦",
2307
+ NotElement: "∉",
2308
+ NotEqual: "≠",
2309
+ NotEqualTilde: "≂̸",
2310
+ NotExists: "∄",
2311
+ NotGreater: "≯",
2312
+ NotGreaterEqual: "≱",
2313
+ NotGreaterFullEqual: "≧̸",
2314
+ NotGreaterGreater: "≫̸",
2315
+ NotGreaterLess: "≹",
2316
+ NotGreaterSlantEqual: "⩾̸",
2317
+ NotGreaterTilde: "≵",
2318
+ NotHumpDownHump: "≎̸",
2319
+ NotHumpEqual: "≏̸",
2320
+ notin: "∉",
2321
+ notindot: "⋵̸",
2322
+ notinE: "⋹̸",
2323
+ notinva: "∉",
2324
+ notinvb: "⋷",
2325
+ notinvc: "⋶",
2326
+ NotLeftTriangle: "⋪",
2327
+ NotLeftTriangleBar: "⧏̸",
2328
+ NotLeftTriangleEqual: "⋬",
2329
+ NotLess: "≮",
2330
+ NotLessEqual: "≰",
2331
+ NotLessGreater: "≸",
2332
+ NotLessLess: "≪̸",
2333
+ NotLessSlantEqual: "⩽̸",
2334
+ NotLessTilde: "≴",
2335
+ NotNestedGreaterGreater: "⪢̸",
2336
+ NotNestedLessLess: "⪡̸",
2337
+ notni: "∌",
2338
+ notniva: "∌",
2339
+ notnivb: "⋾",
2340
+ notnivc: "⋽",
2341
+ NotPrecedes: "⊀",
2342
+ NotPrecedesEqual: "⪯̸",
2343
+ NotPrecedesSlantEqual: "⋠",
2344
+ NotReverseElement: "∌",
2345
+ NotRightTriangle: "⋫",
2346
+ NotRightTriangleBar: "⧐̸",
2347
+ NotRightTriangleEqual: "⋭",
2348
+ NotSquareSubset: "⊏̸",
2349
+ NotSquareSubsetEqual: "⋢",
2350
+ NotSquareSuperset: "⊐̸",
2351
+ NotSquareSupersetEqual: "⋣",
2352
+ NotSubset: "⊂⃒",
2353
+ NotSubsetEqual: "⊈",
2354
+ NotSucceeds: "⊁",
2355
+ NotSucceedsEqual: "⪰̸",
2356
+ NotSucceedsSlantEqual: "⋡",
2357
+ NotSucceedsTilde: "≿̸",
2358
+ NotSuperset: "⊃⃒",
2359
+ NotSupersetEqual: "⊉",
2360
+ NotTilde: "≁",
2361
+ NotTildeEqual: "≄",
2362
+ NotTildeFullEqual: "≇",
2363
+ NotTildeTilde: "≉",
2364
+ NotVerticalBar: "∤",
2365
+ npar: "∦",
2366
+ nparallel: "∦",
2367
+ nparsl: "⫽⃥",
2368
+ npart: "∂̸",
2369
+ npolint: "⨔",
2370
+ npr: "⊀",
2371
+ nprcue: "⋠",
2372
+ npre: "⪯̸",
2373
+ nprec: "⊀",
2374
+ npreceq: "⪯̸",
2375
+ nrArr: "⇏",
2376
+ nrarr: "↛",
2377
+ nrarrc: "⤳̸",
2378
+ nrarrw: "↝̸",
2379
+ nRightarrow: "⇏",
2380
+ nrightarrow: "↛",
2381
+ nrtri: "⋫",
2382
+ nrtrie: "⋭",
2383
+ nsc: "⊁",
2384
+ nsccue: "⋡",
2385
+ nsce: "⪰̸",
2386
+ Nscr: "𝒩",
2387
+ nscr: "𝓃",
2388
+ nshortmid: "∤",
2389
+ nshortparallel: "∦",
2390
+ nsim: "≁",
2391
+ nsime: "≄",
2392
+ nsimeq: "≄",
2393
+ nsmid: "∤",
2394
+ nspar: "∦",
2395
+ nsqsube: "⋢",
2396
+ nsqsupe: "⋣",
2397
+ nsub: "⊄",
2398
+ nsubE: "⫅̸",
2399
+ nsube: "⊈",
2400
+ nsubset: "⊂⃒",
2401
+ nsubseteq: "⊈",
2402
+ nsubseteqq: "⫅̸",
2403
+ nsucc: "⊁",
2404
+ nsucceq: "⪰̸",
2405
+ nsup: "⊅",
2406
+ nsupE: "⫆̸",
2407
+ nsupe: "⊉",
2408
+ nsupset: "⊃⃒",
2409
+ nsupseteq: "⊉",
2410
+ nsupseteqq: "⫆̸",
2411
+ ntgl: "≹",
2412
+ Ntilde: "Ñ",
2413
+ ntilde: "ñ",
2414
+ ntlg: "≸",
2415
+ ntriangleleft: "⋪",
2416
+ ntrianglelefteq: "⋬",
2417
+ ntriangleright: "⋫",
2418
+ ntrianglerighteq: "⋭",
2419
+ Nu: "Ν",
2420
+ nu: "ν",
2421
+ num: "#",
2422
+ numero: "№",
2423
+ numsp: " ",
2424
+ nvap: "≍⃒",
2425
+ nVDash: "⊯",
2426
+ nVdash: "⊮",
2427
+ nvDash: "⊭",
2428
+ nvdash: "⊬",
2429
+ nvge: "≥⃒",
2430
+ nvgt: ">⃒",
2431
+ nvHarr: "⤄",
2432
+ nvinfin: "⧞",
2433
+ nvlArr: "⤂",
2434
+ nvle: "≤⃒",
2435
+ nvlt: "<⃒",
2436
+ nvltrie: "⊴⃒",
2437
+ nvrArr: "⤃",
2438
+ nvrtrie: "⊵⃒",
2439
+ nvsim: "∼⃒",
2440
+ nwarhk: "⤣",
2441
+ nwArr: "⇖",
2442
+ nwarr: "↖",
2443
+ nwarrow: "↖",
2444
+ nwnear: "⤧",
2445
+ Oacute: "Ó",
2446
+ oacute: "ó",
2447
+ oast: "⊛",
2448
+ ocir: "⊚",
2449
+ Ocirc: "Ô",
2450
+ ocirc: "ô",
2451
+ Ocy: "О",
2452
+ ocy: "о",
2453
+ odash: "⊝",
2454
+ Odblac: "Ő",
2455
+ odblac: "ő",
2456
+ odiv: "⨸",
2457
+ odot: "⊙",
2458
+ odsold: "⦼",
2459
+ OElig: "Œ",
2460
+ oelig: "œ",
2461
+ ofcir: "⦿",
2462
+ Ofr: "𝔒",
2463
+ ofr: "𝔬",
2464
+ ogon: "˛",
2465
+ Ograve: "Ò",
2466
+ ograve: "ò",
2467
+ ogt: "⧁",
2468
+ ohbar: "⦵",
2469
+ ohm: "Ω",
2470
+ oint: "∮",
2471
+ olarr: "↺",
2472
+ olcir: "⦾",
2473
+ olcross: "⦻",
2474
+ oline: "‾",
2475
+ olt: "⧀",
2476
+ Omacr: "Ō",
2477
+ omacr: "ō",
2478
+ Omega: "Ω",
2479
+ omega: "ω",
2480
+ Omicron: "Ο",
2481
+ omicron: "ο",
2482
+ omid: "⦶",
2483
+ ominus: "⊖",
2484
+ Oopf: "𝕆",
2485
+ oopf: "𝕠",
2486
+ opar: "⦷",
2487
+ OpenCurlyDoubleQuote: "“",
2488
+ OpenCurlyQuote: "‘",
2489
+ operp: "⦹",
2490
+ oplus: "⊕",
2491
+ Or: "⩔",
2492
+ or: "∨",
2493
+ orarr: "↻",
2494
+ ord: "⩝",
2495
+ order: "ℴ",
2496
+ orderof: "ℴ",
2497
+ ordf: "ª",
2498
+ ordm: "º",
2499
+ origof: "⊶",
2500
+ oror: "⩖",
2501
+ orslope: "⩗",
2502
+ orv: "⩛",
2503
+ oS: "Ⓢ",
2504
+ Oscr: "𝒪",
2505
+ oscr: "ℴ",
2506
+ Oslash: "Ø",
2507
+ oslash: "ø",
2508
+ osol: "⊘",
2509
+ Otilde: "Õ",
2510
+ otilde: "õ",
2511
+ Otimes: "⨷",
2512
+ otimes: "⊗",
2513
+ otimesas: "⨶",
2514
+ Ouml: "Ö",
2515
+ ouml: "ö",
2516
+ ovbar: "⌽",
2517
+ OverBar: "‾",
2518
+ OverBrace: "⏞",
2519
+ OverBracket: "⎴",
2520
+ OverParenthesis: "⏜",
2521
+ par: "∥",
2522
+ para: "¶",
2523
+ parallel: "∥",
2524
+ parsim: "⫳",
2525
+ parsl: "⫽",
2526
+ part: "∂",
2527
+ PartialD: "∂",
2528
+ Pcy: "П",
2529
+ pcy: "п",
2530
+ percnt: "%",
2531
+ period: ".",
2532
+ permil: "‰",
2533
+ perp: "⊥",
2534
+ pertenk: "‱",
2535
+ Pfr: "𝔓",
2536
+ pfr: "𝔭",
2537
+ Phi: "Φ",
2538
+ phi: "φ",
2539
+ phiv: "ϕ",
2540
+ phmmat: "ℳ",
2541
+ phone: "☎",
2542
+ Pi: "Π",
2543
+ pi: "π",
2544
+ pitchfork: "⋔",
2545
+ piv: "ϖ",
2546
+ planck: "ℏ",
2547
+ planckh: "ℎ",
2548
+ plankv: "ℏ",
2549
+ plus: "+",
2550
+ plusacir: "⨣",
2551
+ plusb: "⊞",
2552
+ pluscir: "⨢",
2553
+ plusdo: "∔",
2554
+ plusdu: "⨥",
2555
+ pluse: "⩲",
2556
+ PlusMinus: "±",
2557
+ plusmn: "±",
2558
+ plussim: "⨦",
2559
+ plustwo: "⨧",
2560
+ pm: "±",
2561
+ Poincareplane: "ℌ",
2562
+ pointint: "⨕",
2563
+ Popf: "ℙ",
2564
+ popf: "𝕡",
2565
+ pound: "£",
2566
+ Pr: "⪻",
2567
+ pr: "≺",
2568
+ prap: "⪷",
2569
+ prcue: "≼",
2570
+ prE: "⪳",
2571
+ pre: "⪯",
2572
+ prec: "≺",
2573
+ precapprox: "⪷",
2574
+ preccurlyeq: "≼",
2575
+ Precedes: "≺",
2576
+ PrecedesEqual: "⪯",
2577
+ PrecedesSlantEqual: "≼",
2578
+ PrecedesTilde: "≾",
2579
+ preceq: "⪯",
2580
+ precnapprox: "⪹",
2581
+ precneqq: "⪵",
2582
+ precnsim: "⋨",
2583
+ precsim: "≾",
2584
+ Prime: "″",
2585
+ prime: "′",
2586
+ primes: "ℙ",
2587
+ prnap: "⪹",
2588
+ prnE: "⪵",
2589
+ prnsim: "⋨",
2590
+ prod: "∏",
2591
+ Product: "∏",
2592
+ profalar: "⌮",
2593
+ profline: "⌒",
2594
+ profsurf: "⌓",
2595
+ prop: "∝",
2596
+ Proportion: "∷",
2597
+ Proportional: "∝",
2598
+ propto: "∝",
2599
+ prsim: "≾",
2600
+ prurel: "⊰",
2601
+ Pscr: "𝒫",
2602
+ pscr: "𝓅",
2603
+ Psi: "Ψ",
2604
+ psi: "ψ",
2605
+ puncsp: " ",
2606
+ Qfr: "𝔔",
2607
+ qfr: "𝔮",
2608
+ qint: "⨌",
2609
+ Qopf: "ℚ",
2610
+ qopf: "𝕢",
2611
+ qprime: "⁗",
2612
+ Qscr: "𝒬",
2613
+ qscr: "𝓆",
2614
+ quaternions: "ℍ",
2615
+ quatint: "⨖",
2616
+ quest: "?",
2617
+ questeq: "≟",
2618
+ QUOT: '"',
2619
+ quot: '"',
2620
+ rAarr: "⇛",
2621
+ race: "∽̱",
2622
+ Racute: "Ŕ",
2623
+ racute: "ŕ",
2624
+ radic: "√",
2625
+ raemptyv: "⦳",
2626
+ Rang: "⟫",
2627
+ rang: "⟩",
2628
+ rangd: "⦒",
2629
+ range: "⦥",
2630
+ rangle: "⟩",
2631
+ raquo: "»",
2632
+ Rarr: "↠",
2633
+ rArr: "⇒",
2634
+ rarr: "→",
2635
+ rarrap: "⥵",
2636
+ rarrb: "⇥",
2637
+ rarrbfs: "⤠",
2638
+ rarrc: "⤳",
2639
+ rarrfs: "⤞",
2640
+ rarrhk: "↪",
2641
+ rarrlp: "↬",
2642
+ rarrpl: "⥅",
2643
+ rarrsim: "⥴",
2644
+ Rarrtl: "⤖",
2645
+ rarrtl: "↣",
2646
+ rarrw: "↝",
2647
+ rAtail: "⤜",
2648
+ ratail: "⤚",
2649
+ ratio: "∶",
2650
+ rationals: "ℚ",
2651
+ RBarr: "⤐",
2652
+ rBarr: "⤏",
2653
+ rbarr: "⤍",
2654
+ rbbrk: "❳",
2655
+ rbrace: "}",
2656
+ rbrack: "]",
2657
+ rbrke: "⦌",
2658
+ rbrksld: "⦎",
2659
+ rbrkslu: "⦐",
2660
+ Rcaron: "Ř",
2661
+ rcaron: "ř",
2662
+ Rcedil: "Ŗ",
2663
+ rcedil: "ŗ",
2664
+ rceil: "⌉",
2665
+ rcub: "}",
2666
+ Rcy: "Р",
2667
+ rcy: "р",
2668
+ rdca: "⤷",
2669
+ rdldhar: "⥩",
2670
+ rdquo: "”",
2671
+ rdquor: "”",
2672
+ rdsh: "↳",
2673
+ Re: "ℜ",
2674
+ real: "ℜ",
2675
+ realine: "ℛ",
2676
+ realpart: "ℜ",
2677
+ reals: "ℝ",
2678
+ rect: "▭",
2679
+ REG: "®",
2680
+ reg: "®",
2681
+ ReverseElement: "∋",
2682
+ ReverseEquilibrium: "⇋",
2683
+ ReverseUpEquilibrium: "⥯",
2684
+ rfisht: "⥽",
2685
+ rfloor: "⌋",
2686
+ Rfr: "ℜ",
2687
+ rfr: "𝔯",
2688
+ rHar: "⥤",
2689
+ rhard: "⇁",
2690
+ rharu: "⇀",
2691
+ rharul: "⥬",
2692
+ Rho: "Ρ",
2693
+ rho: "ρ",
2694
+ rhov: "ϱ",
2695
+ RightAngleBracket: "⟩",
2696
+ RightArrow: "→",
2697
+ Rightarrow: "⇒",
2698
+ rightarrow: "→",
2699
+ RightArrowBar: "⇥",
2700
+ RightArrowLeftArrow: "⇄",
2701
+ rightarrowtail: "↣",
2702
+ RightCeiling: "⌉",
2703
+ RightDoubleBracket: "⟧",
2704
+ RightDownTeeVector: "⥝",
2705
+ RightDownVector: "⇂",
2706
+ RightDownVectorBar: "⥕",
2707
+ RightFloor: "⌋",
2708
+ rightharpoondown: "⇁",
2709
+ rightharpoonup: "⇀",
2710
+ rightleftarrows: "⇄",
2711
+ rightleftharpoons: "⇌",
2712
+ rightrightarrows: "⇉",
2713
+ rightsquigarrow: "↝",
2714
+ RightTee: "⊢",
2715
+ RightTeeArrow: "↦",
2716
+ RightTeeVector: "⥛",
2717
+ rightthreetimes: "⋌",
2718
+ RightTriangle: "⊳",
2719
+ RightTriangleBar: "⧐",
2720
+ RightTriangleEqual: "⊵",
2721
+ RightUpDownVector: "⥏",
2722
+ RightUpTeeVector: "⥜",
2723
+ RightUpVector: "↾",
2724
+ RightUpVectorBar: "⥔",
2725
+ RightVector: "⇀",
2726
+ RightVectorBar: "⥓",
2727
+ ring: "˚",
2728
+ risingdotseq: "≓",
2729
+ rlarr: "⇄",
2730
+ rlhar: "⇌",
2731
+ rlm: "‏",
2732
+ rmoust: "⎱",
2733
+ rmoustache: "⎱",
2734
+ rnmid: "⫮",
2735
+ roang: "⟭",
2736
+ roarr: "⇾",
2737
+ robrk: "⟧",
2738
+ ropar: "⦆",
2739
+ Ropf: "ℝ",
2740
+ ropf: "𝕣",
2741
+ roplus: "⨮",
2742
+ rotimes: "⨵",
2743
+ RoundImplies: "⥰",
2744
+ rpar: ")",
2745
+ rpargt: "⦔",
2746
+ rppolint: "⨒",
2747
+ rrarr: "⇉",
2748
+ Rrightarrow: "⇛",
2749
+ rsaquo: "›",
2750
+ Rscr: "ℛ",
2751
+ rscr: "𝓇",
2752
+ Rsh: "↱",
2753
+ rsh: "↱",
2754
+ rsqb: "]",
2755
+ rsquo: "’",
2756
+ rsquor: "’",
2757
+ rthree: "⋌",
2758
+ rtimes: "⋊",
2759
+ rtri: "▹",
2760
+ rtrie: "⊵",
2761
+ rtrif: "▸",
2762
+ rtriltri: "⧎",
2763
+ RuleDelayed: "⧴",
2764
+ ruluhar: "⥨",
2765
+ rx: "℞",
2766
+ Sacute: "Ś",
2767
+ sacute: "ś",
2768
+ sbquo: "‚",
2769
+ Sc: "⪼",
2770
+ sc: "≻",
2771
+ scap: "⪸",
2772
+ Scaron: "Š",
2773
+ scaron: "š",
2774
+ sccue: "≽",
2775
+ scE: "⪴",
2776
+ sce: "⪰",
2777
+ Scedil: "Ş",
2778
+ scedil: "ş",
2779
+ Scirc: "Ŝ",
2780
+ scirc: "ŝ",
2781
+ scnap: "⪺",
2782
+ scnE: "⪶",
2783
+ scnsim: "⋩",
2784
+ scpolint: "⨓",
2785
+ scsim: "≿",
2786
+ Scy: "С",
2787
+ scy: "с",
2788
+ sdot: "⋅",
2789
+ sdotb: "⊡",
2790
+ sdote: "⩦",
2791
+ searhk: "⤥",
2792
+ seArr: "⇘",
2793
+ searr: "↘",
2794
+ searrow: "↘",
2795
+ sect: "§",
2796
+ semi: ";",
2797
+ seswar: "⤩",
2798
+ setminus: "∖",
2799
+ setmn: "∖",
2800
+ sext: "✶",
2801
+ Sfr: "𝔖",
2802
+ sfr: "𝔰",
2803
+ sfrown: "⌢",
2804
+ sharp: "♯",
2805
+ SHCHcy: "Щ",
2806
+ shchcy: "щ",
2807
+ SHcy: "Ш",
2808
+ shcy: "ш",
2809
+ ShortDownArrow: "↓",
2810
+ ShortLeftArrow: "←",
2811
+ shortmid: "∣",
2812
+ shortparallel: "∥",
2813
+ ShortRightArrow: "→",
2814
+ ShortUpArrow: "↑",
2815
+ shy: "­",
2816
+ Sigma: "Σ",
2817
+ sigma: "σ",
2818
+ sigmaf: "ς",
2819
+ sigmav: "ς",
2820
+ sim: "∼",
2821
+ simdot: "⩪",
2822
+ sime: "≃",
2823
+ simeq: "≃",
2824
+ simg: "⪞",
2825
+ simgE: "⪠",
2826
+ siml: "⪝",
2827
+ simlE: "⪟",
2828
+ simne: "≆",
2829
+ simplus: "⨤",
2830
+ simrarr: "⥲",
2831
+ slarr: "←",
2832
+ SmallCircle: "∘",
2833
+ smallsetminus: "∖",
2834
+ smashp: "⨳",
2835
+ smeparsl: "⧤",
2836
+ smid: "∣",
2837
+ smile: "⌣",
2838
+ smt: "⪪",
2839
+ smte: "⪬",
2840
+ smtes: "⪬︀",
2841
+ SOFTcy: "Ь",
2842
+ softcy: "ь",
2843
+ sol: "/",
2844
+ solb: "⧄",
2845
+ solbar: "⌿",
2846
+ Sopf: "𝕊",
2847
+ sopf: "𝕤",
2848
+ spades: "♠",
2849
+ spadesuit: "♠",
2850
+ spar: "∥",
2851
+ sqcap: "⊓",
2852
+ sqcaps: "⊓︀",
2853
+ sqcup: "⊔",
2854
+ sqcups: "⊔︀",
2855
+ Sqrt: "√",
2856
+ sqsub: "⊏",
2857
+ sqsube: "⊑",
2858
+ sqsubset: "⊏",
2859
+ sqsubseteq: "⊑",
2860
+ sqsup: "⊐",
2861
+ sqsupe: "⊒",
2862
+ sqsupset: "⊐",
2863
+ sqsupseteq: "⊒",
2864
+ squ: "□",
2865
+ Square: "□",
2866
+ square: "□",
2867
+ SquareIntersection: "⊓",
2868
+ SquareSubset: "⊏",
2869
+ SquareSubsetEqual: "⊑",
2870
+ SquareSuperset: "⊐",
2871
+ SquareSupersetEqual: "⊒",
2872
+ SquareUnion: "⊔",
2873
+ squarf: "▪",
2874
+ squf: "▪",
2875
+ srarr: "→",
2876
+ Sscr: "𝒮",
2877
+ sscr: "𝓈",
2878
+ ssetmn: "∖",
2879
+ ssmile: "⌣",
2880
+ sstarf: "⋆",
2881
+ Star: "⋆",
2882
+ star: "☆",
2883
+ starf: "★",
2884
+ straightepsilon: "ϵ",
2885
+ straightphi: "ϕ",
2886
+ strns: "¯",
2887
+ Sub: "⋐",
2888
+ sub: "⊂",
2889
+ subdot: "⪽",
2890
+ subE: "⫅",
2891
+ sube: "⊆",
2892
+ subedot: "⫃",
2893
+ submult: "⫁",
2894
+ subnE: "⫋",
2895
+ subne: "⊊",
2896
+ subplus: "⪿",
2897
+ subrarr: "⥹",
2898
+ Subset: "⋐",
2899
+ subset: "⊂",
2900
+ subseteq: "⊆",
2901
+ subseteqq: "⫅",
2902
+ SubsetEqual: "⊆",
2903
+ subsetneq: "⊊",
2904
+ subsetneqq: "⫋",
2905
+ subsim: "⫇",
2906
+ subsub: "⫕",
2907
+ subsup: "⫓",
2908
+ succ: "≻",
2909
+ succapprox: "⪸",
2910
+ succcurlyeq: "≽",
2911
+ Succeeds: "≻",
2912
+ SucceedsEqual: "⪰",
2913
+ SucceedsSlantEqual: "≽",
2914
+ SucceedsTilde: "≿",
2915
+ succeq: "⪰",
2916
+ succnapprox: "⪺",
2917
+ succneqq: "⪶",
2918
+ succnsim: "⋩",
2919
+ succsim: "≿",
2920
+ SuchThat: "∋",
2921
+ Sum: "∑",
2922
+ sum: "∑",
2923
+ sung: "♪",
2924
+ Sup: "⋑",
2925
+ sup: "⊃",
2926
+ sup1: "¹",
2927
+ sup2: "²",
2928
+ sup3: "³",
2929
+ supdot: "⪾",
2930
+ supdsub: "⫘",
2931
+ supE: "⫆",
2932
+ supe: "⊇",
2933
+ supedot: "⫄",
2934
+ Superset: "⊃",
2935
+ SupersetEqual: "⊇",
2936
+ suphsol: "⟉",
2937
+ suphsub: "⫗",
2938
+ suplarr: "⥻",
2939
+ supmult: "⫂",
2940
+ supnE: "⫌",
2941
+ supne: "⊋",
2942
+ supplus: "⫀",
2943
+ Supset: "⋑",
2944
+ supset: "⊃",
2945
+ supseteq: "⊇",
2946
+ supseteqq: "⫆",
2947
+ supsetneq: "⊋",
2948
+ supsetneqq: "⫌",
2949
+ supsim: "⫈",
2950
+ supsub: "⫔",
2951
+ supsup: "⫖",
2952
+ swarhk: "⤦",
2953
+ swArr: "⇙",
2954
+ swarr: "↙",
2955
+ swarrow: "↙",
2956
+ swnwar: "⤪",
2957
+ szlig: "ß",
2958
+ Tab: " ",
2959
+ target: "⌖",
2960
+ Tau: "Τ",
2961
+ tau: "τ",
2962
+ tbrk: "⎴",
2963
+ Tcaron: "Ť",
2964
+ tcaron: "ť",
2965
+ Tcedil: "Ţ",
2966
+ tcedil: "ţ",
2967
+ Tcy: "Т",
2968
+ tcy: "т",
2969
+ tdot: "⃛",
2970
+ telrec: "⌕",
2971
+ Tfr: "𝔗",
2972
+ tfr: "𝔱",
2973
+ there4: "∴",
2974
+ Therefore: "∴",
2975
+ therefore: "∴",
2976
+ Theta: "Θ",
2977
+ theta: "θ",
2978
+ thetasym: "ϑ",
2979
+ thetav: "ϑ",
2980
+ thickapprox: "≈",
2981
+ thicksim: "∼",
2982
+ ThickSpace: "  ",
2983
+ thinsp: " ",
2984
+ ThinSpace: " ",
2985
+ thkap: "≈",
2986
+ thksim: "∼",
2987
+ THORN: "Þ",
2988
+ thorn: "þ",
2989
+ Tilde: "∼",
2990
+ tilde: "˜",
2991
+ TildeEqual: "≃",
2992
+ TildeFullEqual: "≅",
2993
+ TildeTilde: "≈",
2994
+ times: "×",
2995
+ timesb: "⊠",
2996
+ timesbar: "⨱",
2997
+ timesd: "⨰",
2998
+ tint: "∭",
2999
+ toea: "⤨",
3000
+ top: "⊤",
3001
+ topbot: "⌶",
3002
+ topcir: "⫱",
3003
+ Topf: "𝕋",
3004
+ topf: "𝕥",
3005
+ topfork: "⫚",
3006
+ tosa: "⤩",
3007
+ tprime: "‴",
3008
+ TRADE: "™",
3009
+ trade: "™",
3010
+ triangle: "▵",
3011
+ triangledown: "▿",
3012
+ triangleleft: "◃",
3013
+ trianglelefteq: "⊴",
3014
+ triangleq: "≜",
3015
+ triangleright: "▹",
3016
+ trianglerighteq: "⊵",
3017
+ tridot: "◬",
3018
+ trie: "≜",
3019
+ triminus: "⨺",
3020
+ TripleDot: "⃛",
3021
+ triplus: "⨹",
3022
+ trisb: "⧍",
3023
+ tritime: "⨻",
3024
+ trpezium: "⏢",
3025
+ Tscr: "𝒯",
3026
+ tscr: "𝓉",
3027
+ TScy: "Ц",
3028
+ tscy: "ц",
3029
+ TSHcy: "Ћ",
3030
+ tshcy: "ћ",
3031
+ Tstrok: "Ŧ",
3032
+ tstrok: "ŧ",
3033
+ twixt: "≬",
3034
+ twoheadleftarrow: "↞",
3035
+ twoheadrightarrow: "↠",
3036
+ Uacute: "Ú",
3037
+ uacute: "ú",
3038
+ Uarr: "↟",
3039
+ uArr: "⇑",
3040
+ uarr: "↑",
3041
+ Uarrocir: "⥉",
3042
+ Ubrcy: "Ў",
3043
+ ubrcy: "ў",
3044
+ Ubreve: "Ŭ",
3045
+ ubreve: "ŭ",
3046
+ Ucirc: "Û",
3047
+ ucirc: "û",
3048
+ Ucy: "У",
3049
+ ucy: "у",
3050
+ udarr: "⇅",
3051
+ Udblac: "Ű",
3052
+ udblac: "ű",
3053
+ udhar: "⥮",
3054
+ ufisht: "⥾",
3055
+ Ufr: "𝔘",
3056
+ ufr: "𝔲",
3057
+ Ugrave: "Ù",
3058
+ ugrave: "ù",
3059
+ uHar: "⥣",
3060
+ uharl: "↿",
3061
+ uharr: "↾",
3062
+ uhblk: "▀",
3063
+ ulcorn: "⌜",
3064
+ ulcorner: "⌜",
3065
+ ulcrop: "⌏",
3066
+ ultri: "◸",
3067
+ Umacr: "Ū",
3068
+ umacr: "ū",
3069
+ uml: "¨",
3070
+ UnderBar: "_",
3071
+ UnderBrace: "⏟",
3072
+ UnderBracket: "⎵",
3073
+ UnderParenthesis: "⏝",
3074
+ Union: "⋃",
3075
+ UnionPlus: "⊎",
3076
+ Uogon: "Ų",
3077
+ uogon: "ų",
3078
+ Uopf: "𝕌",
3079
+ uopf: "𝕦",
3080
+ UpArrow: "↑",
3081
+ Uparrow: "⇑",
3082
+ uparrow: "↑",
3083
+ UpArrowBar: "⤒",
3084
+ UpArrowDownArrow: "⇅",
3085
+ UpDownArrow: "↕",
3086
+ Updownarrow: "⇕",
3087
+ updownarrow: "↕",
3088
+ UpEquilibrium: "⥮",
3089
+ upharpoonleft: "↿",
3090
+ upharpoonright: "↾",
3091
+ uplus: "⊎",
3092
+ UpperLeftArrow: "↖",
3093
+ UpperRightArrow: "↗",
3094
+ Upsi: "ϒ",
3095
+ upsi: "υ",
3096
+ upsih: "ϒ",
3097
+ Upsilon: "Υ",
3098
+ upsilon: "υ",
3099
+ UpTee: "⊥",
3100
+ UpTeeArrow: "↥",
3101
+ upuparrows: "⇈",
3102
+ urcorn: "⌝",
3103
+ urcorner: "⌝",
3104
+ urcrop: "⌎",
3105
+ Uring: "Ů",
3106
+ uring: "ů",
3107
+ urtri: "◹",
3108
+ Uscr: "𝒰",
3109
+ uscr: "𝓊",
3110
+ utdot: "⋰",
3111
+ Utilde: "Ũ",
3112
+ utilde: "ũ",
3113
+ utri: "▵",
3114
+ utrif: "▴",
3115
+ uuarr: "⇈",
3116
+ Uuml: "Ü",
3117
+ uuml: "ü",
3118
+ uwangle: "⦧",
3119
+ vangrt: "⦜",
3120
+ varepsilon: "ϵ",
3121
+ varkappa: "ϰ",
3122
+ varnothing: "∅",
3123
+ varphi: "ϕ",
3124
+ varpi: "ϖ",
3125
+ varpropto: "∝",
3126
+ vArr: "⇕",
3127
+ varr: "↕",
3128
+ varrho: "ϱ",
3129
+ varsigma: "ς",
3130
+ varsubsetneq: "⊊︀",
3131
+ varsubsetneqq: "⫋︀",
3132
+ varsupsetneq: "⊋︀",
3133
+ varsupsetneqq: "⫌︀",
3134
+ vartheta: "ϑ",
3135
+ vartriangleleft: "⊲",
3136
+ vartriangleright: "⊳",
3137
+ Vbar: "⫫",
3138
+ vBar: "⫨",
3139
+ vBarv: "⫩",
3140
+ Vcy: "В",
3141
+ vcy: "в",
3142
+ VDash: "⊫",
3143
+ Vdash: "⊩",
3144
+ vDash: "⊨",
3145
+ vdash: "⊢",
3146
+ Vdashl: "⫦",
3147
+ Vee: "⋁",
3148
+ vee: "∨",
3149
+ veebar: "⊻",
3150
+ veeeq: "≚",
3151
+ vellip: "⋮",
3152
+ Verbar: "‖",
3153
+ verbar: "|",
3154
+ Vert: "‖",
3155
+ vert: "|",
3156
+ VerticalBar: "∣",
3157
+ VerticalLine: "|",
3158
+ VerticalSeparator: "❘",
3159
+ VerticalTilde: "≀",
3160
+ VeryThinSpace: " ",
3161
+ Vfr: "𝔙",
3162
+ vfr: "𝔳",
3163
+ vltri: "⊲",
3164
+ vnsub: "⊂⃒",
3165
+ vnsup: "⊃⃒",
3166
+ Vopf: "𝕍",
3167
+ vopf: "𝕧",
3168
+ vprop: "∝",
3169
+ vrtri: "⊳",
3170
+ Vscr: "𝒱",
3171
+ vscr: "𝓋",
3172
+ vsubnE: "⫋︀",
3173
+ vsubne: "⊊︀",
3174
+ vsupnE: "⫌︀",
3175
+ vsupne: "⊋︀",
3176
+ Vvdash: "⊪",
3177
+ vzigzag: "⦚",
3178
+ Wcirc: "Ŵ",
3179
+ wcirc: "ŵ",
3180
+ wedbar: "⩟",
3181
+ Wedge: "⋀",
3182
+ wedge: "∧",
3183
+ wedgeq: "≙",
3184
+ weierp: "℘",
3185
+ Wfr: "𝔚",
3186
+ wfr: "𝔴",
3187
+ Wopf: "𝕎",
3188
+ wopf: "𝕨",
3189
+ wp: "℘",
3190
+ wr: "≀",
3191
+ wreath: "≀",
3192
+ Wscr: "𝒲",
3193
+ wscr: "𝓌",
3194
+ xcap: "⋂",
3195
+ xcirc: "◯",
3196
+ xcup: "⋃",
3197
+ xdtri: "▽",
3198
+ Xfr: "𝔛",
3199
+ xfr: "𝔵",
3200
+ xhArr: "⟺",
3201
+ xharr: "⟷",
3202
+ Xi: "Ξ",
3203
+ xi: "ξ",
3204
+ xlArr: "⟸",
3205
+ xlarr: "⟵",
3206
+ xmap: "⟼",
3207
+ xnis: "⋻",
3208
+ xodot: "⨀",
3209
+ Xopf: "𝕏",
3210
+ xopf: "𝕩",
3211
+ xoplus: "⨁",
3212
+ xotime: "⨂",
3213
+ xrArr: "⟹",
3214
+ xrarr: "⟶",
3215
+ Xscr: "𝒳",
3216
+ xscr: "𝓍",
3217
+ xsqcup: "⨆",
3218
+ xuplus: "⨄",
3219
+ xutri: "△",
3220
+ xvee: "⋁",
3221
+ xwedge: "⋀",
3222
+ Yacute: "Ý",
3223
+ yacute: "ý",
3224
+ YAcy: "Я",
3225
+ yacy: "я",
3226
+ Ycirc: "Ŷ",
3227
+ ycirc: "ŷ",
3228
+ Ycy: "Ы",
3229
+ ycy: "ы",
3230
+ yen: "¥",
3231
+ Yfr: "𝔜",
3232
+ yfr: "𝔶",
3233
+ YIcy: "Ї",
3234
+ yicy: "ї",
3235
+ Yopf: "𝕐",
3236
+ yopf: "𝕪",
3237
+ Yscr: "𝒴",
3238
+ yscr: "𝓎",
3239
+ YUcy: "Ю",
3240
+ yucy: "ю",
3241
+ Yuml: "Ÿ",
3242
+ yuml: "ÿ",
3243
+ Zacute: "Ź",
3244
+ zacute: "ź",
3245
+ Zcaron: "Ž",
3246
+ zcaron: "ž",
3247
+ Zcy: "З",
3248
+ zcy: "з",
3249
+ Zdot: "Ż",
3250
+ zdot: "ż",
3251
+ zeetrf: "ℨ",
3252
+ ZeroWidthSpace: "​",
3253
+ Zeta: "Ζ",
3254
+ zeta: "ζ",
3255
+ Zfr: "ℨ",
3256
+ zfr: "𝔷",
3257
+ ZHcy: "Ж",
3258
+ zhcy: "ж",
3259
+ zigrarr: "⇝",
3260
+ Zopf: "ℤ",
3261
+ zopf: "𝕫",
3262
+ Zscr: "𝒵",
3263
+ zscr: "𝓏",
3264
+ zwj: "‍",
3265
+ zwnj: "‌"
3266
+ }), u.entityMap = u.HTML_ENTITIES;
3267
+ })(de);
3268
+ var qu = {}, eu = k.NAMESPACE, Cu = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/, zu = new RegExp("[\\-\\.0-9" + Cu.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"), Hu = new RegExp("^" + Cu.source + zu.source + "*(?::" + Cu.source + zu.source + "*)?$"), Z = 0, U = 1, V = 2, J = 3, G = 4, z = 5, W = 6, iu = 7;
3269
+ function Y(u, e) {
3270
+ this.message = u, this.locator = e, Error.captureStackTrace && Error.captureStackTrace(this, Y);
3271
+ }
3272
+ Y.prototype = new Error();
3273
+ Y.prototype.name = Y.name;
3274
+ function ge() {
3275
+ }
3276
+ ge.prototype = {
3277
+ parse: function(u, e, r) {
3278
+ var t = this.domBuilder;
3279
+ t.startDocument(), Ce(e, e = {}), Ge(
3280
+ u,
3281
+ e,
3282
+ r,
3283
+ t,
3284
+ this.errorHandler
3285
+ ), t.endDocument();
3286
+ }
3287
+ };
3288
+ function Ge(u, e, r, t, n) {
3289
+ function a(h) {
3290
+ if (h > 65535) {
3291
+ h -= 65536;
3292
+ var S = 55296 + (h >> 10), Te = 56320 + (h & 1023);
3293
+ return String.fromCharCode(S, Te);
3294
+ } else
3295
+ return String.fromCharCode(h);
3296
+ }
3297
+ function i(h) {
3298
+ var S = h.slice(1, -1);
3299
+ return Object.hasOwnProperty.call(r, S) ? r[S] : S.charAt(0) === "#" ? a(parseInt(S.substr(1).replace("x", "0x"))) : (n.error("entity not found:" + h), h);
3300
+ }
3301
+ function s(h) {
3302
+ if (h > E) {
3303
+ var S = u.substring(E, h).replace(/&#?\w+;/g, i);
3304
+ p && o(E), t.characters(S, 0, h - E), E = h;
3305
+ }
3306
+ }
3307
+ function o(h, S) {
3308
+ for (; h >= c && (S = f.exec(u)); )
3309
+ l = S.index, c = l + S[0].length, p.lineNumber++;
3310
+ p.columnNumber = h - l + 1;
3311
+ }
3312
+ for (var l = 0, c = 0, f = /.*(?:\r\n?|\n)|.*$/g, p = t.locator, d = [{ currentNSMap: e }], B = {}, E = 0; ; ) {
3313
+ try {
3314
+ var A = u.indexOf("<", E);
3315
+ if (A < 0) {
3316
+ if (!u.substr(E).match(/^\s*$/)) {
3317
+ var g = t.doc, Q = g.createTextNode(u.substr(E));
3318
+ g.appendChild(Q), t.currentElement = Q;
3319
+ }
3320
+ return;
3321
+ }
3322
+ switch (A > E && s(A), u.charAt(A + 1)) {
3323
+ case "/":
3324
+ var w = u.indexOf(">", A + 3), C = u.substring(A + 2, w).replace(/[ \t\n\r]+$/g, ""), x = d.pop();
3325
+ w < 0 ? (C = u.substring(A + 2).replace(/[\s<].*/, ""), n.error("end tag name: " + C + " is not complete:" + x.tagName), w = A + 1 + C.length) : C.match(/\s</) && (C = C.replace(/[\s<].*/, ""), n.error("end tag name: " + C + " maybe not complete"), w = A + 1 + C.length);
3326
+ var hu = x.localNSMap, Ou = x.tagName == C, Ne = Ou || x.tagName && x.tagName.toLowerCase() == C.toLowerCase();
3327
+ if (Ne) {
3328
+ if (t.endElement(x.uri, x.localName, C), hu)
3329
+ for (var Ru in hu)
3330
+ Object.prototype.hasOwnProperty.call(hu, Ru) && t.endPrefixMapping(Ru);
3331
+ Ou || n.fatalError("end tag name: " + C + " is not match the current start tagName:" + x.tagName);
3332
+ } else
3333
+ d.push(x);
3334
+ w++;
3335
+ break;
3336
+ case "?":
3337
+ p && o(A), w = Xe(u, A, t);
3338
+ break;
3339
+ case "!":
3340
+ p && o(A), w = $e(u, A, t, n);
3341
+ break;
3342
+ default:
3343
+ p && o(A);
3344
+ var F = new ve(), mu = d[d.length - 1].currentNSMap, w = ze(u, A, F, mu, i, n), _u = F.length;
3345
+ if (!F.closed && je(u, w, F.tagName, B) && (F.closed = !0, r.nbsp || n.warning("unclosed xml attribute")), p && _u) {
3346
+ for (var ye = ju(p, {}), Eu = 0; Eu < _u; Eu++) {
3347
+ var Lu = F[Eu];
3348
+ o(Lu.offset), Lu.locator = ju(p, {});
3349
+ }
3350
+ t.locator = ye, $u(F, t, mu) && d.push(F), t.locator = p;
3351
+ } else
3352
+ $u(F, t, mu) && d.push(F);
3353
+ eu.isHTML(F.uri) && !F.closed ? w = He(u, w, F.tagName, i, t) : w++;
3354
+ }
3355
+ } catch (h) {
3356
+ if (h instanceof Y)
3357
+ throw h;
3358
+ n.error("element parse error: " + h), w = -1;
3359
+ }
3360
+ w > E ? E = w : s(Math.max(A, E) + 1);
3361
+ }
3362
+ }
3363
+ function ju(u, e) {
3364
+ return e.lineNumber = u.lineNumber, e.columnNumber = u.columnNumber, e;
3365
+ }
3366
+ function ze(u, e, r, t, n, a) {
3367
+ function i(p, d, B) {
3368
+ r.attributeNames.hasOwnProperty(p) && a.fatalError("Attribute " + p + " redefined"), r.addValue(
3369
+ p,
3370
+ // @see https://www.w3.org/TR/xml/#AVNormalize
3371
+ // since the xmldom sax parser does not "interpret" DTD the following is not implemented:
3372
+ // - recursive replacement of (DTD) entity references
3373
+ // - trimming and collapsing multiple spaces into a single one for attributes that are not of type CDATA
3374
+ d.replace(/[\t\n\r]/g, " ").replace(/&#?\w+;/g, n),
3375
+ B
3376
+ );
3377
+ }
3378
+ for (var s, o, l = ++e, c = Z; ; ) {
3379
+ var f = u.charAt(l);
3380
+ switch (f) {
3381
+ case "=":
3382
+ if (c === U)
3383
+ s = u.slice(e, l), c = J;
3384
+ else if (c === V)
3385
+ c = J;
3386
+ else
3387
+ throw new Error("attribute equal must after attrName");
3388
+ break;
3389
+ case "'":
3390
+ case '"':
3391
+ if (c === J || c === U)
3392
+ if (c === U && (a.warning('attribute value must after "="'), s = u.slice(e, l)), e = l + 1, l = u.indexOf(f, e), l > 0)
3393
+ o = u.slice(e, l), i(s, o, e - 1), c = z;
3394
+ else
3395
+ throw new Error("attribute value no end '" + f + "' match");
3396
+ else if (c == G)
3397
+ o = u.slice(e, l), i(s, o, e), a.warning('attribute "' + s + '" missed start quot(' + f + ")!!"), e = l + 1, c = z;
3398
+ else
3399
+ throw new Error('attribute value must after "="');
3400
+ break;
3401
+ case "/":
3402
+ switch (c) {
3403
+ case Z:
3404
+ r.setTagName(u.slice(e, l));
3405
+ case z:
3406
+ case W:
3407
+ case iu:
3408
+ c = iu, r.closed = !0;
3409
+ case G:
3410
+ case U:
3411
+ break;
3412
+ case V:
3413
+ r.closed = !0;
3414
+ break;
3415
+ default:
3416
+ throw new Error("attribute invalid close char('/')");
3417
+ }
3418
+ break;
3419
+ case "":
3420
+ return a.error("unexpected end of input"), c == Z && r.setTagName(u.slice(e, l)), l;
3421
+ case ">":
3422
+ switch (c) {
3423
+ case Z:
3424
+ r.setTagName(u.slice(e, l));
3425
+ case z:
3426
+ case W:
3427
+ case iu:
3428
+ break;
3429
+ case G:
3430
+ case U:
3431
+ o = u.slice(e, l), o.slice(-1) === "/" && (r.closed = !0, o = o.slice(0, -1));
3432
+ case V:
3433
+ c === V && (o = s), c == G ? (a.warning('attribute "' + o + '" missed quot(")!'), i(s, o, e)) : ((!eu.isHTML(t[""]) || !o.match(/^(?:disabled|checked|selected)$/i)) && a.warning('attribute "' + o + '" missed value!! "' + o + '" instead!!'), i(o, o, e));
3434
+ break;
3435
+ case J:
3436
+ throw new Error("attribute value missed!!");
3437
+ }
3438
+ return l;
3439
+ case "€":
3440
+ f = " ";
3441
+ default:
3442
+ if (f <= " ")
3443
+ switch (c) {
3444
+ case Z:
3445
+ r.setTagName(u.slice(e, l)), c = W;
3446
+ break;
3447
+ case U:
3448
+ s = u.slice(e, l), c = V;
3449
+ break;
3450
+ case G:
3451
+ var o = u.slice(e, l);
3452
+ a.warning('attribute "' + o + '" missed quot(")!!'), i(s, o, e);
3453
+ case z:
3454
+ c = W;
3455
+ break;
3456
+ }
3457
+ else
3458
+ switch (c) {
3459
+ case V:
3460
+ r.tagName, (!eu.isHTML(t[""]) || !s.match(/^(?:disabled|checked|selected)$/i)) && a.warning('attribute "' + s + '" missed value!! "' + s + '" instead2!!'), i(s, s, e), e = l, c = U;
3461
+ break;
3462
+ case z:
3463
+ a.warning('attribute space is required"' + s + '"!!');
3464
+ case W:
3465
+ c = U, e = l;
3466
+ break;
3467
+ case J:
3468
+ c = G, e = l;
3469
+ break;
3470
+ case iu:
3471
+ throw new Error("elements closed character '/' and '>' must be connected to");
3472
+ }
3473
+ }
3474
+ l++;
3475
+ }
3476
+ }
3477
+ function $u(u, e, r) {
3478
+ for (var t = u.tagName, n = null, f = u.length; f--; ) {
3479
+ var a = u[f], i = a.qName, s = a.value, p = i.indexOf(":");
3480
+ if (p > 0)
3481
+ var o = a.prefix = i.slice(0, p), l = i.slice(p + 1), c = o === "xmlns" && l;
3482
+ else
3483
+ l = i, o = null, c = i === "xmlns" && "";
3484
+ a.localName = l, c !== !1 && (n == null && (n = {}, Ce(r, r = {})), r[c] = n[c] = s, a.uri = eu.XMLNS, e.startPrefixMapping(c, s));
3485
+ }
3486
+ for (var f = u.length; f--; ) {
3487
+ a = u[f];
3488
+ var o = a.prefix;
3489
+ o && (o === "xml" && (a.uri = eu.XML), o !== "xmlns" && (a.uri = r[o || ""]));
3490
+ }
3491
+ var p = t.indexOf(":");
3492
+ p > 0 ? (o = u.prefix = t.slice(0, p), l = u.localName = t.slice(p + 1)) : (o = null, l = u.localName = t);
3493
+ var d = u.uri = r[o || ""];
3494
+ if (e.startElement(d, l, t, u), u.closed) {
3495
+ if (e.endElement(d, l, t), n)
3496
+ for (o in n)
3497
+ Object.prototype.hasOwnProperty.call(n, o) && e.endPrefixMapping(o);
3498
+ } else
3499
+ return u.currentNSMap = r, u.localNSMap = n, !0;
3500
+ }
3501
+ function He(u, e, r, t, n) {
3502
+ if (/^(?:script|textarea)$/i.test(r)) {
3503
+ var a = u.indexOf("</" + r + ">", e), i = u.substring(e + 1, a);
3504
+ if (/[&<]/.test(i))
3505
+ return /^script$/i.test(r) ? (n.characters(i, 0, i.length), a) : (i = i.replace(/&#?\w+;/g, t), n.characters(i, 0, i.length), a);
3506
+ }
3507
+ return e + 1;
3508
+ }
3509
+ function je(u, e, r, t) {
3510
+ var n = t[r];
3511
+ return n == null && (n = u.lastIndexOf("</" + r + ">"), n < e && (n = u.lastIndexOf("</" + r)), t[r] = n), n < e;
3512
+ }
3513
+ function Ce(u, e) {
3514
+ for (var r in u)
3515
+ Object.prototype.hasOwnProperty.call(u, r) && (e[r] = u[r]);
3516
+ }
3517
+ function $e(u, e, r, t) {
3518
+ var n = u.charAt(e + 2);
3519
+ switch (n) {
3520
+ case "-":
3521
+ if (u.charAt(e + 3) === "-") {
3522
+ var a = u.indexOf("-->", e + 4);
3523
+ return a > e ? (r.comment(u, e + 4, a - e - 4), a + 3) : (t.error("Unclosed comment"), -1);
3524
+ } else
3525
+ return -1;
3526
+ default:
3527
+ if (u.substr(e + 3, 6) == "CDATA[") {
3528
+ var a = u.indexOf("]]>", e + 9);
3529
+ return r.startCDATA(), r.characters(u, e + 9, a - e - 9), r.endCDATA(), a + 3;
3530
+ }
3531
+ var i = Ye(u, e), s = i.length;
3532
+ if (s > 1 && /!doctype/i.test(i[0][0])) {
3533
+ var o = i[1][0], l = !1, c = !1;
3534
+ s > 3 && (/^public$/i.test(i[2][0]) ? (l = i[3][0], c = s > 4 && i[4][0]) : /^system$/i.test(i[2][0]) && (c = i[3][0]));
3535
+ var f = i[s - 1];
3536
+ return r.startDTD(o, l, c), r.endDTD(), f.index + f[0].length;
3537
+ }
3538
+ }
3539
+ return -1;
3540
+ }
3541
+ function Xe(u, e, r) {
3542
+ var t = u.indexOf("?>", e);
3543
+ if (t) {
3544
+ var n = u.substring(e, t).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
3545
+ return n ? (n[0].length, r.processingInstruction(n[1], n[2]), t + 2) : -1;
3546
+ }
3547
+ return -1;
3548
+ }
3549
+ function ve() {
3550
+ this.attributeNames = {};
3551
+ }
3552
+ ve.prototype = {
3553
+ setTagName: function(u) {
3554
+ if (!Hu.test(u))
3555
+ throw new Error("invalid tagName:" + u);
3556
+ this.tagName = u;
3557
+ },
3558
+ addValue: function(u, e, r) {
3559
+ if (!Hu.test(u))
3560
+ throw new Error("invalid attribute:" + u);
3561
+ this.attributeNames[u] = this.length, this[this.length++] = { qName: u, value: e, offset: r };
3562
+ },
3563
+ length: 0,
3564
+ getLocalName: function(u) {
3565
+ return this[u].localName;
3566
+ },
3567
+ getLocator: function(u) {
3568
+ return this[u].locator;
3569
+ },
3570
+ getQName: function(u) {
3571
+ return this[u].qName;
3572
+ },
3573
+ getURI: function(u) {
3574
+ return this[u].uri;
3575
+ },
3576
+ getValue: function(u) {
3577
+ return this[u].value;
3578
+ }
3579
+ // ,getIndex:function(uri, localName)){
3580
+ // if(localName){
3581
+ //
3582
+ // }else{
3583
+ // var qName = uri
3584
+ // }
3585
+ // },
3586
+ // getValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},
3587
+ // getType:function(uri,localName){}
3588
+ // getType:function(i){},
3589
+ };
3590
+ function Ye(u, e) {
3591
+ var r, t = [], n = /'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;
3592
+ for (n.lastIndex = e, n.exec(u); r = n.exec(u); )
3593
+ if (t.push(r), r[1])
3594
+ return t;
3595
+ }
3596
+ qu.XMLReader = ge;
3597
+ qu.ParseError = Y;
3598
+ var Qe = k, Ze = M, Xu = de, be = qu, Je = Ze.DOMImplementation, Yu = Qe.NAMESPACE, We = be.ParseError, Ke = be.XMLReader;
3599
+ function we(u) {
3600
+ return u.replace(/\r[\n\u0085]/g, `
3601
+ `).replace(/[\r\u0085\u2028]/g, `
3602
+ `);
3603
+ }
3604
+ function Be(u) {
3605
+ this.options = u || { locator: {} };
3606
+ }
3607
+ Be.prototype.parseFromString = function(u, e) {
3608
+ var r = this.options, t = new Ke(), n = r.domBuilder || new au(), a = r.errorHandler, i = r.locator, s = r.xmlns || {}, o = /\/x?html?$/.test(e), l = o ? Xu.HTML_ENTITIES : Xu.XML_ENTITIES;
3609
+ i && n.setDocumentLocator(i), t.errorHandler = ur(a, n, i), t.domBuilder = r.domBuilder || n, o && (s[""] = Yu.HTML), s.xml = s.xml || Yu.XML;
3610
+ var c = r.normalizeLineEndings || we;
3611
+ return u && typeof u == "string" ? t.parse(
3612
+ c(u),
3613
+ s,
3614
+ l
3615
+ ) : t.errorHandler.error("invalid doc source"), n.doc;
3616
+ };
3617
+ function ur(u, e, r) {
3618
+ if (!u) {
3619
+ if (e instanceof au)
3620
+ return e;
3621
+ u = e;
3622
+ }
3623
+ var t = {}, n = u instanceof Function;
3624
+ r = r || {};
3625
+ function a(i) {
3626
+ var s = u[i];
3627
+ !s && n && (s = u.length == 2 ? function(o) {
3628
+ u(i, o);
3629
+ } : u), t[i] = s && function(o) {
3630
+ s("[xmldom " + i + "] " + o + vu(r));
3631
+ } || function() {
3632
+ };
3633
+ }
3634
+ return a("warning"), a("error"), a("fatalError"), t;
3635
+ }
3636
+ function au() {
3637
+ this.cdata = !1;
3638
+ }
3639
+ function H(u, e) {
3640
+ e.lineNumber = u.lineNumber, e.columnNumber = u.columnNumber;
3641
+ }
3642
+ au.prototype = {
3643
+ startDocument: function() {
3644
+ this.doc = new Je().createDocument(null, null, null), this.locator && (this.doc.documentURI = this.locator.systemId);
3645
+ },
3646
+ startElement: function(u, e, r, t) {
3647
+ var n = this.doc, a = n.createElementNS(u, r || e), i = t.length;
3648
+ ou(this, a), this.currentElement = a, this.locator && H(this.locator, a);
3649
+ for (var s = 0; s < i; s++) {
3650
+ var u = t.getURI(s), o = t.getValue(s), r = t.getQName(s), l = n.createAttributeNS(u, r);
3651
+ this.locator && H(t.getLocator(s), l), l.value = l.nodeValue = o, a.setAttributeNode(l);
3652
+ }
3653
+ },
3654
+ endElement: function(u, e, r) {
3655
+ var t = this.currentElement;
3656
+ t.tagName, this.currentElement = t.parentNode;
3657
+ },
3658
+ startPrefixMapping: function(u, e) {
3659
+ },
3660
+ endPrefixMapping: function(u) {
3661
+ },
3662
+ processingInstruction: function(u, e) {
3663
+ var r = this.doc.createProcessingInstruction(u, e);
3664
+ this.locator && H(this.locator, r), ou(this, r);
3665
+ },
3666
+ ignorableWhitespace: function(u, e, r) {
3667
+ },
3668
+ characters: function(u, e, r) {
3669
+ if (u = Qu.apply(this, arguments), u) {
3670
+ if (this.cdata)
3671
+ var t = this.doc.createCDATASection(u);
3672
+ else
3673
+ var t = this.doc.createTextNode(u);
3674
+ this.currentElement ? this.currentElement.appendChild(t) : /^\s*$/.test(u) && this.doc.appendChild(t), this.locator && H(this.locator, t);
3675
+ }
3676
+ },
3677
+ skippedEntity: function(u) {
3678
+ },
3679
+ endDocument: function() {
3680
+ this.doc.normalize();
3681
+ },
3682
+ setDocumentLocator: function(u) {
3683
+ (this.locator = u) && (u.lineNumber = 0);
3684
+ },
3685
+ //LexicalHandler
3686
+ comment: function(u, e, r) {
3687
+ u = Qu.apply(this, arguments);
3688
+ var t = this.doc.createComment(u);
3689
+ this.locator && H(this.locator, t), ou(this, t);
3690
+ },
3691
+ startCDATA: function() {
3692
+ this.cdata = !0;
3693
+ },
3694
+ endCDATA: function() {
3695
+ this.cdata = !1;
3696
+ },
3697
+ startDTD: function(u, e, r) {
3698
+ var t = this.doc.implementation;
3699
+ if (t && t.createDocumentType) {
3700
+ var n = t.createDocumentType(u, e, r);
3701
+ this.locator && H(this.locator, n), ou(this, n), this.doc.doctype = n;
3702
+ }
3703
+ },
3704
+ /**
3705
+ * @see org.xml.sax.ErrorHandler
3706
+ * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
3707
+ */
3708
+ warning: function(u) {
3709
+ console.warn("[xmldom warning] " + u, vu(this.locator));
3710
+ },
3711
+ error: function(u) {
3712
+ console.error("[xmldom error] " + u, vu(this.locator));
3713
+ },
3714
+ fatalError: function(u) {
3715
+ throw new We(u, this.locator);
3716
+ }
3717
+ };
3718
+ function vu(u) {
3719
+ if (u)
3720
+ return `
3721
+ @` + (u.systemId || "") + "#[line:" + u.lineNumber + ",col:" + u.columnNumber + "]";
3722
+ }
3723
+ function Qu(u, e, r) {
3724
+ return typeof u == "string" ? u.substr(e, r) : u.length >= e + r || e ? new java.lang.String(u, e, r) + "" : u;
3725
+ }
3726
+ "endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g, function(u) {
3727
+ au.prototype[u] = function() {
3728
+ return null;
3729
+ };
3730
+ });
3731
+ function ou(u, e) {
3732
+ u.currentElement ? u.currentElement.appendChild(e) : u.doc.appendChild(e);
3733
+ }
3734
+ Au.__DOMHandler = au;
3735
+ Au.normalizeLineEndings = we;
3736
+ Au.DOMParser = Be;
3737
+ var er = Au.DOMParser;
3738
+ const rr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3739
+ __proto__: null,
3740
+ DOMParser: er
3741
+ }, Symbol.toStringTag, { value: "Module" }));
3742
+ export {
3743
+ rr as i
3744
+ };