@streamlayer/sdk-web 1.17.7 → 1.18.1

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