index.cjs 315 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848
  1. /*!
  2. Stencil Mock Doc (CommonJS) v2.18.1 | MIT Licensed | https://stenciljs.com
  3. */
  4. var mockDoc = (function(exports) {
  5. 'use strict';
  6. const CONTENT_REF_ID = 'r';
  7. const ORG_LOCATION_ID = 'o';
  8. const SLOT_NODE_ID = 's';
  9. const TEXT_NODE_ID = 't';
  10. const XLINK_NS = 'http://www.w3.org/1999/xlink';
  11. const attrHandler = {
  12. get(obj, prop) {
  13. if (prop in obj) {
  14. return obj[prop];
  15. }
  16. if (typeof prop !== 'symbol' && !isNaN(prop)) {
  17. return obj.__items[prop];
  18. }
  19. return undefined;
  20. },
  21. };
  22. const createAttributeProxy = (caseInsensitive) => new Proxy(new MockAttributeMap(caseInsensitive), attrHandler);
  23. class MockAttributeMap {
  24. constructor(caseInsensitive = false) {
  25. this.caseInsensitive = caseInsensitive;
  26. this.__items = [];
  27. }
  28. get length() {
  29. return this.__items.length;
  30. }
  31. item(index) {
  32. return this.__items[index] || null;
  33. }
  34. setNamedItem(attr) {
  35. attr.namespaceURI = null;
  36. this.setNamedItemNS(attr);
  37. }
  38. setNamedItemNS(attr) {
  39. if (attr != null && attr.value != null) {
  40. attr.value = String(attr.value);
  41. }
  42. const existingAttr = this.__items.find((a) => a.name === attr.name && a.namespaceURI === attr.namespaceURI);
  43. if (existingAttr != null) {
  44. existingAttr.value = attr.value;
  45. }
  46. else {
  47. this.__items.push(attr);
  48. }
  49. }
  50. getNamedItem(attrName) {
  51. if (this.caseInsensitive) {
  52. attrName = attrName.toLowerCase();
  53. }
  54. return this.getNamedItemNS(null, attrName);
  55. }
  56. getNamedItemNS(namespaceURI, attrName) {
  57. namespaceURI = getNamespaceURI(namespaceURI);
  58. return (this.__items.find((attr) => attr.name === attrName && getNamespaceURI(attr.namespaceURI) === namespaceURI) || null);
  59. }
  60. removeNamedItem(attr) {
  61. this.removeNamedItemNS(attr);
  62. }
  63. removeNamedItemNS(attr) {
  64. for (let i = 0, ii = this.__items.length; i < ii; i++) {
  65. if (this.__items[i].name === attr.name && this.__items[i].namespaceURI === attr.namespaceURI) {
  66. this.__items.splice(i, 1);
  67. break;
  68. }
  69. }
  70. }
  71. [Symbol.iterator]() {
  72. let i = 0;
  73. return {
  74. next: () => ({
  75. done: i === this.length,
  76. value: this.item(i++),
  77. }),
  78. };
  79. }
  80. get [Symbol.toStringTag]() {
  81. return 'MockAttributeMap';
  82. }
  83. }
  84. function getNamespaceURI(namespaceURI) {
  85. return namespaceURI === XLINK_NS ? null : namespaceURI;
  86. }
  87. function cloneAttributes(srcAttrs, sortByName = false) {
  88. const dstAttrs = new MockAttributeMap(srcAttrs.caseInsensitive);
  89. if (srcAttrs != null) {
  90. const attrLen = srcAttrs.length;
  91. if (sortByName && attrLen > 1) {
  92. const sortedAttrs = [];
  93. for (let i = 0; i < attrLen; i++) {
  94. const srcAttr = srcAttrs.item(i);
  95. const dstAttr = new MockAttr(srcAttr.name, srcAttr.value, srcAttr.namespaceURI);
  96. sortedAttrs.push(dstAttr);
  97. }
  98. sortedAttrs.sort(sortAttributes).forEach((attr) => {
  99. dstAttrs.setNamedItemNS(attr);
  100. });
  101. }
  102. else {
  103. for (let i = 0; i < attrLen; i++) {
  104. const srcAttr = srcAttrs.item(i);
  105. const dstAttr = new MockAttr(srcAttr.name, srcAttr.value, srcAttr.namespaceURI);
  106. dstAttrs.setNamedItemNS(dstAttr);
  107. }
  108. }
  109. }
  110. return dstAttrs;
  111. }
  112. function sortAttributes(a, b) {
  113. if (a.name < b.name)
  114. return -1;
  115. if (a.name > b.name)
  116. return 1;
  117. return 0;
  118. }
  119. class MockAttr {
  120. constructor(attrName, attrValue, namespaceURI = null) {
  121. this._name = attrName;
  122. this._value = String(attrValue);
  123. this._namespaceURI = namespaceURI;
  124. }
  125. get name() {
  126. return this._name;
  127. }
  128. set name(value) {
  129. this._name = value;
  130. }
  131. get value() {
  132. return this._value;
  133. }
  134. set value(value) {
  135. this._value = String(value);
  136. }
  137. get nodeName() {
  138. return this._name;
  139. }
  140. set nodeName(value) {
  141. this._name = value;
  142. }
  143. get nodeValue() {
  144. return this._value;
  145. }
  146. set nodeValue(value) {
  147. this._value = String(value);
  148. }
  149. get namespaceURI() {
  150. return this._namespaceURI;
  151. }
  152. set namespaceURI(namespaceURI) {
  153. this._namespaceURI = namespaceURI;
  154. }
  155. }
  156. class MockClassList {
  157. constructor(elm) {
  158. this.elm = elm;
  159. }
  160. add(...classNames) {
  161. const clsNames = getItems(this.elm);
  162. let updated = false;
  163. classNames.forEach((className) => {
  164. className = String(className);
  165. validateClass(className);
  166. if (clsNames.includes(className) === false) {
  167. clsNames.push(className);
  168. updated = true;
  169. }
  170. });
  171. if (updated) {
  172. this.elm.setAttributeNS(null, 'class', clsNames.join(' '));
  173. }
  174. }
  175. remove(...classNames) {
  176. const clsNames = getItems(this.elm);
  177. let updated = false;
  178. classNames.forEach((className) => {
  179. className = String(className);
  180. validateClass(className);
  181. const index = clsNames.indexOf(className);
  182. if (index > -1) {
  183. clsNames.splice(index, 1);
  184. updated = true;
  185. }
  186. });
  187. if (updated) {
  188. this.elm.setAttributeNS(null, 'class', clsNames.filter((c) => c.length > 0).join(' '));
  189. }
  190. }
  191. contains(className) {
  192. className = String(className);
  193. return getItems(this.elm).includes(className);
  194. }
  195. toggle(className) {
  196. className = String(className);
  197. if (this.contains(className) === true) {
  198. this.remove(className);
  199. }
  200. else {
  201. this.add(className);
  202. }
  203. }
  204. get length() {
  205. return getItems(this.elm).length;
  206. }
  207. item(index) {
  208. return getItems(this.elm)[index];
  209. }
  210. toString() {
  211. return getItems(this.elm).join(' ');
  212. }
  213. }
  214. function validateClass(className) {
  215. if (className === '') {
  216. throw new Error('The token provided must not be empty.');
  217. }
  218. if (/\s/.test(className)) {
  219. throw new Error(`The token provided ('${className}') contains HTML space characters, which are not valid in tokens.`);
  220. }
  221. }
  222. function getItems(elm) {
  223. const className = elm.getAttribute('class');
  224. if (typeof className === 'string' && className.length > 0) {
  225. return className
  226. .trim()
  227. .split(' ')
  228. .filter((c) => c.length > 0);
  229. }
  230. return [];
  231. }
  232. class MockCSSStyleDeclaration {
  233. constructor() {
  234. this._styles = new Map();
  235. }
  236. setProperty(prop, value) {
  237. prop = jsCaseToCssCase(prop);
  238. if (value == null || value === '') {
  239. this._styles.delete(prop);
  240. }
  241. else {
  242. this._styles.set(prop, String(value));
  243. }
  244. }
  245. getPropertyValue(prop) {
  246. prop = jsCaseToCssCase(prop);
  247. return String(this._styles.get(prop) || '');
  248. }
  249. removeProperty(prop) {
  250. prop = jsCaseToCssCase(prop);
  251. this._styles.delete(prop);
  252. }
  253. get length() {
  254. return this._styles.size;
  255. }
  256. get cssText() {
  257. const cssText = [];
  258. this._styles.forEach((value, prop) => {
  259. cssText.push(`${prop}: ${value};`);
  260. });
  261. return cssText.join(' ').trim();
  262. }
  263. set cssText(cssText) {
  264. if (cssText == null || cssText === '') {
  265. this._styles.clear();
  266. return;
  267. }
  268. cssText.split(';').forEach((rule) => {
  269. rule = rule.trim();
  270. if (rule.length > 0) {
  271. const splt = rule.split(':');
  272. if (splt.length > 1) {
  273. const prop = splt[0].trim();
  274. const value = splt.slice(1).join(':').trim();
  275. if (prop !== '' && value !== '') {
  276. this._styles.set(jsCaseToCssCase(prop), value);
  277. }
  278. }
  279. }
  280. });
  281. }
  282. }
  283. function createCSSStyleDeclaration() {
  284. return new Proxy(new MockCSSStyleDeclaration(), cssProxyHandler);
  285. }
  286. const cssProxyHandler = {
  287. get(cssStyle, prop) {
  288. if (prop in cssStyle) {
  289. return cssStyle[prop];
  290. }
  291. prop = cssCaseToJsCase(prop);
  292. return cssStyle.getPropertyValue(prop);
  293. },
  294. set(cssStyle, prop, value) {
  295. if (prop in cssStyle) {
  296. cssStyle[prop] = value;
  297. }
  298. else {
  299. cssStyle.setProperty(prop, value);
  300. }
  301. return true;
  302. },
  303. };
  304. function cssCaseToJsCase(str) {
  305. // font-size to fontSize
  306. if (str.length > 1 && str.includes('-') === true) {
  307. str = str
  308. .toLowerCase()
  309. .split('-')
  310. .map((segment) => segment.charAt(0).toUpperCase() + segment.slice(1))
  311. .join('');
  312. str = str.slice(0, 1).toLowerCase() + str.slice(1);
  313. }
  314. return str;
  315. }
  316. function jsCaseToCssCase(str) {
  317. // fontSize to font-size
  318. if (str.length > 1 && str.includes('-') === false && /[A-Z]/.test(str) === true) {
  319. str = str
  320. .replace(/([A-Z])/g, (g) => ' ' + g[0])
  321. .trim()
  322. .replace(/ /g, '-')
  323. .toLowerCase();
  324. }
  325. return str;
  326. }
  327. class MockCustomElementRegistry {
  328. constructor(win) {
  329. this.win = win;
  330. }
  331. define(tagName, cstr, options) {
  332. if (tagName.toLowerCase() !== tagName) {
  333. throw new Error(`Failed to execute 'define' on 'CustomElementRegistry': "${tagName}" is not a valid custom element name`);
  334. }
  335. if (this.__registry == null) {
  336. this.__registry = new Map();
  337. }
  338. this.__registry.set(tagName, { cstr, options });
  339. if (this.__whenDefined != null) {
  340. const whenDefinedResolveFns = this.__whenDefined.get(tagName);
  341. if (whenDefinedResolveFns != null) {
  342. whenDefinedResolveFns.forEach((whenDefinedResolveFn) => {
  343. whenDefinedResolveFn();
  344. });
  345. whenDefinedResolveFns.length = 0;
  346. this.__whenDefined.delete(tagName);
  347. }
  348. }
  349. const doc = this.win.document;
  350. if (doc != null) {
  351. const hosts = doc.querySelectorAll(tagName);
  352. hosts.forEach((host) => {
  353. if (upgradedElements.has(host) === false) {
  354. tempDisableCallbacks.add(doc);
  355. const upgradedCmp = createCustomElement(this, doc, tagName);
  356. for (let i = 0; i < host.childNodes.length; i++) {
  357. const childNode = host.childNodes[i];
  358. childNode.remove();
  359. upgradedCmp.appendChild(childNode);
  360. }
  361. tempDisableCallbacks.delete(doc);
  362. if (proxyElements.has(host)) {
  363. proxyElements.set(host, upgradedCmp);
  364. }
  365. }
  366. fireConnectedCallback(host);
  367. });
  368. }
  369. }
  370. get(tagName) {
  371. if (this.__registry != null) {
  372. const def = this.__registry.get(tagName.toLowerCase());
  373. if (def != null) {
  374. return def.cstr;
  375. }
  376. }
  377. return undefined;
  378. }
  379. upgrade(_rootNode) {
  380. //
  381. }
  382. clear() {
  383. if (this.__registry != null) {
  384. this.__registry.clear();
  385. }
  386. if (this.__whenDefined != null) {
  387. this.__whenDefined.clear();
  388. }
  389. }
  390. whenDefined(tagName) {
  391. tagName = tagName.toLowerCase();
  392. if (this.__registry != null && this.__registry.has(tagName) === true) {
  393. return Promise.resolve(this.__registry.get(tagName).cstr);
  394. }
  395. return new Promise((resolve) => {
  396. if (this.__whenDefined == null) {
  397. this.__whenDefined = new Map();
  398. }
  399. let whenDefinedResolveFns = this.__whenDefined.get(tagName);
  400. if (whenDefinedResolveFns == null) {
  401. whenDefinedResolveFns = [];
  402. this.__whenDefined.set(tagName, whenDefinedResolveFns);
  403. }
  404. whenDefinedResolveFns.push(resolve);
  405. });
  406. }
  407. }
  408. function createCustomElement(customElements, ownerDocument, tagName) {
  409. const Cstr = customElements.get(tagName);
  410. if (Cstr != null) {
  411. const cmp = new Cstr(ownerDocument);
  412. cmp.nodeName = tagName.toUpperCase();
  413. upgradedElements.add(cmp);
  414. return cmp;
  415. }
  416. const host = new Proxy({}, {
  417. get(obj, prop) {
  418. const elm = proxyElements.get(host);
  419. if (elm != null) {
  420. return elm[prop];
  421. }
  422. return obj[prop];
  423. },
  424. set(obj, prop, val) {
  425. const elm = proxyElements.get(host);
  426. if (elm != null) {
  427. elm[prop] = val;
  428. }
  429. else {
  430. obj[prop] = val;
  431. }
  432. return true;
  433. },
  434. has(obj, prop) {
  435. const elm = proxyElements.get(host);
  436. if (prop in elm) {
  437. return true;
  438. }
  439. if (prop in obj) {
  440. return true;
  441. }
  442. return false;
  443. },
  444. });
  445. const elm = new MockHTMLElement(ownerDocument, tagName);
  446. proxyElements.set(host, elm);
  447. return host;
  448. }
  449. const proxyElements = new WeakMap();
  450. const upgradedElements = new WeakSet();
  451. function connectNode(ownerDocument, node) {
  452. node.ownerDocument = ownerDocument;
  453. if (node.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */) {
  454. if (ownerDocument != null && node.nodeName.includes('-')) {
  455. const win = ownerDocument.defaultView;
  456. if (win != null && typeof node.connectedCallback === 'function' && node.isConnected) {
  457. fireConnectedCallback(node);
  458. }
  459. const shadowRoot = node.shadowRoot;
  460. if (shadowRoot != null) {
  461. shadowRoot.childNodes.forEach((childNode) => {
  462. connectNode(ownerDocument, childNode);
  463. });
  464. }
  465. }
  466. node.childNodes.forEach((childNode) => {
  467. connectNode(ownerDocument, childNode);
  468. });
  469. }
  470. else {
  471. node.childNodes.forEach((childNode) => {
  472. childNode.ownerDocument = ownerDocument;
  473. });
  474. }
  475. }
  476. function fireConnectedCallback(node) {
  477. if (typeof node.connectedCallback === 'function') {
  478. if (tempDisableCallbacks.has(node.ownerDocument) === false) {
  479. try {
  480. node.connectedCallback();
  481. }
  482. catch (e) {
  483. console.error(e);
  484. }
  485. }
  486. }
  487. }
  488. function disconnectNode(node) {
  489. if (node.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */) {
  490. if (node.nodeName.includes('-') === true && typeof node.disconnectedCallback === 'function') {
  491. if (tempDisableCallbacks.has(node.ownerDocument) === false) {
  492. try {
  493. node.disconnectedCallback();
  494. }
  495. catch (e) {
  496. console.error(e);
  497. }
  498. }
  499. }
  500. node.childNodes.forEach(disconnectNode);
  501. }
  502. }
  503. function attributeChanged(node, attrName, oldValue, newValue) {
  504. attrName = attrName.toLowerCase();
  505. const observedAttributes = node.constructor.observedAttributes;
  506. if (Array.isArray(observedAttributes) === true &&
  507. observedAttributes.some((obs) => obs.toLowerCase() === attrName) === true) {
  508. try {
  509. node.attributeChangedCallback(attrName, oldValue, newValue);
  510. }
  511. catch (e) {
  512. console.error(e);
  513. }
  514. }
  515. }
  516. function checkAttributeChanged(node) {
  517. return node.nodeName.includes('-') === true && typeof node.attributeChangedCallback === 'function';
  518. }
  519. const tempDisableCallbacks = new Set();
  520. function dataset(elm) {
  521. const ds = {};
  522. const attributes = elm.attributes;
  523. const attrLen = attributes.length;
  524. for (let i = 0; i < attrLen; i++) {
  525. const attr = attributes.item(i);
  526. const nodeName = attr.nodeName;
  527. if (nodeName.startsWith('data-')) {
  528. ds[dashToPascalCase(nodeName)] = attr.nodeValue;
  529. }
  530. }
  531. return new Proxy(ds, {
  532. get(_obj, camelCaseProp) {
  533. return ds[camelCaseProp];
  534. },
  535. set(_obj, camelCaseProp, value) {
  536. const dataAttr = toDataAttribute(camelCaseProp);
  537. elm.setAttribute(dataAttr, value);
  538. return true;
  539. },
  540. });
  541. }
  542. function toDataAttribute(str) {
  543. return ('data-' +
  544. String(str)
  545. .replace(/([A-Z0-9])/g, (g) => ' ' + g[0])
  546. .trim()
  547. .replace(/ /g, '-')
  548. .toLowerCase());
  549. }
  550. function dashToPascalCase(str) {
  551. str = String(str).slice(5);
  552. return str
  553. .split('-')
  554. .map((segment, index) => {
  555. if (index === 0) {
  556. return segment.charAt(0).toLowerCase() + segment.slice(1);
  557. }
  558. return segment.charAt(0).toUpperCase() + segment.slice(1);
  559. })
  560. .join('');
  561. }
  562. class MockEvent {
  563. constructor(type, eventInitDict) {
  564. this.bubbles = false;
  565. this.cancelBubble = false;
  566. this.cancelable = false;
  567. this.composed = false;
  568. this.currentTarget = null;
  569. this.defaultPrevented = false;
  570. this.srcElement = null;
  571. this.target = null;
  572. if (typeof type !== 'string') {
  573. throw new Error(`Event type required`);
  574. }
  575. this.type = type;
  576. this.timeStamp = Date.now();
  577. if (eventInitDict != null) {
  578. Object.assign(this, eventInitDict);
  579. }
  580. }
  581. preventDefault() {
  582. this.defaultPrevented = true;
  583. }
  584. stopPropagation() {
  585. this.cancelBubble = true;
  586. }
  587. stopImmediatePropagation() {
  588. this.cancelBubble = true;
  589. }
  590. composedPath() {
  591. const composedPath = [];
  592. let currentElement = this.target;
  593. while (currentElement) {
  594. composedPath.push(currentElement);
  595. if (!currentElement.parentElement && currentElement.nodeName === "#document" /* NODE_NAMES.DOCUMENT_NODE */) {
  596. // the current element doesn't have a parent, but we've detected it's our root document node. push the window
  597. // object associated with the document onto the path
  598. composedPath.push(currentElement.defaultView);
  599. break;
  600. }
  601. currentElement = currentElement.parentElement;
  602. }
  603. return composedPath;
  604. }
  605. }
  606. class MockCustomEvent extends MockEvent {
  607. constructor(type, customEventInitDic) {
  608. super(type);
  609. this.detail = null;
  610. if (customEventInitDic != null) {
  611. Object.assign(this, customEventInitDic);
  612. }
  613. }
  614. }
  615. class MockKeyboardEvent extends MockEvent {
  616. constructor(type, keyboardEventInitDic) {
  617. super(type);
  618. this.code = '';
  619. this.key = '';
  620. this.altKey = false;
  621. this.ctrlKey = false;
  622. this.metaKey = false;
  623. this.shiftKey = false;
  624. this.location = 0;
  625. this.repeat = false;
  626. if (keyboardEventInitDic != null) {
  627. Object.assign(this, keyboardEventInitDic);
  628. }
  629. }
  630. }
  631. class MockMouseEvent extends MockEvent {
  632. constructor(type, mouseEventInitDic) {
  633. super(type);
  634. this.screenX = 0;
  635. this.screenY = 0;
  636. this.clientX = 0;
  637. this.clientY = 0;
  638. this.ctrlKey = false;
  639. this.shiftKey = false;
  640. this.altKey = false;
  641. this.metaKey = false;
  642. this.button = 0;
  643. this.buttons = 0;
  644. this.relatedTarget = null;
  645. if (mouseEventInitDic != null) {
  646. Object.assign(this, mouseEventInitDic);
  647. }
  648. }
  649. }
  650. class MockUIEvent extends MockEvent {
  651. constructor(type, uiEventInitDic) {
  652. super(type);
  653. this.detail = null;
  654. this.view = null;
  655. if (uiEventInitDic != null) {
  656. Object.assign(this, uiEventInitDic);
  657. }
  658. }
  659. }
  660. class MockFocusEvent extends MockUIEvent {
  661. constructor(type, focusEventInitDic) {
  662. super(type);
  663. this.relatedTarget = null;
  664. if (focusEventInitDic != null) {
  665. Object.assign(this, focusEventInitDic);
  666. }
  667. }
  668. }
  669. class MockEventListener {
  670. constructor(type, handler) {
  671. this.type = type;
  672. this.handler = handler;
  673. }
  674. }
  675. function addEventListener(elm, type, handler) {
  676. const target = elm;
  677. if (target.__listeners == null) {
  678. target.__listeners = [];
  679. }
  680. target.__listeners.push(new MockEventListener(type, handler));
  681. }
  682. function removeEventListener(elm, type, handler) {
  683. const target = elm;
  684. if (target != null && Array.isArray(target.__listeners) === true) {
  685. const elmListener = target.__listeners.find((e) => e.type === type && e.handler === handler);
  686. if (elmListener != null) {
  687. const index = target.__listeners.indexOf(elmListener);
  688. target.__listeners.splice(index, 1);
  689. }
  690. }
  691. }
  692. function resetEventListeners(target) {
  693. if (target != null && target.__listeners != null) {
  694. target.__listeners = null;
  695. }
  696. }
  697. function triggerEventListener(elm, ev) {
  698. if (elm == null || ev.cancelBubble === true) {
  699. return;
  700. }
  701. const target = elm;
  702. ev.currentTarget = elm;
  703. if (Array.isArray(target.__listeners) === true) {
  704. const listeners = target.__listeners.filter((e) => e.type === ev.type);
  705. listeners.forEach((listener) => {
  706. try {
  707. listener.handler.call(target, ev);
  708. }
  709. catch (err) {
  710. console.error(err);
  711. }
  712. });
  713. }
  714. if (ev.bubbles === false) {
  715. return;
  716. }
  717. if (elm.nodeName === "#document" /* NODE_NAMES.DOCUMENT_NODE */) {
  718. triggerEventListener(elm.defaultView, ev);
  719. }
  720. else {
  721. triggerEventListener(elm.parentElement, ev);
  722. }
  723. }
  724. function dispatchEvent(currentTarget, ev) {
  725. ev.target = currentTarget;
  726. triggerEventListener(currentTarget, ev);
  727. return true;
  728. }
  729. // Parse5 6.0.1
  730. const e=function(e){const t=[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];var n="�",s={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},r=function(e){return e>=55296&&e<=57343},i=function(e){return 32!==e&&10!==e&&13!==e&&9!==e&&12!==e&&e>=1&&e<=31||e>=127&&e<=159},o=function(e){return e>=64976&&e<=65007||t.indexOf(e)>-1},a="unexpected-null-character",T="invalid-first-character-of-tag-name",E="missing-semicolon-after-character-reference",h="eof-before-tag-name",c="eof-in-tag",_="missing-whitespace-after-doctype-public-keyword",l="missing-whitespace-between-doctype-public-and-system-identifiers",m="missing-whitespace-after-doctype-system-keyword",p="missing-quote-before-doctype-public-identifier",A="missing-quote-before-doctype-system-identifier",u="missing-doctype-public-identifier",N="missing-doctype-system-identifier",d="abrupt-doctype-public-identifier",C="abrupt-doctype-system-identifier",O="eof-in-script-html-comment-like-text",f="eof-in-doctype",S="abrupt-closing-of-empty-comment",R="eof-in-comment",I="absence-of-digits-in-numeric-character-reference",L="end-tag-without-matching-open-element",k="misplaced-start-tag-for-head-element";const M=s;var g=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]);const P=s,H={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]},D={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},F="DATA_STATE",U="RCDATA_STATE",G="RAWTEXT_STATE",B="SCRIPT_DATA_STATE",K="PLAINTEXT_STATE",b="TAG_OPEN_STATE",x="END_TAG_OPEN_STATE",y="TAG_NAME_STATE",v="RCDATA_LESS_THAN_SIGN_STATE",Y="RCDATA_END_TAG_OPEN_STATE",w="RCDATA_END_TAG_NAME_STATE",Q="RAWTEXT_LESS_THAN_SIGN_STATE",X="RAWTEXT_END_TAG_OPEN_STATE",W="RAWTEXT_END_TAG_NAME_STATE",V="SCRIPT_DATA_LESS_THAN_SIGN_STATE",j="SCRIPT_DATA_END_TAG_OPEN_STATE",z="SCRIPT_DATA_END_TAG_NAME_STATE",q="SCRIPT_DATA_ESCAPE_START_STATE",J="SCRIPT_DATA_ESCAPE_START_DASH_STATE",Z="SCRIPT_DATA_ESCAPED_STATE",$="SCRIPT_DATA_ESCAPED_DASH_STATE",ee="SCRIPT_DATA_ESCAPED_DASH_DASH_STATE",te="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN_STATE",ne="SCRIPT_DATA_ESCAPED_END_TAG_OPEN_STATE",se="SCRIPT_DATA_ESCAPED_END_TAG_NAME_STATE",re="SCRIPT_DATA_DOUBLE_ESCAPE_START_STATE",ie="SCRIPT_DATA_DOUBLE_ESCAPED_STATE",oe="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_STATE",ae="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH_STATE",Te="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN_STATE",Ee="SCRIPT_DATA_DOUBLE_ESCAPE_END_STATE",he="BEFORE_ATTRIBUTE_NAME_STATE",ce="ATTRIBUTE_NAME_STATE",_e="AFTER_ATTRIBUTE_NAME_STATE",le="BEFORE_ATTRIBUTE_VALUE_STATE",me="ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE",pe="ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE",Ae="ATTRIBUTE_VALUE_UNQUOTED_STATE",ue="AFTER_ATTRIBUTE_VALUE_QUOTED_STATE",Ne="SELF_CLOSING_START_TAG_STATE",de="BOGUS_COMMENT_STATE",Ce="MARKUP_DECLARATION_OPEN_STATE",Oe="COMMENT_START_STATE",fe="COMMENT_START_DASH_STATE",Se="COMMENT_STATE",Re="COMMENT_LESS_THAN_SIGN_STATE",Ie="COMMENT_LESS_THAN_SIGN_BANG_STATE",Le="COMMENT_LESS_THAN_SIGN_BANG_DASH_STATE",ke="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH_STATE",Me="COMMENT_END_DASH_STATE",ge="COMMENT_END_STATE",Pe="COMMENT_END_BANG_STATE",He="DOCTYPE_STATE",De="BEFORE_DOCTYPE_NAME_STATE",Fe="DOCTYPE_NAME_STATE",Ue="AFTER_DOCTYPE_NAME_STATE",Ge="AFTER_DOCTYPE_PUBLIC_KEYWORD_STATE",Be="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE",Ke="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE",be="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE",xe="AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE",ye="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS_STATE",ve="AFTER_DOCTYPE_SYSTEM_KEYWORD_STATE",Ye="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE",we="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE",Qe="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE",Xe="AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE",We="BOGUS_DOCTYPE_STATE",Ve="CDATA_SECTION_STATE",je="CDATA_SECTION_BRACKET_STATE",ze="CDATA_SECTION_END_STATE",qe="CHARACTER_REFERENCE_STATE",Je="NAMED_CHARACTER_REFERENCE_STATE",Ze="AMBIGUOS_AMPERSAND_STATE",$e="NUMERIC_CHARACTER_REFERENCE_STATE",et="HEXADEMICAL_CHARACTER_REFERENCE_START_STATE",tt="DECIMAL_CHARACTER_REFERENCE_START_STATE",nt="HEXADEMICAL_CHARACTER_REFERENCE_STATE",st="DECIMAL_CHARACTER_REFERENCE_STATE",rt="NUMERIC_CHARACTER_REFERENCE_END_STATE";function it(e){return e===P.SPACE||e===P.LINE_FEED||e===P.TABULATION||e===P.FORM_FEED}function ot(e){return e>=P.DIGIT_0&&e<=P.DIGIT_9}function at(e){return e>=P.LATIN_CAPITAL_A&&e<=P.LATIN_CAPITAL_Z}function Tt(e){return e>=P.LATIN_SMALL_A&&e<=P.LATIN_SMALL_Z}function Et(e){return Tt(e)||at(e)}function ht(e){return Et(e)||ot(e)}function ct(e){return e>=P.LATIN_CAPITAL_A&&e<=P.LATIN_CAPITAL_F}function _t(e){return e>=P.LATIN_SMALL_A&&e<=P.LATIN_SMALL_F}function lt(e){return e+32}function mt(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode(e>>>10&1023|55296)+String.fromCharCode(56320|1023&e))}function pt(e){return String.fromCharCode(lt(e))}function At(e,t){const n=g[++e];let s=++e,r=s+n-1;for(;s<=r;){const e=s+r>>>1,i=g[e];if(i<t)s=e+1;else {if(!(i>t))return g[e+n];r=e-1;}}return -1}class ut{constructor(){this.preprocessor=new class{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=65536;}_err(){}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos;}_processSurrogate(e){if(this.pos!==this.lastCharPos){const t=this.html.charCodeAt(this.pos+1);if(function(e){return e>=56320&&e<=57343}(t))return this.pos++,this._addGap(),1024*(e-55296)+9216+t}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,M.EOF;return this._err("surrogate-in-input-stream"),e}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(e,t){this.html?this.html+=e:this.html=e,this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1,this.lastChunkWritten=t;}insertHtmlAtCurrentPos(e){this.html=this.html.substring(0,this.pos+1)+e+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,M.EOF;let e=this.html.charCodeAt(this.pos);return this.skipNextNewLine&&e===M.LINE_FEED?(this.skipNextNewLine=!1,this._addGap(),this.advance()):e===M.CARRIAGE_RETURN?(this.skipNextNewLine=!0,M.LINE_FEED):(this.skipNextNewLine=!1,r(e)&&(e=this._processSurrogate(e)),e>31&&e<127||e===M.LINE_FEED||e===M.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){i(e)?this._err("control-character-in-input-stream"):o(e)&&this._err("noncharacter-in-input-stream");}retreat(){this.pos===this.lastGapPos&&(this.lastGapPos=this.gapStack.pop(),this.pos--),this.pos--;}},this.tokenQueue=[],this.allowCDATA=!1,this.state=F,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(e){this._consume(),this._err(e),this._unconsume();}getNextToken(){for(;!this.tokenQueue.length&&this.active;){this.consumedAfterSnapshot=0;const e=this._consume();this._ensureHibernation()||this[this.state](e);}return this.tokenQueue.shift()}write(e,t){this.active=!0,this.preprocessor.write(e,t);}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e);}_ensureHibernation(){if(this.preprocessor.endOfChunkHit){for(;this.consumedAfterSnapshot>0;this.consumedAfterSnapshot--)this.preprocessor.retreat();return this.active=!1,this.tokenQueue.push({type:ut.HIBERNATION_TOKEN}),!0}return !1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_unconsume(){this.consumedAfterSnapshot--,this.preprocessor.retreat();}_reconsumeInState(e){this.state=e,this._unconsume();}_consumeSequenceIfMatch(e,t,n){let s=0,r=!0;const i=e.length;let o,a=0,T=t;for(;a<i;a++){if(a>0&&(T=this._consume(),s++),T===P.EOF){r=!1;break}if(o=e[a],T!==o&&(n||T!==lt(o))){r=!1;break}}if(!r)for(;s--;)this._unconsume();return r}_isTempBufferEqualToScriptString(){if(this.tempBuff.length!==H.SCRIPT_STRING.length)return !1;for(let e=0;e<this.tempBuff.length;e++)if(this.tempBuff[e]!==H.SCRIPT_STRING[e])return !1;return !0}_createStartTagToken(){this.currentToken={type:ut.START_TAG_TOKEN,tagName:"",selfClosing:!1,ackSelfClosing:!1,attrs:[]};}_createEndTagToken(){this.currentToken={type:ut.END_TAG_TOKEN,tagName:"",selfClosing:!1,attrs:[]};}_createCommentToken(){this.currentToken={type:ut.COMMENT_TOKEN,data:""};}_createDoctypeToken(e){this.currentToken={type:ut.DOCTYPE_TOKEN,name:e,forceQuirks:!1,publicId:null,systemId:null};}_createCharacterToken(e,t){this.currentCharacterToken={type:e,chars:t};}_createEOFToken(){this.currentToken={type:ut.EOF_TOKEN};}_createAttr(e){this.currentAttr={name:e,value:""};}_leaveAttrName(e){null===ut.getTokenAttr(this.currentToken,this.currentAttr.name)?this.currentToken.attrs.push(this.currentAttr):this._err("duplicate-attribute"),this.state=e;}_leaveAttrValue(e){this.state=e;}_emitCurrentToken(){this._emitCurrentCharacterToken();const e=this.currentToken;this.currentToken=null,e.type===ut.START_TAG_TOKEN?this.lastStartTagName=e.tagName:e.type===ut.END_TAG_TOKEN&&(e.attrs.length>0&&this._err("end-tag-with-attributes"),e.selfClosing&&this._err("end-tag-with-trailing-solidus")),this.tokenQueue.push(e);}_emitCurrentCharacterToken(){this.currentCharacterToken&&(this.tokenQueue.push(this.currentCharacterToken),this.currentCharacterToken=null);}_emitEOFToken(){this._createEOFToken(),this._emitCurrentToken();}_appendCharToCurrentCharacterToken(e,t){this.currentCharacterToken&&this.currentCharacterToken.type!==e&&this._emitCurrentCharacterToken(),this.currentCharacterToken?this.currentCharacterToken.chars+=t:this._createCharacterToken(e,t);}_emitCodePoint(e){let t=ut.CHARACTER_TOKEN;it(e)?t=ut.WHITESPACE_CHARACTER_TOKEN:e===P.NULL&&(t=ut.NULL_CHARACTER_TOKEN),this._appendCharToCurrentCharacterToken(t,mt(e));}_emitSeveralCodePoints(e){for(let t=0;t<e.length;t++)this._emitCodePoint(e[t]);}_emitChars(e){this._appendCharToCurrentCharacterToken(ut.CHARACTER_TOKEN,e);}_matchNamedCharacterReference(e){let t=null,n=1,s=At(0,e);for(this.tempBuff.push(e);s>-1;){const e=g[s],r=e<7;r&&1&e&&(t=2&e?[g[++s],g[++s]]:[g[++s]],n=0);const i=this._consume();if(this.tempBuff.push(i),n++,i===P.EOF)break;s=r?4&e?At(s,i):-1:i===e?++s:-1;}for(;n--;)this.tempBuff.pop(),this._unconsume();return t}_isCharacterReferenceInAttribute(){return this.returnState===me||this.returnState===pe||this.returnState===Ae}_isCharacterReferenceAttributeQuirk(e){if(!e&&this._isCharacterReferenceInAttribute()){const e=this._consume();return this._unconsume(),e===P.EQUALS_SIGN||ht(e)}return !1}_flushCodePointsConsumedAsCharacterReference(){if(this._isCharacterReferenceInAttribute())for(let e=0;e<this.tempBuff.length;e++)this.currentAttr.value+=mt(this.tempBuff[e]);else this._emitSeveralCodePoints(this.tempBuff);this.tempBuff=[];}[F](e){this.preprocessor.dropParsedChunk(),e===P.LESS_THAN_SIGN?this.state=b:e===P.AMPERSAND?(this.returnState=F,this.state=qe):e===P.NULL?(this._err(a),this._emitCodePoint(e)):e===P.EOF?this._emitEOFToken():this._emitCodePoint(e);}[U](e){this.preprocessor.dropParsedChunk(),e===P.AMPERSAND?(this.returnState=U,this.state=qe):e===P.LESS_THAN_SIGN?this.state=v:e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?this._emitEOFToken():this._emitCodePoint(e);}[G](e){this.preprocessor.dropParsedChunk(),e===P.LESS_THAN_SIGN?this.state=Q:e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?this._emitEOFToken():this._emitCodePoint(e);}[B](e){this.preprocessor.dropParsedChunk(),e===P.LESS_THAN_SIGN?this.state=V:e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?this._emitEOFToken():this._emitCodePoint(e);}[K](e){this.preprocessor.dropParsedChunk(),e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?this._emitEOFToken():this._emitCodePoint(e);}[b](e){e===P.EXCLAMATION_MARK?this.state=Ce:e===P.SOLIDUS?this.state=x:Et(e)?(this._createStartTagToken(),this._reconsumeInState(y)):e===P.QUESTION_MARK?(this._err("unexpected-question-mark-instead-of-tag-name"),this._createCommentToken(),this._reconsumeInState(de)):e===P.EOF?(this._err(h),this._emitChars("<"),this._emitEOFToken()):(this._err(T),this._emitChars("<"),this._reconsumeInState(F));}[x](e){Et(e)?(this._createEndTagToken(),this._reconsumeInState(y)):e===P.GREATER_THAN_SIGN?(this._err("missing-end-tag-name"),this.state=F):e===P.EOF?(this._err(h),this._emitChars("</"),this._emitEOFToken()):(this._err(T),this._createCommentToken(),this._reconsumeInState(de));}[y](e){it(e)?this.state=he:e===P.SOLIDUS?this.state=Ne:e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):at(e)?this.currentToken.tagName+=pt(e):e===P.NULL?(this._err(a),this.currentToken.tagName+=n):e===P.EOF?(this._err(c),this._emitEOFToken()):this.currentToken.tagName+=mt(e);}[v](e){e===P.SOLIDUS?(this.tempBuff=[],this.state=Y):(this._emitChars("<"),this._reconsumeInState(U));}[Y](e){Et(e)?(this._createEndTagToken(),this._reconsumeInState(w)):(this._emitChars("</"),this._reconsumeInState(U));}[w](e){if(at(e))this.currentToken.tagName+=pt(e),this.tempBuff.push(e);else if(Tt(e))this.currentToken.tagName+=mt(e),this.tempBuff.push(e);else {if(this.lastStartTagName===this.currentToken.tagName){if(it(e))return void(this.state=he);if(e===P.SOLIDUS)return void(this.state=Ne);if(e===P.GREATER_THAN_SIGN)return this.state=F,void this._emitCurrentToken()}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(U);}}[Q](e){e===P.SOLIDUS?(this.tempBuff=[],this.state=X):(this._emitChars("<"),this._reconsumeInState(G));}[X](e){Et(e)?(this._createEndTagToken(),this._reconsumeInState(W)):(this._emitChars("</"),this._reconsumeInState(G));}[W](e){if(at(e))this.currentToken.tagName+=pt(e),this.tempBuff.push(e);else if(Tt(e))this.currentToken.tagName+=mt(e),this.tempBuff.push(e);else {if(this.lastStartTagName===this.currentToken.tagName){if(it(e))return void(this.state=he);if(e===P.SOLIDUS)return void(this.state=Ne);if(e===P.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=F)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(G);}}[V](e){e===P.SOLIDUS?(this.tempBuff=[],this.state=j):e===P.EXCLAMATION_MARK?(this.state=q,this._emitChars("<!")):(this._emitChars("<"),this._reconsumeInState(B));}[j](e){Et(e)?(this._createEndTagToken(),this._reconsumeInState(z)):(this._emitChars("</"),this._reconsumeInState(B));}[z](e){if(at(e))this.currentToken.tagName+=pt(e),this.tempBuff.push(e);else if(Tt(e))this.currentToken.tagName+=mt(e),this.tempBuff.push(e);else {if(this.lastStartTagName===this.currentToken.tagName){if(it(e))return void(this.state=he);if(e===P.SOLIDUS)return void(this.state=Ne);if(e===P.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=F)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(B);}}[q](e){e===P.HYPHEN_MINUS?(this.state=J,this._emitChars("-")):this._reconsumeInState(B);}[J](e){e===P.HYPHEN_MINUS?(this.state=ee,this._emitChars("-")):this._reconsumeInState(B);}[Z](e){e===P.HYPHEN_MINUS?(this.state=$,this._emitChars("-")):e===P.LESS_THAN_SIGN?this.state=te:e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):this._emitCodePoint(e);}[$](e){e===P.HYPHEN_MINUS?(this.state=ee,this._emitChars("-")):e===P.LESS_THAN_SIGN?this.state=te:e===P.NULL?(this._err(a),this.state=Z,this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):(this.state=Z,this._emitCodePoint(e));}[ee](e){e===P.HYPHEN_MINUS?this._emitChars("-"):e===P.LESS_THAN_SIGN?this.state=te:e===P.GREATER_THAN_SIGN?(this.state=B,this._emitChars(">")):e===P.NULL?(this._err(a),this.state=Z,this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):(this.state=Z,this._emitCodePoint(e));}[te](e){e===P.SOLIDUS?(this.tempBuff=[],this.state=ne):Et(e)?(this.tempBuff=[],this._emitChars("<"),this._reconsumeInState(re)):(this._emitChars("<"),this._reconsumeInState(Z));}[ne](e){Et(e)?(this._createEndTagToken(),this._reconsumeInState(se)):(this._emitChars("</"),this._reconsumeInState(Z));}[se](e){if(at(e))this.currentToken.tagName+=pt(e),this.tempBuff.push(e);else if(Tt(e))this.currentToken.tagName+=mt(e),this.tempBuff.push(e);else {if(this.lastStartTagName===this.currentToken.tagName){if(it(e))return void(this.state=he);if(e===P.SOLIDUS)return void(this.state=Ne);if(e===P.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=F)}this._emitChars("</"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(Z);}}[re](e){it(e)||e===P.SOLIDUS||e===P.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?ie:Z,this._emitCodePoint(e)):at(e)?(this.tempBuff.push(lt(e)),this._emitCodePoint(e)):Tt(e)?(this.tempBuff.push(e),this._emitCodePoint(e)):this._reconsumeInState(Z);}[ie](e){e===P.HYPHEN_MINUS?(this.state=oe,this._emitChars("-")):e===P.LESS_THAN_SIGN?(this.state=Te,this._emitChars("<")):e===P.NULL?(this._err(a),this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):this._emitCodePoint(e);}[oe](e){e===P.HYPHEN_MINUS?(this.state=ae,this._emitChars("-")):e===P.LESS_THAN_SIGN?(this.state=Te,this._emitChars("<")):e===P.NULL?(this._err(a),this.state=ie,this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):(this.state=ie,this._emitCodePoint(e));}[ae](e){e===P.HYPHEN_MINUS?this._emitChars("-"):e===P.LESS_THAN_SIGN?(this.state=Te,this._emitChars("<")):e===P.GREATER_THAN_SIGN?(this.state=B,this._emitChars(">")):e===P.NULL?(this._err(a),this.state=ie,this._emitChars(n)):e===P.EOF?(this._err(O),this._emitEOFToken()):(this.state=ie,this._emitCodePoint(e));}[Te](e){e===P.SOLIDUS?(this.tempBuff=[],this.state=Ee,this._emitChars("/")):this._reconsumeInState(ie);}[Ee](e){it(e)||e===P.SOLIDUS||e===P.GREATER_THAN_SIGN?(this.state=this._isTempBufferEqualToScriptString()?Z:ie,this._emitCodePoint(e)):at(e)?(this.tempBuff.push(lt(e)),this._emitCodePoint(e)):Tt(e)?(this.tempBuff.push(e),this._emitCodePoint(e)):this._reconsumeInState(ie);}[he](e){it(e)||(e===P.SOLIDUS||e===P.GREATER_THAN_SIGN||e===P.EOF?this._reconsumeInState(_e):e===P.EQUALS_SIGN?(this._err("unexpected-equals-sign-before-attribute-name"),this._createAttr("="),this.state=ce):(this._createAttr(""),this._reconsumeInState(ce)));}[ce](e){it(e)||e===P.SOLIDUS||e===P.GREATER_THAN_SIGN||e===P.EOF?(this._leaveAttrName(_e),this._unconsume()):e===P.EQUALS_SIGN?this._leaveAttrName(le):at(e)?this.currentAttr.name+=pt(e):e===P.QUOTATION_MARK||e===P.APOSTROPHE||e===P.LESS_THAN_SIGN?(this._err("unexpected-character-in-attribute-name"),this.currentAttr.name+=mt(e)):e===P.NULL?(this._err(a),this.currentAttr.name+=n):this.currentAttr.name+=mt(e);}[_e](e){it(e)||(e===P.SOLIDUS?this.state=Ne:e===P.EQUALS_SIGN?this.state=le:e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(c),this._emitEOFToken()):(this._createAttr(""),this._reconsumeInState(ce)));}[le](e){it(e)||(e===P.QUOTATION_MARK?this.state=me:e===P.APOSTROPHE?this.state=pe:e===P.GREATER_THAN_SIGN?(this._err("missing-attribute-value"),this.state=F,this._emitCurrentToken()):this._reconsumeInState(Ae));}[me](e){e===P.QUOTATION_MARK?this.state=ue:e===P.AMPERSAND?(this.returnState=me,this.state=qe):e===P.NULL?(this._err(a),this.currentAttr.value+=n):e===P.EOF?(this._err(c),this._emitEOFToken()):this.currentAttr.value+=mt(e);}[pe](e){e===P.APOSTROPHE?this.state=ue:e===P.AMPERSAND?(this.returnState=pe,this.state=qe):e===P.NULL?(this._err(a),this.currentAttr.value+=n):e===P.EOF?(this._err(c),this._emitEOFToken()):this.currentAttr.value+=mt(e);}[Ae](e){it(e)?this._leaveAttrValue(he):e===P.AMPERSAND?(this.returnState=Ae,this.state=qe):e===P.GREATER_THAN_SIGN?(this._leaveAttrValue(F),this._emitCurrentToken()):e===P.NULL?(this._err(a),this.currentAttr.value+=n):e===P.QUOTATION_MARK||e===P.APOSTROPHE||e===P.LESS_THAN_SIGN||e===P.EQUALS_SIGN||e===P.GRAVE_ACCENT?(this._err("unexpected-character-in-unquoted-attribute-value"),this.currentAttr.value+=mt(e)):e===P.EOF?(this._err(c),this._emitEOFToken()):this.currentAttr.value+=mt(e);}[ue](e){it(e)?this._leaveAttrValue(he):e===P.SOLIDUS?this._leaveAttrValue(Ne):e===P.GREATER_THAN_SIGN?(this._leaveAttrValue(F),this._emitCurrentToken()):e===P.EOF?(this._err(c),this._emitEOFToken()):(this._err("missing-whitespace-between-attributes"),this._reconsumeInState(he));}[Ne](e){e===P.GREATER_THAN_SIGN?(this.currentToken.selfClosing=!0,this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(c),this._emitEOFToken()):(this._err("unexpected-solidus-in-tag"),this._reconsumeInState(he));}[de](e){e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):e===P.EOF?(this._emitCurrentToken(),this._emitEOFToken()):e===P.NULL?(this._err(a),this.currentToken.data+=n):this.currentToken.data+=mt(e);}[Ce](e){this._consumeSequenceIfMatch(H.DASH_DASH_STRING,e,!0)?(this._createCommentToken(),this.state=Oe):this._consumeSequenceIfMatch(H.DOCTYPE_STRING,e,!1)?this.state=He:this._consumeSequenceIfMatch(H.CDATA_START_STRING,e,!0)?this.allowCDATA?this.state=Ve:(this._err("cdata-in-html-content"),this._createCommentToken(),this.currentToken.data="[CDATA[",this.state=de):this._ensureHibernation()||(this._err("incorrectly-opened-comment"),this._createCommentToken(),this._reconsumeInState(de));}[Oe](e){e===P.HYPHEN_MINUS?this.state=fe:e===P.GREATER_THAN_SIGN?(this._err(S),this.state=F,this._emitCurrentToken()):this._reconsumeInState(Se);}[fe](e){e===P.HYPHEN_MINUS?this.state=ge:e===P.GREATER_THAN_SIGN?(this._err(S),this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(R),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Se));}[Se](e){e===P.HYPHEN_MINUS?this.state=Me:e===P.LESS_THAN_SIGN?(this.currentToken.data+="<",this.state=Re):e===P.NULL?(this._err(a),this.currentToken.data+=n):e===P.EOF?(this._err(R),this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.data+=mt(e);}[Re](e){e===P.EXCLAMATION_MARK?(this.currentToken.data+="!",this.state=Ie):e===P.LESS_THAN_SIGN?this.currentToken.data+="!":this._reconsumeInState(Se);}[Ie](e){e===P.HYPHEN_MINUS?this.state=Le:this._reconsumeInState(Se);}[Le](e){e===P.HYPHEN_MINUS?this.state=ke:this._reconsumeInState(Me);}[ke](e){e!==P.GREATER_THAN_SIGN&&e!==P.EOF&&this._err("nested-comment"),this._reconsumeInState(ge);}[Me](e){e===P.HYPHEN_MINUS?this.state=ge:e===P.EOF?(this._err(R),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="-",this._reconsumeInState(Se));}[ge](e){e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):e===P.EXCLAMATION_MARK?this.state=Pe:e===P.HYPHEN_MINUS?this.currentToken.data+="-":e===P.EOF?(this._err(R),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--",this._reconsumeInState(Se));}[Pe](e){e===P.HYPHEN_MINUS?(this.currentToken.data+="--!",this.state=Me):e===P.GREATER_THAN_SIGN?(this._err("incorrectly-closed-comment"),this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(R),this._emitCurrentToken(),this._emitEOFToken()):(this.currentToken.data+="--!",this._reconsumeInState(Se));}[He](e){it(e)?this.state=De:e===P.GREATER_THAN_SIGN?this._reconsumeInState(De):e===P.EOF?(this._err(f),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err("missing-whitespace-before-doctype-name"),this._reconsumeInState(De));}[De](e){it(e)||(at(e)?(this._createDoctypeToken(pt(e)),this.state=Fe):e===P.NULL?(this._err(a),this._createDoctypeToken(n),this.state=Fe):e===P.GREATER_THAN_SIGN?(this._err("missing-doctype-name"),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this._createDoctypeToken(null),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._createDoctypeToken(mt(e)),this.state=Fe));}[Fe](e){it(e)?this.state=Ue:e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):at(e)?this.currentToken.name+=pt(e):e===P.NULL?(this._err(a),this.currentToken.name+=n):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.name+=mt(e);}[Ue](e){it(e)||(e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this._consumeSequenceIfMatch(H.PUBLIC_STRING,e,!1)?this.state=Ge:this._consumeSequenceIfMatch(H.SYSTEM_STRING,e,!1)?this.state=ve:this._ensureHibernation()||(this._err("invalid-character-sequence-after-doctype-name"),this.currentToken.forceQuirks=!0,this._reconsumeInState(We)));}[Ge](e){it(e)?this.state=Be:e===P.QUOTATION_MARK?(this._err(_),this.currentToken.publicId="",this.state=Ke):e===P.APOSTROPHE?(this._err(_),this.currentToken.publicId="",this.state=be):e===P.GREATER_THAN_SIGN?(this._err(u),this.currentToken.forceQuirks=!0,this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(p),this.currentToken.forceQuirks=!0,this._reconsumeInState(We));}[Be](e){it(e)||(e===P.QUOTATION_MARK?(this.currentToken.publicId="",this.state=Ke):e===P.APOSTROPHE?(this.currentToken.publicId="",this.state=be):e===P.GREATER_THAN_SIGN?(this._err(u),this.currentToken.forceQuirks=!0,this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(p),this.currentToken.forceQuirks=!0,this._reconsumeInState(We)));}[Ke](e){e===P.QUOTATION_MARK?this.state=xe:e===P.NULL?(this._err(a),this.currentToken.publicId+=n):e===P.GREATER_THAN_SIGN?(this._err(d),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=mt(e);}[be](e){e===P.APOSTROPHE?this.state=xe:e===P.NULL?(this._err(a),this.currentToken.publicId+=n):e===P.GREATER_THAN_SIGN?(this._err(d),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.publicId+=mt(e);}[xe](e){it(e)?this.state=ye:e===P.GREATER_THAN_SIGN?(this.state=F,this._emitCurrentToken()):e===P.QUOTATION_MARK?(this._err(l),this.currentToken.systemId="",this.state=we):e===P.APOSTROPHE?(this._err(l),this.currentToken.systemId="",this.state=Qe):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(A),this.currentToken.forceQuirks=!0,this._reconsumeInState(We));}[ye](e){it(e)||(e===P.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=F):e===P.QUOTATION_MARK?(this.currentToken.systemId="",this.state=we):e===P.APOSTROPHE?(this.currentToken.systemId="",this.state=Qe):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(A),this.currentToken.forceQuirks=!0,this._reconsumeInState(We)));}[ve](e){it(e)?this.state=Ye:e===P.QUOTATION_MARK?(this._err(m),this.currentToken.systemId="",this.state=we):e===P.APOSTROPHE?(this._err(m),this.currentToken.systemId="",this.state=Qe):e===P.GREATER_THAN_SIGN?(this._err(N),this.currentToken.forceQuirks=!0,this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(A),this.currentToken.forceQuirks=!0,this._reconsumeInState(We));}[Ye](e){it(e)||(e===P.QUOTATION_MARK?(this.currentToken.systemId="",this.state=we):e===P.APOSTROPHE?(this.currentToken.systemId="",this.state=Qe):e===P.GREATER_THAN_SIGN?(this._err(N),this.currentToken.forceQuirks=!0,this.state=F,this._emitCurrentToken()):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err(A),this.currentToken.forceQuirks=!0,this._reconsumeInState(We)));}[we](e){e===P.QUOTATION_MARK?this.state=Xe:e===P.NULL?(this._err(a),this.currentToken.systemId+=n):e===P.GREATER_THAN_SIGN?(this._err(C),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=mt(e);}[Qe](e){e===P.APOSTROPHE?this.state=Xe:e===P.NULL?(this._err(a),this.currentToken.systemId+=n):e===P.GREATER_THAN_SIGN?(this._err(C),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):this.currentToken.systemId+=mt(e);}[Xe](e){it(e)||(e===P.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=F):e===P.EOF?(this._err(f),this.currentToken.forceQuirks=!0,this._emitCurrentToken(),this._emitEOFToken()):(this._err("unexpected-character-after-doctype-system-identifier"),this._reconsumeInState(We)));}[We](e){e===P.GREATER_THAN_SIGN?(this._emitCurrentToken(),this.state=F):e===P.NULL?this._err(a):e===P.EOF&&(this._emitCurrentToken(),this._emitEOFToken());}[Ve](e){e===P.RIGHT_SQUARE_BRACKET?this.state=je:e===P.EOF?(this._err("eof-in-cdata"),this._emitEOFToken()):this._emitCodePoint(e);}[je](e){e===P.RIGHT_SQUARE_BRACKET?this.state=ze:(this._emitChars("]"),this._reconsumeInState(Ve));}[ze](e){e===P.GREATER_THAN_SIGN?this.state=F:e===P.RIGHT_SQUARE_BRACKET?this._emitChars("]"):(this._emitChars("]]"),this._reconsumeInState(Ve));}[qe](e){this.tempBuff=[P.AMPERSAND],e===P.NUMBER_SIGN?(this.tempBuff.push(e),this.state=$e):ht(e)?this._reconsumeInState(Je):(this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState));}[Je](e){const t=this._matchNamedCharacterReference(e);if(this._ensureHibernation())this.tempBuff=[P.AMPERSAND];else if(t){const e=this.tempBuff[this.tempBuff.length-1]===P.SEMICOLON;this._isCharacterReferenceAttributeQuirk(e)||(e||this._errOnNextCodePoint(E),this.tempBuff=t),this._flushCodePointsConsumedAsCharacterReference(),this.state=this.returnState;}else this._flushCodePointsConsumedAsCharacterReference(),this.state=Ze;}[Ze](e){ht(e)?this._isCharacterReferenceInAttribute()?this.currentAttr.value+=mt(e):this._emitCodePoint(e):(e===P.SEMICOLON&&this._err("unknown-named-character-reference"),this._reconsumeInState(this.returnState));}[$e](e){this.charRefCode=0,e===P.LATIN_SMALL_X||e===P.LATIN_CAPITAL_X?(this.tempBuff.push(e),this.state=et):this._reconsumeInState(tt);}[et](e){!function(e){return ot(e)||ct(e)||_t(e)}(e)?(this._err(I),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState)):this._reconsumeInState(nt);}[tt](e){ot(e)?this._reconsumeInState(st):(this._err(I),this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState));}[nt](e){ct(e)?this.charRefCode=16*this.charRefCode+e-55:_t(e)?this.charRefCode=16*this.charRefCode+e-87:ot(e)?this.charRefCode=16*this.charRefCode+e-48:e===P.SEMICOLON?this.state=rt:(this._err(E),this._reconsumeInState(rt));}[st](e){ot(e)?this.charRefCode=10*this.charRefCode+e-48:e===P.SEMICOLON?this.state=rt:(this._err(E),this._reconsumeInState(rt));}[rt](){if(this.charRefCode===P.NULL)this._err("null-character-reference"),this.charRefCode=P.REPLACEMENT_CHARACTER;else if(this.charRefCode>1114111)this._err("character-reference-outside-unicode-range"),this.charRefCode=P.REPLACEMENT_CHARACTER;else if(r(this.charRefCode))this._err("surrogate-character-reference"),this.charRefCode=P.REPLACEMENT_CHARACTER;else if(o(this.charRefCode))this._err("noncharacter-character-reference");else if(i(this.charRefCode)||this.charRefCode===P.CARRIAGE_RETURN){this._err("control-character-reference");const e=D[this.charRefCode];e&&(this.charRefCode=e);}this.tempBuff=[this.charRefCode],this._flushCodePointsConsumedAsCharacterReference(),this._reconsumeInState(this.returnState);}}ut.CHARACTER_TOKEN="CHARACTER_TOKEN",ut.NULL_CHARACTER_TOKEN="NULL_CHARACTER_TOKEN",ut.WHITESPACE_CHARACTER_TOKEN="WHITESPACE_CHARACTER_TOKEN",ut.START_TAG_TOKEN="START_TAG_TOKEN",ut.END_TAG_TOKEN="END_TAG_TOKEN",ut.COMMENT_TOKEN="COMMENT_TOKEN",ut.DOCTYPE_TOKEN="DOCTYPE_TOKEN",ut.EOF_TOKEN="EOF_TOKEN",ut.HIBERNATION_TOKEN="HIBERNATION_TOKEN",ut.MODE={DATA:F,RCDATA:U,RAWTEXT:G,SCRIPT_DATA:B,PLAINTEXT:K},ut.getTokenAttr=function(e,t){for(let n=e.attrs.length-1;n>=0;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null};var Nt=ut;function dt(e,t,n){return e(n={path:t,exports:{},require:function(e,t){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==t&&n.path)}},n.exports),n.exports}var Ct=dt((function(e,t){const n=t.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/"};t.ATTRS={TYPE:"type",ACTION:"action",ENCODING:"encoding",PROMPT:"prompt",NAME:"name",COLOR:"color",FACE:"face",SIZE:"size"},t.DOCUMENT_MODE={NO_QUIRKS:"no-quirks",QUIRKS:"quirks",LIMITED_QUIRKS:"limited-quirks"};const s=t.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"};t.SPECIAL_ELEMENTS={[n.HTML]:{[s.ADDRESS]:!0,[s.APPLET]:!0,[s.AREA]:!0,[s.ARTICLE]:!0,[s.ASIDE]:!0,[s.BASE]:!0,[s.BASEFONT]:!0,[s.BGSOUND]:!0,[s.BLOCKQUOTE]:!0,[s.BODY]:!0,[s.BR]:!0,[s.BUTTON]:!0,[s.CAPTION]:!0,[s.CENTER]:!0,[s.COL]:!0,[s.COLGROUP]:!0,[s.DD]:!0,[s.DETAILS]:!0,[s.DIR]:!0,[s.DIV]:!0,[s.DL]:!0,[s.DT]:!0,[s.EMBED]:!0,[s.FIELDSET]:!0,[s.FIGCAPTION]:!0,[s.FIGURE]:!0,[s.FOOTER]:!0,[s.FORM]:!0,[s.FRAME]:!0,[s.FRAMESET]:!0,[s.H1]:!0,[s.H2]:!0,[s.H3]:!0,[s.H4]:!0,[s.H5]:!0,[s.H6]:!0,[s.HEAD]:!0,[s.HEADER]:!0,[s.HGROUP]:!0,[s.HR]:!0,[s.HTML]:!0,[s.IFRAME]:!0,[s.IMG]:!0,[s.INPUT]:!0,[s.LI]:!0,[s.LINK]:!0,[s.LISTING]:!0,[s.MAIN]:!0,[s.MARQUEE]:!0,[s.MENU]:!0,[s.META]:!0,[s.NAV]:!0,[s.NOEMBED]:!0,[s.NOFRAMES]:!0,[s.NOSCRIPT]:!0,[s.OBJECT]:!0,[s.OL]:!0,[s.P]:!0,[s.PARAM]:!0,[s.PLAINTEXT]:!0,[s.PRE]:!0,[s.SCRIPT]:!0,[s.SECTION]:!0,[s.SELECT]:!0,[s.SOURCE]:!0,[s.STYLE]:!0,[s.SUMMARY]:!0,[s.TABLE]:!0,[s.TBODY]:!0,[s.TD]:!0,[s.TEMPLATE]:!0,[s.TEXTAREA]:!0,[s.TFOOT]:!0,[s.TH]:!0,[s.THEAD]:!0,[s.TITLE]:!0,[s.TR]:!0,[s.TRACK]:!0,[s.UL]:!0,[s.WBR]:!0,[s.XMP]:!0},[n.MATHML]:{[s.MI]:!0,[s.MO]:!0,[s.MN]:!0,[s.MS]:!0,[s.MTEXT]:!0,[s.ANNOTATION_XML]:!0},[n.SVG]:{[s.TITLE]:!0,[s.FOREIGN_OBJECT]:!0,[s.DESC]:!0}};}));const Ot=Ct.TAG_NAMES,ft=Ct.NAMESPACES;function St(e){switch(e.length){case 1:return e===Ot.P;case 2:return e===Ot.RB||e===Ot.RP||e===Ot.RT||e===Ot.DD||e===Ot.DT||e===Ot.LI;case 3:return e===Ot.RTC;case 6:return e===Ot.OPTION;case 8:return e===Ot.OPTGROUP}return !1}function Rt(e){switch(e.length){case 1:return e===Ot.P;case 2:return e===Ot.RB||e===Ot.RP||e===Ot.RT||e===Ot.DD||e===Ot.DT||e===Ot.LI||e===Ot.TD||e===Ot.TH||e===Ot.TR;case 3:return e===Ot.RTC;case 5:return e===Ot.TBODY||e===Ot.TFOOT||e===Ot.THEAD;case 6:return e===Ot.OPTION;case 7:return e===Ot.CAPTION;case 8:return e===Ot.OPTGROUP||e===Ot.COLGROUP}return !1}function It(e,t){switch(e.length){case 2:if(e===Ot.TD||e===Ot.TH)return t===ft.HTML;if(e===Ot.MI||e===Ot.MO||e===Ot.MN||e===Ot.MS)return t===ft.MATHML;break;case 4:if(e===Ot.HTML)return t===ft.HTML;if(e===Ot.DESC)return t===ft.SVG;break;case 5:if(e===Ot.TABLE)return t===ft.HTML;if(e===Ot.MTEXT)return t===ft.MATHML;if(e===Ot.TITLE)return t===ft.SVG;break;case 6:return (e===Ot.APPLET||e===Ot.OBJECT)&&t===ft.HTML;case 7:return (e===Ot.CAPTION||e===Ot.MARQUEE)&&t===ft.HTML;case 8:return e===Ot.TEMPLATE&&t===ft.HTML;case 13:return e===Ot.FOREIGN_OBJECT&&t===ft.SVG;case 14:return e===Ot.ANNOTATION_XML&&t===ft.MATHML}return !1}class Lt{constructor(e){this.length=0,this.entries=[],this.treeAdapter=e,this.bookmark=null;}_getNoahArkConditionCandidates(e){const t=[];if(this.length>=3){const n=this.treeAdapter.getAttrList(e).length,s=this.treeAdapter.getTagName(e),r=this.treeAdapter.getNamespaceURI(e);for(let e=this.length-1;e>=0;e--){const i=this.entries[e];if(i.type===Lt.MARKER_ENTRY)break;const o=i.element,a=this.treeAdapter.getAttrList(o);this.treeAdapter.getTagName(o)===s&&this.treeAdapter.getNamespaceURI(o)===r&&a.length===n&&t.push({idx:e,attrs:a});}}return t.length<3?[]:t}_ensureNoahArkCondition(e){const t=this._getNoahArkConditionCandidates(e);let n=t.length;if(n){const s=this.treeAdapter.getAttrList(e),r=s.length,i=Object.create(null);for(let e=0;e<r;e++){const t=s[e];i[t.name]=t.value;}for(let e=0;e<r;e++)for(let s=0;s<n;s++){const r=t[s].attrs[e];if(i[r.name]!==r.value&&(t.splice(s,1),n--),t.length<3)return}for(let e=n-1;e>=2;e--)this.entries.splice(t[e].idx,1),this.length--;}}insertMarker(){this.entries.push({type:Lt.MARKER_ENTRY}),this.length++;}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.push({type:Lt.ELEMENT_ENTRY,element:e,token:t}),this.length++;}insertElementAfterBookmark(e,t){let n=this.length-1;for(;n>=0&&this.entries[n]!==this.bookmark;n--);this.entries.splice(n+1,0,{type:Lt.ELEMENT_ENTRY,element:e,token:t}),this.length++;}removeEntry(e){for(let t=this.length-1;t>=0;t--)if(this.entries[t]===e){this.entries.splice(t,1),this.length--;break}}clearToLastMarker(){for(;this.length;){const e=this.entries.pop();if(this.length--,e.type===Lt.MARKER_ENTRY)break}}getElementEntryInScopeWithTagName(e){for(let t=this.length-1;t>=0;t--){const n=this.entries[t];if(n.type===Lt.MARKER_ENTRY)return null;if(this.treeAdapter.getTagName(n.element)===e)return n}return null}getElementEntry(e){for(let t=this.length-1;t>=0;t--){const n=this.entries[t];if(n.type===Lt.ELEMENT_ENTRY&&n.element===e)return n}return null}}Lt.MARKER_ENTRY="MARKER_ENTRY",Lt.ELEMENT_ENTRY="ELEMENT_ENTRY";var kt=Lt;class Mt{constructor(e){const t={},n=this._getOverriddenMethods(this,t);for(const s of Object.keys(n))"function"==typeof n[s]&&(t[s]=e[s],e[s]=n[s]);}_getOverriddenMethods(){throw new Error("Not implemented")}}Mt.install=function(e,t,n){e.__mixins||(e.__mixins=[]);for(let n=0;n<e.__mixins.length;n++)if(e.__mixins[n].constructor===t)return e.__mixins[n];const s=new t(e,n);return e.__mixins.push(s),s};var gt=Mt,Pt=class extends gt{constructor(e){super(e),this.preprocessor=e,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.offset=0,this.col=0,this.line=1;}_getOverriddenMethods(e,t){return {advance(){const n=this.pos+1,s=this.html[n];return e.isEol&&(e.isEol=!1,e.line++,e.lineStartPos=n),("\n"===s||"\r"===s&&"\n"!==this.html[n+1])&&(e.isEol=!0),e.col=n-e.lineStartPos+1,e.offset=e.droppedBufferSize+n,t.advance.call(this)},retreat(){t.retreat.call(this),e.isEol=!1,e.col=this.pos-e.lineStartPos+1;},dropParsedChunk(){const n=this.pos;t.dropParsedChunk.call(this);const s=n-this.pos;e.lineStartPos-=s,e.droppedBufferSize+=s,e.offset=e.droppedBufferSize+this.pos;}}}},Ht=class extends gt{constructor(e){super(e),this.tokenizer=e,this.posTracker=gt.install(e.preprocessor,Pt),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 e=this.tokenizer.currentToken,t=this.tokenizer.currentAttr;e.location.attrs||(e.location.attrs=Object.create(null)),e.location.attrs[t.name]=this.currentAttrLocation;}_getOverriddenMethods(e,t){const n={_createStartTagToken(){t._createStartTagToken.call(this),this.currentToken.location=e.ctLoc;},_createEndTagToken(){t._createEndTagToken.call(this),this.currentToken.location=e.ctLoc;},_createCommentToken(){t._createCommentToken.call(this),this.currentToken.location=e.ctLoc;},_createDoctypeToken(n){t._createDoctypeToken.call(this,n),this.currentToken.location=e.ctLoc;},_createCharacterToken(n,s){t._createCharacterToken.call(this,n,s),this.currentCharacterToken.location=e.ctLoc;},_createEOFToken(){t._createEOFToken.call(this),this.currentToken.location=e._getCurrentLocation();},_createAttr(n){t._createAttr.call(this,n),e.currentAttrLocation=e._getCurrentLocation();},_leaveAttrName(n){t._leaveAttrName.call(this,n),e._attachCurrentAttrLocationInfo();},_leaveAttrValue(n){t._leaveAttrValue.call(this,n),e._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===Nt.EOF_TOKEN?(n.endLine=n.startLine,n.endCol=n.startCol,n.endOffset=n.startOffset):(n.endLine=e.posTracker.line,n.endCol=e.posTracker.col+1,n.endOffset=e.posTracker.offset+1),t._emitCurrentToken.call(this);},_emitCurrentCharacterToken(){const n=this.currentCharacterToken&&this.currentCharacterToken.location;n&&-1===n.endOffset&&(n.endLine=e.posTracker.line,n.endCol=e.posTracker.col,n.endOffset=e.posTracker.offset),t._emitCurrentCharacterToken.call(this);}};return Object.keys(Nt.MODE).forEach((s=>{const r=Nt.MODE[s];n[r]=function(n){e.ctLoc=e._getCurrentLocation(),t[r].call(this,n);};})),n}},Dt=class extends gt{constructor(e,t){super(e),this.onItemPop=t.onItemPop;}_getOverriddenMethods(e,t){return {pop(){e.onItemPop(this.current),t.pop.call(this);},popAllUpToHtmlElement(){for(let t=this.stackTop;t>0;t--)e.onItemPop(this.items[t]);t.popAllUpToHtmlElement.call(this);},remove(n){e.onItemPop(this.current),t.remove.call(this,n);}}}};const Ft=Ct.TAG_NAMES;var Ut=class extends gt{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),t.startTag=this.lastStartTagToken.location),this.treeAdapter.setNodeSourceCodeLocation(e,t);}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){const n=t.location,s=this.treeAdapter.getTagName(e),r={};t.type===Nt.END_TAG_TOKEN&&s===t.tagName?(r.endTag=Object.assign({},n),r.endLine=n.endLine,r.endCol=n.endCol,r.endOffset=n.endOffset):(r.endLine=n.startLine,r.endCol=n.startCol,r.endOffset=n.startOffset),this.treeAdapter.updateNodeSourceCodeLocation(e,r);}}_getOverriddenMethods(e,t){return {_bootstrap(n,s){t._bootstrap.call(this,n,s),e.lastStartTagToken=null,e.lastFosterParentingLocation=null,e.currentToken=null;const r=gt.install(this.tokenizer,Ht);e.posTracker=r.posTracker,gt.install(this.openElements,Dt,{onItemPop:function(t){e._setEndLocation(t,e.currentToken);}});},_runParsingLoop(n){t._runParsingLoop.call(this,n);for(let t=this.openElements.stackTop;t>=0;t--)e._setEndLocation(this.openElements.items[t],e.currentToken);},_processTokenInForeignContent(n){e.currentToken=n,t._processTokenInForeignContent.call(this,n);},_processToken(n){if(e.currentToken=n,t._processToken.call(this,n),n.type===Nt.END_TAG_TOKEN&&(n.tagName===Ft.HTML||n.tagName===Ft.BODY&&this.openElements.hasInScope(Ft.BODY)))for(let t=this.openElements.stackTop;t>=0;t--){const s=this.openElements.items[t];if(this.treeAdapter.getTagName(s)===n.tagName){e._setEndLocation(s,n);break}}},_setDocumentType(e){t._setDocumentType.call(this,e);const n=this.treeAdapter.getChildNodes(this.document),s=n.length;for(let t=0;t<s;t++){const s=n[t];if(this.treeAdapter.isDocumentTypeNode(s)){this.treeAdapter.setNodeSourceCodeLocation(s,e.location);break}}},_attachElementToTree(n){e._setStartLocation(n),e.lastStartTagToken=null,t._attachElementToTree.call(this,n);},_appendElement(n,s){e.lastStartTagToken=n,t._appendElement.call(this,n,s);},_insertElement(n,s){e.lastStartTagToken=n,t._insertElement.call(this,n,s);},_insertTemplate(n){e.lastStartTagToken=n,t._insertTemplate.call(this,n);const s=this.treeAdapter.getTemplateContent(this.openElements.current);this.treeAdapter.setNodeSourceCodeLocation(s,null);},_insertFakeRootElement(){t._insertFakeRootElement.call(this),this.treeAdapter.setNodeSourceCodeLocation(this.openElements.current,null);},_appendCommentNode(e,n){t._appendCommentNode.call(this,e,n);const s=this.treeAdapter.getChildNodes(n),r=s[s.length-1];this.treeAdapter.setNodeSourceCodeLocation(r,e.location);},_findFosterParentingLocation(){return e.lastFosterParentingLocation=t._findFosterParentingLocation.call(this),e.lastFosterParentingLocation},_insertCharacters(n){t._insertCharacters.call(this,n);const s=this._shouldFosterParentOnInsertion(),r=s&&e.lastFosterParentingLocation.parent||this.openElements.currentTmplContent||this.openElements.current,i=this.treeAdapter.getChildNodes(r),o=s&&e.lastFosterParentingLocation.beforeElement?i.indexOf(e.lastFosterParentingLocation.beforeElement)-1:i.length-1,a=i[o];if(this.treeAdapter.getNodeSourceCodeLocation(a)){const{endLine:e,endCol:t,endOffset:s}=n.location;this.treeAdapter.updateNodeSourceCodeLocation(a,{endLine:e,endCol:t,endOffset:s});}else this.treeAdapter.setNodeSourceCodeLocation(a,n.location);}}}},Gt=class extends gt{constructor(e,t){super(e),this.posTracker=null,this.onParseError=t.onParseError;}_setErrorLocation(e){e.startLine=e.endLine=this.posTracker.line,e.startCol=e.endCol=this.posTracker.col,e.startOffset=e.endOffset=this.posTracker.offset;}_reportError(e){const t={code:e,startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1};this._setErrorLocation(t),this.onParseError(t);}_getOverriddenMethods(e){return {_err(t){e._reportError(t);}}}},Bt=class extends Gt{constructor(e,t){super(e,t),this.posTracker=gt.install(e,Pt),this.lastErrOffset=-1;}_reportError(e){this.lastErrOffset!==this.posTracker.offset&&(this.lastErrOffset=this.posTracker.offset,super._reportError(e));}},Kt=class extends Gt{constructor(e,t){super(e,t);const n=gt.install(e.preprocessor,Bt,t);this.posTracker=n.posTracker;}},bt=class extends Gt{constructor(e,t){super(e,t),this.opts=t,this.ctLoc=null,this.locBeforeToken=!1;}_setErrorLocation(e){this.ctLoc&&(e.startLine=this.ctLoc.startLine,e.startCol=this.ctLoc.startCol,e.startOffset=this.ctLoc.startOffset,e.endLine=this.locBeforeToken?this.ctLoc.startLine:this.ctLoc.endLine,e.endCol=this.locBeforeToken?this.ctLoc.startCol:this.ctLoc.endCol,e.endOffset=this.locBeforeToken?this.ctLoc.startOffset:this.ctLoc.endOffset);}_getOverriddenMethods(e,t){return {_bootstrap(n,s){t._bootstrap.call(this,n,s),gt.install(this.tokenizer,Kt,e.opts),gt.install(this.tokenizer,Ht);},_processInputToken(n){e.ctLoc=n.location,t._processInputToken.call(this,n);},_err(t,n){e.locBeforeToken=n&&n.beforeToken,e._reportError(t);}}}},xt=dt((function(e,t){const{DOCUMENT_MODE:n}=Ct;t.createDocument=function(){return {nodeName:"#document",mode:n.NO_QUIRKS,childNodes:[]}},t.createDocumentFragment=function(){return {nodeName:"#document-fragment",childNodes:[]}},t.createElement=function(e,t,n){return {nodeName:e,tagName:e,attrs:n,namespaceURI:t,childNodes:[],parentNode:null}},t.createCommentNode=function(e){return {nodeName:"#comment",data:e,parentNode:null}};const s=function(e){return {nodeName:"#text",value:e,parentNode:null}},r=t.appendChild=function(e,t){e.childNodes.push(t),t.parentNode=e;},i=t.insertBefore=function(e,t,n){const s=e.childNodes.indexOf(n);e.childNodes.splice(s,0,t),t.parentNode=e;};t.setTemplateContent=function(e,t){e.content=t;},t.getTemplateContent=function(e){return e.content},t.setDocumentType=function(e,t,n,s){let i=null;for(let t=0;t<e.childNodes.length;t++)if("#documentType"===e.childNodes[t].nodeName){i=e.childNodes[t];break}i?(i.name=t,i.publicId=n,i.systemId=s):r(e,{nodeName:"#documentType",name:t,publicId:n,systemId:s});},t.setDocumentMode=function(e,t){e.mode=t;},t.getDocumentMode=function(e){return e.mode},t.detachNode=function(e){if(e.parentNode){const t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null;}},t.insertText=function(e,t){if(e.childNodes.length){const n=e.childNodes[e.childNodes.length-1];if("#text"===n.nodeName)return void(n.value+=t)}r(e,s(t));},t.insertTextBefore=function(e,t,n){const r=e.childNodes[e.childNodes.indexOf(n)-1];r&&"#text"===r.nodeName?r.value+=t:i(e,s(t),n);},t.adoptAttributes=function(e,t){const n=[];for(let t=0;t<e.attrs.length;t++)n.push(e.attrs[t].name);for(let s=0;s<t.length;s++)-1===n.indexOf(t[s].name)&&e.attrs.push(t[s]);},t.getFirstChild=function(e){return e.childNodes[0]},t.getChildNodes=function(e){return e.childNodes},t.getParentNode=function(e){return e.parentNode},t.getAttrList=function(e){return e.attrs},t.getTagName=function(e){return e.tagName},t.getNamespaceURI=function(e){return e.namespaceURI},t.getTextNodeContent=function(e){return e.value},t.getCommentNodeContent=function(e){return e.data},t.getDocumentTypeNodeName=function(e){return e.name},t.getDocumentTypeNodePublicId=function(e){return e.publicId},t.getDocumentTypeNodeSystemId=function(e){return e.systemId},t.isTextNode=function(e){return "#text"===e.nodeName},t.isCommentNode=function(e){return "#comment"===e.nodeName},t.isDocumentTypeNode=function(e){return "#documentType"===e.nodeName},t.isElementNode=function(e){return !!e.tagName},t.setNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=t;},t.getNodeSourceCodeLocation=function(e){return e.sourceCodeLocation},t.updateNodeSourceCodeLocation=function(e,t){e.sourceCodeLocation=Object.assign(e.sourceCodeLocation,t);};}));const{DOCUMENT_MODE:yt}=Ct,vt="html",Yt=["+//silmaril//dtd html pro v0r11 19970101//","-//as//dtd html 3.0 aswedit + extensions//","-//advasoft ltd//dtd html 3.0 aswedit + extensions//","-//ietf//dtd html 2.0 level 1//","-//ietf//dtd html 2.0 level 2//","-//ietf//dtd html 2.0 strict level 1//","-//ietf//dtd html 2.0 strict level 2//","-//ietf//dtd html 2.0 strict//","-//ietf//dtd html 2.0//","-//ietf//dtd html 2.1e//","-//ietf//dtd html 3.0//","-//ietf//dtd html 3.2 final//","-//ietf//dtd html 3.2//","-//ietf//dtd html 3//","-//ietf//dtd html level 0//","-//ietf//dtd html level 1//","-//ietf//dtd html level 2//","-//ietf//dtd html level 3//","-//ietf//dtd html strict level 0//","-//ietf//dtd html strict level 1//","-//ietf//dtd html strict level 2//","-//ietf//dtd html strict level 3//","-//ietf//dtd html strict//","-//ietf//dtd html//","-//metrius//dtd metrius presentational//","-//microsoft//dtd internet explorer 2.0 html strict//","-//microsoft//dtd internet explorer 2.0 html//","-//microsoft//dtd internet explorer 2.0 tables//","-//microsoft//dtd internet explorer 3.0 html strict//","-//microsoft//dtd internet explorer 3.0 html//","-//microsoft//dtd internet explorer 3.0 tables//","-//netscape comm. corp.//dtd html//","-//netscape comm. corp.//dtd strict html//","-//o'reilly and associates//dtd html 2.0//","-//o'reilly and associates//dtd html extended 1.0//","-//o'reilly and associates//dtd html extended relaxed 1.0//","-//sq//dtd html 2.0 hotmetal + extensions//","-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//","-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//","-//spyglass//dtd html 2.0 extended//","-//sun microsystems corp.//dtd hotjava html//","-//sun microsystems corp.//dtd hotjava strict html//","-//w3c//dtd html 3 1995-03-24//","-//w3c//dtd html 3.2 draft//","-//w3c//dtd html 3.2 final//","-//w3c//dtd html 3.2//","-//w3c//dtd html 3.2s draft//","-//w3c//dtd html 4.0 frameset//","-//w3c//dtd html 4.0 transitional//","-//w3c//dtd html experimental 19960712//","-//w3c//dtd html experimental 970421//","-//w3c//dtd w3 html//","-//w3o//dtd w3 html 3.0//","-//webtechs//dtd mozilla html 2.0//","-//webtechs//dtd mozilla html//"],wt=Yt.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]),Qt=["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"],Xt=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],Wt=Xt.concat(["-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"]);function Vt(e,t){for(let n=0;n<t.length;n++)if(0===e.indexOf(t[n]))return !0;return !1}var jt=dt((function(e,t){const n=Ct.TAG_NAMES,s=Ct.NAMESPACES,r=Ct.ATTRS,i={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"},o={"xlink:actuate":{prefix:"xlink",name:"actuate",namespace:s.XLINK},"xlink:arcrole":{prefix:"xlink",name:"arcrole",namespace:s.XLINK},"xlink:href":{prefix:"xlink",name:"href",namespace:s.XLINK},"xlink:role":{prefix:"xlink",name:"role",namespace:s.XLINK},"xlink:show":{prefix:"xlink",name:"show",namespace:s.XLINK},"xlink:title":{prefix:"xlink",name:"title",namespace:s.XLINK},"xlink:type":{prefix:"xlink",name:"type",namespace:s.XLINK},"xml:base":{prefix:"xml",name:"base",namespace:s.XML},"xml:lang":{prefix:"xml",name:"lang",namespace:s.XML},"xml:space":{prefix:"xml",name:"space",namespace:s.XML},xmlns:{prefix:"",name:"xmlns",namespace:s.XMLNS},"xmlns:xlink":{prefix:"xmlns",name:"xlink",namespace:s.XMLNS}},a=t.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"},T={[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};t.causesExit=function(e){const t=e.tagName;return !(t!==n.FONT||null===Nt.getTokenAttr(e,r.COLOR)&&null===Nt.getTokenAttr(e,r.SIZE)&&null===Nt.getTokenAttr(e,r.FACE))||T[t]},t.adjustTokenMathMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++)if("definitionurl"===e.attrs[t].name){e.attrs[t].name="definitionURL";break}},t.adjustTokenSVGAttrs=function(e){for(let t=0;t<e.attrs.length;t++){const n=i[e.attrs[t].name];n&&(e.attrs[t].name=n);}},t.adjustTokenXMLAttrs=function(e){for(let t=0;t<e.attrs.length;t++){const n=o[e.attrs[t].name];n&&(e.attrs[t].prefix=n.prefix,e.attrs[t].name=n.name,e.attrs[t].namespace=n.namespace);}},t.adjustTokenSVGTagName=function(e){const t=a[e.tagName];t&&(e.tagName=t);},t.isIntegrationPoint=function(e,t,i,o){return !(o&&o!==s.HTML||!function(e,t,i){if(t===s.MATHML&&e===n.ANNOTATION_XML)for(let e=0;e<i.length;e++)if(i[e].name===r.ENCODING){const t=i[e].value.toLowerCase();return "text/html"===t||"application/xhtml+xml"===t}return t===s.SVG&&(e===n.FOREIGN_OBJECT||e===n.DESC||e===n.TITLE)}(e,t,i))||!(o&&o!==s.MATHML||!function(e,t){return t===s.MATHML&&(e===n.MI||e===n.MO||e===n.MN||e===n.MS||e===n.MTEXT)}(e,t))};}));const zt=Ct.TAG_NAMES,qt=Ct.NAMESPACES,Jt=Ct.ATTRS,Zt={scriptingEnabled:!0,sourceCodeLocationInfo:!1,onParseError:null,treeAdapter:xt},$t="hidden",en="INITIAL_MODE",tn="BEFORE_HTML_MODE",nn="BEFORE_HEAD_MODE",sn="IN_HEAD_MODE",rn="IN_HEAD_NO_SCRIPT_MODE",on="AFTER_HEAD_MODE",an="IN_BODY_MODE",Tn="TEXT_MODE",En="IN_TABLE_MODE",hn="IN_TABLE_TEXT_MODE",cn="IN_CAPTION_MODE",_n="IN_COLUMN_GROUP_MODE",ln="IN_TABLE_BODY_MODE",mn="IN_ROW_MODE",pn="IN_CELL_MODE",An="IN_SELECT_MODE",un="IN_SELECT_IN_TABLE_MODE",Nn="IN_TEMPLATE_MODE",dn="AFTER_BODY_MODE",Cn="IN_FRAMESET_MODE",On="AFTER_FRAMESET_MODE",fn="AFTER_AFTER_BODY_MODE",Sn="AFTER_AFTER_FRAMESET_MODE",Rn={[zt.TR]:mn,[zt.TBODY]:ln,[zt.THEAD]:ln,[zt.TFOOT]:ln,[zt.CAPTION]:cn,[zt.COLGROUP]:_n,[zt.TABLE]:En,[zt.BODY]:an,[zt.FRAMESET]:Cn},In={[zt.CAPTION]:En,[zt.COLGROUP]:En,[zt.TBODY]:En,[zt.TFOOT]:En,[zt.THEAD]:En,[zt.COL]:_n,[zt.TR]:ln,[zt.TD]:mn,[zt.TH]:mn},Ln={[en]:{[Nt.CHARACTER_TOKEN]:vn,[Nt.NULL_CHARACTER_TOKEN]:vn,[Nt.WHITESPACE_CHARACTER_TOKEN]:Gn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:function(e,t){e._setDocumentType(t);const n=t.forceQuirks?Ct.DOCUMENT_MODE.QUIRKS:function(e){if(e.name!==vt)return yt.QUIRKS;const t=e.systemId;if(t&&"http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"===t.toLowerCase())return yt.QUIRKS;let n=e.publicId;if(null!==n){if(n=n.toLowerCase(),Qt.indexOf(n)>-1)return yt.QUIRKS;let e=null===t?wt:Yt;if(Vt(n,e))return yt.QUIRKS;if(e=null===t?Xt:Wt,Vt(n,e))return yt.LIMITED_QUIRKS}return yt.NO_QUIRKS}(t);(function(e){return e.name===vt&&null===e.publicId&&(null===e.systemId||"about:legacy-compat"===e.systemId)})(t)||e._err("non-conforming-doctype"),e.treeAdapter.setDocumentMode(e.document,n),e.insertionMode=tn;},[Nt.START_TAG_TOKEN]:vn,[Nt.END_TAG_TOKEN]:vn,[Nt.EOF_TOKEN]:vn},[tn]:{[Nt.CHARACTER_TOKEN]:Yn,[Nt.NULL_CHARACTER_TOKEN]:Yn,[Nt.WHITESPACE_CHARACTER_TOKEN]:Gn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){t.tagName===zt.HTML?(e._insertElement(t,qt.HTML),e.insertionMode=nn):Yn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n!==zt.HTML&&n!==zt.HEAD&&n!==zt.BODY&&n!==zt.BR||Yn(e,t);},[Nt.EOF_TOKEN]:Yn},[nn]:{[Nt.CHARACTER_TOKEN]:wn,[Nt.NULL_CHARACTER_TOKEN]:wn,[Nt.WHITESPACE_CHARACTER_TOKEN]:Gn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Bn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.HEAD?(e._insertElement(t,qt.HTML),e.headElement=e.openElements.current,e.insertionMode=sn):wn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HEAD||n===zt.BODY||n===zt.HTML||n===zt.BR?wn(e,t):e._err(L);},[Nt.EOF_TOKEN]:wn},[sn]:{[Nt.CHARACTER_TOKEN]:Wn,[Nt.NULL_CHARACTER_TOKEN]:Wn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Bn,[Nt.START_TAG_TOKEN]:Qn,[Nt.END_TAG_TOKEN]:Xn,[Nt.EOF_TOKEN]:Wn},[rn]:{[Nt.CHARACTER_TOKEN]:Vn,[Nt.NULL_CHARACTER_TOKEN]:Vn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Bn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.BASEFONT||n===zt.BGSOUND||n===zt.HEAD||n===zt.LINK||n===zt.META||n===zt.NOFRAMES||n===zt.STYLE?Qn(e,t):n===zt.NOSCRIPT?e._err("nested-noscript-in-head"):Vn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.NOSCRIPT?(e.openElements.pop(),e.insertionMode=sn):n===zt.BR?Vn(e,t):e._err(L);},[Nt.EOF_TOKEN]:Vn},[on]:{[Nt.CHARACTER_TOKEN]:jn,[Nt.NULL_CHARACTER_TOKEN]:jn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Bn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.BODY?(e._insertElement(t,qt.HTML),e.framesetOk=!1,e.insertionMode=an):n===zt.FRAMESET?(e._insertElement(t,qt.HTML),e.insertionMode=Cn):n===zt.BASE||n===zt.BASEFONT||n===zt.BGSOUND||n===zt.LINK||n===zt.META||n===zt.NOFRAMES||n===zt.SCRIPT||n===zt.STYLE||n===zt.TEMPLATE||n===zt.TITLE?(e._err("abandoned-head-element-child"),e.openElements.push(e.headElement),Qn(e,t),e.openElements.remove(e.headElement)):n===zt.HEAD?e._err(k):jn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.BODY||n===zt.HTML||n===zt.BR?jn(e,t):n===zt.TEMPLATE?Xn(e,t):e._err(L);},[Nt.EOF_TOKEN]:jn},[an]:{[Nt.CHARACTER_TOKEN]:qn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:as,[Nt.END_TAG_TOKEN]:cs,[Nt.EOF_TOKEN]:_s},[Tn]:{[Nt.CHARACTER_TOKEN]:xn,[Nt.NULL_CHARACTER_TOKEN]:xn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Gn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:Gn,[Nt.END_TAG_TOKEN]:function(e,t){t.tagName===zt.SCRIPT&&(e.pendingScript=e.openElements.current),e.openElements.pop(),e.insertionMode=e.originalInsertionMode;},[Nt.EOF_TOKEN]:function(e,t){e._err("eof-in-element-that-can-contain-only-text"),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e._processToken(t);}},[En]:{[Nt.CHARACTER_TOKEN]:ls,[Nt.NULL_CHARACTER_TOKEN]:ls,[Nt.WHITESPACE_CHARACTER_TOKEN]:ls,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:ms,[Nt.END_TAG_TOKEN]:ps,[Nt.EOF_TOKEN]:_s},[hn]:{[Nt.CHARACTER_TOKEN]:function(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0;},[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:function(e,t){e.pendingCharacterTokens.push(t);},[Nt.COMMENT_TOKEN]:us,[Nt.DOCTYPE_TOKEN]:us,[Nt.START_TAG_TOKEN]:us,[Nt.END_TAG_TOKEN]:us,[Nt.EOF_TOKEN]:us},[cn]:{[Nt.CHARACTER_TOKEN]:qn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.CAPTION||n===zt.COL||n===zt.COLGROUP||n===zt.TBODY||n===zt.TD||n===zt.TFOOT||n===zt.TH||n===zt.THEAD||n===zt.TR?e.openElements.hasInTableScope(zt.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(zt.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=En,e._processToken(t)):as(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.CAPTION||n===zt.TABLE?e.openElements.hasInTableScope(zt.CAPTION)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(zt.CAPTION),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=En,n===zt.TABLE&&e._processToken(t)):n!==zt.BODY&&n!==zt.COL&&n!==zt.COLGROUP&&n!==zt.HTML&&n!==zt.TBODY&&n!==zt.TD&&n!==zt.TFOOT&&n!==zt.TH&&n!==zt.THEAD&&n!==zt.TR&&cs(e,t);},[Nt.EOF_TOKEN]:_s},[_n]:{[Nt.CHARACTER_TOKEN]:Ns,[Nt.NULL_CHARACTER_TOKEN]:Ns,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.COL?(e._appendElement(t,qt.HTML),t.ackSelfClosing=!0):n===zt.TEMPLATE?Qn(e,t):Ns(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.COLGROUP?e.openElements.currentTagName===zt.COLGROUP&&(e.openElements.pop(),e.insertionMode=En):n===zt.TEMPLATE?Xn(e,t):n!==zt.COL&&Ns(e,t);},[Nt.EOF_TOKEN]:_s},[ln]:{[Nt.CHARACTER_TOKEN]:ls,[Nt.NULL_CHARACTER_TOKEN]:ls,[Nt.WHITESPACE_CHARACTER_TOKEN]:ls,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.TR?(e.openElements.clearBackToTableBodyContext(),e._insertElement(t,qt.HTML),e.insertionMode=mn):n===zt.TH||n===zt.TD?(e.openElements.clearBackToTableBodyContext(),e._insertFakeElement(zt.TR),e.insertionMode=mn,e._processToken(t)):n===zt.CAPTION||n===zt.COL||n===zt.COLGROUP||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=En,e._processToken(t)):ms(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD?e.openElements.hasInTableScope(n)&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=En):n===zt.TABLE?e.openElements.hasTableBodyContextInTableScope()&&(e.openElements.clearBackToTableBodyContext(),e.openElements.pop(),e.insertionMode=En,e._processToken(t)):(n!==zt.BODY&&n!==zt.CAPTION&&n!==zt.COL&&n!==zt.COLGROUP||n!==zt.HTML&&n!==zt.TD&&n!==zt.TH&&n!==zt.TR)&&ps(e,t);},[Nt.EOF_TOKEN]:_s},[mn]:{[Nt.CHARACTER_TOKEN]:ls,[Nt.NULL_CHARACTER_TOKEN]:ls,[Nt.WHITESPACE_CHARACTER_TOKEN]:ls,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.TH||n===zt.TD?(e.openElements.clearBackToTableRowContext(),e._insertElement(t,qt.HTML),e.insertionMode=pn,e.activeFormattingElements.insertMarker()):n===zt.CAPTION||n===zt.COL||n===zt.COLGROUP||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD||n===zt.TR?e.openElements.hasInTableScope(zt.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=ln,e._processToken(t)):ms(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.TR?e.openElements.hasInTableScope(zt.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=ln):n===zt.TABLE?e.openElements.hasInTableScope(zt.TR)&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=ln,e._processToken(t)):n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD?(e.openElements.hasInTableScope(n)||e.openElements.hasInTableScope(zt.TR))&&(e.openElements.clearBackToTableRowContext(),e.openElements.pop(),e.insertionMode=ln,e._processToken(t)):(n!==zt.BODY&&n!==zt.CAPTION&&n!==zt.COL&&n!==zt.COLGROUP||n!==zt.HTML&&n!==zt.TD&&n!==zt.TH)&&ps(e,t);},[Nt.EOF_TOKEN]:_s},[pn]:{[Nt.CHARACTER_TOKEN]:qn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.CAPTION||n===zt.COL||n===zt.COLGROUP||n===zt.TBODY||n===zt.TD||n===zt.TFOOT||n===zt.TH||n===zt.THEAD||n===zt.TR?(e.openElements.hasInTableScope(zt.TD)||e.openElements.hasInTableScope(zt.TH))&&(e._closeTableCell(),e._processToken(t)):as(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.TD||n===zt.TH?e.openElements.hasInTableScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker(),e.insertionMode=mn):n===zt.TABLE||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD||n===zt.TR?e.openElements.hasInTableScope(n)&&(e._closeTableCell(),e._processToken(t)):n!==zt.BODY&&n!==zt.CAPTION&&n!==zt.COL&&n!==zt.COLGROUP&&n!==zt.HTML&&cs(e,t);},[Nt.EOF_TOKEN]:_s},[An]:{[Nt.CHARACTER_TOKEN]:xn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:ds,[Nt.END_TAG_TOKEN]:Cs,[Nt.EOF_TOKEN]:_s},[un]:{[Nt.CHARACTER_TOKEN]:xn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.CAPTION||n===zt.TABLE||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD||n===zt.TR||n===zt.TD||n===zt.TH?(e.openElements.popUntilTagNamePopped(zt.SELECT),e._resetInsertionMode(),e._processToken(t)):ds(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.CAPTION||n===zt.TABLE||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD||n===zt.TR||n===zt.TD||n===zt.TH?e.openElements.hasInTableScope(n)&&(e.openElements.popUntilTagNamePopped(zt.SELECT),e._resetInsertionMode(),e._processToken(t)):Cs(e,t);},[Nt.EOF_TOKEN]:_s},[Nn]:{[Nt.CHARACTER_TOKEN]:qn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;if(n===zt.BASE||n===zt.BASEFONT||n===zt.BGSOUND||n===zt.LINK||n===zt.META||n===zt.NOFRAMES||n===zt.SCRIPT||n===zt.STYLE||n===zt.TEMPLATE||n===zt.TITLE)Qn(e,t);else {const s=In[n]||an;e._popTmplInsertionMode(),e._pushTmplInsertionMode(s),e.insertionMode=s,e._processToken(t);}},[Nt.END_TAG_TOKEN]:function(e,t){t.tagName===zt.TEMPLATE&&Xn(e,t);},[Nt.EOF_TOKEN]:Os},[dn]:{[Nt.CHARACTER_TOKEN]:fs,[Nt.NULL_CHARACTER_TOKEN]:fs,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:function(e,t){e._appendCommentNode(t,e.openElements.items[0]);},[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){t.tagName===zt.HTML?as(e,t):fs(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){t.tagName===zt.HTML?e.fragmentContext||(e.insertionMode=fn):fs(e,t);},[Nt.EOF_TOKEN]:yn},[Cn]:{[Nt.CHARACTER_TOKEN]:Gn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.FRAMESET?e._insertElement(t,qt.HTML):n===zt.FRAME?(e._appendElement(t,qt.HTML),t.ackSelfClosing=!0):n===zt.NOFRAMES&&Qn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){t.tagName!==zt.FRAMESET||e.openElements.isRootHtmlElementCurrent()||(e.openElements.pop(),e.fragmentContext||e.openElements.currentTagName===zt.FRAMESET||(e.insertionMode=On));},[Nt.EOF_TOKEN]:yn},[On]:{[Nt.CHARACTER_TOKEN]:Gn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:xn,[Nt.COMMENT_TOKEN]:Kn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.NOFRAMES&&Qn(e,t);},[Nt.END_TAG_TOKEN]:function(e,t){t.tagName===zt.HTML&&(e.insertionMode=Sn);},[Nt.EOF_TOKEN]:yn},[fn]:{[Nt.CHARACTER_TOKEN]:Ss,[Nt.NULL_CHARACTER_TOKEN]:Ss,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:bn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){t.tagName===zt.HTML?as(e,t):Ss(e,t);},[Nt.END_TAG_TOKEN]:Ss,[Nt.EOF_TOKEN]:yn},[Sn]:{[Nt.CHARACTER_TOKEN]:Gn,[Nt.NULL_CHARACTER_TOKEN]:Gn,[Nt.WHITESPACE_CHARACTER_TOKEN]:zn,[Nt.COMMENT_TOKEN]:bn,[Nt.DOCTYPE_TOKEN]:Gn,[Nt.START_TAG_TOKEN]:function(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.NOFRAMES&&Qn(e,t);},[Nt.END_TAG_TOKEN]:Gn,[Nt.EOF_TOKEN]:yn}};var kn=class{constructor(e){this.options=function(e,t){return [e,t=t||Object.create(null)].reduce(((e,t)=>(Object.keys(t).forEach((n=>{e[n]=t[n];})),e)),Object.create(null))}(Zt,e),this.treeAdapter=this.options.treeAdapter,this.pendingScript=null,this.options.sourceCodeLocationInfo&&gt.install(this,Ut),this.options.onParseError&&gt.install(this,bt,{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(zt.TEMPLATE,qt.HTML,[]));const n=this.treeAdapter.createElement("documentmock",qt.HTML,[]);this._bootstrap(n,t),this.treeAdapter.getTagName(t)===zt.TEMPLATE&&this._pushTmplInsertionMode(Nn),this._initTokenizerForFragmentParsing(),this._insertFakeRootElement(),this._resetInsertionMode(),this._findFormInFragmentContext(),this.tokenizer.write(e,!0),this._runParsingLoop(null);const s=this.treeAdapter.getFirstChild(n),r=this.treeAdapter.createDocumentFragment();return this._adoptNodes(s,r),r}_bootstrap(e,t){this.tokenizer=new Nt(this.options),this.stopped=!1,this.insertionMode=en,this.originalInsertionMode="",this.document=e,this.fragmentContext=t,this.headElement=null,this.formElement=null,this.openElements=new class{constructor(e,t){this.stackTop=-1,this.items=[],this.current=e,this.currentTagName=null,this.currentTmplContent=null,this.tmplCount=0,this.treeAdapter=t;}_indexOf(e){let t=-1;for(let n=this.stackTop;n>=0;n--)if(this.items[n]===e){t=n;break}return t}_isInTemplate(){return this.currentTagName===Ot.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===ft.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(e){this.items[++this.stackTop]=e,this._updateCurrentElement(),this._isInTemplate()&&this.tmplCount++;}pop(){this.stackTop--,this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this._updateCurrentElement();}replace(e,t){const n=this._indexOf(e);this.items[n]=t,n===this.stackTop&&this._updateCurrentElement();}insertAfter(e,t){const n=this._indexOf(e)+1;this.items.splice(n,0,t),n===++this.stackTop&&this._updateCurrentElement();}popUntilTagNamePopped(e){for(;this.stackTop>-1;){const t=this.currentTagName,n=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),t===e&&n===ft.HTML)break}}popUntilElementPopped(e){for(;this.stackTop>-1;){const t=this.current;if(this.pop(),t===e)break}}popUntilNumberedHeaderPopped(){for(;this.stackTop>-1;){const e=this.currentTagName,t=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),e===Ot.H1||e===Ot.H2||e===Ot.H3||e===Ot.H4||e===Ot.H5||e===Ot.H6&&t===ft.HTML)break}}popUntilTableCellPopped(){for(;this.stackTop>-1;){const e=this.currentTagName,t=this.treeAdapter.getNamespaceURI(this.current);if(this.pop(),e===Ot.TD||e===Ot.TH&&t===ft.HTML)break}}popAllUpToHtmlElement(){this.stackTop=0,this._updateCurrentElement();}clearBackToTableContext(){for(;this.currentTagName!==Ot.TABLE&&this.currentTagName!==Ot.TEMPLATE&&this.currentTagName!==Ot.HTML||this.treeAdapter.getNamespaceURI(this.current)!==ft.HTML;)this.pop();}clearBackToTableBodyContext(){for(;this.currentTagName!==Ot.TBODY&&this.currentTagName!==Ot.TFOOT&&this.currentTagName!==Ot.THEAD&&this.currentTagName!==Ot.TEMPLATE&&this.currentTagName!==Ot.HTML||this.treeAdapter.getNamespaceURI(this.current)!==ft.HTML;)this.pop();}clearBackToTableRowContext(){for(;this.currentTagName!==Ot.TR&&this.currentTagName!==Ot.TEMPLATE&&this.currentTagName!==Ot.HTML||this.treeAdapter.getNamespaceURI(this.current)!==ft.HTML;)this.pop();}remove(e){for(let t=this.stackTop;t>=0;t--)if(this.items[t]===e){this.items.splice(t,1),this.stackTop--,this._updateCurrentElement();break}}tryPeekProperlyNestedBodyElement(){const e=this.items[1];return e&&this.treeAdapter.getTagName(e)===Ot.BODY?e:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){let t=this._indexOf(e);return --t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return 0===this.stackTop&&this.currentTagName===Ot.HTML}hasInScope(e){for(let t=this.stackTop;t>=0;t--){const n=this.treeAdapter.getTagName(this.items[t]),s=this.treeAdapter.getNamespaceURI(this.items[t]);if(n===e&&s===ft.HTML)return !0;if(It(n,s))return !1}return !0}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){const t=this.treeAdapter.getTagName(this.items[e]),n=this.treeAdapter.getNamespaceURI(this.items[e]);if((t===Ot.H1||t===Ot.H2||t===Ot.H3||t===Ot.H4||t===Ot.H5||t===Ot.H6)&&n===ft.HTML)return !0;if(It(t,n))return !1}return !0}hasInListItemScope(e){for(let t=this.stackTop;t>=0;t--){const n=this.treeAdapter.getTagName(this.items[t]),s=this.treeAdapter.getNamespaceURI(this.items[t]);if(n===e&&s===ft.HTML)return !0;if((n===Ot.UL||n===Ot.OL)&&s===ft.HTML||It(n,s))return !1}return !0}hasInButtonScope(e){for(let t=this.stackTop;t>=0;t--){const n=this.treeAdapter.getTagName(this.items[t]),s=this.treeAdapter.getNamespaceURI(this.items[t]);if(n===e&&s===ft.HTML)return !0;if(n===Ot.BUTTON&&s===ft.HTML||It(n,s))return !1}return !0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--){const n=this.treeAdapter.getTagName(this.items[t]);if(this.treeAdapter.getNamespaceURI(this.items[t])===ft.HTML){if(n===e)return !0;if(n===Ot.TABLE||n===Ot.TEMPLATE||n===Ot.HTML)return !1}}return !0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--){const t=this.treeAdapter.getTagName(this.items[e]);if(this.treeAdapter.getNamespaceURI(this.items[e])===ft.HTML){if(t===Ot.TBODY||t===Ot.THEAD||t===Ot.TFOOT)return !0;if(t===Ot.TABLE||t===Ot.HTML)return !1}}return !0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--){const n=this.treeAdapter.getTagName(this.items[t]);if(this.treeAdapter.getNamespaceURI(this.items[t])===ft.HTML){if(n===e)return !0;if(n!==Ot.OPTION&&n!==Ot.OPTGROUP)return !1}}return !0}generateImpliedEndTags(){for(;St(this.currentTagName);)this.pop();}generateImpliedEndTagsThoroughly(){for(;Rt(this.currentTagName);)this.pop();}generateImpliedEndTagsWithExclusion(e){for(;St(this.currentTagName)&&this.currentTagName!==e;)this.pop();}}(this.document,this.treeAdapter),this.activeFormattingElements=new kt(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(e){for(;!this.stopped;){this._setupTokenizerCDATAMode();const t=this.tokenizer.getNextToken();if(t.type===Nt.HIBERNATION_TOKEN)break;if(this.skipNextNewLine&&(this.skipNextNewLine=!1,t.type===Nt.WHITESPACE_CHARACTER_TOKEN&&"\n"===t.chars[0])){if(1===t.chars.length)continue;t.chars=t.chars.substr(1);}if(this._processInputToken(t),e&&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)!==qt.HTML&&!this._isIntegrationPoint(e);}_switchToTextParsing(e,t){this._insertElement(e,qt.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=Tn;}switchToPlaintextParsing(){this.insertionMode=Tn,this.originalInsertionMode=an,this.tokenizer.state=Nt.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)===zt.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e);}while(e)}_initTokenizerForFragmentParsing(){if(this.treeAdapter.getNamespaceURI(this.fragmentContext)===qt.HTML){const e=this.treeAdapter.getTagName(this.fragmentContext);e===zt.TITLE||e===zt.TEXTAREA?this.tokenizer.state=Nt.MODE.RCDATA:e===zt.STYLE||e===zt.XMP||e===zt.IFRAME||e===zt.NOEMBED||e===zt.NOFRAMES||e===zt.NOSCRIPT?this.tokenizer.state=Nt.MODE.RAWTEXT:e===zt.SCRIPT?this.tokenizer.state=Nt.MODE.SCRIPT_DATA:e===zt.PLAINTEXT&&(this.tokenizer.state=Nt.MODE.PLAINTEXT);}}_setDocumentType(e){const t=e.name||"",n=e.publicId||"",s=e.systemId||"";this.treeAdapter.setDocumentType(this.document,t,n,s);}_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,qt.HTML,[]);this._attachElementToTree(t),this.openElements.push(t);}_insertTemplate(e){const t=this.treeAdapter.createElement(e.tagName,qt.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(zt.HTML,qt.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(e){const t=this._getAdjustedCurrentElement();if(!t||t===this.document)return !1;const n=this.treeAdapter.getNamespaceURI(t);if(n===qt.HTML)return !1;if(this.treeAdapter.getTagName(t)===zt.ANNOTATION_XML&&n===qt.MATHML&&e.type===Nt.START_TAG_TOKEN&&e.tagName===zt.SVG)return !1;const s=e.type===Nt.CHARACTER_TOKEN||e.type===Nt.NULL_CHARACTER_TOKEN||e.type===Nt.WHITESPACE_CHARACTER_TOKEN;return !((e.type===Nt.START_TAG_TOKEN&&e.tagName!==zt.MGLYPH&&e.tagName!==zt.MALIGNMARK||s)&&this._isIntegrationPoint(t,qt.MATHML)||(e.type===Nt.START_TAG_TOKEN||s)&&this._isIntegrationPoint(t,qt.HTML)||e.type===Nt.EOF_TOKEN)}_processToken(e){Ln[this.insertionMode][e.type](this,e);}_processTokenInBodyMode(e){Ln.IN_BODY_MODE[e.type](this,e);}_processTokenInForeignContent(e){e.type===Nt.CHARACTER_TOKEN?function(e,t){e._insertCharacters(t),e.framesetOk=!1;}(this,e):e.type===Nt.NULL_CHARACTER_TOKEN?function(e,t){t.chars=n,e._insertCharacters(t);}(this,e):e.type===Nt.WHITESPACE_CHARACTER_TOKEN?xn(this,e):e.type===Nt.COMMENT_TOKEN?Kn(this,e):e.type===Nt.START_TAG_TOKEN?function(e,t){if(jt.causesExit(t)&&!e.fragmentContext){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==qt.HTML&&!e._isIntegrationPoint(e.openElements.current);)e.openElements.pop();e._processToken(t);}else {const n=e._getAdjustedCurrentElement(),s=e.treeAdapter.getNamespaceURI(n);s===qt.MATHML?jt.adjustTokenMathMLAttrs(t):s===qt.SVG&&(jt.adjustTokenSVGTagName(t),jt.adjustTokenSVGAttrs(t)),jt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,s):e._insertElement(t,s),t.ackSelfClosing=!0;}}(this,e):e.type===Nt.END_TAG_TOKEN&&function(e,t){for(let n=e.openElements.stackTop;n>0;n--){const s=e.openElements.items[n];if(e.treeAdapter.getNamespaceURI(s)===qt.HTML){e._processToken(t);break}if(e.treeAdapter.getTagName(s).toLowerCase()===t.tagName){e.openElements.popUntilElementPopped(s);break}}}(this,e);}_processInputToken(e){this._shouldProcessTokenInForeignContent(e)?this._processTokenInForeignContent(e):this._processToken(e),e.type===Nt.START_TAG_TOKEN&&e.selfClosing&&!e.ackSelfClosing&&this._err("non-void-html-element-start-tag-with-trailing-solidus");}_isIntegrationPoint(e,t){const n=this.treeAdapter.getTagName(e),s=this.treeAdapter.getNamespaceURI(e),r=this.treeAdapter.getAttrList(e);return jt.isIntegrationPoint(n,s,r,t)}_reconstructActiveFormattingElements(){const e=this.activeFormattingElements.length;if(e){let t=e,n=null;do{if(t--,n=this.activeFormattingElements.entries[t],n.type===kt.MARKER_ENTRY||this.openElements.contains(n.element)){t++;break}}while(t>0);for(let s=t;s<e;s++)n=this.activeFormattingElements.entries[s],this._insertElement(n.token,this.treeAdapter.getNamespaceURI(n.element)),n.element=this.openElements.current;}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=mn;}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(zt.P),this.openElements.popUntilTagNamePopped(zt.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 s=this.treeAdapter.getTagName(n),r=Rn[s];if(r){this.insertionMode=r;break}if(!(t||s!==zt.TD&&s!==zt.TH)){this.insertionMode=pn;break}if(!t&&s===zt.HEAD){this.insertionMode=sn;break}if(s===zt.SELECT){this._resetInsertionModeForSelect(e);break}if(s===zt.TEMPLATE){this.insertionMode=this.currentTmplInsertionMode;break}if(s===zt.HTML){this.insertionMode=this.headElement?on:nn;break}if(t){this.insertionMode=an;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===zt.TEMPLATE)break;if(n===zt.TABLE)return void(this.insertionMode=un)}this.insertionMode=An;}_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===zt.TABLE||t===zt.TBODY||t===zt.TFOOT||t===zt.THEAD||t===zt.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],s=this.treeAdapter.getTagName(n),r=this.treeAdapter.getNamespaceURI(n);if(s===zt.TEMPLATE&&r===qt.HTML){e.parent=this.treeAdapter.getTemplateContent(n);break}if(s===zt.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 Ct.SPECIAL_ELEMENTS[n][t]}};function Mn(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):hs(e,t),n}function gn(e,t){let n=null;for(let s=e.openElements.stackTop;s>=0;s--){const r=e.openElements.items[s];if(r===t.element)break;e._isSpecialElement(r)&&(n=r);}return n||(e.openElements.popUntilElementPopped(t.element),e.activeFormattingElements.removeEntry(t)),n}function Pn(e,t,n){let s=t,r=e.openElements.getCommonAncestor(t);for(let i=0,o=r;o!==n;i++,o=r){r=e.openElements.getCommonAncestor(o);const n=e.activeFormattingElements.getElementEntry(o),a=n&&i>=3;!n||a?(a&&e.activeFormattingElements.removeEntry(n),e.openElements.remove(o)):(o=Hn(e,n),s===t&&(e.activeFormattingElements.bookmark=n),e.treeAdapter.detachNode(s),e.treeAdapter.appendChild(o,s),s=o);}return s}function Hn(e,t){const n=e.treeAdapter.getNamespaceURI(t.element),s=e.treeAdapter.createElement(t.token.tagName,n,t.token.attrs);return e.openElements.replace(t.element,s),t.element=s,s}function Dn(e,t,n){if(e._isElementCausesFosterParenting(t))e._fosterParentElement(n);else {const s=e.treeAdapter.getTagName(t),r=e.treeAdapter.getNamespaceURI(t);s===zt.TEMPLATE&&r===qt.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,n);}}function Fn(e,t,n){const s=e.treeAdapter.getNamespaceURI(n.element),r=n.token,i=e.treeAdapter.createElement(r.tagName,s,r.attrs);e._adoptNodes(t,i),e.treeAdapter.appendChild(t,i),e.activeFormattingElements.insertElementAfterBookmark(i,n.token),e.activeFormattingElements.removeEntry(n),e.openElements.remove(n.element),e.openElements.insertAfter(t,i);}function Un(e,t){let n;for(let s=0;s<8&&(n=Mn(e,t),n);s++){const t=gn(e,n);if(!t)break;e.activeFormattingElements.bookmark=n;const s=Pn(e,t,n.element),r=e.openElements.getCommonAncestor(n.element);e.treeAdapter.detachNode(s),Dn(e,r,s),Fn(e,t,n);}}function Gn(){}function Bn(e){e._err("misplaced-doctype");}function Kn(e,t){e._appendCommentNode(t,e.openElements.currentTmplContent||e.openElements.current);}function bn(e,t){e._appendCommentNode(t,e.document);}function xn(e,t){e._insertCharacters(t);}function yn(e){e.stopped=!0;}function vn(e,t){e._err("missing-doctype",{beforeToken:!0}),e.treeAdapter.setDocumentMode(e.document,Ct.DOCUMENT_MODE.QUIRKS),e.insertionMode=tn,e._processToken(t);}function Yn(e,t){e._insertFakeRootElement(),e.insertionMode=nn,e._processToken(t);}function wn(e,t){e._insertFakeElement(zt.HEAD),e.headElement=e.openElements.current,e.insertionMode=sn,e._processToken(t);}function Qn(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.BASE||n===zt.BASEFONT||n===zt.BGSOUND||n===zt.LINK||n===zt.META?(e._appendElement(t,qt.HTML),t.ackSelfClosing=!0):n===zt.TITLE?e._switchToTextParsing(t,Nt.MODE.RCDATA):n===zt.NOSCRIPT?e.options.scriptingEnabled?e._switchToTextParsing(t,Nt.MODE.RAWTEXT):(e._insertElement(t,qt.HTML),e.insertionMode=rn):n===zt.NOFRAMES||n===zt.STYLE?e._switchToTextParsing(t,Nt.MODE.RAWTEXT):n===zt.SCRIPT?e._switchToTextParsing(t,Nt.MODE.SCRIPT_DATA):n===zt.TEMPLATE?(e._insertTemplate(t,qt.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=Nn,e._pushTmplInsertionMode(Nn)):n===zt.HEAD?e._err(k):Wn(e,t);}function Xn(e,t){const n=t.tagName;n===zt.HEAD?(e.openElements.pop(),e.insertionMode=on):n===zt.BODY||n===zt.BR||n===zt.HTML?Wn(e,t):n===zt.TEMPLATE&&e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagName!==zt.TEMPLATE&&e._err("closing-of-element-with-open-child-elements"),e.openElements.popUntilTagNamePopped(zt.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode()):e._err(L);}function Wn(e,t){e.openElements.pop(),e.insertionMode=on,e._processToken(t);}function Vn(e,t){const n=t.type===Nt.EOF_TOKEN?"open-elements-left-after-eof":"disallowed-content-in-noscript-in-head";e._err(n),e.openElements.pop(),e.insertionMode=sn,e._processToken(t);}function jn(e,t){e._insertFakeElement(zt.BODY),e.insertionMode=an,e._processToken(t);}function zn(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t);}function qn(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1;}function Jn(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML);}function Zn(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML),e.skipNextNewLine=!0,e.framesetOk=!1;}function $n(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t);}function es(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1;}function ts(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,qt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0;}function ns(e,t){e._appendElement(t,qt.HTML),t.ackSelfClosing=!0;}function ss(e,t){e._switchToTextParsing(t,Nt.MODE.RAWTEXT);}function rs(e,t){e.openElements.currentTagName===zt.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML);}function is(e,t){e.openElements.hasInScope(zt.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,qt.HTML);}function os(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML);}function as(e,t){const n=t.tagName;switch(n.length){case 1:n===zt.I||n===zt.S||n===zt.B||n===zt.U?$n(e,t):n===zt.P?Jn(e,t):n===zt.A?function(e,t){const n=e.activeFormattingElements.getElementEntryInScopeWithTagName(zt.A);n&&(Un(e,t),e.openElements.remove(n.element),e.activeFormattingElements.removeEntry(n)),e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t);}(e,t):os(e,t);break;case 2:n===zt.DL||n===zt.OL||n===zt.UL?Jn(e,t):n===zt.H1||n===zt.H2||n===zt.H3||n===zt.H4||n===zt.H5||n===zt.H6?function(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement();const n=e.openElements.currentTagName;n!==zt.H1&&n!==zt.H2&&n!==zt.H3&&n!==zt.H4&&n!==zt.H5&&n!==zt.H6||e.openElements.pop(),e._insertElement(t,qt.HTML);}(e,t):n===zt.LI||n===zt.DD||n===zt.DT?function(e,t){e.framesetOk=!1;const n=t.tagName;for(let t=e.openElements.stackTop;t>=0;t--){const s=e.openElements.items[t],r=e.treeAdapter.getTagName(s);let i=null;if(n===zt.LI&&r===zt.LI?i=zt.LI:n!==zt.DD&&n!==zt.DT||r!==zt.DD&&r!==zt.DT||(i=r),i){e.openElements.generateImpliedEndTagsWithExclusion(i),e.openElements.popUntilTagNamePopped(i);break}if(r!==zt.ADDRESS&&r!==zt.DIV&&r!==zt.P&&e._isSpecialElement(s))break}e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML);}(e,t):n===zt.EM||n===zt.TT?$n(e,t):n===zt.BR?ts(e,t):n===zt.HR?function(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._appendElement(t,qt.HTML),e.framesetOk=!1,t.ackSelfClosing=!0;}(e,t):n===zt.RB?is(e,t):n===zt.RT||n===zt.RP?function(e,t){e.openElements.hasInScope(zt.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(zt.RTC),e._insertElement(t,qt.HTML);}(e,t):n!==zt.TH&&n!==zt.TD&&n!==zt.TR&&os(e,t);break;case 3:n===zt.DIV||n===zt.DIR||n===zt.NAV?Jn(e,t):n===zt.PRE?Zn(e,t):n===zt.BIG?$n(e,t):n===zt.IMG||n===zt.WBR?ts(e,t):n===zt.XMP?function(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,Nt.MODE.RAWTEXT);}(e,t):n===zt.SVG?function(e,t){e._reconstructActiveFormattingElements(),jt.adjustTokenSVGAttrs(t),jt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,qt.SVG):e._insertElement(t,qt.SVG),t.ackSelfClosing=!0;}(e,t):n===zt.RTC?is(e,t):n!==zt.COL&&os(e,t);break;case 4:n===zt.HTML?function(e,t){0===e.openElements.tmplCount&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs);}(e,t):n===zt.BASE||n===zt.LINK||n===zt.META?Qn(e,t):n===zt.BODY?function(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();n&&0===e.openElements.tmplCount&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(n,t.attrs));}(e,t):n===zt.MAIN||n===zt.MENU?Jn(e,t):n===zt.FORM?function(e,t){const n=e.openElements.tmplCount>0;e.formElement&&!n||(e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML),n||(e.formElement=e.openElements.current));}(e,t):n===zt.CODE||n===zt.FONT?$n(e,t):n===zt.NOBR?function(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(zt.NOBR)&&(Un(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,qt.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t);}(e,t):n===zt.AREA?ts(e,t):n===zt.MATH?function(e,t){e._reconstructActiveFormattingElements(),jt.adjustTokenMathMLAttrs(t),jt.adjustTokenXMLAttrs(t),t.selfClosing?e._appendElement(t,qt.MATHML):e._insertElement(t,qt.MATHML),t.ackSelfClosing=!0;}(e,t):n===zt.MENU?function(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML);}(e,t):n!==zt.HEAD&&os(e,t);break;case 5:n===zt.STYLE||n===zt.TITLE?Qn(e,t):n===zt.ASIDE?Jn(e,t):n===zt.SMALL?$n(e,t):n===zt.TABLE?function(e,t){e.treeAdapter.getDocumentMode(e.document)!==Ct.DOCUMENT_MODE.QUIRKS&&e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML),e.framesetOk=!1,e.insertionMode=En;}(e,t):n===zt.EMBED?ts(e,t):n===zt.INPUT?function(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,qt.HTML);const n=Nt.getTokenAttr(t,Jt.TYPE);n&&n.toLowerCase()===$t||(e.framesetOk=!1),t.ackSelfClosing=!0;}(e,t):n===zt.PARAM||n===zt.TRACK?ns(e,t):n===zt.IMAGE?function(e,t){t.tagName=zt.IMG,ts(e,t);}(e,t):n!==zt.FRAME&&n!==zt.TBODY&&n!==zt.TFOOT&&n!==zt.THEAD&&os(e,t);break;case 6:n===zt.SCRIPT?Qn(e,t):n===zt.CENTER||n===zt.FIGURE||n===zt.FOOTER||n===zt.HEADER||n===zt.HGROUP||n===zt.DIALOG?Jn(e,t):n===zt.BUTTON?function(e,t){e.openElements.hasInScope(zt.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(zt.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML),e.framesetOk=!1;}(e,t):n===zt.STRIKE||n===zt.STRONG?$n(e,t):n===zt.APPLET||n===zt.OBJECT?es(e,t):n===zt.KEYGEN?ts(e,t):n===zt.SOURCE?ns(e,t):n===zt.IFRAME?function(e,t){e.framesetOk=!1,e._switchToTextParsing(t,Nt.MODE.RAWTEXT);}(e,t):n===zt.SELECT?function(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,qt.HTML),e.framesetOk=!1,e.insertionMode===En||e.insertionMode===cn||e.insertionMode===ln||e.insertionMode===mn||e.insertionMode===pn?e.insertionMode=un:e.insertionMode=An;}(e,t):n===zt.OPTION?rs(e,t):os(e,t);break;case 7:n===zt.BGSOUND?Qn(e,t):n===zt.DETAILS||n===zt.ADDRESS||n===zt.ARTICLE||n===zt.SECTION||n===zt.SUMMARY?Jn(e,t):n===zt.LISTING?Zn(e,t):n===zt.MARQUEE?es(e,t):n===zt.NOEMBED?ss(e,t):n!==zt.CAPTION&&os(e,t);break;case 8:n===zt.BASEFONT?Qn(e,t):n===zt.FRAMESET?function(e,t){const n=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&n&&(e.treeAdapter.detachNode(n),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,qt.HTML),e.insertionMode=Cn);}(e,t):n===zt.FIELDSET?Jn(e,t):n===zt.TEXTAREA?function(e,t){e._insertElement(t,qt.HTML),e.skipNextNewLine=!0,e.tokenizer.state=Nt.MODE.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=Tn;}(e,t):n===zt.TEMPLATE?Qn(e,t):n===zt.NOSCRIPT?e.options.scriptingEnabled?ss(e,t):os(e,t):n===zt.OPTGROUP?rs(e,t):n!==zt.COLGROUP&&os(e,t);break;case 9:n===zt.PLAINTEXT?function(e,t){e.openElements.hasInButtonScope(zt.P)&&e._closePElement(),e._insertElement(t,qt.HTML),e.tokenizer.state=Nt.MODE.PLAINTEXT;}(e,t):os(e,t);break;case 10:n===zt.BLOCKQUOTE||n===zt.FIGCAPTION?Jn(e,t):os(e,t);break;default:os(e,t);}}function Ts(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n));}function Es(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(n),e.activeFormattingElements.clearToLastMarker());}function hs(e,t){const n=t.tagName;for(let t=e.openElements.stackTop;t>0;t--){const s=e.openElements.items[t];if(e.treeAdapter.getTagName(s)===n){e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilElementPopped(s);break}if(e._isSpecialElement(s))break}}function cs(e,t){const n=t.tagName;switch(n.length){case 1:n===zt.A||n===zt.B||n===zt.I||n===zt.S||n===zt.U?Un(e,t):n===zt.P?function(e){e.openElements.hasInButtonScope(zt.P)||e._insertFakeElement(zt.P),e._closePElement();}(e):hs(e,t);break;case 2:n===zt.DL||n===zt.UL||n===zt.OL?Ts(e,t):n===zt.LI?function(e){e.openElements.hasInListItemScope(zt.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(zt.LI),e.openElements.popUntilTagNamePopped(zt.LI));}(e):n===zt.DD||n===zt.DT?function(e,t){const n=t.tagName;e.openElements.hasInScope(n)&&(e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.popUntilTagNamePopped(n));}(e,t):n===zt.H1||n===zt.H2||n===zt.H3||n===zt.H4||n===zt.H5||n===zt.H6?function(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped());}(e):n===zt.BR?function(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(zt.BR),e.openElements.pop(),e.framesetOk=!1;}(e):n===zt.EM||n===zt.TT?Un(e,t):hs(e,t);break;case 3:n===zt.BIG?Un(e,t):n===zt.DIR||n===zt.DIV||n===zt.NAV||n===zt.PRE?Ts(e,t):hs(e,t);break;case 4:n===zt.BODY?function(e){e.openElements.hasInScope(zt.BODY)&&(e.insertionMode=dn);}(e):n===zt.HTML?function(e,t){e.openElements.hasInScope(zt.BODY)&&(e.insertionMode=dn,e._processToken(t));}(e,t):n===zt.FORM?function(e){const t=e.openElements.tmplCount>0,n=e.formElement;t||(e.formElement=null),(n||t)&&e.openElements.hasInScope(zt.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(zt.FORM):e.openElements.remove(n));}(e):n===zt.CODE||n===zt.FONT||n===zt.NOBR?Un(e,t):n===zt.MAIN||n===zt.MENU?Ts(e,t):hs(e,t);break;case 5:n===zt.ASIDE?Ts(e,t):n===zt.SMALL?Un(e,t):hs(e,t);break;case 6:n===zt.CENTER||n===zt.FIGURE||n===zt.FOOTER||n===zt.HEADER||n===zt.HGROUP||n===zt.DIALOG?Ts(e,t):n===zt.APPLET||n===zt.OBJECT?Es(e,t):n===zt.STRIKE||n===zt.STRONG?Un(e,t):hs(e,t);break;case 7:n===zt.ADDRESS||n===zt.ARTICLE||n===zt.DETAILS||n===zt.SECTION||n===zt.SUMMARY||n===zt.LISTING?Ts(e,t):n===zt.MARQUEE?Es(e,t):hs(e,t);break;case 8:n===zt.FIELDSET?Ts(e,t):n===zt.TEMPLATE?Xn(e,t):hs(e,t);break;case 10:n===zt.BLOCKQUOTE||n===zt.FIGCAPTION?Ts(e,t):hs(e,t);break;default:hs(e,t);}}function _s(e,t){e.tmplInsertionModeStackTop>-1?Os(e,t):e.stopped=!0;}function ls(e,t){const n=e.openElements.currentTagName;n===zt.TABLE||n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD||n===zt.TR?(e.pendingCharacterTokens=[],e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=hn,e._processToken(t)):As(e,t);}function ms(e,t){const n=t.tagName;switch(n.length){case 2:n===zt.TD||n===zt.TH||n===zt.TR?function(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(zt.TBODY),e.insertionMode=ln,e._processToken(t);}(e,t):As(e,t);break;case 3:n===zt.COL?function(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(zt.COLGROUP),e.insertionMode=_n,e._processToken(t);}(e,t):As(e,t);break;case 4:n===zt.FORM?function(e,t){e.formElement||0!==e.openElements.tmplCount||(e._insertElement(t,qt.HTML),e.formElement=e.openElements.current,e.openElements.pop());}(e,t):As(e,t);break;case 5:n===zt.TABLE?function(e,t){e.openElements.hasInTableScope(zt.TABLE)&&(e.openElements.popUntilTagNamePopped(zt.TABLE),e._resetInsertionMode(),e._processToken(t));}(e,t):n===zt.STYLE?Qn(e,t):n===zt.TBODY||n===zt.TFOOT||n===zt.THEAD?function(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,qt.HTML),e.insertionMode=ln;}(e,t):n===zt.INPUT?function(e,t){const n=Nt.getTokenAttr(t,Jt.TYPE);n&&n.toLowerCase()===$t?e._appendElement(t,qt.HTML):As(e,t),t.ackSelfClosing=!0;}(e,t):As(e,t);break;case 6:n===zt.SCRIPT?Qn(e,t):As(e,t);break;case 7:n===zt.CAPTION?function(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,qt.HTML),e.insertionMode=cn;}(e,t):As(e,t);break;case 8:n===zt.COLGROUP?function(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,qt.HTML),e.insertionMode=_n;}(e,t):n===zt.TEMPLATE?Qn(e,t):As(e,t);break;default:As(e,t);}}function ps(e,t){const n=t.tagName;n===zt.TABLE?e.openElements.hasInTableScope(zt.TABLE)&&(e.openElements.popUntilTagNamePopped(zt.TABLE),e._resetInsertionMode()):n===zt.TEMPLATE?Xn(e,t):n!==zt.BODY&&n!==zt.CAPTION&&n!==zt.COL&&n!==zt.COLGROUP&&n!==zt.HTML&&n!==zt.TBODY&&n!==zt.TD&&n!==zt.TFOOT&&n!==zt.TH&&n!==zt.THEAD&&n!==zt.TR&&As(e,t);}function As(e,t){const n=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,e._processTokenInBodyMode(t),e.fosterParentingEnabled=n;}function us(e,t){let n=0;if(e.hasNonWhitespacePendingCharacterToken)for(;n<e.pendingCharacterTokens.length;n++)As(e,e.pendingCharacterTokens[n]);else for(;n<e.pendingCharacterTokens.length;n++)e._insertCharacters(e.pendingCharacterTokens[n]);e.insertionMode=e.originalInsertionMode,e._processToken(t);}function Ns(e,t){e.openElements.currentTagName===zt.COLGROUP&&(e.openElements.pop(),e.insertionMode=En,e._processToken(t));}function ds(e,t){const n=t.tagName;n===zt.HTML?as(e,t):n===zt.OPTION?(e.openElements.currentTagName===zt.OPTION&&e.openElements.pop(),e._insertElement(t,qt.HTML)):n===zt.OPTGROUP?(e.openElements.currentTagName===zt.OPTION&&e.openElements.pop(),e.openElements.currentTagName===zt.OPTGROUP&&e.openElements.pop(),e._insertElement(t,qt.HTML)):n===zt.INPUT||n===zt.KEYGEN||n===zt.TEXTAREA||n===zt.SELECT?e.openElements.hasInSelectScope(zt.SELECT)&&(e.openElements.popUntilTagNamePopped(zt.SELECT),e._resetInsertionMode(),n!==zt.SELECT&&e._processToken(t)):n!==zt.SCRIPT&&n!==zt.TEMPLATE||Qn(e,t);}function Cs(e,t){const n=t.tagName;if(n===zt.OPTGROUP){const t=e.openElements.items[e.openElements.stackTop-1],n=t&&e.treeAdapter.getTagName(t);e.openElements.currentTagName===zt.OPTION&&n===zt.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagName===zt.OPTGROUP&&e.openElements.pop();}else n===zt.OPTION?e.openElements.currentTagName===zt.OPTION&&e.openElements.pop():n===zt.SELECT&&e.openElements.hasInSelectScope(zt.SELECT)?(e.openElements.popUntilTagNamePopped(zt.SELECT),e._resetInsertionMode()):n===zt.TEMPLATE&&Xn(e,t);}function Os(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(zt.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e._popTmplInsertionMode(),e._resetInsertionMode(),e._processToken(t)):e.stopped=!0;}function fs(e,t){e.insertionMode=an,e._processToken(t);}function Ss(e,t){e.insertionMode=an,e._processToken(t);}return Ct.TAG_NAMES,Ct.NAMESPACES,e.parse=function(e,t){return new kn(t).parse(e)},e.parseFragment=function(e,t,n){return "string"==typeof e&&(n=t,t=e,e=null),new kn(n).parseFragment(t,e)},Object.defineProperty(e,"__esModule",{value:!0}),e}({});const parse=e.parse;const parseFragment=e.parseFragment;
  731. const docParser = new WeakMap();
  732. function parseDocumentUtil(ownerDocument, html) {
  733. const doc = parse(html.trim(), getParser(ownerDocument));
  734. doc.documentElement = doc.firstElementChild;
  735. doc.head = doc.documentElement.firstElementChild;
  736. doc.body = doc.head.nextElementSibling;
  737. return doc;
  738. }
  739. function parseFragmentUtil(ownerDocument, html) {
  740. if (typeof html === 'string') {
  741. html = html.trim();
  742. }
  743. else {
  744. html = '';
  745. }
  746. const frag = parseFragment(html, getParser(ownerDocument));
  747. return frag;
  748. }
  749. function getParser(ownerDocument) {
  750. let parseOptions = docParser.get(ownerDocument);
  751. if (parseOptions != null) {
  752. return parseOptions;
  753. }
  754. const treeAdapter = {
  755. createDocument() {
  756. const doc = ownerDocument.createElement("#document" /* NODE_NAMES.DOCUMENT_NODE */);
  757. doc['x-mode'] = 'no-quirks';
  758. return doc;
  759. },
  760. setNodeSourceCodeLocation(node, location) {
  761. node.sourceCodeLocation = location;
  762. },
  763. getNodeSourceCodeLocation(node) {
  764. return node.sourceCodeLocation;
  765. },
  766. createDocumentFragment() {
  767. return ownerDocument.createDocumentFragment();
  768. },
  769. createElement(tagName, namespaceURI, attrs) {
  770. const elm = ownerDocument.createElementNS(namespaceURI, tagName);
  771. for (let i = 0; i < attrs.length; i++) {
  772. const attr = attrs[i];
  773. if (attr.namespace == null || attr.namespace === 'http://www.w3.org/1999/xhtml') {
  774. elm.setAttribute(attr.name, attr.value);
  775. }
  776. else {
  777. elm.setAttributeNS(attr.namespace, attr.name, attr.value);
  778. }
  779. }
  780. return elm;
  781. },
  782. createCommentNode(data) {
  783. return ownerDocument.createComment(data);
  784. },
  785. appendChild(parentNode, newNode) {
  786. parentNode.appendChild(newNode);
  787. },
  788. insertBefore(parentNode, newNode, referenceNode) {
  789. parentNode.insertBefore(newNode, referenceNode);
  790. },
  791. setTemplateContent(templateElement, contentElement) {
  792. templateElement.content = contentElement;
  793. },
  794. getTemplateContent(templateElement) {
  795. return templateElement.content;
  796. },
  797. setDocumentType(doc, name, publicId, systemId) {
  798. let doctypeNode = doc.childNodes.find((n) => n.nodeType === 10 /* NODE_TYPES.DOCUMENT_TYPE_NODE */);
  799. if (doctypeNode == null) {
  800. doctypeNode = ownerDocument.createDocumentTypeNode();
  801. doc.insertBefore(doctypeNode, doc.firstChild);
  802. }
  803. doctypeNode.nodeValue = '!DOCTYPE';
  804. doctypeNode['x-name'] = name;
  805. doctypeNode['x-publicId'] = publicId;
  806. doctypeNode['x-systemId'] = systemId;
  807. },
  808. setDocumentMode(doc, mode) {
  809. doc['x-mode'] = mode;
  810. },
  811. getDocumentMode(doc) {
  812. return doc['x-mode'];
  813. },
  814. detachNode(node) {
  815. node.remove();
  816. },
  817. insertText(parentNode, text) {
  818. const lastChild = parentNode.lastChild;
  819. if (lastChild != null && lastChild.nodeType === 3 /* NODE_TYPES.TEXT_NODE */) {
  820. lastChild.nodeValue += text;
  821. }
  822. else {
  823. parentNode.appendChild(ownerDocument.createTextNode(text));
  824. }
  825. },
  826. insertTextBefore(parentNode, text, referenceNode) {
  827. const prevNode = parentNode.childNodes[parentNode.childNodes.indexOf(referenceNode) - 1];
  828. if (prevNode != null && prevNode.nodeType === 3 /* NODE_TYPES.TEXT_NODE */) {
  829. prevNode.nodeValue += text;
  830. }
  831. else {
  832. parentNode.insertBefore(ownerDocument.createTextNode(text), referenceNode);
  833. }
  834. },
  835. adoptAttributes(recipient, attrs) {
  836. for (let i = 0; i < attrs.length; i++) {
  837. const attr = attrs[i];
  838. if (recipient.hasAttributeNS(attr.namespace, attr.name) === false) {
  839. recipient.setAttributeNS(attr.namespace, attr.name, attr.value);
  840. }
  841. }
  842. },
  843. getFirstChild(node) {
  844. return node.childNodes[0];
  845. },
  846. getChildNodes(node) {
  847. return node.childNodes;
  848. },
  849. getParentNode(node) {
  850. return node.parentNode;
  851. },
  852. getAttrList(element) {
  853. const attrs = element.attributes.__items.map((attr) => {
  854. return {
  855. name: attr.name,
  856. value: attr.value,
  857. namespace: attr.namespaceURI,
  858. prefix: null,
  859. };
  860. });
  861. return attrs;
  862. },
  863. getTagName(element) {
  864. if (element.namespaceURI === 'http://www.w3.org/1999/xhtml') {
  865. return element.nodeName.toLowerCase();
  866. }
  867. else {
  868. return element.nodeName;
  869. }
  870. },
  871. getNamespaceURI(element) {
  872. return element.namespaceURI;
  873. },
  874. getTextNodeContent(textNode) {
  875. return textNode.nodeValue;
  876. },
  877. getCommentNodeContent(commentNode) {
  878. return commentNode.nodeValue;
  879. },
  880. getDocumentTypeNodeName(doctypeNode) {
  881. return doctypeNode['x-name'];
  882. },
  883. getDocumentTypeNodePublicId(doctypeNode) {
  884. return doctypeNode['x-publicId'];
  885. },
  886. getDocumentTypeNodeSystemId(doctypeNode) {
  887. return doctypeNode['x-systemId'];
  888. },
  889. isTextNode(node) {
  890. return node.nodeType === 3 /* NODE_TYPES.TEXT_NODE */;
  891. },
  892. isCommentNode(node) {
  893. return node.nodeType === 8 /* NODE_TYPES.COMMENT_NODE */;
  894. },
  895. isDocumentTypeNode(node) {
  896. return node.nodeType === 10 /* NODE_TYPES.DOCUMENT_TYPE_NODE */;
  897. },
  898. isElementNode(node) {
  899. return node.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */;
  900. },
  901. };
  902. parseOptions = {
  903. treeAdapter: treeAdapter,
  904. };
  905. docParser.set(ownerDocument, parseOptions);
  906. return parseOptions;
  907. }
  908. // Sizzle 2.3.6
  909. var Sizzle = (function() {
  910. const window = {
  911. document: {
  912. createElement() {
  913. return {};
  914. },
  915. nodeType: 9,
  916. documentElement: {
  917. nodeType: 1,
  918. nodeName: 'HTML'
  919. }
  920. }
  921. };
  922. const module = { exports: {} };
  923. /*! Sizzle v2.3.6 | (c) JS Foundation and other contributors | js.foundation */
  924. !function(e){var t,n,r,i,o,u,l,a,c,s,d,f,p,h,g,m,y,v,w,b="sizzle"+1*new Date,N=e.document,C=0,x=0,E=ae(),A=ae(),S=ae(),D=ae(),T=function(e,t){return e===t&&(d=!0),0},L={}.hasOwnProperty,q=[],I=q.pop,B=q.push,R=q.push,$=q.slice,k=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return -1},H="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",P="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",z="\\["+M+"*("+P+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+P+"))|)"+M+"*\\]",F=":("+P+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+z+")*)|.*)\\)|)",O=new RegExp(M+"+","g"),j=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),G=new RegExp("^"+M+"*,"+M+"*"),U=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),V=new RegExp(M+"|>"),X=new RegExp(F),J=new RegExp("^"+P+"$"),K={ID:new RegExp("^#("+P+")"),CLASS:new RegExp("^\\.("+P+")"),TAG:new RegExp("^("+P+"|[*])"),ATTR:new RegExp("^"+z),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+H+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Q=/HTML$/i,W=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){f();},ue=ve(function(e){return !0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{R.apply(q=$.call(N.childNodes),N.childNodes),q[N.childNodes.length].nodeType;}catch(e){R={apply:q.length?function(e,t){B.apply(e,$.call(t));}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1;}};}function le(e,t,r,i){var o,l,c,s,d,h,y,v=t&&t.ownerDocument,N=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==N&&9!==N&&11!==N)return r;if(!i&&(f(t),t=t||p,g)){if(11!==N&&(d=_.exec(e)))if(o=d[1]){if(9===N){if(!(c=t.getElementById(o)))return r;if(c.id===o)return r.push(c),r}else if(v&&(c=v.getElementById(o))&&w(t,c)&&c.id===o)return r.push(c),r}else {if(d[2])return R.apply(r,t.getElementsByTagName(e)),r;if((o=d[3])&&n.getElementsByClassName&&t.getElementsByClassName)return R.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!D[e+" "]&&(!m||!m.test(e))&&(1!==N||"object"!==t.nodeName.toLowerCase())){if(y=e,v=t,1===N&&(V.test(e)||U.test(e))){(v=ee.test(e)&&ge(t.parentNode)||t)===t&&n.scope||((s=t.getAttribute("id"))?s=s.replace(re,ie):t.setAttribute("id",s=b)),l=(h=u(e)).length;while(l--)h[l]=(s?"#"+s:":scope")+" "+ye(h[l]);y=h.join(",");}try{return R.apply(r,v.querySelectorAll(y)),r}catch(t){D(e,!0);}finally{s===b&&t.removeAttribute("id");}}}return a(e.replace(j,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function ce(e){return e[b]=!0,e}function se(e){var t=p.createElement("fieldset");try{return !!e(t)}catch(e){return !1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null;}}function de(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t;}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return -1;return e?1:-1}function pe(e){return function(t){return "form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ue(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return ce(function(t){return t=+t,ce(function(n,r){var i,o=e([],n.length,t),u=o.length;while(u--)n[i=o[u]]&&(n[i]=!(r[i]=n[i]));})})}function ge(e){return e&&void 0!==e.getElementsByTagName&&e}n=le.support={},o=le.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return !Q.test(t||n&&n.nodeName||"HTML")},f=le.setDocument=function(e){var t,i,u=e?e.ownerDocument||e:N;return u!=p&&9===u.nodeType&&u.documentElement?(p=u,h=p.documentElement,g=!o(p),N!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=se(function(e){return h.appendChild(e).appendChild(p.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),n.attributes=se(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=se(function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Z.test(p.getElementsByClassName),n.getById=se(function(e){return h.appendChild(e).id=b,!p.getElementsByName||!p.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return [o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return [o]}return []}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],m=[],(n.qsa=Z.test(p.querySelectorAll))&&(se(function(e){var t;h.appendChild(e).innerHTML="<a id='"+b+"'></a><select id='"+b+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+M+"*(?:value|"+H+")"),e.querySelectorAll("[id~="+b+"-]").length||m.push("~="),(t=p.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||m.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||m.push(".#.+[+~]"),e.querySelectorAll("\\\f"),m.push("[\\r\\n\\f]");}),se(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&m.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:");})),(n.matchesSelector=Z.test(v=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&se(function(e){n.disconnectedMatch=v.call(e,"*"),v.call(e,"[s!='']:x"),y.push("!=",F);}),m=m.length&&new RegExp(m.join("|")),y=y.length&&new RegExp(y.join("|")),t=Z.test(h.compareDocumentPosition),w=t||Z.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return !0;return !1},T=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==p||e.ownerDocument==N&&w(N,e)?-1:t==p||t.ownerDocument==N&&w(N,t)?1:s?k(s,e)-k(s,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,u=[e],l=[t];if(!i||!o)return e==p?-1:t==p?1:i?-1:o?1:s?k(s,e)-k(s,t):0;if(i===o)return fe(e,t);n=e;while(n=n.parentNode)u.unshift(n);n=t;while(n=n.parentNode)l.unshift(n);while(u[r]===l[r])r++;return r?fe(u[r],l[r]):u[r]==N?-1:l[r]==N?1:0},p):p},le.matches=function(e,t){return le(e,null,null,t)},le.matchesSelector=function(e,t){if(f(e),n.matchesSelector&&g&&!D[t+" "]&&(!y||!y.test(t))&&(!m||!m.test(t)))try{var r=v.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){D(t,!0);}return le(t,p,null,[e]).length>0},le.contains=function(e,t){return (e.ownerDocument||e)!=p&&f(e),w(e,t)},le.attr=function(e,t){(e.ownerDocument||e)!=p&&f(e);var i=r.attrHandle[t.toLowerCase()],o=i&&L.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},le.escape=function(e){return (e+"").replace(re,ie)},le.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},le.uniqueSort=function(e){var t,r=[],i=0,o=0;if(d=!n.detectDuplicates,s=!n.sortStable&&e.slice(0),e.sort(T),d){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1);}return s=null,e},i=le.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e);}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=le.selectors={cacheLength:50,createPseudo:ce,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||le.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&le.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=u(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return "*"===e?function(){return !0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=le.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(O," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),u="last"!==e.slice(-4),l="of-type"===t;return 1===r&&0===i?function(e){return !!e.parentNode}:function(t,n,a){var c,s,d,f,p,h,g=o!==u?"nextSibling":"previousSibling",m=t.parentNode,y=l&&t.nodeName.toLowerCase(),v=!a&&!l,w=!1;if(m){if(o){while(g){f=t;while(f=f[g])if(l?f.nodeName.toLowerCase()===y:1===f.nodeType)return !1;h=g="only"===e&&!h&&"nextSibling";}return !0}if(h=[u?m.firstChild:m.lastChild],u&&v){w=(p=(c=(s=(d=(f=m)[b]||(f[b]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===C&&c[1])&&c[2],f=p&&m.childNodes[p];while(f=++p&&f&&f[g]||(w=p=0)||h.pop())if(1===f.nodeType&&++w&&f===t){s[e]=[C,p,w];break}}else if(v&&(w=p=(c=(s=(d=(f=t)[b]||(f[b]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===C&&c[1]),!1===w)while(f=++p&&f&&f[g]||(w=p=0)||h.pop())if((l?f.nodeName.toLowerCase()===y:1===f.nodeType)&&++w&&(v&&((s=(d=f[b]||(f[b]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[C,w]),f===t))break;return (w-=i)===r||w%r==0&&w/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||le.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ce(function(e,n){var r,o=i(e,t),u=o.length;while(u--)e[r=k(e,o[u])]=!(n[r]=o[u]);}):function(e){return i(e,0,n)}):i}},pseudos:{not:ce(function(e){var t=[],n=[],r=l(e.replace(j,"$1"));return r[b]?ce(function(e,t,n,i){var o,u=r(e,null,i,[]),l=e.length;while(l--)(o=u[l])&&(e[l]=!(t[l]=o));}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:ce(function(e){return function(t){return le(e,t).length>0}}),contains:ce(function(e){return e=e.replace(te,ne),function(t){return (t.textContent||i(t)).indexOf(e)>-1}}),lang:ce(function(e){return J.test(e||"")||le.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return (n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return !1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:pe(!1),disabled:pe(!0),checked:function(e){var t=e.nodeName.toLowerCase();return "input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return !1;return !0},parent:function(e){return !r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return W.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return "input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return "input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return [0]}),last:he(function(e,t){return [t-1]}),eq:he(function(e,t,n){return [n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:he(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:he(function(e,t,n){for(var r=n<0?n+t:n>t?t:n;--r>=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=r.pseudos.eq;for(t in {radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=function(e){return function(t){return "input"===t.nodeName.toLowerCase()&&t.type===e}}(t);for(t in {submit:!0,reset:!0})r.pseudos[t]=function(e){return function(t){var n=t.nodeName.toLowerCase();return ("input"===n||"button"===n)&&t.type===e}}(t);function me(){}me.prototype=r.filters=r.pseudos,r.setFilters=new me,u=le.tokenize=function(e,t){var n,i,o,u,l,a,c,s=A[e+" "];if(s)return t?0:s.slice(0);l=e,a=[],c=r.preFilter;while(l){n&&!(i=G.exec(l))||(i&&(l=l.slice(i[0].length)||l),a.push(o=[])),n=!1,(i=U.exec(l))&&(n=i.shift(),o.push({value:n,type:i[0].replace(j," ")}),l=l.slice(n.length));for(u in r.filter)!(i=K[u].exec(l))||c[u]&&!(i=c[u](i))||(n=i.shift(),o.push({value:n,type:u,matches:i}),l=l.slice(n.length));if(!n)break}return t?l.length:l?le.error(e):A(e,a).slice(0)};function ye(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function ve(e,t,n){var r=t.dir,i=t.next,o=i||r,u=n&&"parentNode"===o,l=x++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||u)return e(t,n,i);return !1}:function(t,n,a){var c,s,d,f=[C,l];if(a){while(t=t[r])if((1===t.nodeType||u)&&e(t,n,a))return !0}else while(t=t[r])if(1===t.nodeType||u)if(d=t[b]||(t[b]={}),s=d[t.uniqueID]||(d[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else {if((c=s[o])&&c[0]===C&&c[1]===l)return f[2]=c[2];if(s[o]=f,f[2]=e(t,n,a))return !0}return !1}}function we(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return !1;return !0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r<i;r++)le(e,t[r],n);return n}function Ne(e,t,n,r,i){for(var o,u=[],l=0,a=e.length,c=null!=t;l<a;l++)(o=e[l])&&(n&&!n(o,r,i)||(u.push(o),c&&t.push(l)));return u}function Ce(e,t,n,r,i,o){return r&&!r[b]&&(r=Ce(r)),i&&!i[b]&&(i=Ce(i,o)),ce(function(o,u,l,a){var c,s,d,f=[],p=[],h=u.length,g=o||be(t||"*",l.nodeType?[l]:l,[]),m=!e||!o&&t?g:Ne(g,f,e,l,a),y=n?i||(o?e:h||r)?[]:u:m;if(n&&n(m,y,l,a),r){c=Ne(y,p),r(c,[],l,a),s=c.length;while(s--)(d=c[s])&&(y[p[s]]=!(m[p[s]]=d));}if(o){if(i||e){if(i){c=[],s=y.length;while(s--)(d=y[s])&&c.push(m[s]=d);i(null,y=[],c,a);}s=y.length;while(s--)(d=y[s])&&(c=i?k(o,d):f[s])>-1&&(o[c]=!(u[c]=d));}}else y=Ne(y===u?y.splice(h,y.length):y),i?i(null,u,y,a):R.apply(u,y);})}function xe(e){for(var t,n,i,o=e.length,u=r.relative[e[0].type],l=u||r.relative[" "],a=u?1:0,s=ve(function(e){return e===t},l,!0),d=ve(function(e){return k(t,e)>-1},l,!0),f=[function(e,n,r){var i=!u&&(r||n!==c)||((t=n).nodeType?s(e,n,r):d(e,n,r));return t=null,i}];a<o;a++)if(n=r.relative[e[a].type])f=[ve(we(f),n)];else {if((n=r.filter[e[a].type].apply(null,e[a].matches))[b]){for(i=++a;i<o;i++)if(r.relative[e[i].type])break;return Ce(a>1&&we(f),a>1&&ye(e.slice(0,a-1).concat({value:" "===e[a-2].type?"*":""})).replace(j,"$1"),n,a<i&&xe(e.slice(a,i)),i<o&&xe(e=e.slice(i)),i<o&&ye(e))}f.push(n);}return we(f)}function Ee(e,t){var n=t.length>0,i=e.length>0,o=function(o,u,l,a,s){var d,h,m,y=0,v="0",w=o&&[],b=[],N=c,x=o||i&&r.find.TAG("*",s),E=C+=null==N?1:Math.random()||.1,A=x.length;for(s&&(c=u==p||u||s);v!==A&&null!=(d=x[v]);v++){if(i&&d){h=0,u||d.ownerDocument==p||(f(d),l=!g);while(m=e[h++])if(m(d,u||p,l)){a.push(d);break}s&&(C=E);}n&&((d=!m&&d)&&y--,o&&w.push(d));}if(y+=v,n&&v!==y){h=0;while(m=t[h++])m(w,b,u,l);if(o){if(y>0)while(v--)w[v]||b[v]||(b[v]=I.call(a));b=Ne(b);}R.apply(a,b),s&&!o&&b.length>0&&y+t.length>1&&le.uniqueSort(a);}return s&&(C=E,c=N),w};return n?ce(o):o}l=le.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=u(e)),n=t.length;while(n--)(o=xe(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e;}return o},a=le.select=function(e,t,n,i){var o,a,c,s,d,f="function"==typeof e&&e,p=!i&&u(e=f.selector||e);if(n=n||[],1===p.length){if((a=p[0]=p[0].slice(0)).length>2&&"ID"===(c=a[0]).type&&9===t.nodeType&&g&&r.relative[a[1].type]){if(!(t=(r.find.ID(c.matches[0].replace(te,ne),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(a.shift().value.length);}o=K.needsContext.test(e)?0:a.length;while(o--){if(c=a[o],r.relative[s=c.type])break;if((d=r.find[s])&&(i=d(c.matches[0].replace(te,ne),ee.test(a[0].type)&&ge(t.parentNode)||t))){if(a.splice(o,1),!(e=i.length&&ye(a)))return R.apply(n,i),n;break}}}return (f||l(e,p))(i,t,!g,n,!t||ee.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(T).join("")===b,n.detectDuplicates=!!d,f(),n.sortDetached=se(function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))}),se(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||de("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&se(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||de("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),se(function(e){return null==e.getAttribute("disabled")})||de(H,function(e,t,n){var r;if(!n)return !0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null});var Ae=e.Sizzle;le.noConflict=function(){return e.Sizzle===le&&(e.Sizzle=Ae),le},"function"==typeof define&&define.amd?define(function(){return le}):"undefined"!=typeof module&&module.exports?module.exports=le:e.Sizzle=le;}(window);
  925. //# sourceMappingURL=sizzle.min.map
  926. return module.exports;
  927. })();
  928. function matches(selector, elm) {
  929. const r = Sizzle.matches(selector, [elm]);
  930. return r.length > 0;
  931. }
  932. function selectOne(selector, elm) {
  933. const r = Sizzle(selector, elm);
  934. return r[0] || null;
  935. }
  936. function selectAll(selector, elm) {
  937. return Sizzle(selector, elm);
  938. }
  939. function serializeNodeToHtml(elm, opts = {}) {
  940. const output = {
  941. currentLineWidth: 0,
  942. indent: 0,
  943. isWithinBody: false,
  944. text: [],
  945. };
  946. if (opts.prettyHtml) {
  947. if (typeof opts.indentSpaces !== 'number') {
  948. opts.indentSpaces = 2;
  949. }
  950. if (typeof opts.newLines !== 'boolean') {
  951. opts.newLines = true;
  952. }
  953. opts.approximateLineWidth = -1;
  954. }
  955. else {
  956. opts.prettyHtml = false;
  957. if (typeof opts.newLines !== 'boolean') {
  958. opts.newLines = false;
  959. }
  960. if (typeof opts.indentSpaces !== 'number') {
  961. opts.indentSpaces = 0;
  962. }
  963. }
  964. if (typeof opts.approximateLineWidth !== 'number') {
  965. opts.approximateLineWidth = -1;
  966. }
  967. if (typeof opts.removeEmptyAttributes !== 'boolean') {
  968. opts.removeEmptyAttributes = true;
  969. }
  970. if (typeof opts.removeAttributeQuotes !== 'boolean') {
  971. opts.removeAttributeQuotes = false;
  972. }
  973. if (typeof opts.removeBooleanAttributeQuotes !== 'boolean') {
  974. opts.removeBooleanAttributeQuotes = false;
  975. }
  976. if (typeof opts.removeHtmlComments !== 'boolean') {
  977. opts.removeHtmlComments = false;
  978. }
  979. if (typeof opts.serializeShadowRoot !== 'boolean') {
  980. opts.serializeShadowRoot = false;
  981. }
  982. if (opts.outerHtml) {
  983. serializeToHtml(elm, opts, output, false);
  984. }
  985. else {
  986. for (let i = 0, ii = elm.childNodes.length; i < ii; i++) {
  987. serializeToHtml(elm.childNodes[i], opts, output, false);
  988. }
  989. }
  990. if (output.text[0] === '\n') {
  991. output.text.shift();
  992. }
  993. if (output.text[output.text.length - 1] === '\n') {
  994. output.text.pop();
  995. }
  996. return output.text.join('');
  997. }
  998. function serializeToHtml(node, opts, output, isShadowRoot) {
  999. if (node.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */ || isShadowRoot) {
  1000. const tagName = isShadowRoot ? 'mock:shadow-root' : getTagName(node);
  1001. if (tagName === 'body') {
  1002. output.isWithinBody = true;
  1003. }
  1004. const ignoreTag = opts.excludeTags != null && opts.excludeTags.includes(tagName);
  1005. if (ignoreTag === false) {
  1006. const isWithinWhitespaceSensitiveNode = opts.newLines || opts.indentSpaces > 0 ? isWithinWhitespaceSensitive(node) : false;
  1007. if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
  1008. output.text.push('\n');
  1009. output.currentLineWidth = 0;
  1010. }
  1011. if (opts.indentSpaces > 0 && !isWithinWhitespaceSensitiveNode) {
  1012. for (let i = 0; i < output.indent; i++) {
  1013. output.text.push(' ');
  1014. }
  1015. output.currentLineWidth += output.indent;
  1016. }
  1017. output.text.push('<' + tagName);
  1018. output.currentLineWidth += tagName.length + 1;
  1019. const attrsLength = node.attributes.length;
  1020. const attributes = opts.prettyHtml && attrsLength > 1
  1021. ? cloneAttributes(node.attributes, true)
  1022. : node.attributes;
  1023. for (let i = 0; i < attrsLength; i++) {
  1024. const attr = attributes.item(i);
  1025. const attrName = attr.name;
  1026. if (attrName === 'style') {
  1027. continue;
  1028. }
  1029. let attrValue = attr.value;
  1030. if (opts.removeEmptyAttributes && attrValue === '' && REMOVE_EMPTY_ATTR.has(attrName)) {
  1031. continue;
  1032. }
  1033. const attrNamespaceURI = attr.namespaceURI;
  1034. if (attrNamespaceURI == null) {
  1035. output.currentLineWidth += attrName.length + 1;
  1036. if (opts.approximateLineWidth > 0 && output.currentLineWidth > opts.approximateLineWidth) {
  1037. output.text.push('\n' + attrName);
  1038. output.currentLineWidth = 0;
  1039. }
  1040. else {
  1041. output.text.push(' ' + attrName);
  1042. }
  1043. }
  1044. else if (attrNamespaceURI === 'http://www.w3.org/XML/1998/namespace') {
  1045. output.text.push(' xml:' + attrName);
  1046. output.currentLineWidth += attrName.length + 5;
  1047. }
  1048. else if (attrNamespaceURI === 'http://www.w3.org/2000/xmlns/') {
  1049. if (attrName !== 'xmlns') {
  1050. output.text.push(' xmlns:' + attrName);
  1051. output.currentLineWidth += attrName.length + 7;
  1052. }
  1053. else {
  1054. output.text.push(' ' + attrName);
  1055. output.currentLineWidth += attrName.length + 1;
  1056. }
  1057. }
  1058. else if (attrNamespaceURI === XLINK_NS) {
  1059. output.text.push(' xlink:' + attrName);
  1060. output.currentLineWidth += attrName.length + 7;
  1061. }
  1062. else {
  1063. output.text.push(' ' + attrNamespaceURI + ':' + attrName);
  1064. output.currentLineWidth += attrNamespaceURI.length + attrName.length + 2;
  1065. }
  1066. if (opts.prettyHtml && attrName === 'class') {
  1067. attrValue = attr.value = attrValue
  1068. .split(' ')
  1069. .filter((t) => t !== '')
  1070. .sort()
  1071. .join(' ')
  1072. .trim();
  1073. }
  1074. if (attrValue === '') {
  1075. if (opts.removeBooleanAttributeQuotes && BOOLEAN_ATTR.has(attrName)) {
  1076. continue;
  1077. }
  1078. if (opts.removeEmptyAttributes && attrName.startsWith('data-')) {
  1079. continue;
  1080. }
  1081. }
  1082. if (opts.removeAttributeQuotes && CAN_REMOVE_ATTR_QUOTES.test(attrValue)) {
  1083. output.text.push('=' + escapeString(attrValue, true));
  1084. output.currentLineWidth += attrValue.length + 1;
  1085. }
  1086. else {
  1087. output.text.push('="' + escapeString(attrValue, true) + '"');
  1088. output.currentLineWidth += attrValue.length + 3;
  1089. }
  1090. }
  1091. if (node.hasAttribute('style')) {
  1092. const cssText = node.style.cssText;
  1093. if (opts.approximateLineWidth > 0 &&
  1094. output.currentLineWidth + cssText.length + 10 > opts.approximateLineWidth) {
  1095. output.text.push(`\nstyle="${cssText}">`);
  1096. output.currentLineWidth = 0;
  1097. }
  1098. else {
  1099. output.text.push(` style="${cssText}">`);
  1100. output.currentLineWidth += cssText.length + 10;
  1101. }
  1102. }
  1103. else {
  1104. output.text.push('>');
  1105. output.currentLineWidth += 1;
  1106. }
  1107. }
  1108. if (EMPTY_ELEMENTS.has(tagName) === false) {
  1109. if (opts.serializeShadowRoot && node.shadowRoot != null) {
  1110. output.indent = output.indent + opts.indentSpaces;
  1111. serializeToHtml(node.shadowRoot, opts, output, true);
  1112. output.indent = output.indent - opts.indentSpaces;
  1113. if (opts.newLines &&
  1114. (node.childNodes.length === 0 ||
  1115. (node.childNodes.length === 1 &&
  1116. node.childNodes[0].nodeType === 3 /* NODE_TYPES.TEXT_NODE */ &&
  1117. node.childNodes[0].nodeValue.trim() === ''))) {
  1118. output.text.push('\n');
  1119. output.currentLineWidth = 0;
  1120. for (let i = 0; i < output.indent; i++) {
  1121. output.text.push(' ');
  1122. }
  1123. output.currentLineWidth += output.indent;
  1124. }
  1125. }
  1126. if (opts.excludeTagContent == null || opts.excludeTagContent.includes(tagName) === false) {
  1127. const childNodes = tagName === 'template' ? node.content.childNodes : node.childNodes;
  1128. const childNodeLength = childNodes.length;
  1129. if (childNodeLength > 0) {
  1130. if (childNodeLength === 1 &&
  1131. childNodes[0].nodeType === 3 /* NODE_TYPES.TEXT_NODE */ &&
  1132. (typeof childNodes[0].nodeValue !== 'string' || childNodes[0].nodeValue.trim() === '')) ;
  1133. else {
  1134. const isWithinWhitespaceSensitiveNode = opts.newLines || opts.indentSpaces > 0 ? isWithinWhitespaceSensitive(node) : false;
  1135. if (!isWithinWhitespaceSensitiveNode && opts.indentSpaces > 0 && ignoreTag === false) {
  1136. output.indent = output.indent + opts.indentSpaces;
  1137. }
  1138. for (let i = 0; i < childNodeLength; i++) {
  1139. serializeToHtml(childNodes[i], opts, output, false);
  1140. }
  1141. if (ignoreTag === false) {
  1142. if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
  1143. output.text.push('\n');
  1144. output.currentLineWidth = 0;
  1145. }
  1146. if (opts.indentSpaces > 0 && !isWithinWhitespaceSensitiveNode) {
  1147. output.indent = output.indent - opts.indentSpaces;
  1148. for (let i = 0; i < output.indent; i++) {
  1149. output.text.push(' ');
  1150. }
  1151. output.currentLineWidth += output.indent;
  1152. }
  1153. }
  1154. }
  1155. }
  1156. if (ignoreTag === false) {
  1157. output.text.push('</' + tagName + '>');
  1158. output.currentLineWidth += tagName.length + 3;
  1159. }
  1160. }
  1161. }
  1162. if (opts.approximateLineWidth > 0 && STRUCTURE_ELEMENTS.has(tagName)) {
  1163. output.text.push('\n');
  1164. output.currentLineWidth = 0;
  1165. }
  1166. if (tagName === 'body') {
  1167. output.isWithinBody = false;
  1168. }
  1169. }
  1170. else if (node.nodeType === 3 /* NODE_TYPES.TEXT_NODE */) {
  1171. let textContent = node.nodeValue;
  1172. if (typeof textContent === 'string') {
  1173. const trimmedTextContent = textContent.trim();
  1174. if (trimmedTextContent === '') {
  1175. // this text node is whitespace only
  1176. if (isWithinWhitespaceSensitive(node)) {
  1177. // whitespace matters within this element
  1178. // just add the exact text we were given
  1179. output.text.push(textContent);
  1180. output.currentLineWidth += textContent.length;
  1181. }
  1182. else if (opts.approximateLineWidth > 0 && !output.isWithinBody) ;
  1183. else if (!opts.prettyHtml) {
  1184. // this text node is only whitespace, and it's not
  1185. // within a whitespace sensitive element like <pre> or <code>
  1186. // so replace the entire white space with a single new line
  1187. output.currentLineWidth += 1;
  1188. if (opts.approximateLineWidth > 0 && output.currentLineWidth > opts.approximateLineWidth) {
  1189. // good enough for a new line
  1190. // for perf these are all just estimates
  1191. // we don't care to ensure exact line lengths
  1192. output.text.push('\n');
  1193. output.currentLineWidth = 0;
  1194. }
  1195. else {
  1196. // let's keep it all on the same line yet
  1197. output.text.push(' ');
  1198. }
  1199. }
  1200. }
  1201. else {
  1202. // this text node has text content
  1203. const isWithinWhitespaceSensitiveNode = opts.newLines || opts.indentSpaces > 0 || opts.prettyHtml ? isWithinWhitespaceSensitive(node) : false;
  1204. if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
  1205. output.text.push('\n');
  1206. output.currentLineWidth = 0;
  1207. }
  1208. if (opts.indentSpaces > 0 && !isWithinWhitespaceSensitiveNode) {
  1209. for (let i = 0; i < output.indent; i++) {
  1210. output.text.push(' ');
  1211. }
  1212. output.currentLineWidth += output.indent;
  1213. }
  1214. let textContentLength = textContent.length;
  1215. if (textContentLength > 0) {
  1216. // this text node has text content
  1217. const parentTagName = node.parentNode != null && node.parentNode.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */
  1218. ? node.parentNode.nodeName
  1219. : null;
  1220. if (NON_ESCAPABLE_CONTENT.has(parentTagName)) {
  1221. // this text node cannot have its content escaped since it's going
  1222. // into an element like <style> or <script>
  1223. if (isWithinWhitespaceSensitive(node)) {
  1224. output.text.push(textContent);
  1225. }
  1226. else {
  1227. output.text.push(trimmedTextContent);
  1228. textContentLength = trimmedTextContent.length;
  1229. }
  1230. output.currentLineWidth += textContentLength;
  1231. }
  1232. else {
  1233. // this text node is going into a normal element and html can be escaped
  1234. if (opts.prettyHtml && !isWithinWhitespaceSensitiveNode) {
  1235. // pretty print the text node
  1236. output.text.push(escapeString(textContent.replace(/\s\s+/g, ' ').trim(), false));
  1237. output.currentLineWidth += textContentLength;
  1238. }
  1239. else {
  1240. // not pretty printing the text node
  1241. if (isWithinWhitespaceSensitive(node)) {
  1242. output.currentLineWidth += textContentLength;
  1243. }
  1244. else {
  1245. // this element is not a whitespace sensitive one, like <pre> or <code> so
  1246. // any whitespace at the start and end can be cleaned up to just be one space
  1247. if (/\s/.test(textContent.charAt(0))) {
  1248. textContent = ' ' + textContent.trimLeft();
  1249. }
  1250. textContentLength = textContent.length;
  1251. if (textContentLength > 1) {
  1252. if (/\s/.test(textContent.charAt(textContentLength - 1))) {
  1253. if (opts.approximateLineWidth > 0 &&
  1254. output.currentLineWidth + textContentLength > opts.approximateLineWidth) {
  1255. textContent = textContent.trimRight() + '\n';
  1256. output.currentLineWidth = 0;
  1257. }
  1258. else {
  1259. textContent = textContent.trimRight() + ' ';
  1260. }
  1261. }
  1262. }
  1263. output.currentLineWidth += textContentLength;
  1264. }
  1265. output.text.push(escapeString(textContent, false));
  1266. }
  1267. }
  1268. }
  1269. }
  1270. }
  1271. }
  1272. else if (node.nodeType === 8 /* NODE_TYPES.COMMENT_NODE */) {
  1273. const nodeValue = node.nodeValue;
  1274. if (opts.removeHtmlComments) {
  1275. const isHydrateAnnotation = nodeValue.startsWith(CONTENT_REF_ID + '.') ||
  1276. nodeValue.startsWith(ORG_LOCATION_ID + '.') ||
  1277. nodeValue.startsWith(SLOT_NODE_ID + '.') ||
  1278. nodeValue.startsWith(TEXT_NODE_ID + '.');
  1279. if (!isHydrateAnnotation) {
  1280. return;
  1281. }
  1282. }
  1283. const isWithinWhitespaceSensitiveNode = opts.newLines || opts.indentSpaces > 0 ? isWithinWhitespaceSensitive(node) : false;
  1284. if (opts.newLines && !isWithinWhitespaceSensitiveNode) {
  1285. output.text.push('\n');
  1286. output.currentLineWidth = 0;
  1287. }
  1288. if (opts.indentSpaces > 0 && !isWithinWhitespaceSensitiveNode) {
  1289. for (let i = 0; i < output.indent; i++) {
  1290. output.text.push(' ');
  1291. }
  1292. output.currentLineWidth += output.indent;
  1293. }
  1294. output.text.push('<!--' + nodeValue + '-->');
  1295. output.currentLineWidth += nodeValue.length + 7;
  1296. }
  1297. else if (node.nodeType === 10 /* NODE_TYPES.DOCUMENT_TYPE_NODE */) {
  1298. output.text.push('<!doctype html>');
  1299. }
  1300. }
  1301. const AMP_REGEX = /&/g;
  1302. const NBSP_REGEX = /\u00a0/g;
  1303. const DOUBLE_QUOTE_REGEX = /"/g;
  1304. const LT_REGEX = /</g;
  1305. const GT_REGEX = />/g;
  1306. const CAN_REMOVE_ATTR_QUOTES = /^[^ \t\n\f\r"'`=<>\/\\-]+$/;
  1307. function getTagName(element) {
  1308. if (element.namespaceURI === 'http://www.w3.org/1999/xhtml') {
  1309. return element.nodeName.toLowerCase();
  1310. }
  1311. else {
  1312. return element.nodeName;
  1313. }
  1314. }
  1315. function escapeString(str, attrMode) {
  1316. str = str.replace(AMP_REGEX, '&amp;').replace(NBSP_REGEX, '&nbsp;');
  1317. if (attrMode) {
  1318. return str.replace(DOUBLE_QUOTE_REGEX, '&quot;');
  1319. }
  1320. return str.replace(LT_REGEX, '&lt;').replace(GT_REGEX, '&gt;');
  1321. }
  1322. function isWithinWhitespaceSensitive(node) {
  1323. while (node != null) {
  1324. if (WHITESPACE_SENSITIVE.has(node.nodeName)) {
  1325. return true;
  1326. }
  1327. node = node.parentNode;
  1328. }
  1329. return false;
  1330. }
  1331. /*@__PURE__*/ const NON_ESCAPABLE_CONTENT = new Set([
  1332. 'STYLE',
  1333. 'SCRIPT',
  1334. 'IFRAME',
  1335. 'NOSCRIPT',
  1336. 'XMP',
  1337. 'NOEMBED',
  1338. 'NOFRAMES',
  1339. 'PLAINTEXT',
  1340. ]);
  1341. /*@__PURE__*/ const WHITESPACE_SENSITIVE = new Set([
  1342. 'CODE',
  1343. 'OUTPUT',
  1344. 'PLAINTEXT',
  1345. 'PRE',
  1346. 'SCRIPT',
  1347. 'TEMPLATE',
  1348. 'TEXTAREA',
  1349. ]);
  1350. /*@__PURE__*/ const EMPTY_ELEMENTS = new Set([
  1351. 'area',
  1352. 'base',
  1353. 'basefont',
  1354. 'bgsound',
  1355. 'br',
  1356. 'col',
  1357. 'embed',
  1358. 'frame',
  1359. 'hr',
  1360. 'img',
  1361. 'input',
  1362. 'keygen',
  1363. 'link',
  1364. 'meta',
  1365. 'param',
  1366. 'source',
  1367. 'trace',
  1368. 'wbr',
  1369. ]);
  1370. /*@__PURE__*/ const REMOVE_EMPTY_ATTR = new Set(['class', 'dir', 'id', 'lang', 'name', 'title']);
  1371. /*@__PURE__*/ const BOOLEAN_ATTR = new Set([
  1372. 'allowfullscreen',
  1373. 'async',
  1374. 'autofocus',
  1375. 'autoplay',
  1376. 'checked',
  1377. 'compact',
  1378. 'controls',
  1379. 'declare',
  1380. 'default',
  1381. 'defaultchecked',
  1382. 'defaultmuted',
  1383. 'defaultselected',
  1384. 'defer',
  1385. 'disabled',
  1386. 'enabled',
  1387. 'formnovalidate',
  1388. 'hidden',
  1389. 'indeterminate',
  1390. 'inert',
  1391. 'ismap',
  1392. 'itemscope',
  1393. 'loop',
  1394. 'multiple',
  1395. 'muted',
  1396. 'nohref',
  1397. 'nomodule',
  1398. 'noresize',
  1399. 'noshade',
  1400. 'novalidate',
  1401. 'nowrap',
  1402. 'open',
  1403. 'pauseonexit',
  1404. 'readonly',
  1405. 'required',
  1406. 'reversed',
  1407. 'scoped',
  1408. 'seamless',
  1409. 'selected',
  1410. 'sortable',
  1411. 'truespeed',
  1412. 'typemustmatch',
  1413. 'visible',
  1414. ]);
  1415. /*@__PURE__*/ const STRUCTURE_ELEMENTS = new Set([
  1416. 'html',
  1417. 'body',
  1418. 'head',
  1419. 'iframe',
  1420. 'meta',
  1421. 'link',
  1422. 'base',
  1423. 'title',
  1424. 'script',
  1425. 'style',
  1426. ]);
  1427. class MockNode {
  1428. constructor(ownerDocument, nodeType, nodeName, nodeValue) {
  1429. this.ownerDocument = ownerDocument;
  1430. this.nodeType = nodeType;
  1431. this.nodeName = nodeName;
  1432. this._nodeValue = nodeValue;
  1433. this.parentNode = null;
  1434. this.childNodes = [];
  1435. }
  1436. appendChild(newNode) {
  1437. if (newNode.nodeType === 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */) {
  1438. const nodes = newNode.childNodes.slice();
  1439. for (const child of nodes) {
  1440. this.appendChild(child);
  1441. }
  1442. }
  1443. else {
  1444. newNode.remove();
  1445. newNode.parentNode = this;
  1446. this.childNodes.push(newNode);
  1447. connectNode(this.ownerDocument, newNode);
  1448. }
  1449. return newNode;
  1450. }
  1451. append(...items) {
  1452. items.forEach((item) => {
  1453. const isNode = typeof item === 'object' && item !== null && 'nodeType' in item;
  1454. this.appendChild(isNode ? item : this.ownerDocument.createTextNode(String(item)));
  1455. });
  1456. }
  1457. prepend(...items) {
  1458. const firstChild = this.firstChild;
  1459. items.forEach((item) => {
  1460. const isNode = typeof item === 'object' && item !== null && 'nodeType' in item;
  1461. if (firstChild) {
  1462. this.insertBefore(isNode ? item : this.ownerDocument.createTextNode(String(item)), firstChild);
  1463. }
  1464. });
  1465. }
  1466. cloneNode(deep) {
  1467. throw new Error(`invalid node type to clone: ${this.nodeType}, deep: ${deep}`);
  1468. }
  1469. compareDocumentPosition(_other) {
  1470. // unimplemented
  1471. // https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition
  1472. return -1;
  1473. }
  1474. get firstChild() {
  1475. return this.childNodes[0] || null;
  1476. }
  1477. insertBefore(newNode, referenceNode) {
  1478. if (newNode.nodeType === 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */) {
  1479. for (let i = 0, ii = newNode.childNodes.length; i < ii; i++) {
  1480. insertBefore(this, newNode.childNodes[i], referenceNode);
  1481. }
  1482. }
  1483. else {
  1484. insertBefore(this, newNode, referenceNode);
  1485. }
  1486. return newNode;
  1487. }
  1488. get isConnected() {
  1489. let node = this;
  1490. while (node != null) {
  1491. if (node.nodeType === 9 /* NODE_TYPES.DOCUMENT_NODE */) {
  1492. return true;
  1493. }
  1494. node = node.parentNode;
  1495. if (node != null && node.nodeType === 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */) {
  1496. node = node.host;
  1497. }
  1498. }
  1499. return false;
  1500. }
  1501. isSameNode(node) {
  1502. return this === node;
  1503. }
  1504. get lastChild() {
  1505. return this.childNodes[this.childNodes.length - 1] || null;
  1506. }
  1507. get nextSibling() {
  1508. if (this.parentNode != null) {
  1509. const index = this.parentNode.childNodes.indexOf(this) + 1;
  1510. return this.parentNode.childNodes[index] || null;
  1511. }
  1512. return null;
  1513. }
  1514. get nodeValue() {
  1515. var _a;
  1516. return (_a = this._nodeValue) !== null && _a !== void 0 ? _a : '';
  1517. }
  1518. set nodeValue(value) {
  1519. this._nodeValue = value;
  1520. }
  1521. get parentElement() {
  1522. return this.parentNode || null;
  1523. }
  1524. set parentElement(value) {
  1525. this.parentNode = value;
  1526. }
  1527. get previousSibling() {
  1528. if (this.parentNode != null) {
  1529. const index = this.parentNode.childNodes.indexOf(this) - 1;
  1530. return this.parentNode.childNodes[index] || null;
  1531. }
  1532. return null;
  1533. }
  1534. contains(otherNode) {
  1535. if (otherNode === this) {
  1536. return true;
  1537. }
  1538. const childNodes = Array.from(this.childNodes);
  1539. if (childNodes.includes(otherNode)) {
  1540. return true;
  1541. }
  1542. return childNodes.some((node) => this.contains.bind(node)(otherNode));
  1543. }
  1544. removeChild(childNode) {
  1545. const index = this.childNodes.indexOf(childNode);
  1546. if (index > -1) {
  1547. this.childNodes.splice(index, 1);
  1548. if (this.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */) {
  1549. const wasConnected = this.isConnected;
  1550. childNode.parentNode = null;
  1551. if (wasConnected === true) {
  1552. disconnectNode(childNode);
  1553. }
  1554. }
  1555. else {
  1556. childNode.parentNode = null;
  1557. }
  1558. }
  1559. else {
  1560. throw new Error(`node not found within childNodes during removeChild`);
  1561. }
  1562. return childNode;
  1563. }
  1564. remove() {
  1565. if (this.parentNode != null) {
  1566. this.parentNode.removeChild(this);
  1567. }
  1568. }
  1569. replaceChild(newChild, oldChild) {
  1570. if (oldChild.parentNode === this) {
  1571. this.insertBefore(newChild, oldChild);
  1572. oldChild.remove();
  1573. return newChild;
  1574. }
  1575. return null;
  1576. }
  1577. get textContent() {
  1578. var _a;
  1579. return (_a = this._nodeValue) !== null && _a !== void 0 ? _a : '';
  1580. }
  1581. set textContent(value) {
  1582. this._nodeValue = String(value);
  1583. }
  1584. }
  1585. MockNode.ELEMENT_NODE = 1;
  1586. MockNode.TEXT_NODE = 3;
  1587. MockNode.PROCESSING_INSTRUCTION_NODE = 7;
  1588. MockNode.COMMENT_NODE = 8;
  1589. MockNode.DOCUMENT_NODE = 9;
  1590. MockNode.DOCUMENT_TYPE_NODE = 10;
  1591. MockNode.DOCUMENT_FRAGMENT_NODE = 11;
  1592. class MockNodeList {
  1593. constructor(ownerDocument, childNodes, length) {
  1594. this.ownerDocument = ownerDocument;
  1595. this.childNodes = childNodes;
  1596. this.length = length;
  1597. }
  1598. }
  1599. class MockElement extends MockNode {
  1600. constructor(ownerDocument, nodeName) {
  1601. super(ownerDocument, 1 /* NODE_TYPES.ELEMENT_NODE */, typeof nodeName === 'string' ? nodeName : null, null);
  1602. this.namespaceURI = null;
  1603. this.__shadowRoot = null;
  1604. this.__attributeMap = null;
  1605. }
  1606. addEventListener(type, handler) {
  1607. addEventListener(this, type, handler);
  1608. }
  1609. attachShadow(_opts) {
  1610. const shadowRoot = this.ownerDocument.createDocumentFragment();
  1611. this.shadowRoot = shadowRoot;
  1612. return shadowRoot;
  1613. }
  1614. blur() {
  1615. dispatchEvent(this, new MockFocusEvent('blur', { relatedTarget: null, bubbles: true, cancelable: true, composed: true }));
  1616. }
  1617. get shadowRoot() {
  1618. return this.__shadowRoot || null;
  1619. }
  1620. set shadowRoot(shadowRoot) {
  1621. if (shadowRoot != null) {
  1622. shadowRoot.host = this;
  1623. this.__shadowRoot = shadowRoot;
  1624. }
  1625. else {
  1626. delete this.__shadowRoot;
  1627. }
  1628. }
  1629. get attributes() {
  1630. if (this.__attributeMap == null) {
  1631. const attrMap = createAttributeProxy(false);
  1632. this.__attributeMap = attrMap;
  1633. return attrMap;
  1634. }
  1635. return this.__attributeMap;
  1636. }
  1637. set attributes(attrs) {
  1638. this.__attributeMap = attrs;
  1639. }
  1640. get children() {
  1641. return this.childNodes.filter((n) => n.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */);
  1642. }
  1643. get childElementCount() {
  1644. return this.childNodes.filter((n) => n.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */).length;
  1645. }
  1646. get className() {
  1647. return this.getAttributeNS(null, 'class') || '';
  1648. }
  1649. set className(value) {
  1650. this.setAttributeNS(null, 'class', value);
  1651. }
  1652. get classList() {
  1653. return new MockClassList(this);
  1654. }
  1655. click() {
  1656. dispatchEvent(this, new MockEvent('click', { bubbles: true, cancelable: true, composed: true }));
  1657. }
  1658. cloneNode(_deep) {
  1659. // implemented on MockElement.prototype from within element.ts
  1660. // @ts-ignore - implemented on MockElement.prototype from within element.ts
  1661. return null;
  1662. }
  1663. closest(selector) {
  1664. let elm = this;
  1665. while (elm != null) {
  1666. if (elm.matches(selector)) {
  1667. return elm;
  1668. }
  1669. elm = elm.parentNode;
  1670. }
  1671. return null;
  1672. }
  1673. get dataset() {
  1674. return dataset(this);
  1675. }
  1676. get dir() {
  1677. return this.getAttributeNS(null, 'dir') || '';
  1678. }
  1679. set dir(value) {
  1680. this.setAttributeNS(null, 'dir', value);
  1681. }
  1682. dispatchEvent(ev) {
  1683. return dispatchEvent(this, ev);
  1684. }
  1685. get firstElementChild() {
  1686. return this.children[0] || null;
  1687. }
  1688. focus(_options) {
  1689. dispatchEvent(this, new MockFocusEvent('focus', { relatedTarget: null, bubbles: true, cancelable: true, composed: true }));
  1690. }
  1691. getAttribute(attrName) {
  1692. if (attrName === 'style') {
  1693. if (this.__style != null && this.__style.length > 0) {
  1694. return this.style.cssText;
  1695. }
  1696. return null;
  1697. }
  1698. const attr = this.attributes.getNamedItem(attrName);
  1699. if (attr != null) {
  1700. return attr.value;
  1701. }
  1702. return null;
  1703. }
  1704. getAttributeNS(namespaceURI, attrName) {
  1705. const attr = this.attributes.getNamedItemNS(namespaceURI, attrName);
  1706. if (attr != null) {
  1707. return attr.value;
  1708. }
  1709. return null;
  1710. }
  1711. getBoundingClientRect() {
  1712. return { bottom: 0, height: 0, left: 0, right: 0, top: 0, width: 0, x: 0, y: 0 };
  1713. }
  1714. getRootNode(opts) {
  1715. const isComposed = opts != null && opts.composed === true;
  1716. let node = this;
  1717. while (node.parentNode != null) {
  1718. node = node.parentNode;
  1719. if (isComposed === true && node.parentNode == null && node.host != null) {
  1720. node = node.host;
  1721. }
  1722. }
  1723. return node;
  1724. }
  1725. get draggable() {
  1726. return this.getAttributeNS(null, 'draggable') === 'true';
  1727. }
  1728. set draggable(value) {
  1729. this.setAttributeNS(null, 'draggable', value);
  1730. }
  1731. hasChildNodes() {
  1732. return this.childNodes.length > 0;
  1733. }
  1734. get id() {
  1735. return this.getAttributeNS(null, 'id') || '';
  1736. }
  1737. set id(value) {
  1738. this.setAttributeNS(null, 'id', value);
  1739. }
  1740. get innerHTML() {
  1741. if (this.childNodes.length === 0) {
  1742. return '';
  1743. }
  1744. return serializeNodeToHtml(this, {
  1745. newLines: false,
  1746. indentSpaces: 0,
  1747. });
  1748. }
  1749. set innerHTML(html) {
  1750. var _a;
  1751. if (NON_ESCAPABLE_CONTENT.has((_a = this.nodeName) !== null && _a !== void 0 ? _a : '') === true) {
  1752. setTextContent(this, html);
  1753. }
  1754. else {
  1755. for (let i = this.childNodes.length - 1; i >= 0; i--) {
  1756. this.removeChild(this.childNodes[i]);
  1757. }
  1758. if (typeof html === 'string') {
  1759. const frag = parseFragmentUtil(this.ownerDocument, html);
  1760. while (frag.childNodes.length > 0) {
  1761. this.appendChild(frag.childNodes[0]);
  1762. }
  1763. }
  1764. }
  1765. }
  1766. get innerText() {
  1767. const text = [];
  1768. getTextContent(this.childNodes, text);
  1769. return text.join('');
  1770. }
  1771. set innerText(value) {
  1772. setTextContent(this, value);
  1773. }
  1774. insertAdjacentElement(position, elm) {
  1775. if (position === 'beforebegin') {
  1776. insertBefore(this.parentNode, elm, this);
  1777. }
  1778. else if (position === 'afterbegin') {
  1779. this.prepend(elm);
  1780. }
  1781. else if (position === 'beforeend') {
  1782. this.appendChild(elm);
  1783. }
  1784. else if (position === 'afterend') {
  1785. insertBefore(this.parentNode, elm, this.nextSibling);
  1786. }
  1787. return elm;
  1788. }
  1789. insertAdjacentHTML(position, html) {
  1790. const frag = parseFragmentUtil(this.ownerDocument, html);
  1791. if (position === 'beforebegin') {
  1792. while (frag.childNodes.length > 0) {
  1793. insertBefore(this.parentNode, frag.childNodes[0], this);
  1794. }
  1795. }
  1796. else if (position === 'afterbegin') {
  1797. while (frag.childNodes.length > 0) {
  1798. this.prepend(frag.childNodes[frag.childNodes.length - 1]);
  1799. }
  1800. }
  1801. else if (position === 'beforeend') {
  1802. while (frag.childNodes.length > 0) {
  1803. this.appendChild(frag.childNodes[0]);
  1804. }
  1805. }
  1806. else if (position === 'afterend') {
  1807. while (frag.childNodes.length > 0) {
  1808. insertBefore(this.parentNode, frag.childNodes[frag.childNodes.length - 1], this.nextSibling);
  1809. }
  1810. }
  1811. }
  1812. insertAdjacentText(position, text) {
  1813. const elm = this.ownerDocument.createTextNode(text);
  1814. if (position === 'beforebegin') {
  1815. insertBefore(this.parentNode, elm, this);
  1816. }
  1817. else if (position === 'afterbegin') {
  1818. this.prepend(elm);
  1819. }
  1820. else if (position === 'beforeend') {
  1821. this.appendChild(elm);
  1822. }
  1823. else if (position === 'afterend') {
  1824. insertBefore(this.parentNode, elm, this.nextSibling);
  1825. }
  1826. }
  1827. hasAttribute(attrName) {
  1828. if (attrName === 'style') {
  1829. return this.__style != null && this.__style.length > 0;
  1830. }
  1831. return this.getAttribute(attrName) !== null;
  1832. }
  1833. hasAttributeNS(namespaceURI, name) {
  1834. return this.getAttributeNS(namespaceURI, name) !== null;
  1835. }
  1836. get hidden() {
  1837. return this.hasAttributeNS(null, 'hidden');
  1838. }
  1839. set hidden(isHidden) {
  1840. if (isHidden === true) {
  1841. this.setAttributeNS(null, 'hidden', '');
  1842. }
  1843. else {
  1844. this.removeAttributeNS(null, 'hidden');
  1845. }
  1846. }
  1847. get lang() {
  1848. return this.getAttributeNS(null, 'lang') || '';
  1849. }
  1850. set lang(value) {
  1851. this.setAttributeNS(null, 'lang', value);
  1852. }
  1853. get lastElementChild() {
  1854. const children = this.children;
  1855. return children[children.length - 1] || null;
  1856. }
  1857. matches(selector) {
  1858. return matches(selector, this);
  1859. }
  1860. get nextElementSibling() {
  1861. const parentElement = this.parentElement;
  1862. if (parentElement != null &&
  1863. (parentElement.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */ ||
  1864. parentElement.nodeType === 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */ ||
  1865. parentElement.nodeType === 9 /* NODE_TYPES.DOCUMENT_NODE */)) {
  1866. const children = parentElement.children;
  1867. const index = children.indexOf(this) + 1;
  1868. return parentElement.children[index] || null;
  1869. }
  1870. return null;
  1871. }
  1872. get outerHTML() {
  1873. return serializeNodeToHtml(this, {
  1874. newLines: false,
  1875. outerHtml: true,
  1876. indentSpaces: 0,
  1877. });
  1878. }
  1879. get previousElementSibling() {
  1880. const parentElement = this.parentElement;
  1881. if (parentElement != null &&
  1882. (parentElement.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */ ||
  1883. parentElement.nodeType === 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */ ||
  1884. parentElement.nodeType === 9 /* NODE_TYPES.DOCUMENT_NODE */)) {
  1885. const children = parentElement.children;
  1886. const index = children.indexOf(this) - 1;
  1887. return parentElement.children[index] || null;
  1888. }
  1889. return null;
  1890. }
  1891. getElementsByClassName(classNames) {
  1892. const classes = classNames
  1893. .trim()
  1894. .split(' ')
  1895. .filter((c) => c.length > 0);
  1896. const results = [];
  1897. getElementsByClassName(this, classes, results);
  1898. return results;
  1899. }
  1900. getElementsByTagName(tagName) {
  1901. const results = [];
  1902. getElementsByTagName(this, tagName.toLowerCase(), results);
  1903. return results;
  1904. }
  1905. querySelector(selector) {
  1906. return selectOne(selector, this);
  1907. }
  1908. querySelectorAll(selector) {
  1909. return selectAll(selector, this);
  1910. }
  1911. removeAttribute(attrName) {
  1912. if (attrName === 'style') {
  1913. delete this.__style;
  1914. }
  1915. else {
  1916. const attr = this.attributes.getNamedItem(attrName);
  1917. if (attr != null) {
  1918. this.attributes.removeNamedItemNS(attr);
  1919. if (checkAttributeChanged(this) === true) {
  1920. attributeChanged(this, attrName, attr.value, null);
  1921. }
  1922. }
  1923. }
  1924. }
  1925. removeAttributeNS(namespaceURI, attrName) {
  1926. const attr = this.attributes.getNamedItemNS(namespaceURI, attrName);
  1927. if (attr != null) {
  1928. this.attributes.removeNamedItemNS(attr);
  1929. if (checkAttributeChanged(this) === true) {
  1930. attributeChanged(this, attrName, attr.value, null);
  1931. }
  1932. }
  1933. }
  1934. removeEventListener(type, handler) {
  1935. removeEventListener(this, type, handler);
  1936. }
  1937. setAttribute(attrName, value) {
  1938. if (attrName === 'style') {
  1939. this.style = value;
  1940. }
  1941. else {
  1942. const attributes = this.attributes;
  1943. let attr = attributes.getNamedItem(attrName);
  1944. const checkAttrChanged = checkAttributeChanged(this);
  1945. if (attr != null) {
  1946. if (checkAttrChanged === true) {
  1947. const oldValue = attr.value;
  1948. attr.value = value;
  1949. if (oldValue !== attr.value) {
  1950. attributeChanged(this, attr.name, oldValue, attr.value);
  1951. }
  1952. }
  1953. else {
  1954. attr.value = value;
  1955. }
  1956. }
  1957. else {
  1958. if (attributes.caseInsensitive) {
  1959. attrName = attrName.toLowerCase();
  1960. }
  1961. attr = new MockAttr(attrName, value);
  1962. attributes.__items.push(attr);
  1963. if (checkAttrChanged === true) {
  1964. attributeChanged(this, attrName, null, attr.value);
  1965. }
  1966. }
  1967. }
  1968. }
  1969. setAttributeNS(namespaceURI, attrName, value) {
  1970. const attributes = this.attributes;
  1971. let attr = attributes.getNamedItemNS(namespaceURI, attrName);
  1972. const checkAttrChanged = checkAttributeChanged(this);
  1973. if (attr != null) {
  1974. if (checkAttrChanged === true) {
  1975. const oldValue = attr.value;
  1976. attr.value = value;
  1977. if (oldValue !== attr.value) {
  1978. attributeChanged(this, attr.name, oldValue, attr.value);
  1979. }
  1980. }
  1981. else {
  1982. attr.value = value;
  1983. }
  1984. }
  1985. else {
  1986. attr = new MockAttr(attrName, value, namespaceURI);
  1987. attributes.__items.push(attr);
  1988. if (checkAttrChanged === true) {
  1989. attributeChanged(this, attrName, null, attr.value);
  1990. }
  1991. }
  1992. }
  1993. get style() {
  1994. if (this.__style == null) {
  1995. this.__style = createCSSStyleDeclaration();
  1996. }
  1997. return this.__style;
  1998. }
  1999. set style(val) {
  2000. if (typeof val === 'string') {
  2001. if (this.__style == null) {
  2002. this.__style = createCSSStyleDeclaration();
  2003. }
  2004. this.__style.cssText = val;
  2005. }
  2006. else {
  2007. this.__style = val;
  2008. }
  2009. }
  2010. get tabIndex() {
  2011. return parseInt(this.getAttributeNS(null, 'tabindex') || '-1', 10);
  2012. }
  2013. set tabIndex(value) {
  2014. this.setAttributeNS(null, 'tabindex', value);
  2015. }
  2016. get tagName() {
  2017. var _a;
  2018. return (_a = this.nodeName) !== null && _a !== void 0 ? _a : '';
  2019. }
  2020. set tagName(value) {
  2021. this.nodeName = value;
  2022. }
  2023. get textContent() {
  2024. const text = [];
  2025. getTextContent(this.childNodes, text);
  2026. return text.join('');
  2027. }
  2028. set textContent(value) {
  2029. setTextContent(this, value);
  2030. }
  2031. get title() {
  2032. return this.getAttributeNS(null, 'title') || '';
  2033. }
  2034. set title(value) {
  2035. this.setAttributeNS(null, 'title', value);
  2036. }
  2037. animate() {
  2038. /**/
  2039. }
  2040. onanimationstart() {
  2041. /**/
  2042. }
  2043. onanimationend() {
  2044. /**/
  2045. }
  2046. onanimationiteration() {
  2047. /**/
  2048. }
  2049. onabort() {
  2050. /**/
  2051. }
  2052. onauxclick() {
  2053. /**/
  2054. }
  2055. onbeforecopy() {
  2056. /**/
  2057. }
  2058. onbeforecut() {
  2059. /**/
  2060. }
  2061. onbeforepaste() {
  2062. /**/
  2063. }
  2064. onblur() {
  2065. /**/
  2066. }
  2067. oncancel() {
  2068. /**/
  2069. }
  2070. oncanplay() {
  2071. /**/
  2072. }
  2073. oncanplaythrough() {
  2074. /**/
  2075. }
  2076. onchange() {
  2077. /**/
  2078. }
  2079. onclick() {
  2080. /**/
  2081. }
  2082. onclose() {
  2083. /**/
  2084. }
  2085. oncontextmenu() {
  2086. /**/
  2087. }
  2088. oncopy() {
  2089. /**/
  2090. }
  2091. oncuechange() {
  2092. /**/
  2093. }
  2094. oncut() {
  2095. /**/
  2096. }
  2097. ondblclick() {
  2098. /**/
  2099. }
  2100. ondrag() {
  2101. /**/
  2102. }
  2103. ondragend() {
  2104. /**/
  2105. }
  2106. ondragenter() {
  2107. /**/
  2108. }
  2109. ondragleave() {
  2110. /**/
  2111. }
  2112. ondragover() {
  2113. /**/
  2114. }
  2115. ondragstart() {
  2116. /**/
  2117. }
  2118. ondrop() {
  2119. /**/
  2120. }
  2121. ondurationchange() {
  2122. /**/
  2123. }
  2124. onemptied() {
  2125. /**/
  2126. }
  2127. onended() {
  2128. /**/
  2129. }
  2130. onerror() {
  2131. /**/
  2132. }
  2133. onfocus() {
  2134. /**/
  2135. }
  2136. onfocusin() {
  2137. /**/
  2138. }
  2139. onfocusout() {
  2140. /**/
  2141. }
  2142. onformdata() {
  2143. /**/
  2144. }
  2145. onfullscreenchange() {
  2146. /**/
  2147. }
  2148. onfullscreenerror() {
  2149. /**/
  2150. }
  2151. ongotpointercapture() {
  2152. /**/
  2153. }
  2154. oninput() {
  2155. /**/
  2156. }
  2157. oninvalid() {
  2158. /**/
  2159. }
  2160. onkeydown() {
  2161. /**/
  2162. }
  2163. onkeypress() {
  2164. /**/
  2165. }
  2166. onkeyup() {
  2167. /**/
  2168. }
  2169. onload() {
  2170. /**/
  2171. }
  2172. onloadeddata() {
  2173. /**/
  2174. }
  2175. onloadedmetadata() {
  2176. /**/
  2177. }
  2178. onloadstart() {
  2179. /**/
  2180. }
  2181. onlostpointercapture() {
  2182. /**/
  2183. }
  2184. onmousedown() {
  2185. /**/
  2186. }
  2187. onmouseenter() {
  2188. /**/
  2189. }
  2190. onmouseleave() {
  2191. /**/
  2192. }
  2193. onmousemove() {
  2194. /**/
  2195. }
  2196. onmouseout() {
  2197. /**/
  2198. }
  2199. onmouseover() {
  2200. /**/
  2201. }
  2202. onmouseup() {
  2203. /**/
  2204. }
  2205. onmousewheel() {
  2206. /**/
  2207. }
  2208. onpaste() {
  2209. /**/
  2210. }
  2211. onpause() {
  2212. /**/
  2213. }
  2214. onplay() {
  2215. /**/
  2216. }
  2217. onplaying() {
  2218. /**/
  2219. }
  2220. onpointercancel() {
  2221. /**/
  2222. }
  2223. onpointerdown() {
  2224. /**/
  2225. }
  2226. onpointerenter() {
  2227. /**/
  2228. }
  2229. onpointerleave() {
  2230. /**/
  2231. }
  2232. onpointermove() {
  2233. /**/
  2234. }
  2235. onpointerout() {
  2236. /**/
  2237. }
  2238. onpointerover() {
  2239. /**/
  2240. }
  2241. onpointerup() {
  2242. /**/
  2243. }
  2244. onprogress() {
  2245. /**/
  2246. }
  2247. onratechange() {
  2248. /**/
  2249. }
  2250. onreset() {
  2251. /**/
  2252. }
  2253. onresize() {
  2254. /**/
  2255. }
  2256. onscroll() {
  2257. /**/
  2258. }
  2259. onsearch() {
  2260. /**/
  2261. }
  2262. onseeked() {
  2263. /**/
  2264. }
  2265. onseeking() {
  2266. /**/
  2267. }
  2268. onselect() {
  2269. /**/
  2270. }
  2271. onselectstart() {
  2272. /**/
  2273. }
  2274. onstalled() {
  2275. /**/
  2276. }
  2277. onsubmit() {
  2278. /**/
  2279. }
  2280. onsuspend() {
  2281. /**/
  2282. }
  2283. ontimeupdate() {
  2284. /**/
  2285. }
  2286. ontoggle() {
  2287. /**/
  2288. }
  2289. onvolumechange() {
  2290. /**/
  2291. }
  2292. onwaiting() {
  2293. /**/
  2294. }
  2295. onwebkitfullscreenchange() {
  2296. /**/
  2297. }
  2298. onwebkitfullscreenerror() {
  2299. /**/
  2300. }
  2301. onwheel() {
  2302. /**/
  2303. }
  2304. requestFullscreen() {
  2305. /**/
  2306. }
  2307. scrollBy() {
  2308. /**/
  2309. }
  2310. scrollTo() {
  2311. /**/
  2312. }
  2313. scrollIntoView() {
  2314. /**/
  2315. }
  2316. toString(opts) {
  2317. return serializeNodeToHtml(this, opts);
  2318. }
  2319. }
  2320. function getElementsByClassName(elm, classNames, foundElms) {
  2321. const children = elm.children;
  2322. for (let i = 0, ii = children.length; i < ii; i++) {
  2323. const childElm = children[i];
  2324. for (let j = 0, jj = classNames.length; j < jj; j++) {
  2325. if (childElm.classList.contains(classNames[j])) {
  2326. foundElms.push(childElm);
  2327. }
  2328. }
  2329. getElementsByClassName(childElm, classNames, foundElms);
  2330. }
  2331. }
  2332. function getElementsByTagName(elm, tagName, foundElms) {
  2333. var _a;
  2334. const children = elm.children;
  2335. for (let i = 0, ii = children.length; i < ii; i++) {
  2336. const childElm = children[i];
  2337. if (tagName === '*' || ((_a = childElm.nodeName) !== null && _a !== void 0 ? _a : '').toLowerCase() === tagName) {
  2338. foundElms.push(childElm);
  2339. }
  2340. getElementsByTagName(childElm, tagName, foundElms);
  2341. }
  2342. }
  2343. function resetElement(elm) {
  2344. resetEventListeners(elm);
  2345. delete elm.__attributeMap;
  2346. delete elm.__shadowRoot;
  2347. delete elm.__style;
  2348. }
  2349. function insertBefore(parentNode, newNode, referenceNode) {
  2350. if (newNode !== referenceNode) {
  2351. newNode.remove();
  2352. newNode.parentNode = parentNode;
  2353. newNode.ownerDocument = parentNode.ownerDocument;
  2354. if (referenceNode != null) {
  2355. const index = parentNode.childNodes.indexOf(referenceNode);
  2356. if (index > -1) {
  2357. parentNode.childNodes.splice(index, 0, newNode);
  2358. }
  2359. else {
  2360. throw new Error(`referenceNode not found in parentNode.childNodes`);
  2361. }
  2362. }
  2363. else {
  2364. parentNode.childNodes.push(newNode);
  2365. }
  2366. connectNode(parentNode.ownerDocument, newNode);
  2367. }
  2368. return newNode;
  2369. }
  2370. class MockHTMLElement extends MockElement {
  2371. constructor(ownerDocument, nodeName) {
  2372. super(ownerDocument, typeof nodeName === 'string' ? nodeName.toUpperCase() : null);
  2373. this.namespaceURI = 'http://www.w3.org/1999/xhtml';
  2374. }
  2375. get tagName() {
  2376. var _a;
  2377. return (_a = this.nodeName) !== null && _a !== void 0 ? _a : '';
  2378. }
  2379. set tagName(value) {
  2380. this.nodeName = value;
  2381. }
  2382. get attributes() {
  2383. if (this.__attributeMap == null) {
  2384. const attrMap = createAttributeProxy(true);
  2385. this.__attributeMap = attrMap;
  2386. return attrMap;
  2387. }
  2388. return this.__attributeMap;
  2389. }
  2390. set attributes(attrs) {
  2391. this.__attributeMap = attrs;
  2392. }
  2393. }
  2394. class MockTextNode extends MockNode {
  2395. constructor(ownerDocument, text) {
  2396. super(ownerDocument, 3 /* NODE_TYPES.TEXT_NODE */, "#text" /* NODE_NAMES.TEXT_NODE */, text);
  2397. }
  2398. cloneNode(_deep) {
  2399. return new MockTextNode(null, this.nodeValue);
  2400. }
  2401. get textContent() {
  2402. return this.nodeValue;
  2403. }
  2404. set textContent(text) {
  2405. this.nodeValue = text;
  2406. }
  2407. get data() {
  2408. return this.nodeValue;
  2409. }
  2410. set data(text) {
  2411. this.nodeValue = text;
  2412. }
  2413. get wholeText() {
  2414. if (this.parentNode != null) {
  2415. const text = [];
  2416. for (let i = 0, ii = this.parentNode.childNodes.length; i < ii; i++) {
  2417. const childNode = this.parentNode.childNodes[i];
  2418. if (childNode.nodeType === 3 /* NODE_TYPES.TEXT_NODE */) {
  2419. text.push(childNode.nodeValue);
  2420. }
  2421. }
  2422. return text.join('');
  2423. }
  2424. return this.nodeValue;
  2425. }
  2426. }
  2427. function getTextContent(childNodes, text) {
  2428. for (let i = 0, ii = childNodes.length; i < ii; i++) {
  2429. const childNode = childNodes[i];
  2430. if (childNode.nodeType === 3 /* NODE_TYPES.TEXT_NODE */) {
  2431. text.push(childNode.nodeValue);
  2432. }
  2433. else if (childNode.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */) {
  2434. getTextContent(childNode.childNodes, text);
  2435. }
  2436. }
  2437. }
  2438. function setTextContent(elm, text) {
  2439. for (let i = elm.childNodes.length - 1; i >= 0; i--) {
  2440. elm.removeChild(elm.childNodes[i]);
  2441. }
  2442. const textNode = new MockTextNode(elm.ownerDocument, text);
  2443. elm.appendChild(textNode);
  2444. }
  2445. class MockComment extends MockNode {
  2446. constructor(ownerDocument, data) {
  2447. super(ownerDocument, 8 /* NODE_TYPES.COMMENT_NODE */, "#comment" /* NODE_NAMES.COMMENT_NODE */, data);
  2448. }
  2449. cloneNode(_deep) {
  2450. return new MockComment(null, this.nodeValue);
  2451. }
  2452. get textContent() {
  2453. return this.nodeValue;
  2454. }
  2455. set textContent(text) {
  2456. this.nodeValue = text;
  2457. }
  2458. }
  2459. class MockDocumentFragment extends MockHTMLElement {
  2460. constructor(ownerDocument) {
  2461. super(ownerDocument, null);
  2462. this.nodeName = "#document-fragment" /* NODE_NAMES.DOCUMENT_FRAGMENT_NODE */;
  2463. this.nodeType = 11 /* NODE_TYPES.DOCUMENT_FRAGMENT_NODE */;
  2464. }
  2465. getElementById(id) {
  2466. return getElementById(this, id);
  2467. }
  2468. cloneNode(deep) {
  2469. const cloned = new MockDocumentFragment(null);
  2470. if (deep) {
  2471. for (let i = 0, ii = this.childNodes.length; i < ii; i++) {
  2472. const childNode = this.childNodes[i];
  2473. if (childNode.nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */ ||
  2474. childNode.nodeType === 3 /* NODE_TYPES.TEXT_NODE */ ||
  2475. childNode.nodeType === 8 /* NODE_TYPES.COMMENT_NODE */) {
  2476. const clonedChildNode = this.childNodes[i].cloneNode(true);
  2477. cloned.appendChild(clonedChildNode);
  2478. }
  2479. }
  2480. }
  2481. return cloned;
  2482. }
  2483. }
  2484. class MockDocumentTypeNode extends MockHTMLElement {
  2485. constructor(ownerDocument) {
  2486. super(ownerDocument, '!DOCTYPE');
  2487. this.nodeType = 10 /* NODE_TYPES.DOCUMENT_TYPE_NODE */;
  2488. this.setAttribute('html', '');
  2489. }
  2490. }
  2491. class MockCSSRule {
  2492. constructor(parentStyleSheet) {
  2493. this.parentStyleSheet = parentStyleSheet;
  2494. this.cssText = '';
  2495. this.type = 0;
  2496. }
  2497. }
  2498. class MockCSSStyleSheet {
  2499. constructor(ownerNode) {
  2500. this.type = 'text/css';
  2501. this.parentStyleSheet = null;
  2502. this.cssRules = [];
  2503. this.ownerNode = ownerNode;
  2504. }
  2505. get rules() {
  2506. return this.cssRules;
  2507. }
  2508. set rules(rules) {
  2509. this.cssRules = rules;
  2510. }
  2511. deleteRule(index) {
  2512. if (index >= 0 && index < this.cssRules.length) {
  2513. this.cssRules.splice(index, 1);
  2514. updateStyleTextNode(this.ownerNode);
  2515. }
  2516. }
  2517. insertRule(rule, index = 0) {
  2518. if (typeof index !== 'number') {
  2519. index = 0;
  2520. }
  2521. if (index < 0) {
  2522. index = 0;
  2523. }
  2524. if (index > this.cssRules.length) {
  2525. index = this.cssRules.length;
  2526. }
  2527. const cssRule = new MockCSSRule(this);
  2528. cssRule.cssText = rule;
  2529. this.cssRules.splice(index, 0, cssRule);
  2530. updateStyleTextNode(this.ownerNode);
  2531. return index;
  2532. }
  2533. }
  2534. function getStyleElementText(styleElm) {
  2535. const output = [];
  2536. for (let i = 0; i < styleElm.childNodes.length; i++) {
  2537. output.push(styleElm.childNodes[i].nodeValue);
  2538. }
  2539. return output.join('');
  2540. }
  2541. function setStyleElementText(styleElm, text) {
  2542. // keeping the innerHTML and the sheet.cssRules connected
  2543. // is not technically correct, but since we're doing
  2544. // SSR we'll need to turn any assigned cssRules into
  2545. // real text, not just properties that aren't rendered
  2546. const sheet = styleElm.sheet;
  2547. sheet.cssRules.length = 0;
  2548. sheet.insertRule(text);
  2549. updateStyleTextNode(styleElm);
  2550. }
  2551. function updateStyleTextNode(styleElm) {
  2552. const childNodeLen = styleElm.childNodes.length;
  2553. if (childNodeLen > 1) {
  2554. for (let i = childNodeLen - 1; i >= 1; i--) {
  2555. styleElm.removeChild(styleElm.childNodes[i]);
  2556. }
  2557. }
  2558. else if (childNodeLen < 1) {
  2559. styleElm.appendChild(styleElm.ownerDocument.createTextNode(''));
  2560. }
  2561. const textNode = styleElm.childNodes[0];
  2562. textNode.nodeValue = styleElm.sheet.cssRules.map((r) => r.cssText).join('\n');
  2563. }
  2564. function createElement(ownerDocument, tagName) {
  2565. if (typeof tagName !== 'string' || tagName === '' || !/^[a-z0-9-_:]+$/i.test(tagName)) {
  2566. throw new Error(`The tag name provided (${tagName}) is not a valid name.`);
  2567. }
  2568. tagName = tagName.toLowerCase();
  2569. switch (tagName) {
  2570. case 'a':
  2571. return new MockAnchorElement(ownerDocument);
  2572. case 'base':
  2573. return new MockBaseElement(ownerDocument);
  2574. case 'button':
  2575. return new MockButtonElement(ownerDocument);
  2576. case 'canvas':
  2577. return new MockCanvasElement(ownerDocument);
  2578. case 'form':
  2579. return new MockFormElement(ownerDocument);
  2580. case 'img':
  2581. return new MockImageElement(ownerDocument);
  2582. case 'input':
  2583. return new MockInputElement(ownerDocument);
  2584. case 'link':
  2585. return new MockLinkElement(ownerDocument);
  2586. case 'meta':
  2587. return new MockMetaElement(ownerDocument);
  2588. case 'script':
  2589. return new MockScriptElement(ownerDocument);
  2590. case 'style':
  2591. return new MockStyleElement(ownerDocument);
  2592. case 'template':
  2593. return new MockTemplateElement(ownerDocument);
  2594. case 'title':
  2595. return new MockTitleElement(ownerDocument);
  2596. }
  2597. if (ownerDocument != null && tagName.includes('-')) {
  2598. const win = ownerDocument.defaultView;
  2599. if (win != null && win.customElements != null) {
  2600. return createCustomElement(win.customElements, ownerDocument, tagName);
  2601. }
  2602. }
  2603. return new MockHTMLElement(ownerDocument, tagName);
  2604. }
  2605. function createElementNS(ownerDocument, namespaceURI, tagName) {
  2606. if (namespaceURI === 'http://www.w3.org/1999/xhtml') {
  2607. return createElement(ownerDocument, tagName);
  2608. }
  2609. else if (namespaceURI === 'http://www.w3.org/2000/svg') {
  2610. switch (tagName.toLowerCase()) {
  2611. case 'text':
  2612. case 'tspan':
  2613. case 'tref':
  2614. case 'altglyph':
  2615. case 'textpath':
  2616. return new MockSVGTextContentElement(ownerDocument, tagName);
  2617. case 'circle':
  2618. case 'ellipse':
  2619. case 'image':
  2620. case 'line':
  2621. case 'path':
  2622. case 'polygon':
  2623. case 'polyline':
  2624. case 'rect':
  2625. case 'use':
  2626. return new MockSVGGraphicsElement(ownerDocument, tagName);
  2627. case 'svg':
  2628. return new MockSVGSVGElement(ownerDocument, tagName);
  2629. default:
  2630. return new MockSVGElement(ownerDocument, tagName);
  2631. }
  2632. }
  2633. else {
  2634. return new MockElement(ownerDocument, tagName);
  2635. }
  2636. }
  2637. class MockAnchorElement extends MockHTMLElement {
  2638. constructor(ownerDocument) {
  2639. super(ownerDocument, 'a');
  2640. }
  2641. get href() {
  2642. return fullUrl(this, 'href');
  2643. }
  2644. set href(value) {
  2645. this.setAttribute('href', value);
  2646. }
  2647. get pathname() {
  2648. return new URL(this.href).pathname;
  2649. }
  2650. }
  2651. class MockButtonElement extends MockHTMLElement {
  2652. constructor(ownerDocument) {
  2653. super(ownerDocument, 'button');
  2654. }
  2655. }
  2656. patchPropAttributes(MockButtonElement.prototype, {
  2657. type: String,
  2658. }, {
  2659. type: 'submit',
  2660. });
  2661. class MockImageElement extends MockHTMLElement {
  2662. constructor(ownerDocument) {
  2663. super(ownerDocument, 'img');
  2664. }
  2665. get draggable() {
  2666. return this.getAttributeNS(null, 'draggable') !== 'false';
  2667. }
  2668. set draggable(value) {
  2669. this.setAttributeNS(null, 'draggable', value);
  2670. }
  2671. get src() {
  2672. return fullUrl(this, 'src');
  2673. }
  2674. set src(value) {
  2675. this.setAttribute('src', value);
  2676. }
  2677. }
  2678. patchPropAttributes(MockImageElement.prototype, {
  2679. height: Number,
  2680. width: Number,
  2681. });
  2682. class MockInputElement extends MockHTMLElement {
  2683. constructor(ownerDocument) {
  2684. super(ownerDocument, 'input');
  2685. }
  2686. get list() {
  2687. const listId = this.getAttribute('list');
  2688. if (listId) {
  2689. return this.ownerDocument.getElementById(listId);
  2690. }
  2691. return null;
  2692. }
  2693. }
  2694. patchPropAttributes(MockInputElement.prototype, {
  2695. accept: String,
  2696. autocomplete: String,
  2697. autofocus: Boolean,
  2698. capture: String,
  2699. checked: Boolean,
  2700. disabled: Boolean,
  2701. form: String,
  2702. formaction: String,
  2703. formenctype: String,
  2704. formmethod: String,
  2705. formnovalidate: String,
  2706. formtarget: String,
  2707. height: Number,
  2708. inputmode: String,
  2709. max: String,
  2710. maxLength: Number,
  2711. min: String,
  2712. minLength: Number,
  2713. multiple: Boolean,
  2714. name: String,
  2715. pattern: String,
  2716. placeholder: String,
  2717. required: Boolean,
  2718. readOnly: Boolean,
  2719. size: Number,
  2720. spellCheck: Boolean,
  2721. src: String,
  2722. step: String,
  2723. type: String,
  2724. value: String,
  2725. width: Number,
  2726. }, {
  2727. type: 'text',
  2728. });
  2729. class MockFormElement extends MockHTMLElement {
  2730. constructor(ownerDocument) {
  2731. super(ownerDocument, 'form');
  2732. }
  2733. }
  2734. patchPropAttributes(MockFormElement.prototype, {
  2735. name: String,
  2736. });
  2737. class MockLinkElement extends MockHTMLElement {
  2738. constructor(ownerDocument) {
  2739. super(ownerDocument, 'link');
  2740. }
  2741. get href() {
  2742. return fullUrl(this, 'href');
  2743. }
  2744. set href(value) {
  2745. this.setAttribute('href', value);
  2746. }
  2747. }
  2748. patchPropAttributes(MockLinkElement.prototype, {
  2749. crossorigin: String,
  2750. media: String,
  2751. rel: String,
  2752. type: String,
  2753. });
  2754. class MockMetaElement extends MockHTMLElement {
  2755. constructor(ownerDocument) {
  2756. super(ownerDocument, 'meta');
  2757. }
  2758. }
  2759. patchPropAttributes(MockMetaElement.prototype, {
  2760. charset: String,
  2761. content: String,
  2762. name: String,
  2763. });
  2764. class MockScriptElement extends MockHTMLElement {
  2765. constructor(ownerDocument) {
  2766. super(ownerDocument, 'script');
  2767. }
  2768. get src() {
  2769. return fullUrl(this, 'src');
  2770. }
  2771. set src(value) {
  2772. this.setAttribute('src', value);
  2773. }
  2774. }
  2775. patchPropAttributes(MockScriptElement.prototype, {
  2776. type: String,
  2777. });
  2778. class MockDOMMatrix {
  2779. constructor() {
  2780. this.a = 1;
  2781. this.b = 0;
  2782. this.c = 0;
  2783. this.d = 1;
  2784. this.e = 0;
  2785. this.f = 0;
  2786. this.m11 = 1;
  2787. this.m12 = 0;
  2788. this.m13 = 0;
  2789. this.m14 = 0;
  2790. this.m21 = 0;
  2791. this.m22 = 1;
  2792. this.m23 = 0;
  2793. this.m24 = 0;
  2794. this.m31 = 0;
  2795. this.m32 = 0;
  2796. this.m33 = 1;
  2797. this.m34 = 0;
  2798. this.m41 = 0;
  2799. this.m42 = 0;
  2800. this.m43 = 0;
  2801. this.m44 = 1;
  2802. this.is2D = true;
  2803. this.isIdentity = true;
  2804. }
  2805. static fromMatrix() {
  2806. return new MockDOMMatrix();
  2807. }
  2808. inverse() {
  2809. return new MockDOMMatrix();
  2810. }
  2811. flipX() {
  2812. return new MockDOMMatrix();
  2813. }
  2814. flipY() {
  2815. return new MockDOMMatrix();
  2816. }
  2817. multiply() {
  2818. return new MockDOMMatrix();
  2819. }
  2820. rotate() {
  2821. return new MockDOMMatrix();
  2822. }
  2823. rotateAxisAngle() {
  2824. return new MockDOMMatrix();
  2825. }
  2826. rotateFromVector() {
  2827. return new MockDOMMatrix();
  2828. }
  2829. scale() {
  2830. return new MockDOMMatrix();
  2831. }
  2832. scaleNonUniform() {
  2833. return new MockDOMMatrix();
  2834. }
  2835. skewX() {
  2836. return new MockDOMMatrix();
  2837. }
  2838. skewY() {
  2839. return new MockDOMMatrix();
  2840. }
  2841. toJSON() { }
  2842. toString() { }
  2843. transformPoint() {
  2844. return new MockDOMPoint();
  2845. }
  2846. translate() {
  2847. return new MockDOMMatrix();
  2848. }
  2849. }
  2850. class MockDOMPoint {
  2851. constructor() {
  2852. this.w = 1;
  2853. this.x = 0;
  2854. this.y = 0;
  2855. this.z = 0;
  2856. }
  2857. toJSON() { }
  2858. matrixTransform() {
  2859. return new MockDOMMatrix();
  2860. }
  2861. }
  2862. class MockSVGRect {
  2863. constructor() {
  2864. this.height = 10;
  2865. this.width = 10;
  2866. this.x = 0;
  2867. this.y = 0;
  2868. }
  2869. }
  2870. class MockStyleElement extends MockHTMLElement {
  2871. constructor(ownerDocument) {
  2872. super(ownerDocument, 'style');
  2873. this.sheet = new MockCSSStyleSheet(this);
  2874. }
  2875. get innerHTML() {
  2876. return getStyleElementText(this);
  2877. }
  2878. set innerHTML(value) {
  2879. setStyleElementText(this, value);
  2880. }
  2881. get innerText() {
  2882. return getStyleElementText(this);
  2883. }
  2884. set innerText(value) {
  2885. setStyleElementText(this, value);
  2886. }
  2887. get textContent() {
  2888. return getStyleElementText(this);
  2889. }
  2890. set textContent(value) {
  2891. setStyleElementText(this, value);
  2892. }
  2893. }
  2894. class MockSVGElement extends MockElement {
  2895. // SVGElement properties and methods
  2896. get ownerSVGElement() {
  2897. return null;
  2898. }
  2899. get viewportElement() {
  2900. return null;
  2901. }
  2902. onunload() {
  2903. /**/
  2904. }
  2905. // SVGGeometryElement properties and methods
  2906. get pathLength() {
  2907. return 0;
  2908. }
  2909. isPointInFill(_pt) {
  2910. return false;
  2911. }
  2912. isPointInStroke(_pt) {
  2913. return false;
  2914. }
  2915. getTotalLength() {
  2916. return 0;
  2917. }
  2918. }
  2919. class MockSVGGraphicsElement extends MockSVGElement {
  2920. getBBox(_options) {
  2921. return new MockSVGRect();
  2922. }
  2923. getCTM() {
  2924. return new MockDOMMatrix();
  2925. }
  2926. getScreenCTM() {
  2927. return new MockDOMMatrix();
  2928. }
  2929. }
  2930. class MockSVGSVGElement extends MockSVGGraphicsElement {
  2931. createSVGPoint() {
  2932. return new MockDOMPoint();
  2933. }
  2934. }
  2935. class MockSVGTextContentElement extends MockSVGGraphicsElement {
  2936. getComputedTextLength() {
  2937. return 0;
  2938. }
  2939. }
  2940. class MockBaseElement extends MockHTMLElement {
  2941. constructor(ownerDocument) {
  2942. super(ownerDocument, 'base');
  2943. }
  2944. get href() {
  2945. return fullUrl(this, 'href');
  2946. }
  2947. set href(value) {
  2948. this.setAttribute('href', value);
  2949. }
  2950. }
  2951. class MockTemplateElement extends MockHTMLElement {
  2952. constructor(ownerDocument) {
  2953. super(ownerDocument, 'template');
  2954. this.content = new MockDocumentFragment(ownerDocument);
  2955. }
  2956. get innerHTML() {
  2957. return this.content.innerHTML;
  2958. }
  2959. set innerHTML(html) {
  2960. this.content.innerHTML = html;
  2961. }
  2962. cloneNode(deep) {
  2963. const cloned = new MockTemplateElement(null);
  2964. cloned.attributes = cloneAttributes(this.attributes);
  2965. const styleCssText = this.getAttribute('style');
  2966. if (styleCssText != null && styleCssText.length > 0) {
  2967. cloned.setAttribute('style', styleCssText);
  2968. }
  2969. cloned.content = this.content.cloneNode(deep);
  2970. if (deep) {
  2971. for (let i = 0, ii = this.childNodes.length; i < ii; i++) {
  2972. const clonedChildNode = this.childNodes[i].cloneNode(true);
  2973. cloned.appendChild(clonedChildNode);
  2974. }
  2975. }
  2976. return cloned;
  2977. }
  2978. }
  2979. class MockTitleElement extends MockHTMLElement {
  2980. constructor(ownerDocument) {
  2981. super(ownerDocument, 'title');
  2982. }
  2983. get text() {
  2984. return this.textContent;
  2985. }
  2986. set text(value) {
  2987. this.textContent = value;
  2988. }
  2989. }
  2990. class MockCanvasElement extends MockHTMLElement {
  2991. constructor(ownerDocument) {
  2992. super(ownerDocument, 'canvas');
  2993. }
  2994. getContext() {
  2995. return {
  2996. fillRect() {
  2997. return;
  2998. },
  2999. clearRect() { },
  3000. getImageData: function (_, __, w, h) {
  3001. return {
  3002. data: new Array(w * h * 4),
  3003. };
  3004. },
  3005. putImageData() { },
  3006. createImageData: function () {
  3007. return [];
  3008. },
  3009. setTransform() { },
  3010. drawImage() { },
  3011. save() { },
  3012. fillText() { },
  3013. restore() { },
  3014. beginPath() { },
  3015. moveTo() { },
  3016. lineTo() { },
  3017. closePath() { },
  3018. stroke() { },
  3019. translate() { },
  3020. scale() { },
  3021. rotate() { },
  3022. arc() { },
  3023. fill() { },
  3024. measureText() {
  3025. return { width: 0 };
  3026. },
  3027. transform() { },
  3028. rect() { },
  3029. clip() { },
  3030. };
  3031. }
  3032. }
  3033. function fullUrl(elm, attrName) {
  3034. const val = elm.getAttribute(attrName) || '';
  3035. if (elm.ownerDocument != null) {
  3036. const win = elm.ownerDocument.defaultView;
  3037. if (win != null) {
  3038. const loc = win.location;
  3039. if (loc != null) {
  3040. try {
  3041. const url = new URL(val, loc.href);
  3042. return url.href;
  3043. }
  3044. catch (e) { }
  3045. }
  3046. }
  3047. }
  3048. return val.replace(/\'|\"/g, '').trim();
  3049. }
  3050. function patchPropAttributes(prototype, attrs, defaults = {}) {
  3051. Object.keys(attrs).forEach((propName) => {
  3052. const attr = attrs[propName];
  3053. const defaultValue = defaults[propName];
  3054. if (attr === Boolean) {
  3055. Object.defineProperty(prototype, propName, {
  3056. get() {
  3057. return this.hasAttribute(propName);
  3058. },
  3059. set(value) {
  3060. if (value) {
  3061. this.setAttribute(propName, '');
  3062. }
  3063. else {
  3064. this.removeAttribute(propName);
  3065. }
  3066. },
  3067. });
  3068. }
  3069. else if (attr === Number) {
  3070. Object.defineProperty(prototype, propName, {
  3071. get() {
  3072. const value = this.getAttribute(propName);
  3073. return value ? parseInt(value, 10) : defaultValue === undefined ? 0 : defaultValue;
  3074. },
  3075. set(value) {
  3076. this.setAttribute(propName, value);
  3077. },
  3078. });
  3079. }
  3080. else {
  3081. Object.defineProperty(prototype, propName, {
  3082. get() {
  3083. return this.hasAttribute(propName) ? this.getAttribute(propName) : defaultValue || '';
  3084. },
  3085. set(value) {
  3086. this.setAttribute(propName, value);
  3087. },
  3088. });
  3089. }
  3090. });
  3091. }
  3092. MockElement.prototype.cloneNode = function (deep) {
  3093. // because we're creating elements, which extending specific HTML base classes there
  3094. // is a MockElement circular reference that bundling has trouble dealing with so
  3095. // the fix is to add cloneNode() to MockElement's prototype after the HTML classes
  3096. const cloned = createElement(this.ownerDocument, this.nodeName);
  3097. cloned.attributes = cloneAttributes(this.attributes);
  3098. const styleCssText = this.getAttribute('style');
  3099. if (styleCssText != null && styleCssText.length > 0) {
  3100. cloned.setAttribute('style', styleCssText);
  3101. }
  3102. if (deep) {
  3103. for (let i = 0, ii = this.childNodes.length; i < ii; i++) {
  3104. const clonedChildNode = this.childNodes[i].cloneNode(true);
  3105. cloned.appendChild(clonedChildNode);
  3106. }
  3107. }
  3108. return cloned;
  3109. };
  3110. let sharedDocument;
  3111. function parseHtmlToDocument(html, ownerDocument = null) {
  3112. if (ownerDocument == null) {
  3113. if (sharedDocument == null) {
  3114. sharedDocument = new MockDocument();
  3115. }
  3116. ownerDocument = sharedDocument;
  3117. }
  3118. return parseDocumentUtil(ownerDocument, html);
  3119. }
  3120. function parseHtmlToFragment(html, ownerDocument = null) {
  3121. if (ownerDocument == null) {
  3122. if (sharedDocument == null) {
  3123. sharedDocument = new MockDocument();
  3124. }
  3125. ownerDocument = sharedDocument;
  3126. }
  3127. return parseFragmentUtil(ownerDocument, html);
  3128. }
  3129. const consoleNoop = () => {
  3130. /**/
  3131. };
  3132. function createConsole() {
  3133. return {
  3134. debug: consoleNoop,
  3135. error: consoleNoop,
  3136. info: consoleNoop,
  3137. log: consoleNoop,
  3138. warn: consoleNoop,
  3139. dir: consoleNoop,
  3140. dirxml: consoleNoop,
  3141. table: consoleNoop,
  3142. trace: consoleNoop,
  3143. group: consoleNoop,
  3144. groupCollapsed: consoleNoop,
  3145. groupEnd: consoleNoop,
  3146. clear: consoleNoop,
  3147. count: consoleNoop,
  3148. countReset: consoleNoop,
  3149. assert: consoleNoop,
  3150. profile: consoleNoop,
  3151. profileEnd: consoleNoop,
  3152. time: consoleNoop,
  3153. timeLog: consoleNoop,
  3154. timeEnd: consoleNoop,
  3155. timeStamp: consoleNoop,
  3156. context: consoleNoop,
  3157. memory: consoleNoop,
  3158. };
  3159. }
  3160. class MockHeaders {
  3161. constructor(init) {
  3162. this._values = [];
  3163. if (typeof init === 'object') {
  3164. if (typeof init[Symbol.iterator] === 'function') {
  3165. const kvs = [];
  3166. for (const kv of init) {
  3167. if (typeof kv[Symbol.iterator] === 'function') {
  3168. kvs.push([...kv]);
  3169. }
  3170. }
  3171. for (const kv of kvs) {
  3172. this.append(kv[0], kv[1]);
  3173. }
  3174. }
  3175. else {
  3176. for (const key in init) {
  3177. this.append(key, init[key]);
  3178. }
  3179. }
  3180. }
  3181. }
  3182. append(key, value) {
  3183. this._values.push([key, value + '']);
  3184. }
  3185. delete(key) {
  3186. key = key.toLowerCase();
  3187. for (let i = this._values.length - 1; i >= 0; i--) {
  3188. if (this._values[i][0].toLowerCase() === key) {
  3189. this._values.splice(i, 1);
  3190. }
  3191. }
  3192. }
  3193. entries() {
  3194. const entries = [];
  3195. for (const kv of this.keys()) {
  3196. entries.push([kv, this.get(kv)]);
  3197. }
  3198. let index = -1;
  3199. return {
  3200. next() {
  3201. index++;
  3202. return {
  3203. value: entries[index],
  3204. done: !entries[index],
  3205. };
  3206. },
  3207. [Symbol.iterator]() {
  3208. return this;
  3209. },
  3210. };
  3211. }
  3212. forEach(cb) {
  3213. for (const kv of this.entries()) {
  3214. cb(kv[1], kv[0]);
  3215. }
  3216. }
  3217. get(key) {
  3218. const rtn = [];
  3219. key = key.toLowerCase();
  3220. for (const kv of this._values) {
  3221. if (kv[0].toLowerCase() === key) {
  3222. rtn.push(kv[1]);
  3223. }
  3224. }
  3225. return rtn.length > 0 ? rtn.join(', ') : null;
  3226. }
  3227. has(key) {
  3228. key = key.toLowerCase();
  3229. for (const kv of this._values) {
  3230. if (kv[0].toLowerCase() === key) {
  3231. return true;
  3232. }
  3233. }
  3234. return false;
  3235. }
  3236. keys() {
  3237. const keys = [];
  3238. for (const kv of this._values) {
  3239. const key = kv[0].toLowerCase();
  3240. if (!keys.includes(key)) {
  3241. keys.push(key);
  3242. }
  3243. }
  3244. let index = -1;
  3245. return {
  3246. next() {
  3247. index++;
  3248. return {
  3249. value: keys[index],
  3250. done: !keys[index],
  3251. };
  3252. },
  3253. [Symbol.iterator]() {
  3254. return this;
  3255. },
  3256. };
  3257. }
  3258. set(key, value) {
  3259. for (const kv of this._values) {
  3260. if (kv[0].toLowerCase() === key.toLowerCase()) {
  3261. kv[1] = value + '';
  3262. return;
  3263. }
  3264. }
  3265. this.append(key, value);
  3266. }
  3267. values() {
  3268. const values = this._values;
  3269. let index = -1;
  3270. return {
  3271. next() {
  3272. index++;
  3273. const done = !values[index];
  3274. return {
  3275. value: done ? undefined : values[index][1],
  3276. done,
  3277. };
  3278. },
  3279. [Symbol.iterator]() {
  3280. return this;
  3281. },
  3282. };
  3283. }
  3284. [Symbol.iterator]() {
  3285. return this.entries();
  3286. }
  3287. }
  3288. class MockDOMParser {
  3289. parseFromString(htmlToParse, mimeType) {
  3290. if (mimeType !== 'text/html') {
  3291. console.error('XML parsing not implemented yet, continuing as html');
  3292. }
  3293. return parseHtmlToDocument(htmlToParse);
  3294. }
  3295. }
  3296. class MockRequest {
  3297. constructor(input, init = {}) {
  3298. this._method = 'GET';
  3299. this._url = '/';
  3300. this.bodyUsed = false;
  3301. this.cache = 'default';
  3302. this.credentials = 'same-origin';
  3303. this.integrity = '';
  3304. this.keepalive = false;
  3305. this.mode = 'cors';
  3306. this.redirect = 'follow';
  3307. this.referrer = 'about:client';
  3308. this.referrerPolicy = '';
  3309. if (typeof input === 'string') {
  3310. this.url = input;
  3311. }
  3312. else if (input) {
  3313. Object.assign(this, input);
  3314. this.headers = new MockHeaders(input.headers);
  3315. }
  3316. Object.assign(this, init);
  3317. if (init.headers) {
  3318. this.headers = new MockHeaders(init.headers);
  3319. }
  3320. if (!this.headers) {
  3321. this.headers = new MockHeaders();
  3322. }
  3323. }
  3324. get url() {
  3325. if (typeof this._url === 'string') {
  3326. return new URL(this._url, location.href).href;
  3327. }
  3328. return new URL('/', location.href).href;
  3329. }
  3330. set url(value) {
  3331. this._url = value;
  3332. }
  3333. get method() {
  3334. if (typeof this._method === 'string') {
  3335. return this._method.toUpperCase();
  3336. }
  3337. return 'GET';
  3338. }
  3339. set method(value) {
  3340. this._method = value;
  3341. }
  3342. clone() {
  3343. const clone = { ...this };
  3344. clone.headers = new MockHeaders(this.headers);
  3345. return new MockRequest(clone);
  3346. }
  3347. }
  3348. class MockResponse {
  3349. constructor(body, init = {}) {
  3350. this.ok = true;
  3351. this.status = 200;
  3352. this.statusText = '';
  3353. this.type = 'default';
  3354. this.url = '';
  3355. this._body = body;
  3356. if (init) {
  3357. Object.assign(this, init);
  3358. }
  3359. this.headers = new MockHeaders(init.headers);
  3360. }
  3361. async json() {
  3362. return JSON.parse(this._body);
  3363. }
  3364. async text() {
  3365. return this._body;
  3366. }
  3367. clone() {
  3368. const initClone = { ...this };
  3369. initClone.headers = new MockHeaders(this.headers);
  3370. return new MockResponse(this._body, initClone);
  3371. }
  3372. }
  3373. function setupGlobal(gbl) {
  3374. if (gbl.window == null) {
  3375. const win = (gbl.window = new MockWindow());
  3376. WINDOW_FUNCTIONS.forEach((fnName) => {
  3377. if (!(fnName in gbl)) {
  3378. gbl[fnName] = win[fnName].bind(win);
  3379. }
  3380. });
  3381. WINDOW_PROPS.forEach((propName) => {
  3382. if (!(propName in gbl)) {
  3383. Object.defineProperty(gbl, propName, {
  3384. get() {
  3385. return win[propName];
  3386. },
  3387. set(val) {
  3388. win[propName] = val;
  3389. },
  3390. configurable: true,
  3391. enumerable: true,
  3392. });
  3393. }
  3394. });
  3395. GLOBAL_CONSTRUCTORS.forEach(([cstrName]) => {
  3396. gbl[cstrName] = win[cstrName];
  3397. });
  3398. }
  3399. return gbl.window;
  3400. }
  3401. function teardownGlobal(gbl) {
  3402. const win = gbl.window;
  3403. if (win && typeof win.close === 'function') {
  3404. win.close();
  3405. }
  3406. }
  3407. function patchWindow(winToBePatched) {
  3408. const mockWin = new MockWindow(false);
  3409. WINDOW_FUNCTIONS.forEach((fnName) => {
  3410. if (typeof winToBePatched[fnName] !== 'function') {
  3411. winToBePatched[fnName] = mockWin[fnName].bind(mockWin);
  3412. }
  3413. });
  3414. WINDOW_PROPS.forEach((propName) => {
  3415. if (winToBePatched === undefined) {
  3416. Object.defineProperty(winToBePatched, propName, {
  3417. get() {
  3418. return mockWin[propName];
  3419. },
  3420. set(val) {
  3421. mockWin[propName] = val;
  3422. },
  3423. configurable: true,
  3424. enumerable: true,
  3425. });
  3426. }
  3427. });
  3428. }
  3429. function addGlobalsToWindowPrototype(mockWinPrototype) {
  3430. GLOBAL_CONSTRUCTORS.forEach(([cstrName, Cstr]) => {
  3431. Object.defineProperty(mockWinPrototype, cstrName, {
  3432. get() {
  3433. return this['__' + cstrName] || Cstr;
  3434. },
  3435. set(cstr) {
  3436. this['__' + cstrName] = cstr;
  3437. },
  3438. configurable: true,
  3439. enumerable: true,
  3440. });
  3441. });
  3442. }
  3443. const WINDOW_FUNCTIONS = [
  3444. 'addEventListener',
  3445. 'alert',
  3446. 'blur',
  3447. 'cancelAnimationFrame',
  3448. 'cancelIdleCallback',
  3449. 'clearInterval',
  3450. 'clearTimeout',
  3451. 'close',
  3452. 'confirm',
  3453. 'dispatchEvent',
  3454. 'focus',
  3455. 'getComputedStyle',
  3456. 'matchMedia',
  3457. 'open',
  3458. 'prompt',
  3459. 'removeEventListener',
  3460. 'requestAnimationFrame',
  3461. 'requestIdleCallback',
  3462. 'URL',
  3463. ];
  3464. const WINDOW_PROPS = [
  3465. 'customElements',
  3466. 'devicePixelRatio',
  3467. 'document',
  3468. 'history',
  3469. 'innerHeight',
  3470. 'innerWidth',
  3471. 'localStorage',
  3472. 'location',
  3473. 'navigator',
  3474. 'pageXOffset',
  3475. 'pageYOffset',
  3476. 'performance',
  3477. 'screenLeft',
  3478. 'screenTop',
  3479. 'screenX',
  3480. 'screenY',
  3481. 'scrollX',
  3482. 'scrollY',
  3483. 'sessionStorage',
  3484. 'CSS',
  3485. 'CustomEvent',
  3486. 'Event',
  3487. 'Element',
  3488. 'HTMLElement',
  3489. 'Node',
  3490. 'NodeList',
  3491. 'FocusEvent',
  3492. 'KeyboardEvent',
  3493. 'MouseEvent',
  3494. ];
  3495. const GLOBAL_CONSTRUCTORS = [
  3496. ['CustomEvent', MockCustomEvent],
  3497. ['Event', MockEvent],
  3498. ['Headers', MockHeaders],
  3499. ['FocusEvent', MockFocusEvent],
  3500. ['KeyboardEvent', MockKeyboardEvent],
  3501. ['MouseEvent', MockMouseEvent],
  3502. ['Request', MockRequest],
  3503. ['Response', MockResponse],
  3504. ['DOMParser', MockDOMParser],
  3505. ['HTMLAnchorElement', MockAnchorElement],
  3506. ['HTMLBaseElement', MockBaseElement],
  3507. ['HTMLButtonElement', MockButtonElement],
  3508. ['HTMLCanvasElement', MockCanvasElement],
  3509. ['HTMLFormElement', MockFormElement],
  3510. ['HTMLImageElement', MockImageElement],
  3511. ['HTMLInputElement', MockInputElement],
  3512. ['HTMLLinkElement', MockLinkElement],
  3513. ['HTMLMetaElement', MockMetaElement],
  3514. ['HTMLScriptElement', MockScriptElement],
  3515. ['HTMLStyleElement', MockStyleElement],
  3516. ['HTMLTemplateElement', MockTemplateElement],
  3517. ['HTMLTitleElement', MockTitleElement],
  3518. ];
  3519. class MockHistory {
  3520. constructor() {
  3521. this.items = [];
  3522. }
  3523. get length() {
  3524. return this.items.length;
  3525. }
  3526. back() {
  3527. this.go(-1);
  3528. }
  3529. forward() {
  3530. this.go(1);
  3531. }
  3532. go(_value) {
  3533. //
  3534. }
  3535. pushState(_state, _title, _url) {
  3536. //
  3537. }
  3538. replaceState(_state, _title, _url) {
  3539. //
  3540. }
  3541. }
  3542. class MockIntersectionObserver {
  3543. constructor() {
  3544. /**/
  3545. }
  3546. disconnect() {
  3547. /**/
  3548. }
  3549. observe() {
  3550. /**/
  3551. }
  3552. takeRecords() {
  3553. return [];
  3554. }
  3555. unobserve() {
  3556. /**/
  3557. }
  3558. }
  3559. class MockLocation {
  3560. constructor() {
  3561. this.ancestorOrigins = null;
  3562. this.protocol = '';
  3563. this.host = '';
  3564. this.hostname = '';
  3565. this.port = '';
  3566. this.pathname = '';
  3567. this.search = '';
  3568. this.hash = '';
  3569. this.username = '';
  3570. this.password = '';
  3571. this.origin = '';
  3572. this._href = '';
  3573. }
  3574. get href() {
  3575. return this._href;
  3576. }
  3577. set href(value) {
  3578. const url = new URL(value, 'http://mockdoc.stenciljs.com');
  3579. this._href = url.href;
  3580. this.protocol = url.protocol;
  3581. this.host = url.host;
  3582. this.hostname = url.hostname;
  3583. this.port = url.port;
  3584. this.pathname = url.pathname;
  3585. this.search = url.search;
  3586. this.hash = url.hash;
  3587. this.username = url.username;
  3588. this.password = url.password;
  3589. this.origin = url.origin;
  3590. }
  3591. assign(_url) {
  3592. //
  3593. }
  3594. reload(_forcedReload) {
  3595. //
  3596. }
  3597. replace(_url) {
  3598. //
  3599. }
  3600. toString() {
  3601. return this.href;
  3602. }
  3603. }
  3604. class MockNavigator {
  3605. constructor() {
  3606. this.appCodeName = 'MockNavigator';
  3607. this.appName = 'MockNavigator';
  3608. this.appVersion = 'MockNavigator';
  3609. this.platform = 'MockNavigator';
  3610. this.userAgent = 'MockNavigator';
  3611. }
  3612. }
  3613. /**
  3614. * https://developer.mozilla.org/en-US/docs/Web/API/Performance
  3615. */
  3616. class MockPerformance {
  3617. constructor() {
  3618. this.timeOrigin = Date.now();
  3619. this.eventCounts = new Map();
  3620. }
  3621. addEventListener() {
  3622. //
  3623. }
  3624. clearMarks() {
  3625. //
  3626. }
  3627. clearMeasures() {
  3628. //
  3629. }
  3630. clearResourceTimings() {
  3631. //
  3632. }
  3633. dispatchEvent() {
  3634. return true;
  3635. }
  3636. getEntries() {
  3637. return [];
  3638. }
  3639. getEntriesByName() {
  3640. return [];
  3641. }
  3642. getEntriesByType() {
  3643. return [];
  3644. }
  3645. // Stencil's implementation of `mark` is non-compliant with the `Performance` interface. Because Stencil will
  3646. // instantiate an instance of this class and may attempt to assign it to a variable of type `Performance`, the return
  3647. // type must match the `Performance` interface (rather than typing this function as returning `void` and ignoring the
  3648. // associated errors returned by the type checker)
  3649. // @ts-ignore
  3650. mark() {
  3651. //
  3652. }
  3653. // Stencil's implementation of `measure` is non-compliant with the `Performance` interface. Because Stencil will
  3654. // instantiate an instance of this class and may attempt to assign it to a variable of type `Performance`, the return
  3655. // type must match the `Performance` interface (rather than typing this function as returning `void` and ignoring the
  3656. // associated errors returned by the type checker)
  3657. // @ts-ignore
  3658. measure() {
  3659. //
  3660. }
  3661. get navigation() {
  3662. return {};
  3663. }
  3664. now() {
  3665. return Date.now() - this.timeOrigin;
  3666. }
  3667. get onresourcetimingbufferfull() {
  3668. return null;
  3669. }
  3670. removeEventListener() {
  3671. //
  3672. }
  3673. setResourceTimingBufferSize() {
  3674. //
  3675. }
  3676. get timing() {
  3677. return {};
  3678. }
  3679. toJSON() {
  3680. //
  3681. }
  3682. }
  3683. function resetPerformance(perf) {
  3684. if (perf != null) {
  3685. try {
  3686. perf.timeOrigin = Date.now();
  3687. }
  3688. catch (e) { }
  3689. }
  3690. }
  3691. class MockStorage {
  3692. constructor() {
  3693. this.items = new Map();
  3694. }
  3695. key(_value) {
  3696. //
  3697. }
  3698. getItem(key) {
  3699. key = String(key);
  3700. if (this.items.has(key)) {
  3701. return this.items.get(key);
  3702. }
  3703. return null;
  3704. }
  3705. setItem(key, value) {
  3706. if (value == null) {
  3707. value = 'null';
  3708. }
  3709. this.items.set(String(key), String(value));
  3710. }
  3711. removeItem(key) {
  3712. this.items.delete(String(key));
  3713. }
  3714. clear() {
  3715. this.items.clear();
  3716. }
  3717. }
  3718. const nativeClearInterval = clearInterval;
  3719. const nativeClearTimeout = clearTimeout;
  3720. const nativeSetInterval = setInterval;
  3721. const nativeSetTimeout = setTimeout;
  3722. const nativeURL = URL;
  3723. class MockWindow {
  3724. constructor(html = null) {
  3725. if (html !== false) {
  3726. this.document = new MockDocument(html, this);
  3727. }
  3728. else {
  3729. this.document = null;
  3730. }
  3731. this.performance = new MockPerformance();
  3732. this.customElements = new MockCustomElementRegistry(this);
  3733. this.console = createConsole();
  3734. resetWindowDefaults(this);
  3735. resetWindowDimensions(this);
  3736. }
  3737. addEventListener(type, handler) {
  3738. addEventListener(this, type, handler);
  3739. }
  3740. alert(msg) {
  3741. if (this.console) {
  3742. this.console.debug(msg);
  3743. }
  3744. else {
  3745. console.debug(msg);
  3746. }
  3747. }
  3748. blur() {
  3749. /**/
  3750. }
  3751. cancelAnimationFrame(id) {
  3752. this.__clearTimeout(id);
  3753. }
  3754. cancelIdleCallback(id) {
  3755. this.__clearTimeout(id);
  3756. }
  3757. get CharacterData() {
  3758. if (this.__charDataCstr == null) {
  3759. const ownerDocument = this.document;
  3760. this.__charDataCstr = class extends MockNode {
  3761. constructor() {
  3762. super(ownerDocument, 0, 'test', '');
  3763. throw new Error('Illegal constructor: cannot construct CharacterData');
  3764. }
  3765. };
  3766. }
  3767. return this.__charDataCstr;
  3768. }
  3769. set CharacterData(charDataCstr) {
  3770. this.__charDataCstr = charDataCstr;
  3771. }
  3772. clearInterval(id) {
  3773. this.__clearInterval(id);
  3774. }
  3775. clearTimeout(id) {
  3776. this.__clearTimeout(id);
  3777. }
  3778. close() {
  3779. resetWindow(this);
  3780. }
  3781. confirm() {
  3782. return false;
  3783. }
  3784. get CSS() {
  3785. return {
  3786. supports: () => true,
  3787. };
  3788. }
  3789. get Document() {
  3790. if (this.__docCstr == null) {
  3791. const win = this;
  3792. this.__docCstr = class extends MockDocument {
  3793. constructor() {
  3794. super(false, win);
  3795. throw new Error('Illegal constructor: cannot construct Document');
  3796. }
  3797. };
  3798. }
  3799. return this.__docCstr;
  3800. }
  3801. set Document(docCstr) {
  3802. this.__docCstr = docCstr;
  3803. }
  3804. get DocumentFragment() {
  3805. if (this.__docFragCstr == null) {
  3806. const ownerDocument = this.document;
  3807. this.__docFragCstr = class extends MockDocumentFragment {
  3808. constructor() {
  3809. super(ownerDocument);
  3810. throw new Error('Illegal constructor: cannot construct DocumentFragment');
  3811. }
  3812. };
  3813. }
  3814. return this.__docFragCstr;
  3815. }
  3816. set DocumentFragment(docFragCstr) {
  3817. this.__docFragCstr = docFragCstr;
  3818. }
  3819. get DocumentType() {
  3820. if (this.__docTypeCstr == null) {
  3821. const ownerDocument = this.document;
  3822. this.__docTypeCstr = class extends MockNode {
  3823. constructor() {
  3824. super(ownerDocument, 0, 'test', '');
  3825. throw new Error('Illegal constructor: cannot construct DocumentType');
  3826. }
  3827. };
  3828. }
  3829. return this.__docTypeCstr;
  3830. }
  3831. set DocumentType(docTypeCstr) {
  3832. this.__docTypeCstr = docTypeCstr;
  3833. }
  3834. get DOMTokenList() {
  3835. if (this.__domTokenListCstr == null) {
  3836. this.__domTokenListCstr = class MockDOMTokenList {
  3837. };
  3838. }
  3839. return this.__domTokenListCstr;
  3840. }
  3841. set DOMTokenList(domTokenListCstr) {
  3842. this.__domTokenListCstr = domTokenListCstr;
  3843. }
  3844. dispatchEvent(ev) {
  3845. return dispatchEvent(this, ev);
  3846. }
  3847. get Element() {
  3848. if (this.__elementCstr == null) {
  3849. const ownerDocument = this.document;
  3850. this.__elementCstr = class extends MockElement {
  3851. constructor() {
  3852. super(ownerDocument, '');
  3853. throw new Error('Illegal constructor: cannot construct Element');
  3854. }
  3855. };
  3856. }
  3857. return this.__elementCstr;
  3858. }
  3859. fetch(input, init) {
  3860. if (typeof fetch === 'function') {
  3861. return fetch(input, init);
  3862. }
  3863. throw new Error(`fetch() not implemented`);
  3864. }
  3865. focus() {
  3866. /**/
  3867. }
  3868. getComputedStyle(_) {
  3869. return {
  3870. cssText: '',
  3871. length: 0,
  3872. parentRule: null,
  3873. getPropertyPriority() {
  3874. return null;
  3875. },
  3876. getPropertyValue() {
  3877. return '';
  3878. },
  3879. item() {
  3880. return null;
  3881. },
  3882. removeProperty() {
  3883. return null;
  3884. },
  3885. setProperty() {
  3886. return null;
  3887. },
  3888. };
  3889. }
  3890. get globalThis() {
  3891. return this;
  3892. }
  3893. get history() {
  3894. if (this.__history == null) {
  3895. this.__history = new MockHistory();
  3896. }
  3897. return this.__history;
  3898. }
  3899. set history(hsty) {
  3900. this.__history = hsty;
  3901. }
  3902. get JSON() {
  3903. return JSON;
  3904. }
  3905. get HTMLElement() {
  3906. if (this.__htmlElementCstr == null) {
  3907. const ownerDocument = this.document;
  3908. this.__htmlElementCstr = class extends MockHTMLElement {
  3909. constructor() {
  3910. super(ownerDocument, '');
  3911. const observedAttributes = this.constructor.observedAttributes;
  3912. if (Array.isArray(observedAttributes) && typeof this.attributeChangedCallback === 'function') {
  3913. observedAttributes.forEach((attrName) => {
  3914. const attrValue = this.getAttribute(attrName);
  3915. if (attrValue != null) {
  3916. this.attributeChangedCallback(attrName, null, attrValue);
  3917. }
  3918. });
  3919. }
  3920. }
  3921. };
  3922. }
  3923. return this.__htmlElementCstr;
  3924. }
  3925. set HTMLElement(htmlElementCstr) {
  3926. this.__htmlElementCstr = htmlElementCstr;
  3927. }
  3928. get IntersectionObserver() {
  3929. return MockIntersectionObserver;
  3930. }
  3931. get localStorage() {
  3932. if (this.__localStorage == null) {
  3933. this.__localStorage = new MockStorage();
  3934. }
  3935. return this.__localStorage;
  3936. }
  3937. set localStorage(locStorage) {
  3938. this.__localStorage = locStorage;
  3939. }
  3940. get location() {
  3941. if (this.__location == null) {
  3942. this.__location = new MockLocation();
  3943. }
  3944. return this.__location;
  3945. }
  3946. set location(val) {
  3947. if (typeof val === 'string') {
  3948. if (this.__location == null) {
  3949. this.__location = new MockLocation();
  3950. }
  3951. this.__location.href = val;
  3952. }
  3953. else {
  3954. this.__location = val;
  3955. }
  3956. }
  3957. matchMedia() {
  3958. return {
  3959. matches: false,
  3960. };
  3961. }
  3962. get Node() {
  3963. if (this.__nodeCstr == null) {
  3964. const ownerDocument = this.document;
  3965. this.__nodeCstr = class extends MockNode {
  3966. constructor() {
  3967. super(ownerDocument, 0, 'test', '');
  3968. throw new Error('Illegal constructor: cannot construct Node');
  3969. }
  3970. };
  3971. }
  3972. return this.__nodeCstr;
  3973. }
  3974. get NodeList() {
  3975. if (this.__nodeListCstr == null) {
  3976. const ownerDocument = this.document;
  3977. this.__nodeListCstr = class extends MockNodeList {
  3978. constructor() {
  3979. super(ownerDocument, [], 0);
  3980. throw new Error('Illegal constructor: cannot construct NodeList');
  3981. }
  3982. };
  3983. }
  3984. return this.__nodeListCstr;
  3985. }
  3986. get navigator() {
  3987. if (this.__navigator == null) {
  3988. this.__navigator = new MockNavigator();
  3989. }
  3990. return this.__navigator;
  3991. }
  3992. set navigator(nav) {
  3993. this.__navigator = nav;
  3994. }
  3995. get parent() {
  3996. return null;
  3997. }
  3998. prompt() {
  3999. return '';
  4000. }
  4001. open() {
  4002. return null;
  4003. }
  4004. get origin() {
  4005. return this.location.origin;
  4006. }
  4007. removeEventListener(type, handler) {
  4008. removeEventListener(this, type, handler);
  4009. }
  4010. requestAnimationFrame(callback) {
  4011. return this.setTimeout(() => {
  4012. callback(Date.now());
  4013. }, 0);
  4014. }
  4015. requestIdleCallback(callback) {
  4016. return this.setTimeout(() => {
  4017. callback({
  4018. didTimeout: false,
  4019. timeRemaining: () => 0,
  4020. });
  4021. }, 0);
  4022. }
  4023. scroll(_x, _y) {
  4024. /**/
  4025. }
  4026. scrollBy(_x, _y) {
  4027. /**/
  4028. }
  4029. scrollTo(_x, _y) {
  4030. /**/
  4031. }
  4032. get self() {
  4033. return this;
  4034. }
  4035. get sessionStorage() {
  4036. if (this.__sessionStorage == null) {
  4037. this.__sessionStorage = new MockStorage();
  4038. }
  4039. return this.__sessionStorage;
  4040. }
  4041. set sessionStorage(locStorage) {
  4042. this.__sessionStorage = locStorage;
  4043. }
  4044. setInterval(callback, ms, ...args) {
  4045. if (this.__timeouts == null) {
  4046. this.__timeouts = new Set();
  4047. }
  4048. ms = Math.min(ms, this.__maxTimeout);
  4049. if (this.__allowInterval) {
  4050. const intervalId = this.__setInterval(() => {
  4051. if (this.__timeouts) {
  4052. this.__timeouts.delete(intervalId);
  4053. try {
  4054. callback(...args);
  4055. }
  4056. catch (e) {
  4057. if (this.console) {
  4058. this.console.error(e);
  4059. }
  4060. else {
  4061. console.error(e);
  4062. }
  4063. }
  4064. }
  4065. }, ms);
  4066. if (this.__timeouts) {
  4067. this.__timeouts.add(intervalId);
  4068. }
  4069. return intervalId;
  4070. }
  4071. const timeoutId = this.__setTimeout(() => {
  4072. if (this.__timeouts) {
  4073. this.__timeouts.delete(timeoutId);
  4074. try {
  4075. callback(...args);
  4076. }
  4077. catch (e) {
  4078. if (this.console) {
  4079. this.console.error(e);
  4080. }
  4081. else {
  4082. console.error(e);
  4083. }
  4084. }
  4085. }
  4086. }, ms);
  4087. if (this.__timeouts) {
  4088. this.__timeouts.add(timeoutId);
  4089. }
  4090. return timeoutId;
  4091. }
  4092. setTimeout(callback, ms, ...args) {
  4093. if (this.__timeouts == null) {
  4094. this.__timeouts = new Set();
  4095. }
  4096. ms = Math.min(ms, this.__maxTimeout);
  4097. const timeoutId = this.__setTimeout(() => {
  4098. if (this.__timeouts) {
  4099. this.__timeouts.delete(timeoutId);
  4100. try {
  4101. callback(...args);
  4102. }
  4103. catch (e) {
  4104. if (this.console) {
  4105. this.console.error(e);
  4106. }
  4107. else {
  4108. console.error(e);
  4109. }
  4110. }
  4111. }
  4112. }, ms);
  4113. if (this.__timeouts) {
  4114. this.__timeouts.add(timeoutId);
  4115. }
  4116. return timeoutId;
  4117. }
  4118. get top() {
  4119. return this;
  4120. }
  4121. get window() {
  4122. return this;
  4123. }
  4124. onanimationstart() {
  4125. /**/
  4126. }
  4127. onanimationend() {
  4128. /**/
  4129. }
  4130. onanimationiteration() {
  4131. /**/
  4132. }
  4133. onabort() {
  4134. /**/
  4135. }
  4136. onauxclick() {
  4137. /**/
  4138. }
  4139. onbeforecopy() {
  4140. /**/
  4141. }
  4142. onbeforecut() {
  4143. /**/
  4144. }
  4145. onbeforepaste() {
  4146. /**/
  4147. }
  4148. onblur() {
  4149. /**/
  4150. }
  4151. oncancel() {
  4152. /**/
  4153. }
  4154. oncanplay() {
  4155. /**/
  4156. }
  4157. oncanplaythrough() {
  4158. /**/
  4159. }
  4160. onchange() {
  4161. /**/
  4162. }
  4163. onclick() {
  4164. /**/
  4165. }
  4166. onclose() {
  4167. /**/
  4168. }
  4169. oncontextmenu() {
  4170. /**/
  4171. }
  4172. oncopy() {
  4173. /**/
  4174. }
  4175. oncuechange() {
  4176. /**/
  4177. }
  4178. oncut() {
  4179. /**/
  4180. }
  4181. ondblclick() {
  4182. /**/
  4183. }
  4184. ondrag() {
  4185. /**/
  4186. }
  4187. ondragend() {
  4188. /**/
  4189. }
  4190. ondragenter() {
  4191. /**/
  4192. }
  4193. ondragleave() {
  4194. /**/
  4195. }
  4196. ondragover() {
  4197. /**/
  4198. }
  4199. ondragstart() {
  4200. /**/
  4201. }
  4202. ondrop() {
  4203. /**/
  4204. }
  4205. ondurationchange() {
  4206. /**/
  4207. }
  4208. onemptied() {
  4209. /**/
  4210. }
  4211. onended() {
  4212. /**/
  4213. }
  4214. onerror() {
  4215. /**/
  4216. }
  4217. onfocus() {
  4218. /**/
  4219. }
  4220. onfocusin() {
  4221. /**/
  4222. }
  4223. onfocusout() {
  4224. /**/
  4225. }
  4226. onformdata() {
  4227. /**/
  4228. }
  4229. onfullscreenchange() {
  4230. /**/
  4231. }
  4232. onfullscreenerror() {
  4233. /**/
  4234. }
  4235. ongotpointercapture() {
  4236. /**/
  4237. }
  4238. oninput() {
  4239. /**/
  4240. }
  4241. oninvalid() {
  4242. /**/
  4243. }
  4244. onkeydown() {
  4245. /**/
  4246. }
  4247. onkeypress() {
  4248. /**/
  4249. }
  4250. onkeyup() {
  4251. /**/
  4252. }
  4253. onload() {
  4254. /**/
  4255. }
  4256. onloadeddata() {
  4257. /**/
  4258. }
  4259. onloadedmetadata() {
  4260. /**/
  4261. }
  4262. onloadstart() {
  4263. /**/
  4264. }
  4265. onlostpointercapture() {
  4266. /**/
  4267. }
  4268. onmousedown() {
  4269. /**/
  4270. }
  4271. onmouseenter() {
  4272. /**/
  4273. }
  4274. onmouseleave() {
  4275. /**/
  4276. }
  4277. onmousemove() {
  4278. /**/
  4279. }
  4280. onmouseout() {
  4281. /**/
  4282. }
  4283. onmouseover() {
  4284. /**/
  4285. }
  4286. onmouseup() {
  4287. /**/
  4288. }
  4289. onmousewheel() {
  4290. /**/
  4291. }
  4292. onpaste() {
  4293. /**/
  4294. }
  4295. onpause() {
  4296. /**/
  4297. }
  4298. onplay() {
  4299. /**/
  4300. }
  4301. onplaying() {
  4302. /**/
  4303. }
  4304. onpointercancel() {
  4305. /**/
  4306. }
  4307. onpointerdown() {
  4308. /**/
  4309. }
  4310. onpointerenter() {
  4311. /**/
  4312. }
  4313. onpointerleave() {
  4314. /**/
  4315. }
  4316. onpointermove() {
  4317. /**/
  4318. }
  4319. onpointerout() {
  4320. /**/
  4321. }
  4322. onpointerover() {
  4323. /**/
  4324. }
  4325. onpointerup() {
  4326. /**/
  4327. }
  4328. onprogress() {
  4329. /**/
  4330. }
  4331. onratechange() {
  4332. /**/
  4333. }
  4334. onreset() {
  4335. /**/
  4336. }
  4337. onresize() {
  4338. /**/
  4339. }
  4340. onscroll() {
  4341. /**/
  4342. }
  4343. onsearch() {
  4344. /**/
  4345. }
  4346. onseeked() {
  4347. /**/
  4348. }
  4349. onseeking() {
  4350. /**/
  4351. }
  4352. onselect() {
  4353. /**/
  4354. }
  4355. onselectstart() {
  4356. /**/
  4357. }
  4358. onstalled() {
  4359. /**/
  4360. }
  4361. onsubmit() {
  4362. /**/
  4363. }
  4364. onsuspend() {
  4365. /**/
  4366. }
  4367. ontimeupdate() {
  4368. /**/
  4369. }
  4370. ontoggle() {
  4371. /**/
  4372. }
  4373. onvolumechange() {
  4374. /**/
  4375. }
  4376. onwaiting() {
  4377. /**/
  4378. }
  4379. onwebkitfullscreenchange() {
  4380. /**/
  4381. }
  4382. onwebkitfullscreenerror() {
  4383. /**/
  4384. }
  4385. onwheel() {
  4386. /**/
  4387. }
  4388. }
  4389. addGlobalsToWindowPrototype(MockWindow.prototype);
  4390. function resetWindowDefaults(win) {
  4391. win.__clearInterval = nativeClearInterval;
  4392. win.__clearTimeout = nativeClearTimeout;
  4393. win.__setInterval = nativeSetInterval;
  4394. win.__setTimeout = nativeSetTimeout;
  4395. win.__maxTimeout = 30000;
  4396. win.__allowInterval = true;
  4397. win.URL = nativeURL;
  4398. }
  4399. function cloneWindow(srcWin, opts = {}) {
  4400. if (srcWin == null) {
  4401. return null;
  4402. }
  4403. const clonedWin = new MockWindow(false);
  4404. if (!opts.customElementProxy) {
  4405. // TODO(STENCIL-345) - Evaluate reconciling MockWindow, Window differences
  4406. // @ts-ignore
  4407. srcWin.customElements = null;
  4408. }
  4409. if (srcWin.document != null) {
  4410. const clonedDoc = new MockDocument(false, clonedWin);
  4411. clonedWin.document = clonedDoc;
  4412. clonedDoc.documentElement = srcWin.document.documentElement.cloneNode(true);
  4413. }
  4414. else {
  4415. clonedWin.document = new MockDocument(null, clonedWin);
  4416. }
  4417. return clonedWin;
  4418. }
  4419. function cloneDocument(srcDoc) {
  4420. if (srcDoc == null) {
  4421. return null;
  4422. }
  4423. const dstWin = cloneWindow(srcDoc.defaultView);
  4424. return dstWin.document;
  4425. }
  4426. // TODO(STENCIL-345) - Evaluate reconciling MockWindow, Window differences
  4427. /**
  4428. * Constrain setTimeout() to 1ms, but still async. Also
  4429. * only allow setInterval() to fire once, also constrained to 1ms.
  4430. * @param win the mock window instance to update
  4431. */
  4432. function constrainTimeouts(win) {
  4433. win.__allowInterval = false;
  4434. win.__maxTimeout = 0;
  4435. }
  4436. function resetWindow(win) {
  4437. if (win != null) {
  4438. if (win.__timeouts) {
  4439. win.__timeouts.forEach((timeoutId) => {
  4440. nativeClearInterval(timeoutId);
  4441. nativeClearTimeout(timeoutId);
  4442. });
  4443. win.__timeouts.clear();
  4444. }
  4445. if (win.customElements && win.customElements.clear) {
  4446. win.customElements.clear();
  4447. }
  4448. resetDocument(win.document);
  4449. resetPerformance(win.performance);
  4450. for (const key in win) {
  4451. if (win.hasOwnProperty(key) && key !== 'document' && key !== 'performance' && key !== 'customElements') {
  4452. delete win[key];
  4453. }
  4454. }
  4455. resetWindowDefaults(win);
  4456. resetWindowDimensions(win);
  4457. resetEventListeners(win);
  4458. if (win.document != null) {
  4459. try {
  4460. win.document.defaultView = win;
  4461. }
  4462. catch (e) { }
  4463. }
  4464. // ensure we don't hold onto nodeFetch values
  4465. win.fetch = null;
  4466. win.Headers = null;
  4467. win.Request = null;
  4468. win.Response = null;
  4469. win.FetchError = null;
  4470. }
  4471. }
  4472. function resetWindowDimensions(win) {
  4473. try {
  4474. win.devicePixelRatio = 1;
  4475. win.innerHeight = 768;
  4476. win.innerWidth = 1366;
  4477. win.pageXOffset = 0;
  4478. win.pageYOffset = 0;
  4479. win.screenLeft = 0;
  4480. win.screenTop = 0;
  4481. win.screenX = 0;
  4482. win.screenY = 0;
  4483. win.scrollX = 0;
  4484. win.scrollY = 0;
  4485. win.screen = {
  4486. availHeight: win.innerHeight,
  4487. availLeft: 0,
  4488. availTop: 0,
  4489. availWidth: win.innerWidth,
  4490. colorDepth: 24,
  4491. height: win.innerHeight,
  4492. keepAwake: false,
  4493. orientation: {
  4494. angle: 0,
  4495. type: 'portrait-primary',
  4496. },
  4497. pixelDepth: 24,
  4498. width: win.innerWidth,
  4499. };
  4500. }
  4501. catch (e) { }
  4502. }
  4503. class MockDocument extends MockHTMLElement {
  4504. constructor(html = null, win = null) {
  4505. super(null, null);
  4506. this.nodeName = "#document" /* NODE_NAMES.DOCUMENT_NODE */;
  4507. this.nodeType = 9 /* NODE_TYPES.DOCUMENT_NODE */;
  4508. this.defaultView = win;
  4509. this.cookie = '';
  4510. this.referrer = '';
  4511. this.appendChild(this.createDocumentTypeNode());
  4512. if (typeof html === 'string') {
  4513. const parsedDoc = parseDocumentUtil(this, html);
  4514. const documentElement = parsedDoc.children.find((elm) => elm.nodeName === 'HTML');
  4515. if (documentElement != null) {
  4516. this.appendChild(documentElement);
  4517. setOwnerDocument(documentElement, this);
  4518. }
  4519. }
  4520. else if (html !== false) {
  4521. const documentElement = new MockHTMLElement(this, 'html');
  4522. this.appendChild(documentElement);
  4523. documentElement.appendChild(new MockHTMLElement(this, 'head'));
  4524. documentElement.appendChild(new MockHTMLElement(this, 'body'));
  4525. }
  4526. }
  4527. get dir() {
  4528. return this.documentElement.dir;
  4529. }
  4530. set dir(value) {
  4531. this.documentElement.dir = value;
  4532. }
  4533. get location() {
  4534. if (this.defaultView != null) {
  4535. return this.defaultView.location;
  4536. }
  4537. return null;
  4538. }
  4539. set location(val) {
  4540. if (this.defaultView != null) {
  4541. this.defaultView.location = val;
  4542. }
  4543. }
  4544. get baseURI() {
  4545. const baseNode = this.head.childNodes.find((node) => node.nodeName === 'BASE');
  4546. if (baseNode) {
  4547. return baseNode.href;
  4548. }
  4549. return this.URL;
  4550. }
  4551. get URL() {
  4552. return this.location.href;
  4553. }
  4554. get styleSheets() {
  4555. return this.querySelectorAll('style');
  4556. }
  4557. get scripts() {
  4558. return this.querySelectorAll('script');
  4559. }
  4560. get forms() {
  4561. return this.querySelectorAll('form');
  4562. }
  4563. get images() {
  4564. return this.querySelectorAll('img');
  4565. }
  4566. get scrollingElement() {
  4567. return this.documentElement;
  4568. }
  4569. get documentElement() {
  4570. for (let i = this.childNodes.length - 1; i >= 0; i--) {
  4571. if (this.childNodes[i].nodeName === 'HTML') {
  4572. return this.childNodes[i];
  4573. }
  4574. }
  4575. const documentElement = new MockHTMLElement(this, 'html');
  4576. this.appendChild(documentElement);
  4577. return documentElement;
  4578. }
  4579. set documentElement(documentElement) {
  4580. for (let i = this.childNodes.length - 1; i >= 0; i--) {
  4581. if (this.childNodes[i].nodeType !== 10 /* NODE_TYPES.DOCUMENT_TYPE_NODE */) {
  4582. this.childNodes[i].remove();
  4583. }
  4584. }
  4585. if (documentElement != null) {
  4586. this.appendChild(documentElement);
  4587. setOwnerDocument(documentElement, this);
  4588. }
  4589. }
  4590. get head() {
  4591. const documentElement = this.documentElement;
  4592. for (let i = 0; i < documentElement.childNodes.length; i++) {
  4593. if (documentElement.childNodes[i].nodeName === 'HEAD') {
  4594. return documentElement.childNodes[i];
  4595. }
  4596. }
  4597. const head = new MockHTMLElement(this, 'head');
  4598. documentElement.insertBefore(head, documentElement.firstChild);
  4599. return head;
  4600. }
  4601. set head(head) {
  4602. const documentElement = this.documentElement;
  4603. for (let i = documentElement.childNodes.length - 1; i >= 0; i--) {
  4604. if (documentElement.childNodes[i].nodeName === 'HEAD') {
  4605. documentElement.childNodes[i].remove();
  4606. }
  4607. }
  4608. if (head != null) {
  4609. documentElement.insertBefore(head, documentElement.firstChild);
  4610. setOwnerDocument(head, this);
  4611. }
  4612. }
  4613. get body() {
  4614. const documentElement = this.documentElement;
  4615. for (let i = documentElement.childNodes.length - 1; i >= 0; i--) {
  4616. if (documentElement.childNodes[i].nodeName === 'BODY') {
  4617. return documentElement.childNodes[i];
  4618. }
  4619. }
  4620. const body = new MockHTMLElement(this, 'body');
  4621. documentElement.appendChild(body);
  4622. return body;
  4623. }
  4624. set body(body) {
  4625. const documentElement = this.documentElement;
  4626. for (let i = documentElement.childNodes.length - 1; i >= 0; i--) {
  4627. if (documentElement.childNodes[i].nodeName === 'BODY') {
  4628. documentElement.childNodes[i].remove();
  4629. }
  4630. }
  4631. if (body != null) {
  4632. documentElement.appendChild(body);
  4633. setOwnerDocument(body, this);
  4634. }
  4635. }
  4636. appendChild(newNode) {
  4637. newNode.remove();
  4638. newNode.parentNode = this;
  4639. this.childNodes.push(newNode);
  4640. return newNode;
  4641. }
  4642. createComment(data) {
  4643. return new MockComment(this, data);
  4644. }
  4645. createAttribute(attrName) {
  4646. return new MockAttr(attrName.toLowerCase(), '');
  4647. }
  4648. createAttributeNS(namespaceURI, attrName) {
  4649. return new MockAttr(attrName, '', namespaceURI);
  4650. }
  4651. createElement(tagName) {
  4652. if (tagName === "#document" /* NODE_NAMES.DOCUMENT_NODE */) {
  4653. const doc = new MockDocument(false);
  4654. doc.nodeName = tagName;
  4655. doc.parentNode = null;
  4656. return doc;
  4657. }
  4658. return createElement(this, tagName);
  4659. }
  4660. createElementNS(namespaceURI, tagName) {
  4661. const elmNs = createElementNS(this, namespaceURI, tagName);
  4662. elmNs.namespaceURI = namespaceURI;
  4663. return elmNs;
  4664. }
  4665. createTextNode(text) {
  4666. return new MockTextNode(this, text);
  4667. }
  4668. createDocumentFragment() {
  4669. return new MockDocumentFragment(this);
  4670. }
  4671. createDocumentTypeNode() {
  4672. return new MockDocumentTypeNode(this);
  4673. }
  4674. getElementById(id) {
  4675. return getElementById(this, id);
  4676. }
  4677. getElementsByName(elmName) {
  4678. return getElementsByName(this, elmName.toLowerCase());
  4679. }
  4680. get title() {
  4681. const title = this.head.childNodes.find((elm) => elm.nodeName === 'TITLE');
  4682. if (title != null && typeof title.textContent === 'string') {
  4683. return title.textContent.trim();
  4684. }
  4685. return '';
  4686. }
  4687. set title(value) {
  4688. const head = this.head;
  4689. let title = head.childNodes.find((elm) => elm.nodeName === 'TITLE');
  4690. if (title == null) {
  4691. title = this.createElement('title');
  4692. head.appendChild(title);
  4693. }
  4694. title.textContent = value;
  4695. }
  4696. }
  4697. function createDocument(html = null) {
  4698. return new MockWindow(html).document;
  4699. }
  4700. function createFragment(html) {
  4701. return parseHtmlToFragment(html, null);
  4702. }
  4703. function resetDocument(doc) {
  4704. if (doc != null) {
  4705. resetEventListeners(doc);
  4706. const documentElement = doc.documentElement;
  4707. if (documentElement != null) {
  4708. resetElement(documentElement);
  4709. for (let i = 0, ii = documentElement.childNodes.length; i < ii; i++) {
  4710. const childNode = documentElement.childNodes[i];
  4711. resetElement(childNode);
  4712. childNode.childNodes.length = 0;
  4713. }
  4714. }
  4715. for (const key in doc) {
  4716. if (doc.hasOwnProperty(key) && !DOC_KEY_KEEPERS.has(key)) {
  4717. delete doc[key];
  4718. }
  4719. }
  4720. try {
  4721. doc.nodeName = "#document" /* NODE_NAMES.DOCUMENT_NODE */;
  4722. }
  4723. catch (e) { }
  4724. try {
  4725. doc.nodeType = 9 /* NODE_TYPES.DOCUMENT_NODE */;
  4726. }
  4727. catch (e) { }
  4728. try {
  4729. doc.cookie = '';
  4730. }
  4731. catch (e) { }
  4732. try {
  4733. doc.referrer = '';
  4734. }
  4735. catch (e) { }
  4736. }
  4737. }
  4738. const DOC_KEY_KEEPERS = new Set([
  4739. 'nodeName',
  4740. 'nodeType',
  4741. 'nodeValue',
  4742. 'ownerDocument',
  4743. 'parentNode',
  4744. 'childNodes',
  4745. '_shadowRoot',
  4746. ]);
  4747. function getElementById(elm, id) {
  4748. const children = elm.children;
  4749. for (let i = 0, ii = children.length; i < ii; i++) {
  4750. const childElm = children[i];
  4751. if (childElm.id === id) {
  4752. return childElm;
  4753. }
  4754. const childElmFound = getElementById(childElm, id);
  4755. if (childElmFound != null) {
  4756. return childElmFound;
  4757. }
  4758. }
  4759. return null;
  4760. }
  4761. function getElementsByName(elm, elmName, foundElms = []) {
  4762. const children = elm.children;
  4763. for (let i = 0, ii = children.length; i < ii; i++) {
  4764. const childElm = children[i];
  4765. if (childElm.name && childElm.name.toLowerCase() === elmName) {
  4766. foundElms.push(childElm);
  4767. }
  4768. getElementsByName(childElm, elmName, foundElms);
  4769. }
  4770. return foundElms;
  4771. }
  4772. function setOwnerDocument(elm, ownerDocument) {
  4773. for (let i = 0, ii = elm.childNodes.length; i < ii; i++) {
  4774. elm.childNodes[i].ownerDocument = ownerDocument;
  4775. if (elm.childNodes[i].nodeType === 1 /* NODE_TYPES.ELEMENT_NODE */) {
  4776. setOwnerDocument(elm.childNodes[i], ownerDocument);
  4777. }
  4778. }
  4779. }
  4780. exports.MockAttr = MockAttr;
  4781. exports.MockAttributeMap = MockAttributeMap;
  4782. exports.MockComment = MockComment;
  4783. exports.MockCustomEvent = MockCustomEvent;
  4784. exports.MockDocument = MockDocument;
  4785. exports.MockElement = MockElement;
  4786. exports.MockHTMLElement = MockHTMLElement;
  4787. exports.MockHeaders = MockHeaders;
  4788. exports.MockKeyboardEvent = MockKeyboardEvent;
  4789. exports.MockMouseEvent = MockMouseEvent;
  4790. exports.MockNode = MockNode;
  4791. exports.MockRequest = MockRequest;
  4792. exports.MockResponse = MockResponse;
  4793. exports.MockTextNode = MockTextNode;
  4794. exports.MockWindow = MockWindow;
  4795. exports.cloneAttributes = cloneAttributes;
  4796. exports.cloneDocument = cloneDocument;
  4797. exports.cloneWindow = cloneWindow;
  4798. exports.constrainTimeouts = constrainTimeouts;
  4799. exports.createDocument = createDocument;
  4800. exports.createFragment = createFragment;
  4801. exports.parseHtmlToDocument = parseHtmlToDocument;
  4802. exports.parseHtmlToFragment = parseHtmlToFragment;
  4803. exports.patchWindow = patchWindow;
  4804. exports.resetDocument = resetDocument;
  4805. exports.serializeNodeToHtml = serializeNodeToHtml;
  4806. exports.setupGlobal = setupGlobal;
  4807. exports.teardownGlobal = teardownGlobal;
  4808. if (typeof module !== "undefined" && module.exports) {
  4809. module.exports = exports;
  4810. }
  4811. return exports;
  4812. })({});