-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathparse5.js
58 lines (54 loc) · 191 KB
/
parse5.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(() => {
const exports = {};
const module = {exports};
var parcelRequire = function(e,r,t,n){var i,o="function"==typeof parcelRequire&&parcelRequire,u="function"==typeof require&&require;function f(t,n){if(!r[t]){if(!e[t]){var i="function"==typeof parcelRequire&&parcelRequire;if(!n&&i)return i(t,!0);if(o)return o(t,!0);if(u&&"string"==typeof t)return u(t);var c=new Error("Cannot find module '"+t+"'");throw c.code="MODULE_NOT_FOUND",c}p.resolve=function(r){return e[t][1][r]||r},p.cache={};var l=r[t]=new f.Module(t);e[t][0].call(l.exports,p,l,l.exports,this)}return r[t].exports;function p(e){return f(p.resolve(e))}}f.isParcelRequire=!0,f.Module=function(e){this.id=e,this.bundle=f,this.exports={}},f.modules=e,f.cache=r,f.parent=o,f.register=function(r,t){e[r]=[function(e,r){r.exports=t},{}]};for(var c=0;c<t.length;c++)try{f(t[c])}catch(e){i||(i=e)}if(t.length){var l=f(t[t.length-1]);"object"==typeof exports&&"undefined"!=typeof module?module.exports=l:"function"==typeof define&&define.amd?define(function(){return l}):n&&(this[n]=l)}if(parcelRequire=f,i)throw i;return f}({"DZsD":[function(require,module,exports) {
"use strict";const A=[65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111];exports.REPLACEMENT_CHARACTER="�",exports.CODE_POINTS={EOF:-1,NULL:0,TABULATION:9,CARRIAGE_RETURN:13,LINE_FEED:10,FORM_FEED:12,SPACE:32,EXCLAMATION_MARK:33,QUOTATION_MARK:34,NUMBER_SIGN:35,AMPERSAND:38,APOSTROPHE:39,HYPHEN_MINUS:45,SOLIDUS:47,DIGIT_0:48,DIGIT_9:57,SEMICOLON:59,LESS_THAN_SIGN:60,EQUALS_SIGN:61,GREATER_THAN_SIGN:62,QUESTION_MARK:63,LATIN_CAPITAL_A:65,LATIN_CAPITAL_F:70,LATIN_CAPITAL_X:88,LATIN_CAPITAL_Z:90,RIGHT_SQUARE_BRACKET:93,GRAVE_ACCENT:96,LATIN_SMALL_A:97,LATIN_SMALL_F:102,LATIN_SMALL_X:120,LATIN_SMALL_Z:122,REPLACEMENT_CHARACTER:65533},exports.CODE_POINT_SEQUENCES={DASH_DASH_STRING:[45,45],DOCTYPE_STRING:[68,79,67,84,89,80,69],CDATA_START_STRING:[91,67,68,65,84,65,91],SCRIPT_STRING:[115,99,114,105,112,116],PUBLIC_STRING:[80,85,66,76,73,67],SYSTEM_STRING:[83,89,83,84,69,77]},exports.isSurrogate=function(A){return A>=55296&&A<=57343},exports.isSurrogatePair=function(A){return A>=56320&&A<=57343},exports.getSurrogatePairCodePoint=function(A,_){return 1024*(A-55296)+9216+_},exports.isControlCodePoint=function(A){return 32!==A&&10!==A&&13!==A&&9!==A&&12!==A&&A>=1&&A<=31||A>=127&&A<=159},exports.isUndefinedCodePoint=function(_){return _>=64976&&_<=65007||A.indexOf(_)>-1};
},{}],"I0i7":[function(require,module,exports) {
"use strict";module.exports={controlCharacterInInputStream:"control-character-in-input-stream",noncharacterInInputStream:"noncharacter-in-input-stream",surrogateInInputStream:"surrogate-in-input-stream",nonVoidHtmlElementStartTagWithTrailingSolidus:"non-void-html-element-start-tag-with-trailing-solidus",endTagWithAttributes:"end-tag-with-attributes",endTagWithTrailingSolidus:"end-tag-with-trailing-solidus",unexpectedSolidusInTag:"unexpected-solidus-in-tag",unexpectedNullCharacter:"unexpected-null-character",unexpectedQuestionMarkInsteadOfTagName:"unexpected-question-mark-instead-of-tag-name",invalidFirstCharacterOfTagName:"invalid-first-character-of-tag-name",unexpectedEqualsSignBeforeAttributeName:"unexpected-equals-sign-before-attribute-name",missingEndTagName:"missing-end-tag-name",unexpectedCharacterInAttributeName:"unexpected-character-in-attribute-name",unknownNamedCharacterReference:"unknown-named-character-reference",missingSemicolonAfterCharacterReference:"missing-semicolon-after-character-reference",unexpectedCharacterAfterDoctypeSystemIdentifier:"unexpected-character-after-doctype-system-identifier",unexpectedCharacterInUnquotedAttributeValue:"unexpected-character-in-unquoted-attribute-value",eofBeforeTagName:"eof-before-tag-name",eofInTag:"eof-in-tag",missingAttributeValue:"missing-attribute-value",missingWhitespaceBetweenAttributes:"missing-whitespace-between-attributes",missingWhitespaceAfterDoctypePublicKeyword:"missing-whitespace-after-doctype-public-keyword",missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers:"missing-whitespace-between-doctype-public-and-system-identifiers",missingWhitespaceAfterDoctypeSystemKeyword:"missing-whitespace-after-doctype-system-keyword",missingQuoteBeforeDoctypePublicIdentifier:"missing-quote-before-doctype-public-identifier",missingQuoteBeforeDoctypeSystemIdentifier:"missing-quote-before-doctype-system-identifier",missingDoctypePublicIdentifier:"missing-doctype-public-identifier",missingDoctypeSystemIdentifier:"missing-doctype-system-identifier",abruptDoctypePublicIdentifier:"abrupt-doctype-public-identifier",abruptDoctypeSystemIdentifier:"abrupt-doctype-system-identifier",cdataInHtmlContent:"cdata-in-html-content",incorrectlyOpenedComment:"incorrectly-opened-comment",eofInScriptHtmlCommentLikeText:"eof-in-script-html-comment-like-text",eofInDoctype:"eof-in-doctype",nestedComment:"nested-comment",abruptClosingOfEmptyComment:"abrupt-closing-of-empty-comment",eofInComment:"eof-in-comment",incorrectlyClosedComment:"incorrectly-closed-comment",eofInCdata:"eof-in-cdata",absenceOfDigitsInNumericCharacterReference:"absence-of-digits-in-numeric-character-reference",nullCharacterReference:"null-character-reference",surrogateCharacterReference:"surrogate-character-reference",characterReferenceOutsideUnicodeRange:"character-reference-outside-unicode-range",controlCharacterReference:"control-character-reference",noncharacterCharacterReference:"noncharacter-character-reference",missingWhitespaceBeforeDoctypeName:"missing-whitespace-before-doctype-name",missingDoctypeName:"missing-doctype-name",invalidCharacterSequenceAfterDoctypeName:"invalid-character-sequence-after-doctype-name",duplicateAttribute:"duplicate-attribute",nonConformingDoctype:"non-conforming-doctype",missingDoctype:"missing-doctype",misplacedDoctype:"misplaced-doctype",endTagWithoutMatchingOpenElement:"end-tag-without-matching-open-element",closingOfElementWithOpenChildElements:"closing-of-element-with-open-child-elements",disallowedContentInNoscriptInHead:"disallowed-content-in-noscript-in-head",openElementsLeftAfterEof:"open-elements-left-after-eof",abandonedHeadElementChild:"abandoned-head-element-child",misplacedStartTagForHeadElement:"misplaced-start-tag-for-head-element",nestedNoscriptInHead:"nested-noscript-in-head",eofInElementThatCanContainOnlyText:"eof-in-element-that-can-contain-only-text"};
},{}],"WjgA":[function(require,module,exports) {
"use strict";const t=require("../common/unicode"),s=require("../common/error-codes"),i=t.CODE_POINTS,h=65536;class r{constructor(){this.html=null,this.pos=-1,this.lastGapPos=-1,this.lastCharPos=-1,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=h}_err(){}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(h){if(this.pos!==this.lastCharPos){const s=this.html.charCodeAt(this.pos+1);if(t.isSurrogatePair(s))return this.pos++,this._addGap(),t.getSurrogatePairCodePoint(h,s)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,i.EOF;return this._err(s.surrogateInInputStream),h}dropParsedChunk(){this.pos>this.bufferWaterline&&(this.lastCharPos-=this.pos,this.html=this.html.substring(this.pos),this.pos=0,this.lastGapPos=-1,this.gapStack=[])}write(t,s){this.html?this.html+=t:this.html=t,this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1,this.lastChunkWritten=s}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1,this.html.length),this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1}advance(){if(this.pos++,this.pos>this.lastCharPos)return this.endOfChunkHit=!this.lastChunkWritten,i.EOF;let s=this.html.charCodeAt(this.pos);if(this.skipNextNewLine&&s===i.LINE_FEED)return this.skipNextNewLine=!1,this._addGap(),this.advance();if(s===i.CARRIAGE_RETURN)return this.skipNextNewLine=!0,i.LINE_FEED;return this.skipNextNewLine=!1,t.isSurrogate(s)&&(s=this._processSurrogate(s)),s>31&&s<127||s===i.LINE_FEED||s===i.CARRIAGE_RETURN||s>159&&s<64976||this._checkForProblematicCharacters(s),s}_checkForProblematicCharacters(i){t.isControlCodePoint(i)?this._err(s.controlCharacterInInputStream):t.isUndefinedCodePoint(i)&&this._err(s.noncharacterInInputStream)}retreat(){this.pos===this.lastGapPos&&(this.lastGapPos=this.gapStack.pop(),this.pos--),this.pos--}}module.exports=r;
},{"../common/unicode":"DZsD","../common/error-codes":"I0i7"}],"SYUo":[function(require,module,exports) {
"use strict";module.exports=new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4e3,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,1e4,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13e3,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204]);
},{}],"RZJD":[function(require,module,exports) {
"use strict";const t=require("./preprocessor"),e=require("../common/unicode"),s=require("./named-entity-data"),r=require("../common/error-codes"),i=e.CODE_POINTS,n=e.CODE_POINT_SEQUENCES,h={128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376},_=1,T=2,E=4,o=_|T|E,a="DATA_STATE",A="RCDATA_STATE",u="RAWTEXT_STATE",c="SCRIPT_DATA_STATE",C="PLAINTEXT_STATE",S="TAG_OPEN_STATE",m="END_TAG_OPEN_STATE",N="TAG_NAME_STATE",I="RCDATA_LESS_THAN_SIGN_STATE",R="RCDATA_END_TAG_OPEN_STATE",f="RCDATA_END_TAG_NAME_STATE",O="RAWTEXT_LESS_THAN_SIGN_STATE",k="RAWTEXT_END_TAG_OPEN_STATE",p="RAWTEXT_END_TAG_NAME_STATE",d="SCRIPT_DATA_LESS_THAN_SIGN_STATE",l="SCRIPT_DATA_END_TAG_OPEN_STATE",P="SCRIPT_DATA_END_TAG_NAME_STATE",D="SCRIPT_DATA_ESCAPE_START_STATE",L="SCRIPT_DATA_ESCAPE_START_DASH_STATE",H="SCRIPT_DATA_ESCAPED_STATE",G="SCRIPT_DATA_ESCAPED_DASH_STATE",M="SCRIPT_DATA_ESCAPED_DASH_DASH_STATE",U="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN_STATE",F="SCRIPT_DATA_ESCAPED_END_TAG_OPEN_STATE",g="SCRIPT_DATA_ESCAPED_END_TAG_NAME_STATE",B="SCRIPT_DATA_DOUBLE_ESCAPE_START_STATE",y="SCRIPT_DATA_DOUBLE_ESCAPED_STATE",Q="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_STATE",K="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH_STATE",b="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN_STATE",v="SCRIPT_DATA_DOUBLE_ESCAPE_END_STATE",Y="BEFORE_ATTRIBUTE_NAME_STATE",x="ATTRIBUTE_NAME_STATE",W="AFTER_ATTRIBUTE_NAME_STATE",q="BEFORE_ATTRIBUTE_VALUE_STATE",X="ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE",V="ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE",w="ATTRIBUTE_VALUE_UNQUOTED_STATE",Z="AFTER_ATTRIBUTE_VALUE_QUOTED_STATE",j="SELF_CLOSING_START_TAG_STATE",z="BOGUS_COMMENT_STATE",J="MARKUP_DECLARATION_OPEN_STATE",$="COMMENT_START_STATE",tt="COMMENT_START_DASH_STATE",et="COMMENT_STATE",st="COMMENT_LESS_THAN_SIGN_STATE",rt="COMMENT_LESS_THAN_SIGN_BANG_STATE",it="COMMENT_LESS_THAN_SIGN_BANG_DASH_STATE",nt="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH_STATE",ht="COMMENT_END_DASH_STATE",_t="COMMENT_END_STATE",Tt="COMMENT_END_BANG_STATE",Et="DOCTYPE_STATE",ot="BEFORE_DOCTYPE_NAME_STATE",at="DOCTYPE_NAME_STATE",At="AFTER_DOCTYPE_NAME_STATE",ut="AFTER_DOCTYPE_PUBLIC_KEYWORD_STATE",ct="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE",Ct="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE",St="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE",mt="AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE",Nt="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS_STATE",It="AFTER_DOCTYPE_SYSTEM_KEYWORD_STATE",Rt="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE",ft="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE",Ot="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE",kt="AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE",pt="BOGUS_DOCTYPE_STATE",dt="CDATA_SECTION_STATE",lt="CDATA_SECTION_BRACKET_STATE",Pt="CDATA_SECTION_END_STATE",Dt="CHARACTER_REFERENCE_STATE",Lt="NAMED_CHARACTER_REFERENCE_STATE",Ht="AMBIGUOS_AMPERSAND_STATE",Gt="NUMERIC_CHARACTER_REFERENCE_STATE",Mt="HEXADEMICAL_CHARACTER_REFERENCE_START_STATE",Ut="DECIMAL_CHARACTER_REFERENCE_START_STATE",Ft="HEXADEMICAL_CHARACTER_REFERENCE_STATE",gt="DECIMAL_CHARACTER_REFERENCE_STATE",Bt="NUMERIC_CHARACTER_REFERENCE_END_STATE";function yt(t){return t===i.SPACE||t===i.LINE_FEED||t===i.TABULATION||t===i.FORM_FEED}function Qt(t){return t>=i.DIGIT_0&&t<=i.DIGIT_9}function Kt(t){return t>=i.LATIN_CAPITAL_A&&t<=i.LATIN_CAPITAL_Z}function bt(t){return t>=i.LATIN_SMALL_A&&t<=i.LATIN_SMALL_Z}function vt(t){return bt(t)||Kt(t)}function Yt(t){return vt(t)||Qt(t)}function xt(t){return t>=i.LATIN_CAPITAL_A&&t<=i.LATIN_CAPITAL_F}function Wt(t){return t>=i.LATIN_SMALL_A&&t<=i.LATIN_SMALL_F}function qt(t){return Qt(t)||xt(t)||Wt(t)}function Xt(t){return t+32}function Vt(t){return t<=65535?String.fromCharCode(t):(t-=65536,String.fromCharCode(t>>>10&1023|55296)+String.fromCharCode(56320|1023&t))}function wt(t){return String.fromCharCode(Xt(t))}function Zt(t,e){const r=s[++t];let i=++t,n=i+r-1;for(;i<=n;){const t=i+n>>>1,h=s[t];if(h<e)i=t+1;else{if(!(h>e))return s[t+r];n=t-1}}return-1}class jt{constructor(){this.preprocessor=new t,this.tokenQueue=[],this.allowCDATA=!1,this.state=a,this.returnState="",this.charRefCode=-1,this.tempBuff=[],this.lastStartTagName="",this.consumedAfterSnapshot=-1,this.active=!1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr=null}_err(){}_errOnNextCodePoint(t){this._consume(),this._err(t),this._unconsume()}getNextToken(){for(;!this.tokenQueue.length&&this.active;){this.consumedAfterSnapshot=0;const t=this._consume();this._ensureHibernation()||this[this.state](t)}return this.tokenQueue.shift()}write(t,e){this.active=!0,this.preprocessor.write(t,e)}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t)}_ensureHibernation(){if(this.preprocessor.endOfChunkHit){for(;this.consumedAfterSnapshot>0;this.consumedAfterSnapshot--)this.preprocessor.retreat();return this.active=!1,this.tokenQueue.push({type:jt.HIBERNATION_TOKEN}),!0}return!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_unconsume(){this.consumedAfterSnapshot--,this.preprocessor.retreat()}_reconsumeInState(t){this.state=t,this._unconsume()}_consumeSequenceIfMatch(t,e,s){let r=0,n=!0;const h=t.length;let _=0,T=e,E=void 0;for(;_<h;_++){if(_>0&&(T=this._consume(),r++),T===i.EOF){n=!1;break}if(T!==(E=t[_])&&(s||T!==Xt(E))){n=!1;break}}if(!n)for(;r--;)this._unconsume();return n}_isTempBufferEqualToScriptString(){if(this.tempBuff.length!==n.SCRIPT_STRING.length)return!1;for(let t=0;t<this.tempBuff.length;t++)if(this.tempBuff[t]!==n.SCRIPT_STRING[t])return!1;return!0}_createStartTagToken(){this.currentToken={type:jt.START_TAG_TOKEN,tagName:"",selfClosing:!1,ackSelfClosing:!1,attrs:[]}}_createEndTagToken(){this.currentToken={type:jt.END_TAG_TOKEN,tagName:"",selfClosing:!1,attrs:[]}}_createCommentToken(){this.currentToken={type:jt.COMMENT_TOKEN,data:""}}_createDoctypeToken(t){this.currentToken={type:jt.DOCTYPE_TOKEN,name:t,forceQuirks:!1,publicId:null,systemId:null}}_createCharacterToken(t,e){this.currentCharacterToken={type:t,chars:e}}_createEOFToken(){this.currentToken={type:jt.EOF_TOKEN}}_createAttr(t){this.currentAttr={name:t,value:""}}_leaveAttrName(t){null===jt.getTokenAttr(this.currentToken,this.currentAttr.name)?this.currentToken.attrs.push(this.currentAttr):this._err(r.duplicateAttribute),this.state=t}_leaveAttrValue(t){this.state=t}_emitCurrentToken(){this._emitCurrentCharacterToken();const t=this.currentToken;this.currentToken=null,t.type===jt.START_TAG_TOKEN?this.lastStartTagName=t.tagName:t.type===jt.END_TAG_TOKEN&&(t.attrs.length>0&&this._err(r.endTagWithAttributes),t.selfClosing&&this._err(r.endTagWithTrailingSolidus)),this.tokenQueue.push(t)}_emitCurrentCharacterToken(){this.currentCharacterToken&&(this.tokenQueue.push(this.currentCharacterToken),this.currentCharacterToken=null)}_emitEOFToken(){this._createEOFToken(),this._emitCurrentToken()}_appendCharToCurrentCharacterToken(t,e){this.currentCharacterToken&&this.currentCharacterToken.type!==t&&this._emitCurrentCharacterToken(),this.currentCharacterToken?this.currentCharacterToken.chars+=e:this._createCharacterToken(t,e)}_emitCodePoint(t){let e=jt.CHARACTER_TOKEN;yt(t)?e=jt.WHITESPACE_CHARACTER_TOKEN:t===i.NULL&&(e=jt.NULL_CHARACTER_TOKEN),this._appendCharToCurrentCharacterToken(e,Vt(t))}_emitSeveralCodePoints(t){for(let e=0;e<t.length;e++)this._emitCodePoint(t[e])}_emitChars(t){this._appendCharToCurrentCharacterToken(jt.CHARACTER_TOKEN,t)}_matchNamedCharacterReference(t){let e=null,r=1,n=Zt(0,t);for(this.tempBuff.push(t);n>-1;){const t=s[n],h=t<o;h&&t&_&&(e=t&T?[s[++n],s[++n]]:[s[++n]],r=0);const a=this._consume();if(this.tempBuff.push(a),r++,a===i.EOF)break;n=h?t&E?Zt(n,a):-1:a===t?++n:-1}for(;r--;)this.tempBuff.pop(),this._unconsume();return e}_isCharacterReferenceInAttribute(){return this.returnState===X||this.returnState===V||this.returnState===w}_isCharacterReferenceAttributeQuirk(t){if(!t&&this._isCharacterReferenceInAttribute()){const t=this._consume();return this._unconsume(),t===i.EQUALS_SIGN||Yt(t)}return!1}_flushCodePointsConsumedAsCharacterReference(){if(this._isCharacterReferenceInAttribute())for(let t=0;t<this.tempBuff.length;t++)this.currentAttr.value+=Vt(this.tempBuff[t]);else this._emitSeveralCodePoints(this.tempBuff);this.tempBuff=[]}[a](t){this.preprocessor.dropParsedChunk(),t===i.LESS_THAN_SIGN?this.state=S:t===i.AMPERSAND?(this.returnState=a,this.state=Dt):t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitCodePoint(t)):t===i.EOF?this._emitEOFToken():this._emitCodePoint(t)}[A](t){this.preprocessor.dropParsedChunk(),t===i.AMPERSAND?(this.returnState=A,this.state=Dt):t===i.LESS_THAN_SIGN?this.state=I:t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?this._emitEOFToken():this._emitCodePoint(t)}[u](t){this.preprocessor.dropParsedChunk(),t===i.LESS_THAN_SIGN?this.state=O:t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?this._emitEOFToken():this._emitCodePoint(t)}[c](t){this.preprocessor.dropParsedChunk(),t===i.LESS_THAN_SIGN?this.state=d:t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?this._emitEOFToken():this._emitCodePoint(t)}[C](t){this.preprocessor.dropParsedChunk(),t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?this._emitEOFToken():this._emitCodePoint(t)}[S](t){t===i.EXCLAMATION_MARK?this.state=J:t===i.SOLIDUS?this.state=m:vt(t)?(this._createStartTagToken(),this._reconsumeInState(N)):t===i.QUESTION_MARK?(this._err(r.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(),this._reconsumeInState(z)):t===i.EOF?(this._err(r.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken()):(this._err(r.invalidFirstCharacterOfTagName),this._emitChars("<"),this._reconsumeInState(a))}[m](t){vt(t)?(this._createEndTagToken(),this._reconsumeInState(N)):t===i.GREATER_THAN_SIGN?(this._err(r.missingEndTagName),this.state=a):t===i.EOF?(this._err(r.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken()):(this._err(r.invalidFirstCharacterOfTagName),this._createCommentToken(),this._reconsumeInState(z))}[N](t){yt(t)?this.state=Y:t===i.SOLIDUS?this.state=j:t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):Kt(t)?this.currentToken.tagName+=wt(t):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.tagName+=e.REPLACEMENT_CHARACTER):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):this.currentToken.tagName+=Vt(t)}[I](t){t===i.SOLIDUS?(this.tempBuff=[],this.state=R):(this._emitChars("<"),this._reconsumeInState(A))}[R](t){vt(t)?(this._createEndTagToken(),this._reconsumeInState(f)):(this._emitChars("</"),this._reconsumeInState(A))}[f](t){if(Kt(t))this.currentToken.tagName+=wt(t),this.tempBuff.push(t);else if(bt(t))this.currentToken.tagName+=Vt(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(yt(t))return void(this.state=Y);if(t===i.SOLIDUS)return void(this.state=j);if(t===i.GREATER_THAN_SIGN)return this.state=a,void this._emitCurrentToken()}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(A)}}[O](t){t===i.SOLIDUS?(this.tempBuff=[],this.state=k):(this._emitChars("<"),this._reconsumeInState(u))}[k](t){vt(t)?(this._createEndTagToken(),this._reconsumeInState(p)):(this._emitChars("</"),this._reconsumeInState(u))}[p](t){if(Kt(t))this.currentToken.tagName+=wt(t),this.tempBuff.push(t);else if(bt(t))this.currentToken.tagName+=Vt(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(yt(t))return void(this.state=Y);if(t===i.SOLIDUS)return void(this.state=j);if(t===i.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=a)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(u)}}[d](t){t===i.SOLIDUS?(this.tempBuff=[],this.state=l):t===i.EXCLAMATION_MARK?(this.state=D,this._emitChars("<!")):(this._emitChars("<"),this._reconsumeInState(c))}[l](t){vt(t)?(this._createEndTagToken(),this._reconsumeInState(P)):(this._emitChars("</"),this._reconsumeInState(c))}[P](t){if(Kt(t))this.currentToken.tagName+=wt(t),this.tempBuff.push(t);else if(bt(t))this.currentToken.tagName+=Vt(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(yt(t))return void(this.state=Y);if(t===i.SOLIDUS)return void(this.state=j);if(t===i.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=a)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(c)}}[D](t){t===i.HYPHEN_MINUS?(this.state=L,this._emitChars("-")):this._reconsumeInState(c)}[L](t){t===i.HYPHEN_MINUS?(this.state=M,this._emitChars("-")):this._reconsumeInState(c)}[H](t){t===i.HYPHEN_MINUS?(this.state=G,this._emitChars("-")):t===i.LESS_THAN_SIGN?this.state=U:t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[G](t){t===i.HYPHEN_MINUS?(this.state=M,this._emitChars("-")):t===i.LESS_THAN_SIGN?this.state=U:t===i.NULL?(this._err(r.unexpectedNullCharacter),this.state=H,this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=H,this._emitCodePoint(t))}[M](t){t===i.HYPHEN_MINUS?this._emitChars("-"):t===i.LESS_THAN_SIGN?this.state=U:t===i.GREATER_THAN_SIGN?(this.state=c,this._emitChars(">")):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.state=H,this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=H,this._emitCodePoint(t))}[U](t){t===i.SOLIDUS?(this.tempBuff=[],this.state=F):vt(t)?(this.tempBuff=[],this._emitChars("<"),this._reconsumeInState(B)):(this._emitChars("<"),this._reconsumeInState(H))}[F](t){vt(t)?(this._createEndTagToken(),this._reconsumeInState(g)):(this._emitChars("</"),this._reconsumeInState(H))}[g](t){if(Kt(t))this.currentToken.tagName+=wt(t),this.tempBuff.push(t);else if(bt(t))this.currentToken.tagName+=Vt(t),this.tempBuff.push(t);else{if(this.lastStartTagName===this.currentToken.tagName){if(yt(t))return void(this.state=Y);if(t===i.SOLIDUS)return void(this.state=j);if(t===i.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=a)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(H)}}[B](t){yt(t)||t===i.SOLIDUS||t===i.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?y:H,this._emitCodePoint(t)):Kt(t)?(this.tempBuff.push(Xt(t)),this._emitCodePoint(t)):bt(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(H)}[y](t){t===i.HYPHEN_MINUS?(this.state=Q,this._emitChars("-")):t===i.LESS_THAN_SIGN?(this.state=b,this._emitChars("<")):t===i.NULL?(this._err(r.unexpectedNullCharacter),this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):this._emitCodePoint(t)}[Q](t){t===i.HYPHEN_MINUS?(this.state=K,this._emitChars("-")):t===i.LESS_THAN_SIGN?(this.state=b,this._emitChars("<")):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.state=y,this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=y,this._emitCodePoint(t))}[K](t){t===i.HYPHEN_MINUS?this._emitChars("-"):t===i.LESS_THAN_SIGN?(this.state=b,this._emitChars("<")):t===i.GREATER_THAN_SIGN?(this.state=c,this._emitChars(">")):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.state=y,this._emitChars(e.REPLACEMENT_CHARACTER)):t===i.EOF?(this._err(r.eofInScriptHtmlCommentLikeText),this._emitEOFToken()):(this.state=y,this._emitCodePoint(t))}[b](t){t===i.SOLIDUS?(this.tempBuff=[],this.state=v,this._emitChars("/")):this._reconsumeInState(y)}[v](t){yt(t)||t===i.SOLIDUS||t===i.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?H:y,this._emitCodePoint(t)):Kt(t)?(this.tempBuff.push(Xt(t)),this._emitCodePoint(t)):bt(t)?(this.tempBuff.push(t),this._emitCodePoint(t)):this._reconsumeInState(y)}[Y](t){yt(t)||(t===i.SOLIDUS||t===i.GREATER_THAN_SIGN||t===i.EOF?this._reconsumeInState(W):t===i.EQUALS_SIGN?(this._err(r.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=x):(this._createAttr(""),this._reconsumeInState(x)))}[x](t){yt(t)||t===i.SOLIDUS||t===i.GREATER_THAN_SIGN||t===i.EOF?(this._leaveAttrName(W),this._unconsume()):t===i.EQUALS_SIGN?this._leaveAttrName(q):Kt(t)?this.currentAttr.name+=wt(t):t===i.QUOTATION_MARK||t===i.APOSTROPHE||t===i.LESS_THAN_SIGN?(this._err(r.unexpectedCharacterInAttributeName),this.currentAttr.name+=Vt(t)):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentAttr.name+=e.REPLACEMENT_CHARACTER):this.currentAttr.name+=Vt(t)}[W](t){yt(t)||(t===i.SOLIDUS?this.state=j:t===i.EQUALS_SIGN?this.state=q:t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):(this._createAttr(""),this._reconsumeInState(x)))}[q](t){yt(t)||(t===i.QUOTATION_MARK?this.state=X:t===i.APOSTROPHE?this.state=V:t===i.GREATER_THAN_SIGN?(this._err(r.missingAttributeValue),this.state=a,this._emitCurrentToken()):this._reconsumeInState(w))}[X](t){t===i.QUOTATION_MARK?this.state=Z:t===i.AMPERSAND?(this.returnState=X,this.state=Dt):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentAttr.value+=e.REPLACEMENT_CHARACTER):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Vt(t)}[V](t){t===i.APOSTROPHE?this.state=Z:t===i.AMPERSAND?(this.returnState=V,this.state=Dt):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentAttr.value+=e.REPLACEMENT_CHARACTER):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Vt(t)}[w](t){yt(t)?this._leaveAttrValue(Y):t===i.AMPERSAND?(this.returnState=w,this.state=Dt):t===i.GREATER_THAN_SIGN?(this._leaveAttrValue(a),this._emitCurrentToken()):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentAttr.value+=e.REPLACEMENT_CHARACTER):t===i.QUOTATION_MARK||t===i.APOSTROPHE||t===i.LESS_THAN_SIGN||t===i.EQUALS_SIGN||t===i.GRAVE_ACCENT?(this._err(r.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=Vt(t)):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):this.currentAttr.value+=Vt(t)}[Z](t){yt(t)?this._leaveAttrValue(Y):t===i.SOLIDUS?this._leaveAttrValue(j):t===i.GREATER_THAN_SIGN?(this._leaveAttrValue(a),this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):(this._err(r.missingWhitespaceBetweenAttributes),this._reconsumeInState(Y))}[j](t){t===i.GREATER_THAN_SIGN?(this.currentToken.selfClosing=!0,this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInTag),this._emitEOFToken()):(this._err(r.unexpectedSolidusInTag),this._reconsumeInState(Y))}[z](t){t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):t===i.EOF?(this._emitCurrentToken(),this._emitEOFToken()):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.data+=e.REPLACEMENT_CHARACTER):this.currentToken.data+=Vt(t)}[J](t){this._consumeSequenceIfMatch(n.DASH_DASH_STRING,t,!0)?(this._createCommentToken(),this.state=$):this._consumeSequenceIfMatch(n.DOCTYPE_STRING,t,!1)?this.state=Et:this._consumeSequenceIfMatch(n.CDATA_START_STRING,t,!0)?this.allowCDATA?this.state=dt:(this._err(r.cdataInHtmlContent),this._createCommentToken(),this.currentToken.data="[CDATA[",this.state=z):this._ensureHibernation()||(this._err(r.incorrectlyOpenedComment),this._createCommentToken(),this._reconsumeInState(z))}[$](t){t===i.HYPHEN_MINUS?this.state=tt:t===i.GREATER_THAN_SIGN?(this._err(r.abruptClosingOfEmptyComment),this.state=a,this._emitCurrentToken()):this._reconsumeInState(et)}[tt](t){t===i.HYPHEN_MINUS?this.state=_t:t===i.GREATER_THAN_SIGN?(this._err(r.abruptClosingOfEmptyComment),this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(et))}[et](t){t===i.HYPHEN_MINUS?this.state=ht:t===i.LESS_THAN_SIGN?(this.currentToken.data+="<",this.state=st):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.data+=e.REPLACEMENT_CHARACTER):t===i.EOF?(this._err(r.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.data+=Vt(t)}[st](t){t===i.EXCLAMATION_MARK?(this.currentToken.data+="!",this.state=rt):t===i.LESS_THAN_SIGN?this.currentToken.data+="!":this._reconsumeInState(et)}[rt](t){t===i.HYPHEN_MINUS?this.state=it:this._reconsumeInState(et)}[it](t){t===i.HYPHEN_MINUS?this.state=nt:this._reconsumeInState(ht)}[nt](t){t!==i.GREATER_THAN_SIGN&&t!==i.EOF&&this._err(r.nestedComment),this._reconsumeInState(_t)}[ht](t){t===i.HYPHEN_MINUS?this.state=_t:t===i.EOF?(this._err(r.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(et))}[_t](t){t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):t===i.EXCLAMATION_MARK?this.state=Tt:t===i.HYPHEN_MINUS?this.currentToken.data+="-":t===i.EOF?(this._err(r.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--",this._reconsumeInState(et))}[Tt](t){t===i.HYPHEN_MINUS?(this.currentToken.data+="--!",this.state=ht):t===i.GREATER_THAN_SIGN?(this._err(r.incorrectlyClosedComment),this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInComment),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--!",this._reconsumeInState(et))}[Et](t){yt(t)?this.state=ot:t===i.GREATER_THAN_SIGN?this._reconsumeInState(ot):t===i.EOF?(this._err(r.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingWhitespaceBeforeDoctypeName),this._reconsumeInState(ot))}[ot](t){yt(t)||(Kt(t)?(this._createDoctypeToken(wt(t)),this.state=at):t===i.NULL?(this._err(r.unexpectedNullCharacter),this._createDoctypeToken(e.REPLACEMENT_CHARACTER),this.state=at):t===i.GREATER_THAN_SIGN?(this._err(r.missingDoctypeName),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._createDoctypeToken(Vt(t)),this.state=at))}[at](t){yt(t)?this.state=At:t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):Kt(t)?this.currentToken.name+=wt(t):t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.name+=e.REPLACEMENT_CHARACTER):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.name+=Vt(t)}[At](t){yt(t)||(t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this._consumeSequenceIfMatch(n.PUBLIC_STRING,t,!1)?this.state=ut:this._consumeSequenceIfMatch(n.SYSTEM_STRING,t,!1)?this.state=It:this._ensureHibernation()||(this._err(r.invalidCharacterSequenceAfterDoctypeName),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt)))}[ut](t){yt(t)?this.state=ct:t===i.QUOTATION_MARK?(this._err(r.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=Ct):t===i.APOSTROPHE?(this._err(r.missingWhitespaceAfterDoctypePublicKeyword),this.currentToken.publicId="",this.state=St):t===i.GREATER_THAN_SIGN?(this._err(r.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt))}[ct](t){yt(t)||(t===i.QUOTATION_MARK?(this.currentToken.publicId="",this.state=Ct):t===i.APOSTROPHE?(this.currentToken.publicId="",this.state=St):t===i.GREATER_THAN_SIGN?(this._err(r.missingDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt)))}[Ct](t){t===i.QUOTATION_MARK?this.state=mt:t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.publicId+=e.REPLACEMENT_CHARACTER):t===i.GREATER_THAN_SIGN?(this._err(r.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Vt(t)}[St](t){t===i.APOSTROPHE?this.state=mt:t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.publicId+=e.REPLACEMENT_CHARACTER):t===i.GREATER_THAN_SIGN?(this._err(r.abruptDoctypePublicIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=Vt(t)}[mt](t){yt(t)?this.state=Nt:t===i.GREATER_THAN_SIGN?(this.state=a,this._emitCurrentToken()):t===i.QUOTATION_MARK?(this._err(r.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=ft):t===i.APOSTROPHE?(this._err(r.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),this.currentToken.systemId="",this.state=Ot):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt))}[Nt](t){yt(t)||(t===i.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=a):t===i.QUOTATION_MARK?(this.currentToken.systemId="",this.state=ft):t===i.APOSTROPHE?(this.currentToken.systemId="",this.state=Ot):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt)))}[It](t){yt(t)?this.state=Rt:t===i.QUOTATION_MARK?(this._err(r.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=ft):t===i.APOSTROPHE?(this._err(r.missingWhitespaceAfterDoctypeSystemKeyword),this.currentToken.systemId="",this.state=Ot):t===i.GREATER_THAN_SIGN?(this._err(r.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt))}[Rt](t){yt(t)||(t===i.QUOTATION_MARK?(this.currentToken.systemId="",this.state=ft):t===i.APOSTROPHE?(this.currentToken.systemId="",this.state=Ot):t===i.GREATER_THAN_SIGN?(this._err(r.missingDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this.state=a,this._emitCurrentToken()):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.missingQuoteBeforeDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._reconsumeInState(pt)))}[ft](t){t===i.QUOTATION_MARK?this.state=kt:t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.systemId+=e.REPLACEMENT_CHARACTER):t===i.GREATER_THAN_SIGN?(this._err(r.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Vt(t)}[Ot](t){t===i.APOSTROPHE?this.state=kt:t===i.NULL?(this._err(r.unexpectedNullCharacter),this.currentToken.systemId+=e.REPLACEMENT_CHARACTER):t===i.GREATER_THAN_SIGN?(this._err(r.abruptDoctypeSystemIdentifier),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=Vt(t)}[kt](t){yt(t)||(t===i.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=a):t===i.EOF?(this._err(r.eofInDoctype),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(r.unexpectedCharacterAfterDoctypeSystemIdentifier),this._reconsumeInState(pt)))}[pt](t){t===i.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=a):t===i.NULL?this._err(r.unexpectedNullCharacter):t===i.EOF&&(this._emitCurrentToken(),this._emitEOFToken())}[dt](t){t===i.RIGHT_SQUARE_BRACKET?this.state=lt:t===i.EOF?(this._err(r.eofInCdata),this._emitEOFToken()):this._emitCodePoint(t)}[lt](t){t===i.RIGHT_SQUARE_BRACKET?this.state=Pt:(this._emitChars("]"),this._reconsumeInState(dt))}[Pt](t){t===i.GREATER_THAN_SIGN?this.state=a:t===i.RIGHT_SQUARE_BRACKET?this._emitChars("]"):(this._emitChars("]]"),this._reconsumeInState(dt))}[Dt](t){this.tempBuff=[i.AMPERSAND],t===i.NUMBER_SIGN?(this.tempBuff.push(t),this.state=Gt):Yt(t)?this._reconsumeInState(Lt):(this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[Lt](t){const e=this._matchNamedCharacterReference(t);if(this._ensureHibernation())this.tempBuff=[i.AMPERSAND];else if(e){const t=this.tempBuff[this.tempBuff.length-1]===i.SEMICOLON;this._isCharacterReferenceAttributeQuirk(t)||(t||this._errOnNextCodePoint(r.missingSemicolonAfterCharacterReference),this.tempBuff=e),this._flushCodePointsConsumedAsCharacterReference(),this.state=this.returnState}else this._flushCodePointsConsumedAsCharacterReference(),this.state=Ht}[Ht](t){Yt(t)?this._isCharacterReferenceInAttribute()?this.currentAttr.value+=Vt(t):this._emitCodePoint(t):(t===i.SEMICOLON&&this._err(r.unknownNamedCharacterReference),this._reconsumeInState(this.returnState))}[Gt](t){this.charRefCode=0,t===i.LATIN_SMALL_X||t===i.LATIN_CAPITAL_X?(this.tempBuff.push(t),this.state=Mt):this._reconsumeInState(Ut)}[Mt](t){qt(t)?this._reconsumeInState(Ft):(this._err(r.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[Ut](t){Qt(t)?this._reconsumeInState(gt):(this._err(r.absenceOfDigitsInNumericCharacterReference),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState))}[Ft](t){xt(t)?this.charRefCode=16*this.charRefCode+t-55:Wt(t)?this.charRefCode=16*this.charRefCode+t-87:Qt(t)?this.charRefCode=16*this.charRefCode+t-48:t===i.SEMICOLON?this.state=Bt:(this._err(r.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bt))}[gt](t){Qt(t)?this.charRefCode=10*this.charRefCode+t-48:t===i.SEMICOLON?this.state=Bt:(this._err(r.missingSemicolonAfterCharacterReference),this._reconsumeInState(Bt))}[Bt](){if(this.charRefCode===i.NULL)this._err(r.nullCharacterReference),this.charRefCode=i.REPLACEMENT_CHARACTER;else if(this.charRefCode>1114111)this._err(r.characterReferenceOutsideUnicodeRange),this.charRefCode=i.REPLACEMENT_CHARACTER;else if(e.isSurrogate(this.charRefCode))this._err(r.surrogateCharacterReference),this.charRefCode=i.REPLACEMENT_CHARACTER;else if(e.isUndefinedCodePoint(this.charRefCode))this._err(r.noncharacterCharacterReference);else if(e.isControlCodePoint(this.charRefCode)||this.charRefCode===i.CARRIAGE_RETURN){this._err(r.controlCharacterReference);const t=h[this.charRefCode];t&&(this.charRefCode=t)}this.tempBuff=[this.charRefCode],this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState)}}jt.CHARACTER_TOKEN="CHARACTER_TOKEN",jt.NULL_CHARACTER_TOKEN="NULL_CHARACTER_TOKEN",jt.WHITESPACE_CHARACTER_TOKEN="WHITESPACE_CHARACTER_TOKEN",jt.START_TAG_TOKEN="START_TAG_TOKEN",jt.END_TAG_TOKEN="END_TAG_TOKEN",jt.COMMENT_TOKEN="COMMENT_TOKEN",jt.DOCTYPE_TOKEN="DOCTYPE_TOKEN",jt.EOF_TOKEN="EOF_TOKEN",jt.HIBERNATION_TOKEN="HIBERNATION_TOKEN",jt.MODE={DATA:a,RCDATA:A,RAWTEXT:u,SCRIPT_DATA:c,PLAINTEXT:C},jt.getTokenAttr=function(t,e){for(let s=t.attrs.length-1;s>=0;s--)if(t.attrs[s].name===e)return t.attrs[s].value;return null},module.exports=jt;
},{"./preprocessor":"WjgA","../common/unicode":"DZsD","./named-entity-data":"SYUo","../common/error-codes":"I0i7"}],"xQSA":[function(require,module,exports) {
"use strict";const E=exports.NAMESPACES={HTML:"http://www.w3.org/1999/xhtml",MATHML:"http://www.w3.org/1998/Math/MathML",SVG:"http://www.w3.org/2000/svg",XLINK:"http://www.w3.org/1999/xlink",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"};exports.ATTRS={TYPE:"type",ACTION:"action",ENCODING:"encoding",PROMPT:"prompt",NAME:"name",COLOR:"color",FACE:"face",SIZE:"size"},exports.DOCUMENT_MODE={NO_QUIRKS:"no-quirks",QUIRKS:"quirks",LIMITED_QUIRKS:"limited-quirks"};const T=exports.TAG_NAMES={A:"a",ADDRESS:"address",ANNOTATION_XML:"annotation-xml",APPLET:"applet",AREA:"area",ARTICLE:"article",ASIDE:"aside",B:"b",BASE:"base",BASEFONT:"basefont",BGSOUND:"bgsound",BIG:"big",BLOCKQUOTE:"blockquote",BODY:"body",BR:"br",BUTTON:"button",CAPTION:"caption",CENTER:"center",CODE:"code",COL:"col",COLGROUP:"colgroup",DD:"dd",DESC:"desc",DETAILS:"details",DIALOG:"dialog",DIR:"dir",DIV:"div",DL:"dl",DT:"dt",EM:"em",EMBED:"embed",FIELDSET:"fieldset",FIGCAPTION:"figcaption",FIGURE:"figure",FONT:"font",FOOTER:"footer",FOREIGN_OBJECT:"foreignObject",FORM:"form",FRAME:"frame",FRAMESET:"frameset",H1:"h1",H2:"h2",H3:"h3",H4:"h4",H5:"h5",H6:"h6",HEAD:"head",HEADER:"header",HGROUP:"hgroup",HR:"hr",HTML:"html",I:"i",IMG:"img",IMAGE:"image",INPUT:"input",IFRAME:"iframe",KEYGEN:"keygen",LABEL:"label",LI:"li",LINK:"link",LISTING:"listing",MAIN:"main",MALIGNMARK:"malignmark",MARQUEE:"marquee",MATH:"math",MENU:"menu",META:"meta",MGLYPH:"mglyph",MI:"mi",MO:"mo",MN:"mn",MS:"ms",MTEXT:"mtext",NAV:"nav",NOBR:"nobr",NOFRAMES:"noframes",NOEMBED:"noembed",NOSCRIPT:"noscript",OBJECT:"object",OL:"ol",OPTGROUP:"optgroup",OPTION:"option",P:"p",PARAM:"param",PLAINTEXT:"plaintext",PRE:"pre",RB:"rb",RP:"rp",RT:"rt",RTC:"rtc",RUBY:"ruby",S:"s",SCRIPT:"script",SECTION:"section",SELECT:"select",SOURCE:"source",SMALL:"small",SPAN:"span",STRIKE:"strike",STRONG:"strong",STYLE:"style",SUB:"sub",SUMMARY:"summary",SUP:"sup",TABLE:"table",TBODY:"tbody",TEMPLATE:"template",TEXTAREA:"textarea",TFOOT:"tfoot",TD:"td",TH:"th",THEAD:"thead",TITLE:"title",TR:"tr",TRACK:"track",TT:"tt",U:"u",UL:"ul",SVG:"svg",VAR:"var",WBR:"wbr",XMP:"xmp"};exports.SPECIAL_ELEMENTS={[E.HTML]:{[T.ADDRESS]:!0,[T.APPLET]:!0,[T.AREA]:!0,[T.ARTICLE]:!0,[T.ASIDE]:!0,[T.BASE]:!0,[T.BASEFONT]:!0,[T.BGSOUND]:!0,[T.BLOCKQUOTE]:!0,[T.BODY]:!0,[T.BR]:!0,[T.BUTTON]:!0,[T.CAPTION]:!0,[T.CENTER]:!0,[T.COL]:!0,[T.COLGROUP]:!0,[T.DD]:!0,[T.DETAILS]:!0,[T.DIR]:!0,[T.DIV]:!0,[T.DL]:!0,[T.DT]:!0,[T.EMBED]:!0,[T.FIELDSET]:!0,[T.FIGCAPTION]:!0,[T.FIGURE]:!0,[T.FOOTER]:!0,[T.FORM]:!0,[T.FRAME]:!0,[T.FRAMESET]:!0,[T.H1]:!0,[T.H2]:!0,[T.H3]:!0,[T.H4]:!0,[T.H5]:!0,[T.H6]:!0,[T.HEAD]:!0,[T.HEADER]:!0,[T.HGROUP]:!0,[T.HR]:!0,[T.HTML]:!0,[T.IFRAME]:!0,[T.IMG]:!0,[T.INPUT]:!0,[T.LI]:!0,[T.LINK]:!0,[T.LISTING]:!0,[T.MAIN]:!0,[T.MARQUEE]:!0,[T.MENU]:!0,[T.META]:!0,[T.NAV]:!0,[T.NOEMBED]:!0,[T.NOFRAMES]:!0,[T.NOSCRIPT]:!0,[T.OBJECT]:!0,[T.OL]:!0,[T.P]:!0,[T.PARAM]:!0,[T.PLAINTEXT]:!0,[T.PRE]:!0,[T.SCRIPT]:!0,[T.SECTION]:!0,[T.SELECT]:!0,[T.SOURCE]:!0,[T.STYLE]:!0,[T.SUMMARY]:!0,[T.TABLE]:!0,[T.TBODY]:!0,[T.TD]:!0,[T.TEMPLATE]:!0,[T.TEXTAREA]:!0,[T.TFOOT]:!0,[T.TH]:!0,[T.THEAD]:!0,[T.TITLE]:!0,[T.TR]:!0,[T.TRACK]:!0,[T.UL]:!0,[T.WBR]:!0,[T.XMP]:!0},[E.MATHML]:{[T.MI]:!0,[T.MO]:!0,[T.MN]:!0,[T.MS]:!0,[T.MTEXT]:!0,[T.ANNOTATION_XML]:!0},[E.SVG]:{[T.TITLE]:!0,[T.FOREIGN_OBJECT]:!0,[T.DESC]:!0}};
},{}],"Un3j":[function(require,module,exports) {
"use strict";const t=require("../common/html"),e=t.TAG_NAMES,r=t.NAMESPACES;function s(t){switch(t.length){case 1:return t===e.P;case 2:return t===e.RB||t===e.RP||t===e.RT||t===e.DD||t===e.DT||t===e.LI;case 3:return t===e.RTC;case 6:return t===e.OPTION;case 8:return t===e.OPTGROUP}return!1}function i(t){switch(t.length){case 1:return t===e.P;case 2:return t===e.RB||t===e.RP||t===e.RT||t===e.DD||t===e.DT||t===e.LI||t===e.TD||t===e.TH||t===e.TR;case 3:return t===e.RTC;case 5:return t===e.TBODY||t===e.TFOOT||t===e.THEAD;case 6:return t===e.OPTION;case 7:return t===e.CAPTION;case 8:return t===e.OPTGROUP||t===e.COLGROUP}return!1}function a(t,s){switch(t.length){case 2:if(t===e.TD||t===e.TH)return s===r.HTML;if(t===e.MI||t===e.MO||t===e.MN||t===e.MS)return s===r.MATHML;break;case 4:if(t===e.HTML)return s===r.HTML;if(t===e.DESC)return s===r.SVG;break;case 5:if(t===e.TABLE)return s===r.HTML;if(t===e.MTEXT)return s===r.MATHML;if(t===e.TITLE)return s===r.SVG;break;case 6:return(t===e.APPLET||t===e.OBJECT)&&s===r.HTML;case 7:return(t===e.CAPTION||t===e.MARQUEE)&&s===r.HTML;case 8:return t===e.TEMPLATE&&s===r.HTML;case 13:return t===e.FOREIGN_OBJECT&&s===r.SVG;case 14:return t===e.ANNOTATION_XML&&s===r.MATHML}return!1}class n{constructor(t,e){this.stackTop=-1,this.items=[],this.current=t,this.currentTagName=null,this.currentTmplContent=null,this.tmplCount=0,this.treeAdapter=e}_indexOf(t){let e=-1;for(let r=this.stackTop;r>=0;r--)if(this.items[r]===t){e=r;break}return e}_isInTemplate(){return this.currentTagName===e.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===r.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagName=this.current&&this.treeAdapter.getTagName(this.current),this.currentTmplContent=this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):null}push(t){this.items[++this.stackTop]=t,this._updateCurrentElement(),this._isInTemplate()&&this.tmplCount++}pop(){this.stackTop--,this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this._updateCurrentElement()}replace(t,e){const r=this._indexOf(t);this.items[r]=e,r===this.stackTop&&this._updateCurrentElement()}insertAfter(t,e){const r=this._indexOf(t)+1;this.items.splice(r,0,e),r===++this.stackTop&&this._updateCurrentElement()}popUntilTagNamePopped(t){for(;this.stackTop>-1;){const e=this.currentTagName,s=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),e===t&&s===r.HTML)break}}popUntilElementPopped(t){for(;this.stackTop>-1;){const e=this.current;if(this.pop(),e===t)break}}popUntilNumberedHeaderPopped(){for(;this.stackTop>-1;){const t=this.currentTagName,s=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===e.H1||t===e.H2||t===e.H3||t===e.H4||t===e.H5||t===e.H6&&s===r.HTML)break}}popUntilTableCellPopped(){for(;this.stackTop>-1;){const t=this.currentTagName,s=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===e.TD||t===e.TH&&s===r.HTML)break}}popAllUpToHtmlElement(){this.stackTop=0,this._updateCurrentElement()}clearBackToTableContext(){for(;this.currentTagName!==e.TABLE&&this.currentTagName!==e.TEMPLATE&&this.currentTagName!==e.HTML||this.treeAdapter.getNamespaceURI(this.current)!==r.HTML;)this.pop()}clearBackToTableBodyContext(){for(;this.currentTagName!==e.TBODY&&this.currentTagName!==e.TFOOT&&this.currentTagName!==e.THEAD&&this.currentTagName!==e.TEMPLATE&&this.currentTagName!==e.HTML||this.treeAdapter.getNamespaceURI(this.current)!==r.HTML;)this.pop()}clearBackToTableRowContext(){for(;this.currentTagName!==e.TR&&this.currentTagName!==e.TEMPLATE&&this.currentTagName!==e.HTML||this.treeAdapter.getNamespaceURI(this.current)!==r.HTML;)this.pop()}remove(t){for(let e=this.stackTop;e>=0;e--)if(this.items[e]===t){this.items.splice(e,1),this.stackTop--,this._updateCurrentElement();break}}tryPeekProperlyNestedBodyElement(){const t=this.items[1];return t&&this.treeAdapter.getTagName(t)===e.BODY?t:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){let e=this._indexOf(t);return--e>=0?this.items[e]:null}isRootHtmlElementCurrent(){return 0===this.stackTop&&this.currentTagName===e.HTML}hasInScope(t){for(let e=this.stackTop;e>=0;e--){const s=this.treeAdapter.getTagName(this.items[e]),i=this.treeAdapter.getNamespaceURI(this.items[e]);if(s===t&&i===r.HTML)return!0;if(a(s,i))return!1}return!0}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){const s=this.treeAdapter.getTagName(this.items[t]),i=this.treeAdapter.getNamespaceURI(this.items[t]);if((s===e.H1||s===e.H2||s===e.H3||s===e.H4||s===e.H5||s===e.H6)&&i===r.HTML)return!0;if(a(s,i))return!1}return!0}hasInListItemScope(t){for(let s=this.stackTop;s>=0;s--){const i=this.treeAdapter.getTagName(this.items[s]),n=this.treeAdapter.getNamespaceURI(this.items[s]);if(i===t&&n===r.HTML)return!0;if((i===e.UL||i===e.OL)&&n===r.HTML||a(i,n))return!1}return!0}hasInButtonScope(t){for(let s=this.stackTop;s>=0;s--){const i=this.treeAdapter.getTagName(this.items[s]),n=this.treeAdapter.getNamespaceURI(this.items[s]);if(i===t&&n===r.HTML)return!0;if(i===e.BUTTON&&n===r.HTML||a(i,n))return!1}return!0}hasInTableScope(t){for(let s=this.stackTop;s>=0;s--){const i=this.treeAdapter.getTagName(this.items[s]);if(this.treeAdapter.getNamespaceURI(this.items[s])===r.HTML){if(i===t)return!0;if(i===e.TABLE||i===e.TEMPLATE||i===e.HTML)return!1}}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--){const s=this.treeAdapter.getTagName(this.items[t]);if(this.treeAdapter.getNamespaceURI(this.items[t])===r.HTML){if(s===e.TBODY||s===e.THEAD||s===e.TFOOT)return!0;if(s===e.TABLE||s===e.HTML)return!1}}return!0}hasInSelectScope(t){for(let s=this.stackTop;s>=0;s--){const i=this.treeAdapter.getTagName(this.items[s]);if(this.treeAdapter.getNamespaceURI(this.items[s])===r.HTML){if(i===t)return!0;if(i!==e.OPTION&&i!==e.OPTGROUP)return!1}}return!0}generateImpliedEndTags(){for(;s(this.currentTagName);)this.pop()}generateImpliedEndTagsThoroughly(){for(;i(this.currentTagName);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;s(this.currentTagName)&&this.currentTagName!==t;)this.pop()}}module.exports=n;
},{"../common/html":"xQSA"}],"Ibiy":[function(require,module,exports) {
"use strict";const t=3;class e{constructor(t){this.length=0,this.entries=[],this.treeAdapter=t,this.bookmark=null}_getNoahArkConditionCandidates(s){const n=[];if(this.length>=t){const t=this.treeAdapter.getAttrList(s).length,r=this.treeAdapter.getTagName(s),i=this.treeAdapter.getNamespaceURI(s);for(let s=this.length-1;s>=0;s--){const h=this.entries[s];if(h.type===e.MARKER_ENTRY)break;const l=h.element,o=this.treeAdapter.getAttrList(l);this.treeAdapter.getTagName(l)===r&&this.treeAdapter.getNamespaceURI(l)===i&&o.length===t&&n.push({idx:s,attrs:o})}}return n.length<t?[]:n}_ensureNoahArkCondition(e){const s=this._getNoahArkConditionCandidates(e);let n=s.length;if(n){const r=this.treeAdapter.getAttrList(e),i=r.length,h=Object.create(null);for(let t=0;t<i;t++){const e=r[t];h[e.name]=e.value}for(let e=0;e<i;e++)for(let r=0;r<n;r++){const i=s[r].attrs[e];if(h[i.name]!==i.value&&(s.splice(r,1),n--),s.length<t)return}for(let e=n-1;e>=t-1;e--)this.entries.splice(s[e].idx,1),this.length--}}insertMarker(){this.entries.push({type:e.MARKER_ENTRY}),this.length++}pushElement(t,s){this._ensureNoahArkCondition(t),this.entries.push({type:e.ELEMENT_ENTRY,element:t,token:s}),this.length++}insertElementAfterBookmark(t,s){let n=this.length-1;for(;n>=0&&this.entries[n]!==this.bookmark;n--);this.entries.splice(n+1,0,{type:e.ELEMENT_ENTRY,element:t,token:s}),this.length++}removeEntry(t){for(let e=this.length-1;e>=0;e--)if(this.entries[e]===t){this.entries.splice(e,1),this.length--;break}}clearToLastMarker(){for(;this.length;){const t=this.entries.pop();if(this.length--,t.type===e.MARKER_ENTRY)break}}getElementEntryInScopeWithTagName(t){for(let s=this.length-1;s>=0;s--){const n=this.entries[s];if(n.type===e.MARKER_ENTRY)return null;if(this.treeAdapter.getTagName(n.element)===t)return n}return null}getElementEntry(t){for(let s=this.length-1;s>=0;s--){const n=this.entries[s];if(n.type===e.ELEMENT_ENTRY&&n.element===t)return n}return null}}e.MARKER_ENTRY="MARKER_ENTRY",e.ELEMENT_ENTRY="ELEMENT_ENTRY",module.exports=e;
},{}],"db2d":[function(require,module,exports) {
"use strict";class t{constructor(t){const n={},e=this._getOverriddenMethods(this,n);for(const s of Object.keys(e))"function"==typeof e[s]&&(n[s]=t[s],t[s]=e[s])}_getOverriddenMethods(){throw new Error("Not implemented")}}t.install=function(t,n,e){t.__mixins||(t.__mixins=[]);for(let i=0;i<t.__mixins.length;i++)if(t.__mixins[i].constructor===n)return t.__mixins[i];const s=new n(t,e);return t.__mixins.push(s),s},module.exports=t;
},{}],"aKG4":[function(require,module,exports) {
"use strict";const s=require("../../utils/mixin");class t extends s{constructor(s){super(s),this.preprocessor=s,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.offset=0,this.col=0,this.line=1}_getOverriddenMethods(s,t){return{advance(){const e=this.pos+1,i=this.html[e];return s.isEol&&(s.isEol=!1,s.line++,s.lineStartPos=e),("\n"===i||"\r"===i&&"\n"!==this.html[e+1])&&(s.isEol=!0),s.col=e-s.lineStartPos+1,s.offset=s.droppedBufferSize+e,t.advance.call(this)},retreat(){t.retreat.call(this),s.isEol=!1,s.col=this.pos-s.lineStartPos+1},dropParsedChunk(){const e=this.pos;t.dropParsedChunk.call(this);const i=e-this.pos;s.lineStartPos-=i,s.droppedBufferSize+=i,s.offset=s.droppedBufferSize+this.pos}}}}module.exports=t;
},{"../../utils/mixin":"db2d"}],"o0A5":[function(require,module,exports) {
"use strict";const t=require("../../utils/mixin"),e=require("../../tokenizer"),r=require("../position-tracking/preprocessor-mixin");class n extends t{constructor(e){super(e),this.tokenizer=e,this.posTracker=t.install(e.preprocessor,r),this.currentAttrLocation=null,this.ctLoc=null}_getCurrentLocation(){return{startLine:this.posTracker.line,startCol:this.posTracker.col,startOffset:this.posTracker.offset,endLine:-1,endCol:-1,endOffset:-1}}_attachCurrentAttrLocationInfo(){this.currentAttrLocation.endLine=this.posTracker.line,this.currentAttrLocation.endCol=this.posTracker.col,this.currentAttrLocation.endOffset=this.posTracker.offset;const t=this.tokenizer.currentToken,e=this.tokenizer.currentAttr;t.location.attrs||(t.location.attrs=Object.create(null)),t.location.attrs[e.name]=this.currentAttrLocation}_getOverriddenMethods(t,r){const n={_createStartTagToken(){r._createStartTagToken.call(this),this.currentToken.location=t.ctLoc},_createEndTagToken(){r._createEndTagToken.call(this),this.currentToken.location=t.ctLoc},_createCommentToken(){r._createCommentToken.call(this),this.currentToken.location=t.ctLoc},_createDoctypeToken(e){r._createDoctypeToken.call(this,e),this.currentToken.location=t.ctLoc},_createCharacterToken(e,n){r._createCharacterToken.call(this,e,n),this.currentCharacterToken.location=t.ctLoc},_createEOFToken(){r._createEOFToken.call(this),this.currentToken.location=t._getCurrentLocation()},_createAttr(e){r._createAttr.call(this,e),t.currentAttrLocation=t._getCurrentLocation()},_leaveAttrName(e){r._leaveAttrName.call(this,e),t._attachCurrentAttrLocationInfo()},_leaveAttrValue(e){r._leaveAttrValue.call(this,e),t._attachCurrentAttrLocationInfo()},_emitCurrentToken(){const n=this.currentToken.location;this.currentCharacterToken&&(this.currentCharacterToken.location.endLine=n.startLine,this.currentCharacterToken.location.endCol=n.startCol,this.currentCharacterToken.location.endOffset=n.startOffset),this.currentToken.type===e.EOF_TOKEN?(n.endLine=n.startLine,n.endCol=n.startCol,n.endOffset=n.startOffset):(n.endLine=t.posTracker.line,n.endCol=t.posTracker.col+1,n.endOffset=t.posTracker.offset+1),r._emitCurrentToken.call(this)},_emitCurrentCharacterToken(){const e=this.currentCharacterToken&&this.currentCharacterToken.location;e&&-1===e.endOffset&&(e.endLine=t.posTracker.line,e.endCol=t.posTracker.col,e.endOffset=t.posTracker.offset),r._emitCurrentCharacterToken.call(this)}};return Object.keys(e.MODE).forEach(o=>{const c=e.MODE[o];n[c]=function(e){t.ctLoc=t._getCurrentLocation(),r[c].call(this,e)}}),n}}module.exports=n;
},{"../../utils/mixin":"db2d","../../tokenizer":"RZJD","../position-tracking/preprocessor-mixin":"aKG4"}],"JjYv":[function(require,module,exports) {
"use strict";const t=require("../../utils/mixin");class e extends t{constructor(t,e){super(t),this.onItemPop=e.onItemPop}_getOverriddenMethods(t,e){return{pop(){t.onItemPop(this.current),e.pop.call(this)},popAllUpToHtmlElement(){for(let e=this.stackTop;e>0;e--)t.onItemPop(this.items[e]);e.popAllUpToHtmlElement.call(this)},remove(o){t.onItemPop(this.current),e.remove.call(this,o)}}}}module.exports=e;
},{"../../utils/mixin":"db2d"}],"pVal":[function(require,module,exports) {
"use strict";const e=require("../../utils/mixin"),t=require("../../tokenizer"),n=require("./tokenizer-mixin"),o=require("./open-element-stack-mixin"),s=require("../../common/html"),r=s.TAG_NAMES;class a extends e{constructor(e){super(e),this.parser=e,this.treeAdapter=this.parser.treeAdapter,this.posTracker=null,this.lastStartTagToken=null,this.lastFosterParentingLocation=null,this.currentToken=null}_setStartLocation(e){let t=null;this.lastStartTagToken&&((t=Object.assign({},this.lastStartTagToken.location)).startTag=this.lastStartTagToken.location),this.treeAdapter.setNodeSourceCodeLocation(e,t)}_setEndLocation(e,n){const o=this.treeAdapter.getNodeSourceCodeLocation(e);if(o&&n.location){const s=n.location,r=this.treeAdapter.getTagName(e);n.type===t.END_TAG_TOKEN&&r===n.tagName?(o.endTag=Object.assign({},s),o.endLine=s.endLine,o.endCol=s.endCol,o.endOffset=s.endOffset):(o.endLine=s.startLine,o.endCol=s.startCol,o.endOffset=s.startOffset)}}_getOverriddenMethods(s,a){return{_bootstrap(t,r){a._bootstrap.call(this,t,r),s.lastStartTagToken=null,s.lastFosterParentingLocation=null,s.currentToken=null;const i=e.install(this.tokenizer,n);s.posTracker=i.posTracker,e.install(this.openElements,o,{onItemPop:function(e){s._setEndLocation(e,s.currentToken)}})},_runParsingLoop(e){a._runParsingLoop.call(this,e);for(let t=this.openElements.stackTop;t>=0;t--)s._setEndLocation(this.openElements.items[t],s.currentToken)},_processTokenInForeignContent(e){s.currentToken=e,a._processTokenInForeignContent.call(this,e)},_processToken(e){if(s.currentToken=e,a._processToken.call(this,e),e.type===t.END_TAG_TOKEN&&(e.tagName===r.HTML||e.tagName===r.BODY&&this.openElements.hasInScope(r.BODY)))for(let t=this.openElements.stackTop;t>=0;t--){const n=this.openElements.items[t];if(this.treeAdapter.getTagName(n)===e.tagName){s._setEndLocation(n,e);break}}},_setDocumentType(e){a._setDocumentType.call(this,e);const t=this.treeAdapter.getChildNodes(this.document),n=t.length;for(let o=0;o<n;o++){const n=t[o];if(this.treeAdapter.isDocumentTypeNode(n)){this.treeAdapter.setNodeSourceCodeLocation(n,e.location);break}}},_attachElementToTree(e){s._setStartLocation(e),s.lastStartTagToken=null,a._attachElementToTree.call(this,e)},_appendElement(e,t){s.lastStartTagToken=e,a._appendElement.call(this,e,t)},_insertElement(e,t){s.lastStartTagToken=e,a._insertElement.call(this,e,t)},_insertTemplate(e){s.lastStartTagToken=e,a._insertTemplate.call(this,e);const t=this.treeAdapter.getTemplateContent(this.openElements.current);this.treeAdapter.setNodeSourceCodeLocation(t,null)},_insertFakeRootElement(){a._insertFakeRootElement.call(this),this.treeAdapter.setNodeSourceCodeLocation(this.openElements.current,null)},_appendCommentNode(e,t){a._appendCommentNode.call(this,e,t);const n=this.treeAdapter.getChildNodes(t),o=n[n.length-1];this.treeAdapter.setNodeSourceCodeLocation(o,e.location)},_findFosterParentingLocation(){return s.lastFosterParentingLocation=a._findFosterParentingLocation.call(this),s.lastFosterParentingLocation},_insertCharacters(e){a._insertCharacters.call(this,e);const t=this._shouldFosterParentOnInsertion(),n=t&&s.lastFosterParentingLocation.parent||this.openElements.currentTmplContent||this.openElements.current,o=this.treeAdapter.getChildNodes(n),r=t&&s.lastFosterParentingLocation.beforeElement?o.indexOf(s.lastFosterParentingLocation.beforeElement)-1:o.length-1,i=o[r],l=this.treeAdapter.getNodeSourceCodeLocation(i);l?(l.endLine=e.location.endLine,l.endCol=e.location.endCol,l.endOffset=e.location.endOffset):this.treeAdapter.setNodeSourceCodeLocation(i,e.location)}}}}module.exports=a;
},{"../../utils/mixin":"db2d","../../tokenizer":"RZJD","./tokenizer-mixin":"o0A5","./open-element-stack-mixin":"JjYv","../../common/html":"xQSA"}],"WazJ":[function(require,module,exports) {
"use strict";const r=require("../../utils/mixin");class e extends r{constructor(r,e){super(r),this.posTracker=null,this.onParseError=e.onParseError}_setErrorLocation(r){r.startLine=r.endLine=this.posTracker.line,r.startCol=r.endCol=this.posTracker.col,r.startOffset=r.endOffset=this.posTracker.offset}_reportError(r){const e={code:r,startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1};this._setErrorLocation(e),this.onParseError(e)}_getOverriddenMethods(r){return{_err(e){r._reportError(e)}}}}module.exports=e;
},{"../../utils/mixin":"db2d"}],"Jtyf":[function(require,module,exports) {
"use strict";const r=require("./mixin-base"),s=require("../position-tracking/preprocessor-mixin"),t=require("../../utils/mixin");class e extends r{constructor(r,e){super(r,e),this.posTracker=t.install(r,s),this.lastErrOffset=-1}_reportError(r){this.lastErrOffset!==this.posTracker.offset&&(this.lastErrOffset=this.posTracker.offset,super._reportError(r))}}module.exports=e;
},{"./mixin-base":"WazJ","../position-tracking/preprocessor-mixin":"aKG4","../../utils/mixin":"db2d"}],"EJBP":[function(require,module,exports) {
"use strict";const r=require("./mixin-base"),s=require("./preprocessor-mixin"),e=require("../../utils/mixin");class i extends r{constructor(r,i){super(r,i);const o=e.install(r.preprocessor,s,i);this.posTracker=o.posTracker}}module.exports=i;
},{"./mixin-base":"WazJ","./preprocessor-mixin":"Jtyf","../../utils/mixin":"db2d"}],"mXnz":[function(require,module,exports) {
"use strict";const t=require("./mixin-base"),e=require("./tokenizer-mixin"),o=require("../location-info/tokenizer-mixin"),s=require("../../utils/mixin");class i extends t{constructor(t,e){super(t,e),this.opts=e,this.ctLoc=null,this.locBeforeToken=!1}_setErrorLocation(t){this.ctLoc&&(t.startLine=this.ctLoc.startLine,t.startCol=this.ctLoc.startCol,t.startOffset=this.ctLoc.startOffset,t.endLine=this.locBeforeToken?this.ctLoc.startLine:this.ctLoc.endLine,t.endCol=this.locBeforeToken?this.ctLoc.startCol:this.ctLoc.endCol,t.endOffset=this.locBeforeToken?this.ctLoc.startOffset:this.ctLoc.endOffset)}_getOverriddenMethods(t,i){return{_bootstrap(r,c){i._bootstrap.call(this,r,c),s.install(this.tokenizer,e,t.opts),s.install(this.tokenizer,o)},_processInputToken(e){t.ctLoc=e.location,i._processInputToken.call(this,e)},_err(e,o){t.locBeforeToken=o&&o.beforeToken,t._reportError(e)}}}}module.exports=i;
},{"./mixin-base":"WazJ","./tokenizer-mixin":"EJBP","../location-info/tokenizer-mixin":"o0A5","../../utils/mixin":"db2d"}],"03qh":[function(require,module,exports) {
"use strict";const{DOCUMENT_MODE:e}=require("../common/html");exports.createDocument=function(){return{nodeName:"#document",mode:e.NO_QUIRKS,childNodes:[]}},exports.createDocumentFragment=function(){return{nodeName:"#document-fragment",childNodes:[]}},exports.createElement=function(e,t,n){return{nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},exports.createCommentNode=function(e){return{nodeName:"#comment",data:e,parentNode:null}};const t=function(e){return{nodeName:"#text",value:e,parentNode:null}},n=exports.appendChild=function(e,t){e.childNodes.push(t),t.parentNode=e},o=exports.insertBefore=function(e,t,n){const o=e.childNodes.indexOf(n);e.childNodes.splice(o,0,t),t.parentNode=e};exports.setTemplateContent=function(e,t){e.content=t},exports.getTemplateContent=function(e){return e.content},exports.setDocumentType=function(e,t,o,r){let d=null;for(let n=0;n<e.childNodes.length;n++)if("#documentType"===e.childNodes[n].nodeName){d=e.childNodes[n];break}d?(d.name=t,d.publicId=o,d.systemId=r):n(e,{nodeName:"#documentType",name:t,publicId:o,systemId:r})},exports.setDocumentMode=function(e,t){e.mode=t},exports.getDocumentMode=function(e){return e.mode},exports.detachNode=function(e){if(e.parentNode){const t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},exports.insertText=function(e,o){if(e.childNodes.length){const t=e.childNodes[e.childNodes.length-1];if("#text"===t.nodeName)return void(t.value+=o)}n(e,t(o))},exports.insertTextBefore=function(e,n,r){const d=e.childNodes[e.childNodes.indexOf(r)-1];d&&"#text"===d.nodeName?d.value+=n:o(e,t(n),r)},exports.adoptAttributes=function(e,t){const n=[];for(let o=0;o<e.attrs.length;o++)n.push(e.attrs[o].name);for(let o=0;o<t.length;o++)-1===n.indexOf(t[o].name)&&e.attrs.push(t[o])},exports.getFirstChild=function(e){return e.childNodes[0]},exports.getChildNodes=function(e){return e.childNodes},exports.getParentNode=function(e){return e.parentNode},exports.getAttrList=function(e){return e.attrs},exports.getTagName=function(e){return e.tagName},exports.getNamespaceURI=function(e){return e.namespaceURI},exports.getTextNodeContent=function(e){return e.value},exports.getCommentNodeContent=function(e){return e.data},exports.getDocumentTypeNodeName=function(e){return e.name},exports.getDocumentTypeNodePublicId=function(e){return e.publicId},exports.getDocumentTypeNodeSystemId=function(e){return e.systemId},exports.isTextNode=function(e){return"#text"===e.nodeName},exports.isCommentNode=function(e){return"#comment"===e.nodeName},exports.isDocumentTypeNode=function(e){return"#documentType"===e.nodeName},exports.isElementNode=function(e){return!!e.tagName},exports.setNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=t},exports.getNodeSourceCodeLocation=function(e){return e.sourceCodeLocation};
},{"../common/html":"xQSA"}],"BnsS":[function(require,module,exports) {
"use strict";module.exports=function(e,t){return[e,t=t||Object.create(null)].reduce((e,t)=>(Object.keys(t).forEach(c=>{e[c]=t[c]}),e),Object.create(null))};
},{}],"aiHD":[function(require,module,exports) {
"use strict";const{DOCUMENT_MODE:t}=require("./html"),e="html",d="about:legacy-compat",l="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",n=["+//silmaril//dtd html pro v0r11 19970101//en","-//advasoft ltd//dtd html 3.0 aswedit + extensions//en","-//as//dtd html 3.0 aswedit + extensions//en","-//ietf//dtd html 2.0 level 1//en","-//ietf//dtd html 2.0 level 2//en","-//ietf//dtd html 2.0 strict level 1//en","-//ietf//dtd html 2.0 strict level 2//en","-//ietf//dtd html 2.0 strict//en","-//ietf//dtd html 2.0//en","-//ietf//dtd html 2.1e//en","-//ietf//dtd html 3.0//en","-//ietf//dtd html 3.0//en//","-//ietf//dtd html 3.2 final//en","-//ietf//dtd html 3.2//en","-//ietf//dtd html 3//en","-//ietf//dtd html level 0//en","-//ietf//dtd html level 0//en//2.0","-//ietf//dtd html level 1//en","-//ietf//dtd html level 1//en//2.0","-//ietf//dtd html level 2//en","-//ietf//dtd html level 2//en//2.0","-//ietf//dtd html level 3//en","-//ietf//dtd html level 3//en//3.0","-//ietf//dtd html strict level 0//en","-//ietf//dtd html strict level 0//en//2.0","-//ietf//dtd html strict level 1//en","-//ietf//dtd html strict level 1//en//2.0","-//ietf//dtd html strict level 2//en","-//ietf//dtd html strict level 2//en//2.0","-//ietf//dtd html strict level 3//en","-//ietf//dtd html strict level 3//en//3.0","-//ietf//dtd html strict//en","-//ietf//dtd html strict//en//2.0","-//ietf//dtd html strict//en//3.0","-//ietf//dtd html//en","-//ietf//dtd html//en//2.0","-//ietf//dtd html//en//3.0","-//metrius//dtd metrius presentational//en","-//microsoft//dtd internet explorer 2.0 html strict//en","-//microsoft//dtd internet explorer 2.0 html//en","-//microsoft//dtd internet explorer 2.0 tables//en","-//microsoft//dtd internet explorer 3.0 html strict//en","-//microsoft//dtd internet explorer 3.0 html//en","-//microsoft//dtd internet explorer 3.0 tables//en","-//netscape comm. corp.//dtd html//en","-//netscape comm. corp.//dtd strict html//en","-//o'reilly and associates//dtd html 2.0//en","-//o'reilly and associates//dtd html extended 1.0//en","-//spyglass//dtd html 2.0 extended//en","-//sq//dtd html 2.0 hotmetal + extensions//en","-//sun microsystems corp.//dtd hotjava html//en","-//sun microsystems corp.//dtd hotjava strict html//en","-//w3c//dtd html 3 1995-03-24//en","-//w3c//dtd html 3.2 draft//en","-//w3c//dtd html 3.2 final//en","-//w3c//dtd html 3.2//en","-//w3c//dtd html 3.2s draft//en","-//w3c//dtd html 4.0 frameset//en","-//w3c//dtd html 4.0 transitional//en","-//w3c//dtd html experimental 19960712//en","-//w3c//dtd html experimental 970421//en","-//w3c//dtd w3 html//en","-//w3o//dtd w3 html 3.0//en","-//w3o//dtd w3 html 3.0//en//","-//webtechs//dtd mozilla html 2.0//en","-//webtechs//dtd mozilla html//en"],i=n.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]),m=["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"],r=["-//W3C//DTD XHTML 1.0 Frameset//","-//W3C//DTD XHTML 1.0 Transitional//"],s=r.concat(["-//W3C//DTD HTML 4.01 Frameset//","-//W3C//DTD HTML 4.01 Transitional//"]);function h(t){const e=-1!==t.indexOf('"')?"'":'"';return e+t+e}function o(t,e){for(let d=0;d<e.length;d++)if(0===t.indexOf(e[d]))return!0;return!1}exports.isConforming=function(t){return"html"===t.name&&null===t.publicId&&(null===t.systemId||t.systemId===d)},exports.getDocumentMode=function(e){if("html"!==e.name)return t.QUIRKS;const d=e.systemId;if(d&&d.toLowerCase()===l)return t.QUIRKS;let h=e.publicId;if(null!==h){if(h=h.toLowerCase(),m.indexOf(h)>-1)return t.QUIRKS;let e=null===d?i:n;if(o(h,e))return t.QUIRKS;if(o(h,e=null===d?r:s))return t.LIMITED_QUIRKS}return t.NO_QUIRKS},exports.serializeContent=function(t,e,d){let l="!DOCTYPE ";return t&&(l+=t),e?l+=" PUBLIC "+h(e):d&&(l+=" SYSTEM"),null!==d&&(l+=" "+h(d)),l};
},{"./html":"xQSA"}],"8kkr":[function(require,module,exports) {
"use strict";const e=require("../tokenizer"),t=require("./html"),n=t.TAG_NAMES,a=t.NAMESPACES,r=t.ATTRS,i={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},s="definitionurl",l="definitionURL",o={attributename:"attributeName",attributetype:"attributeType",basefrequency:"baseFrequency",baseprofile:"baseProfile",calcmode:"calcMode",clippathunits:"clipPathUnits",diffuseconstant:"diffuseConstant",edgemode:"edgeMode",filterunits:"filterUnits",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",limitingconeangle:"limitingConeAngle",markerheight:"markerHeight",markerunits:"markerUnits",markerwidth:"markerWidth",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",numoctaves:"numOctaves",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",refx:"refX",refy:"refY",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",specularconstant:"specularConstant",specularexponent:"specularExponent",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stitchtiles:"stitchTiles",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textlength:"textLength",viewbox:"viewBox",viewtarget:"viewTarget",xchannelselector:"xChannelSelector",ychannelselector:"yChannelSelector",zoomandpan:"zoomAndPan"},f={"xlink:actuate":{prefix:"xlink",name:"actuate",namespace:a.XLINK},"xlink:arcrole":{prefix:"xlink",name:"arcrole",namespace:a.XLINK},"xlink:href":{prefix:"xlink",name:"href",namespace:a.XLINK},"xlink:role":{prefix:"xlink",name:"role",namespace:a.XLINK},"xlink:show":{prefix:"xlink",name:"show",namespace:a.XLINK},"xlink:title":{prefix:"xlink",name:"title",namespace:a.XLINK},"xlink:type":{prefix:"xlink",name:"type",namespace:a.XLINK},"xml:base":{prefix:"xml",name:"base",namespace:a.XML},"xml:lang":{prefix:"xml",name:"lang",namespace:a.XML},"xml:space":{prefix:"xml",name:"space",namespace:a.XML},xmlns:{prefix:"",name:"xmlns",namespace:a.XMLNS},"xmlns:xlink":{prefix:"xmlns",name:"xlink",namespace:a.XMLNS}},p=exports.SVG_TAG_NAMES_ADJUSTMENT_MAP={altglyph:"altGlyph",altglyphdef:"altGlyphDef",altglyphitem:"altGlyphItem",animatecolor:"animateColor",animatemotion:"animateMotion",animatetransform:"animateTransform",clippath:"clipPath",feblend:"feBlend",fecolormatrix:"feColorMatrix",fecomponenttransfer:"feComponentTransfer",fecomposite:"feComposite",feconvolvematrix:"feConvolveMatrix",fediffuselighting:"feDiffuseLighting",fedisplacementmap:"feDisplacementMap",fedistantlight:"feDistantLight",feflood:"feFlood",fefunca:"feFuncA",fefuncb:"feFuncB",fefuncg:"feFuncG",fefuncr:"feFuncR",fegaussianblur:"feGaussianBlur",feimage:"feImage",femerge:"feMerge",femergenode:"feMergeNode",femorphology:"feMorphology",feoffset:"feOffset",fepointlight:"fePointLight",fespecularlighting:"feSpecularLighting",fespotlight:"feSpotLight",fetile:"feTile",feturbulence:"feTurbulence",foreignobject:"foreignObject",glyphref:"glyphRef",lineargradient:"linearGradient",radialgradient:"radialGradient",textpath:"textPath"},m={[n.B]:!0,[n.BIG]:!0,[n.BLOCKQUOTE]:!0,[n.BODY]:!0,[n.BR]:!0,[n.CENTER]:!0,[n.CODE]:!0,[n.DD]:!0,[n.DIV]:!0,[n.DL]:!0,[n.DT]:!0,[n.EM]:!0,[n.EMBED]:!0,[n.H1]:!0,[n.H2]:!0,[n.H3]:!0,[n.H4]:!0,[n.H5]:!0,[n.H6]:!0,[n.HEAD]:!0,[n.HR]:!0,[n.I]:!0,[n.IMG]:!0,[n.LI]:!0,[n.LISTING]:!0,[n.MENU]:!0,[n.META]:!0,[n.NOBR]:!0,[n.OL]:!0,[n.P]:!0,[n.PRE]:!0,[n.RUBY]:!0,[n.S]:!0,[n.SMALL]:!0,[n.SPAN]:!0,[n.STRONG]:!0,[n.STRIKE]:!0,[n.SUB]:!0,[n.SUP]:!0,[n.TABLE]:!0,[n.TT]:!0,[n.U]:!0,[n.UL]:!0,[n.VAR]:!0};function c(e,t){return t===a.MATHML&&(e===n.MI||e===n.MO||e===n.MN||e===n.MS||e===n.MTEXT)}function u(e,t,s){if(t===a.MATHML&&e===n.ANNOTATION_XML)for(let n=0;n<s.length;n++)if(s[n].name===r.ENCODING){const e=s[n].value.toLowerCase();return e===i.TEXT_HTML||e===i.APPLICATION_XML}return t===a.SVG&&(e===n.FOREIGN_OBJECT||e===n.DESC||e===n.TITLE)}exports.causesExit=function(t){const a=t.tagName;return!!(a===n.FONT&&(null!==e.getTokenAttr(t,r.COLOR)||null!==e.getTokenAttr(t,r.SIZE)||null!==e.getTokenAttr(t,r.FACE)))||m[a]},exports.adjustTokenMathMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++)if("definitionurl"===e.attrs[t].name){e.attrs[t].name="definitionURL";break}},exports.adjustTokenSVGAttrs=function(e){for(let t=0;t<e.attrs.length;t++){const n=o[e.attrs[t].name];n&&(e.attrs[t].name=n)}},exports.adjustTokenXMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++){const n=f[e.attrs[t].name];n&&(e.attrs[t].prefix=n.prefix,e.attrs[t].name=n.name,e.attrs[t].namespace=n.namespace)}},exports.adjustTokenSVGTagName=function(e){const t=p[e.tagName];t&&(e.tagName=t)},exports.isIntegrationPoint=function(e,t,n,r){return!(r&&r!==a.HTML||!u(e,t,n))||!(r&&r!==a.MATHML||!c(e,t))};
},{"../tokenizer":"RZJD","./html":"xQSA"}],"FRga":[function(require,module,exports) {
"use strict";const e=require("../tokenizer"),t=require("./open-element-stack"),n=require("./formatting-element-list"),o=require("../extensions/location-info/parser-mixin"),s=require("../extensions/error-reporting/parser-mixin"),T=require("../utils/mixin"),E=require("../tree-adapters/default"),r=require("../utils/merge-options"),i=require("../common/doctype"),a=require("../common/foreign-content"),p=require("../common/error-codes"),m=require("../common/unicode"),l=require("../common/html"),c=l.TAG_NAMES,_=l.NAMESPACES,A=l.ATTRS,O={scriptingEnabled:!0,sourceCodeLocationInfo:!1,onParseError:null,treeAdapter:E},N="hidden",C=8,d=3,M="INITIAL_MODE",h="BEFORE_HTML_MODE",R="BEFORE_HEAD_MODE",g="IN_HEAD_MODE",u="IN_HEAD_NO_SCRIPT_MODE",L="AFTER_HEAD_MODE",I="IN_BODY_MODE",P="TEXT_MODE",f="IN_TABLE_MODE",H="IN_TABLE_TEXT_MODE",S="IN_CAPTION_MODE",k="IN_COLUMN_GROUP_MODE",D="IN_TABLE_BODY_MODE",K="IN_ROW_MODE",F="IN_CELL_MODE",B="IN_SELECT_MODE",U="IN_SELECT_IN_TABLE_MODE",b="IN_TEMPLATE_MODE",G="AFTER_BODY_MODE",Y="IN_FRAMESET_MODE",x="AFTER_FRAMESET_MODE",v="AFTER_AFTER_BODY_MODE",y="AFTER_AFTER_FRAMESET_MODE",W={[c.TR]:K,[c.TBODY]:D,[c.THEAD]:D,[c.TFOOT]:D,[c.CAPTION]:S,[c.COLGROUP]:k,[c.TABLE]:f,[c.BODY]:I,[c.FRAMESET]:Y},w={[c.CAPTION]:f,[c.COLGROUP]:f,[c.TBODY]:f,[c.TFOOT]:f,[c.THEAD]:f,[c.COL]:k,[c.TR]:D,[c.TD]:K,[c.TH]:K},X={[M]:{[e.CHARACTER_TOKEN]:ie,[e.NULL_CHARACTER_TOKEN]:ie,[e.WHITESPACE_CHARACTER_TOKEN]:ee,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:re,[e.START_TAG_TOKEN]:ie,[e.END_TAG_TOKEN]:ie,[e.EOF_TOKEN]:ie},[h]:{[e.CHARACTER_TOKEN]:me,[e.NULL_CHARACTER_TOKEN]:me,[e.WHITESPACE_CHARACTER_TOKEN]:ee,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:ae,[e.END_TAG_TOKEN]:pe,[e.EOF_TOKEN]:me},[R]:{[e.CHARACTER_TOKEN]:_e,[e.NULL_CHARACTER_TOKEN]:_e,[e.WHITESPACE_CHARACTER_TOKEN]:ee,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:te,[e.START_TAG_TOKEN]:le,[e.END_TAG_TOKEN]:ce,[e.EOF_TOKEN]:_e},[g]:{[e.CHARACTER_TOKEN]:Ne,[e.NULL_CHARACTER_TOKEN]:Ne,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:te,[e.START_TAG_TOKEN]:Ae,[e.END_TAG_TOKEN]:Oe,[e.EOF_TOKEN]:Ne},[u]:{[e.CHARACTER_TOKEN]:Me,[e.NULL_CHARACTER_TOKEN]:Me,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:te,[e.START_TAG_TOKEN]:Ce,[e.END_TAG_TOKEN]:de,[e.EOF_TOKEN]:Me},[L]:{[e.CHARACTER_TOKEN]:ge,[e.NULL_CHARACTER_TOKEN]:ge,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:te,[e.START_TAG_TOKEN]:he,[e.END_TAG_TOKEN]:Re,[e.EOF_TOKEN]:ge},[I]:{[e.CHARACTER_TOKEN]:Le,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:st,[e.END_TAG_TOKEN]:Ot,[e.EOF_TOKEN]:Nt},[P]:{[e.CHARACTER_TOKEN]:Te,[e.NULL_CHARACTER_TOKEN]:Te,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ee,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:ee,[e.END_TAG_TOKEN]:Ct,[e.EOF_TOKEN]:dt},[f]:{[e.CHARACTER_TOKEN]:Mt,[e.NULL_CHARACTER_TOKEN]:Mt,[e.WHITESPACE_CHARACTER_TOKEN]:Mt,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:Ht,[e.END_TAG_TOKEN]:St,[e.EOF_TOKEN]:Nt},[H]:{[e.CHARACTER_TOKEN]:Kt,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:Dt,[e.COMMENT_TOKEN]:Ft,[e.DOCTYPE_TOKEN]:Ft,[e.START_TAG_TOKEN]:Ft,[e.END_TAG_TOKEN]:Ft,[e.EOF_TOKEN]:Ft},[S]:{[e.CHARACTER_TOKEN]:Le,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:Bt,[e.END_TAG_TOKEN]:Ut,[e.EOF_TOKEN]:Nt},[k]:{[e.CHARACTER_TOKEN]:Yt,[e.NULL_CHARACTER_TOKEN]:Yt,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:bt,[e.END_TAG_TOKEN]:Gt,[e.EOF_TOKEN]:Nt},[D]:{[e.CHARACTER_TOKEN]:Mt,[e.NULL_CHARACTER_TOKEN]:Mt,[e.WHITESPACE_CHARACTER_TOKEN]:Mt,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:xt,[e.END_TAG_TOKEN]:vt,[e.EOF_TOKEN]:Nt},[K]:{[e.CHARACTER_TOKEN]:Mt,[e.NULL_CHARACTER_TOKEN]:Mt,[e.WHITESPACE_CHARACTER_TOKEN]:Mt,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:yt,[e.END_TAG_TOKEN]:Wt,[e.EOF_TOKEN]:Nt},[F]:{[e.CHARACTER_TOKEN]:Le,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:wt,[e.END_TAG_TOKEN]:Xt,[e.EOF_TOKEN]:Nt},[B]:{[e.CHARACTER_TOKEN]:Te,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:zt,[e.END_TAG_TOKEN]:Vt,[e.EOF_TOKEN]:Nt},[U]:{[e.CHARACTER_TOKEN]:Te,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:qt,[e.END_TAG_TOKEN]:jt,[e.EOF_TOKEN]:Nt},[b]:{[e.CHARACTER_TOKEN]:Le,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:Qt,[e.END_TAG_TOKEN]:Jt,[e.EOF_TOKEN]:Zt},[G]:{[e.CHARACTER_TOKEN]:tn,[e.NULL_CHARACTER_TOKEN]:tn,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:oe,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:$t,[e.END_TAG_TOKEN]:en,[e.EOF_TOKEN]:Ee},[Y]:{[e.CHARACTER_TOKEN]:ee,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:nn,[e.END_TAG_TOKEN]:on,[e.EOF_TOKEN]:Ee},[x]:{[e.CHARACTER_TOKEN]:ee,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:Te,[e.COMMENT_TOKEN]:ne,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:sn,[e.END_TAG_TOKEN]:Tn,[e.EOF_TOKEN]:Ee},[v]:{[e.CHARACTER_TOKEN]:rn,[e.NULL_CHARACTER_TOKEN]:rn,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:se,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:En,[e.END_TAG_TOKEN]:rn,[e.EOF_TOKEN]:Ee},[y]:{[e.CHARACTER_TOKEN]:ee,[e.NULL_CHARACTER_TOKEN]:ee,[e.WHITESPACE_CHARACTER_TOKEN]:ue,[e.COMMENT_TOKEN]:se,[e.DOCTYPE_TOKEN]:ee,[e.START_TAG_TOKEN]:an,[e.END_TAG_TOKEN]:ee,[e.EOF_TOKEN]:Ee}};class z{constructor(e){this.options=r(O,e),this.treeAdapter=this.options.treeAdapter,this.pendingScript=null,this.options.sourceCodeLocationInfo&&T.install(this,o),this.options.onParseError&&T.install(this,s,{onParseError:this.options.onParseError})}parse(e){const t=this.treeAdapter.createDocument();return this._bootstrap(t,null),this.tokenizer.write(e,!0),this._runParsingLoop(null),t}parseFragment(e,t){t||(t=this.treeAdapter.createElement(c.TEMPLATE,_.HTML,[]));const n=this.treeAdapter.createElement("documentmock",_.HTML,[]);this._bootstrap(n,t),this.treeAdapter.getTagName(t)===c.TEMPLATE&&this._pushTmplInsertionMode(b),this._initTokenizerForFragmentParsing(),this._insertFakeRootElement(),this._resetInsertionMode(),this._findFormInFragmentContext(),this.tokenizer.write(e,!0),this._runParsingLoop(null);const o=this.treeAdapter.getFirstChild(n),s=this.treeAdapter.createDocumentFragment();return this._adoptNodes(o,s),s}_bootstrap(o,s){this.tokenizer=new e(this.options),this.stopped=!1,this.insertionMode=M,this.originalInsertionMode="",this.document=o,this.fragmentContext=s,this.headElement=null,this.formElement=null,this.openElements=new t(this.document,this.treeAdapter),this.activeFormattingElements=new n(this.treeAdapter),this.tmplInsertionModeStack=[],this.tmplInsertionModeStackTop=-1,this.currentTmplInsertionMode=null,this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1}_err(){}_runParsingLoop(t){for(;!this.stopped;){this._setupTokenizerCDATAMode();const n=this.tokenizer.getNextToken();if(n.type===e.HIBERNATION_TOKEN)break;if(this.skipNextNewLine&&(this.skipNextNewLine=!1,n.type===e.WHITESPACE_CHARACTER_TOKEN&&"\n"===n.chars[0])){if(1===n.chars.length)continue;n.chars=n.chars.substr(1)}if(this._processInputToken(n),t&&this.pendingScript)break}}runParsingLoopForCurrentChunk(e,t){if(this._runParsingLoop(t),t&&this.pendingScript){const e=this.pendingScript;return this.pendingScript=null,void t(e)}e&&e()}_setupTokenizerCDATAMode(){const e=this._getAdjustedCurrentElement();this.tokenizer.allowCDATA=e&&e!==this.document&&this.treeAdapter.getNamespaceURI(e)!==_.HTML&&!this._isIntegrationPoint(e)}_switchToTextParsing(e,t){this._insertElement(e,_.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=P}switchToPlaintextParsing(){this.insertionMode=P,this.originalInsertionMode=I,this.tokenizer.state=e.MODE.PLAINTEXT}_getAdjustedCurrentElement(){return 0===this.openElements.stackTop&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;do{if(this.treeAdapter.getTagName(e)===c.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}while(e)}_initTokenizerForFragmentParsing(){if(this.treeAdapter.getNamespaceURI(this.fragmentContext)===_.HTML){const t=this.treeAdapter.getTagName(this.fragmentContext);t===c.TITLE||t===c.TEXTAREA?this.tokenizer.state=e.MODE.RCDATA:t===c.STYLE||t===c.XMP||t===c.IFRAME||t===c.NOEMBED||t===c.NOFRAMES||t===c.NOSCRIPT?this.tokenizer.state=e.MODE.RAWTEXT:t===c.SCRIPT?this.tokenizer.state=e.MODE.SCRIPT_DATA:t===c.PLAINTEXT&&(this.tokenizer.state=e.MODE.PLAINTEXT)}}_setDocumentType(e){const t=e.name||"",n=e.publicId||"",o=e.systemId||"";this.treeAdapter.setDocumentType(this.document,t,n,o)}_attachElementToTree(e){if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{const t=this.openElements.currentTmplContent||this.openElements.current;this.treeAdapter.appendChild(t,e)}}_appendElement(e,t){const n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n)}_insertElement(e,t){const n=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(n),this.openElements.push(n)}_insertFakeElement(e){const t=this.treeAdapter.createElement(e,_.HTML,[]);this._attachElementToTree(t),this.openElements.push(t)}_insertTemplate(e){const t=this.treeAdapter.createElement(e.tagName,_.HTML,e.attrs),n=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,n),this._attachElementToTree(t),this.openElements.push(t)}_insertFakeRootElement(){const e=this.treeAdapter.createElement(c.HTML,_.HTML,[]);this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e)}_appendCommentNode(e,t){const n=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,n)}_insertCharacters(e){if(this._shouldFosterParentOnInsertion())this._fosterParentText(e.chars);else{const t=this.openElements.currentTmplContent||this.openElements.current;this.treeAdapter.insertText(t,e.chars)}}_adoptNodes(e,t){for(let n=this.treeAdapter.getFirstChild(e);n;n=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(n),this.treeAdapter.appendChild(t,n)}_shouldProcessTokenInForeignContent(t){const n=this._getAdjustedCurrentElement();if(!n||n===this.document)return!1;const o=this.treeAdapter.getNamespaceURI(n);if(o===_.HTML)return!1;if(this.treeAdapter.getTagName(n)===c.ANNOTATION_XML&&o===_.MATHML&&t.type===e.START_TAG_TOKEN&&t.tagName===c.SVG)return!1;const s=t.type===e.CHARACTER_TOKEN||t.type===e.NULL_CHARACTER_TOKEN||t.type===e.WHITESPACE_CHARACTER_TOKEN;return(!(t.type===e.START_TAG_TOKEN&&t.tagName!==c.MGLYPH&&t.tagName!==c.MALIGNMARK)&&!s||!this._isIntegrationPoint(n,_.MATHML))&&((t.type!==e.START_TAG_TOKEN&&!s||!this._isIntegrationPoint(n,_.HTML))&&t.type!==e.EOF_TOKEN)}_processToken(e){X[this.insertionMode][e.type](this,e)}_processTokenInBodyMode(e){X[I][e.type](this,e)}_processTokenInForeignContent(t){t.type===e.CHARACTER_TOKEN?mn(this,t):t.type===e.NULL_CHARACTER_TOKEN?pn(this,t):t.type===e.WHITESPACE_CHARACTER_TOKEN?Te(this,t):t.type===e.COMMENT_TOKEN?ne(this,t):t.type===e.START_TAG_TOKEN?ln(this,t):t.type===e.END_TAG_TOKEN&&cn(this,t)}_processInputToken(t){this._shouldProcessTokenInForeignContent(t)?this._processTokenInForeignContent(t):this._processToken(t),t.type===e.START_TAG_TOKEN&&t.selfClosing&&!t.ackSelfClosing&&this._err(p.nonVoidHtmlElementStartTagWithTrailingSolidus)}_isIntegrationPoint(e,t){const n=this.treeAdapter.getTagName(e),o=this.treeAdapter.getNamespaceURI(e),s=this.treeAdapter.getAttrList(e);return a.isIntegrationPoint(n,o,s,t)}_reconstructActiveFormattingElements(){const e=this.activeFormattingElements.length;if(e){let t=e,o=null;do{if(t--,(o=this.activeFormattingElements.entries[t]).type===n.MARKER_ENTRY||this.openElements.contains(o.element)){t++;break}}while(t>0);for(let n=t;n<e;n++)o=this.activeFormattingElements.entries[n],this._insertElement(o.token,this.treeAdapter.getNamespaceURI(o.element)),o.element=this.openElements.current}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=K}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(c.P),this.openElements.popUntilTagNamePopped(c.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop,t=!1;e>=0;e--){let n=this.openElements.items[e];0===e&&(t=!0,this.fragmentContext&&(n=this.fragmentContext));const o=this.treeAdapter.getTagName(n),s=W[o];if(s){this.insertionMode=s;break}if(!(t||o!==c.TD&&o!==c.TH)){this.insertionMode=F;break}if(!t&&o===c.HEAD){this.insertionMode=g;break}if(o===c.SELECT){this._resetInsertionModeForSelect(e);break}if(o===c.TEMPLATE){this.insertionMode=this.currentTmplInsertionMode;break}if(o===c.HTML){this.insertionMode=this.headElement?L:R;break}if(t){this.insertionMode=I;break}}}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){const e=this.openElements.items[t],n=this.treeAdapter.getTagName(e);if(n===c.TEMPLATE)break;if(n===c.TABLE)return void(this.insertionMode=U)}this.insertionMode=B}_pushTmplInsertionMode(e){this.tmplInsertionModeStack.push(e),this.tmplInsertionModeStackTop++,this.currentTmplInsertionMode=e}_popTmplInsertionMode(){this.tmplInsertionModeStack.pop(),this.tmplInsertionModeStackTop--,this.currentTmplInsertionMode=this.tmplInsertionModeStack[this.tmplInsertionModeStackTop]}_isElementCausesFosterParenting(e){const t=this.treeAdapter.getTagName(e);return t===c.TABLE||t===c.TBODY||t===c.TFOOT||t===c.THEAD||t===c.TR}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this._isElementCausesFosterParenting(this.openElements.current)}_findFosterParentingLocation(){const e={parent:null,beforeElement:null};for(let t=this.openElements.stackTop;t>=0;t--){const n=this.openElements.items[t],o=this.treeAdapter.getTagName(n),s=this.treeAdapter.getNamespaceURI(n);if(o===c.TEMPLATE&&s===_.HTML){e.parent=this.treeAdapter.getTemplateContent(n);break}if(o===c.TABLE){e.parent=this.treeAdapter.getParentNode(n),e.parent?e.beforeElement=n:e.parent=this.openElements.items[t-1];break}}return e.parent||(e.parent=this.openElements.items[0]),e}_fosterParentElement(e){const t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_fosterParentText(e){const t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertTextBefore(t.parent,e,t.beforeElement):this.treeAdapter.insertText(t.parent,e)}_isSpecialElement(e){const t=this.treeAdapter.getTagName(e),n=this.treeAdapter.getNamespaceURI(e);return l.SPECIAL_ELEMENTS[n][t]}}function V(e,t){let n=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return n?e.openElements.contains(n.element)?e.openElements.hasInScope(t.tagName)||(n=null):(e.activeFormattingElements.removeEntry(n),n=null):At(e,t),n}function q(e,t){let n=null;for(let o=e.openElements.stackTop;o>=0;o--){const s=e.openElements.items[o];if(s===t.element)break;e._isSpecialElement(s)&&(n=s)}return n||(e.openElements.popUntilElementPopped(t.element),e.activeFormattingElements.removeEntry(t)),n}function j(e,t,n){let o=t,s=e.openElements.getCommonAncestor(t);for(let T=0,E=s;E!==n;T++,E=s){s=e.openElements.getCommonAncestor(E);const n=e.activeFormattingElements.getElementEntry(E),r=n&&T>=d;!n||r?(r&&e.activeFormattingElements.removeEntry(n),e.openElements.remove(E)):(E=Q(e,n),o===t&&(e.activeFormattingElements.bookmark=n),e.treeAdapter.detachNode(o),e.treeAdapter.appendChild(E,o),o=E)}return o}function Q(e,t){const n=e.treeAdapter.getNamespaceURI(t.element),o=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,o),t.element=o,o}function J(e,t,n){if(e._isElementCausesFosterParenting(t))e._fosterParentElement(n);else{const o=e.treeAdapter.getTagName(t),s=e.treeAdapter.getNamespaceURI(t);o===c.TEMPLATE&&s===_.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n)}}function Z(e,t,n){const o=e.treeAdapter.getNamespaceURI(n.element),s=n.token,T=e.treeAdapter.createElement(s.tagName,o,s.attrs);e._adoptNodes(t,T),e.treeAdapter.appendChild(t,T),e.activeFormattingElements.insertElementAfterBookmark(T,n.token),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,T)}function $(e,t){let n;for(let o=0;o<C&&(n=V(e,t,n));o++){const t=q(e,n);if(!t)break;e.activeFormattingElements.bookmark=n;const o=j(e,t,n.element),s=e.openElements.getCommonAncestor(n.element);e.treeAdapter.detachNode(o),J(e,s,o),Z(e,t,n)}}function ee(){}function te(e){e._err(p.misplacedDoctype)}function ne(e,t){e._appendCommentNode(t,e.openElements.currentTmplContent||e.openElements.current)}function oe(e,t){e._appendCommentNode(t,e.openElements.items[0])}function se(e,t){e._appendCommentNode(t,e.document)}function Te(e,t){e._insertCharacters(t)}function Ee(e){e.stopped=!0}function re(e,t){e._setDocumentType(t);const n=t.forceQuirks?l.DOCUMENT_MODE.QUIRKS:i.getDocumentMode(t);i.isConforming(t)||e._err(p.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=h}function ie(e,t){e._err(p.missingDoctype,{beforeToken:!0}),e.treeAdapter.setDocumentMode(e.document,l.DOCUMENT_MODE.QUIRKS),e.insertionMode=h,e._processToken(t)}function ae(e,t){t.tagName===c.HTML?(e._insertElement(t,_.HTML),e.insertionMode=R):me(e,t)}function pe(e,t){const n=t.tagName;n!==c.HTML&&n!==c.HEAD&&n!==c.BODY&&n!==c.BR||me(e,t)}function me(e,t){e._insertFakeRootElement(),e.insertionMode=R,e._processToken(t)}function le(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.HEAD?(e._insertElement(t,_.HTML),e.headElement=e.openElements.current,e.insertionMode=g):_e(e,t)}function ce(e,t){const n=t.tagName;n===c.HEAD||n===c.BODY||n===c.HTML||n===c.BR?_e(e,t):e._err(p.endTagWithoutMatchingOpenElement)}function _e(e,t){e._insertFakeElement(c.HEAD),e.headElement=e.openElements.current,e.insertionMode=g,e._processToken(t)}function Ae(t,n){const o=n.tagName;o===c.HTML?st(t,n):o===c.BASE||o===c.BASEFONT||o===c.BGSOUND||o===c.LINK||o===c.META?(t._appendElement(n,_.HTML),n.ackSelfClosing=!0):o===c.TITLE?t._switchToTextParsing(n,e.MODE.RCDATA):o===c.NOSCRIPT?t.options.scriptingEnabled?t._switchToTextParsing(n,e.MODE.RAWTEXT):(t._insertElement(n,_.HTML),t.insertionMode=u):o===c.NOFRAMES||o===c.STYLE?t._switchToTextParsing(n,e.MODE.RAWTEXT):o===c.SCRIPT?t._switchToTextParsing(n,e.MODE.SCRIPT_DATA):o===c.TEMPLATE?(t._insertTemplate(n,_.HTML),t.activeFormattingElements.insertMarker(),t.framesetOk=!1,t.insertionMode=b,t._pushTmplInsertionMode(b)):o===c.HEAD?t._err(p.misplacedStartTagForHeadElement):Ne(t,n)}function Oe(e,t){const n=t.tagName;n===c.HEAD?(e.openElements.pop(),e.insertionMode=L):n===c.BODY||n===c.BR||n===c.HTML?Ne(e,t):n===c.TEMPLATE&&e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagName!==c.TEMPLATE&&e._err(p.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(c.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode()):e._err(p.endTagWithoutMatchingOpenElement)}function Ne(e,t){e.openElements.pop(),e.insertionMode=L,e._processToken(t)}function Ce(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.BASEFONT||n===c.BGSOUND||n===c.HEAD||n===c.LINK||n===c.META||n===c.NOFRAMES||n===c.STYLE?Ae(e,t):n===c.NOSCRIPT?e._err(p.nestedNoscriptInHead):Me(e,t)}function de(e,t){const n=t.tagName;n===c.NOSCRIPT?(e.openElements.pop(),e.insertionMode=g):n===c.BR?Me(e,t):e._err(p.endTagWithoutMatchingOpenElement)}function Me(t,n){const o=n.type===e.EOF_TOKEN?p.openElementsLeftAfterEof:p.disallowedContentInNoscriptInHead;t._err(o),t.openElements.pop(),t.insertionMode=g,t._processToken(n)}function he(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.BODY?(e._insertElement(t,_.HTML),e.framesetOk=!1,e.insertionMode=I):n===c.FRAMESET?(e._insertElement(t,_.HTML),e.insertionMode=Y):n===c.BASE||n===c.BASEFONT||n===c.BGSOUND||n===c.LINK||n===c.META||n===c.NOFRAMES||n===c.SCRIPT||n===c.STYLE||n===c.TEMPLATE||n===c.TITLE?(e._err(p.abandonedHeadElementChild),e.openElements.push(e.headElement),Ae(e,t),e.openElements.remove(e.headElement)):n===c.HEAD?e._err(p.misplacedStartTagForHeadElement):ge(e,t)}function Re(e,t){const n=t.tagName;n===c.BODY||n===c.HTML||n===c.BR?ge(e,t):n===c.TEMPLATE?Oe(e,t):e._err(p.endTagWithoutMatchingOpenElement)}function ge(e,t){e._insertFakeElement(c.BODY),e.insertionMode=I,e._processToken(t)}function ue(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function Le(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function Ie(e,t){0===e.openElements.tmplCount&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function Pe(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&0===e.openElements.tmplCount&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs))}function fe(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,_.HTML),e.insertionMode=Y)}function He(e,t){e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML)}function Se(e,t){e.openElements.hasInButtonScope(c.P)&&e._closePElement();const n=e.openElements.currentTagName;n!==c.H1&&n!==c.H2&&n!==c.H3&&n!==c.H4&&n!==c.H5&&n!==c.H6||e.openElements.pop(),e._insertElement(t,_.HTML)}function ke(e,t){e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function De(e,t){const n=e.openElements.tmplCount>0;e.formElement&&!n||(e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML),n||(e.formElement=e.openElements.current))}function Ke(e,t){e.framesetOk=!1;const n=t.tagName;for(let o=e.openElements.stackTop;o>=0;o--){const t=e.openElements.items[o],s=e.treeAdapter.getTagName(t);let T=null;if(n===c.LI&&s===c.LI?T=c.LI:n!==c.DD&&n!==c.DT||s!==c.DD&&s!==c.DT||(T=s),T){e.openElements.generateImpliedEndTagsWithExclusion(T),e.openElements.popUntilTagNamePopped(T);break}if(s!==c.ADDRESS&&s!==c.DIV&&s!==c.P&&e._isSpecialElement(t))break}e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML)}function Fe(t,n){t.openElements.hasInButtonScope(c.P)&&t._closePElement(),t._insertElement(n,_.HTML),t.tokenizer.state=e.MODE.PLAINTEXT}function Be(e,t){e.openElements.hasInScope(c.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(c.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML),e.framesetOk=!1}function Ue(e,t){const n=e.activeFormattingElements.getElementEntryInScopeWithTagName(c.A);n&&($(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function be(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Ge(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(c.NOBR)&&($(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,_.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function Ye(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function xe(e,t){e.treeAdapter.getDocumentMode(e.document)!==l.DOCUMENT_MODE.QUIRKS&&e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML),e.framesetOk=!1,e.insertionMode=f}function ve(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,_.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function ye(t,n){t._reconstructActiveFormattingElements(),t._appendElement(n,_.HTML);const o=e.getTokenAttr(n,A.TYPE);o&&o.toLowerCase()===N||(t.framesetOk=!1),n.ackSelfClosing=!0}function We(e,t){e._appendElement(t,_.HTML),t.ackSelfClosing=!0}function we(e,t){e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._appendElement(t,_.HTML),e.framesetOk=!1,e.ackSelfClosing=!0}function Xe(e,t){t.tagName=c.IMG,ve(e,t)}function ze(t,n){t._insertElement(n,_.HTML),t.skipNextNewLine=!0,t.tokenizer.state=e.MODE.RCDATA,t.originalInsertionMode=t.insertionMode,t.framesetOk=!1,t.insertionMode=P}function Ve(t,n){t.openElements.hasInButtonScope(c.P)&&t._closePElement(),t._reconstructActiveFormattingElements(),t.framesetOk=!1,t._switchToTextParsing(n,e.MODE.RAWTEXT)}function qe(t,n){t.framesetOk=!1,t._switchToTextParsing(n,e.MODE.RAWTEXT)}function je(t,n){t._switchToTextParsing(n,e.MODE.RAWTEXT)}function Qe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML),e.framesetOk=!1,e.insertionMode===f||e.insertionMode===S||e.insertionMode===D||e.insertionMode===K||e.insertionMode===F?e.insertionMode=U:e.insertionMode=B}function Je(e,t){e.openElements.currentTagName===c.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML)}function Ze(e,t){e.openElements.hasInScope(c.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,_.HTML)}function $e(e,t){e.openElements.hasInScope(c.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(c.RTC),e._insertElement(t,_.HTML)}function et(e,t){e.openElements.hasInButtonScope(c.P)&&e._closePElement(),e._insertElement(t,_.HTML)}function tt(e,t){e._reconstructActiveFormattingElements(),a.adjustTokenMathMLAttrs(t),a.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,_.MATHML):e._insertElement(t,_.MATHML),t.ackSelfClosing=!0}function nt(e,t){e._reconstructActiveFormattingElements(),a.adjustTokenSVGAttrs(t),a.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,_.SVG):e._insertElement(t,_.SVG),t.ackSelfClosing=!0}function ot(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,_.HTML)}function st(e,t){const n=t.tagName;switch(n.length){case 1:n===c.I||n===c.S||n===c.B||n===c.U?be(e,t):n===c.P?He(e,t):n===c.A?Ue(e,t):ot(e,t);break;case 2:n===c.DL||n===c.OL||n===c.UL?He(e,t):n===c.H1||n===c.H2||n===c.H3||n===c.H4||n===c.H5||n===c.H6?Se(e,t):n===c.LI||n===c.DD||n===c.DT?Ke(e,t):n===c.EM||n===c.TT?be(e,t):n===c.BR?ve(e,t):n===c.HR?we(e,t):n===c.RB?Ze(e,t):n===c.RT||n===c.RP?$e(e,t):n!==c.TH&&n!==c.TD&&n!==c.TR&&ot(e,t);break;case 3:n===c.DIV||n===c.DIR||n===c.NAV?He(e,t):n===c.PRE?ke(e,t):n===c.BIG?be(e,t):n===c.IMG||n===c.WBR?ve(e,t):n===c.XMP?Ve(e,t):n===c.SVG?nt(e,t):n===c.RTC?Ze(e,t):n!==c.COL&&ot(e,t);break;case 4:n===c.HTML?Ie(e,t):n===c.BASE||n===c.LINK||n===c.META?Ae(e,t):n===c.BODY?Pe(e,t):n===c.MAIN||n===c.MENU?He(e,t):n===c.FORM?De(e,t):n===c.CODE||n===c.FONT?be(e,t):n===c.NOBR?Ge(e,t):n===c.AREA?ve(e,t):n===c.MATH?tt(e,t):n===c.MENU?et(e,t):n!==c.HEAD&&ot(e,t);break;case 5:n===c.STYLE||n===c.TITLE?Ae(e,t):n===c.ASIDE?He(e,t):n===c.SMALL?be(e,t):n===c.TABLE?xe(e,t):n===c.EMBED?ve(e,t):n===c.INPUT?ye(e,t):n===c.PARAM||n===c.TRACK?We(e,t):n===c.IMAGE?Xe(e,t):n!==c.FRAME&&n!==c.TBODY&&n!==c.TFOOT&&n!==c.THEAD&&ot(e,t);break;case 6:n===c.SCRIPT?Ae(e,t):n===c.CENTER||n===c.FIGURE||n===c.FOOTER||n===c.HEADER||n===c.HGROUP||n===c.DIALOG?He(e,t):n===c.BUTTON?Be(e,t):n===c.STRIKE||n===c.STRONG?be(e,t):n===c.APPLET||n===c.OBJECT?Ye(e,t):n===c.KEYGEN?ve(e,t):n===c.SOURCE?We(e,t):n===c.IFRAME?qe(e,t):n===c.SELECT?Qe(e,t):n===c.OPTION?Je(e,t):ot(e,t);break;case 7:n===c.BGSOUND?Ae(e,t):n===c.DETAILS||n===c.ADDRESS||n===c.ARTICLE||n===c.SECTION||n===c.SUMMARY?He(e,t):n===c.LISTING?ke(e,t):n===c.MARQUEE?Ye(e,t):n===c.NOEMBED?je(e,t):n!==c.CAPTION&&ot(e,t);break;case 8:n===c.BASEFONT?Ae(e,t):n===c.FRAMESET?fe(e,t):n===c.FIELDSET?He(e,t):n===c.TEXTAREA?ze(e,t):n===c.TEMPLATE?Ae(e,t):n===c.NOSCRIPT?e.options.scriptingEnabled?je(e,t):ot(e,t):n===c.OPTGROUP?Je(e,t):n!==c.COLGROUP&&ot(e,t);break;case 9:n===c.PLAINTEXT?Fe(e,t):ot(e,t);break;case 10:n===c.BLOCKQUOTE||n===c.FIGCAPTION?He(e,t):ot(e,t);break;default:ot(e,t)}}function Tt(e){e.openElements.hasInScope(c.BODY)&&(e.insertionMode=G)}function Et(e,t){e.openElements.hasInScope(c.BODY)&&(e.insertionMode=G,e._processToken(t))}function rt(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n))}function it(e){const t=e.openElements.tmplCount>0,n=e.formElement;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(c.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(c.FORM):e.openElements.remove(n))}function at(e){e.openElements.hasInButtonScope(c.P)||e._insertFakeElement(c.P),e._closePElement()}function pt(e){e.openElements.hasInListItemScope(c.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(c.LI),e.openElements.popUntilTagNamePopped(c.LI))}function mt(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n))}function lt(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function ct(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker())}function _t(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(c.BR),e.openElements.pop(),e.framesetOk=!1}function At(e,t){const n=t.tagName;for(let o=e.openElements.stackTop;o>0;o--){const t=e.openElements.items[o];if(e.treeAdapter.getTagName(t)===n){e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilElementPopped(t);break}if(e._isSpecialElement(t))break}}function Ot(e,t){const n=t.tagName;switch(n.length){case 1:n===c.A||n===c.B||n===c.I||n===c.S||n===c.U?$(e,t):n===c.P?at(e,t):At(e,t);break;case 2:n===c.DL||n===c.UL||n===c.OL?rt(e,t):n===c.LI?pt(e,t):n===c.DD||n===c.DT?mt(e,t):n===c.H1||n===c.H2||n===c.H3||n===c.H4||n===c.H5||n===c.H6?lt(e,t):n===c.BR?_t(e,t):n===c.EM||n===c.TT?$(e,t):At(e,t);break;case 3:n===c.BIG?$(e,t):n===c.DIR||n===c.DIV||n===c.NAV||n===c.PRE?rt(e,t):At(e,t);break;case 4:n===c.BODY?Tt(e,t):n===c.HTML?Et(e,t):n===c.FORM?it(e,t):n===c.CODE||n===c.FONT||n===c.NOBR?$(e,t):n===c.MAIN||n===c.MENU?rt(e,t):At(e,t);break;case 5:n===c.ASIDE?rt(e,t):n===c.SMALL?$(e,t):At(e,t);break;case 6:n===c.CENTER||n===c.FIGURE||n===c.FOOTER||n===c.HEADER||n===c.HGROUP||n===c.DIALOG?rt(e,t):n===c.APPLET||n===c.OBJECT?ct(e,t):n===c.STRIKE||n===c.STRONG?$(e,t):At(e,t);break;case 7:n===c.ADDRESS||n===c.ARTICLE||n===c.DETAILS||n===c.SECTION||n===c.SUMMARY||n===c.LISTING?rt(e,t):n===c.MARQUEE?ct(e,t):At(e,t);break;case 8:n===c.FIELDSET?rt(e,t):n===c.TEMPLATE?Oe(e,t):At(e,t);break;case 10:n===c.BLOCKQUOTE||n===c.FIGCAPTION?rt(e,t):At(e,t);break;default:At(e,t)}}function Nt(e,t){e.tmplInsertionModeStackTop>-1?Zt(e,t):e.stopped=!0}function Ct(e,t){t.tagName===c.SCRIPT&&(e.pendingScript=e.openElements.current),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function dt(e,t){e._err(p.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e._processToken(t)}function Mt(e,t){const n=e.openElements.currentTagName;n===c.TABLE||n===c.TBODY||n===c.TFOOT||n===c.THEAD||n===c.TR?(e.pendingCharacterTokens=[],e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=H,e._processToken(t)):kt(e,t)}function ht(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,_.HTML),e.insertionMode=S}function Rt(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,_.HTML),e.insertionMode=k}function gt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(c.COLGROUP),e.insertionMode=k,e._processToken(t)}function ut(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,_.HTML),e.insertionMode=D}function Lt(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(c.TBODY),e.insertionMode=D,e._processToken(t)}function It(e,t){e.openElements.hasInTableScope(c.TABLE)&&(e.openElements.popUntilTagNamePopped(c.TABLE),e._resetInsertionMode(),e._processToken(t))}function Pt(t,n){const o=e.getTokenAttr(n,A.TYPE);o&&o.toLowerCase()===N?t._appendElement(n,_.HTML):kt(t,n),n.ackSelfClosing=!0}function ft(e,t){e.formElement||0!==e.openElements.tmplCount||(e._insertElement(t,_.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function Ht(e,t){const n=t.tagName;switch(n.length){case 2:n===c.TD||n===c.TH||n===c.TR?Lt(e,t):kt(e,t);break;case 3:n===c.COL?gt(e,t):kt(e,t);break;case 4:n===c.FORM?ft(e,t):kt(e,t);break;case 5:n===c.TABLE?It(e,t):n===c.STYLE?Ae(e,t):n===c.TBODY||n===c.TFOOT||n===c.THEAD?ut(e,t):n===c.INPUT?Pt(e,t):kt(e,t);break;case 6:n===c.SCRIPT?Ae(e,t):kt(e,t);break;case 7:n===c.CAPTION?ht(e,t):kt(e,t);break;case 8:n===c.COLGROUP?Rt(e,t):n===c.TEMPLATE?Ae(e,t):kt(e,t);break;default:kt(e,t)}}function St(e,t){const n=t.tagName;n===c.TABLE?e.openElements.hasInTableScope(c.TABLE)&&(e.openElements.popUntilTagNamePopped(c.TABLE),e._resetInsertionMode()):n===c.TEMPLATE?Oe(e,t):n!==c.BODY&&n!==c.CAPTION&&n!==c.COL&&n!==c.COLGROUP&&n!==c.HTML&&n!==c.TBODY&&n!==c.TD&&n!==c.TFOOT&&n!==c.TH&&n!==c.THEAD&&n!==c.TR&&kt(e,t)}function kt(e,t){const n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,e._processTokenInBodyMode(t),e.fosterParentingEnabled=n}function Dt(e,t){e.pendingCharacterTokens.push(t)}function Kt(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function Ft(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n<e.pendingCharacterTokens.length;n++)kt(e,e.pendingCharacterTokens[n]);else for(;n<e.pendingCharacterTokens.length;n++)e._insertCharacters(e.pendingCharacterTokens[n]);e.insertionMode=e.originalInsertionMode,e._processToken(t)}function Bt(e,t){const n=t.tagName;n===c.CAPTION||n===c.COL||n===c.COLGROUP||n===c.TBODY||n===c.TD||n===c.TFOOT||n===c.TH||n===c.THEAD||n===c.TR?e.openElements.hasInTableScope(c.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(c.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=f,e._processToken(t)):st(e,t)}function Ut(e,t){const n=t.tagName;n===c.CAPTION||n===c.TABLE?e.openElements.hasInTableScope(c.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(c.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=f,n===c.TABLE&&e._processToken(t)):n!==c.BODY&&n!==c.COL&&n!==c.COLGROUP&&n!==c.HTML&&n!==c.TBODY&&n!==c.TD&&n!==c.TFOOT&&n!==c.TH&&n!==c.THEAD&&n!==c.TR&&Ot(e,t)}function bt(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.COL?(e._appendElement(t,_.HTML),t.ackSelfClosing=!0):n===c.TEMPLATE?Ae(e,t):Yt(e,t)}function Gt(e,t){const n=t.tagName;n===c.COLGROUP?e.openElements.currentTagName===c.COLGROUP&&(e.openElements.pop(),e.insertionMode=f):n===c.TEMPLATE?Oe(e,t):n!==c.COL&&Yt(e,t)}function Yt(e,t){e.openElements.currentTagName===c.COLGROUP&&(e.openElements.pop(),e.insertionMode=f,e._processToken(t))}function xt(e,t){const n=t.tagName;n===c.TR?(e.openElements.clearBackToTableBodyContext(),e._insertElement(t,_.HTML),e.insertionMode=K):n===c.TH||n===c.TD?(e.openElements.clearBackToTableBodyContext(),e._insertFakeElement(c.TR),e.insertionMode=K,e._processToken(t)):n===c.CAPTION||n===c.COL||n===c.COLGROUP||n===c.TBODY||n===c.TFOOT||n===c.THEAD?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=f,e._processToken(t)):Ht(e,t)}function vt(e,t){const n=t.tagName;n===c.TBODY||n===c.TFOOT||n===c.THEAD?e.openElements.hasInTableScope(n)&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=f):n===c.TABLE?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=f,e._processToken(t)):(n!==c.BODY&&n!==c.CAPTION&&n!==c.COL&&n!==c.COLGROUP||n!==c.HTML&&n!==c.TD&&n!==c.TH&&n!==c.TR)&&St(e,t)}function yt(e,t){const n=t.tagName;n===c.TH||n===c.TD?(e.openElements.clearBackToTableRowContext(),e._insertElement(t,_.HTML),e.insertionMode=F,e.activeFormattingElements.insertMarker()):n===c.CAPTION||n===c.COL||n===c.COLGROUP||n===c.TBODY||n===c.TFOOT||n===c.THEAD||n===c.TR?e.openElements.hasInTableScope(c.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=D,e._processToken(t)):Ht(e,t)}function Wt(e,t){const n=t.tagName;n===c.TR?e.openElements.hasInTableScope(c.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=D):n===c.TABLE?e.openElements.hasInTableScope(c.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=D,e._processToken(t)):n===c.TBODY||n===c.TFOOT||n===c.THEAD?(e.openElements.hasInTableScope(n)||e.openElements.hasInTableScope(c.TR))&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=D,e._processToken(t)):(n!==c.BODY&&n!==c.CAPTION&&n!==c.COL&&n!==c.COLGROUP||n!==c.HTML&&n!==c.TD&&n!==c.TH)&&St(e,t)}function wt(e,t){const n=t.tagName;n===c.CAPTION||n===c.COL||n===c.COLGROUP||n===c.TBODY||n===c.TD||n===c.TFOOT||n===c.TH||n===c.THEAD||n===c.TR?(e.openElements.hasInTableScope(c.TD)||e.openElements.hasInTableScope(c.TH))&&(e._closeTableCell(),e._processToken(t)):st(e,t)}function Xt(e,t){const n=t.tagName;n===c.TD||n===c.TH?e.openElements.hasInTableScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=K):n===c.TABLE||n===c.TBODY||n===c.TFOOT||n===c.THEAD||n===c.TR?e.openElements.hasInTableScope(n)&&(e._closeTableCell(),e._processToken(t)):n!==c.BODY&&n!==c.CAPTION&&n!==c.COL&&n!==c.COLGROUP&&n!==c.HTML&&Ot(e,t)}function zt(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.OPTION?(e.openElements.currentTagName===c.OPTION&&e.openElements.pop(),e._insertElement(t,_.HTML)):n===c.OPTGROUP?(e.openElements.currentTagName===c.OPTION&&e.openElements.pop(),e.openElements.currentTagName===c.OPTGROUP&&e.openElements.pop(),e._insertElement(t,_.HTML)):n===c.INPUT||n===c.KEYGEN||n===c.TEXTAREA||n===c.SELECT?e.openElements.hasInSelectScope(c.SELECT)&&(e.openElements.popUntilTagNamePopped(c.SELECT),e._resetInsertionMode(),n!==c.SELECT&&e._processToken(t)):n!==c.SCRIPT&&n!==c.TEMPLATE||Ae(e,t)}function Vt(e,t){const n=t.tagName;if(n===c.OPTGROUP){const t=e.openElements.items[e.openElements.stackTop-1],n=t&&e.treeAdapter.getTagName(t);e.openElements.currentTagName===c.OPTION&&n===c.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagName===c.OPTGROUP&&e.openElements.pop()}else n===c.OPTION?e.openElements.currentTagName===c.OPTION&&e.openElements.pop():n===c.SELECT&&e.openElements.hasInSelectScope(c.SELECT)?(e.openElements.popUntilTagNamePopped(c.SELECT),e._resetInsertionMode()):n===c.TEMPLATE&&Oe(e,t)}function qt(e,t){const n=t.tagName;n===c.CAPTION||n===c.TABLE||n===c.TBODY||n===c.TFOOT||n===c.THEAD||n===c.TR||n===c.TD||n===c.TH?(e.openElements.popUntilTagNamePopped(c.SELECT),e._resetInsertionMode(),e._processToken(t)):zt(e,t)}function jt(e,t){const n=t.tagName;n===c.CAPTION||n===c.TABLE||n===c.TBODY||n===c.TFOOT||n===c.THEAD||n===c.TR||n===c.TD||n===c.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(c.SELECT),e._resetInsertionMode(),e._processToken(t)):Vt(e,t)}function Qt(e,t){const n=t.tagName;if(n===c.BASE||n===c.BASEFONT||n===c.BGSOUND||n===c.LINK||n===c.META||n===c.NOFRAMES||n===c.SCRIPT||n===c.STYLE||n===c.TEMPLATE||n===c.TITLE)Ae(e,t);else{const o=w[n]||I;e._popTmplInsertionMode(),e._pushTmplInsertionMode(o),e.insertionMode=o,e._processToken(t)}}function Jt(e,t){t.tagName===c.TEMPLATE&&Oe(e,t)}function Zt(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(c.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode(),e._processToken(t)):e.stopped=!0}function $t(e,t){t.tagName===c.HTML?st(e,t):tn(e,t)}function en(e,t){t.tagName===c.HTML?e.fragmentContext||(e.insertionMode=v):tn(e,t)}function tn(e,t){e.insertionMode=I,e._processToken(t)}function nn(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.FRAMESET?e._insertElement(t,_.HTML):n===c.FRAME?(e._appendElement(t,_.HTML),t.ackSelfClosing=!0):n===c.NOFRAMES&&Ae(e,t)}function on(e,t){t.tagName!==c.FRAMESET||e.openElements.isRootHtmlElementCurrent()||(e.openElements.pop(),e.fragmentContext||e.openElements.currentTagName===c.FRAMESET||(e.insertionMode=x))}function sn(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.NOFRAMES&&Ae(e,t)}function Tn(e,t){t.tagName===c.HTML&&(e.insertionMode=y)}function En(e,t){t.tagName===c.HTML?st(e,t):rn(e,t)}function rn(e,t){e.insertionMode=I,e._processToken(t)}function an(e,t){const n=t.tagName;n===c.HTML?st(e,t):n===c.NOFRAMES&&Ae(e,t)}function pn(e,t){t.chars=m.REPLACEMENT_CHARACTER,e._insertCharacters(t)}function mn(e,t){e._insertCharacters(t),e.framesetOk=!1}function ln(e,t){if(a.causesExit(t)&&!e.fragmentContext){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==_.HTML&&!e._isIntegrationPoint(e.openElements.current);)e.openElements.pop();e._processToken(t)}else{const n=e._getAdjustedCurrentElement(),o=e.treeAdapter.getNamespaceURI(n);o===_.MATHML?a.adjustTokenMathMLAttrs(t):o===_.SVG&&(a.adjustTokenSVGTagName(t),a.adjustTokenSVGAttrs(t)),a.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,o):e._insertElement(t,o),t.ackSelfClosing=!0}}function cn(e,t){for(let n=e.openElements.stackTop;n>0;n--){const o=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(o)===_.HTML){e._processToken(t);break}if(e.treeAdapter.getTagName(o).toLowerCase()===t.tagName){e.openElements.popUntilElementPopped(o);break}}}module.exports=z;
},{"../tokenizer":"RZJD","./open-element-stack":"Un3j","./formatting-element-list":"Ibiy","../extensions/location-info/parser-mixin":"pVal","../extensions/error-reporting/parser-mixin":"mXnz","../utils/mixin":"db2d","../tree-adapters/default":"03qh","../utils/merge-options":"BnsS","../common/doctype":"aiHD","../common/foreign-content":"8kkr","../common/error-codes":"I0i7","../common/unicode":"DZsD","../common/html":"xQSA"}],"Jg8g":[function(require,module,exports) {
"use strict";const e=require("../tree-adapters/default"),t=require("../utils/merge-options"),s=require("../common/doctype"),i=require("../common/html"),r=i.TAG_NAMES,a=i.NAMESPACES,h={treeAdapter:e},l=/&/g,n=/\u00a0/g,o=/"/g,m=/</g,d=/>/g;class p{constructor(e,s){this.options=t(h,s),this.treeAdapter=this.options.treeAdapter,this.html="",this.startNode=e}serialize(){return this._serializeChildNodes(this.startNode),this.html}_serializeChildNodes(e){const t=this.treeAdapter.getChildNodes(e);if(t)for(let s=0,i=t.length;s<i;s++){const e=t[s];this.treeAdapter.isElementNode(e)?this._serializeElement(e):this.treeAdapter.isTextNode(e)?this._serializeTextNode(e):this.treeAdapter.isCommentNode(e)?this._serializeCommentNode(e):this.treeAdapter.isDocumentTypeNode(e)&&this._serializeDocumentTypeNode(e)}}_serializeElement(e){const t=this.treeAdapter.getTagName(e),s=this.treeAdapter.getNamespaceURI(e);if(this.html+="<"+t,this._serializeAttributes(e),this.html+=">",t!==r.AREA&&t!==r.BASE&&t!==r.BASEFONT&&t!==r.BGSOUND&&t!==r.BR&&t!==r.COL&&t!==r.EMBED&&t!==r.FRAME&&t!==r.HR&&t!==r.IMG&&t!==r.INPUT&&t!==r.KEYGEN&&t!==r.LINK&&t!==r.META&&t!==r.PARAM&&t!==r.SOURCE&&t!==r.TRACK&&t!==r.WBR){const i=t===r.TEMPLATE&&s===a.HTML?this.treeAdapter.getTemplateContent(e):e;this._serializeChildNodes(i),this.html+="</"+t+">"}}_serializeAttributes(e){const t=this.treeAdapter.getAttrList(e);for(let s=0,i=t.length;s<i;s++){const e=t[s],i=p.escapeString(e.value,!0);this.html+=" ",e.namespace?e.namespace===a.XML?this.html+="xml:"+e.name:e.namespace===a.XMLNS?("xmlns"!==e.name&&(this.html+="xmlns:"),this.html+=e.name):e.namespace===a.XLINK?this.html+="xlink:"+e.name:this.html+=e.namespace+":"+e.name:this.html+=e.name,this.html+='="'+i+'"'}}_serializeTextNode(e){const t=this.treeAdapter.getTextNodeContent(e),s=this.treeAdapter.getParentNode(e);let i=void 0;s&&this.treeAdapter.isElementNode(s)&&(i=this.treeAdapter.getTagName(s)),i===r.STYLE||i===r.SCRIPT||i===r.XMP||i===r.IFRAME||i===r.NOEMBED||i===r.NOFRAMES||i===r.PLAINTEXT||i===r.NOSCRIPT?this.html+=t:this.html+=p.escapeString(t,!1)}_serializeCommentNode(e){this.html+="\x3c!--"+this.treeAdapter.getCommentNodeContent(e)+"--\x3e"}_serializeDocumentTypeNode(e){const t=this.treeAdapter.getDocumentTypeNodeName(e);this.html+="<"+s.serializeContent(t,null,null)+">"}}p.escapeString=function(e,t){return e=e.replace(l,"&").replace(n," "),e=t?e.replace(o,"""):e.replace(m,"<").replace(d,">")},module.exports=p;
},{"../tree-adapters/default":"03qh","../utils/merge-options":"BnsS","../common/doctype":"aiHD","../common/html":"xQSA"}],"Focm":[function(require,module,exports) {
"use strict";const e=require("./parser"),r=require("./serializer");exports.parse=function(r,n){return new e(n).parse(r)},exports.parseFragment=function(r,n,t){return"string"==typeof r&&(t=n,n=r,r=null),new e(t).parseFragment(n,r)},exports.serialize=function(e,n){return new r(e,n).serialize()};
},{"./parser":"FRga","./serializer":"Jg8g"}]},{},["Focm"], null)
window.parse5 = module.exports;
})();