gp-designer 1.0.61 → 1.0.63

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,12 +1,12 @@
1
- (function(Ne,c){typeof exports=="object"&&typeof module<"u"?c(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],c):(Ne=typeof globalThis<"u"?globalThis:Ne||self,c(Ne.GpWebModule={},Ne.Vue))})(this,function(Ne,c){"use strict";var nA;(function(A){A.Root="root",A.Text="text",A.Directive="directive",A.Comment="comment",A.Script="script",A.Style="style",A.Tag="tag",A.CDATA="cdata",A.Doctype="doctype"})(nA||(nA={}));function ql(A){return A.type===nA.Tag||A.type===nA.Script||A.type===nA.Style}const jl=nA.Root,$l=nA.Text,Zl=nA.Directive,zl=nA.Comment,A0=nA.Script,e0=nA.Style,t0=nA.Tag,r0=nA.CDATA,n0=nA.Doctype;let Bi=class{constructor(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}get parentNode(){return this.parent}set parentNode(e){this.parent=e}get previousSibling(){return this.prev}set previousSibling(e){this.prev=e}get nextSibling(){return this.next}set nextSibling(e){this.next=e}cloneNode(e=!1){return Mt(this,e)}};class us extends Bi{constructor(e){super(),this.data=e}get nodeValue(){return this.data}set nodeValue(e){this.data=e}}class Rt extends us{constructor(){super(...arguments),this.type=nA.Text}get nodeType(){return 3}}class os extends us{constructor(){super(...arguments),this.type=nA.Comment}get nodeType(){return 8}}class cs extends us{constructor(e,t){super(t),this.name=e,this.type=nA.Directive}get nodeType(){return 1}}class ls extends Bi{constructor(e){super(),this.children=e}get firstChild(){var e;return(e=this.children[0])!==null&&e!==void 0?e:null}get lastChild(){return this.children.length>0?this.children[this.children.length-1]:null}get childNodes(){return this.children}set childNodes(e){this.children=e}}class gi extends ls{constructor(){super(...arguments),this.type=nA.CDATA}get nodeType(){return 4}}class je extends ls{constructor(){super(...arguments),this.type=nA.Root}get nodeType(){return 9}}class fs extends ls{constructor(e,t,r=[],n=e==="script"?nA.Script:e==="style"?nA.Style:nA.Tag){super(r),this.name=e,this.attribs=t,this.type=n}get nodeType(){return 1}get tagName(){return this.name}set tagName(e){this.name=e}get attributes(){return Object.keys(this.attribs).map(e=>{var t,r;return{name:e,value:this.attribs[e],namespace:(t=this["x-attribsNamespace"])===null||t===void 0?void 0:t[e],prefix:(r=this["x-attribsPrefix"])===null||r===void 0?void 0:r[e]}})}}function X(A){return ql(A)}function Hr(A){return A.type===nA.CDATA}function de(A){return A.type===nA.Text}function Dr(A){return A.type===nA.Comment}function hs(A){return A.type===nA.Directive}function Se(A){return A.type===nA.Root}function IA(A){return Object.prototype.hasOwnProperty.call(A,"children")}function Mt(A,e=!1){let t;if(de(A))t=new Rt(A.data);else if(Dr(A))t=new os(A.data);else if(X(A)){const r=e?ds(A.children):[],n=new fs(A.name,{...A.attribs},r);r.forEach(s=>s.parent=n),A.namespace!=null&&(n.namespace=A.namespace),A["x-attribsNamespace"]&&(n["x-attribsNamespace"]={...A["x-attribsNamespace"]}),A["x-attribsPrefix"]&&(n["x-attribsPrefix"]={...A["x-attribsPrefix"]}),t=n}else if(Hr(A)){const r=e?ds(A.children):[],n=new gi(r);r.forEach(s=>s.parent=n),t=n}else if(Se(A)){const r=e?ds(A.children):[],n=new je(r);r.forEach(s=>s.parent=n),A["x-mode"]&&(n["x-mode"]=A["x-mode"]),t=n}else if(hs(A)){const r=new cs(A.name,A.data);A["x-name"]!=null&&(r["x-name"]=A["x-name"],r["x-publicId"]=A["x-publicId"],r["x-systemId"]=A["x-systemId"]),t=r}else throw new Error(`Not implemented yet: ${A.type}`);return t.startIndex=A.startIndex,t.endIndex=A.endIndex,A.sourceCodeLocation!=null&&(t.sourceCodeLocation=A.sourceCodeLocation),t}function ds(A){const e=A.map(t=>Mt(t,!0));for(let t=1;t<e.length;t++)e[t].prev=e[t-1],e[t-1].next=e[t];return e}const Ei={withStartIndices:!1,withEndIndices:!1,xmlMode:!1};class s0{constructor(e,t,r){this.dom=[],this.root=new je(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,typeof t=="function"&&(r=t,t=Ei),typeof e=="object"&&(t=e,e=void 0),this.callback=e??null,this.options=t??Ei,this.elementCB=r??null}onparserinit(e){this.parser=e}onreset(){this.dom=[],this.root=new je(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null}onend(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))}onerror(e){this.handleCallback(e)}onclosetag(){this.lastNode=null;const e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)}onopentag(e,t){const r=this.options.xmlMode?nA.Tag:void 0,n=new fs(e,t,void 0,r);this.addNode(n),this.tagStack.push(n)}ontext(e){const{lastNode:t}=this;if(t&&t.type===nA.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{const r=new Rt(e);this.addNode(r),this.lastNode=r}}oncomment(e){if(this.lastNode&&this.lastNode.type===nA.Comment){this.lastNode.data+=e;return}const t=new os(e);this.addNode(t),this.lastNode=t}oncommentend(){this.lastNode=null}oncdatastart(){const e=new Rt(""),t=new gi([e]);this.addNode(t),e.parent=t,this.lastNode=e}oncdataend(){this.lastNode=null}onprocessinginstruction(e,t){const r=new cs(e,t);this.addNode(r)}handleCallback(e){if(typeof this.callback=="function")this.callback(e,this.dom);else if(e)throw e}addNode(e){const t=this.tagStack[this.tagStack.length-1],r=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),r&&(e.prev=r,r.next=e),e.parent=t,this.lastNode=null}}const Bs=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(A=>A.charCodeAt(0))),mi=new Uint16Array("Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(A=>A.charCodeAt(0)));var gs;const a0=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),Es=(gs=String.fromCodePoint)!==null&&gs!==void 0?gs:function(A){let e="";return A>65535&&(A-=65536,e+=String.fromCharCode(A>>>10&1023|55296),A=56320|A&1023),e+=String.fromCharCode(A),e};function i0(A){var e;return A>=55296&&A<=57343||A>1114111?65533:(e=a0.get(A))!==null&&e!==void 0?e:A}var _A;(function(A){A[A.NUM=35]="NUM",A[A.SEMI=59]="SEMI",A[A.EQUALS=61]="EQUALS",A[A.ZERO=48]="ZERO",A[A.NINE=57]="NINE",A[A.LOWER_A=97]="LOWER_A",A[A.LOWER_F=102]="LOWER_F",A[A.LOWER_X=120]="LOWER_X",A[A.LOWER_Z=122]="LOWER_Z",A[A.UPPER_A=65]="UPPER_A",A[A.UPPER_F=70]="UPPER_F",A[A.UPPER_Z=90]="UPPER_Z"})(_A||(_A={}));const u0=32;var ve;(function(A){A[A.VALUE_LENGTH=49152]="VALUE_LENGTH",A[A.BRANCH_LENGTH=16256]="BRANCH_LENGTH",A[A.JUMP_TABLE=127]="JUMP_TABLE"})(ve||(ve={}));function ms(A){return A>=_A.ZERO&&A<=_A.NINE}function o0(A){return A>=_A.UPPER_A&&A<=_A.UPPER_F||A>=_A.LOWER_A&&A<=_A.LOWER_F}function c0(A){return A>=_A.UPPER_A&&A<=_A.UPPER_Z||A>=_A.LOWER_A&&A<=_A.LOWER_Z||ms(A)}function l0(A){return A===_A.EQUALS||c0(A)}var yA;(function(A){A[A.EntityStart=0]="EntityStart",A[A.NumericStart=1]="NumericStart",A[A.NumericDecimal=2]="NumericDecimal",A[A.NumericHex=3]="NumericHex",A[A.NamedEntity=4]="NamedEntity"})(yA||(yA={}));var ee;(function(A){A[A.Legacy=0]="Legacy",A[A.Strict=1]="Strict",A[A.Attribute=2]="Attribute"})(ee||(ee={}));class ps{constructor(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=yA.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ee.Strict}startEntity(e){this.decodeMode=e,this.state=yA.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(e,t){switch(this.state){case yA.EntityStart:return e.charCodeAt(t)===_A.NUM?(this.state=yA.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=yA.NamedEntity,this.stateNamedEntity(e,t));case yA.NumericStart:return this.stateNumericStart(e,t);case yA.NumericDecimal:return this.stateNumericDecimal(e,t);case yA.NumericHex:return this.stateNumericHex(e,t);case yA.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(e.charCodeAt(t)|u0)===_A.LOWER_X?(this.state=yA.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=yA.NumericDecimal,this.stateNumericDecimal(e,t))}addToNumericResult(e,t,r,n){if(t!==r){const s=r-t;this.result=this.result*Math.pow(n,s)+parseInt(e.substr(t,s),n),this.consumed+=s}}stateNumericHex(e,t){const r=t;for(;t<e.length;){const n=e.charCodeAt(t);if(ms(n)||o0(n))t+=1;else return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(n,3)}return this.addToNumericResult(e,r,t,16),-1}stateNumericDecimal(e,t){const r=t;for(;t<e.length;){const n=e.charCodeAt(t);if(ms(n))t+=1;else return this.addToNumericResult(e,r,t,10),this.emitNumericEntity(n,2)}return this.addToNumericResult(e,r,t,10),-1}emitNumericEntity(e,t){var r;if(this.consumed<=t)return(r=this.errors)===null||r===void 0||r.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===_A.SEMI)this.consumed+=1;else if(this.decodeMode===ee.Strict)return 0;return this.emitCodePoint(i0(this.result),this.consumed),this.errors&&(e!==_A.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}stateNamedEntity(e,t){const{decodeTree:r}=this;let n=r[this.treeIndex],s=(n&ve.VALUE_LENGTH)>>14;for(;t<e.length;t++,this.excess++){const a=e.charCodeAt(t);if(this.treeIndex=f0(r,n,this.treeIndex+Math.max(1,s),a),this.treeIndex<0)return this.result===0||this.decodeMode===ee.Attribute&&(s===0||l0(a))?0:this.emitNotTerminatedNamedEntity();if(n=r[this.treeIndex],s=(n&ve.VALUE_LENGTH)>>14,s!==0){if(a===_A.SEMI)return this.emitNamedEntityData(this.treeIndex,s,this.consumed+this.excess);this.decodeMode!==ee.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var e;const{result:t,decodeTree:r}=this,n=(r[t]&ve.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),(e=this.errors)===null||e===void 0||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,r){const{decodeTree:n}=this;return this.emitCodePoint(t===1?n[e]&~ve.VALUE_LENGTH:n[e+1],r),t===3&&this.emitCodePoint(n[e+2],r),r}end(){var e;switch(this.state){case yA.NamedEntity:return this.result!==0&&(this.decodeMode!==ee.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case yA.NumericDecimal:return this.emitNumericEntity(0,2);case yA.NumericHex:return this.emitNumericEntity(0,3);case yA.NumericStart:return(e=this.errors)===null||e===void 0||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case yA.EntityStart:return 0}}}function pi(A){let e="";const t=new ps(A,r=>e+=Es(r));return function(n,s){let a=0,u=0;for(;(u=n.indexOf("&",u))>=0;){e+=n.slice(a,u),t.startEntity(s);const l=t.write(n,u+1);if(l<0){a=u+t.end();break}a=u+l,u=l===0?a+1:a}const o=e+n.slice(a);return e="",o}}function f0(A,e,t,r){const n=(e&ve.BRANCH_LENGTH)>>7,s=e&ve.JUMP_TABLE;if(n===0)return s!==0&&r===s?t:-1;if(s){const o=r-s;return o<0||o>=n?-1:A[t+o]-1}let a=t,u=a+n-1;for(;a<=u;){const o=a+u>>>1,l=A[o];if(l<r)a=o+1;else if(l>r)u=o-1;else return A[o+n]}return-1}pi(Bs),pi(mi);const Ci=/["&'<>$\x80-\uFFFF]/g,h0=new Map([[34,"&quot;"],[38,"&amp;"],[39,"&apos;"],[60,"&lt;"],[62,"&gt;"]]),d0=String.prototype.codePointAt!=null?(A,e)=>A.codePointAt(e):(A,e)=>(A.charCodeAt(e)&64512)===55296?(A.charCodeAt(e)-55296)*1024+A.charCodeAt(e+1)-56320+65536:A.charCodeAt(e);function wi(A){let e="",t=0,r;for(;(r=Ci.exec(A))!==null;){const n=r.index,s=A.charCodeAt(n),a=h0.get(s);a!==void 0?(e+=A.substring(t,n)+a,t=n+1):(e+=`${A.substring(t,n)}&#x${d0(A,n).toString(16)};`,t=Ci.lastIndex+=+((s&64512)===55296))}return e+A.substr(t)}function Ti(A,e){return function(r){let n,s=0,a="";for(;n=A.exec(r);)s!==n.index&&(a+=r.substring(s,n.index)),a+=e.get(n[0].charCodeAt(0)),s=n.index+1;return a+r.substring(s)}}const bi=Ti(/["&\u00A0]/g,new Map([[34,"&quot;"],[38,"&amp;"],[160,"&nbsp;"]])),Ui=Ti(/[&<>\u00A0]/g,new Map([[38,"&amp;"],[60,"&lt;"],[62,"&gt;"],[160,"&nbsp;"]])),B0=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(A=>[A.toLowerCase(),A])),g0=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(A=>[A.toLowerCase(),A])),E0=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function m0(A){return A.replace(/"/g,"&quot;")}function p0(A,e){var t;if(!A)return;const r=((t=e.encodeEntities)!==null&&t!==void 0?t:e.decodeEntities)===!1?m0:e.xmlMode||e.encodeEntities!=="utf8"?wi:bi;return Object.keys(A).map(n=>{var s,a;const u=(s=A[n])!==null&&s!==void 0?s:"";return e.xmlMode==="foreign"&&(n=(a=g0.get(n))!==null&&a!==void 0?a:n),!e.emptyAttrs&&!e.xmlMode&&u===""?n:`${n}="${r(u)}"`}).join(" ")}const Qi=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function Or(A,e={}){const t="length"in A?A:[A];let r="";for(let n=0;n<t.length;n++)r+=C0(t[n],e);return r}function C0(A,e){switch(A.type){case jl:return Or(A.children,e);case n0:case Zl:return U0(A);case zl:return I0(A);case r0:return F0(A);case A0:case e0:case t0:return b0(A,e);case $l:return Q0(A,e)}}const w0=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),T0=new Set(["svg","math"]);function b0(A,e){var t;e.xmlMode==="foreign"&&(A.name=(t=B0.get(A.name))!==null&&t!==void 0?t:A.name,A.parent&&w0.has(A.parent.name)&&(e={...e,xmlMode:!1})),!e.xmlMode&&T0.has(A.name)&&(e={...e,xmlMode:"foreign"});let r=`<${A.name}`;const n=p0(A.attribs,e);return n&&(r+=` ${n}`),A.children.length===0&&(e.xmlMode?e.selfClosingTags!==!1:e.selfClosingTags&&Qi.has(A.name))?(e.xmlMode||(r+=" "),r+="/>"):(r+=">",A.children.length>0&&(r+=Or(A.children,e)),(e.xmlMode||!Qi.has(A.name))&&(r+=`</${A.name}>`)),r}function U0(A){return`<${A.data}>`}function Q0(A,e){var t;let r=A.data||"";return((t=e.encodeEntities)!==null&&t!==void 0?t:e.decodeEntities)!==!1&&!(!e.xmlMode&&A.parent&&E0.has(A.parent.name))&&(r=e.xmlMode||e.encodeEntities!=="utf8"?wi(r):Ui(r)),r}function F0(A){return`<![CDATA[${A.children[0].data}]]>`}function I0(A){return`<!--${A.data}-->`}function Fi(A,e){return Or(A,e)}function _0(A,e){return IA(A)?A.children.map(t=>Fi(t,e)).join(""):""}function Rr(A){return Array.isArray(A)?A.map(Rr).join(""):X(A)?A.name==="br"?`
2
- `:Rr(A.children):Hr(A)?Rr(A.children):de(A)?A.data:""}function ft(A){return Array.isArray(A)?A.map(ft).join(""):IA(A)&&!Dr(A)?ft(A.children):de(A)?A.data:""}function Mr(A){return Array.isArray(A)?A.map(Mr).join(""):IA(A)&&(A.type===nA.Tag||Hr(A))?Mr(A.children):de(A)?A.data:""}function kr(A){return IA(A)?A.children:[]}function Ii(A){return A.parent||null}function _i(A){const e=Ii(A);if(e!=null)return kr(e);const t=[A];let{prev:r,next:n}=A;for(;r!=null;)t.unshift(r),{prev:r}=r;for(;n!=null;)t.push(n),{next:n}=n;return t}function y0(A,e){var t;return(t=A.attribs)===null||t===void 0?void 0:t[e]}function N0(A,e){return A.attribs!=null&&Object.prototype.hasOwnProperty.call(A.attribs,e)&&A.attribs[e]!=null}function S0(A){return A.name}function Cs(A){let{next:e}=A;for(;e!==null&&!X(e);)({next:e}=e);return e}function ws(A){let{prev:e}=A;for(;e!==null&&!X(e);)({prev:e}=e);return e}function $e(A){if(A.prev&&(A.prev.next=A.next),A.next&&(A.next.prev=A.prev),A.parent){const e=A.parent.children,t=e.lastIndexOf(A);t>=0&&e.splice(t,1)}A.next=null,A.prev=null,A.parent=null}function v0(A,e){const t=e.prev=A.prev;t&&(t.next=e);const r=e.next=A.next;r&&(r.prev=e);const n=e.parent=A.parent;if(n){const s=n.children;s[s.lastIndexOf(A)]=e,A.parent=null}}function L0(A,e){if($e(e),e.next=null,e.parent=A,A.children.push(e)>1){const t=A.children[A.children.length-2];t.next=e,e.prev=t}else e.prev=null}function x0(A,e){$e(e);const{parent:t}=A,r=A.next;if(e.next=r,e.prev=A,A.next=e,e.parent=t,r){if(r.prev=e,t){const n=t.children;n.splice(n.lastIndexOf(r),0,e)}}else t&&t.children.push(e)}function H0(A,e){if($e(e),e.parent=A,e.prev=null,A.children.unshift(e)!==1){const t=A.children[1];t.prev=e,e.next=t}else e.next=null}function D0(A,e){$e(e);const{parent:t}=A;if(t){const r=t.children;r.splice(r.indexOf(A),0,e)}A.prev&&(A.prev.next=e),e.parent=t,e.prev=A.prev,e.next=A,A.prev=e}function Pr(A,e,t=!0,r=1/0){return Ts(A,Array.isArray(e)?e:[e],t,r)}function Ts(A,e,t,r){const n=[],s=[e],a=[0];for(;;){if(a[0]>=s[0].length){if(a.length===1)return n;s.shift(),a.shift();continue}const u=s[0][a[0]++];if(A(u)&&(n.push(u),--r<=0))return n;t&&IA(u)&&u.children.length>0&&(a.unshift(0),s.unshift(u.children))}}function O0(A,e){return e.find(A)}function bs(A,e,t=!0){let r=null;for(let n=0;n<e.length&&!r;n++){const s=e[n];if(X(s))A(s)?r=s:t&&s.children.length>0&&(r=bs(A,s.children,!0));else continue}return r}function yi(A,e){return e.some(t=>X(t)&&(A(t)||yi(A,t.children)))}function R0(A,e){const t=[],r=[e],n=[0];for(;;){if(n[0]>=r[0].length){if(r.length===1)return t;r.shift(),n.shift();continue}const s=r[0][n[0]++];X(s)&&(A(s)&&t.push(s),s.children.length>0&&(n.unshift(0),r.unshift(s.children)))}}const Kr={tag_name(A){return typeof A=="function"?e=>X(e)&&A(e.name):A==="*"?X:e=>X(e)&&e.name===A},tag_type(A){return typeof A=="function"?e=>A(e.type):e=>e.type===A},tag_contains(A){return typeof A=="function"?e=>de(e)&&A(e.data):e=>de(e)&&e.data===A}};function Ni(A,e){return typeof e=="function"?t=>X(t)&&e(t.attribs[A]):t=>X(t)&&t.attribs[A]===e}function M0(A,e){return t=>A(t)||e(t)}function Si(A){const e=Object.keys(A).map(t=>{const r=A[t];return Object.prototype.hasOwnProperty.call(Kr,t)?Kr[t](r):Ni(t,r)});return e.length===0?null:e.reduce(M0)}function k0(A,e){const t=Si(A);return t?t(e):!0}function P0(A,e,t,r=1/0){const n=Si(A);return n?Pr(n,e,t,r):[]}function K0(A,e,t=!0){return Array.isArray(e)||(e=[e]),bs(Ni("id",A),e,t)}function ht(A,e,t=!0,r=1/0){return Pr(Kr.tag_name(A),e,t,r)}function V0(A,e,t=!0,r=1/0){return Pr(Kr.tag_type(A),e,t,r)}function G0(A){let e=A.length;for(;--e>=0;){const t=A[e];if(e>0&&A.lastIndexOf(t,e-1)>=0){A.splice(e,1);continue}for(let r=t.parent;r;r=r.parent)if(A.includes(r)){A.splice(e,1);break}}return A}var te;(function(A){A[A.DISCONNECTED=1]="DISCONNECTED",A[A.PRECEDING=2]="PRECEDING",A[A.FOLLOWING=4]="FOLLOWING",A[A.CONTAINS=8]="CONTAINS",A[A.CONTAINED_BY=16]="CONTAINED_BY"})(te||(te={}));function vi(A,e){const t=[],r=[];if(A===e)return 0;let n=IA(A)?A:A.parent;for(;n;)t.unshift(n),n=n.parent;for(n=IA(e)?e:e.parent;n;)r.unshift(n),n=n.parent;const s=Math.min(t.length,r.length);let a=0;for(;a<s&&t[a]===r[a];)a++;if(a===0)return te.DISCONNECTED;const u=t[a-1],o=u.children,l=t[a],f=r[a];return o.indexOf(l)>o.indexOf(f)?u===e?te.FOLLOWING|te.CONTAINED_BY:te.FOLLOWING:u===A?te.PRECEDING|te.CONTAINS:te.PRECEDING}function dt(A){return A=A.filter((e,t,r)=>!r.includes(e,t+1)),A.sort((e,t)=>{const r=vi(e,t);return r&te.PRECEDING?-1:r&te.FOLLOWING?1:0}),A}function Y0(A){const e=Vr(j0,A);return e?e.name==="feed"?X0(e):W0(e):null}function X0(A){var e;const t=A.children,r={type:"atom",items:ht("entry",t).map(a=>{var u;const{children:o}=a,l={media:Li(o)};GA(l,"id","id",o),GA(l,"title","title",o);const f=(u=Vr("link",o))===null||u===void 0?void 0:u.attribs.href;f&&(l.link=f);const h=Le("summary",o)||Le("content",o);h&&(l.description=h);const d=Le("updated",o);return d&&(l.pubDate=new Date(d)),l})};GA(r,"id","id",t),GA(r,"title","title",t);const n=(e=Vr("link",t))===null||e===void 0?void 0:e.attribs.href;n&&(r.link=n),GA(r,"description","subtitle",t);const s=Le("updated",t);return s&&(r.updated=new Date(s)),GA(r,"author","email",t,!0),r}function W0(A){var e,t;const r=(t=(e=Vr("channel",A.children))===null||e===void 0?void 0:e.children)!==null&&t!==void 0?t:[],n={type:A.name.substr(0,3),id:"",items:ht("item",A.children).map(a=>{const{children:u}=a,o={media:Li(u)};GA(o,"id","guid",u),GA(o,"title","title",u),GA(o,"link","link",u),GA(o,"description","description",u);const l=Le("pubDate",u)||Le("dc:date",u);return l&&(o.pubDate=new Date(l)),o})};GA(n,"title","title",r),GA(n,"link","link",r),GA(n,"description","description",r);const s=Le("lastBuildDate",r);return s&&(n.updated=new Date(s)),GA(n,"author","managingEditor",r,!0),n}const J0=["url","type","lang"],q0=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function Li(A){return ht("media:content",A).map(e=>{const{attribs:t}=e,r={medium:t.medium,isDefault:!!t.isDefault};for(const n of J0)t[n]&&(r[n]=t[n]);for(const n of q0)t[n]&&(r[n]=parseInt(t[n],10));return t.expression&&(r.expression=t.expression),r})}function Vr(A,e){return ht(A,e,!0,1)[0]}function Le(A,e,t=!1){return ft(ht(A,e,t,1)).trim()}function GA(A,e,t,r,n=!1){const s=Le(t,r,n);s&&(A[e]=s)}function j0(A){return A==="rss"||A==="feed"||A==="rdf:RDF"}const Gr=Object.freeze(Object.defineProperty({__proto__:null,get DocumentPosition(){return te},append:x0,appendChild:L0,compareDocumentPosition:vi,existsOne:yi,filter:Pr,find:Ts,findAll:R0,findOne:bs,findOneChild:O0,getAttributeValue:y0,getChildren:kr,getElementById:K0,getElements:P0,getElementsByTagName:ht,getElementsByTagType:V0,getFeed:Y0,getInnerHTML:_0,getName:S0,getOuterHTML:Fi,getParent:Ii,getSiblings:_i,getText:Rr,hasAttrib:N0,hasChildren:IA,innerText:Mr,isCDATA:Hr,isComment:Dr,isDocument:Se,isTag:X,isText:de,nextElementSibling:Cs,prepend:D0,prependChild:H0,prevElementSibling:ws,removeElement:$e,removeSubsets:G0,replaceElement:v0,testElement:k0,textContent:ft,uniqueSort:dt},Symbol.toStringTag,{value:"Module"})),$0={_useHtmlParser2:!1};function Us(A,e){if(!A)return e??$0;const t={_useHtmlParser2:!!A.xmlMode,...e,...A};return A.xml?(t._useHtmlParser2=!0,t.xmlMode=!0,A.xml!==!0&&Object.assign(t,A.xml)):A.xmlMode&&(t._useHtmlParser2=!0),t}function xi(A,e,t){return A?A(e??A._root.children,null,void 0,t).toString():""}function Z0(A,e){return typeof A=="object"&&A!=null&&!("length"in A)&&!("type"in A)}function z0(A,e){const t=Z0(A)?(e=A,void 0):A,r={...this===null||this===void 0?void 0:this._options,...Us(e)};return xi(this,t,r)}function Af(A){const e={...this._options,xmlMode:!0};return xi(this,A,e)}function kt(A){const e=A??(this?this.root():[]);let t="";for(let r=0;r<e.length;r++)t+=ft(e[r]);return t}function ef(A,e,t=typeof e=="boolean"?e:!1){if(!A||typeof A!="string")return null;typeof e=="boolean"&&(t=e);const r=this.load(A,this._options,!1);return t||r("script").remove(),[...r.root()[0].children]}function tf(){return this(this._root)}function Hi(A,e){if(e===A)return!1;let t=e;for(;t&&t!==t.parent;)if(t=t.parent,t===A)return!0;return!1}function rf(A){return this.root().extract(A)}function nf(A,e){if(!Di(A)||!Di(e))return;let t=A.length;const r=+e.length;for(let n=0;n<r;n++)A[t++]=e[n];return A.length=t,A}function Di(A){if(Array.isArray(A))return!0;if(typeof A!="object"||A===null||!("length"in A)||typeof A.length!="number"||A.length<0)return!1;for(let e=0;e<A.length;e++)if(!(e in A))return!1;return!0}const sf=Object.freeze(Object.defineProperty({__proto__:null,contains:Hi,extract:rf,html:z0,merge:nf,parseHTML:ef,root:tf,text:kt,xml:Af},Symbol.toStringTag,{value:"Module"}));function be(A){return A.cheerio!=null}function af(A){return A.replace(/[._-](\w|$)/g,(e,t)=>t.toUpperCase())}function uf(A){return A.replace(/[A-Z]/g,"-$&").toLowerCase()}function EA(A,e){const t=A.length;for(let r=0;r<t;r++)e(A[r],r);return A}var Ze;(function(A){A[A.LowerA=97]="LowerA",A[A.LowerZ=122]="LowerZ",A[A.UpperA=65]="UpperA",A[A.UpperZ=90]="UpperZ",A[A.Exclamation=33]="Exclamation"})(Ze||(Ze={}));function Qs(A){const e=A.indexOf("<");if(e<0||e>A.length-3)return!1;const t=A.charCodeAt(e+1);return(t>=Ze.LowerA&&t<=Ze.LowerZ||t>=Ze.UpperA&&t<=Ze.UpperZ||t===Ze.Exclamation)&&A.includes(">",e+2)}const Pt=Object.prototype.hasOwnProperty,Kt=/\s+/,Fs="data-",Is=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,of=/^{[^]*}$|^\[[^]*]$/;function Yr(A,e,t){var r;if(!(!A||!X(A))){if((r=A.attribs)!==null&&r!==void 0||(A.attribs={}),!e)return A.attribs;if(Pt.call(A.attribs,e))return!t&&Is.test(e)?e:A.attribs[e];if(A.name==="option"&&e==="value")return kt(A.children);if(A.name==="input"&&(A.attribs.type==="radio"||A.attribs.type==="checkbox")&&e==="value")return"on"}}function Bt(A,e,t){t===null?ki(A,e):A.attribs[e]=`${t}`}function cf(A,e){if(typeof A=="object"||e!==void 0){if(typeof e=="function"){if(typeof A!="string")throw new Error("Bad combination of arguments.");return EA(this,(t,r)=>{X(t)&&Bt(t,A,e.call(t,r,t.attribs[A]))})}return EA(this,t=>{if(X(t))if(typeof A=="object")for(const r of Object.keys(A)){const n=A[r];Bt(t,r,n)}else Bt(t,A,e)})}return arguments.length>1?this:Yr(this[0],A,this.options.xmlMode)}function Oi(A,e,t){return e in A?A[e]:!t&&Is.test(e)?Yr(A,e,!1)!==void 0:Yr(A,e,t)}function _s(A,e,t,r){e in A?A[e]=t:Bt(A,e,!r&&Is.test(e)?t?"":null:`${t}`)}function lf(A,e){var t;if(typeof A=="string"&&e===void 0){const r=this[0];if(!r||!X(r))return;switch(A){case"style":{const n=this.css(),s=Object.keys(n);for(let a=0;a<s.length;a++)n[a]=s[a];return n.length=s.length,n}case"tagName":case"nodeName":return r.name.toUpperCase();case"href":case"src":{const n=(t=r.attribs)===null||t===void 0?void 0:t[A];return typeof URL<"u"&&(A==="href"&&(r.tagName==="a"||r.tagName==="link")||A==="src"&&(r.tagName==="img"||r.tagName==="iframe"||r.tagName==="audio"||r.tagName==="video"||r.tagName==="source"))&&n!==void 0&&this.options.baseURI?new URL(n,this.options.baseURI).href:n}case"innerText":return Mr(r);case"textContent":return ft(r);case"outerHTML":return this.clone().wrap("<container />").parent().html();case"innerHTML":return this.html();default:return Oi(r,A,this.options.xmlMode)}}if(typeof A=="object"||e!==void 0){if(typeof e=="function"){if(typeof A=="object")throw new TypeError("Bad combination of arguments.");return EA(this,(r,n)=>{X(r)&&_s(r,A,e.call(r,n,Oi(r,A,this.options.xmlMode)),this.options.xmlMode)})}return EA(this,r=>{if(X(r))if(typeof A=="object")for(const n of Object.keys(A)){const s=A[n];_s(r,n,s,this.options.xmlMode)}else _s(r,A,e,this.options.xmlMode)})}}function Ri(A,e,t){var r;(r=A.data)!==null&&r!==void 0||(A.data={}),typeof e=="object"?Object.assign(A.data,e):typeof e=="string"&&t!==void 0&&(A.data[e]=t)}function ff(A){for(const e of Object.keys(A.attribs)){if(!e.startsWith(Fs))continue;const t=af(e.slice(Fs.length));Pt.call(A.data,t)||(A.data[t]=Mi(A.attribs[e]))}return A.data}function hf(A,e){const t=Fs+uf(e),r=A.data;if(Pt.call(r,e))return r[e];if(Pt.call(A.attribs,t))return r[e]=Mi(A.attribs[t])}function Mi(A){if(A==="null")return null;if(A==="true")return!0;if(A==="false")return!1;const e=Number(A);if(A===String(e))return e;if(of.test(A))try{return JSON.parse(A)}catch{}return A}function df(A,e){var t;const r=this[0];if(!r||!X(r))return;const n=r;return(t=n.data)!==null&&t!==void 0||(n.data={}),A==null?ff(n):typeof A=="object"||e!==void 0?(EA(this,s=>{X(s)&&(typeof A=="object"?Ri(s,A):Ri(s,A,e))}),this):hf(n,A)}function Bf(A){const e=arguments.length===0,t=this[0];if(!t||!X(t))return e?void 0:this;switch(t.name){case"textarea":return this.text(A);case"select":{const r=this.find("option:selected");if(!e){if(this.attr("multiple")==null&&typeof A=="object")return this;this.find("option").removeAttr("selected");const n=typeof A=="object"?A:[A];for(const s of n)this.find(`option[value="${s}"]`).attr("selected","");return this}return this.attr("multiple")?r.toArray().map(n=>kt(n.children)):r.attr("value")}case"input":case"option":return e?this.attr("value"):this.attr("value",A)}}function ki(A,e){!A.attribs||!Pt.call(A.attribs,e)||delete A.attribs[e]}function Xr(A){return A?A.trim().split(Kt):[]}function gf(A){const e=Xr(A);for(const t of e)EA(this,r=>{X(r)&&ki(r,t)});return this}function Ef(A){return this.toArray().some(e=>{const t=X(e)&&e.attribs.class;let r=-1;if(t&&A.length>0)for(;(r=t.indexOf(A,r+1))>-1;){const n=r+A.length;if((r===0||Kt.test(t[r-1]))&&(n===t.length||Kt.test(t[n])))return!0}return!1})}function Pi(A){if(typeof A=="function")return EA(this,(r,n)=>{if(X(r)){const s=r.attribs.class||"";Pi.call([r],A.call(r,n,s))}});if(!A||typeof A!="string")return this;const e=A.split(Kt),t=this.length;for(let r=0;r<t;r++){const n=this[r];if(!X(n))continue;const s=Yr(n,"class",!1);if(s){let a=` ${s} `;for(const u of e){const o=`${u} `;a.includes(` ${o}`)||(a+=o)}Bt(n,"class",a.trim())}else Bt(n,"class",e.join(" ").trim())}return this}function Ki(A){if(typeof A=="function")return EA(this,(n,s)=>{X(n)&&Ki.call([n],A.call(n,s,n.attribs.class||""))});const e=Xr(A),t=e.length,r=arguments.length===0;return EA(this,n=>{if(X(n))if(r)n.attribs.class="";else{const s=Xr(n.attribs.class);let a=!1;for(let u=0;u<t;u++){const o=s.indexOf(e[u]);o>=0&&(s.splice(o,1),a=!0,u--)}a&&(n.attribs.class=s.join(" "))}})}function Vi(A,e){if(typeof A=="function")return EA(this,(a,u)=>{X(a)&&Vi.call([a],A.call(a,u,a.attribs.class||"",e),e)});if(!A||typeof A!="string")return this;const t=A.split(Kt),r=t.length,n=typeof e=="boolean"?e?1:-1:0,s=this.length;for(let a=0;a<s;a++){const u=this[a];if(!X(u))continue;const o=Xr(u.attribs.class);for(let l=0;l<r;l++){const f=o.indexOf(t[l]);n>=0&&f<0?o.push(t[l]):n<=0&&f>=0&&o.splice(f,1)}u.attribs.class=o.join(" ")}return this}const mf=Object.freeze(Object.defineProperty({__proto__:null,addClass:Pi,attr:cf,data:df,hasClass:Ef,prop:lf,removeAttr:gf,removeClass:Ki,toggleClass:Vi,val:Bf},Symbol.toStringTag,{value:"Module"}));var G;(function(A){A.Attribute="attribute",A.Pseudo="pseudo",A.PseudoElement="pseudo-element",A.Tag="tag",A.Universal="universal",A.Adjacent="adjacent",A.Child="child",A.Descendant="descendant",A.Parent="parent",A.Sibling="sibling",A.ColumnCombinator="column-combinator"})(G||(G={}));var UA;(function(A){A.Any="any",A.Element="element",A.End="end",A.Equals="equals",A.Exists="exists",A.Hyphen="hyphen",A.Not="not",A.Start="start"})(UA||(UA={}));const Gi=/^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/,pf=/\\([\da-f]{1,6}\s?|(\s)|.)/gi,Cf=new Map([[126,UA.Element],[94,UA.Start],[36,UA.End],[42,UA.Any],[33,UA.Not],[124,UA.Hyphen]]),wf=new Set(["has","not","matches","is","where","host","host-context"]);function Vt(A){switch(A.type){case G.Adjacent:case G.Child:case G.Descendant:case G.Parent:case G.Sibling:case G.ColumnCombinator:return!0;default:return!1}}const Tf=new Set(["contains","icontains"]);function bf(A,e,t){const r=parseInt(e,16)-65536;return r!==r||t?e:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,r&1023|56320)}function Gt(A){return A.replace(pf,bf)}function ys(A){return A===39||A===34}function Yi(A){return A===32||A===9||A===10||A===12||A===13}function Wr(A){const e=[],t=Xi(e,`${A}`,0);if(t<A.length)throw new Error(`Unmatched selector: ${A.slice(t)}`);return e}function Xi(A,e,t){let r=[];function n(d){const C=e.slice(t+d).match(Gi);if(!C)throw new Error(`Expected name, found ${e.slice(t)}`);const[p]=C;return t+=d+p.length,Gt(p)}function s(d){for(t+=d;t<e.length&&Yi(e.charCodeAt(t));)t++}function a(){t+=1;const d=t;let C=1;for(;C>0&&t<e.length;t++)e.charCodeAt(t)===40&&!u(t)?C++:e.charCodeAt(t)===41&&!u(t)&&C--;if(C)throw new Error("Parenthesis not matched");return Gt(e.slice(d,t-1))}function u(d){let C=0;for(;e.charCodeAt(--d)===92;)C++;return(C&1)===1}function o(){if(r.length>0&&Vt(r[r.length-1]))throw new Error("Did not expect successive traversals.")}function l(d){if(r.length>0&&r[r.length-1].type===G.Descendant){r[r.length-1].type=d;return}o(),r.push({type:d})}function f(d,C){r.push({type:G.Attribute,name:d,action:C,value:n(1),namespace:null,ignoreCase:"quirks"})}function h(){if(r.length&&r[r.length-1].type===G.Descendant&&r.pop(),r.length===0)throw new Error("Empty sub-selector");A.push(r)}if(s(0),e.length===t)return t;A:for(;t<e.length;){const d=e.charCodeAt(t);switch(d){case 32:case 9:case 10:case 12:case 13:{(r.length===0||r[0].type!==G.Descendant)&&(o(),r.push({type:G.Descendant})),s(1);break}case 62:{l(G.Child),s(1);break}case 60:{l(G.Parent),s(1);break}case 126:{l(G.Sibling),s(1);break}case 43:{l(G.Adjacent),s(1);break}case 46:{f("class",UA.Element);break}case 35:{f("id",UA.Equals);break}case 91:{s(1);let C,p=null;e.charCodeAt(t)===124?C=n(1):e.startsWith("*|",t)?(p="*",C=n(2)):(C=n(0),e.charCodeAt(t)===124&&e.charCodeAt(t+1)!==61&&(p=C,C=n(1))),s(0);let T=UA.Exists;const U=Cf.get(e.charCodeAt(t));if(U){if(T=U,e.charCodeAt(t+1)!==61)throw new Error("Expected `=`");s(2)}else e.charCodeAt(t)===61&&(T=UA.Equals,s(1));let _="",Q=null;if(T!=="exists"){if(ys(e.charCodeAt(t))){const x=e.charCodeAt(t);let m=t+1;for(;m<e.length&&(e.charCodeAt(m)!==x||u(m));)m+=1;if(e.charCodeAt(m)!==x)throw new Error("Attribute value didn't end");_=Gt(e.slice(t+1,m)),t=m+1}else{const x=t;for(;t<e.length&&(!Yi(e.charCodeAt(t))&&e.charCodeAt(t)!==93||u(t));)t+=1;_=Gt(e.slice(x,t))}s(0);const k=e.charCodeAt(t)|32;k===115?(Q=!1,s(1)):k===105&&(Q=!0,s(1))}if(e.charCodeAt(t)!==93)throw new Error("Attribute selector didn't terminate");t+=1;const D={type:G.Attribute,name:C,action:T,value:_,namespace:p,ignoreCase:Q};r.push(D);break}case 58:{if(e.charCodeAt(t+1)===58){r.push({type:G.PseudoElement,name:n(2).toLowerCase(),data:e.charCodeAt(t)===40?a():null});continue}const C=n(1).toLowerCase();let p=null;if(e.charCodeAt(t)===40)if(wf.has(C)){if(ys(e.charCodeAt(t+1)))throw new Error(`Pseudo-selector ${C} cannot be quoted`);if(p=[],t=Xi(p,e,t+1),e.charCodeAt(t)!==41)throw new Error(`Missing closing parenthesis in :${C} (${e})`);t+=1}else{if(p=a(),Tf.has(C)){const T=p.charCodeAt(0);T===p.charCodeAt(p.length-1)&&ys(T)&&(p=p.slice(1,-1))}p=Gt(p)}r.push({type:G.Pseudo,name:C,data:p});break}case 44:{h(),r=[],s(1);break}default:{if(e.startsWith("/*",t)){const T=e.indexOf("*/",t+2);if(T<0)throw new Error("Comment was not terminated");t=T+2,r.length===0&&s(0);break}let C=null,p;if(d===42)t+=1,p="*";else if(d===124){if(p="",e.charCodeAt(t+1)===124){l(G.ColumnCombinator),s(2);break}}else if(Gi.test(e.slice(t)))p=n(0);else break A;e.charCodeAt(t)===124&&e.charCodeAt(t+1)!==124&&(C=p,e.charCodeAt(t+1)===42?(p="*",t+=2):p=n(1)),r.push(p==="*"?{type:G.Universal,namespace:C}:{type:G.Tag,name:p,namespace:C})}}}return h(),t}function Uf(A){return A&&A.__esModule&&Object.prototype.hasOwnProperty.call(A,"default")?A.default:A}var Jr={trueFunc:function(){return!0},falseFunc:function(){return!1}};const Z=Uf(Jr),Wi=new Map([[G.Universal,50],[G.Tag,30],[G.Attribute,1],[G.Pseudo,0]]);function Ns(A){return!Wi.has(A.type)}const Qf=new Map([[UA.Exists,10],[UA.Equals,8],[UA.Not,7],[UA.Start,6],[UA.End,6],[UA.Any,5]]);function Ff(A){const e=A.map(Ji);for(let t=1;t<A.length;t++){const r=e[t];if(!(r<0))for(let n=t-1;n>=0&&r<e[n];n--){const s=A[n+1];A[n+1]=A[n],A[n]=s,e[n+1]=e[n],e[n]=r}}}function Ji(A){var e,t;let r=(e=Wi.get(A.type))!==null&&e!==void 0?e:-1;return A.type===G.Attribute?(r=(t=Qf.get(A.action))!==null&&t!==void 0?t:4,A.action===UA.Equals&&A.name==="id"&&(r=9),A.ignoreCase&&(r>>=1)):A.type===G.Pseudo&&(A.data?A.name==="has"||A.name==="contains"?r=0:Array.isArray(A.data)?(r=Math.min(...A.data.map(n=>Math.min(...n.map(Ji)))),r<0&&(r=0)):r=2:r=3),r}const If=/[-[\]{}()*+?.,\\^$|#\s]/g;function qi(A){return A.replace(If,"\\$&")}const _f=new Set(["accept","accept-charset","align","alink","axis","bgcolor","charset","checked","clear","codetype","color","compact","declare","defer","dir","direction","disabled","enctype","face","frame","hreflang","http-equiv","lang","language","link","media","method","multiple","nohref","noresize","noshade","nowrap","readonly","rel","rev","rules","scope","scrolling","selected","shape","target","text","type","valign","valuetype","vlink"]);function ze(A,e){return typeof A.ignoreCase=="boolean"?A.ignoreCase:A.ignoreCase==="quirks"?!!e.quirksMode:!e.xmlMode&&_f.has(A.name)}const yf={equals(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;return ze(e,t)?(s=s.toLowerCase(),a=>{const u=r.getAttributeValue(a,n);return u!=null&&u.length===s.length&&u.toLowerCase()===s&&A(a)}):a=>r.getAttributeValue(a,n)===s&&A(a)},hyphen(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=s.length;return ze(e,t)?(s=s.toLowerCase(),function(o){const l=r.getAttributeValue(o,n);return l!=null&&(l.length===a||l.charAt(a)==="-")&&l.substr(0,a).toLowerCase()===s&&A(o)}):function(o){const l=r.getAttributeValue(o,n);return l!=null&&(l.length===a||l.charAt(a)==="-")&&l.substr(0,a)===s&&A(o)}},element(A,e,t){const{adapter:r}=t,{name:n,value:s}=e;if(/\s/.test(s))return Z.falseFunc;const a=new RegExp(`(?:^|\\s)${qi(s)}(?:$|\\s)`,ze(e,t)?"i":"");return function(o){const l=r.getAttributeValue(o,n);return l!=null&&l.length>=s.length&&a.test(l)&&A(o)}},exists(A,{name:e},{adapter:t}){return r=>t.hasAttrib(r,e)&&A(r)},start(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=s.length;return a===0?Z.falseFunc:ze(e,t)?(s=s.toLowerCase(),u=>{const o=r.getAttributeValue(u,n);return o!=null&&o.length>=a&&o.substr(0,a).toLowerCase()===s&&A(u)}):u=>{var o;return!!(!((o=r.getAttributeValue(u,n))===null||o===void 0)&&o.startsWith(s))&&A(u)}},end(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=-s.length;return a===0?Z.falseFunc:ze(e,t)?(s=s.toLowerCase(),u=>{var o;return((o=r.getAttributeValue(u,n))===null||o===void 0?void 0:o.substr(a).toLowerCase())===s&&A(u)}):u=>{var o;return!!(!((o=r.getAttributeValue(u,n))===null||o===void 0)&&o.endsWith(s))&&A(u)}},any(A,e,t){const{adapter:r}=t,{name:n,value:s}=e;if(s==="")return Z.falseFunc;if(ze(e,t)){const a=new RegExp(qi(s),"i");return function(o){const l=r.getAttributeValue(o,n);return l!=null&&l.length>=s.length&&a.test(l)&&A(o)}}return a=>{var u;return!!(!((u=r.getAttributeValue(a,n))===null||u===void 0)&&u.includes(s))&&A(a)}},not(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;return s===""?a=>!!r.getAttributeValue(a,n)&&A(a):ze(e,t)?(s=s.toLowerCase(),a=>{const u=r.getAttributeValue(a,n);return(u==null||u.length!==s.length||u.toLowerCase()!==s)&&A(a)}):a=>r.getAttributeValue(a,n)!==s&&A(a)}},Nf=new Set([9,10,12,13,32]),ji=48,Sf=57;function vf(A){if(A=A.trim().toLowerCase(),A==="even")return[2,0];if(A==="odd")return[2,1];let e=0,t=0,r=s(),n=a();if(e<A.length&&A.charAt(e)==="n"&&(e++,t=r*(n??1),u(),e<A.length?(r=s(),u(),n=a()):r=n=0),n===null||e<A.length)throw new Error(`n-th rule couldn't be parsed ('${A}')`);return[t,r*n];function s(){return A.charAt(e)==="-"?(e++,-1):(A.charAt(e)==="+"&&e++,1)}function a(){const o=e;let l=0;for(;e<A.length&&A.charCodeAt(e)>=ji&&A.charCodeAt(e)<=Sf;)l=l*10+(A.charCodeAt(e)-ji),e++;return e===o?null:l}function u(){for(;e<A.length&&Nf.has(A.charCodeAt(e));)e++}}function Lf(A){const e=A[0],t=A[1]-1;if(t<0&&e<=0)return Z.falseFunc;if(e===-1)return s=>s<=t;if(e===0)return s=>s===t;if(e===1)return t<0?Z.trueFunc:s=>s>=t;const r=Math.abs(e),n=(t%r+r)%r;return e>1?s=>s>=t&&s%r===n:s=>s<=t&&s%r===n}function qr(A){return Lf(vf(A))}function jr(A,e){return t=>{const r=e.getParent(t);return r!=null&&e.isTag(r)&&A(t)}}const Ss={contains(A,e,{adapter:t}){return function(n){return A(n)&&t.getText(n).includes(e)}},icontains(A,e,{adapter:t}){const r=e.toLowerCase();return function(s){return A(s)&&t.getText(s).toLowerCase().includes(r)}},"nth-child"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=0;l<u.length&&!r(a,u[l]);l++)t.isTag(u[l])&&o++;return n(o)&&A(a)}},"nth-last-child"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=u.length-1;l>=0&&!r(a,u[l]);l--)t.isTag(u[l])&&o++;return n(o)&&A(a)}},"nth-of-type"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=0;l<u.length;l++){const f=u[l];if(r(a,f))break;t.isTag(f)&&t.getName(f)===t.getName(a)&&o++}return n(o)&&A(a)}},"nth-last-of-type"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=u.length-1;l>=0;l--){const f=u[l];if(r(a,f))break;t.isTag(f)&&t.getName(f)===t.getName(a)&&o++}return n(o)&&A(a)}},root(A,e,{adapter:t}){return r=>{const n=t.getParent(r);return(n==null||!t.isTag(n))&&A(r)}},scope(A,e,t,r){const{equals:n}=t;return!r||r.length===0?Ss.root(A,e,t):r.length===1?s=>n(r[0],s)&&A(s):s=>r.includes(s)&&A(s)},hover:vs("isHovered"),visited:vs("isVisited"),active:vs("isActive")};function vs(A){return function(t,r,{adapter:n}){const s=n[A];return typeof s!="function"?Z.falseFunc:function(u){return s(u)&&t(u)}}}const $i={empty(A,{adapter:e}){return!e.getChildren(A).some(t=>e.isTag(t)||e.getText(t)!=="")},"first-child"(A,{adapter:e,equals:t}){if(e.prevElementSibling)return e.prevElementSibling(A)==null;const r=e.getSiblings(A).find(n=>e.isTag(n));return r!=null&&t(A,r)},"last-child"(A,{adapter:e,equals:t}){const r=e.getSiblings(A);for(let n=r.length-1;n>=0;n--){if(t(A,r[n]))return!0;if(e.isTag(r[n]))break}return!1},"first-of-type"(A,{adapter:e,equals:t}){const r=e.getSiblings(A),n=e.getName(A);for(let s=0;s<r.length;s++){const a=r[s];if(t(A,a))return!0;if(e.isTag(a)&&e.getName(a)===n)break}return!1},"last-of-type"(A,{adapter:e,equals:t}){const r=e.getSiblings(A),n=e.getName(A);for(let s=r.length-1;s>=0;s--){const a=r[s];if(t(A,a))return!0;if(e.isTag(a)&&e.getName(a)===n)break}return!1},"only-of-type"(A,{adapter:e,equals:t}){const r=e.getName(A);return e.getSiblings(A).every(n=>t(A,n)||!e.isTag(n)||e.getName(n)!==r)},"only-child"(A,{adapter:e,equals:t}){return e.getSiblings(A).every(r=>t(A,r)||!e.isTag(r))}};function Zi(A,e,t,r){if(t===null){if(A.length>r)throw new Error(`Pseudo-class :${e} requires an argument`)}else if(A.length===r)throw new Error(`Pseudo-class :${e} doesn't have any arguments`)}const xf={"any-link":":is(a, area, link)[href]",link:":any-link:not(:visited)",disabled:`:is(
1
+ (function(Ne,c){typeof exports=="object"&&typeof module<"u"?c(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],c):(Ne=typeof globalThis<"u"?globalThis:Ne||self,c(Ne.GpWebModule={},Ne.Vue))})(this,function(Ne,c){"use strict";var nA;(function(A){A.Root="root",A.Text="text",A.Directive="directive",A.Comment="comment",A.Script="script",A.Style="style",A.Tag="tag",A.CDATA="cdata",A.Doctype="doctype"})(nA||(nA={}));function ql(A){return A.type===nA.Tag||A.type===nA.Script||A.type===nA.Style}const jl=nA.Root,$l=nA.Text,Zl=nA.Directive,zl=nA.Comment,A0=nA.Script,e0=nA.Style,t0=nA.Tag,r0=nA.CDATA,n0=nA.Doctype;let gi=class{constructor(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}get parentNode(){return this.parent}set parentNode(e){this.parent=e}get previousSibling(){return this.prev}set previousSibling(e){this.prev=e}get nextSibling(){return this.next}set nextSibling(e){this.next=e}cloneNode(e=!1){return kt(this,e)}};class os extends gi{constructor(e){super(),this.data=e}get nodeValue(){return this.data}set nodeValue(e){this.data=e}}class Mt extends os{constructor(){super(...arguments),this.type=nA.Text}get nodeType(){return 3}}class cs extends os{constructor(){super(...arguments),this.type=nA.Comment}get nodeType(){return 8}}class ls extends os{constructor(e,t){super(t),this.name=e,this.type=nA.Directive}get nodeType(){return 1}}class fs extends gi{constructor(e){super(),this.children=e}get firstChild(){var e;return(e=this.children[0])!==null&&e!==void 0?e:null}get lastChild(){return this.children.length>0?this.children[this.children.length-1]:null}get childNodes(){return this.children}set childNodes(e){this.children=e}}class Ei extends fs{constructor(){super(...arguments),this.type=nA.CDATA}get nodeType(){return 4}}class Ze extends fs{constructor(){super(...arguments),this.type=nA.Root}get nodeType(){return 9}}class hs extends fs{constructor(e,t,r=[],n=e==="script"?nA.Script:e==="style"?nA.Style:nA.Tag){super(r),this.name=e,this.attribs=t,this.type=n}get nodeType(){return 1}get tagName(){return this.name}set tagName(e){this.name=e}get attributes(){return Object.keys(this.attribs).map(e=>{var t,r;return{name:e,value:this.attribs[e],namespace:(t=this["x-attribsNamespace"])===null||t===void 0?void 0:t[e],prefix:(r=this["x-attribsPrefix"])===null||r===void 0?void 0:r[e]}})}}function X(A){return ql(A)}function Hr(A){return A.type===nA.CDATA}function Be(A){return A.type===nA.Text}function Dr(A){return A.type===nA.Comment}function ds(A){return A.type===nA.Directive}function Se(A){return A.type===nA.Root}function yA(A){return Object.prototype.hasOwnProperty.call(A,"children")}function kt(A,e=!1){let t;if(Be(A))t=new Mt(A.data);else if(Dr(A))t=new cs(A.data);else if(X(A)){const r=e?Bs(A.children):[],n=new hs(A.name,{...A.attribs},r);r.forEach(s=>s.parent=n),A.namespace!=null&&(n.namespace=A.namespace),A["x-attribsNamespace"]&&(n["x-attribsNamespace"]={...A["x-attribsNamespace"]}),A["x-attribsPrefix"]&&(n["x-attribsPrefix"]={...A["x-attribsPrefix"]}),t=n}else if(Hr(A)){const r=e?Bs(A.children):[],n=new Ei(r);r.forEach(s=>s.parent=n),t=n}else if(Se(A)){const r=e?Bs(A.children):[],n=new Ze(r);r.forEach(s=>s.parent=n),A["x-mode"]&&(n["x-mode"]=A["x-mode"]),t=n}else if(ds(A)){const r=new ls(A.name,A.data);A["x-name"]!=null&&(r["x-name"]=A["x-name"],r["x-publicId"]=A["x-publicId"],r["x-systemId"]=A["x-systemId"]),t=r}else throw new Error(`Not implemented yet: ${A.type}`);return t.startIndex=A.startIndex,t.endIndex=A.endIndex,A.sourceCodeLocation!=null&&(t.sourceCodeLocation=A.sourceCodeLocation),t}function Bs(A){const e=A.map(t=>kt(t,!0));for(let t=1;t<e.length;t++)e[t].prev=e[t-1],e[t-1].next=e[t];return e}const mi={withStartIndices:!1,withEndIndices:!1,xmlMode:!1};class s0{constructor(e,t,r){this.dom=[],this.root=new Ze(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,typeof t=="function"&&(r=t,t=mi),typeof e=="object"&&(t=e,e=void 0),this.callback=e??null,this.options=t??mi,this.elementCB=r??null}onparserinit(e){this.parser=e}onreset(){this.dom=[],this.root=new Ze(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null}onend(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))}onerror(e){this.handleCallback(e)}onclosetag(){this.lastNode=null;const e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)}onopentag(e,t){const r=this.options.xmlMode?nA.Tag:void 0,n=new hs(e,t,void 0,r);this.addNode(n),this.tagStack.push(n)}ontext(e){const{lastNode:t}=this;if(t&&t.type===nA.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{const r=new Mt(e);this.addNode(r),this.lastNode=r}}oncomment(e){if(this.lastNode&&this.lastNode.type===nA.Comment){this.lastNode.data+=e;return}const t=new cs(e);this.addNode(t),this.lastNode=t}oncommentend(){this.lastNode=null}oncdatastart(){const e=new Mt(""),t=new Ei([e]);this.addNode(t),e.parent=t,this.lastNode=e}oncdataend(){this.lastNode=null}onprocessinginstruction(e,t){const r=new ls(e,t);this.addNode(r)}handleCallback(e){if(typeof this.callback=="function")this.callback(e,this.dom);else if(e)throw e}addNode(e){const t=this.tagStack[this.tagStack.length-1],r=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),r&&(e.prev=r,r.next=e),e.parent=t,this.lastNode=null}}const gs=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(A=>A.charCodeAt(0))),pi=new Uint16Array("Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(A=>A.charCodeAt(0)));var Es;const a0=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ms=(Es=String.fromCodePoint)!==null&&Es!==void 0?Es:function(A){let e="";return A>65535&&(A-=65536,e+=String.fromCharCode(A>>>10&1023|55296),A=56320|A&1023),e+=String.fromCharCode(A),e};function i0(A){var e;return A>=55296&&A<=57343||A>1114111?65533:(e=a0.get(A))!==null&&e!==void 0?e:A}var NA;(function(A){A[A.NUM=35]="NUM",A[A.SEMI=59]="SEMI",A[A.EQUALS=61]="EQUALS",A[A.ZERO=48]="ZERO",A[A.NINE=57]="NINE",A[A.LOWER_A=97]="LOWER_A",A[A.LOWER_F=102]="LOWER_F",A[A.LOWER_X=120]="LOWER_X",A[A.LOWER_Z=122]="LOWER_Z",A[A.UPPER_A=65]="UPPER_A",A[A.UPPER_F=70]="UPPER_F",A[A.UPPER_Z=90]="UPPER_Z"})(NA||(NA={}));const u0=32;var ve;(function(A){A[A.VALUE_LENGTH=49152]="VALUE_LENGTH",A[A.BRANCH_LENGTH=16256]="BRANCH_LENGTH",A[A.JUMP_TABLE=127]="JUMP_TABLE"})(ve||(ve={}));function ps(A){return A>=NA.ZERO&&A<=NA.NINE}function o0(A){return A>=NA.UPPER_A&&A<=NA.UPPER_F||A>=NA.LOWER_A&&A<=NA.LOWER_F}function c0(A){return A>=NA.UPPER_A&&A<=NA.UPPER_Z||A>=NA.LOWER_A&&A<=NA.LOWER_Z||ps(A)}function l0(A){return A===NA.EQUALS||c0(A)}var SA;(function(A){A[A.EntityStart=0]="EntityStart",A[A.NumericStart=1]="NumericStart",A[A.NumericDecimal=2]="NumericDecimal",A[A.NumericHex=3]="NumericHex",A[A.NamedEntity=4]="NamedEntity"})(SA||(SA={}));var re;(function(A){A[A.Legacy=0]="Legacy",A[A.Strict=1]="Strict",A[A.Attribute=2]="Attribute"})(re||(re={}));class Cs{constructor(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=SA.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=re.Strict}startEntity(e){this.decodeMode=e,this.state=SA.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(e,t){switch(this.state){case SA.EntityStart:return e.charCodeAt(t)===NA.NUM?(this.state=SA.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=SA.NamedEntity,this.stateNamedEntity(e,t));case SA.NumericStart:return this.stateNumericStart(e,t);case SA.NumericDecimal:return this.stateNumericDecimal(e,t);case SA.NumericHex:return this.stateNumericHex(e,t);case SA.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(e.charCodeAt(t)|u0)===NA.LOWER_X?(this.state=SA.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=SA.NumericDecimal,this.stateNumericDecimal(e,t))}addToNumericResult(e,t,r,n){if(t!==r){const s=r-t;this.result=this.result*Math.pow(n,s)+parseInt(e.substr(t,s),n),this.consumed+=s}}stateNumericHex(e,t){const r=t;for(;t<e.length;){const n=e.charCodeAt(t);if(ps(n)||o0(n))t+=1;else return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(n,3)}return this.addToNumericResult(e,r,t,16),-1}stateNumericDecimal(e,t){const r=t;for(;t<e.length;){const n=e.charCodeAt(t);if(ps(n))t+=1;else return this.addToNumericResult(e,r,t,10),this.emitNumericEntity(n,2)}return this.addToNumericResult(e,r,t,10),-1}emitNumericEntity(e,t){var r;if(this.consumed<=t)return(r=this.errors)===null||r===void 0||r.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===NA.SEMI)this.consumed+=1;else if(this.decodeMode===re.Strict)return 0;return this.emitCodePoint(i0(this.result),this.consumed),this.errors&&(e!==NA.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}stateNamedEntity(e,t){const{decodeTree:r}=this;let n=r[this.treeIndex],s=(n&ve.VALUE_LENGTH)>>14;for(;t<e.length;t++,this.excess++){const a=e.charCodeAt(t);if(this.treeIndex=f0(r,n,this.treeIndex+Math.max(1,s),a),this.treeIndex<0)return this.result===0||this.decodeMode===re.Attribute&&(s===0||l0(a))?0:this.emitNotTerminatedNamedEntity();if(n=r[this.treeIndex],s=(n&ve.VALUE_LENGTH)>>14,s!==0){if(a===NA.SEMI)return this.emitNamedEntityData(this.treeIndex,s,this.consumed+this.excess);this.decodeMode!==re.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var e;const{result:t,decodeTree:r}=this,n=(r[t]&ve.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),(e=this.errors)===null||e===void 0||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,r){const{decodeTree:n}=this;return this.emitCodePoint(t===1?n[e]&~ve.VALUE_LENGTH:n[e+1],r),t===3&&this.emitCodePoint(n[e+2],r),r}end(){var e;switch(this.state){case SA.NamedEntity:return this.result!==0&&(this.decodeMode!==re.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case SA.NumericDecimal:return this.emitNumericEntity(0,2);case SA.NumericHex:return this.emitNumericEntity(0,3);case SA.NumericStart:return(e=this.errors)===null||e===void 0||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case SA.EntityStart:return 0}}}function Ci(A){let e="";const t=new Cs(A,r=>e+=ms(r));return function(n,s){let a=0,u=0;for(;(u=n.indexOf("&",u))>=0;){e+=n.slice(a,u),t.startEntity(s);const l=t.write(n,u+1);if(l<0){a=u+t.end();break}a=u+l,u=l===0?a+1:a}const o=e+n.slice(a);return e="",o}}function f0(A,e,t,r){const n=(e&ve.BRANCH_LENGTH)>>7,s=e&ve.JUMP_TABLE;if(n===0)return s!==0&&r===s?t:-1;if(s){const o=r-s;return o<0||o>=n?-1:A[t+o]-1}let a=t,u=a+n-1;for(;a<=u;){const o=a+u>>>1,l=A[o];if(l<r)a=o+1;else if(l>r)u=o-1;else return A[o+n]}return-1}Ci(gs),Ci(pi);const wi=/["&'<>$\x80-\uFFFF]/g,h0=new Map([[34,"&quot;"],[38,"&amp;"],[39,"&apos;"],[60,"&lt;"],[62,"&gt;"]]),d0=String.prototype.codePointAt!=null?(A,e)=>A.codePointAt(e):(A,e)=>(A.charCodeAt(e)&64512)===55296?(A.charCodeAt(e)-55296)*1024+A.charCodeAt(e+1)-56320+65536:A.charCodeAt(e);function Ti(A){let e="",t=0,r;for(;(r=wi.exec(A))!==null;){const n=r.index,s=A.charCodeAt(n),a=h0.get(s);a!==void 0?(e+=A.substring(t,n)+a,t=n+1):(e+=`${A.substring(t,n)}&#x${d0(A,n).toString(16)};`,t=wi.lastIndex+=+((s&64512)===55296))}return e+A.substr(t)}function bi(A,e){return function(r){let n,s=0,a="";for(;n=A.exec(r);)s!==n.index&&(a+=r.substring(s,n.index)),a+=e.get(n[0].charCodeAt(0)),s=n.index+1;return a+r.substring(s)}}const Ui=bi(/["&\u00A0]/g,new Map([[34,"&quot;"],[38,"&amp;"],[160,"&nbsp;"]])),Qi=bi(/[&<>\u00A0]/g,new Map([[38,"&amp;"],[60,"&lt;"],[62,"&gt;"],[160,"&nbsp;"]])),B0=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(A=>[A.toLowerCase(),A])),g0=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(A=>[A.toLowerCase(),A])),E0=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function m0(A){return A.replace(/"/g,"&quot;")}function p0(A,e){var t;if(!A)return;const r=((t=e.encodeEntities)!==null&&t!==void 0?t:e.decodeEntities)===!1?m0:e.xmlMode||e.encodeEntities!=="utf8"?Ti:Ui;return Object.keys(A).map(n=>{var s,a;const u=(s=A[n])!==null&&s!==void 0?s:"";return e.xmlMode==="foreign"&&(n=(a=g0.get(n))!==null&&a!==void 0?a:n),!e.emptyAttrs&&!e.xmlMode&&u===""?n:`${n}="${r(u)}"`}).join(" ")}const Fi=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function Or(A,e={}){const t="length"in A?A:[A];let r="";for(let n=0;n<t.length;n++)r+=C0(t[n],e);return r}function C0(A,e){switch(A.type){case jl:return Or(A.children,e);case n0:case Zl:return U0(A);case zl:return I0(A);case r0:return F0(A);case A0:case e0:case t0:return b0(A,e);case $l:return Q0(A,e)}}const w0=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),T0=new Set(["svg","math"]);function b0(A,e){var t;e.xmlMode==="foreign"&&(A.name=(t=B0.get(A.name))!==null&&t!==void 0?t:A.name,A.parent&&w0.has(A.parent.name)&&(e={...e,xmlMode:!1})),!e.xmlMode&&T0.has(A.name)&&(e={...e,xmlMode:"foreign"});let r=`<${A.name}`;const n=p0(A.attribs,e);return n&&(r+=` ${n}`),A.children.length===0&&(e.xmlMode?e.selfClosingTags!==!1:e.selfClosingTags&&Fi.has(A.name))?(e.xmlMode||(r+=" "),r+="/>"):(r+=">",A.children.length>0&&(r+=Or(A.children,e)),(e.xmlMode||!Fi.has(A.name))&&(r+=`</${A.name}>`)),r}function U0(A){return`<${A.data}>`}function Q0(A,e){var t;let r=A.data||"";return((t=e.encodeEntities)!==null&&t!==void 0?t:e.decodeEntities)!==!1&&!(!e.xmlMode&&A.parent&&E0.has(A.parent.name))&&(r=e.xmlMode||e.encodeEntities!=="utf8"?Ti(r):Qi(r)),r}function F0(A){return`<![CDATA[${A.children[0].data}]]>`}function I0(A){return`<!--${A.data}-->`}function Ii(A,e){return Or(A,e)}function _0(A,e){return yA(A)?A.children.map(t=>Ii(t,e)).join(""):""}function Rr(A){return Array.isArray(A)?A.map(Rr).join(""):X(A)?A.name==="br"?`
2
+ `:Rr(A.children):Hr(A)?Rr(A.children):Be(A)?A.data:""}function ht(A){return Array.isArray(A)?A.map(ht).join(""):yA(A)&&!Dr(A)?ht(A.children):Be(A)?A.data:""}function Mr(A){return Array.isArray(A)?A.map(Mr).join(""):yA(A)&&(A.type===nA.Tag||Hr(A))?Mr(A.children):Be(A)?A.data:""}function kr(A){return yA(A)?A.children:[]}function _i(A){return A.parent||null}function yi(A){const e=_i(A);if(e!=null)return kr(e);const t=[A];let{prev:r,next:n}=A;for(;r!=null;)t.unshift(r),{prev:r}=r;for(;n!=null;)t.push(n),{next:n}=n;return t}function y0(A,e){var t;return(t=A.attribs)===null||t===void 0?void 0:t[e]}function N0(A,e){return A.attribs!=null&&Object.prototype.hasOwnProperty.call(A.attribs,e)&&A.attribs[e]!=null}function S0(A){return A.name}function ws(A){let{next:e}=A;for(;e!==null&&!X(e);)({next:e}=e);return e}function Ts(A){let{prev:e}=A;for(;e!==null&&!X(e);)({prev:e}=e);return e}function ze(A){if(A.prev&&(A.prev.next=A.next),A.next&&(A.next.prev=A.prev),A.parent){const e=A.parent.children,t=e.lastIndexOf(A);t>=0&&e.splice(t,1)}A.next=null,A.prev=null,A.parent=null}function v0(A,e){const t=e.prev=A.prev;t&&(t.next=e);const r=e.next=A.next;r&&(r.prev=e);const n=e.parent=A.parent;if(n){const s=n.children;s[s.lastIndexOf(A)]=e,A.parent=null}}function L0(A,e){if(ze(e),e.next=null,e.parent=A,A.children.push(e)>1){const t=A.children[A.children.length-2];t.next=e,e.prev=t}else e.prev=null}function x0(A,e){ze(e);const{parent:t}=A,r=A.next;if(e.next=r,e.prev=A,A.next=e,e.parent=t,r){if(r.prev=e,t){const n=t.children;n.splice(n.lastIndexOf(r),0,e)}}else t&&t.children.push(e)}function H0(A,e){if(ze(e),e.parent=A,e.prev=null,A.children.unshift(e)!==1){const t=A.children[1];t.prev=e,e.next=t}else e.next=null}function D0(A,e){ze(e);const{parent:t}=A;if(t){const r=t.children;r.splice(r.indexOf(A),0,e)}A.prev&&(A.prev.next=e),e.parent=t,e.prev=A.prev,e.next=A,A.prev=e}function Pr(A,e,t=!0,r=1/0){return bs(A,Array.isArray(e)?e:[e],t,r)}function bs(A,e,t,r){const n=[],s=[e],a=[0];for(;;){if(a[0]>=s[0].length){if(a.length===1)return n;s.shift(),a.shift();continue}const u=s[0][a[0]++];if(A(u)&&(n.push(u),--r<=0))return n;t&&yA(u)&&u.children.length>0&&(a.unshift(0),s.unshift(u.children))}}function O0(A,e){return e.find(A)}function Us(A,e,t=!0){let r=null;for(let n=0;n<e.length&&!r;n++){const s=e[n];if(X(s))A(s)?r=s:t&&s.children.length>0&&(r=Us(A,s.children,!0));else continue}return r}function Ni(A,e){return e.some(t=>X(t)&&(A(t)||Ni(A,t.children)))}function R0(A,e){const t=[],r=[e],n=[0];for(;;){if(n[0]>=r[0].length){if(r.length===1)return t;r.shift(),n.shift();continue}const s=r[0][n[0]++];X(s)&&(A(s)&&t.push(s),s.children.length>0&&(n.unshift(0),r.unshift(s.children)))}}const Kr={tag_name(A){return typeof A=="function"?e=>X(e)&&A(e.name):A==="*"?X:e=>X(e)&&e.name===A},tag_type(A){return typeof A=="function"?e=>A(e.type):e=>e.type===A},tag_contains(A){return typeof A=="function"?e=>Be(e)&&A(e.data):e=>Be(e)&&e.data===A}};function Si(A,e){return typeof e=="function"?t=>X(t)&&e(t.attribs[A]):t=>X(t)&&t.attribs[A]===e}function M0(A,e){return t=>A(t)||e(t)}function vi(A){const e=Object.keys(A).map(t=>{const r=A[t];return Object.prototype.hasOwnProperty.call(Kr,t)?Kr[t](r):Si(t,r)});return e.length===0?null:e.reduce(M0)}function k0(A,e){const t=vi(A);return t?t(e):!0}function P0(A,e,t,r=1/0){const n=vi(A);return n?Pr(n,e,t,r):[]}function K0(A,e,t=!0){return Array.isArray(e)||(e=[e]),Us(Si("id",A),e,t)}function dt(A,e,t=!0,r=1/0){return Pr(Kr.tag_name(A),e,t,r)}function V0(A,e,t=!0,r=1/0){return Pr(Kr.tag_type(A),e,t,r)}function G0(A){let e=A.length;for(;--e>=0;){const t=A[e];if(e>0&&A.lastIndexOf(t,e-1)>=0){A.splice(e,1);continue}for(let r=t.parent;r;r=r.parent)if(A.includes(r)){A.splice(e,1);break}}return A}var ne;(function(A){A[A.DISCONNECTED=1]="DISCONNECTED",A[A.PRECEDING=2]="PRECEDING",A[A.FOLLOWING=4]="FOLLOWING",A[A.CONTAINS=8]="CONTAINS",A[A.CONTAINED_BY=16]="CONTAINED_BY"})(ne||(ne={}));function Li(A,e){const t=[],r=[];if(A===e)return 0;let n=yA(A)?A:A.parent;for(;n;)t.unshift(n),n=n.parent;for(n=yA(e)?e:e.parent;n;)r.unshift(n),n=n.parent;const s=Math.min(t.length,r.length);let a=0;for(;a<s&&t[a]===r[a];)a++;if(a===0)return ne.DISCONNECTED;const u=t[a-1],o=u.children,l=t[a],f=r[a];return o.indexOf(l)>o.indexOf(f)?u===e?ne.FOLLOWING|ne.CONTAINED_BY:ne.FOLLOWING:u===A?ne.PRECEDING|ne.CONTAINS:ne.PRECEDING}function Bt(A){return A=A.filter((e,t,r)=>!r.includes(e,t+1)),A.sort((e,t)=>{const r=Li(e,t);return r&ne.PRECEDING?-1:r&ne.FOLLOWING?1:0}),A}function Y0(A){const e=Vr(j0,A);return e?e.name==="feed"?X0(e):W0(e):null}function X0(A){var e;const t=A.children,r={type:"atom",items:dt("entry",t).map(a=>{var u;const{children:o}=a,l={media:xi(o)};XA(l,"id","id",o),XA(l,"title","title",o);const f=(u=Vr("link",o))===null||u===void 0?void 0:u.attribs.href;f&&(l.link=f);const h=Le("summary",o)||Le("content",o);h&&(l.description=h);const d=Le("updated",o);return d&&(l.pubDate=new Date(d)),l})};XA(r,"id","id",t),XA(r,"title","title",t);const n=(e=Vr("link",t))===null||e===void 0?void 0:e.attribs.href;n&&(r.link=n),XA(r,"description","subtitle",t);const s=Le("updated",t);return s&&(r.updated=new Date(s)),XA(r,"author","email",t,!0),r}function W0(A){var e,t;const r=(t=(e=Vr("channel",A.children))===null||e===void 0?void 0:e.children)!==null&&t!==void 0?t:[],n={type:A.name.substr(0,3),id:"",items:dt("item",A.children).map(a=>{const{children:u}=a,o={media:xi(u)};XA(o,"id","guid",u),XA(o,"title","title",u),XA(o,"link","link",u),XA(o,"description","description",u);const l=Le("pubDate",u)||Le("dc:date",u);return l&&(o.pubDate=new Date(l)),o})};XA(n,"title","title",r),XA(n,"link","link",r),XA(n,"description","description",r);const s=Le("lastBuildDate",r);return s&&(n.updated=new Date(s)),XA(n,"author","managingEditor",r,!0),n}const J0=["url","type","lang"],q0=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function xi(A){return dt("media:content",A).map(e=>{const{attribs:t}=e,r={medium:t.medium,isDefault:!!t.isDefault};for(const n of J0)t[n]&&(r[n]=t[n]);for(const n of q0)t[n]&&(r[n]=parseInt(t[n],10));return t.expression&&(r.expression=t.expression),r})}function Vr(A,e){return dt(A,e,!0,1)[0]}function Le(A,e,t=!1){return ht(dt(A,e,t,1)).trim()}function XA(A,e,t,r,n=!1){const s=Le(t,r,n);s&&(A[e]=s)}function j0(A){return A==="rss"||A==="feed"||A==="rdf:RDF"}const Gr=Object.freeze(Object.defineProperty({__proto__:null,get DocumentPosition(){return ne},append:x0,appendChild:L0,compareDocumentPosition:Li,existsOne:Ni,filter:Pr,find:bs,findAll:R0,findOne:Us,findOneChild:O0,getAttributeValue:y0,getChildren:kr,getElementById:K0,getElements:P0,getElementsByTagName:dt,getElementsByTagType:V0,getFeed:Y0,getInnerHTML:_0,getName:S0,getOuterHTML:Ii,getParent:_i,getSiblings:yi,getText:Rr,hasAttrib:N0,hasChildren:yA,innerText:Mr,isCDATA:Hr,isComment:Dr,isDocument:Se,isTag:X,isText:Be,nextElementSibling:ws,prepend:D0,prependChild:H0,prevElementSibling:Ts,removeElement:ze,removeSubsets:G0,replaceElement:v0,testElement:k0,textContent:ht,uniqueSort:Bt},Symbol.toStringTag,{value:"Module"})),$0={_useHtmlParser2:!1};function Qs(A,e){if(!A)return e??$0;const t={_useHtmlParser2:!!A.xmlMode,...e,...A};return A.xml?(t._useHtmlParser2=!0,t.xmlMode=!0,A.xml!==!0&&Object.assign(t,A.xml)):A.xmlMode&&(t._useHtmlParser2=!0),t}function Hi(A,e,t){return A?A(e??A._root.children,null,void 0,t).toString():""}function Z0(A,e){return typeof A=="object"&&A!=null&&!("length"in A)&&!("type"in A)}function z0(A,e){const t=Z0(A)?(e=A,void 0):A,r={...this===null||this===void 0?void 0:this._options,...Qs(e)};return Hi(this,t,r)}function Af(A){const e={...this._options,xmlMode:!0};return Hi(this,A,e)}function Pt(A){const e=A??(this?this.root():[]);let t="";for(let r=0;r<e.length;r++)t+=ht(e[r]);return t}function ef(A,e,t=typeof e=="boolean"?e:!1){if(!A||typeof A!="string")return null;typeof e=="boolean"&&(t=e);const r=this.load(A,this._options,!1);return t||r("script").remove(),[...r.root()[0].children]}function tf(){return this(this._root)}function Di(A,e){if(e===A)return!1;let t=e;for(;t&&t!==t.parent;)if(t=t.parent,t===A)return!0;return!1}function rf(A){return this.root().extract(A)}function nf(A,e){if(!Oi(A)||!Oi(e))return;let t=A.length;const r=+e.length;for(let n=0;n<r;n++)A[t++]=e[n];return A.length=t,A}function Oi(A){if(Array.isArray(A))return!0;if(typeof A!="object"||A===null||!("length"in A)||typeof A.length!="number"||A.length<0)return!1;for(let e=0;e<A.length;e++)if(!(e in A))return!1;return!0}const sf=Object.freeze(Object.defineProperty({__proto__:null,contains:Di,extract:rf,html:z0,merge:nf,parseHTML:ef,root:tf,text:Pt,xml:Af},Symbol.toStringTag,{value:"Module"}));function be(A){return A.cheerio!=null}function af(A){return A.replace(/[._-](\w|$)/g,(e,t)=>t.toUpperCase())}function uf(A){return A.replace(/[A-Z]/g,"-$&").toLowerCase()}function mA(A,e){const t=A.length;for(let r=0;r<t;r++)e(A[r],r);return A}var At;(function(A){A[A.LowerA=97]="LowerA",A[A.LowerZ=122]="LowerZ",A[A.UpperA=65]="UpperA",A[A.UpperZ=90]="UpperZ",A[A.Exclamation=33]="Exclamation"})(At||(At={}));function Fs(A){const e=A.indexOf("<");if(e<0||e>A.length-3)return!1;const t=A.charCodeAt(e+1);return(t>=At.LowerA&&t<=At.LowerZ||t>=At.UpperA&&t<=At.UpperZ||t===At.Exclamation)&&A.includes(">",e+2)}const Kt=Object.prototype.hasOwnProperty,Vt=/\s+/,Is="data-",_s=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,of=/^{[^]*}$|^\[[^]*]$/;function Yr(A,e,t){var r;if(!(!A||!X(A))){if((r=A.attribs)!==null&&r!==void 0||(A.attribs={}),!e)return A.attribs;if(Kt.call(A.attribs,e))return!t&&_s.test(e)?e:A.attribs[e];if(A.name==="option"&&e==="value")return Pt(A.children);if(A.name==="input"&&(A.attribs.type==="radio"||A.attribs.type==="checkbox")&&e==="value")return"on"}}function gt(A,e,t){t===null?Pi(A,e):A.attribs[e]=`${t}`}function cf(A,e){if(typeof A=="object"||e!==void 0){if(typeof e=="function"){if(typeof A!="string")throw new Error("Bad combination of arguments.");return mA(this,(t,r)=>{X(t)&&gt(t,A,e.call(t,r,t.attribs[A]))})}return mA(this,t=>{if(X(t))if(typeof A=="object")for(const r of Object.keys(A)){const n=A[r];gt(t,r,n)}else gt(t,A,e)})}return arguments.length>1?this:Yr(this[0],A,this.options.xmlMode)}function Ri(A,e,t){return e in A?A[e]:!t&&_s.test(e)?Yr(A,e,!1)!==void 0:Yr(A,e,t)}function ys(A,e,t,r){e in A?A[e]=t:gt(A,e,!r&&_s.test(e)?t?"":null:`${t}`)}function lf(A,e){var t;if(typeof A=="string"&&e===void 0){const r=this[0];if(!r||!X(r))return;switch(A){case"style":{const n=this.css(),s=Object.keys(n);for(let a=0;a<s.length;a++)n[a]=s[a];return n.length=s.length,n}case"tagName":case"nodeName":return r.name.toUpperCase();case"href":case"src":{const n=(t=r.attribs)===null||t===void 0?void 0:t[A];return typeof URL<"u"&&(A==="href"&&(r.tagName==="a"||r.tagName==="link")||A==="src"&&(r.tagName==="img"||r.tagName==="iframe"||r.tagName==="audio"||r.tagName==="video"||r.tagName==="source"))&&n!==void 0&&this.options.baseURI?new URL(n,this.options.baseURI).href:n}case"innerText":return Mr(r);case"textContent":return ht(r);case"outerHTML":return this.clone().wrap("<container />").parent().html();case"innerHTML":return this.html();default:return Ri(r,A,this.options.xmlMode)}}if(typeof A=="object"||e!==void 0){if(typeof e=="function"){if(typeof A=="object")throw new TypeError("Bad combination of arguments.");return mA(this,(r,n)=>{X(r)&&ys(r,A,e.call(r,n,Ri(r,A,this.options.xmlMode)),this.options.xmlMode)})}return mA(this,r=>{if(X(r))if(typeof A=="object")for(const n of Object.keys(A)){const s=A[n];ys(r,n,s,this.options.xmlMode)}else ys(r,A,e,this.options.xmlMode)})}}function Mi(A,e,t){var r;(r=A.data)!==null&&r!==void 0||(A.data={}),typeof e=="object"?Object.assign(A.data,e):typeof e=="string"&&t!==void 0&&(A.data[e]=t)}function ff(A){for(const e of Object.keys(A.attribs)){if(!e.startsWith(Is))continue;const t=af(e.slice(Is.length));Kt.call(A.data,t)||(A.data[t]=ki(A.attribs[e]))}return A.data}function hf(A,e){const t=Is+uf(e),r=A.data;if(Kt.call(r,e))return r[e];if(Kt.call(A.attribs,t))return r[e]=ki(A.attribs[t])}function ki(A){if(A==="null")return null;if(A==="true")return!0;if(A==="false")return!1;const e=Number(A);if(A===String(e))return e;if(of.test(A))try{return JSON.parse(A)}catch{}return A}function df(A,e){var t;const r=this[0];if(!r||!X(r))return;const n=r;return(t=n.data)!==null&&t!==void 0||(n.data={}),A==null?ff(n):typeof A=="object"||e!==void 0?(mA(this,s=>{X(s)&&(typeof A=="object"?Mi(s,A):Mi(s,A,e))}),this):hf(n,A)}function Bf(A){const e=arguments.length===0,t=this[0];if(!t||!X(t))return e?void 0:this;switch(t.name){case"textarea":return this.text(A);case"select":{const r=this.find("option:selected");if(!e){if(this.attr("multiple")==null&&typeof A=="object")return this;this.find("option").removeAttr("selected");const n=typeof A=="object"?A:[A];for(const s of n)this.find(`option[value="${s}"]`).attr("selected","");return this}return this.attr("multiple")?r.toArray().map(n=>Pt(n.children)):r.attr("value")}case"input":case"option":return e?this.attr("value"):this.attr("value",A)}}function Pi(A,e){!A.attribs||!Kt.call(A.attribs,e)||delete A.attribs[e]}function Xr(A){return A?A.trim().split(Vt):[]}function gf(A){const e=Xr(A);for(const t of e)mA(this,r=>{X(r)&&Pi(r,t)});return this}function Ef(A){return this.toArray().some(e=>{const t=X(e)&&e.attribs.class;let r=-1;if(t&&A.length>0)for(;(r=t.indexOf(A,r+1))>-1;){const n=r+A.length;if((r===0||Vt.test(t[r-1]))&&(n===t.length||Vt.test(t[n])))return!0}return!1})}function Ki(A){if(typeof A=="function")return mA(this,(r,n)=>{if(X(r)){const s=r.attribs.class||"";Ki.call([r],A.call(r,n,s))}});if(!A||typeof A!="string")return this;const e=A.split(Vt),t=this.length;for(let r=0;r<t;r++){const n=this[r];if(!X(n))continue;const s=Yr(n,"class",!1);if(s){let a=` ${s} `;for(const u of e){const o=`${u} `;a.includes(` ${o}`)||(a+=o)}gt(n,"class",a.trim())}else gt(n,"class",e.join(" ").trim())}return this}function Vi(A){if(typeof A=="function")return mA(this,(n,s)=>{X(n)&&Vi.call([n],A.call(n,s,n.attribs.class||""))});const e=Xr(A),t=e.length,r=arguments.length===0;return mA(this,n=>{if(X(n))if(r)n.attribs.class="";else{const s=Xr(n.attribs.class);let a=!1;for(let u=0;u<t;u++){const o=s.indexOf(e[u]);o>=0&&(s.splice(o,1),a=!0,u--)}a&&(n.attribs.class=s.join(" "))}})}function Gi(A,e){if(typeof A=="function")return mA(this,(a,u)=>{X(a)&&Gi.call([a],A.call(a,u,a.attribs.class||"",e),e)});if(!A||typeof A!="string")return this;const t=A.split(Vt),r=t.length,n=typeof e=="boolean"?e?1:-1:0,s=this.length;for(let a=0;a<s;a++){const u=this[a];if(!X(u))continue;const o=Xr(u.attribs.class);for(let l=0;l<r;l++){const f=o.indexOf(t[l]);n>=0&&f<0?o.push(t[l]):n<=0&&f>=0&&o.splice(f,1)}u.attribs.class=o.join(" ")}return this}const mf=Object.freeze(Object.defineProperty({__proto__:null,addClass:Ki,attr:cf,data:df,hasClass:Ef,prop:lf,removeAttr:gf,removeClass:Vi,toggleClass:Gi,val:Bf},Symbol.toStringTag,{value:"Module"}));var G;(function(A){A.Attribute="attribute",A.Pseudo="pseudo",A.PseudoElement="pseudo-element",A.Tag="tag",A.Universal="universal",A.Adjacent="adjacent",A.Child="child",A.Descendant="descendant",A.Parent="parent",A.Sibling="sibling",A.ColumnCombinator="column-combinator"})(G||(G={}));var QA;(function(A){A.Any="any",A.Element="element",A.End="end",A.Equals="equals",A.Exists="exists",A.Hyphen="hyphen",A.Not="not",A.Start="start"})(QA||(QA={}));const Yi=/^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/,pf=/\\([\da-f]{1,6}\s?|(\s)|.)/gi,Cf=new Map([[126,QA.Element],[94,QA.Start],[36,QA.End],[42,QA.Any],[33,QA.Not],[124,QA.Hyphen]]),wf=new Set(["has","not","matches","is","where","host","host-context"]);function Gt(A){switch(A.type){case G.Adjacent:case G.Child:case G.Descendant:case G.Parent:case G.Sibling:case G.ColumnCombinator:return!0;default:return!1}}const Tf=new Set(["contains","icontains"]);function bf(A,e,t){const r=parseInt(e,16)-65536;return r!==r||t?e:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,r&1023|56320)}function Yt(A){return A.replace(pf,bf)}function Ns(A){return A===39||A===34}function Xi(A){return A===32||A===9||A===10||A===12||A===13}function Wr(A){const e=[],t=Wi(e,`${A}`,0);if(t<A.length)throw new Error(`Unmatched selector: ${A.slice(t)}`);return e}function Wi(A,e,t){let r=[];function n(d){const C=e.slice(t+d).match(Yi);if(!C)throw new Error(`Expected name, found ${e.slice(t)}`);const[p]=C;return t+=d+p.length,Yt(p)}function s(d){for(t+=d;t<e.length&&Xi(e.charCodeAt(t));)t++}function a(){t+=1;const d=t;let C=1;for(;C>0&&t<e.length;t++)e.charCodeAt(t)===40&&!u(t)?C++:e.charCodeAt(t)===41&&!u(t)&&C--;if(C)throw new Error("Parenthesis not matched");return Yt(e.slice(d,t-1))}function u(d){let C=0;for(;e.charCodeAt(--d)===92;)C++;return(C&1)===1}function o(){if(r.length>0&&Gt(r[r.length-1]))throw new Error("Did not expect successive traversals.")}function l(d){if(r.length>0&&r[r.length-1].type===G.Descendant){r[r.length-1].type=d;return}o(),r.push({type:d})}function f(d,C){r.push({type:G.Attribute,name:d,action:C,value:n(1),namespace:null,ignoreCase:"quirks"})}function h(){if(r.length&&r[r.length-1].type===G.Descendant&&r.pop(),r.length===0)throw new Error("Empty sub-selector");A.push(r)}if(s(0),e.length===t)return t;A:for(;t<e.length;){const d=e.charCodeAt(t);switch(d){case 32:case 9:case 10:case 12:case 13:{(r.length===0||r[0].type!==G.Descendant)&&(o(),r.push({type:G.Descendant})),s(1);break}case 62:{l(G.Child),s(1);break}case 60:{l(G.Parent),s(1);break}case 126:{l(G.Sibling),s(1);break}case 43:{l(G.Adjacent),s(1);break}case 46:{f("class",QA.Element);break}case 35:{f("id",QA.Equals);break}case 91:{s(1);let C,p=null;e.charCodeAt(t)===124?C=n(1):e.startsWith("*|",t)?(p="*",C=n(2)):(C=n(0),e.charCodeAt(t)===124&&e.charCodeAt(t+1)!==61&&(p=C,C=n(1))),s(0);let T=QA.Exists;const U=Cf.get(e.charCodeAt(t));if(U){if(T=U,e.charCodeAt(t+1)!==61)throw new Error("Expected `=`");s(2)}else e.charCodeAt(t)===61&&(T=QA.Equals,s(1));let _="",I=null;if(T!=="exists"){if(Ns(e.charCodeAt(t))){const x=e.charCodeAt(t);let m=t+1;for(;m<e.length&&(e.charCodeAt(m)!==x||u(m));)m+=1;if(e.charCodeAt(m)!==x)throw new Error("Attribute value didn't end");_=Yt(e.slice(t+1,m)),t=m+1}else{const x=t;for(;t<e.length&&(!Xi(e.charCodeAt(t))&&e.charCodeAt(t)!==93||u(t));)t+=1;_=Yt(e.slice(x,t))}s(0);const k=e.charCodeAt(t)|32;k===115?(I=!1,s(1)):k===105&&(I=!0,s(1))}if(e.charCodeAt(t)!==93)throw new Error("Attribute selector didn't terminate");t+=1;const D={type:G.Attribute,name:C,action:T,value:_,namespace:p,ignoreCase:I};r.push(D);break}case 58:{if(e.charCodeAt(t+1)===58){r.push({type:G.PseudoElement,name:n(2).toLowerCase(),data:e.charCodeAt(t)===40?a():null});continue}const C=n(1).toLowerCase();let p=null;if(e.charCodeAt(t)===40)if(wf.has(C)){if(Ns(e.charCodeAt(t+1)))throw new Error(`Pseudo-selector ${C} cannot be quoted`);if(p=[],t=Wi(p,e,t+1),e.charCodeAt(t)!==41)throw new Error(`Missing closing parenthesis in :${C} (${e})`);t+=1}else{if(p=a(),Tf.has(C)){const T=p.charCodeAt(0);T===p.charCodeAt(p.length-1)&&Ns(T)&&(p=p.slice(1,-1))}p=Yt(p)}r.push({type:G.Pseudo,name:C,data:p});break}case 44:{h(),r=[],s(1);break}default:{if(e.startsWith("/*",t)){const T=e.indexOf("*/",t+2);if(T<0)throw new Error("Comment was not terminated");t=T+2,r.length===0&&s(0);break}let C=null,p;if(d===42)t+=1,p="*";else if(d===124){if(p="",e.charCodeAt(t+1)===124){l(G.ColumnCombinator),s(2);break}}else if(Yi.test(e.slice(t)))p=n(0);else break A;e.charCodeAt(t)===124&&e.charCodeAt(t+1)!==124&&(C=p,e.charCodeAt(t+1)===42?(p="*",t+=2):p=n(1)),r.push(p==="*"?{type:G.Universal,namespace:C}:{type:G.Tag,name:p,namespace:C})}}}return h(),t}function Uf(A){return A&&A.__esModule&&Object.prototype.hasOwnProperty.call(A,"default")?A.default:A}var Jr={trueFunc:function(){return!0},falseFunc:function(){return!1}};const Z=Uf(Jr),Ji=new Map([[G.Universal,50],[G.Tag,30],[G.Attribute,1],[G.Pseudo,0]]);function Ss(A){return!Ji.has(A.type)}const Qf=new Map([[QA.Exists,10],[QA.Equals,8],[QA.Not,7],[QA.Start,6],[QA.End,6],[QA.Any,5]]);function Ff(A){const e=A.map(qi);for(let t=1;t<A.length;t++){const r=e[t];if(!(r<0))for(let n=t-1;n>=0&&r<e[n];n--){const s=A[n+1];A[n+1]=A[n],A[n]=s,e[n+1]=e[n],e[n]=r}}}function qi(A){var e,t;let r=(e=Ji.get(A.type))!==null&&e!==void 0?e:-1;return A.type===G.Attribute?(r=(t=Qf.get(A.action))!==null&&t!==void 0?t:4,A.action===QA.Equals&&A.name==="id"&&(r=9),A.ignoreCase&&(r>>=1)):A.type===G.Pseudo&&(A.data?A.name==="has"||A.name==="contains"?r=0:Array.isArray(A.data)?(r=Math.min(...A.data.map(n=>Math.min(...n.map(qi)))),r<0&&(r=0)):r=2:r=3),r}const If=/[-[\]{}()*+?.,\\^$|#\s]/g;function ji(A){return A.replace(If,"\\$&")}const _f=new Set(["accept","accept-charset","align","alink","axis","bgcolor","charset","checked","clear","codetype","color","compact","declare","defer","dir","direction","disabled","enctype","face","frame","hreflang","http-equiv","lang","language","link","media","method","multiple","nohref","noresize","noshade","nowrap","readonly","rel","rev","rules","scope","scrolling","selected","shape","target","text","type","valign","valuetype","vlink"]);function et(A,e){return typeof A.ignoreCase=="boolean"?A.ignoreCase:A.ignoreCase==="quirks"?!!e.quirksMode:!e.xmlMode&&_f.has(A.name)}const yf={equals(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;return et(e,t)?(s=s.toLowerCase(),a=>{const u=r.getAttributeValue(a,n);return u!=null&&u.length===s.length&&u.toLowerCase()===s&&A(a)}):a=>r.getAttributeValue(a,n)===s&&A(a)},hyphen(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=s.length;return et(e,t)?(s=s.toLowerCase(),function(o){const l=r.getAttributeValue(o,n);return l!=null&&(l.length===a||l.charAt(a)==="-")&&l.substr(0,a).toLowerCase()===s&&A(o)}):function(o){const l=r.getAttributeValue(o,n);return l!=null&&(l.length===a||l.charAt(a)==="-")&&l.substr(0,a)===s&&A(o)}},element(A,e,t){const{adapter:r}=t,{name:n,value:s}=e;if(/\s/.test(s))return Z.falseFunc;const a=new RegExp(`(?:^|\\s)${ji(s)}(?:$|\\s)`,et(e,t)?"i":"");return function(o){const l=r.getAttributeValue(o,n);return l!=null&&l.length>=s.length&&a.test(l)&&A(o)}},exists(A,{name:e},{adapter:t}){return r=>t.hasAttrib(r,e)&&A(r)},start(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=s.length;return a===0?Z.falseFunc:et(e,t)?(s=s.toLowerCase(),u=>{const o=r.getAttributeValue(u,n);return o!=null&&o.length>=a&&o.substr(0,a).toLowerCase()===s&&A(u)}):u=>{var o;return!!(!((o=r.getAttributeValue(u,n))===null||o===void 0)&&o.startsWith(s))&&A(u)}},end(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;const a=-s.length;return a===0?Z.falseFunc:et(e,t)?(s=s.toLowerCase(),u=>{var o;return((o=r.getAttributeValue(u,n))===null||o===void 0?void 0:o.substr(a).toLowerCase())===s&&A(u)}):u=>{var o;return!!(!((o=r.getAttributeValue(u,n))===null||o===void 0)&&o.endsWith(s))&&A(u)}},any(A,e,t){const{adapter:r}=t,{name:n,value:s}=e;if(s==="")return Z.falseFunc;if(et(e,t)){const a=new RegExp(ji(s),"i");return function(o){const l=r.getAttributeValue(o,n);return l!=null&&l.length>=s.length&&a.test(l)&&A(o)}}return a=>{var u;return!!(!((u=r.getAttributeValue(a,n))===null||u===void 0)&&u.includes(s))&&A(a)}},not(A,e,t){const{adapter:r}=t,{name:n}=e;let{value:s}=e;return s===""?a=>!!r.getAttributeValue(a,n)&&A(a):et(e,t)?(s=s.toLowerCase(),a=>{const u=r.getAttributeValue(a,n);return(u==null||u.length!==s.length||u.toLowerCase()!==s)&&A(a)}):a=>r.getAttributeValue(a,n)!==s&&A(a)}},Nf=new Set([9,10,12,13,32]),$i=48,Sf=57;function vf(A){if(A=A.trim().toLowerCase(),A==="even")return[2,0];if(A==="odd")return[2,1];let e=0,t=0,r=s(),n=a();if(e<A.length&&A.charAt(e)==="n"&&(e++,t=r*(n??1),u(),e<A.length?(r=s(),u(),n=a()):r=n=0),n===null||e<A.length)throw new Error(`n-th rule couldn't be parsed ('${A}')`);return[t,r*n];function s(){return A.charAt(e)==="-"?(e++,-1):(A.charAt(e)==="+"&&e++,1)}function a(){const o=e;let l=0;for(;e<A.length&&A.charCodeAt(e)>=$i&&A.charCodeAt(e)<=Sf;)l=l*10+(A.charCodeAt(e)-$i),e++;return e===o?null:l}function u(){for(;e<A.length&&Nf.has(A.charCodeAt(e));)e++}}function Lf(A){const e=A[0],t=A[1]-1;if(t<0&&e<=0)return Z.falseFunc;if(e===-1)return s=>s<=t;if(e===0)return s=>s===t;if(e===1)return t<0?Z.trueFunc:s=>s>=t;const r=Math.abs(e),n=(t%r+r)%r;return e>1?s=>s>=t&&s%r===n:s=>s<=t&&s%r===n}function qr(A){return Lf(vf(A))}function jr(A,e){return t=>{const r=e.getParent(t);return r!=null&&e.isTag(r)&&A(t)}}const vs={contains(A,e,{adapter:t}){return function(n){return A(n)&&t.getText(n).includes(e)}},icontains(A,e,{adapter:t}){const r=e.toLowerCase();return function(s){return A(s)&&t.getText(s).toLowerCase().includes(r)}},"nth-child"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=0;l<u.length&&!r(a,u[l]);l++)t.isTag(u[l])&&o++;return n(o)&&A(a)}},"nth-last-child"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=u.length-1;l>=0&&!r(a,u[l]);l--)t.isTag(u[l])&&o++;return n(o)&&A(a)}},"nth-of-type"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=0;l<u.length;l++){const f=u[l];if(r(a,f))break;t.isTag(f)&&t.getName(f)===t.getName(a)&&o++}return n(o)&&A(a)}},"nth-last-of-type"(A,e,{adapter:t,equals:r}){const n=qr(e);return n===Z.falseFunc?Z.falseFunc:n===Z.trueFunc?jr(A,t):function(a){const u=t.getSiblings(a);let o=0;for(let l=u.length-1;l>=0;l--){const f=u[l];if(r(a,f))break;t.isTag(f)&&t.getName(f)===t.getName(a)&&o++}return n(o)&&A(a)}},root(A,e,{adapter:t}){return r=>{const n=t.getParent(r);return(n==null||!t.isTag(n))&&A(r)}},scope(A,e,t,r){const{equals:n}=t;return!r||r.length===0?vs.root(A,e,t):r.length===1?s=>n(r[0],s)&&A(s):s=>r.includes(s)&&A(s)},hover:Ls("isHovered"),visited:Ls("isVisited"),active:Ls("isActive")};function Ls(A){return function(t,r,{adapter:n}){const s=n[A];return typeof s!="function"?Z.falseFunc:function(u){return s(u)&&t(u)}}}const Zi={empty(A,{adapter:e}){return!e.getChildren(A).some(t=>e.isTag(t)||e.getText(t)!=="")},"first-child"(A,{adapter:e,equals:t}){if(e.prevElementSibling)return e.prevElementSibling(A)==null;const r=e.getSiblings(A).find(n=>e.isTag(n));return r!=null&&t(A,r)},"last-child"(A,{adapter:e,equals:t}){const r=e.getSiblings(A);for(let n=r.length-1;n>=0;n--){if(t(A,r[n]))return!0;if(e.isTag(r[n]))break}return!1},"first-of-type"(A,{adapter:e,equals:t}){const r=e.getSiblings(A),n=e.getName(A);for(let s=0;s<r.length;s++){const a=r[s];if(t(A,a))return!0;if(e.isTag(a)&&e.getName(a)===n)break}return!1},"last-of-type"(A,{adapter:e,equals:t}){const r=e.getSiblings(A),n=e.getName(A);for(let s=r.length-1;s>=0;s--){const a=r[s];if(t(A,a))return!0;if(e.isTag(a)&&e.getName(a)===n)break}return!1},"only-of-type"(A,{adapter:e,equals:t}){const r=e.getName(A);return e.getSiblings(A).every(n=>t(A,n)||!e.isTag(n)||e.getName(n)!==r)},"only-child"(A,{adapter:e,equals:t}){return e.getSiblings(A).every(r=>t(A,r)||!e.isTag(r))}};function zi(A,e,t,r){if(t===null){if(A.length>r)throw new Error(`Pseudo-class :${e} requires an argument`)}else if(A.length===r)throw new Error(`Pseudo-class :${e} doesn't have any arguments`)}const xf={"any-link":":is(a, area, link)[href]",link:":any-link:not(:visited)",disabled:`:is(
3
3
  :is(button, input, select, textarea, optgroup, option)[disabled],
4
4
  optgroup[disabled] > option,
5
5
  fieldset[disabled]:not(fieldset[disabled] legend:first-of-type *)
6
- )`,enabled:":not(:disabled)",checked:":is(:is(input[type=radio], input[type=checkbox])[checked], option:selected)",required:":is(input, select, textarea)[required]",optional:":is(input, select, textarea):not([required])",selected:"option:is([selected], select:not([multiple]):not(:has(> option[selected])) > :first-of-type)",checkbox:"[type=checkbox]",file:"[type=file]",password:"[type=password]",radio:"[type=radio]",reset:"[type=reset]",image:"[type=image]",submit:"[type=submit]",parent:":not(:empty)",header:":is(h1, h2, h3, h4, h5, h6)",button:":is(button, input[type=button])",input:":is(input, textarea, select, button)",text:"input:is(:not([type!='']), [type=text])"},zi={};function Hf(A,e){return A===Z.falseFunc?Z.falseFunc:t=>e.isTag(t)&&A(t)}function Au(A,e){const t=e.getSiblings(A);if(t.length<=1)return[];const r=t.indexOf(A);return r<0||r===t.length-1?[]:t.slice(r+1).filter(e.isTag)}function Ls(A){return{xmlMode:!!A.xmlMode,lowerCaseAttributeNames:!!A.lowerCaseAttributeNames,lowerCaseTags:!!A.lowerCaseTags,quirksMode:!!A.quirksMode,cacheResults:!!A.cacheResults,pseudos:A.pseudos,adapter:A.adapter,equals:A.equals}}const xs=(A,e,t,r,n)=>{const s=n(e,Ls(t),r);return s===Z.trueFunc?A:s===Z.falseFunc?Z.falseFunc:a=>s(a)&&A(a)},Hs={is:xs,matches:xs,where:xs,not(A,e,t,r,n){const s=n(e,Ls(t),r);return s===Z.falseFunc?A:s===Z.trueFunc?Z.falseFunc:a=>!s(a)&&A(a)},has(A,e,t,r,n){const{adapter:s}=t,a=Ls(t);a.relativeSelector=!0;const u=e.some(f=>f.some(Ns))?[zi]:void 0,o=n(e,a,u);if(o===Z.falseFunc)return Z.falseFunc;const l=Hf(o,s);if(u&&o!==Z.trueFunc){const{shouldTestNextSiblings:f=!1}=o;return h=>{if(!A(h))return!1;u[0]=h;const d=s.getChildren(h),C=f?[...d,...Au(h,s)]:d;return s.existsOne(l,C)}}return f=>A(f)&&s.existsOne(l,s.getChildren(f))}};function Df(A,e,t,r,n){var s;const{name:a,data:u}=e;if(Array.isArray(u)){if(!(a in Hs))throw new Error(`Unknown pseudo-class :${a}(${u})`);return Hs[a](A,u,t,r,n)}const o=(s=t.pseudos)===null||s===void 0?void 0:s[a],l=typeof o=="string"?o:xf[a];if(typeof l=="string"){if(u!=null)throw new Error(`Pseudo ${a} doesn't have any arguments`);const f=Wr(l);return Hs.is(A,f,t,r,n)}if(typeof o=="function")return Zi(o,a,u,1),f=>o(f,u)&&A(f);if(a in Ss)return Ss[a](A,u,t,r);if(a in $i){const f=$i[a];return Zi(f,a,u,2),h=>f(h,t,u)&&A(h)}throw new Error(`Unknown pseudo-class :${a}`)}function Ds(A,e){const t=e.getParent(A);return t&&e.isTag(t)?t:null}function Of(A,e,t,r,n){const{adapter:s,equals:a}=t;switch(e.type){case G.PseudoElement:throw new Error("Pseudo-elements are not supported by css-select");case G.ColumnCombinator:throw new Error("Column combinators are not yet supported by css-select");case G.Attribute:{if(e.namespace!=null)throw new Error("Namespaced attributes are not yet supported by css-select");return(!t.xmlMode||t.lowerCaseAttributeNames)&&(e.name=e.name.toLowerCase()),yf[e.action](A,e,t)}case G.Pseudo:return Df(A,e,t,r,n);case G.Tag:{if(e.namespace!=null)throw new Error("Namespaced tag names are not yet supported by css-select");let{name:u}=e;return(!t.xmlMode||t.lowerCaseTags)&&(u=u.toLowerCase()),function(l){return s.getName(l)===u&&A(l)}}case G.Descendant:{if(t.cacheResults===!1||typeof WeakSet>"u")return function(l){let f=l;for(;f=Ds(f,s);)if(A(f))return!0;return!1};const u=new WeakSet;return function(l){let f=l;for(;f=Ds(f,s);)if(!u.has(f)){if(s.isTag(f)&&A(f))return!0;u.add(f)}return!1}}case"_flexibleDescendant":return function(o){let l=o;do if(A(l))return!0;while(l=Ds(l,s));return!1};case G.Parent:return function(o){return s.getChildren(o).some(l=>s.isTag(l)&&A(l))};case G.Child:return function(o){const l=s.getParent(o);return l!=null&&s.isTag(l)&&A(l)};case G.Sibling:return function(o){const l=s.getSiblings(o);for(let f=0;f<l.length;f++){const h=l[f];if(a(o,h))break;if(s.isTag(h)&&A(h))return!0}return!1};case G.Adjacent:return s.prevElementSibling?function(o){const l=s.prevElementSibling(o);return l!=null&&A(l)}:function(o){const l=s.getSiblings(o);let f;for(let h=0;h<l.length;h++){const d=l[h];if(a(o,d))break;s.isTag(d)&&(f=d)}return!!f&&A(f)};case G.Universal:{if(e.namespace!=null&&e.namespace!=="*")throw new Error("Namespaced universal selectors are not yet supported by css-select");return A}}}function eu(A){return A.type===G.Pseudo&&(A.name==="scope"||Array.isArray(A.data)&&A.data.some(e=>e.some(eu)))}const Rf={type:G.Descendant},Mf={type:"_flexibleDescendant"},kf={type:G.Pseudo,name:"scope",data:null};function Pf(A,{adapter:e},t){const r=!!(t!=null&&t.every(n=>{const s=e.isTag(n)&&e.getParent(n);return n===zi||s&&e.isTag(s)}));for(const n of A){if(!(n.length>0&&Ns(n[0])&&n[0].type!==G.Descendant))if(r&&!n.some(eu))n.unshift(Rf);else continue;n.unshift(kf)}}function tu(A,e,t){var r;A.forEach(Ff),t=(r=e.context)!==null&&r!==void 0?r:t;const n=Array.isArray(t),s=t&&(Array.isArray(t)?t:[t]);if(e.relativeSelector!==!1)Pf(A,e,s);else if(A.some(o=>o.length>0&&Ns(o[0])))throw new Error("Relative selectors are not allowed when the `relativeSelector` option is disabled");let a=!1;const u=A.map(o=>{if(o.length>=2){const[l,f]=o;l.type!==G.Pseudo||l.name!=="scope"||(n&&f.type===G.Descendant?o[1]=Mf:(f.type===G.Adjacent||f.type===G.Sibling)&&(a=!0))}return Kf(o,e,s)}).reduce(Vf,Z.falseFunc);return u.shouldTestNextSiblings=a,u}function Kf(A,e,t){var r;return A.reduce((n,s)=>n===Z.falseFunc?Z.falseFunc:Of(n,s,e,t,tu),(r=e.rootFunc)!==null&&r!==void 0?r:Z.trueFunc)}function Vf(A,e){return e===Z.falseFunc||A===Z.trueFunc?A:A===Z.falseFunc||e===Z.trueFunc?e:function(r){return A(r)||e(r)}}const ru=(A,e)=>A===e,Gf={adapter:Gr,equals:ru};function Yf(A){var e,t,r,n;const s=A??Gf;return(e=s.adapter)!==null&&e!==void 0||(s.adapter=Gr),(t=s.equals)!==null&&t!==void 0||(s.equals=(n=(r=s.adapter)===null||r===void 0?void 0:r.equals)!==null&&n!==void 0?n:ru),s}function Xf(A){return function(t,r,n){const s=Yf(r);return A(t,s,n)}}const Os=Xf(tu);function nu(A,e,t=!1){return t&&(A=Wf(A,e)),Array.isArray(A)?e.removeSubsets(A):e.getChildren(A)}function Wf(A,e){const t=Array.isArray(A)?A.slice(0):[A],r=t.length;for(let n=0;n<r;n++){const s=Au(t[n],e);t.push(...s)}return t}const Jf=new Set(["first","last","eq","gt","nth","lt","even","odd"]);function $r(A){return A.type!=="pseudo"?!1:Jf.has(A.name)?!0:A.name==="not"&&Array.isArray(A.data)?A.data.some(e=>e.some($r)):!1}function qf(A,e,t){const r=e!=null?parseInt(e,10):NaN;switch(A){case"first":return 1;case"nth":case"eq":return isFinite(r)?r>=0?r+1:1/0:0;case"lt":return isFinite(r)?r>=0?Math.min(r,t):1/0:0;case"gt":return isFinite(r)?1/0:0;case"odd":return 2*t;case"even":return 2*t-1;case"last":case"not":return 1/0}}function jf(A){for(;A.parent;)A=A.parent;return A}function Rs(A){const e=[],t=[];for(const r of A)r.some($r)?e.push(r):t.push(r);return[t,e]}const $f={type:G.Universal,namespace:null},Zf={type:G.Pseudo,name:"scope",data:null};function su(A,e,t={}){return au([A],e,t)}function au(A,e,t={}){if(typeof e=="function")return A.some(e);const[r,n]=Rs(Wr(e));return r.length>0&&A.some(Os(r,t))||n.some(s=>ou(s,A,t).length>0)}function zf(A,e,t,r){const n=typeof t=="string"?parseInt(t,10):NaN;switch(A){case"first":case"lt":return e;case"last":return e.length>0?[e[e.length-1]]:e;case"nth":case"eq":return isFinite(n)&&Math.abs(n)<e.length?[n<0?e[e.length+n]:e[n]]:[];case"gt":return isFinite(n)?e.slice(n+1):[];case"even":return e.filter((s,a)=>a%2===0);case"odd":return e.filter((s,a)=>a%2===1);case"not":{const s=new Set(uu(t,e,r));return e.filter(a=>!s.has(a))}}}function iu(A,e,t={}){return uu(Wr(A),e,t)}function uu(A,e,t){if(e.length===0)return[];const[r,n]=Rs(A);let s;if(r.length){const a=ks(e,r,t);if(n.length===0)return a;a.length&&(s=new Set(a))}for(let a=0;a<n.length&&(s==null?void 0:s.size)!==e.length;a++){const u=n[a];if((s?e.filter(f=>X(f)&&!s.has(f)):e).length===0)break;const l=ou(u,e,t);if(l.length)if(s)l.forEach(f=>s.add(f));else{if(a===n.length-1)return l;s=new Set(l)}}return typeof s<"u"?s.size===e.length?e:e.filter(a=>s.has(a)):[]}function ou(A,e,t){var r;if(A.some(Vt)){const n=(r=t.root)!==null&&r!==void 0?r:jf(e[0]),s={...t,context:e,relativeSelector:!1};return A.push(Zf),Zr(n,A,s,!0,e.length)}return Zr(e,A,t,!1,e.length)}function Ah(A,e,t={},r=1/0){if(typeof A=="function")return cu(e,A);const[n,s]=Rs(Wr(A)),a=s.map(u=>Zr(e,u,t,!0,r));return n.length&&a.push(Ms(e,n,t,r)),a.length===0?[]:a.length===1?a[0]:dt(a.reduce((u,o)=>[...u,...o]))}function Zr(A,e,t,r,n){const s=e.findIndex($r),a=e.slice(0,s),u=e[s],o=e.length-1===s?n:1/0,l=qf(u.name,u.data,o);if(l===0)return[];const h=(a.length===0&&!Array.isArray(A)?kr(A).filter(X):a.length===0?(Array.isArray(A)?A:[A]).filter(X):r||a.some(Vt)?Ms(A,[a],t,l):ks(A,[a],t)).slice(0,l);let d=zf(u.name,h,u.data,t);if(d.length===0||e.length===s+1)return d;const C=e.slice(s+1),p=C.some(Vt);if(p){if(Vt(C[0])){const{type:T}=C[0];(T===G.Sibling||T===G.Adjacent)&&(d=nu(d,Gr,!0)),C.unshift($f)}t={...t,relativeSelector:!1,rootFunc:T=>d.includes(T)}}else t.rootFunc&&t.rootFunc!==Jr.trueFunc&&(t={...t,rootFunc:Jr.trueFunc});return C.some($r)?Zr(d,C,t,!1,n):p?Ms(d,[C],t,n):ks(d,[C],t)}function Ms(A,e,t,r){const n=Os(e,t,A);return cu(A,n,r)}function cu(A,e,t=1/0){const r=nu(A,Gr,e.shouldTestNextSiblings);return Ts(n=>X(n)&&e(n),r,!0,t)}function ks(A,e,t){const r=(Array.isArray(A)?A:[A]).filter(X);if(r.length===0)return r;const n=Os(e,t);return n===Jr.trueFunc?r:r.filter(n)}const eh=/^\s*[+~]/;function th(A){if(!A)return this._make([]);if(typeof A!="string"){const e=be(A)?A.toArray():[A],t=this.toArray();return this._make(e.filter(r=>t.some(n=>Hi(n,r))))}return this._findBySelector(A,Number.POSITIVE_INFINITY)}function rh(A,e){var t;const r=this.toArray(),n=eh.test(A)?r:this.children().toArray(),s={context:r,root:(t=this._root)===null||t===void 0?void 0:t[0],xmlMode:this.options.xmlMode,lowerCaseTags:this.options.lowerCaseTags,lowerCaseAttributeNames:this.options.lowerCaseAttributeNames,pseudos:this.options.pseudos,quirksMode:this.options.quirksMode};return this._make(Ah(A,n,s,e))}function Ps(A){return function(e,...t){return function(r){var n;let s=A(e,this);return r&&(s=Gs(s,r,this.options.xmlMode,(n=this._root)===null||n===void 0?void 0:n[0])),this._make(this.length>1&&s.length>1?t.reduce((a,u)=>u(a),s):s)}}}const Yt=Ps((A,e)=>{let t=[];for(let r=0;r<e.length;r++){const n=A(e[r]);n.length>0&&(t=t.concat(n))}return t}),Ks=Ps((A,e)=>{const t=[];for(let r=0;r<e.length;r++){const n=A(e[r]);n!==null&&t.push(n)}return t});function Vs(A,...e){let t=null;const r=Ps((n,s)=>{const a=[];return EA(s,u=>{for(let o;(o=n(u))&&!(t!=null&&t(o,a.length));u=o)a.push(o)}),a})(A,...e);return function(n,s){t=typeof n=="string"?u=>su(u,n,this.options):n?Xt(n):null;const a=r.call(this,s);return t=null,a}}function gt(A){return A.length>1?Array.from(new Set(A)):A}const nh=Ks(({parent:A})=>A&&!Se(A)?A:null,gt),sh=Yt(A=>{const e=[];for(;A.parent&&!Se(A.parent);)e.push(A.parent),A=A.parent;return e},dt,A=>A.reverse()),ah=Vs(({parent:A})=>A&&!Se(A)?A:null,dt,A=>A.reverse());function ih(A){var e;const t=[];if(!A)return this._make(t);const r={xmlMode:this.options.xmlMode,root:(e=this._root)===null||e===void 0?void 0:e[0]},n=typeof A=="string"?s=>su(s,A,r):Xt(A);return EA(this,s=>{for(s&&!Se(s)&&!X(s)&&(s=s.parent);s&&X(s);){if(n(s,0)){t.includes(s)||t.push(s);break}s=s.parent}}),this._make(t)}const uh=Ks(A=>Cs(A)),oh=Yt(A=>{const e=[];for(;A.next;)A=A.next,X(A)&&e.push(A);return e},gt),ch=Vs(A=>Cs(A),gt),lh=Ks(A=>ws(A)),fh=Yt(A=>{const e=[];for(;A.prev;)A=A.prev,X(A)&&e.push(A);return e},gt),hh=Vs(A=>ws(A),gt),dh=Yt(A=>_i(A).filter(e=>X(e)&&e!==A),dt),Bh=Yt(A=>kr(A).filter(X),gt);function gh(){const A=this.toArray().reduce((e,t)=>IA(t)?e.concat(t.children):e,[]);return this._make(A)}function Eh(A){let e=0;const t=this.length;for(;e<t&&A.call(this[e],e,this[e])!==!1;)++e;return this}function mh(A){let e=[];for(let t=0;t<this.length;t++){const r=this[t],n=A.call(r,t,r);n!=null&&(e=e.concat(n))}return this._make(e)}function Xt(A){return typeof A=="function"?(e,t)=>A.call(e,t,e):be(A)?e=>Array.prototype.includes.call(A,e):function(e){return A===e}}function ph(A){var e;return this._make(Gs(this.toArray(),A,this.options.xmlMode,(e=this._root)===null||e===void 0?void 0:e[0]))}function Gs(A,e,t,r){return typeof e=="string"?iu(e,A,{xmlMode:t,root:r}):A.filter(Xt(e))}function Ch(A){const e=this.toArray();return typeof A=="string"?au(e.filter(X),A,this.options):A?e.some(Xt(A)):!1}function wh(A){let e=this.toArray();if(typeof A=="string"){const t=new Set(iu(A,e,this.options));e=e.filter(r=>!t.has(r))}else{const t=Xt(A);e=e.filter((r,n)=>!t(r,n))}return this._make(e)}function Th(A){return this.filter(typeof A=="string"?`:has(${A})`:(e,t)=>this._make(t).find(A).length>0)}function bh(){return this.length>1?this._make(this[0]):this}function Uh(){return this.length>0?this._make(this[this.length-1]):this}function Qh(A){var e;return A=+A,A===0&&this.length<=1?this:(A<0&&(A=this.length+A),this._make((e=this[A])!==null&&e!==void 0?e:[]))}function Fh(A){return A==null?this.toArray():this[A<0?this.length+A:A]}function Ih(){return Array.prototype.slice.call(this)}function _h(A){let e,t;return A==null?(e=this.parent().children(),t=this[0]):typeof A=="string"?(e=this._make(A),t=this[0]):(e=this,t=be(A)?A[0]:A),Array.prototype.indexOf.call(e,t)}function yh(A,e){return this._make(Array.prototype.slice.call(this,A,e))}function Nh(){var A;return(A=this.prevObject)!==null&&A!==void 0?A:this._make([])}function Sh(A,e){const t=this._make(A,e),r=dt([...this.get(),...t.get()]);return this._make(r)}function vh(A){return this.prevObject?this.add(A?this.prevObject.filter(A):this.prevObject):this}const Lh=Object.freeze(Object.defineProperty({__proto__:null,_findBySelector:rh,add:Sh,addBack:vh,children:Bh,closest:ih,contents:gh,each:Eh,end:Nh,eq:Qh,filter:ph,filterArray:Gs,find:th,first:bh,get:Fh,has:Th,index:_h,is:Ch,last:Uh,map:mh,next:uh,nextAll:oh,nextUntil:ch,not:wh,parent:nh,parents:sh,parentsUntil:ah,prev:lh,prevAll:fh,prevUntil:hh,siblings:dh,slice:yh,toArray:Ih},Symbol.toStringTag,{value:"Module"}));function xh(A){return function(t,r,n,s){if(typeof Buffer<"u"&&Buffer.isBuffer(t)&&(t=t.toString()),typeof t=="string")return A(t,r,n,s);const a=t;if(!Array.isArray(a)&&Se(a))return a;const u=new je([]);return At(a,u),u}}function At(A,e){const t=Array.isArray(A)?A:[A];e?e.children=t:e=null;for(let r=0;r<t.length;r++){const n=t[r];n.parent&&n.parent.children!==t&&$e(n),e?(n.prev=t[r-1]||null,n.next=t[r+1]||null):n.prev=n.next=null,n.parent=e}return e}function Hh(A,e){if(A==null)return[];if(typeof A=="string")return this._parse(A,this.options,!1,null).children.slice(0);if("length"in A){if(A.length===1)return this._makeDomArray(A[0],e);const t=[];for(let r=0;r<A.length;r++){const n=A[r];if(typeof n=="object"){if(n==null)continue;if(!("length"in n)){t.push(e?Mt(n,!0):n);continue}}t.push(...this._makeDomArray(n,e))}return t}return[e?Mt(A,!0):A]}function lu(A){return function(...e){const t=this.length-1;return EA(this,(r,n)=>{if(!IA(r))return;const s=typeof e[0]=="function"?e[0].call(r,n,this._render(r.children)):e,a=this._makeDomArray(s,n<t);A(a,r.children,r)})}}function xe(A,e,t,r,n){var s,a;const u=[e,t,...r],o=e===0?null:A[e-1],l=e+t>=A.length?null:A[e+t];for(let f=0;f<r.length;++f){const h=r[f],d=h.parent;if(d){const p=d.children.indexOf(h);p>-1&&(d.children.splice(p,1),n===d&&e>p&&u[0]--)}h.parent=n,h.prev&&(h.prev.next=(s=h.next)!==null&&s!==void 0?s:null),h.next&&(h.next.prev=(a=h.prev)!==null&&a!==void 0?a:null),h.prev=f===0?o:r[f-1],h.next=f===r.length-1?l:r[f+1]}return o&&(o.next=r[0]),l&&(l.prev=r[r.length-1]),A.splice(...u)}function Dh(A){return(be(A)?A:this._make(A)).append(this),this}function Oh(A){return(be(A)?A:this._make(A)).prepend(this),this}const Rh=lu((A,e,t)=>{xe(e,e.length,0,A,t)}),Mh=lu((A,e,t)=>{xe(e,0,0,A,t)});function fu(A){return function(e){const t=this.length-1,r=this.parents().last();for(let n=0;n<this.length;n++){const s=this[n],a=typeof e=="function"?e.call(s,n,s):typeof e=="string"&&!Qs(e)?r.find(e).clone():e,[u]=this._makeDomArray(a,n<t);if(!u||!IA(u))continue;let o=u,l=0;for(;l<o.children.length;){const f=o.children[l];X(f)?(o=f,l=0):l++}A(s,o,[u])}return this}}const kh=fu((A,e,t)=>{const{parent:r}=A;if(!r)return;const n=r.children,s=n.indexOf(A);At([A],e),xe(n,s,0,t,r)}),Ph=fu((A,e,t)=>{IA(A)&&(At(A.children,e),At(t,A))});function Kh(A){return this.parent(A).not("body").each((e,t)=>{this._make(t).replaceWith(t.children)}),this}function Vh(A){const e=this[0];if(e){const t=this._make(typeof A=="function"?A.call(e,0,e):A).insertBefore(e);let r;for(let s=0;s<t.length;s++)t[s].type==="tag"&&(r=t[s]);let n=0;for(;r&&n<r.children.length;){const s=r.children[n];s.type==="tag"?(r=s,n=0):n++}r&&this._make(r).append(this)}return this}function Gh(...A){const e=this.length-1;return EA(this,(t,r)=>{if(!IA(t)||!t.parent)return;const n=t.parent.children,s=n.indexOf(t);if(s<0)return;const a=typeof A[0]=="function"?A[0].call(t,r,this._render(t.children)):A,u=this._makeDomArray(a,r<e);xe(n,s+1,0,u,t.parent)})}function Yh(A){typeof A=="string"&&(A=this._make(A)),this.remove();const e=[];for(const t of this._makeDomArray(A)){const r=this.clone().toArray(),{parent:n}=t;if(!n)continue;const s=n.children,a=s.indexOf(t);a<0||(xe(s,a+1,0,r,n),e.push(...r))}return this._make(e)}function Xh(...A){const e=this.length-1;return EA(this,(t,r)=>{if(!IA(t)||!t.parent)return;const n=t.parent.children,s=n.indexOf(t);if(s<0)return;const a=typeof A[0]=="function"?A[0].call(t,r,this._render(t.children)):A,u=this._makeDomArray(a,r<e);xe(n,s,0,u,t.parent)})}function Wh(A){const e=this._make(A);this.remove();const t=[];return EA(e,r=>{const n=this.clone().toArray(),{parent:s}=r;if(!s)return;const a=s.children,u=a.indexOf(r);u<0||(xe(a,u,0,n,s),t.push(...n))}),this._make(t)}function Jh(A){const e=A?this.filter(A):this;return EA(e,t=>{$e(t),t.prev=t.next=t.parent=null}),this}function qh(A){return EA(this,(e,t)=>{const{parent:r}=e;if(!r)return;const n=r.children,s=typeof A=="function"?A.call(e,t,e):A,a=this._makeDomArray(s);At(a,null);const u=n.indexOf(e);xe(n,u,1,a,r),a.includes(e)||(e.parent=e.prev=e.next=null)})}function jh(){return EA(this,A=>{if(IA(A)){for(const e of A.children)e.next=e.prev=e.parent=null;A.children.length=0}})}function $h(A){if(A===void 0){const e=this[0];return!e||!IA(e)?null:this._render(e.children)}return EA(this,e=>{if(!IA(e))return;for(const r of e.children)r.next=r.prev=r.parent=null;const t=be(A)?A.toArray():this._parse(`${A}`,this.options,!1,e).children;At(t,e)})}function Zh(){return this._render(this)}function zh(A){return A===void 0?kt(this):typeof A=="function"?EA(this,(e,t)=>this._make(e).text(A.call(e,t,kt([e])))):EA(this,e=>{if(!IA(e))return;for(const r of e.children)r.next=r.prev=r.parent=null;const t=new Rt(`${A}`);At(t,e)})}function Ad(){const A=Array.prototype.map.call(this.get(),t=>Mt(t,!0)),e=new je(A);for(const t of A)t.parent=e;return this._make(A)}const ed=Object.freeze(Object.defineProperty({__proto__:null,_makeDomArray:Hh,after:Gh,append:Rh,appendTo:Dh,before:Xh,clone:Ad,empty:jh,html:$h,insertAfter:Yh,insertBefore:Wh,prepend:Mh,prependTo:Oh,remove:Jh,replaceWith:qh,text:zh,toString:Zh,unwrap:Kh,wrap:kh,wrapAll:Vh,wrapInner:Ph},Symbol.toStringTag,{value:"Module"}));function td(A,e){if(A!=null&&e!=null||typeof A=="object"&&!Array.isArray(A))return EA(this,(t,r)=>{X(t)&&hu(t,A,e,r)});if(this.length!==0)return du(this[0],A)}function hu(A,e,t,r){if(typeof e=="string"){const n=du(A),s=typeof t=="function"?t.call(A,r,n[e]):t;s===""?delete n[e]:s!=null&&(n[e]=s),A.attribs.style=rd(n)}else if(typeof e=="object"){const n=Object.keys(e);for(let s=0;s<n.length;s++){const a=n[s];hu(A,a,e[a],s)}}}function du(A,e){if(!A||!X(A))return;const t=nd(A.attribs.style);if(typeof e=="string")return t[e];if(Array.isArray(e)){const r={};for(const n of e)t[n]!=null&&(r[n]=t[n]);return r}return t}function rd(A){return Object.keys(A).reduce((e,t)=>`${e}${e?" ":""}${t}: ${A[t]};`,"")}function nd(A){if(A=(A||"").trim(),!A)return{};const e={};let t;for(const r of A.split(";")){const n=r.indexOf(":");if(n<1||n===r.length-1){const s=r.trimEnd();s.length>0&&t!==void 0&&(e[t]+=`;${s}`)}else t=r.slice(0,n).trim(),e[t]=r.slice(n+1).trim()}return e}const sd=Object.freeze(Object.defineProperty({__proto__:null,css:td},Symbol.toStringTag,{value:"Module"})),Bu="input,select,textarea,keygen",ad=/%20/g,gu=/\r?\n/g;function id(){return this.serializeArray().map(t=>`${encodeURIComponent(t.name)}=${encodeURIComponent(t.value)}`).join("&").replace(ad,"+")}function ud(){return this.map((A,e)=>{const t=this._make(e);return X(e)&&e.name==="form"?t.find(Bu).toArray():t.filter(Bu).toArray()}).filter('[name!=""]:enabled:not(:submit, :button, :image, :reset, :file):matches([checked], :not(:checkbox, :radio))').map((A,e)=>{var t;const r=this._make(e),n=r.attr("name"),s=(t=r.val())!==null&&t!==void 0?t:"";return Array.isArray(s)?s.map(a=>({name:n,value:a.replace(gu,`\r
7
- `)})):{name:n,value:s.replace(gu,`\r
8
- `)}}).toArray()}const od=Object.freeze(Object.defineProperty({__proto__:null,serialize:id,serializeArray:ud},Symbol.toStringTag,{value:"Module"}));function cd(A){var e;return typeof A=="string"?{selector:A,value:"textContent"}:{selector:A.selector,value:(e=A.value)!==null&&e!==void 0?e:"textContent"}}function ld(A){const e={};for(const t in A){const r=A[t],n=Array.isArray(r),{selector:s,value:a}=cd(n?r[0]:r),u=typeof a=="function"?a:typeof a=="string"?o=>this._make(o).prop(a):o=>this._make(o).extract(a);if(n)e[t]=this._findBySelector(s,Number.POSITIVE_INFINITY).map((o,l)=>u(l,t,e)).get();else{const o=this._findBySelector(s,1);e[t]=o.length>0?u(o[0],t,e):void 0}}return e}const fd=Object.freeze(Object.defineProperty({__proto__:null,extract:ld},Symbol.toStringTag,{value:"Module"}));class Wt{constructor(e,t,r){if(this.length=0,this.options=r,this._root=t,e){for(let n=0;n<e.length;n++)this[n]=e[n];this.length=e.length}}}Wt.prototype.cheerio="[cheerio object]",Wt.prototype.splice=Array.prototype.splice,Wt.prototype[Symbol.iterator]=Array.prototype[Symbol.iterator],Object.assign(Wt.prototype,mf,Lh,ed,sd,od,fd);function hd(A,e){return function t(r,n,s=!0){if(r==null)throw new Error("cheerio.load() expects a string");const a=Us(n),u=A(r,a,s,null);class o extends Wt{_make(h,d){const C=l(h,d);return C.prevObject=this,C}_parse(h,d,C,p){return A(h,d,C,p)}_render(h){return e(h,this.options)}}function l(f,h,d=u,C){if(f&&be(f))return f;const p=Us(C,a),T=typeof d=="string"?[A(d,p,!1,null)]:"length"in d?d:[d],U=be(T)?T:new o(T,null,p);if(U._root=U,!f)return new o(void 0,U,p);const _=typeof f=="string"&&Qs(f)?A(f,p,!1,null).children:dd(f)?[f]:Array.isArray(f)?f:void 0,Q=new o(_,U,p);if(_)return Q;if(typeof f!="string")throw new TypeError("Unexpected type of selector");let D=f;const k=h?typeof h=="string"?Qs(h)?new o([A(h,p,!1,null)],U,p):(D=`${h} ${D}`,U):be(h)?h:new o(Array.isArray(h)?h:[h],U,p):U;return k?k.find(D):Q}return Object.assign(l,sf,{load:t,_root:u,_options:a,fn:o.prototype,prototype:o.prototype}),l}}function dd(A){return!!A.name||A.type==="root"||A.type==="text"||A.type==="comment"}const Bd=new Set([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]),hA="�";var B;(function(A){A[A.EOF=-1]="EOF",A[A.NULL=0]="NULL",A[A.TABULATION=9]="TABULATION",A[A.CARRIAGE_RETURN=13]="CARRIAGE_RETURN",A[A.LINE_FEED=10]="LINE_FEED",A[A.FORM_FEED=12]="FORM_FEED",A[A.SPACE=32]="SPACE",A[A.EXCLAMATION_MARK=33]="EXCLAMATION_MARK",A[A.QUOTATION_MARK=34]="QUOTATION_MARK",A[A.AMPERSAND=38]="AMPERSAND",A[A.APOSTROPHE=39]="APOSTROPHE",A[A.HYPHEN_MINUS=45]="HYPHEN_MINUS",A[A.SOLIDUS=47]="SOLIDUS",A[A.DIGIT_0=48]="DIGIT_0",A[A.DIGIT_9=57]="DIGIT_9",A[A.SEMICOLON=59]="SEMICOLON",A[A.LESS_THAN_SIGN=60]="LESS_THAN_SIGN",A[A.EQUALS_SIGN=61]="EQUALS_SIGN",A[A.GREATER_THAN_SIGN=62]="GREATER_THAN_SIGN",A[A.QUESTION_MARK=63]="QUESTION_MARK",A[A.LATIN_CAPITAL_A=65]="LATIN_CAPITAL_A",A[A.LATIN_CAPITAL_Z=90]="LATIN_CAPITAL_Z",A[A.RIGHT_SQUARE_BRACKET=93]="RIGHT_SQUARE_BRACKET",A[A.GRAVE_ACCENT=96]="GRAVE_ACCENT",A[A.LATIN_SMALL_A=97]="LATIN_SMALL_A",A[A.LATIN_SMALL_Z=122]="LATIN_SMALL_Z"})(B||(B={}));const YA={DASH_DASH:"--",CDATA_START:"[CDATA[",DOCTYPE:"doctype",SCRIPT:"script",PUBLIC:"public",SYSTEM:"system"};function Eu(A){return A>=55296&&A<=57343}function gd(A){return A>=56320&&A<=57343}function Ed(A,e){return(A-55296)*1024+9216+e}function mu(A){return A!==32&&A!==10&&A!==13&&A!==9&&A!==12&&A>=1&&A<=31||A>=127&&A<=159}function pu(A){return A>=64976&&A<=65007||Bd.has(A)}var b;(function(A){A.controlCharacterInInputStream="control-character-in-input-stream",A.noncharacterInInputStream="noncharacter-in-input-stream",A.surrogateInInputStream="surrogate-in-input-stream",A.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",A.endTagWithAttributes="end-tag-with-attributes",A.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",A.unexpectedSolidusInTag="unexpected-solidus-in-tag",A.unexpectedNullCharacter="unexpected-null-character",A.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",A.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",A.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",A.missingEndTagName="missing-end-tag-name",A.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",A.unknownNamedCharacterReference="unknown-named-character-reference",A.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",A.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",A.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",A.eofBeforeTagName="eof-before-tag-name",A.eofInTag="eof-in-tag",A.missingAttributeValue="missing-attribute-value",A.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",A.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",A.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",A.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",A.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",A.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",A.missingDoctypePublicIdentifier="missing-doctype-public-identifier",A.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",A.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",A.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",A.cdataInHtmlContent="cdata-in-html-content",A.incorrectlyOpenedComment="incorrectly-opened-comment",A.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",A.eofInDoctype="eof-in-doctype",A.nestedComment="nested-comment",A.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",A.eofInComment="eof-in-comment",A.incorrectlyClosedComment="incorrectly-closed-comment",A.eofInCdata="eof-in-cdata",A.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",A.nullCharacterReference="null-character-reference",A.surrogateCharacterReference="surrogate-character-reference",A.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",A.controlCharacterReference="control-character-reference",A.noncharacterCharacterReference="noncharacter-character-reference",A.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",A.missingDoctypeName="missing-doctype-name",A.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",A.duplicateAttribute="duplicate-attribute",A.nonConformingDoctype="non-conforming-doctype",A.missingDoctype="missing-doctype",A.misplacedDoctype="misplaced-doctype",A.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",A.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",A.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",A.openElementsLeftAfterEof="open-elements-left-after-eof",A.abandonedHeadElementChild="abandoned-head-element-child",A.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",A.nestedNoscriptInHead="nested-noscript-in-head",A.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(b||(b={}));const md=65536;class pd{constructor(e){this.handler=e,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=md,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(e,t){const{line:r,col:n,offset:s}=this,a=n+t,u=s+t;return{code:e,startLine:r,endLine:r,startCol:a,endCol:a,startOffset:u,endOffset:u}}_err(e){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(e,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(e){if(this.pos!==this.html.length-1){const t=this.html.charCodeAt(this.pos+1);if(gd(t))return this.pos++,this._addGap(),Ed(e,t)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,B.EOF;return this._err(b.surrogateInInputStream),e}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(e,t){this.html.length>0?this.html+=e:this.html=e,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.endOfChunkHit=!1}startsWith(e,t){if(this.pos+e.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(t)return this.html.startsWith(e,this.pos);for(let r=0;r<e.length;r++)if((this.html.charCodeAt(this.pos+r)|32)!==e.charCodeAt(r))return!1;return!0}peek(e){const t=this.pos+e;if(t>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,B.EOF;const r=this.html.charCodeAt(t);return r===B.CARRIAGE_RETURN?B.LINE_FEED:r}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,B.EOF;let e=this.html.charCodeAt(this.pos);return e===B.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,B.LINE_FEED):e===B.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,Eu(e)&&(e=this._processSurrogate(e)),this.handler.onParseError===null||e>31&&e<127||e===B.LINE_FEED||e===B.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){mu(e)?this._err(b.controlCharacterInInputStream):pu(e)&&this._err(b.noncharacterInInputStream)}retreat(e){for(this.pos-=e;this.pos<this.lastGapPos;)this.lastGapPos=this.gapStack.pop(),this.pos--;this.isEol=!1}}var tA;(function(A){A[A.CHARACTER=0]="CHARACTER",A[A.NULL_CHARACTER=1]="NULL_CHARACTER",A[A.WHITESPACE_CHARACTER=2]="WHITESPACE_CHARACTER",A[A.START_TAG=3]="START_TAG",A[A.END_TAG=4]="END_TAG",A[A.COMMENT=5]="COMMENT",A[A.DOCTYPE=6]="DOCTYPE",A[A.EOF=7]="EOF",A[A.HIBERNATION=8]="HIBERNATION"})(tA||(tA={}));function Cu(A,e){for(let t=A.attrs.length-1;t>=0;t--)if(A.attrs[t].name===e)return A.attrs[t].value;return null}var F;(function(A){A.HTML="http://www.w3.org/1999/xhtml",A.MATHML="http://www.w3.org/1998/Math/MathML",A.SVG="http://www.w3.org/2000/svg",A.XLINK="http://www.w3.org/1999/xlink",A.XML="http://www.w3.org/XML/1998/namespace",A.XMLNS="http://www.w3.org/2000/xmlns/"})(F||(F={}));var et;(function(A){A.TYPE="type",A.ACTION="action",A.ENCODING="encoding",A.PROMPT="prompt",A.NAME="name",A.COLOR="color",A.FACE="face",A.SIZE="size"})(et||(et={}));var ZA;(function(A){A.NO_QUIRKS="no-quirks",A.QUIRKS="quirks",A.LIMITED_QUIRKS="limited-quirks"})(ZA||(ZA={}));var w;(function(A){A.A="a",A.ADDRESS="address",A.ANNOTATION_XML="annotation-xml",A.APPLET="applet",A.AREA="area",A.ARTICLE="article",A.ASIDE="aside",A.B="b",A.BASE="base",A.BASEFONT="basefont",A.BGSOUND="bgsound",A.BIG="big",A.BLOCKQUOTE="blockquote",A.BODY="body",A.BR="br",A.BUTTON="button",A.CAPTION="caption",A.CENTER="center",A.CODE="code",A.COL="col",A.COLGROUP="colgroup",A.DD="dd",A.DESC="desc",A.DETAILS="details",A.DIALOG="dialog",A.DIR="dir",A.DIV="div",A.DL="dl",A.DT="dt",A.EM="em",A.EMBED="embed",A.FIELDSET="fieldset",A.FIGCAPTION="figcaption",A.FIGURE="figure",A.FONT="font",A.FOOTER="footer",A.FOREIGN_OBJECT="foreignObject",A.FORM="form",A.FRAME="frame",A.FRAMESET="frameset",A.H1="h1",A.H2="h2",A.H3="h3",A.H4="h4",A.H5="h5",A.H6="h6",A.HEAD="head",A.HEADER="header",A.HGROUP="hgroup",A.HR="hr",A.HTML="html",A.I="i",A.IMG="img",A.IMAGE="image",A.INPUT="input",A.IFRAME="iframe",A.KEYGEN="keygen",A.LABEL="label",A.LI="li",A.LINK="link",A.LISTING="listing",A.MAIN="main",A.MALIGNMARK="malignmark",A.MARQUEE="marquee",A.MATH="math",A.MENU="menu",A.META="meta",A.MGLYPH="mglyph",A.MI="mi",A.MO="mo",A.MN="mn",A.MS="ms",A.MTEXT="mtext",A.NAV="nav",A.NOBR="nobr",A.NOFRAMES="noframes",A.NOEMBED="noembed",A.NOSCRIPT="noscript",A.OBJECT="object",A.OL="ol",A.OPTGROUP="optgroup",A.OPTION="option",A.P="p",A.PARAM="param",A.PLAINTEXT="plaintext",A.PRE="pre",A.RB="rb",A.RP="rp",A.RT="rt",A.RTC="rtc",A.RUBY="ruby",A.S="s",A.SCRIPT="script",A.SEARCH="search",A.SECTION="section",A.SELECT="select",A.SOURCE="source",A.SMALL="small",A.SPAN="span",A.STRIKE="strike",A.STRONG="strong",A.STYLE="style",A.SUB="sub",A.SUMMARY="summary",A.SUP="sup",A.TABLE="table",A.TBODY="tbody",A.TEMPLATE="template",A.TEXTAREA="textarea",A.TFOOT="tfoot",A.TD="td",A.TH="th",A.THEAD="thead",A.TITLE="title",A.TR="tr",A.TRACK="track",A.TT="tt",A.U="u",A.UL="ul",A.SVG="svg",A.VAR="var",A.WBR="wbr",A.XMP="xmp"})(w||(w={}));var i;(function(A){A[A.UNKNOWN=0]="UNKNOWN",A[A.A=1]="A",A[A.ADDRESS=2]="ADDRESS",A[A.ANNOTATION_XML=3]="ANNOTATION_XML",A[A.APPLET=4]="APPLET",A[A.AREA=5]="AREA",A[A.ARTICLE=6]="ARTICLE",A[A.ASIDE=7]="ASIDE",A[A.B=8]="B",A[A.BASE=9]="BASE",A[A.BASEFONT=10]="BASEFONT",A[A.BGSOUND=11]="BGSOUND",A[A.BIG=12]="BIG",A[A.BLOCKQUOTE=13]="BLOCKQUOTE",A[A.BODY=14]="BODY",A[A.BR=15]="BR",A[A.BUTTON=16]="BUTTON",A[A.CAPTION=17]="CAPTION",A[A.CENTER=18]="CENTER",A[A.CODE=19]="CODE",A[A.COL=20]="COL",A[A.COLGROUP=21]="COLGROUP",A[A.DD=22]="DD",A[A.DESC=23]="DESC",A[A.DETAILS=24]="DETAILS",A[A.DIALOG=25]="DIALOG",A[A.DIR=26]="DIR",A[A.DIV=27]="DIV",A[A.DL=28]="DL",A[A.DT=29]="DT",A[A.EM=30]="EM",A[A.EMBED=31]="EMBED",A[A.FIELDSET=32]="FIELDSET",A[A.FIGCAPTION=33]="FIGCAPTION",A[A.FIGURE=34]="FIGURE",A[A.FONT=35]="FONT",A[A.FOOTER=36]="FOOTER",A[A.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",A[A.FORM=38]="FORM",A[A.FRAME=39]="FRAME",A[A.FRAMESET=40]="FRAMESET",A[A.H1=41]="H1",A[A.H2=42]="H2",A[A.H3=43]="H3",A[A.H4=44]="H4",A[A.H5=45]="H5",A[A.H6=46]="H6",A[A.HEAD=47]="HEAD",A[A.HEADER=48]="HEADER",A[A.HGROUP=49]="HGROUP",A[A.HR=50]="HR",A[A.HTML=51]="HTML",A[A.I=52]="I",A[A.IMG=53]="IMG",A[A.IMAGE=54]="IMAGE",A[A.INPUT=55]="INPUT",A[A.IFRAME=56]="IFRAME",A[A.KEYGEN=57]="KEYGEN",A[A.LABEL=58]="LABEL",A[A.LI=59]="LI",A[A.LINK=60]="LINK",A[A.LISTING=61]="LISTING",A[A.MAIN=62]="MAIN",A[A.MALIGNMARK=63]="MALIGNMARK",A[A.MARQUEE=64]="MARQUEE",A[A.MATH=65]="MATH",A[A.MENU=66]="MENU",A[A.META=67]="META",A[A.MGLYPH=68]="MGLYPH",A[A.MI=69]="MI",A[A.MO=70]="MO",A[A.MN=71]="MN",A[A.MS=72]="MS",A[A.MTEXT=73]="MTEXT",A[A.NAV=74]="NAV",A[A.NOBR=75]="NOBR",A[A.NOFRAMES=76]="NOFRAMES",A[A.NOEMBED=77]="NOEMBED",A[A.NOSCRIPT=78]="NOSCRIPT",A[A.OBJECT=79]="OBJECT",A[A.OL=80]="OL",A[A.OPTGROUP=81]="OPTGROUP",A[A.OPTION=82]="OPTION",A[A.P=83]="P",A[A.PARAM=84]="PARAM",A[A.PLAINTEXT=85]="PLAINTEXT",A[A.PRE=86]="PRE",A[A.RB=87]="RB",A[A.RP=88]="RP",A[A.RT=89]="RT",A[A.RTC=90]="RTC",A[A.RUBY=91]="RUBY",A[A.S=92]="S",A[A.SCRIPT=93]="SCRIPT",A[A.SEARCH=94]="SEARCH",A[A.SECTION=95]="SECTION",A[A.SELECT=96]="SELECT",A[A.SOURCE=97]="SOURCE",A[A.SMALL=98]="SMALL",A[A.SPAN=99]="SPAN",A[A.STRIKE=100]="STRIKE",A[A.STRONG=101]="STRONG",A[A.STYLE=102]="STYLE",A[A.SUB=103]="SUB",A[A.SUMMARY=104]="SUMMARY",A[A.SUP=105]="SUP",A[A.TABLE=106]="TABLE",A[A.TBODY=107]="TBODY",A[A.TEMPLATE=108]="TEMPLATE",A[A.TEXTAREA=109]="TEXTAREA",A[A.TFOOT=110]="TFOOT",A[A.TD=111]="TD",A[A.TH=112]="TH",A[A.THEAD=113]="THEAD",A[A.TITLE=114]="TITLE",A[A.TR=115]="TR",A[A.TRACK=116]="TRACK",A[A.TT=117]="TT",A[A.U=118]="U",A[A.UL=119]="UL",A[A.SVG=120]="SVG",A[A.VAR=121]="VAR",A[A.WBR=122]="WBR",A[A.XMP=123]="XMP"})(i||(i={}));const Cd=new Map([[w.A,i.A],[w.ADDRESS,i.ADDRESS],[w.ANNOTATION_XML,i.ANNOTATION_XML],[w.APPLET,i.APPLET],[w.AREA,i.AREA],[w.ARTICLE,i.ARTICLE],[w.ASIDE,i.ASIDE],[w.B,i.B],[w.BASE,i.BASE],[w.BASEFONT,i.BASEFONT],[w.BGSOUND,i.BGSOUND],[w.BIG,i.BIG],[w.BLOCKQUOTE,i.BLOCKQUOTE],[w.BODY,i.BODY],[w.BR,i.BR],[w.BUTTON,i.BUTTON],[w.CAPTION,i.CAPTION],[w.CENTER,i.CENTER],[w.CODE,i.CODE],[w.COL,i.COL],[w.COLGROUP,i.COLGROUP],[w.DD,i.DD],[w.DESC,i.DESC],[w.DETAILS,i.DETAILS],[w.DIALOG,i.DIALOG],[w.DIR,i.DIR],[w.DIV,i.DIV],[w.DL,i.DL],[w.DT,i.DT],[w.EM,i.EM],[w.EMBED,i.EMBED],[w.FIELDSET,i.FIELDSET],[w.FIGCAPTION,i.FIGCAPTION],[w.FIGURE,i.FIGURE],[w.FONT,i.FONT],[w.FOOTER,i.FOOTER],[w.FOREIGN_OBJECT,i.FOREIGN_OBJECT],[w.FORM,i.FORM],[w.FRAME,i.FRAME],[w.FRAMESET,i.FRAMESET],[w.H1,i.H1],[w.H2,i.H2],[w.H3,i.H3],[w.H4,i.H4],[w.H5,i.H5],[w.H6,i.H6],[w.HEAD,i.HEAD],[w.HEADER,i.HEADER],[w.HGROUP,i.HGROUP],[w.HR,i.HR],[w.HTML,i.HTML],[w.I,i.I],[w.IMG,i.IMG],[w.IMAGE,i.IMAGE],[w.INPUT,i.INPUT],[w.IFRAME,i.IFRAME],[w.KEYGEN,i.KEYGEN],[w.LABEL,i.LABEL],[w.LI,i.LI],[w.LINK,i.LINK],[w.LISTING,i.LISTING],[w.MAIN,i.MAIN],[w.MALIGNMARK,i.MALIGNMARK],[w.MARQUEE,i.MARQUEE],[w.MATH,i.MATH],[w.MENU,i.MENU],[w.META,i.META],[w.MGLYPH,i.MGLYPH],[w.MI,i.MI],[w.MO,i.MO],[w.MN,i.MN],[w.MS,i.MS],[w.MTEXT,i.MTEXT],[w.NAV,i.NAV],[w.NOBR,i.NOBR],[w.NOFRAMES,i.NOFRAMES],[w.NOEMBED,i.NOEMBED],[w.NOSCRIPT,i.NOSCRIPT],[w.OBJECT,i.OBJECT],[w.OL,i.OL],[w.OPTGROUP,i.OPTGROUP],[w.OPTION,i.OPTION],[w.P,i.P],[w.PARAM,i.PARAM],[w.PLAINTEXT,i.PLAINTEXT],[w.PRE,i.PRE],[w.RB,i.RB],[w.RP,i.RP],[w.RT,i.RT],[w.RTC,i.RTC],[w.RUBY,i.RUBY],[w.S,i.S],[w.SCRIPT,i.SCRIPT],[w.SEARCH,i.SEARCH],[w.SECTION,i.SECTION],[w.SELECT,i.SELECT],[w.SOURCE,i.SOURCE],[w.SMALL,i.SMALL],[w.SPAN,i.SPAN],[w.STRIKE,i.STRIKE],[w.STRONG,i.STRONG],[w.STYLE,i.STYLE],[w.SUB,i.SUB],[w.SUMMARY,i.SUMMARY],[w.SUP,i.SUP],[w.TABLE,i.TABLE],[w.TBODY,i.TBODY],[w.TEMPLATE,i.TEMPLATE],[w.TEXTAREA,i.TEXTAREA],[w.TFOOT,i.TFOOT],[w.TD,i.TD],[w.TH,i.TH],[w.THEAD,i.THEAD],[w.TITLE,i.TITLE],[w.TR,i.TR],[w.TRACK,i.TRACK],[w.TT,i.TT],[w.U,i.U],[w.UL,i.UL],[w.SVG,i.SVG],[w.VAR,i.VAR],[w.WBR,i.WBR],[w.XMP,i.XMP]]);function zr(A){var e;return(e=Cd.get(A))!==null&&e!==void 0?e:i.UNKNOWN}const N=i,wd={[F.HTML]:new Set([N.ADDRESS,N.APPLET,N.AREA,N.ARTICLE,N.ASIDE,N.BASE,N.BASEFONT,N.BGSOUND,N.BLOCKQUOTE,N.BODY,N.BR,N.BUTTON,N.CAPTION,N.CENTER,N.COL,N.COLGROUP,N.DD,N.DETAILS,N.DIR,N.DIV,N.DL,N.DT,N.EMBED,N.FIELDSET,N.FIGCAPTION,N.FIGURE,N.FOOTER,N.FORM,N.FRAME,N.FRAMESET,N.H1,N.H2,N.H3,N.H4,N.H5,N.H6,N.HEAD,N.HEADER,N.HGROUP,N.HR,N.HTML,N.IFRAME,N.IMG,N.INPUT,N.LI,N.LINK,N.LISTING,N.MAIN,N.MARQUEE,N.MENU,N.META,N.NAV,N.NOEMBED,N.NOFRAMES,N.NOSCRIPT,N.OBJECT,N.OL,N.P,N.PARAM,N.PLAINTEXT,N.PRE,N.SCRIPT,N.SECTION,N.SELECT,N.SOURCE,N.STYLE,N.SUMMARY,N.TABLE,N.TBODY,N.TD,N.TEMPLATE,N.TEXTAREA,N.TFOOT,N.TH,N.THEAD,N.TITLE,N.TR,N.TRACK,N.UL,N.WBR,N.XMP]),[F.MATHML]:new Set([N.MI,N.MO,N.MN,N.MS,N.MTEXT,N.ANNOTATION_XML]),[F.SVG]:new Set([N.TITLE,N.FOREIGN_OBJECT,N.DESC]),[F.XLINK]:new Set,[F.XML]:new Set,[F.XMLNS]:new Set},Ys=new Set([N.H1,N.H2,N.H3,N.H4,N.H5,N.H6]),Td=new Set([w.STYLE,w.SCRIPT,w.XMP,w.IFRAME,w.NOEMBED,w.NOFRAMES,w.PLAINTEXT]);function bd(A,e){return Td.has(A)||e&&A===w.NOSCRIPT}var g;(function(A){A[A.DATA=0]="DATA",A[A.RCDATA=1]="RCDATA",A[A.RAWTEXT=2]="RAWTEXT",A[A.SCRIPT_DATA=3]="SCRIPT_DATA",A[A.PLAINTEXT=4]="PLAINTEXT",A[A.TAG_OPEN=5]="TAG_OPEN",A[A.END_TAG_OPEN=6]="END_TAG_OPEN",A[A.TAG_NAME=7]="TAG_NAME",A[A.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",A[A.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",A[A.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",A[A.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",A[A.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",A[A.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",A[A.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",A[A.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",A[A.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",A[A.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",A[A.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",A[A.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",A[A.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",A[A.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",A[A.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",A[A.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",A[A.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",A[A.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",A[A.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",A[A.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",A[A.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",A[A.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",A[A.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",A[A.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",A[A.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",A[A.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",A[A.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",A[A.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",A[A.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",A[A.BOGUS_COMMENT=40]="BOGUS_COMMENT",A[A.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",A[A.COMMENT_START=42]="COMMENT_START",A[A.COMMENT_START_DASH=43]="COMMENT_START_DASH",A[A.COMMENT=44]="COMMENT",A[A.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",A[A.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",A[A.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",A[A.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",A[A.COMMENT_END_DASH=49]="COMMENT_END_DASH",A[A.COMMENT_END=50]="COMMENT_END",A[A.COMMENT_END_BANG=51]="COMMENT_END_BANG",A[A.DOCTYPE=52]="DOCTYPE",A[A.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",A[A.DOCTYPE_NAME=54]="DOCTYPE_NAME",A[A.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",A[A.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",A[A.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",A[A.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",A[A.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",A[A.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",A[A.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",A[A.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",A[A.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",A[A.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",A[A.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",A[A.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",A[A.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",A[A.CDATA_SECTION=68]="CDATA_SECTION",A[A.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",A[A.CDATA_SECTION_END=70]="CDATA_SECTION_END",A[A.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",A[A.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(g||(g={}));const XA={DATA:g.DATA,RCDATA:g.RCDATA,RAWTEXT:g.RAWTEXT,SCRIPT_DATA:g.SCRIPT_DATA,PLAINTEXT:g.PLAINTEXT,CDATA_SECTION:g.CDATA_SECTION};function Ud(A){return A>=B.DIGIT_0&&A<=B.DIGIT_9}function Jt(A){return A>=B.LATIN_CAPITAL_A&&A<=B.LATIN_CAPITAL_Z}function Qd(A){return A>=B.LATIN_SMALL_A&&A<=B.LATIN_SMALL_Z}function He(A){return Qd(A)||Jt(A)}function wu(A){return He(A)||Ud(A)}function An(A){return A+32}function Tu(A){return A===B.SPACE||A===B.LINE_FEED||A===B.TABULATION||A===B.FORM_FEED}function bu(A){return Tu(A)||A===B.SOLIDUS||A===B.GREATER_THAN_SIGN}function Fd(A){return A===B.NULL?b.nullCharacterReference:A>1114111?b.characterReferenceOutsideUnicodeRange:Eu(A)?b.surrogateCharacterReference:pu(A)?b.noncharacterCharacterReference:mu(A)||A===B.CARRIAGE_RETURN?b.controlCharacterReference:null}let Id=class{constructor(e,t){this.options=e,this.handler=t,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=g.DATA,this.returnState=g.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new pd(t),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new ps(Bs,(r,n)=>{this.preprocessor.pos=this.entityStartPos+n-1,this._flushCodePointConsumedAsCharacterReference(r)},t.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(b.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:r=>{this._err(b.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+r)},validateNumericCharacterReference:r=>{const n=Fd(r);n&&this._err(n,1)}}:void 0)}_err(e,t=0){var r,n;(n=(r=this.handler).onParseError)===null||n===void 0||n.call(r,this.preprocessor.getError(e,t))}getCurrentLocation(e){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-e,startOffset:this.preprocessor.offset-e,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;const e=this._consume();this._ensureHibernation()||this._callState(e)}this.inLoop=!1}}pause(){this.paused=!0}resume(e){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||e==null||e())}write(e,t,r){this.active=!0,this.preprocessor.write(e,t),this._runParsingLoop(),this.paused||r==null||r()}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(e){this.consumedAfterSnapshot+=e;for(let t=0;t<e;t++)this.preprocessor.advance()}_consumeSequenceIfMatch(e,t){return this.preprocessor.startsWith(e,t)?(this._advanceBy(e.length-1),!0):!1}_createStartTagToken(){this.currentToken={type:tA.START_TAG,tagName:"",tagID:i.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(1)}}_createEndTagToken(){this.currentToken={type:tA.END_TAG,tagName:"",tagID:i.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(2)}}_createCommentToken(e){this.currentToken={type:tA.COMMENT,data:"",location:this.getCurrentLocation(e)}}_createDoctypeToken(e){this.currentToken={type:tA.DOCTYPE,name:e,forceQuirks:!1,publicId:null,systemId:null,location:this.currentLocation}}_createCharacterToken(e,t){this.currentCharacterToken={type:e,chars:t,location:this.currentLocation}}_createAttr(e){this.currentAttr={name:e,value:""},this.currentLocation=this.getCurrentLocation(0)}_leaveAttrName(){var e,t;const r=this.currentToken;if(Cu(r,this.currentAttr.name)===null){if(r.attrs.push(this.currentAttr),r.location&&this.currentLocation){const n=(e=(t=r.location).attrs)!==null&&e!==void 0?e:t.attrs=Object.create(null);n[this.currentAttr.name]=this.currentLocation,this._leaveAttrValue()}}else this._err(b.duplicateAttribute)}_leaveAttrValue(){this.currentLocation&&(this.currentLocation.endLine=this.preprocessor.line,this.currentLocation.endCol=this.preprocessor.col,this.currentLocation.endOffset=this.preprocessor.offset)}prepareToken(e){this._emitCurrentCharacterToken(e.location),this.currentToken=null,e.location&&(e.location.endLine=this.preprocessor.line,e.location.endCol=this.preprocessor.col+1,e.location.endOffset=this.preprocessor.offset+1),this.currentLocation=this.getCurrentLocation(-1)}emitCurrentTagToken(){const e=this.currentToken;this.prepareToken(e),e.tagID=zr(e.tagName),e.type===tA.START_TAG?(this.lastStartTagName=e.tagName,this.handler.onStartTag(e)):(e.attrs.length>0&&this._err(b.endTagWithAttributes),e.selfClosing&&this._err(b.endTagWithTrailingSolidus),this.handler.onEndTag(e)),this.preprocessor.dropParsedChunk()}emitCurrentComment(e){this.prepareToken(e),this.handler.onComment(e),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(e){this.prepareToken(e),this.handler.onDoctype(e),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(e){if(this.currentCharacterToken){switch(e&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=e.startLine,this.currentCharacterToken.location.endCol=e.startCol,this.currentCharacterToken.location.endOffset=e.startOffset),this.currentCharacterToken.type){case tA.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case tA.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case tA.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){const e=this.getCurrentLocation(0);e&&(e.endLine=e.startLine,e.endCol=e.startCol,e.endOffset=e.startOffset),this._emitCurrentCharacterToken(e),this.handler.onEof({type:tA.EOF,location:e}),this.active=!1}_appendCharToCurrentCharacterToken(e,t){if(this.currentCharacterToken)if(this.currentCharacterToken.type===e){this.currentCharacterToken.chars+=t;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(e,t)}_emitCodePoint(e){const t=Tu(e)?tA.WHITESPACE_CHARACTER:e===B.NULL?tA.NULL_CHARACTER:tA.CHARACTER;this._appendCharToCurrentCharacterToken(t,String.fromCodePoint(e))}_emitChars(e){this._appendCharToCurrentCharacterToken(tA.CHARACTER,e)}_startCharacterReference(){this.returnState=this.state,this.state=g.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?ee.Attribute:ee.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===g.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===g.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===g.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(e){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(e):this._emitCodePoint(e)}_callState(e){switch(this.state){case g.DATA:{this._stateData(e);break}case g.RCDATA:{this._stateRcdata(e);break}case g.RAWTEXT:{this._stateRawtext(e);break}case g.SCRIPT_DATA:{this._stateScriptData(e);break}case g.PLAINTEXT:{this._statePlaintext(e);break}case g.TAG_OPEN:{this._stateTagOpen(e);break}case g.END_TAG_OPEN:{this._stateEndTagOpen(e);break}case g.TAG_NAME:{this._stateTagName(e);break}case g.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(e);break}case g.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(e);break}case g.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(e);break}case g.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(e);break}case g.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(e);break}case g.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(e);break}case g.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(e);break}case g.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(e);break}case g.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(e);break}case g.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(e);break}case g.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(e);break}case g.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(e);break}case g.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(e);break}case g.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(e);break}case g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(e);break}case g.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(e);break}case g.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(e);break}case g.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(e);break}case g.ATTRIBUTE_NAME:{this._stateAttributeName(e);break}case g.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(e);break}case g.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(e);break}case g.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(e);break}case g.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(e);break}case g.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(e);break}case g.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(e);break}case g.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(e);break}case g.BOGUS_COMMENT:{this._stateBogusComment(e);break}case g.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(e);break}case g.COMMENT_START:{this._stateCommentStart(e);break}case g.COMMENT_START_DASH:{this._stateCommentStartDash(e);break}case g.COMMENT:{this._stateComment(e);break}case g.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(e);break}case g.COMMENT_END_DASH:{this._stateCommentEndDash(e);break}case g.COMMENT_END:{this._stateCommentEnd(e);break}case g.COMMENT_END_BANG:{this._stateCommentEndBang(e);break}case g.DOCTYPE:{this._stateDoctype(e);break}case g.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(e);break}case g.DOCTYPE_NAME:{this._stateDoctypeName(e);break}case g.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(e);break}case g.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(e);break}case g.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(e);break}case g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(e);break}case g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(e);break}case g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(e);break}case g.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(e);break}case g.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(e);break}case g.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(e);break}case g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(e);break}case g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(e);break}case g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(e);break}case g.BOGUS_DOCTYPE:{this._stateBogusDoctype(e);break}case g.CDATA_SECTION:{this._stateCdataSection(e);break}case g.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(e);break}case g.CDATA_SECTION_END:{this._stateCdataSectionEnd(e);break}case g.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case g.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(e);break}default:throw new Error("Unknown state")}}_stateData(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.TAG_OPEN;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitCodePoint(e);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateRcdata(e){switch(e){case B.AMPERSAND:{this._startCharacterReference();break}case B.LESS_THAN_SIGN:{this.state=g.RCDATA_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateRawtext(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.RAWTEXT_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptData(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_statePlaintext(e){switch(e){case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateTagOpen(e){if(He(e))this._createStartTagToken(),this.state=g.TAG_NAME,this._stateTagName(e);else switch(e){case B.EXCLAMATION_MARK:{this.state=g.MARKUP_DECLARATION_OPEN;break}case B.SOLIDUS:{this.state=g.END_TAG_OPEN;break}case B.QUESTION_MARK:{this._err(b.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e);break}case B.EOF:{this._err(b.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(b.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=g.DATA,this._stateData(e)}}_stateEndTagOpen(e){if(He(e))this._createEndTagToken(),this.state=g.TAG_NAME,this._stateTagName(e);else switch(e){case B.GREATER_THAN_SIGN:{this._err(b.missingEndTagName),this.state=g.DATA;break}case B.EOF:{this._err(b.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken();break}default:this._err(b.invalidFirstCharacterOfTagName),this._createCommentToken(2),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e)}}_stateTagName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.SOLIDUS:{this.state=g.SELF_CLOSING_START_TAG;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentTagToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.tagName+=hA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:t.tagName+=String.fromCodePoint(Jt(e)?An(e):e)}}_stateRcdataLessThanSign(e){e===B.SOLIDUS?this.state=g.RCDATA_END_TAG_OPEN:(this._emitChars("<"),this.state=g.RCDATA,this._stateRcdata(e))}_stateRcdataEndTagOpen(e){He(e)?(this.state=g.RCDATA_END_TAG_NAME,this._stateRcdataEndTagName(e)):(this._emitChars("</"),this.state=g.RCDATA,this._stateRcdata(e))}handleSpecialEndTag(e){if(!this.preprocessor.startsWith(this.lastStartTagName,!1))return!this._ensureHibernation();this._createEndTagToken();const t=this.currentToken;switch(t.tagName=this.lastStartTagName,this.preprocessor.peek(this.lastStartTagName.length)){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:return this._advanceBy(this.lastStartTagName.length),this.state=g.BEFORE_ATTRIBUTE_NAME,!1;case B.SOLIDUS:return this._advanceBy(this.lastStartTagName.length),this.state=g.SELF_CLOSING_START_TAG,!1;case B.GREATER_THAN_SIGN:return this._advanceBy(this.lastStartTagName.length),this.emitCurrentTagToken(),this.state=g.DATA,!1;default:return!this._ensureHibernation()}}_stateRcdataEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.RCDATA,this._stateRcdata(e))}_stateRawtextLessThanSign(e){e===B.SOLIDUS?this.state=g.RAWTEXT_END_TAG_OPEN:(this._emitChars("<"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateRawtextEndTagOpen(e){He(e)?(this.state=g.RAWTEXT_END_TAG_NAME,this._stateRawtextEndTagName(e)):(this._emitChars("</"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateRawtextEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateScriptDataLessThanSign(e){switch(e){case B.SOLIDUS:{this.state=g.SCRIPT_DATA_END_TAG_OPEN;break}case B.EXCLAMATION_MARK:{this.state=g.SCRIPT_DATA_ESCAPE_START,this._emitChars("<!");break}default:this._emitChars("<"),this.state=g.SCRIPT_DATA,this._stateScriptData(e)}}_stateScriptDataEndTagOpen(e){He(e)?(this.state=g.SCRIPT_DATA_END_TAG_NAME,this._stateScriptDataEndTagName(e)):(this._emitChars("</"),this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscapeStart(e){e===B.HYPHEN_MINUS?(this.state=g.SCRIPT_DATA_ESCAPE_START_DASH,this._emitChars("-")):(this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscapeStartDash(e){e===B.HYPHEN_MINUS?(this.state=g.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-")):(this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscaped(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_ESCAPED_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptDataEscapedDash(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_ESCAPED,this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedDashDash(e){switch(e){case B.HYPHEN_MINUS:{this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.GREATER_THAN_SIGN:{this.state=g.SCRIPT_DATA,this._emitChars(">");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_ESCAPED,this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedLessThanSign(e){e===B.SOLIDUS?this.state=g.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:He(e)?(this._emitChars("<"),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(e)):(this._emitChars("<"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagOpen(e){He(e)?(this.state=g.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(e)):(this._emitChars("</"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataDoubleEscapeStart(e){if(this.preprocessor.startsWith(YA.SCRIPT,!1)&&bu(this.preprocessor.peek(YA.SCRIPT.length))){this._emitCodePoint(e);for(let t=0;t<YA.SCRIPT.length;t++)this._emitCodePoint(this._consume());this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED}else this._ensureHibernation()||(this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataDoubleEscaped(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedDash(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedDashDash(e){switch(e){case B.HYPHEN_MINUS:{this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.GREATER_THAN_SIGN:{this.state=g.SCRIPT_DATA,this._emitChars(">");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(hA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedLessThanSign(e){e===B.SOLIDUS?(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateScriptDataDoubleEscapeEnd(e){if(this.preprocessor.startsWith(YA.SCRIPT,!1)&&bu(this.preprocessor.peek(YA.SCRIPT.length))){this._emitCodePoint(e);for(let t=0;t<YA.SCRIPT.length;t++)this._emitCodePoint(this._consume());this.state=g.SCRIPT_DATA_ESCAPED}else this._ensureHibernation()||(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateBeforeAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.SOLIDUS:case B.GREATER_THAN_SIGN:case B.EOF:{this.state=g.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(e);break}case B.EQUALS_SIGN:{this._err(b.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=g.ATTRIBUTE_NAME;break}default:this._createAttr(""),this.state=g.ATTRIBUTE_NAME,this._stateAttributeName(e)}}_stateAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:case B.SOLIDUS:case B.GREATER_THAN_SIGN:case B.EOF:{this._leaveAttrName(),this.state=g.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(e);break}case B.EQUALS_SIGN:{this._leaveAttrName(),this.state=g.BEFORE_ATTRIBUTE_VALUE;break}case B.QUOTATION_MARK:case B.APOSTROPHE:case B.LESS_THAN_SIGN:{this._err(b.unexpectedCharacterInAttributeName),this.currentAttr.name+=String.fromCodePoint(e);break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.name+=hA;break}default:this.currentAttr.name+=String.fromCodePoint(Jt(e)?An(e):e)}}_stateAfterAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.SOLIDUS:{this.state=g.SELF_CLOSING_START_TAG;break}case B.EQUALS_SIGN:{this.state=g.BEFORE_ATTRIBUTE_VALUE;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._createAttr(""),this.state=g.ATTRIBUTE_NAME,this._stateAttributeName(e)}}_stateBeforeAttributeValue(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{this.state=g.ATTRIBUTE_VALUE_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this.state=g.ATTRIBUTE_VALUE_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingAttributeValue),this.state=g.DATA,this.emitCurrentTagToken();break}default:this.state=g.ATTRIBUTE_VALUE_UNQUOTED,this._stateAttributeValueUnquoted(e)}}_stateAttributeValueDoubleQuoted(e){switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=hA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAttributeValueSingleQuoted(e){switch(e){case B.APOSTROPHE:{this.state=g.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=hA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAttributeValueUnquoted(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this._leaveAttrValue(),this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=g.DATA,this.emitCurrentTagToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=hA;break}case B.QUOTATION_MARK:case B.APOSTROPHE:case B.LESS_THAN_SIGN:case B.EQUALS_SIGN:case B.GRAVE_ACCENT:{this._err(b.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=String.fromCodePoint(e);break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAfterAttributeValueQuoted(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this._leaveAttrValue(),this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.SOLIDUS:{this._leaveAttrValue(),this.state=g.SELF_CLOSING_START_TAG;break}case B.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._err(b.missingWhitespaceBetweenAttributes),this.state=g.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(e)}}_stateSelfClosingStartTag(e){switch(e){case B.GREATER_THAN_SIGN:{const t=this.currentToken;t.selfClosing=!0,this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._err(b.unexpectedSolidusInTag),this.state=g.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(e)}}_stateBogusComment(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this.emitCurrentComment(t),this._emitEOFToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.data+=hA;break}default:t.data+=String.fromCodePoint(e)}}_stateMarkupDeclarationOpen(e){this._consumeSequenceIfMatch(YA.DASH_DASH,!0)?(this._createCommentToken(YA.DASH_DASH.length+1),this.state=g.COMMENT_START):this._consumeSequenceIfMatch(YA.DOCTYPE,!1)?(this.currentLocation=this.getCurrentLocation(YA.DOCTYPE.length+1),this.state=g.DOCTYPE):this._consumeSequenceIfMatch(YA.CDATA_START,!0)?this.inForeignNode?this.state=g.CDATA_SECTION:(this._err(b.cdataInHtmlContent),this._createCommentToken(YA.CDATA_START.length+1),this.currentToken.data="[CDATA[",this.state=g.BOGUS_COMMENT):this._ensureHibernation()||(this._err(b.incorrectlyOpenedComment),this._createCommentToken(2),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e))}_stateCommentStart(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_START_DASH;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptClosingOfEmptyComment),this.state=g.DATA;const t=this.currentToken;this.emitCurrentComment(t);break}default:this.state=g.COMMENT,this._stateComment(e)}}_stateCommentStartDash(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptClosingOfEmptyComment),this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="-",this.state=g.COMMENT,this._stateComment(e)}}_stateComment(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END_DASH;break}case B.LESS_THAN_SIGN:{t.data+="<",this.state=g.COMMENT_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.data+=hA;break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+=String.fromCodePoint(e)}}_stateCommentLessThanSign(e){const t=this.currentToken;switch(e){case B.EXCLAMATION_MARK:{t.data+="!",this.state=g.COMMENT_LESS_THAN_SIGN_BANG;break}case B.LESS_THAN_SIGN:{t.data+="<";break}default:this.state=g.COMMENT,this._stateComment(e)}}_stateCommentLessThanSignBang(e){e===B.HYPHEN_MINUS?this.state=g.COMMENT_LESS_THAN_SIGN_BANG_DASH:(this.state=g.COMMENT,this._stateComment(e))}_stateCommentLessThanSignBangDash(e){e===B.HYPHEN_MINUS?this.state=g.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:(this.state=g.COMMENT_END_DASH,this._stateCommentEndDash(e))}_stateCommentLessThanSignBangDashDash(e){e!==B.GREATER_THAN_SIGN&&e!==B.EOF&&this._err(b.nestedComment),this.state=g.COMMENT_END,this._stateCommentEnd(e)}_stateCommentEndDash(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END;break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="-",this.state=g.COMMENT,this._stateComment(e)}}_stateCommentEnd(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentComment(t);break}case B.EXCLAMATION_MARK:{this.state=g.COMMENT_END_BANG;break}case B.HYPHEN_MINUS:{t.data+="-";break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="--",this.state=g.COMMENT,this._stateComment(e)}}_stateCommentEndBang(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{t.data+="--!",this.state=g.COMMENT_END_DASH;break}case B.GREATER_THAN_SIGN:{this._err(b.incorrectlyClosedComment),this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="--!",this.state=g.COMMENT,this._stateComment(e)}}_stateDoctype(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this.state=g.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(e);break}case B.EOF:{this._err(b.eofInDoctype),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingWhitespaceBeforeDoctypeName),this.state=g.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(e)}}_stateBeforeDoctypeName(e){if(Jt(e))this._createDoctypeToken(String.fromCharCode(An(e))),this.state=g.DOCTYPE_NAME;else switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.NULL:{this._err(b.unexpectedNullCharacter),this._createDoctypeToken(hA),this.state=g.DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeName),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._createDoctypeToken(String.fromCodePoint(e)),this.state=g.DOCTYPE_NAME}}_stateDoctypeName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.AFTER_DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.name+=hA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.name+=String.fromCodePoint(Jt(e)?An(e):e)}}_stateAfterDoctypeName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._consumeSequenceIfMatch(YA.PUBLIC,!1)?this.state=g.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._consumeSequenceIfMatch(YA.SYSTEM,!1)?this.state=g.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._ensureHibernation()||(this._err(b.invalidCharacterSequenceAfterDoctypeName),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e))}}_stateAfterDoctypePublicKeyword(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceAfterDoctypePublicKeyword),t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceAfterDoctypePublicKeyword),t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBeforeDoctypePublicIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateDoctypePublicIdentifierDoubleQuoted(e){const t=this.currentToken;switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.publicId+=hA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypePublicIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.publicId+=String.fromCodePoint(e)}}_stateDoctypePublicIdentifierSingleQuoted(e){const t=this.currentToken;switch(e){case B.APOSTROPHE:{this.state=g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.publicId+=hA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypePublicIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.publicId+=String.fromCodePoint(e)}}_stateAfterDoctypePublicIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBetweenDoctypePublicAndSystemIdentifiers(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.QUOTATION_MARK:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateAfterDoctypeSystemKeyword(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceAfterDoctypeSystemKeyword),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceAfterDoctypeSystemKeyword),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBeforeDoctypeSystemIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateDoctypeSystemIdentifierDoubleQuoted(e){const t=this.currentToken;switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.systemId+=hA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypeSystemIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.systemId+=String.fromCodePoint(e)}}_stateDoctypeSystemIdentifierSingleQuoted(e){const t=this.currentToken;switch(e){case B.APOSTROPHE:{this.state=g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.systemId+=hA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypeSystemIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.systemId+=String.fromCodePoint(e)}}_stateAfterDoctypeSystemIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.unexpectedCharacterAfterDoctypeSystemIdentifier),this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBogusDoctype(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.NULL:{this._err(b.unexpectedNullCharacter);break}case B.EOF:{this.emitCurrentDoctype(t),this._emitEOFToken();break}}}_stateCdataSection(e){switch(e){case B.RIGHT_SQUARE_BRACKET:{this.state=g.CDATA_SECTION_BRACKET;break}case B.EOF:{this._err(b.eofInCdata),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateCdataSectionBracket(e){e===B.RIGHT_SQUARE_BRACKET?this.state=g.CDATA_SECTION_END:(this._emitChars("]"),this.state=g.CDATA_SECTION,this._stateCdataSection(e))}_stateCdataSectionEnd(e){switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA;break}case B.RIGHT_SQUARE_BRACKET:{this._emitChars("]");break}default:this._emitChars("]]"),this.state=g.CDATA_SECTION,this._stateCdataSection(e)}}_stateCharacterReference(){let e=this.entityDecoder.write(this.preprocessor.html,this.preprocessor.pos);if(e<0)if(this.preprocessor.lastChunkWritten)e=this.entityDecoder.end();else{this.active=!1,this.preprocessor.pos=this.preprocessor.html.length-1,this.consumedAfterSnapshot=0,this.preprocessor.endOfChunkHit=!0;return}e===0?(this.preprocessor.pos=this.entityStartPos,this._flushCodePointConsumedAsCharacterReference(B.AMPERSAND),this.state=!this._isCharacterReferenceInAttribute()&&wu(this.preprocessor.peek(1))?g.AMBIGUOUS_AMPERSAND:this.returnState):this.state=this.returnState}_stateAmbiguousAmpersand(e){wu(e)?this._flushCodePointConsumedAsCharacterReference(e):(e===B.SEMICOLON&&this._err(b.unknownNamedCharacterReference),this.state=this.returnState,this._callState(e))}};const Uu=new Set([i.DD,i.DT,i.LI,i.OPTGROUP,i.OPTION,i.P,i.RB,i.RP,i.RT,i.RTC]),Qu=new Set([...Uu,i.CAPTION,i.COLGROUP,i.TBODY,i.TD,i.TFOOT,i.TH,i.THEAD,i.TR]),en=new Set([i.APPLET,i.CAPTION,i.HTML,i.MARQUEE,i.OBJECT,i.TABLE,i.TD,i.TEMPLATE,i.TH]),_d=new Set([...en,i.OL,i.UL]),yd=new Set([...en,i.BUTTON]),Fu=new Set([i.ANNOTATION_XML,i.MI,i.MN,i.MO,i.MS,i.MTEXT]),Iu=new Set([i.DESC,i.FOREIGN_OBJECT,i.TITLE]),Nd=new Set([i.TR,i.TEMPLATE,i.HTML]),Sd=new Set([i.TBODY,i.TFOOT,i.THEAD,i.TEMPLATE,i.HTML]),vd=new Set([i.TABLE,i.TEMPLATE,i.HTML]),Ld=new Set([i.TD,i.TH]);class xd{get currentTmplContentOrNode(){return this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):this.current}constructor(e,t,r){this.treeAdapter=t,this.handler=r,this.items=[],this.tagIDs=[],this.stackTop=-1,this.tmplCount=0,this.currentTagId=i.UNKNOWN,this.current=e}_indexOf(e){return this.items.lastIndexOf(e,this.stackTop)}_isInTemplate(){return this.currentTagId===i.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===F.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagId=this.tagIDs[this.stackTop]}push(e,t){this.stackTop++,this.items[this.stackTop]=e,this.current=e,this.tagIDs[this.stackTop]=t,this.currentTagId=t,this._isInTemplate()&&this.tmplCount++,this.handler.onItemPush(e,t,!0)}pop(){const e=this.current;this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!0)}replace(e,t){const r=this._indexOf(e);this.items[r]=t,r===this.stackTop&&(this.current=t)}insertAfter(e,t,r){const n=this._indexOf(e)+1;this.items.splice(n,0,t),this.tagIDs.splice(n,0,r),this.stackTop++,n===this.stackTop&&this._updateCurrentElement(),this.handler.onItemPush(this.current,this.currentTagId,n===this.stackTop)}popUntilTagNamePopped(e){let t=this.stackTop+1;do t=this.tagIDs.lastIndexOf(e,t-1);while(t>0&&this.treeAdapter.getNamespaceURI(this.items[t])!==F.HTML);this.shortenToLength(t<0?0:t)}shortenToLength(e){for(;this.stackTop>=e;){const t=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,this.stackTop<e)}}popUntilElementPopped(e){const t=this._indexOf(e);this.shortenToLength(t<0?0:t)}popUntilPopped(e,t){const r=this._indexOfTagNames(e,t);this.shortenToLength(r<0?0:r)}popUntilNumberedHeaderPopped(){this.popUntilPopped(Ys,F.HTML)}popUntilTableCellPopped(){this.popUntilPopped(Ld,F.HTML)}popAllUpToHtmlElement(){this.tmplCount=0,this.shortenToLength(1)}_indexOfTagNames(e,t){for(let r=this.stackTop;r>=0;r--)if(e.has(this.tagIDs[r])&&this.treeAdapter.getNamespaceURI(this.items[r])===t)return r;return-1}clearBackTo(e,t){const r=this._indexOfTagNames(e,t);this.shortenToLength(r+1)}clearBackToTableContext(){this.clearBackTo(vd,F.HTML)}clearBackToTableBodyContext(){this.clearBackTo(Sd,F.HTML)}clearBackToTableRowContext(){this.clearBackTo(Nd,F.HTML)}remove(e){const t=this._indexOf(e);t>=0&&(t===this.stackTop?this.pop():(this.items.splice(t,1),this.tagIDs.splice(t,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===i.BODY?this.items[1]:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){const t=this._indexOf(e)-1;return t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===i.HTML}hasInDynamicScope(e,t){for(let r=this.stackTop;r>=0;r--){const n=this.tagIDs[r];switch(this.treeAdapter.getNamespaceURI(this.items[r])){case F.HTML:{if(n===e)return!0;if(t.has(n))return!1;break}case F.SVG:{if(Iu.has(n))return!1;break}case F.MATHML:{if(Fu.has(n))return!1;break}}}return!0}hasInScope(e){return this.hasInDynamicScope(e,en)}hasInListItemScope(e){return this.hasInDynamicScope(e,_d)}hasInButtonScope(e){return this.hasInDynamicScope(e,yd)}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){const t=this.tagIDs[e];switch(this.treeAdapter.getNamespaceURI(this.items[e])){case F.HTML:{if(Ys.has(t))return!0;if(en.has(t))return!1;break}case F.SVG:{if(Iu.has(t))return!1;break}case F.MATHML:{if(Fu.has(t))return!1;break}}}return!0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===F.HTML)switch(this.tagIDs[t]){case e:return!0;case i.TABLE:case i.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--)if(this.treeAdapter.getNamespaceURI(this.items[e])===F.HTML)switch(this.tagIDs[e]){case i.TBODY:case i.THEAD:case i.TFOOT:return!0;case i.TABLE:case i.HTML:return!1}return!0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===F.HTML)switch(this.tagIDs[t]){case e:return!0;case i.OPTION:case i.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;Uu.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;Qu.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(e){for(;this.currentTagId!==e&&Qu.has(this.currentTagId);)this.pop()}}const Xs=3;var Be;(function(A){A[A.Marker=0]="Marker",A[A.Element=1]="Element"})(Be||(Be={}));const _u={type:Be.Marker};class Hd{constructor(e){this.treeAdapter=e,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(e,t){const r=[],n=t.length,s=this.treeAdapter.getTagName(e),a=this.treeAdapter.getNamespaceURI(e);for(let u=0;u<this.entries.length;u++){const o=this.entries[u];if(o.type===Be.Marker)break;const{element:l}=o;if(this.treeAdapter.getTagName(l)===s&&this.treeAdapter.getNamespaceURI(l)===a){const f=this.treeAdapter.getAttrList(l);f.length===n&&r.push({idx:u,attrs:f})}}return r}_ensureNoahArkCondition(e){if(this.entries.length<Xs)return;const t=this.treeAdapter.getAttrList(e),r=this._getNoahArkConditionCandidates(e,t);if(r.length<Xs)return;const n=new Map(t.map(a=>[a.name,a.value]));let s=0;for(let a=0;a<r.length;a++){const u=r[a];u.attrs.every(o=>n.get(o.name)===o.value)&&(s+=1,s>=Xs&&this.entries.splice(u.idx,1))}}insertMarker(){this.entries.unshift(_u)}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.unshift({type:Be.Element,element:e,token:t})}insertElementAfterBookmark(e,t){const r=this.entries.indexOf(this.bookmark);this.entries.splice(r,0,{type:Be.Element,element:e,token:t})}removeEntry(e){const t=this.entries.indexOf(e);t>=0&&this.entries.splice(t,1)}clearToLastMarker(){const e=this.entries.indexOf(_u);e>=0?this.entries.splice(0,e+1):this.entries.length=0}getElementEntryInScopeWithTagName(e){const t=this.entries.find(r=>r.type===Be.Marker||this.treeAdapter.getTagName(r.element)===e);return t&&t.type===Be.Element?t:null}getElementEntry(e){return this.entries.find(t=>t.type===Be.Element&&t.element===e)}}const Ue={createDocument(){return{nodeName:"#document",mode:ZA.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(A,e,t){return{nodeName:A,tagName:A,attrs:t,namespaceURI:e,childNodes:[],parentNode:null}},createCommentNode(A){return{nodeName:"#comment",data:A,parentNode:null}},createTextNode(A){return{nodeName:"#text",value:A,parentNode:null}},appendChild(A,e){A.childNodes.push(e),e.parentNode=A},insertBefore(A,e,t){const r=A.childNodes.indexOf(t);A.childNodes.splice(r,0,e),e.parentNode=A},setTemplateContent(A,e){A.content=e},getTemplateContent(A){return A.content},setDocumentType(A,e,t,r){const n=A.childNodes.find(s=>s.nodeName==="#documentType");if(n)n.name=e,n.publicId=t,n.systemId=r;else{const s={nodeName:"#documentType",name:e,publicId:t,systemId:r,parentNode:null};Ue.appendChild(A,s)}},setDocumentMode(A,e){A.mode=e},getDocumentMode(A){return A.mode},detachNode(A){if(A.parentNode){const e=A.parentNode.childNodes.indexOf(A);A.parentNode.childNodes.splice(e,1),A.parentNode=null}},insertText(A,e){if(A.childNodes.length>0){const t=A.childNodes[A.childNodes.length-1];if(Ue.isTextNode(t)){t.value+=e;return}}Ue.appendChild(A,Ue.createTextNode(e))},insertTextBefore(A,e,t){const r=A.childNodes[A.childNodes.indexOf(t)-1];r&&Ue.isTextNode(r)?r.value+=e:Ue.insertBefore(A,Ue.createTextNode(e),t)},adoptAttributes(A,e){const t=new Set(A.attrs.map(r=>r.name));for(let r=0;r<e.length;r++)t.has(e[r].name)||A.attrs.push(e[r])},getFirstChild(A){return A.childNodes[0]},getChildNodes(A){return A.childNodes},getParentNode(A){return A.parentNode},getAttrList(A){return A.attrs},getTagName(A){return A.tagName},getNamespaceURI(A){return A.namespaceURI},getTextNodeContent(A){return A.value},getCommentNodeContent(A){return A.data},getDocumentTypeNodeName(A){return A.name},getDocumentTypeNodePublicId(A){return A.publicId},getDocumentTypeNodeSystemId(A){return A.systemId},isTextNode(A){return A.nodeName==="#text"},isCommentNode(A){return A.nodeName==="#comment"},isDocumentTypeNode(A){return A.nodeName==="#documentType"},isElementNode(A){return Object.prototype.hasOwnProperty.call(A,"tagName")},setNodeSourceCodeLocation(A,e){A.sourceCodeLocation=e},getNodeSourceCodeLocation(A){return A.sourceCodeLocation},updateNodeSourceCodeLocation(A,e){A.sourceCodeLocation={...A.sourceCodeLocation,...e}}},yu="html",Dd="about:legacy-compat",Od="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",Nu=["+//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//"],Rd=[...Nu,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"],Md=new Set(["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"]),Su=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],kd=[...Su,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"];function vu(A,e){return e.some(t=>A.startsWith(t))}function Pd(A){return A.name===yu&&A.publicId===null&&(A.systemId===null||A.systemId===Dd)}function Kd(A){if(A.name!==yu)return ZA.QUIRKS;const{systemId:e}=A;if(e&&e.toLowerCase()===Od)return ZA.QUIRKS;let{publicId:t}=A;if(t!==null){if(t=t.toLowerCase(),Md.has(t))return ZA.QUIRKS;let r=e===null?Rd:Nu;if(vu(t,r))return ZA.QUIRKS;if(r=e===null?Su:kd,vu(t,r))return ZA.LIMITED_QUIRKS}return ZA.NO_QUIRKS}const Lu={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},Vd="definitionurl",Gd="definitionURL",Yd=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(A=>[A.toLowerCase(),A])),Xd=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:F.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:F.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:F.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:F.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:F.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:F.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:F.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:F.XML}],["xml:space",{prefix:"xml",name:"space",namespace:F.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:F.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:F.XMLNS}]]),Wd=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(A=>[A.toLowerCase(),A])),Jd=new Set([i.B,i.BIG,i.BLOCKQUOTE,i.BODY,i.BR,i.CENTER,i.CODE,i.DD,i.DIV,i.DL,i.DT,i.EM,i.EMBED,i.H1,i.H2,i.H3,i.H4,i.H5,i.H6,i.HEAD,i.HR,i.I,i.IMG,i.LI,i.LISTING,i.MENU,i.META,i.NOBR,i.OL,i.P,i.PRE,i.RUBY,i.S,i.SMALL,i.SPAN,i.STRONG,i.STRIKE,i.SUB,i.SUP,i.TABLE,i.TT,i.U,i.UL,i.VAR]);function qd(A){const e=A.tagID;return e===i.FONT&&A.attrs.some(({name:r})=>r===et.COLOR||r===et.SIZE||r===et.FACE)||Jd.has(e)}function xu(A){for(let e=0;e<A.attrs.length;e++)if(A.attrs[e].name===Vd){A.attrs[e].name=Gd;break}}function Hu(A){for(let e=0;e<A.attrs.length;e++){const t=Yd.get(A.attrs[e].name);t!=null&&(A.attrs[e].name=t)}}function Ws(A){for(let e=0;e<A.attrs.length;e++){const t=Xd.get(A.attrs[e].name);t&&(A.attrs[e].prefix=t.prefix,A.attrs[e].name=t.name,A.attrs[e].namespace=t.namespace)}}function jd(A){const e=Wd.get(A.tagName);e!=null&&(A.tagName=e,A.tagID=zr(A.tagName))}function $d(A,e){return e===F.MATHML&&(A===i.MI||A===i.MO||A===i.MN||A===i.MS||A===i.MTEXT)}function Zd(A,e,t){if(e===F.MATHML&&A===i.ANNOTATION_XML){for(let r=0;r<t.length;r++)if(t[r].name===et.ENCODING){const n=t[r].value.toLowerCase();return n===Lu.TEXT_HTML||n===Lu.APPLICATION_XML}}return e===F.SVG&&(A===i.FOREIGN_OBJECT||A===i.DESC||A===i.TITLE)}function zd(A,e,t,r){return(!r||r===F.HTML)&&Zd(A,e,t)||(!r||r===F.MATHML)&&$d(A,e)}const AB="hidden",eB=8,tB=3;var E;(function(A){A[A.INITIAL=0]="INITIAL",A[A.BEFORE_HTML=1]="BEFORE_HTML",A[A.BEFORE_HEAD=2]="BEFORE_HEAD",A[A.IN_HEAD=3]="IN_HEAD",A[A.IN_HEAD_NO_SCRIPT=4]="IN_HEAD_NO_SCRIPT",A[A.AFTER_HEAD=5]="AFTER_HEAD",A[A.IN_BODY=6]="IN_BODY",A[A.TEXT=7]="TEXT",A[A.IN_TABLE=8]="IN_TABLE",A[A.IN_TABLE_TEXT=9]="IN_TABLE_TEXT",A[A.IN_CAPTION=10]="IN_CAPTION",A[A.IN_COLUMN_GROUP=11]="IN_COLUMN_GROUP",A[A.IN_TABLE_BODY=12]="IN_TABLE_BODY",A[A.IN_ROW=13]="IN_ROW",A[A.IN_CELL=14]="IN_CELL",A[A.IN_SELECT=15]="IN_SELECT",A[A.IN_SELECT_IN_TABLE=16]="IN_SELECT_IN_TABLE",A[A.IN_TEMPLATE=17]="IN_TEMPLATE",A[A.AFTER_BODY=18]="AFTER_BODY",A[A.IN_FRAMESET=19]="IN_FRAMESET",A[A.AFTER_FRAMESET=20]="AFTER_FRAMESET",A[A.AFTER_AFTER_BODY=21]="AFTER_AFTER_BODY",A[A.AFTER_AFTER_FRAMESET=22]="AFTER_AFTER_FRAMESET"})(E||(E={}));const rB={startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1},Du=new Set([i.TABLE,i.TBODY,i.TFOOT,i.THEAD,i.TR]),Ou={scriptingEnabled:!0,sourceCodeLocationInfo:!1,treeAdapter:Ue,onParseError:null};let Ru=class{constructor(e,t,r=null,n=null){this.fragmentContext=r,this.scriptHandler=n,this.currentToken=null,this.stopped=!1,this.insertionMode=E.INITIAL,this.originalInsertionMode=E.INITIAL,this.headElement=null,this.formElement=null,this.currentNotInHTML=!1,this.tmplInsertionModeStack=[],this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1,this.options={...Ou,...e},this.treeAdapter=this.options.treeAdapter,this.onParseError=this.options.onParseError,this.onParseError&&(this.options.sourceCodeLocationInfo=!0),this.document=t??this.treeAdapter.createDocument(),this.tokenizer=new Id(this.options,this),this.activeFormattingElements=new Hd(this.treeAdapter),this.fragmentContextID=r?zr(this.treeAdapter.getTagName(r)):i.UNKNOWN,this._setContextModes(r??this.document,this.fragmentContextID),this.openElements=new xd(this.document,this.treeAdapter,this)}static parse(e,t){const r=new this(t);return r.tokenizer.write(e,!0),r.document}static getFragmentParser(e,t){const r={...Ou,...t};e??(e=r.treeAdapter.createElement(w.TEMPLATE,F.HTML,[]));const n=r.treeAdapter.createElement("documentmock",F.HTML,[]),s=new this(r,n,e);return s.fragmentContextID===i.TEMPLATE&&s.tmplInsertionModeStack.unshift(E.IN_TEMPLATE),s._initTokenizerForFragmentParsing(),s._insertFakeRootElement(),s._resetInsertionMode(),s._findFormInFragmentContext(),s}getFragment(){const e=this.treeAdapter.getFirstChild(this.document),t=this.treeAdapter.createDocumentFragment();return this._adoptNodes(e,t),t}_err(e,t,r){var n;if(!this.onParseError)return;const s=(n=e.location)!==null&&n!==void 0?n:rB,a={code:t,startLine:s.startLine,startCol:s.startCol,startOffset:s.startOffset,endLine:r?s.startLine:s.endLine,endCol:r?s.startCol:s.endCol,endOffset:r?s.startOffset:s.endOffset};this.onParseError(a)}onItemPush(e,t,r){var n,s;(s=(n=this.treeAdapter).onItemPush)===null||s===void 0||s.call(n,e),r&&this.openElements.stackTop>0&&this._setContextModes(e,t)}onItemPop(e,t){var r,n;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(e,this.currentToken),(n=(r=this.treeAdapter).onItemPop)===null||n===void 0||n.call(r,e,this.openElements.current),t){let s,a;this.openElements.stackTop===0&&this.fragmentContext?(s=this.fragmentContext,a=this.fragmentContextID):{current:s,currentTagId:a}=this.openElements,this._setContextModes(s,a)}}_setContextModes(e,t){const r=e===this.document||this.treeAdapter.getNamespaceURI(e)===F.HTML;this.currentNotInHTML=!r,this.tokenizer.inForeignNode=!r&&!this._isIntegrationPoint(t,e)}_switchToTextParsing(e,t){this._insertElement(e,F.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=E.TEXT}switchToPlaintextParsing(){this.insertionMode=E.TEXT,this.originalInsertionMode=E.IN_BODY,this.tokenizer.state=XA.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;for(;e;){if(this.treeAdapter.getTagName(e)===w.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==F.HTML))switch(this.fragmentContextID){case i.TITLE:case i.TEXTAREA:{this.tokenizer.state=XA.RCDATA;break}case i.STYLE:case i.XMP:case i.IFRAME:case i.NOEMBED:case i.NOFRAMES:case i.NOSCRIPT:{this.tokenizer.state=XA.RAWTEXT;break}case i.SCRIPT:{this.tokenizer.state=XA.SCRIPT_DATA;break}case i.PLAINTEXT:{this.tokenizer.state=XA.PLAINTEXT;break}}}_setDocumentType(e){const t=e.name||"",r=e.publicId||"",n=e.systemId||"";if(this.treeAdapter.setDocumentType(this.document,t,r,n),e.location){const a=this.treeAdapter.getChildNodes(this.document).find(u=>this.treeAdapter.isDocumentTypeNode(u));a&&this.treeAdapter.setNodeSourceCodeLocation(a,e.location)}}_attachElementToTree(e,t){if(this.options.sourceCodeLocationInfo){const r=t&&{...t,startTag:t};this.treeAdapter.setNodeSourceCodeLocation(e,r)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{const r=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(r,e)}}_appendElement(e,t){const r=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(r,e.location)}_insertElement(e,t){const r=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(r,e.location),this.openElements.push(r,e.tagID)}_insertFakeElement(e,t){const r=this.treeAdapter.createElement(e,F.HTML,[]);this._attachElementToTree(r,null),this.openElements.push(r,t)}_insertTemplate(e){const t=this.treeAdapter.createElement(e.tagName,F.HTML,e.attrs),r=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,r),this._attachElementToTree(t,e.location),this.openElements.push(t,e.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(r,null)}_insertFakeRootElement(){const e=this.treeAdapter.createElement(w.HTML,F.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(e,null),this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e,i.HTML)}_appendCommentNode(e,t){const r=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,r),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(r,e.location)}_insertCharacters(e){let t,r;if(this._shouldFosterParentOnInsertion()?({parent:t,beforeElement:r}=this._findFosterParentingLocation(),r?this.treeAdapter.insertTextBefore(t,e.chars,r):this.treeAdapter.insertText(t,e.chars)):(t=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(t,e.chars)),!e.location)return;const n=this.treeAdapter.getChildNodes(t),s=r?n.lastIndexOf(r):n.length,a=n[s-1];if(this.treeAdapter.getNodeSourceCodeLocation(a)){const{endLine:o,endCol:l,endOffset:f}=e.location;this.treeAdapter.updateNodeSourceCodeLocation(a,{endLine:o,endCol:l,endOffset:f})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(a,e.location)}_adoptNodes(e,t){for(let r=this.treeAdapter.getFirstChild(e);r;r=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(r),this.treeAdapter.appendChild(t,r)}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){const r=t.location,n=this.treeAdapter.getTagName(e),s=t.type===tA.END_TAG&&n===t.tagName?{endTag:{...r},endLine:r.endLine,endCol:r.endCol,endOffset:r.endOffset}:{endLine:r.startLine,endCol:r.startCol,endOffset:r.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(e,s)}}shouldProcessStartTagTokenInForeignContent(e){if(!this.currentNotInHTML)return!1;let t,r;return this.openElements.stackTop===0&&this.fragmentContext?(t=this.fragmentContext,r=this.fragmentContextID):{current:t,currentTagId:r}=this.openElements,e.tagID===i.SVG&&this.treeAdapter.getTagName(t)===w.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(t)===F.MATHML?!1:this.tokenizer.inForeignNode||(e.tagID===i.MGLYPH||e.tagID===i.MALIGNMARK)&&!this._isIntegrationPoint(r,t,F.HTML)}_processToken(e){switch(e.type){case tA.CHARACTER:{this.onCharacter(e);break}case tA.NULL_CHARACTER:{this.onNullCharacter(e);break}case tA.COMMENT:{this.onComment(e);break}case tA.DOCTYPE:{this.onDoctype(e);break}case tA.START_TAG:{this._processStartTag(e);break}case tA.END_TAG:{this.onEndTag(e);break}case tA.EOF:{this.onEof(e);break}case tA.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(e);break}}}_isIntegrationPoint(e,t,r){const n=this.treeAdapter.getNamespaceURI(t),s=this.treeAdapter.getAttrList(t);return zd(e,n,s,r)}_reconstructActiveFormattingElements(){const e=this.activeFormattingElements.entries.length;if(e){const t=this.activeFormattingElements.entries.findIndex(n=>n.type===Be.Marker||this.openElements.contains(n.element)),r=t<0?e-1:t-1;for(let n=r;n>=0;n--){const s=this.activeFormattingElements.entries[n];this._insertElement(s.token,this.treeAdapter.getNamespaceURI(s.element)),s.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=E.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(i.P),this.openElements.popUntilTagNamePopped(i.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop;e>=0;e--)switch(e===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[e]){case i.TR:{this.insertionMode=E.IN_ROW;return}case i.TBODY:case i.THEAD:case i.TFOOT:{this.insertionMode=E.IN_TABLE_BODY;return}case i.CAPTION:{this.insertionMode=E.IN_CAPTION;return}case i.COLGROUP:{this.insertionMode=E.IN_COLUMN_GROUP;return}case i.TABLE:{this.insertionMode=E.IN_TABLE;return}case i.BODY:{this.insertionMode=E.IN_BODY;return}case i.FRAMESET:{this.insertionMode=E.IN_FRAMESET;return}case i.SELECT:{this._resetInsertionModeForSelect(e);return}case i.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case i.HTML:{this.insertionMode=this.headElement?E.AFTER_HEAD:E.BEFORE_HEAD;return}case i.TD:case i.TH:{if(e>0){this.insertionMode=E.IN_CELL;return}break}case i.HEAD:{if(e>0){this.insertionMode=E.IN_HEAD;return}break}}this.insertionMode=E.IN_BODY}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){const r=this.openElements.tagIDs[t];if(r===i.TEMPLATE)break;if(r===i.TABLE){this.insertionMode=E.IN_SELECT_IN_TABLE;return}}this.insertionMode=E.IN_SELECT}_isElementCausesFosterParenting(e){return Du.has(e)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let e=this.openElements.stackTop;e>=0;e--){const t=this.openElements.items[e];switch(this.openElements.tagIDs[e]){case i.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(t)===F.HTML)return{parent:this.treeAdapter.getTemplateContent(t),beforeElement:null};break}case i.TABLE:{const r=this.treeAdapter.getParentNode(t);return r?{parent:r,beforeElement:t}:{parent:this.openElements.items[e-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(e){const t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_isSpecialElement(e,t){const r=this.treeAdapter.getNamespaceURI(e);return wd[r].has(t)}onCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Lg(this,e);return}switch(this.insertionMode){case E.INITIAL:{qt(this,e);break}case E.BEFORE_HTML:{jt(this,e);break}case E.BEFORE_HEAD:{$t(this,e);break}case E.IN_HEAD:{Zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{zt(this,e);break}case E.AFTER_HEAD:{Ar(this,e);break}case E.IN_BODY:case E.IN_CAPTION:case E.IN_CELL:case E.IN_TEMPLATE:{ku(this,e);break}case E.TEXT:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:{this._insertCharacters(e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{$s(this,e);break}case E.IN_TABLE_TEXT:{Ju(this,e);break}case E.IN_COLUMN_GROUP:{nn(this,e);break}case E.AFTER_BODY:{un(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onNullCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){vg(this,e);return}switch(this.insertionMode){case E.INITIAL:{qt(this,e);break}case E.BEFORE_HTML:{jt(this,e);break}case E.BEFORE_HEAD:{$t(this,e);break}case E.IN_HEAD:{Zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{zt(this,e);break}case E.AFTER_HEAD:{Ar(this,e);break}case E.TEXT:{this._insertCharacters(e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{$s(this,e);break}case E.IN_COLUMN_GROUP:{nn(this,e);break}case E.AFTER_BODY:{un(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onComment(e){if(this.skipNextNewLine=!1,this.currentNotInHTML){qs(this,e);return}switch(this.insertionMode){case E.INITIAL:case E.BEFORE_HTML:case E.BEFORE_HEAD:case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:case E.IN_BODY:case E.IN_TABLE:case E.IN_CAPTION:case E.IN_COLUMN_GROUP:case E.IN_TABLE_BODY:case E.IN_ROW:case E.IN_CELL:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:case E.IN_TEMPLATE:case E.IN_FRAMESET:case E.AFTER_FRAMESET:{qs(this,e);break}case E.IN_TABLE_TEXT:{rr(this,e);break}case E.AFTER_BODY:{cB(this,e);break}case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{lB(this,e);break}}}onDoctype(e){switch(this.skipNextNewLine=!1,this.insertionMode){case E.INITIAL:{fB(this,e);break}case E.BEFORE_HEAD:case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:{this._err(e,b.misplacedDoctype);break}case E.IN_TABLE_TEXT:{rr(this,e);break}}}onStartTag(e){this.skipNextNewLine=!1,this.currentToken=e,this._processStartTag(e),e.selfClosing&&!e.ackSelfClosing&&this._err(e,b.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(e){this.shouldProcessStartTagTokenInForeignContent(e)?xg(this,e):this._startTagOutsideForeignContent(e)}_startTagOutsideForeignContent(e){switch(this.insertionMode){case E.INITIAL:{qt(this,e);break}case E.BEFORE_HTML:{hB(this,e);break}case E.BEFORE_HEAD:{BB(this,e);break}case E.IN_HEAD:{oe(this,e);break}case E.IN_HEAD_NO_SCRIPT:{mB(this,e);break}case E.AFTER_HEAD:{CB(this,e);break}case E.IN_BODY:{RA(this,e);break}case E.IN_TABLE:{Et(this,e);break}case E.IN_TABLE_TEXT:{rr(this,e);break}case E.IN_CAPTION:{gg(this,e);break}case E.IN_COLUMN_GROUP:{Zs(this,e);break}case E.IN_TABLE_BODY:{sn(this,e);break}case E.IN_ROW:{an(this,e);break}case E.IN_CELL:{pg(this,e);break}case E.IN_SELECT:{$u(this,e);break}case E.IN_SELECT_IN_TABLE:{wg(this,e);break}case E.IN_TEMPLATE:{bg(this,e);break}case E.AFTER_BODY:{Qg(this,e);break}case E.IN_FRAMESET:{Fg(this,e);break}case E.AFTER_FRAMESET:{_g(this,e);break}case E.AFTER_AFTER_BODY:{Ng(this,e);break}case E.AFTER_AFTER_FRAMESET:{Sg(this,e);break}}}onEndTag(e){this.skipNextNewLine=!1,this.currentToken=e,this.currentNotInHTML?Hg(this,e):this._endTagOutsideForeignContent(e)}_endTagOutsideForeignContent(e){switch(this.insertionMode){case E.INITIAL:{qt(this,e);break}case E.BEFORE_HTML:{dB(this,e);break}case E.BEFORE_HEAD:{gB(this,e);break}case E.IN_HEAD:{EB(this,e);break}case E.IN_HEAD_NO_SCRIPT:{pB(this,e);break}case E.AFTER_HEAD:{wB(this,e);break}case E.IN_BODY:{rn(this,e);break}case E.TEXT:{ag(this,e);break}case E.IN_TABLE:{er(this,e);break}case E.IN_TABLE_TEXT:{rr(this,e);break}case E.IN_CAPTION:{Eg(this,e);break}case E.IN_COLUMN_GROUP:{mg(this,e);break}case E.IN_TABLE_BODY:{zs(this,e);break}case E.IN_ROW:{ju(this,e);break}case E.IN_CELL:{Cg(this,e);break}case E.IN_SELECT:{Zu(this,e);break}case E.IN_SELECT_IN_TABLE:{Tg(this,e);break}case E.IN_TEMPLATE:{Ug(this,e);break}case E.AFTER_BODY:{Ao(this,e);break}case E.IN_FRAMESET:{Ig(this,e);break}case E.AFTER_FRAMESET:{yg(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onEof(e){switch(this.insertionMode){case E.INITIAL:{qt(this,e);break}case E.BEFORE_HTML:{jt(this,e);break}case E.BEFORE_HEAD:{$t(this,e);break}case E.IN_HEAD:{Zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{zt(this,e);break}case E.AFTER_HEAD:{Ar(this,e);break}case E.IN_BODY:case E.IN_TABLE:case E.IN_CAPTION:case E.IN_COLUMN_GROUP:case E.IN_TABLE_BODY:case E.IN_ROW:case E.IN_CELL:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:{Xu(this,e);break}case E.TEXT:{ig(this,e);break}case E.IN_TABLE_TEXT:{rr(this,e);break}case E.IN_TEMPLATE:{zu(this,e);break}case E.AFTER_BODY:case E.IN_FRAMESET:case E.AFTER_FRAMESET:case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{js(this,e);break}}}onWhitespaceCharacter(e){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,e.chars.charCodeAt(0)===B.LINE_FEED)){if(e.chars.length===1)return;e.chars=e.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(e);return}switch(this.insertionMode){case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:case E.TEXT:case E.IN_COLUMN_GROUP:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:case E.IN_FRAMESET:case E.AFTER_FRAMESET:{this._insertCharacters(e);break}case E.IN_BODY:case E.IN_CAPTION:case E.IN_CELL:case E.IN_TEMPLATE:case E.AFTER_BODY:case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{Mu(this,e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{$s(this,e);break}case E.IN_TABLE_TEXT:{Wu(this,e);break}}}};function nB(A,e){let t=A.activeFormattingElements.getElementEntryInScopeWithTagName(e.tagName);return t?A.openElements.contains(t.element)?A.openElements.hasInScope(e.tagID)||(t=null):(A.activeFormattingElements.removeEntry(t),t=null):Yu(A,e),t}function sB(A,e){let t=null,r=A.openElements.stackTop;for(;r>=0;r--){const n=A.openElements.items[r];if(n===e.element)break;A._isSpecialElement(n,A.openElements.tagIDs[r])&&(t=n)}return t||(A.openElements.shortenToLength(r<0?0:r),A.activeFormattingElements.removeEntry(e)),t}function aB(A,e,t){let r=e,n=A.openElements.getCommonAncestor(e);for(let s=0,a=n;a!==t;s++,a=n){n=A.openElements.getCommonAncestor(a);const u=A.activeFormattingElements.getElementEntry(a),o=u&&s>=tB;!u||o?(o&&A.activeFormattingElements.removeEntry(u),A.openElements.remove(a)):(a=iB(A,u),r===e&&(A.activeFormattingElements.bookmark=u),A.treeAdapter.detachNode(r),A.treeAdapter.appendChild(a,r),r=a)}return r}function iB(A,e){const t=A.treeAdapter.getNamespaceURI(e.element),r=A.treeAdapter.createElement(e.token.tagName,t,e.token.attrs);return A.openElements.replace(e.element,r),e.element=r,r}function uB(A,e,t){const r=A.treeAdapter.getTagName(e),n=zr(r);if(A._isElementCausesFosterParenting(n))A._fosterParentElement(t);else{const s=A.treeAdapter.getNamespaceURI(e);n===i.TEMPLATE&&s===F.HTML&&(e=A.treeAdapter.getTemplateContent(e)),A.treeAdapter.appendChild(e,t)}}function oB(A,e,t){const r=A.treeAdapter.getNamespaceURI(t.element),{token:n}=t,s=A.treeAdapter.createElement(n.tagName,r,n.attrs);A._adoptNodes(e,s),A.treeAdapter.appendChild(e,s),A.activeFormattingElements.insertElementAfterBookmark(s,n),A.activeFormattingElements.removeEntry(t),A.openElements.remove(t.element),A.openElements.insertAfter(e,s,n.tagID)}function Js(A,e){for(let t=0;t<eB;t++){const r=nB(A,e);if(!r)break;const n=sB(A,r);if(!n)break;A.activeFormattingElements.bookmark=r;const s=aB(A,n,r.element),a=A.openElements.getCommonAncestor(r.element);A.treeAdapter.detachNode(s),a&&uB(A,a,s),oB(A,n,r)}}function qs(A,e){A._appendCommentNode(e,A.openElements.currentTmplContentOrNode)}function cB(A,e){A._appendCommentNode(e,A.openElements.items[0])}function lB(A,e){A._appendCommentNode(e,A.document)}function js(A,e){if(A.stopped=!0,e.location){const t=A.fragmentContext?0:2;for(let r=A.openElements.stackTop;r>=t;r--)A._setEndLocation(A.openElements.items[r],e);if(!A.fragmentContext&&A.openElements.stackTop>=0){const r=A.openElements.items[0],n=A.treeAdapter.getNodeSourceCodeLocation(r);if(n&&!n.endTag&&(A._setEndLocation(r,e),A.openElements.stackTop>=1)){const s=A.openElements.items[1],a=A.treeAdapter.getNodeSourceCodeLocation(s);a&&!a.endTag&&A._setEndLocation(s,e)}}}}function fB(A,e){A._setDocumentType(e);const t=e.forceQuirks?ZA.QUIRKS:Kd(e);Pd(e)||A._err(e,b.nonConformingDoctype),A.treeAdapter.setDocumentMode(A.document,t),A.insertionMode=E.BEFORE_HTML}function qt(A,e){A._err(e,b.missingDoctype,!0),A.treeAdapter.setDocumentMode(A.document,ZA.QUIRKS),A.insertionMode=E.BEFORE_HTML,A._processToken(e)}function hB(A,e){e.tagID===i.HTML?(A._insertElement(e,F.HTML),A.insertionMode=E.BEFORE_HEAD):jt(A,e)}function dB(A,e){const t=e.tagID;(t===i.HTML||t===i.HEAD||t===i.BODY||t===i.BR)&&jt(A,e)}function jt(A,e){A._insertFakeRootElement(),A.insertionMode=E.BEFORE_HEAD,A._processToken(e)}function BB(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.HEAD:{A._insertElement(e,F.HTML),A.headElement=A.openElements.current,A.insertionMode=E.IN_HEAD;break}default:$t(A,e)}}function gB(A,e){const t=e.tagID;t===i.HEAD||t===i.BODY||t===i.HTML||t===i.BR?$t(A,e):A._err(e,b.endTagWithoutMatchingOpenElement)}function $t(A,e){A._insertFakeElement(w.HEAD,i.HEAD),A.headElement=A.openElements.current,A.insertionMode=E.IN_HEAD,A._processToken(e)}function oe(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:{A._appendElement(e,F.HTML),e.ackSelfClosing=!0;break}case i.TITLE:{A._switchToTextParsing(e,XA.RCDATA);break}case i.NOSCRIPT:{A.options.scriptingEnabled?A._switchToTextParsing(e,XA.RAWTEXT):(A._insertElement(e,F.HTML),A.insertionMode=E.IN_HEAD_NO_SCRIPT);break}case i.NOFRAMES:case i.STYLE:{A._switchToTextParsing(e,XA.RAWTEXT);break}case i.SCRIPT:{A._switchToTextParsing(e,XA.SCRIPT_DATA);break}case i.TEMPLATE:{A._insertTemplate(e),A.activeFormattingElements.insertMarker(),A.framesetOk=!1,A.insertionMode=E.IN_TEMPLATE,A.tmplInsertionModeStack.unshift(E.IN_TEMPLATE);break}case i.HEAD:{A._err(e,b.misplacedStartTagForHeadElement);break}default:Zt(A,e)}}function EB(A,e){switch(e.tagID){case i.HEAD:{A.openElements.pop(),A.insertionMode=E.AFTER_HEAD;break}case i.BODY:case i.BR:case i.HTML:{Zt(A,e);break}case i.TEMPLATE:{tt(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function tt(A,e){A.openElements.tmplCount>0?(A.openElements.generateImpliedEndTagsThoroughly(),A.openElements.currentTagId!==i.TEMPLATE&&A._err(e,b.closingOfElementWithOpenChildElements),A.openElements.popUntilTagNamePopped(i.TEMPLATE),A.activeFormattingElements.clearToLastMarker(),A.tmplInsertionModeStack.shift(),A._resetInsertionMode()):A._err(e,b.endTagWithoutMatchingOpenElement)}function Zt(A,e){A.openElements.pop(),A.insertionMode=E.AFTER_HEAD,A._processToken(e)}function mB(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.BASEFONT:case i.BGSOUND:case i.HEAD:case i.LINK:case i.META:case i.NOFRAMES:case i.STYLE:{oe(A,e);break}case i.NOSCRIPT:{A._err(e,b.nestedNoscriptInHead);break}default:zt(A,e)}}function pB(A,e){switch(e.tagID){case i.NOSCRIPT:{A.openElements.pop(),A.insertionMode=E.IN_HEAD;break}case i.BR:{zt(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function zt(A,e){const t=e.type===tA.EOF?b.openElementsLeftAfterEof:b.disallowedContentInNoscriptInHead;A._err(e,t),A.openElements.pop(),A.insertionMode=E.IN_HEAD,A._processToken(e)}function CB(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.BODY:{A._insertElement(e,F.HTML),A.framesetOk=!1,A.insertionMode=E.IN_BODY;break}case i.FRAMESET:{A._insertElement(e,F.HTML),A.insertionMode=E.IN_FRAMESET;break}case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:case i.NOFRAMES:case i.SCRIPT:case i.STYLE:case i.TEMPLATE:case i.TITLE:{A._err(e,b.abandonedHeadElementChild),A.openElements.push(A.headElement,i.HEAD),oe(A,e),A.openElements.remove(A.headElement);break}case i.HEAD:{A._err(e,b.misplacedStartTagForHeadElement);break}default:Ar(A,e)}}function wB(A,e){switch(e.tagID){case i.BODY:case i.HTML:case i.BR:{Ar(A,e);break}case i.TEMPLATE:{tt(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function Ar(A,e){A._insertFakeElement(w.BODY,i.BODY),A.insertionMode=E.IN_BODY,tn(A,e)}function tn(A,e){switch(e.type){case tA.CHARACTER:{ku(A,e);break}case tA.WHITESPACE_CHARACTER:{Mu(A,e);break}case tA.COMMENT:{qs(A,e);break}case tA.START_TAG:{RA(A,e);break}case tA.END_TAG:{rn(A,e);break}case tA.EOF:{Xu(A,e);break}}}function Mu(A,e){A._reconstructActiveFormattingElements(),A._insertCharacters(e)}function ku(A,e){A._reconstructActiveFormattingElements(),A._insertCharacters(e),A.framesetOk=!1}function TB(A,e){A.openElements.tmplCount===0&&A.treeAdapter.adoptAttributes(A.openElements.items[0],e.attrs)}function bB(A,e){const t=A.openElements.tryPeekProperlyNestedBodyElement();t&&A.openElements.tmplCount===0&&(A.framesetOk=!1,A.treeAdapter.adoptAttributes(t,e.attrs))}function UB(A,e){const t=A.openElements.tryPeekProperlyNestedBodyElement();A.framesetOk&&t&&(A.treeAdapter.detachNode(t),A.openElements.popAllUpToHtmlElement(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_FRAMESET)}function QB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML)}function FB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),Ys.has(A.openElements.currentTagId)&&A.openElements.pop(),A._insertElement(e,F.HTML)}function IB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML),A.skipNextNewLine=!0,A.framesetOk=!1}function _B(A,e){const t=A.openElements.tmplCount>0;(!A.formElement||t)&&(A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML),t||(A.formElement=A.openElements.current))}function yB(A,e){A.framesetOk=!1;const t=e.tagID;for(let r=A.openElements.stackTop;r>=0;r--){const n=A.openElements.tagIDs[r];if(t===i.LI&&n===i.LI||(t===i.DD||t===i.DT)&&(n===i.DD||n===i.DT)){A.openElements.generateImpliedEndTagsWithExclusion(n),A.openElements.popUntilTagNamePopped(n);break}if(n!==i.ADDRESS&&n!==i.DIV&&n!==i.P&&A._isSpecialElement(A.openElements.items[r],n))break}A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML)}function NB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML),A.tokenizer.state=XA.PLAINTEXT}function SB(A,e){A.openElements.hasInScope(i.BUTTON)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.BUTTON)),A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML),A.framesetOk=!1}function vB(A,e){const t=A.activeFormattingElements.getElementEntryInScopeWithTagName(w.A);t&&(Js(A,e),A.openElements.remove(t.element),A.activeFormattingElements.removeEntry(t)),A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function LB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function xB(A,e){A._reconstructActiveFormattingElements(),A.openElements.hasInScope(i.NOBR)&&(Js(A,e),A._reconstructActiveFormattingElements()),A._insertElement(e,F.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function HB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML),A.activeFormattingElements.insertMarker(),A.framesetOk=!1}function DB(A,e){A.treeAdapter.getDocumentMode(A.document)!==ZA.QUIRKS&&A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,F.HTML),A.framesetOk=!1,A.insertionMode=E.IN_TABLE}function Pu(A,e){A._reconstructActiveFormattingElements(),A._appendElement(e,F.HTML),A.framesetOk=!1,e.ackSelfClosing=!0}function Ku(A){const e=Cu(A,et.TYPE);return e!=null&&e.toLowerCase()===AB}function OB(A,e){A._reconstructActiveFormattingElements(),A._appendElement(e,F.HTML),Ku(e)||(A.framesetOk=!1),e.ackSelfClosing=!0}function RB(A,e){A._appendElement(e,F.HTML),e.ackSelfClosing=!0}function MB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._appendElement(e,F.HTML),A.framesetOk=!1,e.ackSelfClosing=!0}function kB(A,e){e.tagName=w.IMG,e.tagID=i.IMG,Pu(A,e)}function PB(A,e){A._insertElement(e,F.HTML),A.skipNextNewLine=!0,A.tokenizer.state=XA.RCDATA,A.originalInsertionMode=A.insertionMode,A.framesetOk=!1,A.insertionMode=E.TEXT}function KB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._reconstructActiveFormattingElements(),A.framesetOk=!1,A._switchToTextParsing(e,XA.RAWTEXT)}function VB(A,e){A.framesetOk=!1,A._switchToTextParsing(e,XA.RAWTEXT)}function Vu(A,e){A._switchToTextParsing(e,XA.RAWTEXT)}function GB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML),A.framesetOk=!1,A.insertionMode=A.insertionMode===E.IN_TABLE||A.insertionMode===E.IN_CAPTION||A.insertionMode===E.IN_TABLE_BODY||A.insertionMode===E.IN_ROW||A.insertionMode===E.IN_CELL?E.IN_SELECT_IN_TABLE:E.IN_SELECT}function YB(A,e){A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML)}function XB(A,e){A.openElements.hasInScope(i.RUBY)&&A.openElements.generateImpliedEndTags(),A._insertElement(e,F.HTML)}function WB(A,e){A.openElements.hasInScope(i.RUBY)&&A.openElements.generateImpliedEndTagsWithExclusion(i.RTC),A._insertElement(e,F.HTML)}function JB(A,e){A._reconstructActiveFormattingElements(),xu(e),Ws(e),e.selfClosing?A._appendElement(e,F.MATHML):A._insertElement(e,F.MATHML),e.ackSelfClosing=!0}function qB(A,e){A._reconstructActiveFormattingElements(),Hu(e),Ws(e),e.selfClosing?A._appendElement(e,F.SVG):A._insertElement(e,F.SVG),e.ackSelfClosing=!0}function Gu(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,F.HTML)}function RA(A,e){switch(e.tagID){case i.I:case i.S:case i.B:case i.U:case i.EM:case i.TT:case i.BIG:case i.CODE:case i.FONT:case i.SMALL:case i.STRIKE:case i.STRONG:{LB(A,e);break}case i.A:{vB(A,e);break}case i.H1:case i.H2:case i.H3:case i.H4:case i.H5:case i.H6:{FB(A,e);break}case i.P:case i.DL:case i.OL:case i.UL:case i.DIV:case i.DIR:case i.NAV:case i.MAIN:case i.MENU:case i.ASIDE:case i.CENTER:case i.FIGURE:case i.FOOTER:case i.HEADER:case i.HGROUP:case i.DIALOG:case i.DETAILS:case i.ADDRESS:case i.ARTICLE:case i.SEARCH:case i.SECTION:case i.SUMMARY:case i.FIELDSET:case i.BLOCKQUOTE:case i.FIGCAPTION:{QB(A,e);break}case i.LI:case i.DD:case i.DT:{yB(A,e);break}case i.BR:case i.IMG:case i.WBR:case i.AREA:case i.EMBED:case i.KEYGEN:{Pu(A,e);break}case i.HR:{MB(A,e);break}case i.RB:case i.RTC:{XB(A,e);break}case i.RT:case i.RP:{WB(A,e);break}case i.PRE:case i.LISTING:{IB(A,e);break}case i.XMP:{KB(A,e);break}case i.SVG:{qB(A,e);break}case i.HTML:{TB(A,e);break}case i.BASE:case i.LINK:case i.META:case i.STYLE:case i.TITLE:case i.SCRIPT:case i.BGSOUND:case i.BASEFONT:case i.TEMPLATE:{oe(A,e);break}case i.BODY:{bB(A,e);break}case i.FORM:{_B(A,e);break}case i.NOBR:{xB(A,e);break}case i.MATH:{JB(A,e);break}case i.TABLE:{DB(A,e);break}case i.INPUT:{OB(A,e);break}case i.PARAM:case i.TRACK:case i.SOURCE:{RB(A,e);break}case i.IMAGE:{kB(A,e);break}case i.BUTTON:{SB(A,e);break}case i.APPLET:case i.OBJECT:case i.MARQUEE:{HB(A,e);break}case i.IFRAME:{VB(A,e);break}case i.SELECT:{GB(A,e);break}case i.OPTION:case i.OPTGROUP:{YB(A,e);break}case i.NOEMBED:case i.NOFRAMES:{Vu(A,e);break}case i.FRAMESET:{UB(A,e);break}case i.TEXTAREA:{PB(A,e);break}case i.NOSCRIPT:{A.options.scriptingEnabled?Vu(A,e):Gu(A,e);break}case i.PLAINTEXT:{NB(A,e);break}case i.COL:case i.TH:case i.TD:case i.TR:case i.HEAD:case i.FRAME:case i.TBODY:case i.TFOOT:case i.THEAD:case i.CAPTION:case i.COLGROUP:break;default:Gu(A,e)}}function jB(A,e){if(A.openElements.hasInScope(i.BODY)&&(A.insertionMode=E.AFTER_BODY,A.options.sourceCodeLocationInfo)){const t=A.openElements.tryPeekProperlyNestedBodyElement();t&&A._setEndLocation(t,e)}}function $B(A,e){A.openElements.hasInScope(i.BODY)&&(A.insertionMode=E.AFTER_BODY,Ao(A,e))}function ZB(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t))}function zB(A){const e=A.openElements.tmplCount>0,{formElement:t}=A;e||(A.formElement=null),(t||e)&&A.openElements.hasInScope(i.FORM)&&(A.openElements.generateImpliedEndTags(),e?A.openElements.popUntilTagNamePopped(i.FORM):t&&A.openElements.remove(t))}function Ag(A){A.openElements.hasInButtonScope(i.P)||A._insertFakeElement(w.P,i.P),A._closePElement()}function eg(A){A.openElements.hasInListItemScope(i.LI)&&(A.openElements.generateImpliedEndTagsWithExclusion(i.LI),A.openElements.popUntilTagNamePopped(i.LI))}function tg(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTagsWithExclusion(t),A.openElements.popUntilTagNamePopped(t))}function rg(A){A.openElements.hasNumberedHeaderInScope()&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilNumberedHeaderPopped())}function ng(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t),A.activeFormattingElements.clearToLastMarker())}function sg(A){A._reconstructActiveFormattingElements(),A._insertFakeElement(w.BR,i.BR),A.openElements.pop(),A.framesetOk=!1}function Yu(A,e){const t=e.tagName,r=e.tagID;for(let n=A.openElements.stackTop;n>0;n--){const s=A.openElements.items[n],a=A.openElements.tagIDs[n];if(r===a&&(r!==i.UNKNOWN||A.treeAdapter.getTagName(s)===t)){A.openElements.generateImpliedEndTagsWithExclusion(r),A.openElements.stackTop>=n&&A.openElements.shortenToLength(n);break}if(A._isSpecialElement(s,a))break}}function rn(A,e){switch(e.tagID){case i.A:case i.B:case i.I:case i.S:case i.U:case i.EM:case i.TT:case i.BIG:case i.CODE:case i.FONT:case i.NOBR:case i.SMALL:case i.STRIKE:case i.STRONG:{Js(A,e);break}case i.P:{Ag(A);break}case i.DL:case i.UL:case i.OL:case i.DIR:case i.DIV:case i.NAV:case i.PRE:case i.MAIN:case i.MENU:case i.ASIDE:case i.BUTTON:case i.CENTER:case i.FIGURE:case i.FOOTER:case i.HEADER:case i.HGROUP:case i.DIALOG:case i.ADDRESS:case i.ARTICLE:case i.DETAILS:case i.SEARCH:case i.SECTION:case i.SUMMARY:case i.LISTING:case i.FIELDSET:case i.BLOCKQUOTE:case i.FIGCAPTION:{ZB(A,e);break}case i.LI:{eg(A);break}case i.DD:case i.DT:{tg(A,e);break}case i.H1:case i.H2:case i.H3:case i.H4:case i.H5:case i.H6:{rg(A);break}case i.BR:{sg(A);break}case i.BODY:{jB(A,e);break}case i.HTML:{$B(A,e);break}case i.FORM:{zB(A);break}case i.APPLET:case i.OBJECT:case i.MARQUEE:{ng(A,e);break}case i.TEMPLATE:{tt(A,e);break}default:Yu(A,e)}}function Xu(A,e){A.tmplInsertionModeStack.length>0?zu(A,e):js(A,e)}function ag(A,e){var t;e.tagID===i.SCRIPT&&((t=A.scriptHandler)===null||t===void 0||t.call(A,A.openElements.current)),A.openElements.pop(),A.insertionMode=A.originalInsertionMode}function ig(A,e){A._err(e,b.eofInElementThatCanContainOnlyText),A.openElements.pop(),A.insertionMode=A.originalInsertionMode,A.onEof(e)}function $s(A,e){if(Du.has(A.openElements.currentTagId))switch(A.pendingCharacterTokens.length=0,A.hasNonWhitespacePendingCharacterToken=!1,A.originalInsertionMode=A.insertionMode,A.insertionMode=E.IN_TABLE_TEXT,e.type){case tA.CHARACTER:{Ju(A,e);break}case tA.WHITESPACE_CHARACTER:{Wu(A,e);break}}else tr(A,e)}function ug(A,e){A.openElements.clearBackToTableContext(),A.activeFormattingElements.insertMarker(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_CAPTION}function og(A,e){A.openElements.clearBackToTableContext(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_COLUMN_GROUP}function cg(A,e){A.openElements.clearBackToTableContext(),A._insertFakeElement(w.COLGROUP,i.COLGROUP),A.insertionMode=E.IN_COLUMN_GROUP,Zs(A,e)}function lg(A,e){A.openElements.clearBackToTableContext(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_TABLE_BODY}function fg(A,e){A.openElements.clearBackToTableContext(),A._insertFakeElement(w.TBODY,i.TBODY),A.insertionMode=E.IN_TABLE_BODY,sn(A,e)}function hg(A,e){A.openElements.hasInTableScope(i.TABLE)&&(A.openElements.popUntilTagNamePopped(i.TABLE),A._resetInsertionMode(),A._processStartTag(e))}function dg(A,e){Ku(e)?A._appendElement(e,F.HTML):tr(A,e),e.ackSelfClosing=!0}function Bg(A,e){!A.formElement&&A.openElements.tmplCount===0&&(A._insertElement(e,F.HTML),A.formElement=A.openElements.current,A.openElements.pop())}function Et(A,e){switch(e.tagID){case i.TD:case i.TH:case i.TR:{fg(A,e);break}case i.STYLE:case i.SCRIPT:case i.TEMPLATE:{oe(A,e);break}case i.COL:{cg(A,e);break}case i.FORM:{Bg(A,e);break}case i.TABLE:{hg(A,e);break}case i.TBODY:case i.TFOOT:case i.THEAD:{lg(A,e);break}case i.INPUT:{dg(A,e);break}case i.CAPTION:{ug(A,e);break}case i.COLGROUP:{og(A,e);break}default:tr(A,e)}}function er(A,e){switch(e.tagID){case i.TABLE:{A.openElements.hasInTableScope(i.TABLE)&&(A.openElements.popUntilTagNamePopped(i.TABLE),A._resetInsertionMode());break}case i.TEMPLATE:{tt(A,e);break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TBODY:case i.TD:case i.TFOOT:case i.TH:case i.THEAD:case i.TR:break;default:tr(A,e)}}function tr(A,e){const t=A.fosterParentingEnabled;A.fosterParentingEnabled=!0,tn(A,e),A.fosterParentingEnabled=t}function Wu(A,e){A.pendingCharacterTokens.push(e)}function Ju(A,e){A.pendingCharacterTokens.push(e),A.hasNonWhitespacePendingCharacterToken=!0}function rr(A,e){let t=0;if(A.hasNonWhitespacePendingCharacterToken)for(;t<A.pendingCharacterTokens.length;t++)tr(A,A.pendingCharacterTokens[t]);else for(;t<A.pendingCharacterTokens.length;t++)A._insertCharacters(A.pendingCharacterTokens[t]);A.insertionMode=A.originalInsertionMode,A._processToken(e)}const qu=new Set([i.CAPTION,i.COL,i.COLGROUP,i.TBODY,i.TD,i.TFOOT,i.TH,i.THEAD,i.TR]);function gg(A,e){const t=e.tagID;qu.has(t)?A.openElements.hasInTableScope(i.CAPTION)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.CAPTION),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_TABLE,Et(A,e)):RA(A,e)}function Eg(A,e){const t=e.tagID;switch(t){case i.CAPTION:case i.TABLE:{A.openElements.hasInTableScope(i.CAPTION)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.CAPTION),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_TABLE,t===i.TABLE&&er(A,e));break}case i.BODY:case i.COL:case i.COLGROUP:case i.HTML:case i.TBODY:case i.TD:case i.TFOOT:case i.TH:case i.THEAD:case i.TR:break;default:rn(A,e)}}function Zs(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.COL:{A._appendElement(e,F.HTML),e.ackSelfClosing=!0;break}case i.TEMPLATE:{oe(A,e);break}default:nn(A,e)}}function mg(A,e){switch(e.tagID){case i.COLGROUP:{A.openElements.currentTagId===i.COLGROUP&&(A.openElements.pop(),A.insertionMode=E.IN_TABLE);break}case i.TEMPLATE:{tt(A,e);break}case i.COL:break;default:nn(A,e)}}function nn(A,e){A.openElements.currentTagId===i.COLGROUP&&(A.openElements.pop(),A.insertionMode=E.IN_TABLE,A._processToken(e))}function sn(A,e){switch(e.tagID){case i.TR:{A.openElements.clearBackToTableBodyContext(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_ROW;break}case i.TH:case i.TD:{A.openElements.clearBackToTableBodyContext(),A._insertFakeElement(w.TR,i.TR),A.insertionMode=E.IN_ROW,an(A,e);break}case i.CAPTION:case i.COL:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:{A.openElements.hasTableBodyContextInTableScope()&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE,Et(A,e));break}default:Et(A,e)}}function zs(A,e){const t=e.tagID;switch(e.tagID){case i.TBODY:case i.TFOOT:case i.THEAD:{A.openElements.hasInTableScope(t)&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE);break}case i.TABLE:{A.openElements.hasTableBodyContextInTableScope()&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE,er(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TD:case i.TH:case i.TR:break;default:er(A,e)}}function an(A,e){switch(e.tagID){case i.TH:case i.TD:{A.openElements.clearBackToTableRowContext(),A._insertElement(e,F.HTML),A.insertionMode=E.IN_CELL,A.activeFormattingElements.insertMarker();break}case i.CAPTION:case i.COL:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:case i.TR:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,sn(A,e));break}default:Et(A,e)}}function ju(A,e){switch(e.tagID){case i.TR:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY);break}case i.TABLE:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,zs(A,e));break}case i.TBODY:case i.TFOOT:case i.THEAD:{(A.openElements.hasInTableScope(e.tagID)||A.openElements.hasInTableScope(i.TR))&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,zs(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TD:case i.TH:break;default:er(A,e)}}function pg(A,e){const t=e.tagID;qu.has(t)?(A.openElements.hasInTableScope(i.TD)||A.openElements.hasInTableScope(i.TH))&&(A._closeTableCell(),an(A,e)):RA(A,e)}function Cg(A,e){const t=e.tagID;switch(t){case i.TD:case i.TH:{A.openElements.hasInTableScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_ROW);break}case i.TABLE:case i.TBODY:case i.TFOOT:case i.THEAD:case i.TR:{A.openElements.hasInTableScope(t)&&(A._closeTableCell(),ju(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:break;default:rn(A,e)}}function $u(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.OPTION:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A._insertElement(e,F.HTML);break}case i.OPTGROUP:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop(),A._insertElement(e,F.HTML);break}case i.HR:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop(),A._appendElement(e,F.HTML),e.ackSelfClosing=!0;break}case i.INPUT:case i.KEYGEN:case i.TEXTAREA:case i.SELECT:{A.openElements.hasInSelectScope(i.SELECT)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),e.tagID!==i.SELECT&&A._processStartTag(e));break}case i.SCRIPT:case i.TEMPLATE:{oe(A,e);break}}}function Zu(A,e){switch(e.tagID){case i.OPTGROUP:{A.openElements.stackTop>0&&A.openElements.currentTagId===i.OPTION&&A.openElements.tagIDs[A.openElements.stackTop-1]===i.OPTGROUP&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop();break}case i.OPTION:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop();break}case i.SELECT:{A.openElements.hasInSelectScope(i.SELECT)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode());break}case i.TEMPLATE:{tt(A,e);break}}}function wg(A,e){const t=e.tagID;t===i.CAPTION||t===i.TABLE||t===i.TBODY||t===i.TFOOT||t===i.THEAD||t===i.TR||t===i.TD||t===i.TH?(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),A._processStartTag(e)):$u(A,e)}function Tg(A,e){const t=e.tagID;t===i.CAPTION||t===i.TABLE||t===i.TBODY||t===i.TFOOT||t===i.THEAD||t===i.TR||t===i.TD||t===i.TH?A.openElements.hasInTableScope(t)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),A.onEndTag(e)):Zu(A,e)}function bg(A,e){switch(e.tagID){case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:case i.NOFRAMES:case i.SCRIPT:case i.STYLE:case i.TEMPLATE:case i.TITLE:{oe(A,e);break}case i.CAPTION:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:{A.tmplInsertionModeStack[0]=E.IN_TABLE,A.insertionMode=E.IN_TABLE,Et(A,e);break}case i.COL:{A.tmplInsertionModeStack[0]=E.IN_COLUMN_GROUP,A.insertionMode=E.IN_COLUMN_GROUP,Zs(A,e);break}case i.TR:{A.tmplInsertionModeStack[0]=E.IN_TABLE_BODY,A.insertionMode=E.IN_TABLE_BODY,sn(A,e);break}case i.TD:case i.TH:{A.tmplInsertionModeStack[0]=E.IN_ROW,A.insertionMode=E.IN_ROW,an(A,e);break}default:A.tmplInsertionModeStack[0]=E.IN_BODY,A.insertionMode=E.IN_BODY,RA(A,e)}}function Ug(A,e){e.tagID===i.TEMPLATE&&tt(A,e)}function zu(A,e){A.openElements.tmplCount>0?(A.openElements.popUntilTagNamePopped(i.TEMPLATE),A.activeFormattingElements.clearToLastMarker(),A.tmplInsertionModeStack.shift(),A._resetInsertionMode(),A.onEof(e)):js(A,e)}function Qg(A,e){e.tagID===i.HTML?RA(A,e):un(A,e)}function Ao(A,e){var t;if(e.tagID===i.HTML){if(A.fragmentContext||(A.insertionMode=E.AFTER_AFTER_BODY),A.options.sourceCodeLocationInfo&&A.openElements.tagIDs[0]===i.HTML){A._setEndLocation(A.openElements.items[0],e);const r=A.openElements.items[1];r&&!(!((t=A.treeAdapter.getNodeSourceCodeLocation(r))===null||t===void 0)&&t.endTag)&&A._setEndLocation(r,e)}}else un(A,e)}function un(A,e){A.insertionMode=E.IN_BODY,tn(A,e)}function Fg(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.FRAMESET:{A._insertElement(e,F.HTML);break}case i.FRAME:{A._appendElement(e,F.HTML),e.ackSelfClosing=!0;break}case i.NOFRAMES:{oe(A,e);break}}}function Ig(A,e){e.tagID===i.FRAMESET&&!A.openElements.isRootHtmlElementCurrent()&&(A.openElements.pop(),!A.fragmentContext&&A.openElements.currentTagId!==i.FRAMESET&&(A.insertionMode=E.AFTER_FRAMESET))}function _g(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.NOFRAMES:{oe(A,e);break}}}function yg(A,e){e.tagID===i.HTML&&(A.insertionMode=E.AFTER_AFTER_FRAMESET)}function Ng(A,e){e.tagID===i.HTML?RA(A,e):on(A,e)}function on(A,e){A.insertionMode=E.IN_BODY,tn(A,e)}function Sg(A,e){switch(e.tagID){case i.HTML:{RA(A,e);break}case i.NOFRAMES:{oe(A,e);break}}}function vg(A,e){e.chars=hA,A._insertCharacters(e)}function Lg(A,e){A._insertCharacters(e),A.framesetOk=!1}function eo(A){for(;A.treeAdapter.getNamespaceURI(A.openElements.current)!==F.HTML&&!A._isIntegrationPoint(A.openElements.currentTagId,A.openElements.current);)A.openElements.pop()}function xg(A,e){if(qd(e))eo(A),A._startTagOutsideForeignContent(e);else{const t=A._getAdjustedCurrentElement(),r=A.treeAdapter.getNamespaceURI(t);r===F.MATHML?xu(e):r===F.SVG&&(jd(e),Hu(e)),Ws(e),e.selfClosing?A._appendElement(e,r):A._insertElement(e,r),e.ackSelfClosing=!0}}function Hg(A,e){if(e.tagID===i.P||e.tagID===i.BR){eo(A),A._endTagOutsideForeignContent(e);return}for(let t=A.openElements.stackTop;t>0;t--){const r=A.openElements.items[t];if(A.treeAdapter.getNamespaceURI(r)===F.HTML){A._endTagOutsideForeignContent(e);break}const n=A.treeAdapter.getTagName(r);if(n.toLowerCase()===e.tagName){e.tagName=n,A.openElements.shortenToLength(t);break}}}const Dg=new Set([w.AREA,w.BASE,w.BASEFONT,w.BGSOUND,w.BR,w.COL,w.EMBED,w.FRAME,w.HR,w.IMG,w.INPUT,w.KEYGEN,w.LINK,w.META,w.PARAM,w.SOURCE,w.TRACK,w.WBR]);function Og(A,e){return e.treeAdapter.isElementNode(A)&&e.treeAdapter.getNamespaceURI(A)===F.HTML&&Dg.has(e.treeAdapter.getTagName(A))}const Rg={treeAdapter:Ue,scriptingEnabled:!0};function Mg(A,e){const t={...Rg,...e};return to(A,t)}function kg(A,e){let t="";const r=e.treeAdapter.isElementNode(A)&&e.treeAdapter.getTagName(A)===w.TEMPLATE&&e.treeAdapter.getNamespaceURI(A)===F.HTML?e.treeAdapter.getTemplateContent(A):A,n=e.treeAdapter.getChildNodes(r);if(n)for(const s of n)t+=to(s,e);return t}function to(A,e){return e.treeAdapter.isElementNode(A)?Pg(A,e):e.treeAdapter.isTextNode(A)?Vg(A,e):e.treeAdapter.isCommentNode(A)?Gg(A,e):e.treeAdapter.isDocumentTypeNode(A)?Yg(A,e):""}function Pg(A,e){const t=e.treeAdapter.getTagName(A);return`<${t}${Kg(A,e)}>${Og(A,e)?"":`${kg(A,e)}</${t}>`}`}function Kg(A,{treeAdapter:e}){let t="";for(const r of e.getAttrList(A)){if(t+=" ",r.namespace)switch(r.namespace){case F.XML:{t+=`xml:${r.name}`;break}case F.XMLNS:{r.name!=="xmlns"&&(t+="xmlns:"),t+=r.name;break}case F.XLINK:{t+=`xlink:${r.name}`;break}default:t+=`${r.prefix}:${r.name}`}else t+=r.name;t+=`="${bi(r.value)}"`}return t}function Vg(A,e){const{treeAdapter:t}=e,r=t.getTextNodeContent(A),n=t.getParentNode(A),s=n&&t.isElementNode(n)&&t.getTagName(n);return s&&t.getNamespaceURI(n)===F.HTML&&bd(s,e.scriptingEnabled)?r:Ui(r)}function Gg(A,{treeAdapter:e}){return`<!--${e.getCommentNodeContent(A)}-->`}function Yg(A,{treeAdapter:e}){return`<!DOCTYPE ${e.getDocumentTypeNodeName(A)}>`}function Xg(A,e){return Ru.parse(A,e)}function Wg(A,e,t){typeof A=="string"&&(t=e,e=A,A=null);const r=Ru.getFragmentParser(A,t);return r.tokenizer.write(e,!0),r.getFragment()}function ro(A){const e=A.includes('"')?"'":'"';return e+A+e}function Jg(A,e,t){let r="!DOCTYPE ";return A&&(r+=A),e?r+=` PUBLIC ${ro(e)}`:t&&(r+=" SYSTEM"),t&&(r+=` ${ro(t)}`),r}const De={isCommentNode:Dr,isElementNode:X,isTextNode:de,createDocument(){const A=new je([]);return A["x-mode"]=ZA.NO_QUIRKS,A},createDocumentFragment(){return new je([])},createElement(A,e,t){const r=Object.create(null),n=Object.create(null),s=Object.create(null);for(let u=0;u<t.length;u++){const o=t[u].name;r[o]=t[u].value,n[o]=t[u].namespace,s[o]=t[u].prefix}const a=new fs(A,r,[]);return a.namespace=e,a["x-attribsNamespace"]=n,a["x-attribsPrefix"]=s,a},createCommentNode(A){return new os(A)},createTextNode(A){return new Rt(A)},appendChild(A,e){const t=A.children[A.children.length-1];t&&(t.next=e,e.prev=t),A.children.push(e),e.parent=A},insertBefore(A,e,t){const r=A.children.indexOf(t),{prev:n}=t;n&&(n.next=e,e.prev=n),t.prev=e,e.next=t,A.children.splice(r,0,e),e.parent=A},setTemplateContent(A,e){De.appendChild(A,e)},getTemplateContent(A){return A.children[0]},setDocumentType(A,e,t,r){const n=Jg(e,t,r);let s=A.children.find(a=>hs(a)&&a.name==="!doctype");s?s.data=n??null:(s=new cs("!doctype",n),De.appendChild(A,s)),s["x-name"]=e,s["x-publicId"]=t,s["x-systemId"]=r},setDocumentMode(A,e){A["x-mode"]=e},getDocumentMode(A){return A["x-mode"]},detachNode(A){if(A.parent){const e=A.parent.children.indexOf(A),{prev:t,next:r}=A;A.prev=null,A.next=null,t&&(t.next=r),r&&(r.prev=t),A.parent.children.splice(e,1),A.parent=null}},insertText(A,e){const t=A.children[A.children.length-1];t&&de(t)?t.data+=e:De.appendChild(A,De.createTextNode(e))},insertTextBefore(A,e,t){const r=A.children[A.children.indexOf(t)-1];r&&de(r)?r.data+=e:De.insertBefore(A,De.createTextNode(e),t)},adoptAttributes(A,e){for(let t=0;t<e.length;t++){const r=e[t].name;A.attribs[r]===void 0&&(A.attribs[r]=e[t].value,A["x-attribsNamespace"][r]=e[t].namespace,A["x-attribsPrefix"][r]=e[t].prefix)}},getFirstChild(A){return A.children[0]},getChildNodes(A){return A.children},getParentNode(A){return A.parent},getAttrList(A){return A.attributes},getTagName(A){return A.name},getNamespaceURI(A){return A.namespace},getTextNodeContent(A){return A.data},getCommentNodeContent(A){return A.data},getDocumentTypeNodeName(A){var e;return(e=A["x-name"])!==null&&e!==void 0?e:""},getDocumentTypeNodePublicId(A){var e;return(e=A["x-publicId"])!==null&&e!==void 0?e:""},getDocumentTypeNodeSystemId(A){var e;return(e=A["x-systemId"])!==null&&e!==void 0?e:""},isDocumentTypeNode(A){return hs(A)&&A.name==="!doctype"},setNodeSourceCodeLocation(A,e){e&&(A.startIndex=e.startOffset,A.endIndex=e.endOffset),A.sourceCodeLocation=e},getNodeSourceCodeLocation(A){return A.sourceCodeLocation},updateNodeSourceCodeLocation(A,e){e.endOffset!=null&&(A.endIndex=e.endOffset),A.sourceCodeLocation={...A.sourceCodeLocation,...e}}};function qg(A,e,t,r){var n;return(n=e.treeAdapter)!==null&&n!==void 0||(e.treeAdapter=De),e.scriptingEnabled!==!1&&(e.scriptingEnabled=!0),t?Xg(A,e):Wg(r,A,e)}const jg={treeAdapter:De};function $g(A){const e="length"in A?A:[A];for(let r=0;r<e.length;r+=1){const n=e[r];Se(n)&&Array.prototype.splice.call(e,r,1,...n.children)}let t="";for(let r=0;r<e.length;r+=1){const n=e[r];t+=Mg(n,jg)}return t}var Y;(function(A){A[A.Tab=9]="Tab",A[A.NewLine=10]="NewLine",A[A.FormFeed=12]="FormFeed",A[A.CarriageReturn=13]="CarriageReturn",A[A.Space=32]="Space",A[A.ExclamationMark=33]="ExclamationMark",A[A.Number=35]="Number",A[A.Amp=38]="Amp",A[A.SingleQuote=39]="SingleQuote",A[A.DoubleQuote=34]="DoubleQuote",A[A.Dash=45]="Dash",A[A.Slash=47]="Slash",A[A.Zero=48]="Zero",A[A.Nine=57]="Nine",A[A.Semi=59]="Semi",A[A.Lt=60]="Lt",A[A.Eq=61]="Eq",A[A.Gt=62]="Gt",A[A.Questionmark=63]="Questionmark",A[A.UpperA=65]="UpperA",A[A.LowerA=97]="LowerA",A[A.UpperF=70]="UpperF",A[A.LowerF=102]="LowerF",A[A.UpperZ=90]="UpperZ",A[A.LowerZ=122]="LowerZ",A[A.LowerX=120]="LowerX",A[A.OpeningSquareBracket=91]="OpeningSquareBracket"})(Y||(Y={}));var y;(function(A){A[A.Text=1]="Text",A[A.BeforeTagName=2]="BeforeTagName",A[A.InTagName=3]="InTagName",A[A.InSelfClosingTag=4]="InSelfClosingTag",A[A.BeforeClosingTagName=5]="BeforeClosingTagName",A[A.InClosingTagName=6]="InClosingTagName",A[A.AfterClosingTagName=7]="AfterClosingTagName",A[A.BeforeAttributeName=8]="BeforeAttributeName",A[A.InAttributeName=9]="InAttributeName",A[A.AfterAttributeName=10]="AfterAttributeName",A[A.BeforeAttributeValue=11]="BeforeAttributeValue",A[A.InAttributeValueDq=12]="InAttributeValueDq",A[A.InAttributeValueSq=13]="InAttributeValueSq",A[A.InAttributeValueNq=14]="InAttributeValueNq",A[A.BeforeDeclaration=15]="BeforeDeclaration",A[A.InDeclaration=16]="InDeclaration",A[A.InProcessingInstruction=17]="InProcessingInstruction",A[A.BeforeComment=18]="BeforeComment",A[A.CDATASequence=19]="CDATASequence",A[A.InSpecialComment=20]="InSpecialComment",A[A.InCommentLike=21]="InCommentLike",A[A.BeforeSpecialS=22]="BeforeSpecialS",A[A.BeforeSpecialT=23]="BeforeSpecialT",A[A.SpecialStartSequence=24]="SpecialStartSequence",A[A.InSpecialTag=25]="InSpecialTag",A[A.InEntity=26]="InEntity"})(y||(y={}));function Qe(A){return A===Y.Space||A===Y.NewLine||A===Y.Tab||A===Y.FormFeed||A===Y.CarriageReturn}function cn(A){return A===Y.Slash||A===Y.Gt||Qe(A)}function Zg(A){return A>=Y.LowerA&&A<=Y.LowerZ||A>=Y.UpperA&&A<=Y.UpperZ}var ge;(function(A){A[A.NoValue=0]="NoValue",A[A.Unquoted=1]="Unquoted",A[A.Single=2]="Single",A[A.Double=3]="Double"})(ge||(ge={}));const HA={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97])};let zg=class{constructor({xmlMode:e=!1,decodeEntities:t=!0},r){this.cbs=r,this.state=y.Text,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=y.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.xmlMode=e,this.decodeEntities=t,this.entityDecoder=new ps(e?mi:Bs,(n,s)=>this.emitCodePoint(n,s))}reset(){this.state=y.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=y.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}end(){this.running&&this.finish()}pause(){this.running=!1}resume(){this.running=!0,this.index<this.buffer.length+this.offset&&this.parse()}stateText(e){e===Y.Lt||!this.decodeEntities&&this.fastForwardTo(Y.Lt)?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=y.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateSpecialStartSequence(e){const t=this.sequenceIndex===this.currentSequence.length;if(!(t?cn(e):(e|32)===this.currentSequence[this.sequenceIndex]))this.isSpecial=!1;else if(!t){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=y.InTagName,this.stateInTagName(e)}stateInSpecialTag(e){if(this.sequenceIndex===this.currentSequence.length){if(e===Y.Gt||Qe(e)){const t=this.index-this.currentSequence.length;if(this.sectionStart<t){const r=this.index;this.index=t,this.cbs.ontext(this.sectionStart,t),this.index=r}this.isSpecial=!1,this.sectionStart=t+2,this.stateInClosingTagName(e);return}this.sequenceIndex=0}(e|32)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:this.sequenceIndex===0?this.currentSequence===HA.TitleEnd?this.decodeEntities&&e===Y.Amp&&this.startEntity():this.fastForwardTo(Y.Lt)&&(this.sequenceIndex=1):this.sequenceIndex=+(e===Y.Lt)}stateCDATASequence(e){e===HA.Cdata[this.sequenceIndex]?++this.sequenceIndex===HA.Cdata.length&&(this.state=y.InCommentLike,this.currentSequence=HA.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=y.InDeclaration,this.stateInDeclaration(e))}fastForwardTo(e){for(;++this.index<this.buffer.length+this.offset;)if(this.buffer.charCodeAt(this.index-this.offset)===e)return!0;return this.index=this.buffer.length+this.offset-1,!1}stateInCommentLike(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===HA.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index,2):this.cbs.oncomment(this.sectionStart,this.index,2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=y.Text):this.sequenceIndex===0?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)}isTagStartChar(e){return this.xmlMode?!cn(e):Zg(e)}startSpecial(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=y.SpecialStartSequence}stateBeforeTagName(e){if(e===Y.ExclamationMark)this.state=y.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===Y.Questionmark)this.state=y.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){const t=e|32;this.sectionStart=this.index,this.xmlMode?this.state=y.InTagName:t===HA.ScriptEnd[2]?this.state=y.BeforeSpecialS:t===HA.TitleEnd[2]?this.state=y.BeforeSpecialT:this.state=y.InTagName}else e===Y.Slash?this.state=y.BeforeClosingTagName:(this.state=y.Text,this.stateText(e))}stateInTagName(e){cn(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateBeforeClosingTagName(e){Qe(e)||(e===Y.Gt?this.state=y.Text:(this.state=this.isTagStartChar(e)?y.InClosingTagName:y.InSpecialComment,this.sectionStart=this.index))}stateInClosingTagName(e){(e===Y.Gt||Qe(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=y.AfterClosingTagName,this.stateAfterClosingTagName(e))}stateAfterClosingTagName(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeAttributeName(e){e===Y.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=y.InSpecialTag,this.sequenceIndex=0):this.state=y.Text,this.sectionStart=this.index+1):e===Y.Slash?this.state=y.InSelfClosingTag:Qe(e)||(this.state=y.InAttributeName,this.sectionStart=this.index)}stateInSelfClosingTag(e){e===Y.Gt?(this.cbs.onselfclosingtag(this.index),this.state=y.Text,this.sectionStart=this.index+1,this.isSpecial=!1):Qe(e)||(this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateInAttributeName(e){(e===Y.Eq||cn(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=this.index,this.state=y.AfterAttributeName,this.stateAfterAttributeName(e))}stateAfterAttributeName(e){e===Y.Eq?this.state=y.BeforeAttributeValue:e===Y.Slash||e===Y.Gt?(this.cbs.onattribend(ge.NoValue,this.sectionStart),this.sectionStart=-1,this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e)):Qe(e)||(this.cbs.onattribend(ge.NoValue,this.sectionStart),this.state=y.InAttributeName,this.sectionStart=this.index)}stateBeforeAttributeValue(e){e===Y.DoubleQuote?(this.state=y.InAttributeValueDq,this.sectionStart=this.index+1):e===Y.SingleQuote?(this.state=y.InAttributeValueSq,this.sectionStart=this.index+1):Qe(e)||(this.sectionStart=this.index,this.state=y.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}handleInAttributeValue(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===Y.DoubleQuote?ge.Double:ge.Single,this.index+1),this.state=y.BeforeAttributeName):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateInAttributeValueDoubleQuotes(e){this.handleInAttributeValue(e,Y.DoubleQuote)}stateInAttributeValueSingleQuotes(e){this.handleInAttributeValue(e,Y.SingleQuote)}stateInAttributeValueNoQuotes(e){Qe(e)||e===Y.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ge.Unquoted,this.index),this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateBeforeDeclaration(e){e===Y.OpeningSquareBracket?(this.state=y.CDATASequence,this.sequenceIndex=0):this.state=e===Y.Dash?y.BeforeComment:y.InDeclaration}stateInDeclaration(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=y.Text,this.sectionStart=this.index+1)}stateInProcessingInstruction(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeComment(e){e===Y.Dash?(this.state=y.InCommentLike,this.currentSequence=HA.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=y.InDeclaration}stateInSpecialComment(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeSpecialS(e){const t=e|32;t===HA.ScriptEnd[3]?this.startSpecial(HA.ScriptEnd,4):t===HA.StyleEnd[3]?this.startSpecial(HA.StyleEnd,4):(this.state=y.InTagName,this.stateInTagName(e))}stateBeforeSpecialT(e){const t=e|32;t===HA.TitleEnd[3]?this.startSpecial(HA.TitleEnd,4):t===HA.TextareaEnd[3]?this.startSpecial(HA.TextareaEnd,4):(this.state=y.InTagName,this.stateInTagName(e))}startEntity(){this.baseState=this.state,this.state=y.InEntity,this.entityStart=this.index,this.entityDecoder.startEntity(this.xmlMode?ee.Strict:this.baseState===y.Text||this.baseState===y.InSpecialTag?ee.Legacy:ee.Attribute)}stateInEntity(){const e=this.entityDecoder.write(this.buffer,this.index-this.offset);e>=0?(this.state=this.baseState,e===0&&(this.index=this.entityStart)):this.index=this.offset+this.buffer.length-1}cleanup(){this.running&&this.sectionStart!==this.index&&(this.state===y.Text||this.state===y.InSpecialTag&&this.sequenceIndex===0?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===y.InAttributeValueDq||this.state===y.InAttributeValueSq||this.state===y.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}shouldContinue(){return this.index<this.buffer.length+this.offset&&this.running}parse(){for(;this.shouldContinue();){const e=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case y.Text:{this.stateText(e);break}case y.SpecialStartSequence:{this.stateSpecialStartSequence(e);break}case y.InSpecialTag:{this.stateInSpecialTag(e);break}case y.CDATASequence:{this.stateCDATASequence(e);break}case y.InAttributeValueDq:{this.stateInAttributeValueDoubleQuotes(e);break}case y.InAttributeName:{this.stateInAttributeName(e);break}case y.InCommentLike:{this.stateInCommentLike(e);break}case y.InSpecialComment:{this.stateInSpecialComment(e);break}case y.BeforeAttributeName:{this.stateBeforeAttributeName(e);break}case y.InTagName:{this.stateInTagName(e);break}case y.InClosingTagName:{this.stateInClosingTagName(e);break}case y.BeforeTagName:{this.stateBeforeTagName(e);break}case y.AfterAttributeName:{this.stateAfterAttributeName(e);break}case y.InAttributeValueSq:{this.stateInAttributeValueSingleQuotes(e);break}case y.BeforeAttributeValue:{this.stateBeforeAttributeValue(e);break}case y.BeforeClosingTagName:{this.stateBeforeClosingTagName(e);break}case y.AfterClosingTagName:{this.stateAfterClosingTagName(e);break}case y.BeforeSpecialS:{this.stateBeforeSpecialS(e);break}case y.BeforeSpecialT:{this.stateBeforeSpecialT(e);break}case y.InAttributeValueNq:{this.stateInAttributeValueNoQuotes(e);break}case y.InSelfClosingTag:{this.stateInSelfClosingTag(e);break}case y.InDeclaration:{this.stateInDeclaration(e);break}case y.BeforeDeclaration:{this.stateBeforeDeclaration(e);break}case y.BeforeComment:{this.stateBeforeComment(e);break}case y.InProcessingInstruction:{this.stateInProcessingInstruction(e);break}case y.InEntity:{this.stateInEntity();break}}this.index++}this.cleanup()}finish(){this.state===y.InEntity&&(this.entityDecoder.end(),this.state=this.baseState),this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){const e=this.buffer.length+this.offset;this.sectionStart>=e||(this.state===y.InCommentLike?this.currentSequence===HA.CdataEnd?this.cbs.oncdata(this.sectionStart,e,0):this.cbs.oncomment(this.sectionStart,e,0):this.state===y.InTagName||this.state===y.BeforeAttributeName||this.state===y.BeforeAttributeValue||this.state===y.AfterAttributeName||this.state===y.InAttributeName||this.state===y.InAttributeValueSq||this.state===y.InAttributeValueDq||this.state===y.InAttributeValueNq||this.state===y.InClosingTagName||this.cbs.ontext(this.sectionStart,e))}emitCodePoint(e,t){this.baseState!==y.Text&&this.baseState!==y.InSpecialTag?(this.sectionStart<this.entityStart&&this.cbs.onattribdata(this.sectionStart,this.entityStart),this.sectionStart=this.entityStart+t,this.index=this.sectionStart-1,this.cbs.onattribentity(e)):(this.sectionStart<this.entityStart&&this.cbs.ontext(this.sectionStart,this.entityStart),this.sectionStart=this.entityStart+t,this.index=this.sectionStart-1,this.cbs.ontextentity(e,this.sectionStart))}};const mt=new Set(["input","option","optgroup","select","button","datalist","textarea"]),aA=new Set(["p"]),no=new Set(["thead","tbody"]),so=new Set(["dd","dt"]),ao=new Set(["rt","rp"]),AE=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",aA],["h1",aA],["h2",aA],["h3",aA],["h4",aA],["h5",aA],["h6",aA],["select",mt],["input",mt],["output",mt],["button",mt],["datalist",mt],["textarea",mt],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",so],["dt",so],["address",aA],["article",aA],["aside",aA],["blockquote",aA],["details",aA],["div",aA],["dl",aA],["fieldset",aA],["figcaption",aA],["figure",aA],["footer",aA],["form",aA],["header",aA],["hr",aA],["main",aA],["nav",aA],["ol",aA],["pre",aA],["section",aA],["table",aA],["ul",aA],["rt",ao],["rp",ao],["tbody",no],["tfoot",no]]),eE=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),io=new Set(["math","svg"]),uo=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),tE=/\s|\//;let rE=class{constructor(e,t={}){var r,n,s,a,u,o;this.options=t,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=e??{},this.htmlMode=!this.options.xmlMode,this.lowerCaseTagNames=(r=t.lowerCaseTags)!==null&&r!==void 0?r:this.htmlMode,this.lowerCaseAttributeNames=(n=t.lowerCaseAttributeNames)!==null&&n!==void 0?n:this.htmlMode,this.recognizeSelfClosing=(s=t.recognizeSelfClosing)!==null&&s!==void 0?s:!this.htmlMode,this.tokenizer=new((a=t.Tokenizer)!==null&&a!==void 0?a:zg)(this.options,this),this.foreignContext=[!this.htmlMode],(o=(u=this.cbs).onparserinit)===null||o===void 0||o.call(u,this)}ontext(e,t){var r,n;const s=this.getSlice(e,t);this.endIndex=t-1,(n=(r=this.cbs).ontext)===null||n===void 0||n.call(r,s),this.startIndex=t}ontextentity(e,t){var r,n;this.endIndex=t-1,(n=(r=this.cbs).ontext)===null||n===void 0||n.call(r,Es(e)),this.startIndex=t}isVoidElement(e){return this.htmlMode&&eE.has(e)}onopentagname(e,t){this.endIndex=t;let r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}emitOpenTag(e){var t,r,n,s;this.openTagStart=this.startIndex,this.tagname=e;const a=this.htmlMode&&AE.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[0]);){const u=this.stack.shift();(r=(t=this.cbs).onclosetag)===null||r===void 0||r.call(t,u,!0)}this.isVoidElement(e)||(this.stack.unshift(e),this.htmlMode&&(io.has(e)?this.foreignContext.unshift(!0):uo.has(e)&&this.foreignContext.unshift(!1))),(s=(n=this.cbs).onopentagname)===null||s===void 0||s.call(n,e),this.cbs.onopentag&&(this.attribs={})}endOpenTag(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&((r=(t=this.cbs).onopentag)===null||r===void 0||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}onopentagend(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}onclosetag(e,t){var r,n,s,a,u,o,l,f;this.endIndex=t;let h=this.getSlice(e,t);if(this.lowerCaseTagNames&&(h=h.toLowerCase()),this.htmlMode&&(io.has(h)||uo.has(h))&&this.foreignContext.shift(),this.isVoidElement(h))this.htmlMode&&h==="br"&&((a=(s=this.cbs).onopentagname)===null||a===void 0||a.call(s,"br"),(o=(u=this.cbs).onopentag)===null||o===void 0||o.call(u,"br",{},!0),(f=(l=this.cbs).onclosetag)===null||f===void 0||f.call(l,"br",!1));else{const d=this.stack.indexOf(h);if(d!==-1)for(let C=0;C<=d;C++){const p=this.stack.shift();(n=(r=this.cbs).onclosetag)===null||n===void 0||n.call(r,p,C!==d)}else this.htmlMode&&h==="p"&&(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}onselfclosingtag(e){this.endIndex=e,this.recognizeSelfClosing||this.foreignContext[0]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}closeCurrentTag(e){var t,r;const n=this.tagname;this.endOpenTag(e),this.stack[0]===n&&((r=(t=this.cbs).onclosetag)===null||r===void 0||r.call(t,n,!e),this.stack.shift())}onattribname(e,t){this.startIndex=e;const r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}onattribdata(e,t){this.attribvalue+=this.getSlice(e,t)}onattribentity(e){this.attribvalue+=Es(e)}onattribend(e,t){var r,n;this.endIndex=t,(n=(r=this.cbs).onattribute)===null||n===void 0||n.call(r,this.attribname,this.attribvalue,e===ge.Double?'"':e===ge.Single?"'":e===ge.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}getInstructionName(e){const t=e.search(tE);let r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}ondeclaration(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const n=this.getInstructionName(r);this.cbs.onprocessinginstruction(`!${n}`,`!${r}`)}this.startIndex=t+1}onprocessinginstruction(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const n=this.getInstructionName(r);this.cbs.onprocessinginstruction(`?${n}`,`?${r}`)}this.startIndex=t+1}oncomment(e,t,r){var n,s,a,u;this.endIndex=t,(s=(n=this.cbs).oncomment)===null||s===void 0||s.call(n,this.getSlice(e,t-r)),(u=(a=this.cbs).oncommentend)===null||u===void 0||u.call(a),this.startIndex=t+1}oncdata(e,t,r){var n,s,a,u,o,l,f,h,d,C;this.endIndex=t;const p=this.getSlice(e,t-r);!this.htmlMode||this.options.recognizeCDATA?((s=(n=this.cbs).oncdatastart)===null||s===void 0||s.call(n),(u=(a=this.cbs).ontext)===null||u===void 0||u.call(a,p),(l=(o=this.cbs).oncdataend)===null||l===void 0||l.call(o)):((h=(f=this.cbs).oncomment)===null||h===void 0||h.call(f,`[CDATA[${p}]]`),(C=(d=this.cbs).oncommentend)===null||C===void 0||C.call(d)),this.startIndex=t+1}onend(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let r=0;r<this.stack.length;r++)this.cbs.onclosetag(this.stack[r],!0)}(t=(e=this.cbs).onend)===null||t===void 0||t.call(e)}reset(){var e,t,r,n;(t=(e=this.cbs).onreset)===null||t===void 0||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,(n=(r=this.cbs).onparserinit)===null||n===void 0||n.call(r,this),this.buffers.length=0,this.foreignContext.length=0,this.foreignContext.unshift(!this.htmlMode),this.bufferOffset=0,this.writeIndex=0,this.ended=!1}parseComplete(e){this.reset(),this.end(e)}getSlice(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();let r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);for(;t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write(e){var t,r;if(this.ended){(r=(t=this.cbs).onerror)===null||r===void 0||r.call(t,new Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}end(e){var t,r;if(this.ended){(r=(t=this.cbs).onerror)===null||r===void 0||r.call(t,new Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}pause(){this.tokenizer.pause()}resume(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex<this.buffers.length;)this.tokenizer.write(this.buffers[this.writeIndex++]);this.ended&&this.tokenizer.end()}parseChunk(e){this.write(e)}done(e){this.end(e)}};function nE(A,e){const t=new s0(void 0,e);return new rE(t,e).end(A),t.root}const sE=xh((A,e,t,r)=>e._useHtmlParser2?nE(A,e):qg(A,e,t,r)),oo=hd(sE,(A,e)=>e._useHtmlParser2?Or(A,e):$g(A));var W=(A=>(A[A.None=0]="None",A[A.Text=1]="Text",A[A.Image=2]="Image",A[A.Video=3]="Video",A[A.Icon=4]="Icon",A[A.Link=5]="Link",A[A.Button=6]="Button",A[A.Block=10]="Block",A))(W||{}),ce;(A=>{A.THEME_TEXT_COLOR_CLASS="gp-designer-theme-text",A.THEME_BUTTON_COLOR_CLASS="gp-designer-theme-button",A.THEME_ICON_COLOR_CLASS="gp-designer-theme-icon",A.THEME_COLOR="#3574e6"})(ce||(ce={}));const aE=c.defineComponent({name:"GpMessage",props:{message:{type:String,required:!0},type:{type:String,default:"info"},position:{type:String,default:"top-right"},duration:{type:Number,default:3e3},onClose:{type:Function,required:!0},icon:{type:Boolean,default:!0}},setup(A){const e=c.ref(!1),t=c.computed(()=>({success:"bg-green-100 text-green-800",error:"bg-red-100 text-red-800",info:"bg-blue-100 text-blue-800",warning:"bg-yellow-100 text-yellow-800"})[A.type]),r=()=>{e.value=!1,A.onClose()};return setTimeout(()=>{r()},A.duration),e.value=!0,{visible:e,typeClass:t,closeMessage:r}}}),Oe=(A,e)=>{const t=A.__vccOpts||A;for(const[r,n]of e)t[r]=n;return t},iE={key:0,class:"gp-message"},uE={key:0,class:"mr-2"},oE={key:0,class:"text-green-500"},cE={key:1,class:"text-red-500"},lE={key:2,class:"text-blue-500"},fE={key:3,class:"text-yellow-500"};function hE(A,e,t,r,n,s){return c.openBlock(),c.createBlock(c.Transition,{name:"fade"},{default:c.withCtx(()=>[A.visible?(c.openBlock(),c.createElementBlock("div",iE,[c.createElementVNode("div",{class:c.normalizeClass([A.typeClass,"message-content"])},[A.icon?(c.openBlock(),c.createElementBlock("span",uE,[c.renderSlot(A.$slots,"icon",{},()=>[A.type==="success"?(c.openBlock(),c.createElementBlock("span",oE,"✔")):c.createCommentVNode("",!0),A.type==="error"?(c.openBlock(),c.createElementBlock("span",cE,"✖")):c.createCommentVNode("",!0),A.type==="info"?(c.openBlock(),c.createElementBlock("span",lE,"ℹ")):c.createCommentVNode("",!0),A.type==="warning"?(c.openBlock(),c.createElementBlock("span",fE,"⚠")):c.createCommentVNode("",!0)],!0)])):c.createCommentVNode("",!0),c.createElementVNode("span",null,c.toDisplayString(A.message),1),c.createElementVNode("button",{class:"close-btn hover:text-gray-800 font-bold",onClick:e[0]||(e[0]=(...a)=>A.closeMessage&&A.closeMessage(...a))}," × ")],2)])):c.createCommentVNode("",!0)]),_:3})}const dE=Oe(aE,[["render",hE],["__scopeId","data-v-12cd136f"]]),pt=c.reactive([]);let Aa=null;const BE=()=>{const A=document.createElement("div");return A.id="global-message-container",document.body.appendChild(A),A},gE=()=>{if(Aa)return;const A=BE();Aa=c.createApp({setup(){return{messageQueue:pt}},render(){const e=c.computed(()=>{var r;return{"top-left":"top-4 left-4","top-right":"top-4 right-4","bottom-left":"bottom-4 left-4","bottom-right":"bottom-4 right-4","top-center":"top-4 left-1/2 transform -translate-x-1/2","bottom-center":"bottom-4 left-1/2 transform -translate-x-1/2"}[((r=pt[0])==null?void 0:r.options.position)||"top-right"]});return c.h("div",{class:`fixed flex flex-col gap-2 ${e.value}`},pt.map(t=>c.h(dE,{key:t.id,...t.options,onClose:()=>co(t.id)})))}}),Aa.mount(A)},co=A=>{const e=pt.findIndex(t=>t.id===A);e!==-1&&pt.splice(e,1)};let EE=0;const $=A=>{gE();const e=EE++;pt.push({id:e,options:A}),setTimeout(()=>{co(e)},A.duration||3e3)};$.success=(A,e=3e3,t=!0)=>{$(typeof A=="string"?{message:A,type:"success",duration:e,icon:t}:{...A,type:"success"})},$.error=(A,e=3e3,t=!0)=>{$(typeof A=="string"?{message:A,type:"error",duration:e,icon:t}:{...A,type:"error"})},$.info=(A,e=3e3,t=!0)=>{$(typeof A=="string"?{message:A,type:"info",duration:e,icon:t}:{...A,type:"info"})},$.warning=(A,e=3e3,t=!0)=>{$(typeof A=="string"?{message:A,type:"warning",duration:e,icon:t}:{...A,type:"warning"})};const mE=["onClick"],pE={key:0,"date-action":"1",contenteditable:"false",class:"text-red-500 text-xs mt-1"},CE=Oe(c.defineComponent({__name:"ElementRenderer",props:{element:{type:Object,required:!0},selectedElement:Object,hoveredElement:Object,uploadByFile:{type:Function,required:!1},icons:{type:Array,default:()=>[]},mode:{type:String,default:"edit"},cropper:{type:Object,required:!1},icon:{type:Object,required:!1},upload:{type:Object,required:!1},r:{type:String,required:!1},showMargin:{type:Boolean,default:!1}},emits:["selectElement","hoverElement","updateText","contentUpdated","blockAction","addIcon","updateElementRule"],setup(A,{emit:e}){const t=A,r=e,n=c.computed(()=>t.selectedElement===t.element),s=c.computed(()=>t.hoveredElement===t.element),a=c.ref(!1),u=c.ref(!1),o=c.ref(""),l=c.computed(()=>t.element.rule.minText||0),f=c.computed(()=>t.element.rule.maxText||1/0),h=S=>{let v="";if(S.children&&S.children.length&&S.children[0].type===W.Block){const J=S.children[0].rule.flexColumn||S.children[0].rule.mobileFlexColumn;Math.min(J,S.children.length)&&(v+=" flex pc:justify-center flex-wrap ",S.children[0].rule.mobileFlexColumn?v+=" justify-center ":v+=" gp-designer-m-swiper swiper-wrapper justify-normal ")}if(S.type===W.Block){const J=S.rule.flexColumn,j=S.rule.mobileFlexColumn;(j||J)&&(v+=" box-border "),j>1&&j<=12?v+=` basis-1/${j} `:j==1?v+=" basis-full ":j||(v+=" gp-designer-m-swiper-slide swiper-slide "),J>1&&J<=12?v+=` pc:basis-1/${J} `:J==1&&(v+=" pc:basis-full ")}return v};c.watch(()=>t.r,()=>{r("contentUpdated",Q())},{immediate:!0});function d(S){S.xpath!="/div[1]"&&t.mode!=="preview"&&(t.mode==="edit"?S.type===W.Text&&r("selectElement",S):r("selectElement",S),!S.rule.isReadOnly&&S.type===W.Text&&(a.value=!0))}function C(S){r("selectElement",S)}function p(S,v){r("hoverElement",S,v)}function T(S){r("hoverElement",S)}function U(S){S.currentTarget.contains(S.relatedTarget)?r("hoverElement",null):t.hoveredElement?r("hoverElement",null,t.hoveredElement.parentxpath):r("hoverElement",null)}function _(){a.value=!1,r("contentUpdated",Q())}function Q(){function S(J){var wA;const j=J,LA=j.rule.isThemeColor&&j.type==W.Text?ce.THEME_TEXT_COLOR_CLASS:j.rule.isThemeColor&&j.type==W.Button?ce.THEME_BUTTON_COLOR_CLASS:j.rule.isThemeColor&&j.type==W.Icon?ce.THEME_ICON_COLOR_CLASS:"";LA?j.attrs.class=j.attrs.class?j.attrs.class+" "+LA:LA:j.attrs.class=(wA=j.attrs.class)==null?void 0:wA.replace(new RegExp(`${ce.THEME_TEXT_COLOR_CLASS}|${ce.THEME_BUTTON_COLOR_CLASS}|${ce.THEME_ICON_COLOR_CLASS}`,"g"),"");const Te={class:j.attrs.class||""},vr=h(j);vr&&(Te.class+=" "+vr);const Lr=Object.entries(J.attrs||{}).filter(([xA,ue])=>xA!=="class").map(([xA,ue])=>`${xA}="${ue}"`).join(" "),xr=Object.entries(Te||{}).map(([xA,ue])=>`${xA}="${ue}"`).join(" "),I=`<${J.tag}${Lr?" "+Lr:""}${xr?" "+xr:""}>`,L=`</${J.tag}>`,K=(J.children||[]).map(xA=>S(xA)).join("");let V=J.editText||J.text||"";return V=V.replace(/\r\n/g,`
9
- `).replace(/\n/g,"<br>"),`${I}${V}${K}${L}`}return S(t.element)}function D(S){var LA,Te;S.preventDefault(),S.stopPropagation();let v=((LA=S.clipboardData)==null?void 0:LA.getData("text/plain"))||"";(Te=t.element.rule)!=null&&Te.allowWrap?(v=v==null?void 0:v.replace(/\n/g,"<br>"),document.execCommand("insertHTML",!1,v)):(v=v==null?void 0:v.replace(/\n/g," "),document.execCommand("insertText",!1,v));const J=S.target,j=J.innerText||J.textContent||"";m(j)}function k(S){var v;S.key==="Enter"&&(S.preventDefault(),S.stopPropagation(),(v=t.element.rule)!=null&&v.allowWrap?document.execCommand("insertLineBreak"):$.error("当前节点不允许换行"))}function x(S){S.stopPropagation();const v=S.target,J=v.innerText||v.textContent||"";m(J)}function m(S){if(S.length<l.value){u.value=!0,o.value=`最少输入 ${l.value} 个字符`;return}else if(S.length>f.value){u.value=!0,o.value=`最多输入 ${f.value} 个字符`;return}else u.value=!1,o.value="";r("updateText",{element:t.element,newText:S}),r("contentUpdated",Q());const v=c.toRaw(t.element);v.editText=S}function H(S){r("updateText",S),r("contentUpdated",Q())}function P(){const S={...t.element};r("blockAction",{action:"add",element:t.element,newBlock:S})}function M(){eA(t.element),r("blockAction",{action:"moveUp",element:t.element})}function eA(S){S.children&&S.children.length>0&&S.children.forEach(v=>{v.type==W.Text&&(v.text!==v.editText&&(v.text=v.editText),eA(v))})}function cA(){eA(t.element),r("blockAction",{action:"moveDown",element:t.element})}function lA(){r("blockAction",{action:"delete",element:t.element})}function q(S){r("blockAction",S),r("contentUpdated",Q())}function rA(S){PA.value.openModal(S)}function uA(S){FA.value.openModal(S)}function fA(S,v){r("addIcon",S,v),r("contentUpdated",Q())}function mA(S){r("updateElementRule",S)}const PA=c.ref(t.icon);c.watch(()=>t.icon,S=>{PA.value=S},{immediate:!0});const FA=c.ref(t.upload);c.watch(()=>t.upload,S=>{FA.value=S},{immediate:!0});const VA=c.computed(()=>{const S=h(t.element);return t.element.css=S,S}),vA=(S,v)=>{v.children&&v.children.length&&v.children[0].type===W.Block&&v.children.map(J=>{J.rule.flexColumn=S}),r("updateElementRule",v)},jA=c.computed(()=>{let S="";if(t.mode==="design"){const v=t.element;if(v.type===W.Block){const J=v.rule.flexColumn;J>1&&J<=12&&(S+=`flex-basis: calc(100% / ${J} - 10px);`)}}return S});return(S,v)=>{const J=c.resolveComponent("ElementRenderer",!0);return c.openBlock(),c.createElementBlock(c.Fragment,null,[(c.openBlock(),c.createBlock(c.resolveDynamicComponent(t.element.tag),c.mergeProps({class:["relative",A.mode==="design"?" border-dashed border-2":"",A.showMargin?"p-1 m-1":"",s.value?"border-dashed border-blue-500":"",n.value?"border-dashed border-green-500 z-10 border-2":"",u.value?"border-dashed border-red-500":"",(!s.value&&!n.value&&!u.value,""),t.element.rule&&t.element.rule.isReadOnly?"cursor-not-allowed":"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Text?c.unref(ce).THEME_TEXT_COLOR_CLASS:"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Button?c.unref(ce).THEME_BUTTON_COLOR_CLASS:"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Icon?c.unref(ce).THEME_ICON_COLOR_CLASS:"",VA.value],style:jA.value},t.element.attrs,{contenteditable:a.value,onClick:v[3]||(v[3]=c.withModifiers(()=>d(t.element),["stop"])),onMouseenter:v[4]||(v[4]=()=>T(t.element)),onMouseleave:U,onBlur:_,onInput:x,onPaste:D,onKeydown:c.withModifiers(k,["stop"])}),{default:c.withCtx(()=>[c.createTextVNode(c.toDisplayString(t.element.text),1),t.element.children&&t.element.children.length?(c.openBlock(),c.createElementBlock(c.Fragment,{key:0},[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(t.element.children,(j,LA)=>(c.openBlock(),c.createBlock(J,{"show-margin":A.showMargin,key:LA,r:A.r,mode:A.mode,icons:A.icons,element:j,selectedElement:t.selectedElement,hoveredElement:t.hoveredElement,cropper:A.cropper,icon:A.icon,upload:A.upload,"upload-by-file":A.uploadByFile,onSelectElement:C,onHoverElement:p,onUpdateText:H,onBlockAction:q,onAddIcon:fA,onUpdateElementRule:()=>mA(j)},null,8,["show-margin","r","mode","icons","element","selectedElement","hoveredElement","cropper","icon","upload","upload-by-file","onUpdateElementRule"]))),128)),t.element.type===c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",{key:0,"date-action":"1",contenteditable:"false",onClick:v[0]||(v[0]=c.withModifiers(()=>{},["stop"])),class:"hover:z-10 z-1 flex space-x-1 flex-none flex-nowrap overflow-visible absolute left-2 top-2 text-sm"},[c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-green-500/80 text-white rounded hover:bg-green-500",onClick:c.withModifiers(P,["stop"])},v[7]||(v[7]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("rect",{width:"336",height:"336",x:"128",y:"128",fill:"none",stroke:"white","stroke-linejoin":"round","stroke-width":"32",rx:"57",ry:"57"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m383.5 128l.5-24a56.16 56.16 0 0 0-56-56H112a64.19 64.19 0 0 0-64 64v216a56.16 56.16 0 0 0 56 56h24"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-blue-500/80 text-white rounded hover:bg-blue-500",onClick:c.withModifiers(M,["stop"])},v[8]||(v[8]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"48",d:"M244 400L100 256l144-144M120 256h292"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-blue-500/80 text-white rounded hover:bg-blue-500",onClick:c.withModifiers(cA,["stop"])},v[9]||(v[9]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"48",d:"m268 112l144 144l-144 144m124-144H100"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-red-500/80 text-white rounded hover:bg-red-500",onClick:c.withModifiers(lA,["stop"])},v[10]||(v[10]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M400 256H112"})],-1)]))])):c.createCommentVNode("",!0),t.element.children&&t.element.children.length&&t.element.children[0].type===c.unref(W).Block&&t.element.children[0].rule&&t.element.children[0].rule.flexColumns&&t.element.children[0].rule.flexColumns.length>0?(c.openBlock(),c.createElementBlock("div",{key:1,"date-action":"1",contenteditable:"false",onClick:v[1]||(v[1]=c.withModifiers(()=>{},["stop"])),class:"hover:z-10 z-1 flex space-x-1 flex-none flex-nowrap overflow-visible absolute right-0 -top-6 items-center"},[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(t.element.children[0].rule.flexColumns,(j,LA)=>(c.openBlock(),c.createElementBlock("button",{class:c.normalizeClass(["text-xs w-6 h-6 flex-none content-center items-center justify-center bg-purple-400/80 text-white rounded hover:bg-purple-600",t.element.children[0].rule.flexColumn===j?"bg-purple-700":""]),onClick:c.withModifiers(()=>vA(j,t.element),["stop"])},c.toDisplayString(j),11,mE))),256))])):c.createCommentVNode("",!0)],64)):c.createCommentVNode("",!0),t.element.type===c.unref(W).Icon?(c.openBlock(),c.createElementBlock("div",{key:1,class:"cursor-pointer rounded-sm w-5 h-5 flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm text-gray-50 z-10 bg-black/80 hover:bg-black",contenteditable:"false",onClick:v[2]||(v[2]=c.withModifiers(()=>rA(t.element),["stop"]))},v[11]||(v[11]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M320 367.79h76c55 0 100-29.21 100-83.6s-53-81.47-96-83.6c-8.89-85.06-71-136.8-144-136.8c-69 0-113.44 45.79-128 91.2c-60 5.7-112 43.88-112 106.4s54 106.4 120 106.4h56"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m320 255.79l-64-64l-64 64m64 192.42V207.79"})],-1)]))):c.createCommentVNode("",!0)]),_:1},16,["class","style","contenteditable"])),t.element.type==c.unref(W).Text&&u.value?(c.openBlock(),c.createElementBlock("div",pE,c.toDisplayString(o.value),1)):c.createCommentVNode("",!0),t.element.type===c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",{key:1,class:"cursor-pointer rounded-sm flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm text-gray-50 z-10 bg-black/80 hover:bg-black",onClick:v[6]||(v[6]=c.withModifiers(()=>{},["stop"])),contenteditable:"false"},[c.createElementVNode("div",{class:"p-1",onClick:v[5]||(v[5]=c.withModifiers(()=>uA(t.element),["stop"]))},v[12]||(v[12]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M320 367.79h76c55 0 100-29.21 100-83.6s-53-81.47-96-83.6c-8.89-85.06-71-136.8-144-136.8c-69 0-113.44 45.79-128 91.2c-60 5.7-112 43.88-112 106.4s54 106.4 120 106.4h56"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m320 255.79l-64-64l-64 64m64 192.42V207.79"})],-1)]))])):c.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-ad57dab2"]]),wE=c.defineComponent({name:"GpCheckbox",props:{modelValue:{type:Boolean,required:!0},label:{type:String,default:""}},emits:["update:modelValue"],setup(A,{emit:e}){return{updateValue:r=>{e("update:modelValue",r.target.checked)}}}}),TE={class:"form-group"},bE={class:"flex items-center space-x-2 cursor-pointer"},UE=["checked","aria-checked"],QE={class:"checkbox-label text-sm text-gray-700"};function FE(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",TE,[c.createElementVNode("label",bE,[c.createElementVNode("input",{type:"checkbox",checked:A.modelValue,onChange:e[0]||(e[0]=(...a)=>A.updateValue&&A.updateValue(...a)),class:"custom-checkbox","aria-checked":A.modelValue},null,40,UE),c.createElementVNode("span",QE,c.toDisplayString(A.label),1)])])}const Ct=Oe(wE,[["render",FE],["__scopeId","data-v-68b8f276"]]),IE={class:"text-sm"},_E={key:0},yE={key:0},NE={class:"text-gray-500 my-2 truncate"},SE={class:"text-gray-500 my-2 break-words"},vE={key:1},LE={key:2},xE={key:3},HE={key:4},DE={key:5},OE={key:6},RE={key:7},ME={key:8},kE={key:9},PE={key:10},KE={key:11},VE={key:12},GE={key:13},YE=Oe(c.defineComponent({__name:"EditorPanel",props:{element:Object},emits:["updateElement"],setup(A,{emit:e}){const t=A,r=e,n=c.ref({rule:{},...t.element});c.watch(()=>t.element,a=>{n.value={rule:{},...a}},{immediate:!0});function s(){var a;if(n.value.type===W.Icon&&!n.value.attrs.class.includes("iconfont")){$.error("图标仅支持 iconfont 图标");return}if(n.value.type===W.Image&&n.value.tag!=="img"){$.error("节点类型错误");return}if(n.value.type===W.Video&&n.value.tag!=="video"){$.error("节点类型错误");return}if(n.value.type===W.Link&&n.value.tag!=="a"){$.error("节点类型错误");return}if(n.value.type===W.Text){if(Number(n.value.rule.minText)>Number(n.value.rule.maxText)){$.error("最小文本长度不能大于最大文本长度");return}if(n.value.tag!=="p"&&n.value.tag!=="div"&&n.value.tag!=="span"&&n.value.tag!=="h1"&&n.value.tag!=="h2"&&n.value.tag!=="h3"&&n.value.tag!=="h4"&&n.value.tag!=="h5"&&n.value.tag!=="h6"){$.error("节点类型错误");return}}if(n.value.type===W.Block){if(Number(n.value.rule.minBlock)>Number(n.value.rule.maxBlock)){$.error("最小块数量不能大于最大块数量");return}if(n.value.tag!=="div"&&n.value.tag!=="section"&&n.value.tag!=="article"&&n.value.tag!=="nav"&&n.value.tag!=="header"&&n.value.tag!=="footer"&&n.value.tag!=="span"&&n.value.tag!=="p"&&n.value.tag!=="img"){$.error("节点类型错误");return}if(!n.value.children||n.value.children.length<1){$.error("节点错误,必须包含子元素");return}!n.value.rule.flexColumn&&((a=n.value.rule.flexColumns)==null?void 0:a.length)>0&&(n.value.rule.flexColumn=n.value.rule.flexColumns[0])}n.value.rule.minText&&(n.value.rule.minText=Number(n.value.rule.minText)),n.value.rule.maxText&&(n.value.rule.maxText=Number(n.value.rule.maxText)),n.value.rule.minBlock&&(n.value.rule.minBlock=Number(n.value.rule.minBlock)),n.value.rule.maxBlock&&(n.value.rule.maxBlock=Number(n.value.rule.maxBlock)),n.value.rule.flexColumn&&(n.value.rule.flexColumn=Number(n.value.rule.flexColumn)),n.value.rule.mobileFlexColumn&&(n.value.rule.mobileFlexColumn=Number(n.value.rule.mobileFlexColumn)),r("updateElement",n.value)}return(a,u)=>(c.openBlock(),c.createElementBlock("div",IE,[n.value?(c.openBlock(),c.createElementBlock("div",_E,[n.value.text!==void 0?(c.openBlock(),c.createElementBlock("div",yE,[u[16]||(u[16]=c.createElementVNode("label",{class:"block"},"内容",-1)),c.createElementVNode("div",NE,c.toDisplayString(n.value.text||"-"),1)])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[u[17]||(u[17]=c.createElementVNode("label",{class:"block mt-4"},"节点",-1)),c.createElementVNode("div",SE,c.toDisplayString(n.value.xpath),1)]),c.createElementVNode("div",null,[u[19]||(u[19]=c.createElementVNode("label",{class:"block mt-4"},"类型",-1)),c.withDirectives(c.createElementVNode("select",{"onUpdate:modelValue":u[0]||(u[0]=o=>n.value.type=o),class:"border rounded p-1 w-full"},u[18]||(u[18]=[c.createElementVNode("option",{value:0},"无",-1),c.createElementVNode("option",{value:1},"文本",-1),c.createElementVNode("option",{value:2},"图片",-1),c.createElementVNode("option",{value:3},"视频",-1),c.createElementVNode("option",{value:4},"图标",-1),c.createElementVNode("option",{value:5},"链接",-1),c.createElementVNode("option",{value:6},"按钮",-1),c.createElementVNode("option",{value:10},"块",-1)]),512),[[c.vModelSelect,n.value.type]])]),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",vE,[u[20]||(u[20]=c.createElementVNode("label",{class:"block mt-4"},"最小文本长度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[1]||(u[1]=o=>n.value.rule.minText=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minText]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",LE,[u[21]||(u[21]=c.createElementVNode("label",{class:"block mt-4"},"最大文本长度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[2]||(u[2]=o=>n.value.rule.maxText=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxText]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",xE,[u[22]||(u[22]=c.createElementVNode("label",{class:"block mt-4"},"是否裁剪",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.crop,"onUpdate:modelValue":u[3]||(u[3]=o=>n.value.rule.crop=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",HE,[u[23]||(u[23]=c.createElementVNode("label",{class:"block mt-4"},"图片宽度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[4]||(u[4]=o=>n.value.rule.minImageWidth=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minImageWidth]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",DE,[u[24]||(u[24]=c.createElementVNode("label",{class:"block mt-4"},"图片高度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[5]||(u[5]=o=>n.value.rule.maxImageHeight=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxImageHeight]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",OE,[u[25]||(u[25]=c.createElementVNode("label",{class:"block mt-4"},"块最小数量",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[6]||(u[6]=o=>n.value.rule.minBlock=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minBlock]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",RE,[u[26]||(u[26]=c.createElementVNode("label",{class:"block mt-4"},"块最大数量",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[7]||(u[7]=o=>n.value.rule.maxBlock=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxBlock]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",ME,[u[28]||(u[28]=c.createElementVNode("label",{class:"block mt-4"},"PC端每行列数",-1)),c.withDirectives(c.createElementVNode("select",{multiple:"","onUpdate:modelValue":u[8]||(u[8]=o=>n.value.rule.flexColumns=o),class:"border rounded p-1 w-full"},u[27]||(u[27]=[c.createElementVNode("option",{value:1},"1",-1),c.createElementVNode("option",{value:2},"2",-1),c.createElementVNode("option",{value:3},"3",-1),c.createElementVNode("option",{value:4},"4",-1),c.createElementVNode("option",{value:5},"5",-1),c.createElementVNode("option",{value:6},"6",-1),c.createElementVNode("option",{value:7},"7",-1),c.createElementVNode("option",{value:8},"8",-1),c.createElementVNode("option",{value:9},"9",-1),c.createElementVNode("option",{value:10},"10",-1),c.createElementVNode("option",{value:11},"11",-1),c.createElementVNode("option",{value:12},"12",-1)]),512),[[c.vModelSelect,n.value.rule.flexColumns]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",kE,[u[29]||(u[29]=c.createElementVNode("label",{class:"block mt-4"},"移动端每行列数",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[9]||(u[9]=o=>n.value.rule.mobileFlexColumn=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.mobileFlexColumn]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text||n.value.type==c.unref(W).Icon||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",PE,[u[30]||(u[30]=c.createElementVNode("label",{class:"block mt-4"},"主题色",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.isThemeColor,"onUpdate:modelValue":u[10]||(u[10]=o=>n.value.rule.isThemeColor=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[u[31]||(u[31]=c.createElementVNode("label",{class:"block mt-4"},"是否必填",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.isRequired,"onUpdate:modelValue":u[11]||(u[11]=o=>n.value.rule.isRequired=o),label:"是"},null,8,["modelValue"])]),c.createElementVNode("div",null,[u[32]||(u[32]=c.createElementVNode("label",{class:"block mt-4"},"是否只读",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.isReadOnly,"onUpdate:modelValue":u[12]||(u[12]=o=>n.value.rule.isReadOnly=o),label:"是"},null,8,["modelValue"])]),n.value.type==c.unref(W).Link||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",KE,[u[33]||(u[33]=c.createElementVNode("label",{class:"block mt-4"},"打开美洽",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.openMeiqia,"onUpdate:modelValue":u[13]||(u[13]=o=>n.value.rule.openMeiqia=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Link||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",VE,[u[34]||(u[34]=c.createElementVNode("label",{class:"block mt-4"},"链接",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[14]||(u[14]=o=>n.value.rule.linkUrl=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.linkUrl]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",GE,[u[35]||(u[35]=c.createElementVNode("label",{class:"block mt-4"},"允许换行(回车/粘贴多段文本等)",-1)),c.createVNode(Ct,{class:"py-2",modelValue:n.value.rule.allowWrap,"onUpdate:modelValue":u[15]||(u[15]=o=>n.value.rule.allowWrap=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0)])):c.createCommentVNode("",!0),c.createElementVNode("button",{onClick:s,class:"mt-4 p-2 bg-green-500 text-white rounded"}," 保存 ")]))}}),[["__scopeId","data-v-ae3bfa9e"]]);/*!
6
+ )`,enabled:":not(:disabled)",checked:":is(:is(input[type=radio], input[type=checkbox])[checked], option:selected)",required:":is(input, select, textarea)[required]",optional:":is(input, select, textarea):not([required])",selected:"option:is([selected], select:not([multiple]):not(:has(> option[selected])) > :first-of-type)",checkbox:"[type=checkbox]",file:"[type=file]",password:"[type=password]",radio:"[type=radio]",reset:"[type=reset]",image:"[type=image]",submit:"[type=submit]",parent:":not(:empty)",header:":is(h1, h2, h3, h4, h5, h6)",button:":is(button, input[type=button])",input:":is(input, textarea, select, button)",text:"input:is(:not([type!='']), [type=text])"},Au={};function Hf(A,e){return A===Z.falseFunc?Z.falseFunc:t=>e.isTag(t)&&A(t)}function eu(A,e){const t=e.getSiblings(A);if(t.length<=1)return[];const r=t.indexOf(A);return r<0||r===t.length-1?[]:t.slice(r+1).filter(e.isTag)}function xs(A){return{xmlMode:!!A.xmlMode,lowerCaseAttributeNames:!!A.lowerCaseAttributeNames,lowerCaseTags:!!A.lowerCaseTags,quirksMode:!!A.quirksMode,cacheResults:!!A.cacheResults,pseudos:A.pseudos,adapter:A.adapter,equals:A.equals}}const Hs=(A,e,t,r,n)=>{const s=n(e,xs(t),r);return s===Z.trueFunc?A:s===Z.falseFunc?Z.falseFunc:a=>s(a)&&A(a)},Ds={is:Hs,matches:Hs,where:Hs,not(A,e,t,r,n){const s=n(e,xs(t),r);return s===Z.falseFunc?A:s===Z.trueFunc?Z.falseFunc:a=>!s(a)&&A(a)},has(A,e,t,r,n){const{adapter:s}=t,a=xs(t);a.relativeSelector=!0;const u=e.some(f=>f.some(Ss))?[Au]:void 0,o=n(e,a,u);if(o===Z.falseFunc)return Z.falseFunc;const l=Hf(o,s);if(u&&o!==Z.trueFunc){const{shouldTestNextSiblings:f=!1}=o;return h=>{if(!A(h))return!1;u[0]=h;const d=s.getChildren(h),C=f?[...d,...eu(h,s)]:d;return s.existsOne(l,C)}}return f=>A(f)&&s.existsOne(l,s.getChildren(f))}};function Df(A,e,t,r,n){var s;const{name:a,data:u}=e;if(Array.isArray(u)){if(!(a in Ds))throw new Error(`Unknown pseudo-class :${a}(${u})`);return Ds[a](A,u,t,r,n)}const o=(s=t.pseudos)===null||s===void 0?void 0:s[a],l=typeof o=="string"?o:xf[a];if(typeof l=="string"){if(u!=null)throw new Error(`Pseudo ${a} doesn't have any arguments`);const f=Wr(l);return Ds.is(A,f,t,r,n)}if(typeof o=="function")return zi(o,a,u,1),f=>o(f,u)&&A(f);if(a in vs)return vs[a](A,u,t,r);if(a in Zi){const f=Zi[a];return zi(f,a,u,2),h=>f(h,t,u)&&A(h)}throw new Error(`Unknown pseudo-class :${a}`)}function Os(A,e){const t=e.getParent(A);return t&&e.isTag(t)?t:null}function Of(A,e,t,r,n){const{adapter:s,equals:a}=t;switch(e.type){case G.PseudoElement:throw new Error("Pseudo-elements are not supported by css-select");case G.ColumnCombinator:throw new Error("Column combinators are not yet supported by css-select");case G.Attribute:{if(e.namespace!=null)throw new Error("Namespaced attributes are not yet supported by css-select");return(!t.xmlMode||t.lowerCaseAttributeNames)&&(e.name=e.name.toLowerCase()),yf[e.action](A,e,t)}case G.Pseudo:return Df(A,e,t,r,n);case G.Tag:{if(e.namespace!=null)throw new Error("Namespaced tag names are not yet supported by css-select");let{name:u}=e;return(!t.xmlMode||t.lowerCaseTags)&&(u=u.toLowerCase()),function(l){return s.getName(l)===u&&A(l)}}case G.Descendant:{if(t.cacheResults===!1||typeof WeakSet>"u")return function(l){let f=l;for(;f=Os(f,s);)if(A(f))return!0;return!1};const u=new WeakSet;return function(l){let f=l;for(;f=Os(f,s);)if(!u.has(f)){if(s.isTag(f)&&A(f))return!0;u.add(f)}return!1}}case"_flexibleDescendant":return function(o){let l=o;do if(A(l))return!0;while(l=Os(l,s));return!1};case G.Parent:return function(o){return s.getChildren(o).some(l=>s.isTag(l)&&A(l))};case G.Child:return function(o){const l=s.getParent(o);return l!=null&&s.isTag(l)&&A(l)};case G.Sibling:return function(o){const l=s.getSiblings(o);for(let f=0;f<l.length;f++){const h=l[f];if(a(o,h))break;if(s.isTag(h)&&A(h))return!0}return!1};case G.Adjacent:return s.prevElementSibling?function(o){const l=s.prevElementSibling(o);return l!=null&&A(l)}:function(o){const l=s.getSiblings(o);let f;for(let h=0;h<l.length;h++){const d=l[h];if(a(o,d))break;s.isTag(d)&&(f=d)}return!!f&&A(f)};case G.Universal:{if(e.namespace!=null&&e.namespace!=="*")throw new Error("Namespaced universal selectors are not yet supported by css-select");return A}}}function tu(A){return A.type===G.Pseudo&&(A.name==="scope"||Array.isArray(A.data)&&A.data.some(e=>e.some(tu)))}const Rf={type:G.Descendant},Mf={type:"_flexibleDescendant"},kf={type:G.Pseudo,name:"scope",data:null};function Pf(A,{adapter:e},t){const r=!!(t!=null&&t.every(n=>{const s=e.isTag(n)&&e.getParent(n);return n===Au||s&&e.isTag(s)}));for(const n of A){if(!(n.length>0&&Ss(n[0])&&n[0].type!==G.Descendant))if(r&&!n.some(tu))n.unshift(Rf);else continue;n.unshift(kf)}}function ru(A,e,t){var r;A.forEach(Ff),t=(r=e.context)!==null&&r!==void 0?r:t;const n=Array.isArray(t),s=t&&(Array.isArray(t)?t:[t]);if(e.relativeSelector!==!1)Pf(A,e,s);else if(A.some(o=>o.length>0&&Ss(o[0])))throw new Error("Relative selectors are not allowed when the `relativeSelector` option is disabled");let a=!1;const u=A.map(o=>{if(o.length>=2){const[l,f]=o;l.type!==G.Pseudo||l.name!=="scope"||(n&&f.type===G.Descendant?o[1]=Mf:(f.type===G.Adjacent||f.type===G.Sibling)&&(a=!0))}return Kf(o,e,s)}).reduce(Vf,Z.falseFunc);return u.shouldTestNextSiblings=a,u}function Kf(A,e,t){var r;return A.reduce((n,s)=>n===Z.falseFunc?Z.falseFunc:Of(n,s,e,t,ru),(r=e.rootFunc)!==null&&r!==void 0?r:Z.trueFunc)}function Vf(A,e){return e===Z.falseFunc||A===Z.trueFunc?A:A===Z.falseFunc||e===Z.trueFunc?e:function(r){return A(r)||e(r)}}const nu=(A,e)=>A===e,Gf={adapter:Gr,equals:nu};function Yf(A){var e,t,r,n;const s=A??Gf;return(e=s.adapter)!==null&&e!==void 0||(s.adapter=Gr),(t=s.equals)!==null&&t!==void 0||(s.equals=(n=(r=s.adapter)===null||r===void 0?void 0:r.equals)!==null&&n!==void 0?n:nu),s}function Xf(A){return function(t,r,n){const s=Yf(r);return A(t,s,n)}}const Rs=Xf(ru);function su(A,e,t=!1){return t&&(A=Wf(A,e)),Array.isArray(A)?e.removeSubsets(A):e.getChildren(A)}function Wf(A,e){const t=Array.isArray(A)?A.slice(0):[A],r=t.length;for(let n=0;n<r;n++){const s=eu(t[n],e);t.push(...s)}return t}const Jf=new Set(["first","last","eq","gt","nth","lt","even","odd"]);function $r(A){return A.type!=="pseudo"?!1:Jf.has(A.name)?!0:A.name==="not"&&Array.isArray(A.data)?A.data.some(e=>e.some($r)):!1}function qf(A,e,t){const r=e!=null?parseInt(e,10):NaN;switch(A){case"first":return 1;case"nth":case"eq":return isFinite(r)?r>=0?r+1:1/0:0;case"lt":return isFinite(r)?r>=0?Math.min(r,t):1/0:0;case"gt":return isFinite(r)?1/0:0;case"odd":return 2*t;case"even":return 2*t-1;case"last":case"not":return 1/0}}function jf(A){for(;A.parent;)A=A.parent;return A}function Ms(A){const e=[],t=[];for(const r of A)r.some($r)?e.push(r):t.push(r);return[t,e]}const $f={type:G.Universal,namespace:null},Zf={type:G.Pseudo,name:"scope",data:null};function au(A,e,t={}){return iu([A],e,t)}function iu(A,e,t={}){if(typeof e=="function")return A.some(e);const[r,n]=Ms(Wr(e));return r.length>0&&A.some(Rs(r,t))||n.some(s=>cu(s,A,t).length>0)}function zf(A,e,t,r){const n=typeof t=="string"?parseInt(t,10):NaN;switch(A){case"first":case"lt":return e;case"last":return e.length>0?[e[e.length-1]]:e;case"nth":case"eq":return isFinite(n)&&Math.abs(n)<e.length?[n<0?e[e.length+n]:e[n]]:[];case"gt":return isFinite(n)?e.slice(n+1):[];case"even":return e.filter((s,a)=>a%2===0);case"odd":return e.filter((s,a)=>a%2===1);case"not":{const s=new Set(ou(t,e,r));return e.filter(a=>!s.has(a))}}}function uu(A,e,t={}){return ou(Wr(A),e,t)}function ou(A,e,t){if(e.length===0)return[];const[r,n]=Ms(A);let s;if(r.length){const a=Ps(e,r,t);if(n.length===0)return a;a.length&&(s=new Set(a))}for(let a=0;a<n.length&&(s==null?void 0:s.size)!==e.length;a++){const u=n[a];if((s?e.filter(f=>X(f)&&!s.has(f)):e).length===0)break;const l=cu(u,e,t);if(l.length)if(s)l.forEach(f=>s.add(f));else{if(a===n.length-1)return l;s=new Set(l)}}return typeof s<"u"?s.size===e.length?e:e.filter(a=>s.has(a)):[]}function cu(A,e,t){var r;if(A.some(Gt)){const n=(r=t.root)!==null&&r!==void 0?r:jf(e[0]),s={...t,context:e,relativeSelector:!1};return A.push(Zf),Zr(n,A,s,!0,e.length)}return Zr(e,A,t,!1,e.length)}function Ah(A,e,t={},r=1/0){if(typeof A=="function")return lu(e,A);const[n,s]=Ms(Wr(A)),a=s.map(u=>Zr(e,u,t,!0,r));return n.length&&a.push(ks(e,n,t,r)),a.length===0?[]:a.length===1?a[0]:Bt(a.reduce((u,o)=>[...u,...o]))}function Zr(A,e,t,r,n){const s=e.findIndex($r),a=e.slice(0,s),u=e[s],o=e.length-1===s?n:1/0,l=qf(u.name,u.data,o);if(l===0)return[];const h=(a.length===0&&!Array.isArray(A)?kr(A).filter(X):a.length===0?(Array.isArray(A)?A:[A]).filter(X):r||a.some(Gt)?ks(A,[a],t,l):Ps(A,[a],t)).slice(0,l);let d=zf(u.name,h,u.data,t);if(d.length===0||e.length===s+1)return d;const C=e.slice(s+1),p=C.some(Gt);if(p){if(Gt(C[0])){const{type:T}=C[0];(T===G.Sibling||T===G.Adjacent)&&(d=su(d,Gr,!0)),C.unshift($f)}t={...t,relativeSelector:!1,rootFunc:T=>d.includes(T)}}else t.rootFunc&&t.rootFunc!==Jr.trueFunc&&(t={...t,rootFunc:Jr.trueFunc});return C.some($r)?Zr(d,C,t,!1,n):p?ks(d,[C],t,n):Ps(d,[C],t)}function ks(A,e,t,r){const n=Rs(e,t,A);return lu(A,n,r)}function lu(A,e,t=1/0){const r=su(A,Gr,e.shouldTestNextSiblings);return bs(n=>X(n)&&e(n),r,!0,t)}function Ps(A,e,t){const r=(Array.isArray(A)?A:[A]).filter(X);if(r.length===0)return r;const n=Rs(e,t);return n===Jr.trueFunc?r:r.filter(n)}const eh=/^\s*[+~]/;function th(A){if(!A)return this._make([]);if(typeof A!="string"){const e=be(A)?A.toArray():[A],t=this.toArray();return this._make(e.filter(r=>t.some(n=>Di(n,r))))}return this._findBySelector(A,Number.POSITIVE_INFINITY)}function rh(A,e){var t;const r=this.toArray(),n=eh.test(A)?r:this.children().toArray(),s={context:r,root:(t=this._root)===null||t===void 0?void 0:t[0],xmlMode:this.options.xmlMode,lowerCaseTags:this.options.lowerCaseTags,lowerCaseAttributeNames:this.options.lowerCaseAttributeNames,pseudos:this.options.pseudos,quirksMode:this.options.quirksMode};return this._make(Ah(A,n,s,e))}function Ks(A){return function(e,...t){return function(r){var n;let s=A(e,this);return r&&(s=Ys(s,r,this.options.xmlMode,(n=this._root)===null||n===void 0?void 0:n[0])),this._make(this.length>1&&s.length>1?t.reduce((a,u)=>u(a),s):s)}}}const Xt=Ks((A,e)=>{let t=[];for(let r=0;r<e.length;r++){const n=A(e[r]);n.length>0&&(t=t.concat(n))}return t}),Vs=Ks((A,e)=>{const t=[];for(let r=0;r<e.length;r++){const n=A(e[r]);n!==null&&t.push(n)}return t});function Gs(A,...e){let t=null;const r=Ks((n,s)=>{const a=[];return mA(s,u=>{for(let o;(o=n(u))&&!(t!=null&&t(o,a.length));u=o)a.push(o)}),a})(A,...e);return function(n,s){t=typeof n=="string"?u=>au(u,n,this.options):n?Wt(n):null;const a=r.call(this,s);return t=null,a}}function Et(A){return A.length>1?Array.from(new Set(A)):A}const nh=Vs(({parent:A})=>A&&!Se(A)?A:null,Et),sh=Xt(A=>{const e=[];for(;A.parent&&!Se(A.parent);)e.push(A.parent),A=A.parent;return e},Bt,A=>A.reverse()),ah=Gs(({parent:A})=>A&&!Se(A)?A:null,Bt,A=>A.reverse());function ih(A){var e;const t=[];if(!A)return this._make(t);const r={xmlMode:this.options.xmlMode,root:(e=this._root)===null||e===void 0?void 0:e[0]},n=typeof A=="string"?s=>au(s,A,r):Wt(A);return mA(this,s=>{for(s&&!Se(s)&&!X(s)&&(s=s.parent);s&&X(s);){if(n(s,0)){t.includes(s)||t.push(s);break}s=s.parent}}),this._make(t)}const uh=Vs(A=>ws(A)),oh=Xt(A=>{const e=[];for(;A.next;)A=A.next,X(A)&&e.push(A);return e},Et),ch=Gs(A=>ws(A),Et),lh=Vs(A=>Ts(A)),fh=Xt(A=>{const e=[];for(;A.prev;)A=A.prev,X(A)&&e.push(A);return e},Et),hh=Gs(A=>Ts(A),Et),dh=Xt(A=>yi(A).filter(e=>X(e)&&e!==A),Bt),Bh=Xt(A=>kr(A).filter(X),Et);function gh(){const A=this.toArray().reduce((e,t)=>yA(t)?e.concat(t.children):e,[]);return this._make(A)}function Eh(A){let e=0;const t=this.length;for(;e<t&&A.call(this[e],e,this[e])!==!1;)++e;return this}function mh(A){let e=[];for(let t=0;t<this.length;t++){const r=this[t],n=A.call(r,t,r);n!=null&&(e=e.concat(n))}return this._make(e)}function Wt(A){return typeof A=="function"?(e,t)=>A.call(e,t,e):be(A)?e=>Array.prototype.includes.call(A,e):function(e){return A===e}}function ph(A){var e;return this._make(Ys(this.toArray(),A,this.options.xmlMode,(e=this._root)===null||e===void 0?void 0:e[0]))}function Ys(A,e,t,r){return typeof e=="string"?uu(e,A,{xmlMode:t,root:r}):A.filter(Wt(e))}function Ch(A){const e=this.toArray();return typeof A=="string"?iu(e.filter(X),A,this.options):A?e.some(Wt(A)):!1}function wh(A){let e=this.toArray();if(typeof A=="string"){const t=new Set(uu(A,e,this.options));e=e.filter(r=>!t.has(r))}else{const t=Wt(A);e=e.filter((r,n)=>!t(r,n))}return this._make(e)}function Th(A){return this.filter(typeof A=="string"?`:has(${A})`:(e,t)=>this._make(t).find(A).length>0)}function bh(){return this.length>1?this._make(this[0]):this}function Uh(){return this.length>0?this._make(this[this.length-1]):this}function Qh(A){var e;return A=+A,A===0&&this.length<=1?this:(A<0&&(A=this.length+A),this._make((e=this[A])!==null&&e!==void 0?e:[]))}function Fh(A){return A==null?this.toArray():this[A<0?this.length+A:A]}function Ih(){return Array.prototype.slice.call(this)}function _h(A){let e,t;return A==null?(e=this.parent().children(),t=this[0]):typeof A=="string"?(e=this._make(A),t=this[0]):(e=this,t=be(A)?A[0]:A),Array.prototype.indexOf.call(e,t)}function yh(A,e){return this._make(Array.prototype.slice.call(this,A,e))}function Nh(){var A;return(A=this.prevObject)!==null&&A!==void 0?A:this._make([])}function Sh(A,e){const t=this._make(A,e),r=Bt([...this.get(),...t.get()]);return this._make(r)}function vh(A){return this.prevObject?this.add(A?this.prevObject.filter(A):this.prevObject):this}const Lh=Object.freeze(Object.defineProperty({__proto__:null,_findBySelector:rh,add:Sh,addBack:vh,children:Bh,closest:ih,contents:gh,each:Eh,end:Nh,eq:Qh,filter:ph,filterArray:Ys,find:th,first:bh,get:Fh,has:Th,index:_h,is:Ch,last:Uh,map:mh,next:uh,nextAll:oh,nextUntil:ch,not:wh,parent:nh,parents:sh,parentsUntil:ah,prev:lh,prevAll:fh,prevUntil:hh,siblings:dh,slice:yh,toArray:Ih},Symbol.toStringTag,{value:"Module"}));function xh(A){return function(t,r,n,s){if(typeof Buffer<"u"&&Buffer.isBuffer(t)&&(t=t.toString()),typeof t=="string")return A(t,r,n,s);const a=t;if(!Array.isArray(a)&&Se(a))return a;const u=new Ze([]);return tt(a,u),u}}function tt(A,e){const t=Array.isArray(A)?A:[A];e?e.children=t:e=null;for(let r=0;r<t.length;r++){const n=t[r];n.parent&&n.parent.children!==t&&ze(n),e?(n.prev=t[r-1]||null,n.next=t[r+1]||null):n.prev=n.next=null,n.parent=e}return e}function Hh(A,e){if(A==null)return[];if(typeof A=="string")return this._parse(A,this.options,!1,null).children.slice(0);if("length"in A){if(A.length===1)return this._makeDomArray(A[0],e);const t=[];for(let r=0;r<A.length;r++){const n=A[r];if(typeof n=="object"){if(n==null)continue;if(!("length"in n)){t.push(e?kt(n,!0):n);continue}}t.push(...this._makeDomArray(n,e))}return t}return[e?kt(A,!0):A]}function fu(A){return function(...e){const t=this.length-1;return mA(this,(r,n)=>{if(!yA(r))return;const s=typeof e[0]=="function"?e[0].call(r,n,this._render(r.children)):e,a=this._makeDomArray(s,n<t);A(a,r.children,r)})}}function xe(A,e,t,r,n){var s,a;const u=[e,t,...r],o=e===0?null:A[e-1],l=e+t>=A.length?null:A[e+t];for(let f=0;f<r.length;++f){const h=r[f],d=h.parent;if(d){const p=d.children.indexOf(h);p>-1&&(d.children.splice(p,1),n===d&&e>p&&u[0]--)}h.parent=n,h.prev&&(h.prev.next=(s=h.next)!==null&&s!==void 0?s:null),h.next&&(h.next.prev=(a=h.prev)!==null&&a!==void 0?a:null),h.prev=f===0?o:r[f-1],h.next=f===r.length-1?l:r[f+1]}return o&&(o.next=r[0]),l&&(l.prev=r[r.length-1]),A.splice(...u)}function Dh(A){return(be(A)?A:this._make(A)).append(this),this}function Oh(A){return(be(A)?A:this._make(A)).prepend(this),this}const Rh=fu((A,e,t)=>{xe(e,e.length,0,A,t)}),Mh=fu((A,e,t)=>{xe(e,0,0,A,t)});function hu(A){return function(e){const t=this.length-1,r=this.parents().last();for(let n=0;n<this.length;n++){const s=this[n],a=typeof e=="function"?e.call(s,n,s):typeof e=="string"&&!Fs(e)?r.find(e).clone():e,[u]=this._makeDomArray(a,n<t);if(!u||!yA(u))continue;let o=u,l=0;for(;l<o.children.length;){const f=o.children[l];X(f)?(o=f,l=0):l++}A(s,o,[u])}return this}}const kh=hu((A,e,t)=>{const{parent:r}=A;if(!r)return;const n=r.children,s=n.indexOf(A);tt([A],e),xe(n,s,0,t,r)}),Ph=hu((A,e,t)=>{yA(A)&&(tt(A.children,e),tt(t,A))});function Kh(A){return this.parent(A).not("body").each((e,t)=>{this._make(t).replaceWith(t.children)}),this}function Vh(A){const e=this[0];if(e){const t=this._make(typeof A=="function"?A.call(e,0,e):A).insertBefore(e);let r;for(let s=0;s<t.length;s++)t[s].type==="tag"&&(r=t[s]);let n=0;for(;r&&n<r.children.length;){const s=r.children[n];s.type==="tag"?(r=s,n=0):n++}r&&this._make(r).append(this)}return this}function Gh(...A){const e=this.length-1;return mA(this,(t,r)=>{if(!yA(t)||!t.parent)return;const n=t.parent.children,s=n.indexOf(t);if(s<0)return;const a=typeof A[0]=="function"?A[0].call(t,r,this._render(t.children)):A,u=this._makeDomArray(a,r<e);xe(n,s+1,0,u,t.parent)})}function Yh(A){typeof A=="string"&&(A=this._make(A)),this.remove();const e=[];for(const t of this._makeDomArray(A)){const r=this.clone().toArray(),{parent:n}=t;if(!n)continue;const s=n.children,a=s.indexOf(t);a<0||(xe(s,a+1,0,r,n),e.push(...r))}return this._make(e)}function Xh(...A){const e=this.length-1;return mA(this,(t,r)=>{if(!yA(t)||!t.parent)return;const n=t.parent.children,s=n.indexOf(t);if(s<0)return;const a=typeof A[0]=="function"?A[0].call(t,r,this._render(t.children)):A,u=this._makeDomArray(a,r<e);xe(n,s,0,u,t.parent)})}function Wh(A){const e=this._make(A);this.remove();const t=[];return mA(e,r=>{const n=this.clone().toArray(),{parent:s}=r;if(!s)return;const a=s.children,u=a.indexOf(r);u<0||(xe(a,u,0,n,s),t.push(...n))}),this._make(t)}function Jh(A){const e=A?this.filter(A):this;return mA(e,t=>{ze(t),t.prev=t.next=t.parent=null}),this}function qh(A){return mA(this,(e,t)=>{const{parent:r}=e;if(!r)return;const n=r.children,s=typeof A=="function"?A.call(e,t,e):A,a=this._makeDomArray(s);tt(a,null);const u=n.indexOf(e);xe(n,u,1,a,r),a.includes(e)||(e.parent=e.prev=e.next=null)})}function jh(){return mA(this,A=>{if(yA(A)){for(const e of A.children)e.next=e.prev=e.parent=null;A.children.length=0}})}function $h(A){if(A===void 0){const e=this[0];return!e||!yA(e)?null:this._render(e.children)}return mA(this,e=>{if(!yA(e))return;for(const r of e.children)r.next=r.prev=r.parent=null;const t=be(A)?A.toArray():this._parse(`${A}`,this.options,!1,e).children;tt(t,e)})}function Zh(){return this._render(this)}function zh(A){return A===void 0?Pt(this):typeof A=="function"?mA(this,(e,t)=>this._make(e).text(A.call(e,t,Pt([e])))):mA(this,e=>{if(!yA(e))return;for(const r of e.children)r.next=r.prev=r.parent=null;const t=new Mt(`${A}`);tt(t,e)})}function Ad(){const A=Array.prototype.map.call(this.get(),t=>kt(t,!0)),e=new Ze(A);for(const t of A)t.parent=e;return this._make(A)}const ed=Object.freeze(Object.defineProperty({__proto__:null,_makeDomArray:Hh,after:Gh,append:Rh,appendTo:Dh,before:Xh,clone:Ad,empty:jh,html:$h,insertAfter:Yh,insertBefore:Wh,prepend:Mh,prependTo:Oh,remove:Jh,replaceWith:qh,text:zh,toString:Zh,unwrap:Kh,wrap:kh,wrapAll:Vh,wrapInner:Ph},Symbol.toStringTag,{value:"Module"}));function td(A,e){if(A!=null&&e!=null||typeof A=="object"&&!Array.isArray(A))return mA(this,(t,r)=>{X(t)&&du(t,A,e,r)});if(this.length!==0)return Bu(this[0],A)}function du(A,e,t,r){if(typeof e=="string"){const n=Bu(A),s=typeof t=="function"?t.call(A,r,n[e]):t;s===""?delete n[e]:s!=null&&(n[e]=s),A.attribs.style=rd(n)}else if(typeof e=="object"){const n=Object.keys(e);for(let s=0;s<n.length;s++){const a=n[s];du(A,a,e[a],s)}}}function Bu(A,e){if(!A||!X(A))return;const t=nd(A.attribs.style);if(typeof e=="string")return t[e];if(Array.isArray(e)){const r={};for(const n of e)t[n]!=null&&(r[n]=t[n]);return r}return t}function rd(A){return Object.keys(A).reduce((e,t)=>`${e}${e?" ":""}${t}: ${A[t]};`,"")}function nd(A){if(A=(A||"").trim(),!A)return{};const e={};let t;for(const r of A.split(";")){const n=r.indexOf(":");if(n<1||n===r.length-1){const s=r.trimEnd();s.length>0&&t!==void 0&&(e[t]+=`;${s}`)}else t=r.slice(0,n).trim(),e[t]=r.slice(n+1).trim()}return e}const sd=Object.freeze(Object.defineProperty({__proto__:null,css:td},Symbol.toStringTag,{value:"Module"})),gu="input,select,textarea,keygen",ad=/%20/g,Eu=/\r?\n/g;function id(){return this.serializeArray().map(t=>`${encodeURIComponent(t.name)}=${encodeURIComponent(t.value)}`).join("&").replace(ad,"+")}function ud(){return this.map((A,e)=>{const t=this._make(e);return X(e)&&e.name==="form"?t.find(gu).toArray():t.filter(gu).toArray()}).filter('[name!=""]:enabled:not(:submit, :button, :image, :reset, :file):matches([checked], :not(:checkbox, :radio))').map((A,e)=>{var t;const r=this._make(e),n=r.attr("name"),s=(t=r.val())!==null&&t!==void 0?t:"";return Array.isArray(s)?s.map(a=>({name:n,value:a.replace(Eu,`\r
7
+ `)})):{name:n,value:s.replace(Eu,`\r
8
+ `)}}).toArray()}const od=Object.freeze(Object.defineProperty({__proto__:null,serialize:id,serializeArray:ud},Symbol.toStringTag,{value:"Module"}));function cd(A){var e;return typeof A=="string"?{selector:A,value:"textContent"}:{selector:A.selector,value:(e=A.value)!==null&&e!==void 0?e:"textContent"}}function ld(A){const e={};for(const t in A){const r=A[t],n=Array.isArray(r),{selector:s,value:a}=cd(n?r[0]:r),u=typeof a=="function"?a:typeof a=="string"?o=>this._make(o).prop(a):o=>this._make(o).extract(a);if(n)e[t]=this._findBySelector(s,Number.POSITIVE_INFINITY).map((o,l)=>u(l,t,e)).get();else{const o=this._findBySelector(s,1);e[t]=o.length>0?u(o[0],t,e):void 0}}return e}const fd=Object.freeze(Object.defineProperty({__proto__:null,extract:ld},Symbol.toStringTag,{value:"Module"}));class Jt{constructor(e,t,r){if(this.length=0,this.options=r,this._root=t,e){for(let n=0;n<e.length;n++)this[n]=e[n];this.length=e.length}}}Jt.prototype.cheerio="[cheerio object]",Jt.prototype.splice=Array.prototype.splice,Jt.prototype[Symbol.iterator]=Array.prototype[Symbol.iterator],Object.assign(Jt.prototype,mf,Lh,ed,sd,od,fd);function hd(A,e){return function t(r,n,s=!0){if(r==null)throw new Error("cheerio.load() expects a string");const a=Qs(n),u=A(r,a,s,null);class o extends Jt{_make(h,d){const C=l(h,d);return C.prevObject=this,C}_parse(h,d,C,p){return A(h,d,C,p)}_render(h){return e(h,this.options)}}function l(f,h,d=u,C){if(f&&be(f))return f;const p=Qs(C,a),T=typeof d=="string"?[A(d,p,!1,null)]:"length"in d?d:[d],U=be(T)?T:new o(T,null,p);if(U._root=U,!f)return new o(void 0,U,p);const _=typeof f=="string"&&Fs(f)?A(f,p,!1,null).children:dd(f)?[f]:Array.isArray(f)?f:void 0,I=new o(_,U,p);if(_)return I;if(typeof f!="string")throw new TypeError("Unexpected type of selector");let D=f;const k=h?typeof h=="string"?Fs(h)?new o([A(h,p,!1,null)],U,p):(D=`${h} ${D}`,U):be(h)?h:new o(Array.isArray(h)?h:[h],U,p):U;return k?k.find(D):I}return Object.assign(l,sf,{load:t,_root:u,_options:a,fn:o.prototype,prototype:o.prototype}),l}}function dd(A){return!!A.name||A.type==="root"||A.type==="text"||A.type==="comment"}const Bd=new Set([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]),dA="�";var B;(function(A){A[A.EOF=-1]="EOF",A[A.NULL=0]="NULL",A[A.TABULATION=9]="TABULATION",A[A.CARRIAGE_RETURN=13]="CARRIAGE_RETURN",A[A.LINE_FEED=10]="LINE_FEED",A[A.FORM_FEED=12]="FORM_FEED",A[A.SPACE=32]="SPACE",A[A.EXCLAMATION_MARK=33]="EXCLAMATION_MARK",A[A.QUOTATION_MARK=34]="QUOTATION_MARK",A[A.AMPERSAND=38]="AMPERSAND",A[A.APOSTROPHE=39]="APOSTROPHE",A[A.HYPHEN_MINUS=45]="HYPHEN_MINUS",A[A.SOLIDUS=47]="SOLIDUS",A[A.DIGIT_0=48]="DIGIT_0",A[A.DIGIT_9=57]="DIGIT_9",A[A.SEMICOLON=59]="SEMICOLON",A[A.LESS_THAN_SIGN=60]="LESS_THAN_SIGN",A[A.EQUALS_SIGN=61]="EQUALS_SIGN",A[A.GREATER_THAN_SIGN=62]="GREATER_THAN_SIGN",A[A.QUESTION_MARK=63]="QUESTION_MARK",A[A.LATIN_CAPITAL_A=65]="LATIN_CAPITAL_A",A[A.LATIN_CAPITAL_Z=90]="LATIN_CAPITAL_Z",A[A.RIGHT_SQUARE_BRACKET=93]="RIGHT_SQUARE_BRACKET",A[A.GRAVE_ACCENT=96]="GRAVE_ACCENT",A[A.LATIN_SMALL_A=97]="LATIN_SMALL_A",A[A.LATIN_SMALL_Z=122]="LATIN_SMALL_Z"})(B||(B={}));const WA={DASH_DASH:"--",CDATA_START:"[CDATA[",DOCTYPE:"doctype",SCRIPT:"script",PUBLIC:"public",SYSTEM:"system"};function mu(A){return A>=55296&&A<=57343}function gd(A){return A>=56320&&A<=57343}function Ed(A,e){return(A-55296)*1024+9216+e}function pu(A){return A!==32&&A!==10&&A!==13&&A!==9&&A!==12&&A>=1&&A<=31||A>=127&&A<=159}function Cu(A){return A>=64976&&A<=65007||Bd.has(A)}var b;(function(A){A.controlCharacterInInputStream="control-character-in-input-stream",A.noncharacterInInputStream="noncharacter-in-input-stream",A.surrogateInInputStream="surrogate-in-input-stream",A.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",A.endTagWithAttributes="end-tag-with-attributes",A.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",A.unexpectedSolidusInTag="unexpected-solidus-in-tag",A.unexpectedNullCharacter="unexpected-null-character",A.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",A.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",A.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",A.missingEndTagName="missing-end-tag-name",A.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",A.unknownNamedCharacterReference="unknown-named-character-reference",A.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",A.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",A.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",A.eofBeforeTagName="eof-before-tag-name",A.eofInTag="eof-in-tag",A.missingAttributeValue="missing-attribute-value",A.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",A.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",A.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",A.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",A.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",A.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",A.missingDoctypePublicIdentifier="missing-doctype-public-identifier",A.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",A.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",A.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",A.cdataInHtmlContent="cdata-in-html-content",A.incorrectlyOpenedComment="incorrectly-opened-comment",A.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",A.eofInDoctype="eof-in-doctype",A.nestedComment="nested-comment",A.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",A.eofInComment="eof-in-comment",A.incorrectlyClosedComment="incorrectly-closed-comment",A.eofInCdata="eof-in-cdata",A.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",A.nullCharacterReference="null-character-reference",A.surrogateCharacterReference="surrogate-character-reference",A.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",A.controlCharacterReference="control-character-reference",A.noncharacterCharacterReference="noncharacter-character-reference",A.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",A.missingDoctypeName="missing-doctype-name",A.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",A.duplicateAttribute="duplicate-attribute",A.nonConformingDoctype="non-conforming-doctype",A.missingDoctype="missing-doctype",A.misplacedDoctype="misplaced-doctype",A.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",A.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",A.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",A.openElementsLeftAfterEof="open-elements-left-after-eof",A.abandonedHeadElementChild="abandoned-head-element-child",A.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",A.nestedNoscriptInHead="nested-noscript-in-head",A.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(b||(b={}));const md=65536;class pd{constructor(e){this.handler=e,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=md,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(e,t){const{line:r,col:n,offset:s}=this,a=n+t,u=s+t;return{code:e,startLine:r,endLine:r,startCol:a,endCol:a,startOffset:u,endOffset:u}}_err(e){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(e,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(e){if(this.pos!==this.html.length-1){const t=this.html.charCodeAt(this.pos+1);if(gd(t))return this.pos++,this._addGap(),Ed(e,t)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,B.EOF;return this._err(b.surrogateInInputStream),e}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(e,t){this.html.length>0?this.html+=e:this.html=e,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.endOfChunkHit=!1}startsWith(e,t){if(this.pos+e.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(t)return this.html.startsWith(e,this.pos);for(let r=0;r<e.length;r++)if((this.html.charCodeAt(this.pos+r)|32)!==e.charCodeAt(r))return!1;return!0}peek(e){const t=this.pos+e;if(t>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,B.EOF;const r=this.html.charCodeAt(t);return r===B.CARRIAGE_RETURN?B.LINE_FEED:r}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,B.EOF;let e=this.html.charCodeAt(this.pos);return e===B.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,B.LINE_FEED):e===B.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,mu(e)&&(e=this._processSurrogate(e)),this.handler.onParseError===null||e>31&&e<127||e===B.LINE_FEED||e===B.CARRIAGE_RETURN||e>159&&e<64976||this._checkForProblematicCharacters(e),e)}_checkForProblematicCharacters(e){pu(e)?this._err(b.controlCharacterInInputStream):Cu(e)&&this._err(b.noncharacterInInputStream)}retreat(e){for(this.pos-=e;this.pos<this.lastGapPos;)this.lastGapPos=this.gapStack.pop(),this.pos--;this.isEol=!1}}var tA;(function(A){A[A.CHARACTER=0]="CHARACTER",A[A.NULL_CHARACTER=1]="NULL_CHARACTER",A[A.WHITESPACE_CHARACTER=2]="WHITESPACE_CHARACTER",A[A.START_TAG=3]="START_TAG",A[A.END_TAG=4]="END_TAG",A[A.COMMENT=5]="COMMENT",A[A.DOCTYPE=6]="DOCTYPE",A[A.EOF=7]="EOF",A[A.HIBERNATION=8]="HIBERNATION"})(tA||(tA={}));function wu(A,e){for(let t=A.attrs.length-1;t>=0;t--)if(A.attrs[t].name===e)return A.attrs[t].value;return null}var Q;(function(A){A.HTML="http://www.w3.org/1999/xhtml",A.MATHML="http://www.w3.org/1998/Math/MathML",A.SVG="http://www.w3.org/2000/svg",A.XLINK="http://www.w3.org/1999/xlink",A.XML="http://www.w3.org/XML/1998/namespace",A.XMLNS="http://www.w3.org/2000/xmlns/"})(Q||(Q={}));var rt;(function(A){A.TYPE="type",A.ACTION="action",A.ENCODING="encoding",A.PROMPT="prompt",A.NAME="name",A.COLOR="color",A.FACE="face",A.SIZE="size"})(rt||(rt={}));var Ae;(function(A){A.NO_QUIRKS="no-quirks",A.QUIRKS="quirks",A.LIMITED_QUIRKS="limited-quirks"})(Ae||(Ae={}));var w;(function(A){A.A="a",A.ADDRESS="address",A.ANNOTATION_XML="annotation-xml",A.APPLET="applet",A.AREA="area",A.ARTICLE="article",A.ASIDE="aside",A.B="b",A.BASE="base",A.BASEFONT="basefont",A.BGSOUND="bgsound",A.BIG="big",A.BLOCKQUOTE="blockquote",A.BODY="body",A.BR="br",A.BUTTON="button",A.CAPTION="caption",A.CENTER="center",A.CODE="code",A.COL="col",A.COLGROUP="colgroup",A.DD="dd",A.DESC="desc",A.DETAILS="details",A.DIALOG="dialog",A.DIR="dir",A.DIV="div",A.DL="dl",A.DT="dt",A.EM="em",A.EMBED="embed",A.FIELDSET="fieldset",A.FIGCAPTION="figcaption",A.FIGURE="figure",A.FONT="font",A.FOOTER="footer",A.FOREIGN_OBJECT="foreignObject",A.FORM="form",A.FRAME="frame",A.FRAMESET="frameset",A.H1="h1",A.H2="h2",A.H3="h3",A.H4="h4",A.H5="h5",A.H6="h6",A.HEAD="head",A.HEADER="header",A.HGROUP="hgroup",A.HR="hr",A.HTML="html",A.I="i",A.IMG="img",A.IMAGE="image",A.INPUT="input",A.IFRAME="iframe",A.KEYGEN="keygen",A.LABEL="label",A.LI="li",A.LINK="link",A.LISTING="listing",A.MAIN="main",A.MALIGNMARK="malignmark",A.MARQUEE="marquee",A.MATH="math",A.MENU="menu",A.META="meta",A.MGLYPH="mglyph",A.MI="mi",A.MO="mo",A.MN="mn",A.MS="ms",A.MTEXT="mtext",A.NAV="nav",A.NOBR="nobr",A.NOFRAMES="noframes",A.NOEMBED="noembed",A.NOSCRIPT="noscript",A.OBJECT="object",A.OL="ol",A.OPTGROUP="optgroup",A.OPTION="option",A.P="p",A.PARAM="param",A.PLAINTEXT="plaintext",A.PRE="pre",A.RB="rb",A.RP="rp",A.RT="rt",A.RTC="rtc",A.RUBY="ruby",A.S="s",A.SCRIPT="script",A.SEARCH="search",A.SECTION="section",A.SELECT="select",A.SOURCE="source",A.SMALL="small",A.SPAN="span",A.STRIKE="strike",A.STRONG="strong",A.STYLE="style",A.SUB="sub",A.SUMMARY="summary",A.SUP="sup",A.TABLE="table",A.TBODY="tbody",A.TEMPLATE="template",A.TEXTAREA="textarea",A.TFOOT="tfoot",A.TD="td",A.TH="th",A.THEAD="thead",A.TITLE="title",A.TR="tr",A.TRACK="track",A.TT="tt",A.U="u",A.UL="ul",A.SVG="svg",A.VAR="var",A.WBR="wbr",A.XMP="xmp"})(w||(w={}));var i;(function(A){A[A.UNKNOWN=0]="UNKNOWN",A[A.A=1]="A",A[A.ADDRESS=2]="ADDRESS",A[A.ANNOTATION_XML=3]="ANNOTATION_XML",A[A.APPLET=4]="APPLET",A[A.AREA=5]="AREA",A[A.ARTICLE=6]="ARTICLE",A[A.ASIDE=7]="ASIDE",A[A.B=8]="B",A[A.BASE=9]="BASE",A[A.BASEFONT=10]="BASEFONT",A[A.BGSOUND=11]="BGSOUND",A[A.BIG=12]="BIG",A[A.BLOCKQUOTE=13]="BLOCKQUOTE",A[A.BODY=14]="BODY",A[A.BR=15]="BR",A[A.BUTTON=16]="BUTTON",A[A.CAPTION=17]="CAPTION",A[A.CENTER=18]="CENTER",A[A.CODE=19]="CODE",A[A.COL=20]="COL",A[A.COLGROUP=21]="COLGROUP",A[A.DD=22]="DD",A[A.DESC=23]="DESC",A[A.DETAILS=24]="DETAILS",A[A.DIALOG=25]="DIALOG",A[A.DIR=26]="DIR",A[A.DIV=27]="DIV",A[A.DL=28]="DL",A[A.DT=29]="DT",A[A.EM=30]="EM",A[A.EMBED=31]="EMBED",A[A.FIELDSET=32]="FIELDSET",A[A.FIGCAPTION=33]="FIGCAPTION",A[A.FIGURE=34]="FIGURE",A[A.FONT=35]="FONT",A[A.FOOTER=36]="FOOTER",A[A.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",A[A.FORM=38]="FORM",A[A.FRAME=39]="FRAME",A[A.FRAMESET=40]="FRAMESET",A[A.H1=41]="H1",A[A.H2=42]="H2",A[A.H3=43]="H3",A[A.H4=44]="H4",A[A.H5=45]="H5",A[A.H6=46]="H6",A[A.HEAD=47]="HEAD",A[A.HEADER=48]="HEADER",A[A.HGROUP=49]="HGROUP",A[A.HR=50]="HR",A[A.HTML=51]="HTML",A[A.I=52]="I",A[A.IMG=53]="IMG",A[A.IMAGE=54]="IMAGE",A[A.INPUT=55]="INPUT",A[A.IFRAME=56]="IFRAME",A[A.KEYGEN=57]="KEYGEN",A[A.LABEL=58]="LABEL",A[A.LI=59]="LI",A[A.LINK=60]="LINK",A[A.LISTING=61]="LISTING",A[A.MAIN=62]="MAIN",A[A.MALIGNMARK=63]="MALIGNMARK",A[A.MARQUEE=64]="MARQUEE",A[A.MATH=65]="MATH",A[A.MENU=66]="MENU",A[A.META=67]="META",A[A.MGLYPH=68]="MGLYPH",A[A.MI=69]="MI",A[A.MO=70]="MO",A[A.MN=71]="MN",A[A.MS=72]="MS",A[A.MTEXT=73]="MTEXT",A[A.NAV=74]="NAV",A[A.NOBR=75]="NOBR",A[A.NOFRAMES=76]="NOFRAMES",A[A.NOEMBED=77]="NOEMBED",A[A.NOSCRIPT=78]="NOSCRIPT",A[A.OBJECT=79]="OBJECT",A[A.OL=80]="OL",A[A.OPTGROUP=81]="OPTGROUP",A[A.OPTION=82]="OPTION",A[A.P=83]="P",A[A.PARAM=84]="PARAM",A[A.PLAINTEXT=85]="PLAINTEXT",A[A.PRE=86]="PRE",A[A.RB=87]="RB",A[A.RP=88]="RP",A[A.RT=89]="RT",A[A.RTC=90]="RTC",A[A.RUBY=91]="RUBY",A[A.S=92]="S",A[A.SCRIPT=93]="SCRIPT",A[A.SEARCH=94]="SEARCH",A[A.SECTION=95]="SECTION",A[A.SELECT=96]="SELECT",A[A.SOURCE=97]="SOURCE",A[A.SMALL=98]="SMALL",A[A.SPAN=99]="SPAN",A[A.STRIKE=100]="STRIKE",A[A.STRONG=101]="STRONG",A[A.STYLE=102]="STYLE",A[A.SUB=103]="SUB",A[A.SUMMARY=104]="SUMMARY",A[A.SUP=105]="SUP",A[A.TABLE=106]="TABLE",A[A.TBODY=107]="TBODY",A[A.TEMPLATE=108]="TEMPLATE",A[A.TEXTAREA=109]="TEXTAREA",A[A.TFOOT=110]="TFOOT",A[A.TD=111]="TD",A[A.TH=112]="TH",A[A.THEAD=113]="THEAD",A[A.TITLE=114]="TITLE",A[A.TR=115]="TR",A[A.TRACK=116]="TRACK",A[A.TT=117]="TT",A[A.U=118]="U",A[A.UL=119]="UL",A[A.SVG=120]="SVG",A[A.VAR=121]="VAR",A[A.WBR=122]="WBR",A[A.XMP=123]="XMP"})(i||(i={}));const Cd=new Map([[w.A,i.A],[w.ADDRESS,i.ADDRESS],[w.ANNOTATION_XML,i.ANNOTATION_XML],[w.APPLET,i.APPLET],[w.AREA,i.AREA],[w.ARTICLE,i.ARTICLE],[w.ASIDE,i.ASIDE],[w.B,i.B],[w.BASE,i.BASE],[w.BASEFONT,i.BASEFONT],[w.BGSOUND,i.BGSOUND],[w.BIG,i.BIG],[w.BLOCKQUOTE,i.BLOCKQUOTE],[w.BODY,i.BODY],[w.BR,i.BR],[w.BUTTON,i.BUTTON],[w.CAPTION,i.CAPTION],[w.CENTER,i.CENTER],[w.CODE,i.CODE],[w.COL,i.COL],[w.COLGROUP,i.COLGROUP],[w.DD,i.DD],[w.DESC,i.DESC],[w.DETAILS,i.DETAILS],[w.DIALOG,i.DIALOG],[w.DIR,i.DIR],[w.DIV,i.DIV],[w.DL,i.DL],[w.DT,i.DT],[w.EM,i.EM],[w.EMBED,i.EMBED],[w.FIELDSET,i.FIELDSET],[w.FIGCAPTION,i.FIGCAPTION],[w.FIGURE,i.FIGURE],[w.FONT,i.FONT],[w.FOOTER,i.FOOTER],[w.FOREIGN_OBJECT,i.FOREIGN_OBJECT],[w.FORM,i.FORM],[w.FRAME,i.FRAME],[w.FRAMESET,i.FRAMESET],[w.H1,i.H1],[w.H2,i.H2],[w.H3,i.H3],[w.H4,i.H4],[w.H5,i.H5],[w.H6,i.H6],[w.HEAD,i.HEAD],[w.HEADER,i.HEADER],[w.HGROUP,i.HGROUP],[w.HR,i.HR],[w.HTML,i.HTML],[w.I,i.I],[w.IMG,i.IMG],[w.IMAGE,i.IMAGE],[w.INPUT,i.INPUT],[w.IFRAME,i.IFRAME],[w.KEYGEN,i.KEYGEN],[w.LABEL,i.LABEL],[w.LI,i.LI],[w.LINK,i.LINK],[w.LISTING,i.LISTING],[w.MAIN,i.MAIN],[w.MALIGNMARK,i.MALIGNMARK],[w.MARQUEE,i.MARQUEE],[w.MATH,i.MATH],[w.MENU,i.MENU],[w.META,i.META],[w.MGLYPH,i.MGLYPH],[w.MI,i.MI],[w.MO,i.MO],[w.MN,i.MN],[w.MS,i.MS],[w.MTEXT,i.MTEXT],[w.NAV,i.NAV],[w.NOBR,i.NOBR],[w.NOFRAMES,i.NOFRAMES],[w.NOEMBED,i.NOEMBED],[w.NOSCRIPT,i.NOSCRIPT],[w.OBJECT,i.OBJECT],[w.OL,i.OL],[w.OPTGROUP,i.OPTGROUP],[w.OPTION,i.OPTION],[w.P,i.P],[w.PARAM,i.PARAM],[w.PLAINTEXT,i.PLAINTEXT],[w.PRE,i.PRE],[w.RB,i.RB],[w.RP,i.RP],[w.RT,i.RT],[w.RTC,i.RTC],[w.RUBY,i.RUBY],[w.S,i.S],[w.SCRIPT,i.SCRIPT],[w.SEARCH,i.SEARCH],[w.SECTION,i.SECTION],[w.SELECT,i.SELECT],[w.SOURCE,i.SOURCE],[w.SMALL,i.SMALL],[w.SPAN,i.SPAN],[w.STRIKE,i.STRIKE],[w.STRONG,i.STRONG],[w.STYLE,i.STYLE],[w.SUB,i.SUB],[w.SUMMARY,i.SUMMARY],[w.SUP,i.SUP],[w.TABLE,i.TABLE],[w.TBODY,i.TBODY],[w.TEMPLATE,i.TEMPLATE],[w.TEXTAREA,i.TEXTAREA],[w.TFOOT,i.TFOOT],[w.TD,i.TD],[w.TH,i.TH],[w.THEAD,i.THEAD],[w.TITLE,i.TITLE],[w.TR,i.TR],[w.TRACK,i.TRACK],[w.TT,i.TT],[w.U,i.U],[w.UL,i.UL],[w.SVG,i.SVG],[w.VAR,i.VAR],[w.WBR,i.WBR],[w.XMP,i.XMP]]);function zr(A){var e;return(e=Cd.get(A))!==null&&e!==void 0?e:i.UNKNOWN}const N=i,wd={[Q.HTML]:new Set([N.ADDRESS,N.APPLET,N.AREA,N.ARTICLE,N.ASIDE,N.BASE,N.BASEFONT,N.BGSOUND,N.BLOCKQUOTE,N.BODY,N.BR,N.BUTTON,N.CAPTION,N.CENTER,N.COL,N.COLGROUP,N.DD,N.DETAILS,N.DIR,N.DIV,N.DL,N.DT,N.EMBED,N.FIELDSET,N.FIGCAPTION,N.FIGURE,N.FOOTER,N.FORM,N.FRAME,N.FRAMESET,N.H1,N.H2,N.H3,N.H4,N.H5,N.H6,N.HEAD,N.HEADER,N.HGROUP,N.HR,N.HTML,N.IFRAME,N.IMG,N.INPUT,N.LI,N.LINK,N.LISTING,N.MAIN,N.MARQUEE,N.MENU,N.META,N.NAV,N.NOEMBED,N.NOFRAMES,N.NOSCRIPT,N.OBJECT,N.OL,N.P,N.PARAM,N.PLAINTEXT,N.PRE,N.SCRIPT,N.SECTION,N.SELECT,N.SOURCE,N.STYLE,N.SUMMARY,N.TABLE,N.TBODY,N.TD,N.TEMPLATE,N.TEXTAREA,N.TFOOT,N.TH,N.THEAD,N.TITLE,N.TR,N.TRACK,N.UL,N.WBR,N.XMP]),[Q.MATHML]:new Set([N.MI,N.MO,N.MN,N.MS,N.MTEXT,N.ANNOTATION_XML]),[Q.SVG]:new Set([N.TITLE,N.FOREIGN_OBJECT,N.DESC]),[Q.XLINK]:new Set,[Q.XML]:new Set,[Q.XMLNS]:new Set},Xs=new Set([N.H1,N.H2,N.H3,N.H4,N.H5,N.H6]),Td=new Set([w.STYLE,w.SCRIPT,w.XMP,w.IFRAME,w.NOEMBED,w.NOFRAMES,w.PLAINTEXT]);function bd(A,e){return Td.has(A)||e&&A===w.NOSCRIPT}var g;(function(A){A[A.DATA=0]="DATA",A[A.RCDATA=1]="RCDATA",A[A.RAWTEXT=2]="RAWTEXT",A[A.SCRIPT_DATA=3]="SCRIPT_DATA",A[A.PLAINTEXT=4]="PLAINTEXT",A[A.TAG_OPEN=5]="TAG_OPEN",A[A.END_TAG_OPEN=6]="END_TAG_OPEN",A[A.TAG_NAME=7]="TAG_NAME",A[A.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",A[A.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",A[A.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",A[A.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",A[A.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",A[A.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",A[A.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",A[A.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",A[A.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",A[A.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",A[A.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",A[A.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",A[A.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",A[A.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",A[A.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",A[A.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",A[A.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",A[A.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",A[A.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",A[A.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",A[A.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",A[A.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",A[A.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",A[A.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",A[A.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",A[A.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",A[A.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",A[A.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",A[A.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",A[A.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",A[A.BOGUS_COMMENT=40]="BOGUS_COMMENT",A[A.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",A[A.COMMENT_START=42]="COMMENT_START",A[A.COMMENT_START_DASH=43]="COMMENT_START_DASH",A[A.COMMENT=44]="COMMENT",A[A.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",A[A.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",A[A.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",A[A.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",A[A.COMMENT_END_DASH=49]="COMMENT_END_DASH",A[A.COMMENT_END=50]="COMMENT_END",A[A.COMMENT_END_BANG=51]="COMMENT_END_BANG",A[A.DOCTYPE=52]="DOCTYPE",A[A.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",A[A.DOCTYPE_NAME=54]="DOCTYPE_NAME",A[A.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",A[A.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",A[A.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",A[A.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",A[A.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",A[A.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",A[A.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",A[A.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",A[A.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",A[A.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",A[A.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",A[A.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",A[A.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",A[A.CDATA_SECTION=68]="CDATA_SECTION",A[A.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",A[A.CDATA_SECTION_END=70]="CDATA_SECTION_END",A[A.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",A[A.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(g||(g={}));const JA={DATA:g.DATA,RCDATA:g.RCDATA,RAWTEXT:g.RAWTEXT,SCRIPT_DATA:g.SCRIPT_DATA,PLAINTEXT:g.PLAINTEXT,CDATA_SECTION:g.CDATA_SECTION};function Ud(A){return A>=B.DIGIT_0&&A<=B.DIGIT_9}function qt(A){return A>=B.LATIN_CAPITAL_A&&A<=B.LATIN_CAPITAL_Z}function Qd(A){return A>=B.LATIN_SMALL_A&&A<=B.LATIN_SMALL_Z}function He(A){return Qd(A)||qt(A)}function Tu(A){return He(A)||Ud(A)}function An(A){return A+32}function bu(A){return A===B.SPACE||A===B.LINE_FEED||A===B.TABULATION||A===B.FORM_FEED}function Uu(A){return bu(A)||A===B.SOLIDUS||A===B.GREATER_THAN_SIGN}function Fd(A){return A===B.NULL?b.nullCharacterReference:A>1114111?b.characterReferenceOutsideUnicodeRange:mu(A)?b.surrogateCharacterReference:Cu(A)?b.noncharacterCharacterReference:pu(A)||A===B.CARRIAGE_RETURN?b.controlCharacterReference:null}let Id=class{constructor(e,t){this.options=e,this.handler=t,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=g.DATA,this.returnState=g.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new pd(t),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new Cs(gs,(r,n)=>{this.preprocessor.pos=this.entityStartPos+n-1,this._flushCodePointConsumedAsCharacterReference(r)},t.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(b.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:r=>{this._err(b.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+r)},validateNumericCharacterReference:r=>{const n=Fd(r);n&&this._err(n,1)}}:void 0)}_err(e,t=0){var r,n;(n=(r=this.handler).onParseError)===null||n===void 0||n.call(r,this.preprocessor.getError(e,t))}getCurrentLocation(e){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-e,startOffset:this.preprocessor.offset-e,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;const e=this._consume();this._ensureHibernation()||this._callState(e)}this.inLoop=!1}}pause(){this.paused=!0}resume(e){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||e==null||e())}write(e,t,r){this.active=!0,this.preprocessor.write(e,t),this._runParsingLoop(),this.paused||r==null||r()}insertHtmlAtCurrentPos(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(e){this.consumedAfterSnapshot+=e;for(let t=0;t<e;t++)this.preprocessor.advance()}_consumeSequenceIfMatch(e,t){return this.preprocessor.startsWith(e,t)?(this._advanceBy(e.length-1),!0):!1}_createStartTagToken(){this.currentToken={type:tA.START_TAG,tagName:"",tagID:i.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(1)}}_createEndTagToken(){this.currentToken={type:tA.END_TAG,tagName:"",tagID:i.UNKNOWN,selfClosing:!1,ackSelfClosing:!1,attrs:[],location:this.getCurrentLocation(2)}}_createCommentToken(e){this.currentToken={type:tA.COMMENT,data:"",location:this.getCurrentLocation(e)}}_createDoctypeToken(e){this.currentToken={type:tA.DOCTYPE,name:e,forceQuirks:!1,publicId:null,systemId:null,location:this.currentLocation}}_createCharacterToken(e,t){this.currentCharacterToken={type:e,chars:t,location:this.currentLocation}}_createAttr(e){this.currentAttr={name:e,value:""},this.currentLocation=this.getCurrentLocation(0)}_leaveAttrName(){var e,t;const r=this.currentToken;if(wu(r,this.currentAttr.name)===null){if(r.attrs.push(this.currentAttr),r.location&&this.currentLocation){const n=(e=(t=r.location).attrs)!==null&&e!==void 0?e:t.attrs=Object.create(null);n[this.currentAttr.name]=this.currentLocation,this._leaveAttrValue()}}else this._err(b.duplicateAttribute)}_leaveAttrValue(){this.currentLocation&&(this.currentLocation.endLine=this.preprocessor.line,this.currentLocation.endCol=this.preprocessor.col,this.currentLocation.endOffset=this.preprocessor.offset)}prepareToken(e){this._emitCurrentCharacterToken(e.location),this.currentToken=null,e.location&&(e.location.endLine=this.preprocessor.line,e.location.endCol=this.preprocessor.col+1,e.location.endOffset=this.preprocessor.offset+1),this.currentLocation=this.getCurrentLocation(-1)}emitCurrentTagToken(){const e=this.currentToken;this.prepareToken(e),e.tagID=zr(e.tagName),e.type===tA.START_TAG?(this.lastStartTagName=e.tagName,this.handler.onStartTag(e)):(e.attrs.length>0&&this._err(b.endTagWithAttributes),e.selfClosing&&this._err(b.endTagWithTrailingSolidus),this.handler.onEndTag(e)),this.preprocessor.dropParsedChunk()}emitCurrentComment(e){this.prepareToken(e),this.handler.onComment(e),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(e){this.prepareToken(e),this.handler.onDoctype(e),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(e){if(this.currentCharacterToken){switch(e&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=e.startLine,this.currentCharacterToken.location.endCol=e.startCol,this.currentCharacterToken.location.endOffset=e.startOffset),this.currentCharacterToken.type){case tA.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case tA.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case tA.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){const e=this.getCurrentLocation(0);e&&(e.endLine=e.startLine,e.endCol=e.startCol,e.endOffset=e.startOffset),this._emitCurrentCharacterToken(e),this.handler.onEof({type:tA.EOF,location:e}),this.active=!1}_appendCharToCurrentCharacterToken(e,t){if(this.currentCharacterToken)if(this.currentCharacterToken.type===e){this.currentCharacterToken.chars+=t;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(e,t)}_emitCodePoint(e){const t=bu(e)?tA.WHITESPACE_CHARACTER:e===B.NULL?tA.NULL_CHARACTER:tA.CHARACTER;this._appendCharToCurrentCharacterToken(t,String.fromCodePoint(e))}_emitChars(e){this._appendCharToCurrentCharacterToken(tA.CHARACTER,e)}_startCharacterReference(){this.returnState=this.state,this.state=g.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?re.Attribute:re.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===g.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===g.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===g.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(e){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(e):this._emitCodePoint(e)}_callState(e){switch(this.state){case g.DATA:{this._stateData(e);break}case g.RCDATA:{this._stateRcdata(e);break}case g.RAWTEXT:{this._stateRawtext(e);break}case g.SCRIPT_DATA:{this._stateScriptData(e);break}case g.PLAINTEXT:{this._statePlaintext(e);break}case g.TAG_OPEN:{this._stateTagOpen(e);break}case g.END_TAG_OPEN:{this._stateEndTagOpen(e);break}case g.TAG_NAME:{this._stateTagName(e);break}case g.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(e);break}case g.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(e);break}case g.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(e);break}case g.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(e);break}case g.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(e);break}case g.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(e);break}case g.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(e);break}case g.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(e);break}case g.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(e);break}case g.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(e);break}case g.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(e);break}case g.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(e);break}case g.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(e);break}case g.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(e);break}case g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(e);break}case g.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(e);break}case g.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(e);break}case g.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(e);break}case g.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(e);break}case g.ATTRIBUTE_NAME:{this._stateAttributeName(e);break}case g.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(e);break}case g.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(e);break}case g.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(e);break}case g.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(e);break}case g.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(e);break}case g.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(e);break}case g.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(e);break}case g.BOGUS_COMMENT:{this._stateBogusComment(e);break}case g.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(e);break}case g.COMMENT_START:{this._stateCommentStart(e);break}case g.COMMENT_START_DASH:{this._stateCommentStartDash(e);break}case g.COMMENT:{this._stateComment(e);break}case g.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(e);break}case g.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(e);break}case g.COMMENT_END_DASH:{this._stateCommentEndDash(e);break}case g.COMMENT_END:{this._stateCommentEnd(e);break}case g.COMMENT_END_BANG:{this._stateCommentEndBang(e);break}case g.DOCTYPE:{this._stateDoctype(e);break}case g.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(e);break}case g.DOCTYPE_NAME:{this._stateDoctypeName(e);break}case g.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(e);break}case g.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(e);break}case g.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(e);break}case g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(e);break}case g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(e);break}case g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(e);break}case g.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(e);break}case g.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(e);break}case g.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(e);break}case g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(e);break}case g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(e);break}case g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(e);break}case g.BOGUS_DOCTYPE:{this._stateBogusDoctype(e);break}case g.CDATA_SECTION:{this._stateCdataSection(e);break}case g.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(e);break}case g.CDATA_SECTION_END:{this._stateCdataSectionEnd(e);break}case g.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case g.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(e);break}default:throw new Error("Unknown state")}}_stateData(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.TAG_OPEN;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitCodePoint(e);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateRcdata(e){switch(e){case B.AMPERSAND:{this._startCharacterReference();break}case B.LESS_THAN_SIGN:{this.state=g.RCDATA_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateRawtext(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.RAWTEXT_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptData(e){switch(e){case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_statePlaintext(e){switch(e){case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateTagOpen(e){if(He(e))this._createStartTagToken(),this.state=g.TAG_NAME,this._stateTagName(e);else switch(e){case B.EXCLAMATION_MARK:{this.state=g.MARKUP_DECLARATION_OPEN;break}case B.SOLIDUS:{this.state=g.END_TAG_OPEN;break}case B.QUESTION_MARK:{this._err(b.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e);break}case B.EOF:{this._err(b.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(b.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=g.DATA,this._stateData(e)}}_stateEndTagOpen(e){if(He(e))this._createEndTagToken(),this.state=g.TAG_NAME,this._stateTagName(e);else switch(e){case B.GREATER_THAN_SIGN:{this._err(b.missingEndTagName),this.state=g.DATA;break}case B.EOF:{this._err(b.eofBeforeTagName),this._emitChars("</"),this._emitEOFToken();break}default:this._err(b.invalidFirstCharacterOfTagName),this._createCommentToken(2),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e)}}_stateTagName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.SOLIDUS:{this.state=g.SELF_CLOSING_START_TAG;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentTagToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.tagName+=dA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:t.tagName+=String.fromCodePoint(qt(e)?An(e):e)}}_stateRcdataLessThanSign(e){e===B.SOLIDUS?this.state=g.RCDATA_END_TAG_OPEN:(this._emitChars("<"),this.state=g.RCDATA,this._stateRcdata(e))}_stateRcdataEndTagOpen(e){He(e)?(this.state=g.RCDATA_END_TAG_NAME,this._stateRcdataEndTagName(e)):(this._emitChars("</"),this.state=g.RCDATA,this._stateRcdata(e))}handleSpecialEndTag(e){if(!this.preprocessor.startsWith(this.lastStartTagName,!1))return!this._ensureHibernation();this._createEndTagToken();const t=this.currentToken;switch(t.tagName=this.lastStartTagName,this.preprocessor.peek(this.lastStartTagName.length)){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:return this._advanceBy(this.lastStartTagName.length),this.state=g.BEFORE_ATTRIBUTE_NAME,!1;case B.SOLIDUS:return this._advanceBy(this.lastStartTagName.length),this.state=g.SELF_CLOSING_START_TAG,!1;case B.GREATER_THAN_SIGN:return this._advanceBy(this.lastStartTagName.length),this.emitCurrentTagToken(),this.state=g.DATA,!1;default:return!this._ensureHibernation()}}_stateRcdataEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.RCDATA,this._stateRcdata(e))}_stateRawtextLessThanSign(e){e===B.SOLIDUS?this.state=g.RAWTEXT_END_TAG_OPEN:(this._emitChars("<"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateRawtextEndTagOpen(e){He(e)?(this.state=g.RAWTEXT_END_TAG_NAME,this._stateRawtextEndTagName(e)):(this._emitChars("</"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateRawtextEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.RAWTEXT,this._stateRawtext(e))}_stateScriptDataLessThanSign(e){switch(e){case B.SOLIDUS:{this.state=g.SCRIPT_DATA_END_TAG_OPEN;break}case B.EXCLAMATION_MARK:{this.state=g.SCRIPT_DATA_ESCAPE_START,this._emitChars("<!");break}default:this._emitChars("<"),this.state=g.SCRIPT_DATA,this._stateScriptData(e)}}_stateScriptDataEndTagOpen(e){He(e)?(this.state=g.SCRIPT_DATA_END_TAG_NAME,this._stateScriptDataEndTagName(e)):(this._emitChars("</"),this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscapeStart(e){e===B.HYPHEN_MINUS?(this.state=g.SCRIPT_DATA_ESCAPE_START_DASH,this._emitChars("-")):(this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscapeStartDash(e){e===B.HYPHEN_MINUS?(this.state=g.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-")):(this.state=g.SCRIPT_DATA,this._stateScriptData(e))}_stateScriptDataEscaped(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_ESCAPED_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptDataEscapedDash(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_ESCAPED_DASH_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_ESCAPED,this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedDashDash(e){switch(e){case B.HYPHEN_MINUS:{this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN;break}case B.GREATER_THAN_SIGN:{this.state=g.SCRIPT_DATA,this._emitChars(">");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_ESCAPED,this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataEscapedLessThanSign(e){e===B.SOLIDUS?this.state=g.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:He(e)?(this._emitChars("<"),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(e)):(this._emitChars("<"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagOpen(e){He(e)?(this.state=g.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(e)):(this._emitChars("</"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataEscapedEndTagName(e){this.handleSpecialEndTag(e)&&(this._emitChars("</"),this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataDoubleEscapeStart(e){if(this.preprocessor.startsWith(WA.SCRIPT,!1)&&Uu(this.preprocessor.peek(WA.SCRIPT.length))){this._emitCodePoint(e);for(let t=0;t<WA.SCRIPT.length;t++)this._emitCodePoint(this._consume());this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED}else this._ensureHibernation()||(this.state=g.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(e))}_stateScriptDataDoubleEscaped(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedDash(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH,this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedDashDash(e){switch(e){case B.HYPHEN_MINUS:{this._emitChars("-");break}case B.LESS_THAN_SIGN:{this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN,this._emitChars("<");break}case B.GREATER_THAN_SIGN:{this.state=g.SCRIPT_DATA,this._emitChars(">");break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(dA);break}case B.EOF:{this._err(b.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(e)}}_stateScriptDataDoubleEscapedLessThanSign(e){e===B.SOLIDUS?(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateScriptDataDoubleEscapeEnd(e){if(this.preprocessor.startsWith(WA.SCRIPT,!1)&&Uu(this.preprocessor.peek(WA.SCRIPT.length))){this._emitCodePoint(e);for(let t=0;t<WA.SCRIPT.length;t++)this._emitCodePoint(this._consume());this.state=g.SCRIPT_DATA_ESCAPED}else this._ensureHibernation()||(this.state=g.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(e))}_stateBeforeAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.SOLIDUS:case B.GREATER_THAN_SIGN:case B.EOF:{this.state=g.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(e);break}case B.EQUALS_SIGN:{this._err(b.unexpectedEqualsSignBeforeAttributeName),this._createAttr("="),this.state=g.ATTRIBUTE_NAME;break}default:this._createAttr(""),this.state=g.ATTRIBUTE_NAME,this._stateAttributeName(e)}}_stateAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:case B.SOLIDUS:case B.GREATER_THAN_SIGN:case B.EOF:{this._leaveAttrName(),this.state=g.AFTER_ATTRIBUTE_NAME,this._stateAfterAttributeName(e);break}case B.EQUALS_SIGN:{this._leaveAttrName(),this.state=g.BEFORE_ATTRIBUTE_VALUE;break}case B.QUOTATION_MARK:case B.APOSTROPHE:case B.LESS_THAN_SIGN:{this._err(b.unexpectedCharacterInAttributeName),this.currentAttr.name+=String.fromCodePoint(e);break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.name+=dA;break}default:this.currentAttr.name+=String.fromCodePoint(qt(e)?An(e):e)}}_stateAfterAttributeName(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.SOLIDUS:{this.state=g.SELF_CLOSING_START_TAG;break}case B.EQUALS_SIGN:{this.state=g.BEFORE_ATTRIBUTE_VALUE;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._createAttr(""),this.state=g.ATTRIBUTE_NAME,this._stateAttributeName(e)}}_stateBeforeAttributeValue(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{this.state=g.ATTRIBUTE_VALUE_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this.state=g.ATTRIBUTE_VALUE_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingAttributeValue),this.state=g.DATA,this.emitCurrentTagToken();break}default:this.state=g.ATTRIBUTE_VALUE_UNQUOTED,this._stateAttributeValueUnquoted(e)}}_stateAttributeValueDoubleQuoted(e){switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=dA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAttributeValueSingleQuoted(e){switch(e){case B.APOSTROPHE:{this.state=g.AFTER_ATTRIBUTE_VALUE_QUOTED;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=dA;break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAttributeValueUnquoted(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this._leaveAttrValue(),this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.AMPERSAND:{this._startCharacterReference();break}case B.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=g.DATA,this.emitCurrentTagToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),this.currentAttr.value+=dA;break}case B.QUOTATION_MARK:case B.APOSTROPHE:case B.LESS_THAN_SIGN:case B.EQUALS_SIGN:case B.GRAVE_ACCENT:{this._err(b.unexpectedCharacterInUnquotedAttributeValue),this.currentAttr.value+=String.fromCodePoint(e);break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this.currentAttr.value+=String.fromCodePoint(e)}}_stateAfterAttributeValueQuoted(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this._leaveAttrValue(),this.state=g.BEFORE_ATTRIBUTE_NAME;break}case B.SOLIDUS:{this._leaveAttrValue(),this.state=g.SELF_CLOSING_START_TAG;break}case B.GREATER_THAN_SIGN:{this._leaveAttrValue(),this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._err(b.missingWhitespaceBetweenAttributes),this.state=g.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(e)}}_stateSelfClosingStartTag(e){switch(e){case B.GREATER_THAN_SIGN:{const t=this.currentToken;t.selfClosing=!0,this.state=g.DATA,this.emitCurrentTagToken();break}case B.EOF:{this._err(b.eofInTag),this._emitEOFToken();break}default:this._err(b.unexpectedSolidusInTag),this.state=g.BEFORE_ATTRIBUTE_NAME,this._stateBeforeAttributeName(e)}}_stateBogusComment(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this.emitCurrentComment(t),this._emitEOFToken();break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.data+=dA;break}default:t.data+=String.fromCodePoint(e)}}_stateMarkupDeclarationOpen(e){this._consumeSequenceIfMatch(WA.DASH_DASH,!0)?(this._createCommentToken(WA.DASH_DASH.length+1),this.state=g.COMMENT_START):this._consumeSequenceIfMatch(WA.DOCTYPE,!1)?(this.currentLocation=this.getCurrentLocation(WA.DOCTYPE.length+1),this.state=g.DOCTYPE):this._consumeSequenceIfMatch(WA.CDATA_START,!0)?this.inForeignNode?this.state=g.CDATA_SECTION:(this._err(b.cdataInHtmlContent),this._createCommentToken(WA.CDATA_START.length+1),this.currentToken.data="[CDATA[",this.state=g.BOGUS_COMMENT):this._ensureHibernation()||(this._err(b.incorrectlyOpenedComment),this._createCommentToken(2),this.state=g.BOGUS_COMMENT,this._stateBogusComment(e))}_stateCommentStart(e){switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_START_DASH;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptClosingOfEmptyComment),this.state=g.DATA;const t=this.currentToken;this.emitCurrentComment(t);break}default:this.state=g.COMMENT,this._stateComment(e)}}_stateCommentStartDash(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptClosingOfEmptyComment),this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="-",this.state=g.COMMENT,this._stateComment(e)}}_stateComment(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END_DASH;break}case B.LESS_THAN_SIGN:{t.data+="<",this.state=g.COMMENT_LESS_THAN_SIGN;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.data+=dA;break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+=String.fromCodePoint(e)}}_stateCommentLessThanSign(e){const t=this.currentToken;switch(e){case B.EXCLAMATION_MARK:{t.data+="!",this.state=g.COMMENT_LESS_THAN_SIGN_BANG;break}case B.LESS_THAN_SIGN:{t.data+="<";break}default:this.state=g.COMMENT,this._stateComment(e)}}_stateCommentLessThanSignBang(e){e===B.HYPHEN_MINUS?this.state=g.COMMENT_LESS_THAN_SIGN_BANG_DASH:(this.state=g.COMMENT,this._stateComment(e))}_stateCommentLessThanSignBangDash(e){e===B.HYPHEN_MINUS?this.state=g.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:(this.state=g.COMMENT_END_DASH,this._stateCommentEndDash(e))}_stateCommentLessThanSignBangDashDash(e){e!==B.GREATER_THAN_SIGN&&e!==B.EOF&&this._err(b.nestedComment),this.state=g.COMMENT_END,this._stateCommentEnd(e)}_stateCommentEndDash(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{this.state=g.COMMENT_END;break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="-",this.state=g.COMMENT,this._stateComment(e)}}_stateCommentEnd(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentComment(t);break}case B.EXCLAMATION_MARK:{this.state=g.COMMENT_END_BANG;break}case B.HYPHEN_MINUS:{t.data+="-";break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="--",this.state=g.COMMENT,this._stateComment(e)}}_stateCommentEndBang(e){const t=this.currentToken;switch(e){case B.HYPHEN_MINUS:{t.data+="--!",this.state=g.COMMENT_END_DASH;break}case B.GREATER_THAN_SIGN:{this._err(b.incorrectlyClosedComment),this.state=g.DATA,this.emitCurrentComment(t);break}case B.EOF:{this._err(b.eofInComment),this.emitCurrentComment(t),this._emitEOFToken();break}default:t.data+="--!",this.state=g.COMMENT,this._stateComment(e)}}_stateDoctype(e){switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this.state=g.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(e);break}case B.EOF:{this._err(b.eofInDoctype),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingWhitespaceBeforeDoctypeName),this.state=g.BEFORE_DOCTYPE_NAME,this._stateBeforeDoctypeName(e)}}_stateBeforeDoctypeName(e){if(qt(e))this._createDoctypeToken(String.fromCharCode(An(e))),this.state=g.DOCTYPE_NAME;else switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.NULL:{this._err(b.unexpectedNullCharacter),this._createDoctypeToken(dA),this.state=g.DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeName),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),this._createDoctypeToken(null);const t=this.currentToken;t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._createDoctypeToken(String.fromCodePoint(e)),this.state=g.DOCTYPE_NAME}}_stateDoctypeName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.AFTER_DOCTYPE_NAME;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.name+=dA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.name+=String.fromCodePoint(qt(e)?An(e):e)}}_stateAfterDoctypeName(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._consumeSequenceIfMatch(WA.PUBLIC,!1)?this.state=g.AFTER_DOCTYPE_PUBLIC_KEYWORD:this._consumeSequenceIfMatch(WA.SYSTEM,!1)?this.state=g.AFTER_DOCTYPE_SYSTEM_KEYWORD:this._ensureHibernation()||(this._err(b.invalidCharacterSequenceAfterDoctypeName),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e))}}_stateAfterDoctypePublicKeyword(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceAfterDoctypePublicKeyword),t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceAfterDoctypePublicKeyword),t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBeforeDoctypePublicIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.publicId="",this.state=g.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypePublicIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateDoctypePublicIdentifierDoubleQuoted(e){const t=this.currentToken;switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.publicId+=dA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypePublicIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.publicId+=String.fromCodePoint(e)}}_stateDoctypePublicIdentifierSingleQuoted(e){const t=this.currentToken;switch(e){case B.APOSTROPHE:{this.state=g.AFTER_DOCTYPE_PUBLIC_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.publicId+=dA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypePublicIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.publicId+=String.fromCodePoint(e)}}_stateAfterDoctypePublicIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS;break}case B.GREATER_THAN_SIGN:{this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBetweenDoctypePublicAndSystemIdentifiers(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.QUOTATION_MARK:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateAfterDoctypeSystemKeyword(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:{this.state=g.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.QUOTATION_MARK:{this._err(b.missingWhitespaceAfterDoctypeSystemKeyword),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{this._err(b.missingWhitespaceAfterDoctypeSystemKeyword),t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBeforeDoctypeSystemIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.QUOTATION_MARK:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED;break}case B.APOSTROPHE:{t.systemId="",this.state=g.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED;break}case B.GREATER_THAN_SIGN:{this._err(b.missingDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.DATA,this.emitCurrentDoctype(t);break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.missingQuoteBeforeDoctypeSystemIdentifier),t.forceQuirks=!0,this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateDoctypeSystemIdentifierDoubleQuoted(e){const t=this.currentToken;switch(e){case B.QUOTATION_MARK:{this.state=g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.systemId+=dA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypeSystemIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.systemId+=String.fromCodePoint(e)}}_stateDoctypeSystemIdentifierSingleQuoted(e){const t=this.currentToken;switch(e){case B.APOSTROPHE:{this.state=g.AFTER_DOCTYPE_SYSTEM_IDENTIFIER;break}case B.NULL:{this._err(b.unexpectedNullCharacter),t.systemId+=dA;break}case B.GREATER_THAN_SIGN:{this._err(b.abruptDoctypeSystemIdentifier),t.forceQuirks=!0,this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:t.systemId+=String.fromCodePoint(e)}}_stateAfterDoctypeSystemIdentifier(e){const t=this.currentToken;switch(e){case B.SPACE:case B.LINE_FEED:case B.TABULATION:case B.FORM_FEED:break;case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.EOF:{this._err(b.eofInDoctype),t.forceQuirks=!0,this.emitCurrentDoctype(t),this._emitEOFToken();break}default:this._err(b.unexpectedCharacterAfterDoctypeSystemIdentifier),this.state=g.BOGUS_DOCTYPE,this._stateBogusDoctype(e)}}_stateBogusDoctype(e){const t=this.currentToken;switch(e){case B.GREATER_THAN_SIGN:{this.emitCurrentDoctype(t),this.state=g.DATA;break}case B.NULL:{this._err(b.unexpectedNullCharacter);break}case B.EOF:{this.emitCurrentDoctype(t),this._emitEOFToken();break}}}_stateCdataSection(e){switch(e){case B.RIGHT_SQUARE_BRACKET:{this.state=g.CDATA_SECTION_BRACKET;break}case B.EOF:{this._err(b.eofInCdata),this._emitEOFToken();break}default:this._emitCodePoint(e)}}_stateCdataSectionBracket(e){e===B.RIGHT_SQUARE_BRACKET?this.state=g.CDATA_SECTION_END:(this._emitChars("]"),this.state=g.CDATA_SECTION,this._stateCdataSection(e))}_stateCdataSectionEnd(e){switch(e){case B.GREATER_THAN_SIGN:{this.state=g.DATA;break}case B.RIGHT_SQUARE_BRACKET:{this._emitChars("]");break}default:this._emitChars("]]"),this.state=g.CDATA_SECTION,this._stateCdataSection(e)}}_stateCharacterReference(){let e=this.entityDecoder.write(this.preprocessor.html,this.preprocessor.pos);if(e<0)if(this.preprocessor.lastChunkWritten)e=this.entityDecoder.end();else{this.active=!1,this.preprocessor.pos=this.preprocessor.html.length-1,this.consumedAfterSnapshot=0,this.preprocessor.endOfChunkHit=!0;return}e===0?(this.preprocessor.pos=this.entityStartPos,this._flushCodePointConsumedAsCharacterReference(B.AMPERSAND),this.state=!this._isCharacterReferenceInAttribute()&&Tu(this.preprocessor.peek(1))?g.AMBIGUOUS_AMPERSAND:this.returnState):this.state=this.returnState}_stateAmbiguousAmpersand(e){Tu(e)?this._flushCodePointConsumedAsCharacterReference(e):(e===B.SEMICOLON&&this._err(b.unknownNamedCharacterReference),this.state=this.returnState,this._callState(e))}};const Qu=new Set([i.DD,i.DT,i.LI,i.OPTGROUP,i.OPTION,i.P,i.RB,i.RP,i.RT,i.RTC]),Fu=new Set([...Qu,i.CAPTION,i.COLGROUP,i.TBODY,i.TD,i.TFOOT,i.TH,i.THEAD,i.TR]),en=new Set([i.APPLET,i.CAPTION,i.HTML,i.MARQUEE,i.OBJECT,i.TABLE,i.TD,i.TEMPLATE,i.TH]),_d=new Set([...en,i.OL,i.UL]),yd=new Set([...en,i.BUTTON]),Iu=new Set([i.ANNOTATION_XML,i.MI,i.MN,i.MO,i.MS,i.MTEXT]),_u=new Set([i.DESC,i.FOREIGN_OBJECT,i.TITLE]),Nd=new Set([i.TR,i.TEMPLATE,i.HTML]),Sd=new Set([i.TBODY,i.TFOOT,i.THEAD,i.TEMPLATE,i.HTML]),vd=new Set([i.TABLE,i.TEMPLATE,i.HTML]),Ld=new Set([i.TD,i.TH]);class xd{get currentTmplContentOrNode(){return this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):this.current}constructor(e,t,r){this.treeAdapter=t,this.handler=r,this.items=[],this.tagIDs=[],this.stackTop=-1,this.tmplCount=0,this.currentTagId=i.UNKNOWN,this.current=e}_indexOf(e){return this.items.lastIndexOf(e,this.stackTop)}_isInTemplate(){return this.currentTagId===i.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===Q.HTML}_updateCurrentElement(){this.current=this.items[this.stackTop],this.currentTagId=this.tagIDs[this.stackTop]}push(e,t){this.stackTop++,this.items[this.stackTop]=e,this.current=e,this.tagIDs[this.stackTop]=t,this.currentTagId=t,this._isInTemplate()&&this.tmplCount++,this.handler.onItemPush(e,t,!0)}pop(){const e=this.current;this.tmplCount>0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!0)}replace(e,t){const r=this._indexOf(e);this.items[r]=t,r===this.stackTop&&(this.current=t)}insertAfter(e,t,r){const n=this._indexOf(e)+1;this.items.splice(n,0,t),this.tagIDs.splice(n,0,r),this.stackTop++,n===this.stackTop&&this._updateCurrentElement(),this.handler.onItemPush(this.current,this.currentTagId,n===this.stackTop)}popUntilTagNamePopped(e){let t=this.stackTop+1;do t=this.tagIDs.lastIndexOf(e,t-1);while(t>0&&this.treeAdapter.getNamespaceURI(this.items[t])!==Q.HTML);this.shortenToLength(t<0?0:t)}shortenToLength(e){for(;this.stackTop>=e;){const t=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,this.stackTop<e)}}popUntilElementPopped(e){const t=this._indexOf(e);this.shortenToLength(t<0?0:t)}popUntilPopped(e,t){const r=this._indexOfTagNames(e,t);this.shortenToLength(r<0?0:r)}popUntilNumberedHeaderPopped(){this.popUntilPopped(Xs,Q.HTML)}popUntilTableCellPopped(){this.popUntilPopped(Ld,Q.HTML)}popAllUpToHtmlElement(){this.tmplCount=0,this.shortenToLength(1)}_indexOfTagNames(e,t){for(let r=this.stackTop;r>=0;r--)if(e.has(this.tagIDs[r])&&this.treeAdapter.getNamespaceURI(this.items[r])===t)return r;return-1}clearBackTo(e,t){const r=this._indexOfTagNames(e,t);this.shortenToLength(r+1)}clearBackToTableContext(){this.clearBackTo(vd,Q.HTML)}clearBackToTableBodyContext(){this.clearBackTo(Sd,Q.HTML)}clearBackToTableRowContext(){this.clearBackTo(Nd,Q.HTML)}remove(e){const t=this._indexOf(e);t>=0&&(t===this.stackTop?this.pop():(this.items.splice(t,1),this.tagIDs.splice(t,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(e,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===i.BODY?this.items[1]:null}contains(e){return this._indexOf(e)>-1}getCommonAncestor(e){const t=this._indexOf(e)-1;return t>=0?this.items[t]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===i.HTML}hasInDynamicScope(e,t){for(let r=this.stackTop;r>=0;r--){const n=this.tagIDs[r];switch(this.treeAdapter.getNamespaceURI(this.items[r])){case Q.HTML:{if(n===e)return!0;if(t.has(n))return!1;break}case Q.SVG:{if(_u.has(n))return!1;break}case Q.MATHML:{if(Iu.has(n))return!1;break}}}return!0}hasInScope(e){return this.hasInDynamicScope(e,en)}hasInListItemScope(e){return this.hasInDynamicScope(e,_d)}hasInButtonScope(e){return this.hasInDynamicScope(e,yd)}hasNumberedHeaderInScope(){for(let e=this.stackTop;e>=0;e--){const t=this.tagIDs[e];switch(this.treeAdapter.getNamespaceURI(this.items[e])){case Q.HTML:{if(Xs.has(t))return!0;if(en.has(t))return!1;break}case Q.SVG:{if(_u.has(t))return!1;break}case Q.MATHML:{if(Iu.has(t))return!1;break}}}return!0}hasInTableScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===Q.HTML)switch(this.tagIDs[t]){case e:return!0;case i.TABLE:case i.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let e=this.stackTop;e>=0;e--)if(this.treeAdapter.getNamespaceURI(this.items[e])===Q.HTML)switch(this.tagIDs[e]){case i.TBODY:case i.THEAD:case i.TFOOT:return!0;case i.TABLE:case i.HTML:return!1}return!0}hasInSelectScope(e){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===Q.HTML)switch(this.tagIDs[t]){case e:return!0;case i.OPTION:case i.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;Qu.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;Fu.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(e){for(;this.currentTagId!==e&&Fu.has(this.currentTagId);)this.pop()}}const Ws=3;var ge;(function(A){A[A.Marker=0]="Marker",A[A.Element=1]="Element"})(ge||(ge={}));const yu={type:ge.Marker};class Hd{constructor(e){this.treeAdapter=e,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(e,t){const r=[],n=t.length,s=this.treeAdapter.getTagName(e),a=this.treeAdapter.getNamespaceURI(e);for(let u=0;u<this.entries.length;u++){const o=this.entries[u];if(o.type===ge.Marker)break;const{element:l}=o;if(this.treeAdapter.getTagName(l)===s&&this.treeAdapter.getNamespaceURI(l)===a){const f=this.treeAdapter.getAttrList(l);f.length===n&&r.push({idx:u,attrs:f})}}return r}_ensureNoahArkCondition(e){if(this.entries.length<Ws)return;const t=this.treeAdapter.getAttrList(e),r=this._getNoahArkConditionCandidates(e,t);if(r.length<Ws)return;const n=new Map(t.map(a=>[a.name,a.value]));let s=0;for(let a=0;a<r.length;a++){const u=r[a];u.attrs.every(o=>n.get(o.name)===o.value)&&(s+=1,s>=Ws&&this.entries.splice(u.idx,1))}}insertMarker(){this.entries.unshift(yu)}pushElement(e,t){this._ensureNoahArkCondition(e),this.entries.unshift({type:ge.Element,element:e,token:t})}insertElementAfterBookmark(e,t){const r=this.entries.indexOf(this.bookmark);this.entries.splice(r,0,{type:ge.Element,element:e,token:t})}removeEntry(e){const t=this.entries.indexOf(e);t>=0&&this.entries.splice(t,1)}clearToLastMarker(){const e=this.entries.indexOf(yu);e>=0?this.entries.splice(0,e+1):this.entries.length=0}getElementEntryInScopeWithTagName(e){const t=this.entries.find(r=>r.type===ge.Marker||this.treeAdapter.getTagName(r.element)===e);return t&&t.type===ge.Element?t:null}getElementEntry(e){return this.entries.find(t=>t.type===ge.Element&&t.element===e)}}const Ue={createDocument(){return{nodeName:"#document",mode:Ae.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(A,e,t){return{nodeName:A,tagName:A,attrs:t,namespaceURI:e,childNodes:[],parentNode:null}},createCommentNode(A){return{nodeName:"#comment",data:A,parentNode:null}},createTextNode(A){return{nodeName:"#text",value:A,parentNode:null}},appendChild(A,e){A.childNodes.push(e),e.parentNode=A},insertBefore(A,e,t){const r=A.childNodes.indexOf(t);A.childNodes.splice(r,0,e),e.parentNode=A},setTemplateContent(A,e){A.content=e},getTemplateContent(A){return A.content},setDocumentType(A,e,t,r){const n=A.childNodes.find(s=>s.nodeName==="#documentType");if(n)n.name=e,n.publicId=t,n.systemId=r;else{const s={nodeName:"#documentType",name:e,publicId:t,systemId:r,parentNode:null};Ue.appendChild(A,s)}},setDocumentMode(A,e){A.mode=e},getDocumentMode(A){return A.mode},detachNode(A){if(A.parentNode){const e=A.parentNode.childNodes.indexOf(A);A.parentNode.childNodes.splice(e,1),A.parentNode=null}},insertText(A,e){if(A.childNodes.length>0){const t=A.childNodes[A.childNodes.length-1];if(Ue.isTextNode(t)){t.value+=e;return}}Ue.appendChild(A,Ue.createTextNode(e))},insertTextBefore(A,e,t){const r=A.childNodes[A.childNodes.indexOf(t)-1];r&&Ue.isTextNode(r)?r.value+=e:Ue.insertBefore(A,Ue.createTextNode(e),t)},adoptAttributes(A,e){const t=new Set(A.attrs.map(r=>r.name));for(let r=0;r<e.length;r++)t.has(e[r].name)||A.attrs.push(e[r])},getFirstChild(A){return A.childNodes[0]},getChildNodes(A){return A.childNodes},getParentNode(A){return A.parentNode},getAttrList(A){return A.attrs},getTagName(A){return A.tagName},getNamespaceURI(A){return A.namespaceURI},getTextNodeContent(A){return A.value},getCommentNodeContent(A){return A.data},getDocumentTypeNodeName(A){return A.name},getDocumentTypeNodePublicId(A){return A.publicId},getDocumentTypeNodeSystemId(A){return A.systemId},isTextNode(A){return A.nodeName==="#text"},isCommentNode(A){return A.nodeName==="#comment"},isDocumentTypeNode(A){return A.nodeName==="#documentType"},isElementNode(A){return Object.prototype.hasOwnProperty.call(A,"tagName")},setNodeSourceCodeLocation(A,e){A.sourceCodeLocation=e},getNodeSourceCodeLocation(A){return A.sourceCodeLocation},updateNodeSourceCodeLocation(A,e){A.sourceCodeLocation={...A.sourceCodeLocation,...e}}},Nu="html",Dd="about:legacy-compat",Od="http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd",Su=["+//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//"],Rd=[...Su,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"],Md=new Set(["-//w3o//dtd w3 html strict 3.0//en//","-/w3c/dtd html 4.0 transitional/en","html"]),vu=["-//w3c//dtd xhtml 1.0 frameset//","-//w3c//dtd xhtml 1.0 transitional//"],kd=[...vu,"-//w3c//dtd html 4.01 frameset//","-//w3c//dtd html 4.01 transitional//"];function Lu(A,e){return e.some(t=>A.startsWith(t))}function Pd(A){return A.name===Nu&&A.publicId===null&&(A.systemId===null||A.systemId===Dd)}function Kd(A){if(A.name!==Nu)return Ae.QUIRKS;const{systemId:e}=A;if(e&&e.toLowerCase()===Od)return Ae.QUIRKS;let{publicId:t}=A;if(t!==null){if(t=t.toLowerCase(),Md.has(t))return Ae.QUIRKS;let r=e===null?Rd:Su;if(Lu(t,r))return Ae.QUIRKS;if(r=e===null?vu:kd,Lu(t,r))return Ae.LIMITED_QUIRKS}return Ae.NO_QUIRKS}const xu={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},Vd="definitionurl",Gd="definitionURL",Yd=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(A=>[A.toLowerCase(),A])),Xd=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:Q.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:Q.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:Q.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:Q.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:Q.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:Q.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:Q.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:Q.XML}],["xml:space",{prefix:"xml",name:"space",namespace:Q.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:Q.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:Q.XMLNS}]]),Wd=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(A=>[A.toLowerCase(),A])),Jd=new Set([i.B,i.BIG,i.BLOCKQUOTE,i.BODY,i.BR,i.CENTER,i.CODE,i.DD,i.DIV,i.DL,i.DT,i.EM,i.EMBED,i.H1,i.H2,i.H3,i.H4,i.H5,i.H6,i.HEAD,i.HR,i.I,i.IMG,i.LI,i.LISTING,i.MENU,i.META,i.NOBR,i.OL,i.P,i.PRE,i.RUBY,i.S,i.SMALL,i.SPAN,i.STRONG,i.STRIKE,i.SUB,i.SUP,i.TABLE,i.TT,i.U,i.UL,i.VAR]);function qd(A){const e=A.tagID;return e===i.FONT&&A.attrs.some(({name:r})=>r===rt.COLOR||r===rt.SIZE||r===rt.FACE)||Jd.has(e)}function Hu(A){for(let e=0;e<A.attrs.length;e++)if(A.attrs[e].name===Vd){A.attrs[e].name=Gd;break}}function Du(A){for(let e=0;e<A.attrs.length;e++){const t=Yd.get(A.attrs[e].name);t!=null&&(A.attrs[e].name=t)}}function Js(A){for(let e=0;e<A.attrs.length;e++){const t=Xd.get(A.attrs[e].name);t&&(A.attrs[e].prefix=t.prefix,A.attrs[e].name=t.name,A.attrs[e].namespace=t.namespace)}}function jd(A){const e=Wd.get(A.tagName);e!=null&&(A.tagName=e,A.tagID=zr(A.tagName))}function $d(A,e){return e===Q.MATHML&&(A===i.MI||A===i.MO||A===i.MN||A===i.MS||A===i.MTEXT)}function Zd(A,e,t){if(e===Q.MATHML&&A===i.ANNOTATION_XML){for(let r=0;r<t.length;r++)if(t[r].name===rt.ENCODING){const n=t[r].value.toLowerCase();return n===xu.TEXT_HTML||n===xu.APPLICATION_XML}}return e===Q.SVG&&(A===i.FOREIGN_OBJECT||A===i.DESC||A===i.TITLE)}function zd(A,e,t,r){return(!r||r===Q.HTML)&&Zd(A,e,t)||(!r||r===Q.MATHML)&&$d(A,e)}const AB="hidden",eB=8,tB=3;var E;(function(A){A[A.INITIAL=0]="INITIAL",A[A.BEFORE_HTML=1]="BEFORE_HTML",A[A.BEFORE_HEAD=2]="BEFORE_HEAD",A[A.IN_HEAD=3]="IN_HEAD",A[A.IN_HEAD_NO_SCRIPT=4]="IN_HEAD_NO_SCRIPT",A[A.AFTER_HEAD=5]="AFTER_HEAD",A[A.IN_BODY=6]="IN_BODY",A[A.TEXT=7]="TEXT",A[A.IN_TABLE=8]="IN_TABLE",A[A.IN_TABLE_TEXT=9]="IN_TABLE_TEXT",A[A.IN_CAPTION=10]="IN_CAPTION",A[A.IN_COLUMN_GROUP=11]="IN_COLUMN_GROUP",A[A.IN_TABLE_BODY=12]="IN_TABLE_BODY",A[A.IN_ROW=13]="IN_ROW",A[A.IN_CELL=14]="IN_CELL",A[A.IN_SELECT=15]="IN_SELECT",A[A.IN_SELECT_IN_TABLE=16]="IN_SELECT_IN_TABLE",A[A.IN_TEMPLATE=17]="IN_TEMPLATE",A[A.AFTER_BODY=18]="AFTER_BODY",A[A.IN_FRAMESET=19]="IN_FRAMESET",A[A.AFTER_FRAMESET=20]="AFTER_FRAMESET",A[A.AFTER_AFTER_BODY=21]="AFTER_AFTER_BODY",A[A.AFTER_AFTER_FRAMESET=22]="AFTER_AFTER_FRAMESET"})(E||(E={}));const rB={startLine:-1,startCol:-1,startOffset:-1,endLine:-1,endCol:-1,endOffset:-1},Ou=new Set([i.TABLE,i.TBODY,i.TFOOT,i.THEAD,i.TR]),Ru={scriptingEnabled:!0,sourceCodeLocationInfo:!1,treeAdapter:Ue,onParseError:null};let Mu=class{constructor(e,t,r=null,n=null){this.fragmentContext=r,this.scriptHandler=n,this.currentToken=null,this.stopped=!1,this.insertionMode=E.INITIAL,this.originalInsertionMode=E.INITIAL,this.headElement=null,this.formElement=null,this.currentNotInHTML=!1,this.tmplInsertionModeStack=[],this.pendingCharacterTokens=[],this.hasNonWhitespacePendingCharacterToken=!1,this.framesetOk=!0,this.skipNextNewLine=!1,this.fosterParentingEnabled=!1,this.options={...Ru,...e},this.treeAdapter=this.options.treeAdapter,this.onParseError=this.options.onParseError,this.onParseError&&(this.options.sourceCodeLocationInfo=!0),this.document=t??this.treeAdapter.createDocument(),this.tokenizer=new Id(this.options,this),this.activeFormattingElements=new Hd(this.treeAdapter),this.fragmentContextID=r?zr(this.treeAdapter.getTagName(r)):i.UNKNOWN,this._setContextModes(r??this.document,this.fragmentContextID),this.openElements=new xd(this.document,this.treeAdapter,this)}static parse(e,t){const r=new this(t);return r.tokenizer.write(e,!0),r.document}static getFragmentParser(e,t){const r={...Ru,...t};e??(e=r.treeAdapter.createElement(w.TEMPLATE,Q.HTML,[]));const n=r.treeAdapter.createElement("documentmock",Q.HTML,[]),s=new this(r,n,e);return s.fragmentContextID===i.TEMPLATE&&s.tmplInsertionModeStack.unshift(E.IN_TEMPLATE),s._initTokenizerForFragmentParsing(),s._insertFakeRootElement(),s._resetInsertionMode(),s._findFormInFragmentContext(),s}getFragment(){const e=this.treeAdapter.getFirstChild(this.document),t=this.treeAdapter.createDocumentFragment();return this._adoptNodes(e,t),t}_err(e,t,r){var n;if(!this.onParseError)return;const s=(n=e.location)!==null&&n!==void 0?n:rB,a={code:t,startLine:s.startLine,startCol:s.startCol,startOffset:s.startOffset,endLine:r?s.startLine:s.endLine,endCol:r?s.startCol:s.endCol,endOffset:r?s.startOffset:s.endOffset};this.onParseError(a)}onItemPush(e,t,r){var n,s;(s=(n=this.treeAdapter).onItemPush)===null||s===void 0||s.call(n,e),r&&this.openElements.stackTop>0&&this._setContextModes(e,t)}onItemPop(e,t){var r,n;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(e,this.currentToken),(n=(r=this.treeAdapter).onItemPop)===null||n===void 0||n.call(r,e,this.openElements.current),t){let s,a;this.openElements.stackTop===0&&this.fragmentContext?(s=this.fragmentContext,a=this.fragmentContextID):{current:s,currentTagId:a}=this.openElements,this._setContextModes(s,a)}}_setContextModes(e,t){const r=e===this.document||this.treeAdapter.getNamespaceURI(e)===Q.HTML;this.currentNotInHTML=!r,this.tokenizer.inForeignNode=!r&&!this._isIntegrationPoint(t,e)}_switchToTextParsing(e,t){this._insertElement(e,Q.HTML),this.tokenizer.state=t,this.originalInsertionMode=this.insertionMode,this.insertionMode=E.TEXT}switchToPlaintextParsing(){this.insertionMode=E.TEXT,this.originalInsertionMode=E.IN_BODY,this.tokenizer.state=JA.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let e=this.fragmentContext;for(;e;){if(this.treeAdapter.getTagName(e)===w.FORM){this.formElement=e;break}e=this.treeAdapter.getParentNode(e)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==Q.HTML))switch(this.fragmentContextID){case i.TITLE:case i.TEXTAREA:{this.tokenizer.state=JA.RCDATA;break}case i.STYLE:case i.XMP:case i.IFRAME:case i.NOEMBED:case i.NOFRAMES:case i.NOSCRIPT:{this.tokenizer.state=JA.RAWTEXT;break}case i.SCRIPT:{this.tokenizer.state=JA.SCRIPT_DATA;break}case i.PLAINTEXT:{this.tokenizer.state=JA.PLAINTEXT;break}}}_setDocumentType(e){const t=e.name||"",r=e.publicId||"",n=e.systemId||"";if(this.treeAdapter.setDocumentType(this.document,t,r,n),e.location){const a=this.treeAdapter.getChildNodes(this.document).find(u=>this.treeAdapter.isDocumentTypeNode(u));a&&this.treeAdapter.setNodeSourceCodeLocation(a,e.location)}}_attachElementToTree(e,t){if(this.options.sourceCodeLocationInfo){const r=t&&{...t,startTag:t};this.treeAdapter.setNodeSourceCodeLocation(e,r)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(e);else{const r=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(r,e)}}_appendElement(e,t){const r=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(r,e.location)}_insertElement(e,t){const r=this.treeAdapter.createElement(e.tagName,t,e.attrs);this._attachElementToTree(r,e.location),this.openElements.push(r,e.tagID)}_insertFakeElement(e,t){const r=this.treeAdapter.createElement(e,Q.HTML,[]);this._attachElementToTree(r,null),this.openElements.push(r,t)}_insertTemplate(e){const t=this.treeAdapter.createElement(e.tagName,Q.HTML,e.attrs),r=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(t,r),this._attachElementToTree(t,e.location),this.openElements.push(t,e.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(r,null)}_insertFakeRootElement(){const e=this.treeAdapter.createElement(w.HTML,Q.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(e,null),this.treeAdapter.appendChild(this.openElements.current,e),this.openElements.push(e,i.HTML)}_appendCommentNode(e,t){const r=this.treeAdapter.createCommentNode(e.data);this.treeAdapter.appendChild(t,r),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(r,e.location)}_insertCharacters(e){let t,r;if(this._shouldFosterParentOnInsertion()?({parent:t,beforeElement:r}=this._findFosterParentingLocation(),r?this.treeAdapter.insertTextBefore(t,e.chars,r):this.treeAdapter.insertText(t,e.chars)):(t=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(t,e.chars)),!e.location)return;const n=this.treeAdapter.getChildNodes(t),s=r?n.lastIndexOf(r):n.length,a=n[s-1];if(this.treeAdapter.getNodeSourceCodeLocation(a)){const{endLine:o,endCol:l,endOffset:f}=e.location;this.treeAdapter.updateNodeSourceCodeLocation(a,{endLine:o,endCol:l,endOffset:f})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(a,e.location)}_adoptNodes(e,t){for(let r=this.treeAdapter.getFirstChild(e);r;r=this.treeAdapter.getFirstChild(e))this.treeAdapter.detachNode(r),this.treeAdapter.appendChild(t,r)}_setEndLocation(e,t){if(this.treeAdapter.getNodeSourceCodeLocation(e)&&t.location){const r=t.location,n=this.treeAdapter.getTagName(e),s=t.type===tA.END_TAG&&n===t.tagName?{endTag:{...r},endLine:r.endLine,endCol:r.endCol,endOffset:r.endOffset}:{endLine:r.startLine,endCol:r.startCol,endOffset:r.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(e,s)}}shouldProcessStartTagTokenInForeignContent(e){if(!this.currentNotInHTML)return!1;let t,r;return this.openElements.stackTop===0&&this.fragmentContext?(t=this.fragmentContext,r=this.fragmentContextID):{current:t,currentTagId:r}=this.openElements,e.tagID===i.SVG&&this.treeAdapter.getTagName(t)===w.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(t)===Q.MATHML?!1:this.tokenizer.inForeignNode||(e.tagID===i.MGLYPH||e.tagID===i.MALIGNMARK)&&!this._isIntegrationPoint(r,t,Q.HTML)}_processToken(e){switch(e.type){case tA.CHARACTER:{this.onCharacter(e);break}case tA.NULL_CHARACTER:{this.onNullCharacter(e);break}case tA.COMMENT:{this.onComment(e);break}case tA.DOCTYPE:{this.onDoctype(e);break}case tA.START_TAG:{this._processStartTag(e);break}case tA.END_TAG:{this.onEndTag(e);break}case tA.EOF:{this.onEof(e);break}case tA.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(e);break}}}_isIntegrationPoint(e,t,r){const n=this.treeAdapter.getNamespaceURI(t),s=this.treeAdapter.getAttrList(t);return zd(e,n,s,r)}_reconstructActiveFormattingElements(){const e=this.activeFormattingElements.entries.length;if(e){const t=this.activeFormattingElements.entries.findIndex(n=>n.type===ge.Marker||this.openElements.contains(n.element)),r=t<0?e-1:t-1;for(let n=r;n>=0;n--){const s=this.activeFormattingElements.entries[n];this._insertElement(s.token,this.treeAdapter.getNamespaceURI(s.element)),s.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=E.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(i.P),this.openElements.popUntilTagNamePopped(i.P)}_resetInsertionMode(){for(let e=this.openElements.stackTop;e>=0;e--)switch(e===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[e]){case i.TR:{this.insertionMode=E.IN_ROW;return}case i.TBODY:case i.THEAD:case i.TFOOT:{this.insertionMode=E.IN_TABLE_BODY;return}case i.CAPTION:{this.insertionMode=E.IN_CAPTION;return}case i.COLGROUP:{this.insertionMode=E.IN_COLUMN_GROUP;return}case i.TABLE:{this.insertionMode=E.IN_TABLE;return}case i.BODY:{this.insertionMode=E.IN_BODY;return}case i.FRAMESET:{this.insertionMode=E.IN_FRAMESET;return}case i.SELECT:{this._resetInsertionModeForSelect(e);return}case i.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case i.HTML:{this.insertionMode=this.headElement?E.AFTER_HEAD:E.BEFORE_HEAD;return}case i.TD:case i.TH:{if(e>0){this.insertionMode=E.IN_CELL;return}break}case i.HEAD:{if(e>0){this.insertionMode=E.IN_HEAD;return}break}}this.insertionMode=E.IN_BODY}_resetInsertionModeForSelect(e){if(e>0)for(let t=e-1;t>0;t--){const r=this.openElements.tagIDs[t];if(r===i.TEMPLATE)break;if(r===i.TABLE){this.insertionMode=E.IN_SELECT_IN_TABLE;return}}this.insertionMode=E.IN_SELECT}_isElementCausesFosterParenting(e){return Ou.has(e)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let e=this.openElements.stackTop;e>=0;e--){const t=this.openElements.items[e];switch(this.openElements.tagIDs[e]){case i.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(t)===Q.HTML)return{parent:this.treeAdapter.getTemplateContent(t),beforeElement:null};break}case i.TABLE:{const r=this.treeAdapter.getParentNode(t);return r?{parent:r,beforeElement:t}:{parent:this.openElements.items[e-1],beforeElement:null}}}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(e){const t=this._findFosterParentingLocation();t.beforeElement?this.treeAdapter.insertBefore(t.parent,e,t.beforeElement):this.treeAdapter.appendChild(t.parent,e)}_isSpecialElement(e,t){const r=this.treeAdapter.getNamespaceURI(e);return wd[r].has(t)}onCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){Lg(this,e);return}switch(this.insertionMode){case E.INITIAL:{jt(this,e);break}case E.BEFORE_HTML:{$t(this,e);break}case E.BEFORE_HEAD:{Zt(this,e);break}case E.IN_HEAD:{zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{Ar(this,e);break}case E.AFTER_HEAD:{er(this,e);break}case E.IN_BODY:case E.IN_CAPTION:case E.IN_CELL:case E.IN_TEMPLATE:{Pu(this,e);break}case E.TEXT:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:{this._insertCharacters(e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{Zs(this,e);break}case E.IN_TABLE_TEXT:{qu(this,e);break}case E.IN_COLUMN_GROUP:{nn(this,e);break}case E.AFTER_BODY:{un(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onNullCharacter(e){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){vg(this,e);return}switch(this.insertionMode){case E.INITIAL:{jt(this,e);break}case E.BEFORE_HTML:{$t(this,e);break}case E.BEFORE_HEAD:{Zt(this,e);break}case E.IN_HEAD:{zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{Ar(this,e);break}case E.AFTER_HEAD:{er(this,e);break}case E.TEXT:{this._insertCharacters(e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{Zs(this,e);break}case E.IN_COLUMN_GROUP:{nn(this,e);break}case E.AFTER_BODY:{un(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onComment(e){if(this.skipNextNewLine=!1,this.currentNotInHTML){js(this,e);return}switch(this.insertionMode){case E.INITIAL:case E.BEFORE_HTML:case E.BEFORE_HEAD:case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:case E.IN_BODY:case E.IN_TABLE:case E.IN_CAPTION:case E.IN_COLUMN_GROUP:case E.IN_TABLE_BODY:case E.IN_ROW:case E.IN_CELL:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:case E.IN_TEMPLATE:case E.IN_FRAMESET:case E.AFTER_FRAMESET:{js(this,e);break}case E.IN_TABLE_TEXT:{nr(this,e);break}case E.AFTER_BODY:{cB(this,e);break}case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{lB(this,e);break}}}onDoctype(e){switch(this.skipNextNewLine=!1,this.insertionMode){case E.INITIAL:{fB(this,e);break}case E.BEFORE_HEAD:case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:{this._err(e,b.misplacedDoctype);break}case E.IN_TABLE_TEXT:{nr(this,e);break}}}onStartTag(e){this.skipNextNewLine=!1,this.currentToken=e,this._processStartTag(e),e.selfClosing&&!e.ackSelfClosing&&this._err(e,b.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(e){this.shouldProcessStartTagTokenInForeignContent(e)?xg(this,e):this._startTagOutsideForeignContent(e)}_startTagOutsideForeignContent(e){switch(this.insertionMode){case E.INITIAL:{jt(this,e);break}case E.BEFORE_HTML:{hB(this,e);break}case E.BEFORE_HEAD:{BB(this,e);break}case E.IN_HEAD:{ce(this,e);break}case E.IN_HEAD_NO_SCRIPT:{mB(this,e);break}case E.AFTER_HEAD:{CB(this,e);break}case E.IN_BODY:{MA(this,e);break}case E.IN_TABLE:{mt(this,e);break}case E.IN_TABLE_TEXT:{nr(this,e);break}case E.IN_CAPTION:{gg(this,e);break}case E.IN_COLUMN_GROUP:{zs(this,e);break}case E.IN_TABLE_BODY:{sn(this,e);break}case E.IN_ROW:{an(this,e);break}case E.IN_CELL:{pg(this,e);break}case E.IN_SELECT:{Zu(this,e);break}case E.IN_SELECT_IN_TABLE:{wg(this,e);break}case E.IN_TEMPLATE:{bg(this,e);break}case E.AFTER_BODY:{Qg(this,e);break}case E.IN_FRAMESET:{Fg(this,e);break}case E.AFTER_FRAMESET:{_g(this,e);break}case E.AFTER_AFTER_BODY:{Ng(this,e);break}case E.AFTER_AFTER_FRAMESET:{Sg(this,e);break}}}onEndTag(e){this.skipNextNewLine=!1,this.currentToken=e,this.currentNotInHTML?Hg(this,e):this._endTagOutsideForeignContent(e)}_endTagOutsideForeignContent(e){switch(this.insertionMode){case E.INITIAL:{jt(this,e);break}case E.BEFORE_HTML:{dB(this,e);break}case E.BEFORE_HEAD:{gB(this,e);break}case E.IN_HEAD:{EB(this,e);break}case E.IN_HEAD_NO_SCRIPT:{pB(this,e);break}case E.AFTER_HEAD:{wB(this,e);break}case E.IN_BODY:{rn(this,e);break}case E.TEXT:{ag(this,e);break}case E.IN_TABLE:{tr(this,e);break}case E.IN_TABLE_TEXT:{nr(this,e);break}case E.IN_CAPTION:{Eg(this,e);break}case E.IN_COLUMN_GROUP:{mg(this,e);break}case E.IN_TABLE_BODY:{Aa(this,e);break}case E.IN_ROW:{$u(this,e);break}case E.IN_CELL:{Cg(this,e);break}case E.IN_SELECT:{zu(this,e);break}case E.IN_SELECT_IN_TABLE:{Tg(this,e);break}case E.IN_TEMPLATE:{Ug(this,e);break}case E.AFTER_BODY:{eo(this,e);break}case E.IN_FRAMESET:{Ig(this,e);break}case E.AFTER_FRAMESET:{yg(this,e);break}case E.AFTER_AFTER_BODY:{on(this,e);break}}}onEof(e){switch(this.insertionMode){case E.INITIAL:{jt(this,e);break}case E.BEFORE_HTML:{$t(this,e);break}case E.BEFORE_HEAD:{Zt(this,e);break}case E.IN_HEAD:{zt(this,e);break}case E.IN_HEAD_NO_SCRIPT:{Ar(this,e);break}case E.AFTER_HEAD:{er(this,e);break}case E.IN_BODY:case E.IN_TABLE:case E.IN_CAPTION:case E.IN_COLUMN_GROUP:case E.IN_TABLE_BODY:case E.IN_ROW:case E.IN_CELL:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:{Wu(this,e);break}case E.TEXT:{ig(this,e);break}case E.IN_TABLE_TEXT:{nr(this,e);break}case E.IN_TEMPLATE:{Ao(this,e);break}case E.AFTER_BODY:case E.IN_FRAMESET:case E.AFTER_FRAMESET:case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{$s(this,e);break}}}onWhitespaceCharacter(e){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,e.chars.charCodeAt(0)===B.LINE_FEED)){if(e.chars.length===1)return;e.chars=e.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(e);return}switch(this.insertionMode){case E.IN_HEAD:case E.IN_HEAD_NO_SCRIPT:case E.AFTER_HEAD:case E.TEXT:case E.IN_COLUMN_GROUP:case E.IN_SELECT:case E.IN_SELECT_IN_TABLE:case E.IN_FRAMESET:case E.AFTER_FRAMESET:{this._insertCharacters(e);break}case E.IN_BODY:case E.IN_CAPTION:case E.IN_CELL:case E.IN_TEMPLATE:case E.AFTER_BODY:case E.AFTER_AFTER_BODY:case E.AFTER_AFTER_FRAMESET:{ku(this,e);break}case E.IN_TABLE:case E.IN_TABLE_BODY:case E.IN_ROW:{Zs(this,e);break}case E.IN_TABLE_TEXT:{Ju(this,e);break}}}};function nB(A,e){let t=A.activeFormattingElements.getElementEntryInScopeWithTagName(e.tagName);return t?A.openElements.contains(t.element)?A.openElements.hasInScope(e.tagID)||(t=null):(A.activeFormattingElements.removeEntry(t),t=null):Xu(A,e),t}function sB(A,e){let t=null,r=A.openElements.stackTop;for(;r>=0;r--){const n=A.openElements.items[r];if(n===e.element)break;A._isSpecialElement(n,A.openElements.tagIDs[r])&&(t=n)}return t||(A.openElements.shortenToLength(r<0?0:r),A.activeFormattingElements.removeEntry(e)),t}function aB(A,e,t){let r=e,n=A.openElements.getCommonAncestor(e);for(let s=0,a=n;a!==t;s++,a=n){n=A.openElements.getCommonAncestor(a);const u=A.activeFormattingElements.getElementEntry(a),o=u&&s>=tB;!u||o?(o&&A.activeFormattingElements.removeEntry(u),A.openElements.remove(a)):(a=iB(A,u),r===e&&(A.activeFormattingElements.bookmark=u),A.treeAdapter.detachNode(r),A.treeAdapter.appendChild(a,r),r=a)}return r}function iB(A,e){const t=A.treeAdapter.getNamespaceURI(e.element),r=A.treeAdapter.createElement(e.token.tagName,t,e.token.attrs);return A.openElements.replace(e.element,r),e.element=r,r}function uB(A,e,t){const r=A.treeAdapter.getTagName(e),n=zr(r);if(A._isElementCausesFosterParenting(n))A._fosterParentElement(t);else{const s=A.treeAdapter.getNamespaceURI(e);n===i.TEMPLATE&&s===Q.HTML&&(e=A.treeAdapter.getTemplateContent(e)),A.treeAdapter.appendChild(e,t)}}function oB(A,e,t){const r=A.treeAdapter.getNamespaceURI(t.element),{token:n}=t,s=A.treeAdapter.createElement(n.tagName,r,n.attrs);A._adoptNodes(e,s),A.treeAdapter.appendChild(e,s),A.activeFormattingElements.insertElementAfterBookmark(s,n),A.activeFormattingElements.removeEntry(t),A.openElements.remove(t.element),A.openElements.insertAfter(e,s,n.tagID)}function qs(A,e){for(let t=0;t<eB;t++){const r=nB(A,e);if(!r)break;const n=sB(A,r);if(!n)break;A.activeFormattingElements.bookmark=r;const s=aB(A,n,r.element),a=A.openElements.getCommonAncestor(r.element);A.treeAdapter.detachNode(s),a&&uB(A,a,s),oB(A,n,r)}}function js(A,e){A._appendCommentNode(e,A.openElements.currentTmplContentOrNode)}function cB(A,e){A._appendCommentNode(e,A.openElements.items[0])}function lB(A,e){A._appendCommentNode(e,A.document)}function $s(A,e){if(A.stopped=!0,e.location){const t=A.fragmentContext?0:2;for(let r=A.openElements.stackTop;r>=t;r--)A._setEndLocation(A.openElements.items[r],e);if(!A.fragmentContext&&A.openElements.stackTop>=0){const r=A.openElements.items[0],n=A.treeAdapter.getNodeSourceCodeLocation(r);if(n&&!n.endTag&&(A._setEndLocation(r,e),A.openElements.stackTop>=1)){const s=A.openElements.items[1],a=A.treeAdapter.getNodeSourceCodeLocation(s);a&&!a.endTag&&A._setEndLocation(s,e)}}}}function fB(A,e){A._setDocumentType(e);const t=e.forceQuirks?Ae.QUIRKS:Kd(e);Pd(e)||A._err(e,b.nonConformingDoctype),A.treeAdapter.setDocumentMode(A.document,t),A.insertionMode=E.BEFORE_HTML}function jt(A,e){A._err(e,b.missingDoctype,!0),A.treeAdapter.setDocumentMode(A.document,Ae.QUIRKS),A.insertionMode=E.BEFORE_HTML,A._processToken(e)}function hB(A,e){e.tagID===i.HTML?(A._insertElement(e,Q.HTML),A.insertionMode=E.BEFORE_HEAD):$t(A,e)}function dB(A,e){const t=e.tagID;(t===i.HTML||t===i.HEAD||t===i.BODY||t===i.BR)&&$t(A,e)}function $t(A,e){A._insertFakeRootElement(),A.insertionMode=E.BEFORE_HEAD,A._processToken(e)}function BB(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.HEAD:{A._insertElement(e,Q.HTML),A.headElement=A.openElements.current,A.insertionMode=E.IN_HEAD;break}default:Zt(A,e)}}function gB(A,e){const t=e.tagID;t===i.HEAD||t===i.BODY||t===i.HTML||t===i.BR?Zt(A,e):A._err(e,b.endTagWithoutMatchingOpenElement)}function Zt(A,e){A._insertFakeElement(w.HEAD,i.HEAD),A.headElement=A.openElements.current,A.insertionMode=E.IN_HEAD,A._processToken(e)}function ce(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:{A._appendElement(e,Q.HTML),e.ackSelfClosing=!0;break}case i.TITLE:{A._switchToTextParsing(e,JA.RCDATA);break}case i.NOSCRIPT:{A.options.scriptingEnabled?A._switchToTextParsing(e,JA.RAWTEXT):(A._insertElement(e,Q.HTML),A.insertionMode=E.IN_HEAD_NO_SCRIPT);break}case i.NOFRAMES:case i.STYLE:{A._switchToTextParsing(e,JA.RAWTEXT);break}case i.SCRIPT:{A._switchToTextParsing(e,JA.SCRIPT_DATA);break}case i.TEMPLATE:{A._insertTemplate(e),A.activeFormattingElements.insertMarker(),A.framesetOk=!1,A.insertionMode=E.IN_TEMPLATE,A.tmplInsertionModeStack.unshift(E.IN_TEMPLATE);break}case i.HEAD:{A._err(e,b.misplacedStartTagForHeadElement);break}default:zt(A,e)}}function EB(A,e){switch(e.tagID){case i.HEAD:{A.openElements.pop(),A.insertionMode=E.AFTER_HEAD;break}case i.BODY:case i.BR:case i.HTML:{zt(A,e);break}case i.TEMPLATE:{nt(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function nt(A,e){A.openElements.tmplCount>0?(A.openElements.generateImpliedEndTagsThoroughly(),A.openElements.currentTagId!==i.TEMPLATE&&A._err(e,b.closingOfElementWithOpenChildElements),A.openElements.popUntilTagNamePopped(i.TEMPLATE),A.activeFormattingElements.clearToLastMarker(),A.tmplInsertionModeStack.shift(),A._resetInsertionMode()):A._err(e,b.endTagWithoutMatchingOpenElement)}function zt(A,e){A.openElements.pop(),A.insertionMode=E.AFTER_HEAD,A._processToken(e)}function mB(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.BASEFONT:case i.BGSOUND:case i.HEAD:case i.LINK:case i.META:case i.NOFRAMES:case i.STYLE:{ce(A,e);break}case i.NOSCRIPT:{A._err(e,b.nestedNoscriptInHead);break}default:Ar(A,e)}}function pB(A,e){switch(e.tagID){case i.NOSCRIPT:{A.openElements.pop(),A.insertionMode=E.IN_HEAD;break}case i.BR:{Ar(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function Ar(A,e){const t=e.type===tA.EOF?b.openElementsLeftAfterEof:b.disallowedContentInNoscriptInHead;A._err(e,t),A.openElements.pop(),A.insertionMode=E.IN_HEAD,A._processToken(e)}function CB(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.BODY:{A._insertElement(e,Q.HTML),A.framesetOk=!1,A.insertionMode=E.IN_BODY;break}case i.FRAMESET:{A._insertElement(e,Q.HTML),A.insertionMode=E.IN_FRAMESET;break}case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:case i.NOFRAMES:case i.SCRIPT:case i.STYLE:case i.TEMPLATE:case i.TITLE:{A._err(e,b.abandonedHeadElementChild),A.openElements.push(A.headElement,i.HEAD),ce(A,e),A.openElements.remove(A.headElement);break}case i.HEAD:{A._err(e,b.misplacedStartTagForHeadElement);break}default:er(A,e)}}function wB(A,e){switch(e.tagID){case i.BODY:case i.HTML:case i.BR:{er(A,e);break}case i.TEMPLATE:{nt(A,e);break}default:A._err(e,b.endTagWithoutMatchingOpenElement)}}function er(A,e){A._insertFakeElement(w.BODY,i.BODY),A.insertionMode=E.IN_BODY,tn(A,e)}function tn(A,e){switch(e.type){case tA.CHARACTER:{Pu(A,e);break}case tA.WHITESPACE_CHARACTER:{ku(A,e);break}case tA.COMMENT:{js(A,e);break}case tA.START_TAG:{MA(A,e);break}case tA.END_TAG:{rn(A,e);break}case tA.EOF:{Wu(A,e);break}}}function ku(A,e){A._reconstructActiveFormattingElements(),A._insertCharacters(e)}function Pu(A,e){A._reconstructActiveFormattingElements(),A._insertCharacters(e),A.framesetOk=!1}function TB(A,e){A.openElements.tmplCount===0&&A.treeAdapter.adoptAttributes(A.openElements.items[0],e.attrs)}function bB(A,e){const t=A.openElements.tryPeekProperlyNestedBodyElement();t&&A.openElements.tmplCount===0&&(A.framesetOk=!1,A.treeAdapter.adoptAttributes(t,e.attrs))}function UB(A,e){const t=A.openElements.tryPeekProperlyNestedBodyElement();A.framesetOk&&t&&(A.treeAdapter.detachNode(t),A.openElements.popAllUpToHtmlElement(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_FRAMESET)}function QB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML)}function FB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),Xs.has(A.openElements.currentTagId)&&A.openElements.pop(),A._insertElement(e,Q.HTML)}function IB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML),A.skipNextNewLine=!0,A.framesetOk=!1}function _B(A,e){const t=A.openElements.tmplCount>0;(!A.formElement||t)&&(A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML),t||(A.formElement=A.openElements.current))}function yB(A,e){A.framesetOk=!1;const t=e.tagID;for(let r=A.openElements.stackTop;r>=0;r--){const n=A.openElements.tagIDs[r];if(t===i.LI&&n===i.LI||(t===i.DD||t===i.DT)&&(n===i.DD||n===i.DT)){A.openElements.generateImpliedEndTagsWithExclusion(n),A.openElements.popUntilTagNamePopped(n);break}if(n!==i.ADDRESS&&n!==i.DIV&&n!==i.P&&A._isSpecialElement(A.openElements.items[r],n))break}A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML)}function NB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML),A.tokenizer.state=JA.PLAINTEXT}function SB(A,e){A.openElements.hasInScope(i.BUTTON)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.BUTTON)),A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML),A.framesetOk=!1}function vB(A,e){const t=A.activeFormattingElements.getElementEntryInScopeWithTagName(w.A);t&&(qs(A,e),A.openElements.remove(t.element),A.activeFormattingElements.removeEntry(t)),A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function LB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function xB(A,e){A._reconstructActiveFormattingElements(),A.openElements.hasInScope(i.NOBR)&&(qs(A,e),A._reconstructActiveFormattingElements()),A._insertElement(e,Q.HTML),A.activeFormattingElements.pushElement(A.openElements.current,e)}function HB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML),A.activeFormattingElements.insertMarker(),A.framesetOk=!1}function DB(A,e){A.treeAdapter.getDocumentMode(A.document)!==Ae.QUIRKS&&A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._insertElement(e,Q.HTML),A.framesetOk=!1,A.insertionMode=E.IN_TABLE}function Ku(A,e){A._reconstructActiveFormattingElements(),A._appendElement(e,Q.HTML),A.framesetOk=!1,e.ackSelfClosing=!0}function Vu(A){const e=wu(A,rt.TYPE);return e!=null&&e.toLowerCase()===AB}function OB(A,e){A._reconstructActiveFormattingElements(),A._appendElement(e,Q.HTML),Vu(e)||(A.framesetOk=!1),e.ackSelfClosing=!0}function RB(A,e){A._appendElement(e,Q.HTML),e.ackSelfClosing=!0}function MB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._appendElement(e,Q.HTML),A.framesetOk=!1,e.ackSelfClosing=!0}function kB(A,e){e.tagName=w.IMG,e.tagID=i.IMG,Ku(A,e)}function PB(A,e){A._insertElement(e,Q.HTML),A.skipNextNewLine=!0,A.tokenizer.state=JA.RCDATA,A.originalInsertionMode=A.insertionMode,A.framesetOk=!1,A.insertionMode=E.TEXT}function KB(A,e){A.openElements.hasInButtonScope(i.P)&&A._closePElement(),A._reconstructActiveFormattingElements(),A.framesetOk=!1,A._switchToTextParsing(e,JA.RAWTEXT)}function VB(A,e){A.framesetOk=!1,A._switchToTextParsing(e,JA.RAWTEXT)}function Gu(A,e){A._switchToTextParsing(e,JA.RAWTEXT)}function GB(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML),A.framesetOk=!1,A.insertionMode=A.insertionMode===E.IN_TABLE||A.insertionMode===E.IN_CAPTION||A.insertionMode===E.IN_TABLE_BODY||A.insertionMode===E.IN_ROW||A.insertionMode===E.IN_CELL?E.IN_SELECT_IN_TABLE:E.IN_SELECT}function YB(A,e){A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML)}function XB(A,e){A.openElements.hasInScope(i.RUBY)&&A.openElements.generateImpliedEndTags(),A._insertElement(e,Q.HTML)}function WB(A,e){A.openElements.hasInScope(i.RUBY)&&A.openElements.generateImpliedEndTagsWithExclusion(i.RTC),A._insertElement(e,Q.HTML)}function JB(A,e){A._reconstructActiveFormattingElements(),Hu(e),Js(e),e.selfClosing?A._appendElement(e,Q.MATHML):A._insertElement(e,Q.MATHML),e.ackSelfClosing=!0}function qB(A,e){A._reconstructActiveFormattingElements(),Du(e),Js(e),e.selfClosing?A._appendElement(e,Q.SVG):A._insertElement(e,Q.SVG),e.ackSelfClosing=!0}function Yu(A,e){A._reconstructActiveFormattingElements(),A._insertElement(e,Q.HTML)}function MA(A,e){switch(e.tagID){case i.I:case i.S:case i.B:case i.U:case i.EM:case i.TT:case i.BIG:case i.CODE:case i.FONT:case i.SMALL:case i.STRIKE:case i.STRONG:{LB(A,e);break}case i.A:{vB(A,e);break}case i.H1:case i.H2:case i.H3:case i.H4:case i.H5:case i.H6:{FB(A,e);break}case i.P:case i.DL:case i.OL:case i.UL:case i.DIV:case i.DIR:case i.NAV:case i.MAIN:case i.MENU:case i.ASIDE:case i.CENTER:case i.FIGURE:case i.FOOTER:case i.HEADER:case i.HGROUP:case i.DIALOG:case i.DETAILS:case i.ADDRESS:case i.ARTICLE:case i.SEARCH:case i.SECTION:case i.SUMMARY:case i.FIELDSET:case i.BLOCKQUOTE:case i.FIGCAPTION:{QB(A,e);break}case i.LI:case i.DD:case i.DT:{yB(A,e);break}case i.BR:case i.IMG:case i.WBR:case i.AREA:case i.EMBED:case i.KEYGEN:{Ku(A,e);break}case i.HR:{MB(A,e);break}case i.RB:case i.RTC:{XB(A,e);break}case i.RT:case i.RP:{WB(A,e);break}case i.PRE:case i.LISTING:{IB(A,e);break}case i.XMP:{KB(A,e);break}case i.SVG:{qB(A,e);break}case i.HTML:{TB(A,e);break}case i.BASE:case i.LINK:case i.META:case i.STYLE:case i.TITLE:case i.SCRIPT:case i.BGSOUND:case i.BASEFONT:case i.TEMPLATE:{ce(A,e);break}case i.BODY:{bB(A,e);break}case i.FORM:{_B(A,e);break}case i.NOBR:{xB(A,e);break}case i.MATH:{JB(A,e);break}case i.TABLE:{DB(A,e);break}case i.INPUT:{OB(A,e);break}case i.PARAM:case i.TRACK:case i.SOURCE:{RB(A,e);break}case i.IMAGE:{kB(A,e);break}case i.BUTTON:{SB(A,e);break}case i.APPLET:case i.OBJECT:case i.MARQUEE:{HB(A,e);break}case i.IFRAME:{VB(A,e);break}case i.SELECT:{GB(A,e);break}case i.OPTION:case i.OPTGROUP:{YB(A,e);break}case i.NOEMBED:case i.NOFRAMES:{Gu(A,e);break}case i.FRAMESET:{UB(A,e);break}case i.TEXTAREA:{PB(A,e);break}case i.NOSCRIPT:{A.options.scriptingEnabled?Gu(A,e):Yu(A,e);break}case i.PLAINTEXT:{NB(A,e);break}case i.COL:case i.TH:case i.TD:case i.TR:case i.HEAD:case i.FRAME:case i.TBODY:case i.TFOOT:case i.THEAD:case i.CAPTION:case i.COLGROUP:break;default:Yu(A,e)}}function jB(A,e){if(A.openElements.hasInScope(i.BODY)&&(A.insertionMode=E.AFTER_BODY,A.options.sourceCodeLocationInfo)){const t=A.openElements.tryPeekProperlyNestedBodyElement();t&&A._setEndLocation(t,e)}}function $B(A,e){A.openElements.hasInScope(i.BODY)&&(A.insertionMode=E.AFTER_BODY,eo(A,e))}function ZB(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t))}function zB(A){const e=A.openElements.tmplCount>0,{formElement:t}=A;e||(A.formElement=null),(t||e)&&A.openElements.hasInScope(i.FORM)&&(A.openElements.generateImpliedEndTags(),e?A.openElements.popUntilTagNamePopped(i.FORM):t&&A.openElements.remove(t))}function Ag(A){A.openElements.hasInButtonScope(i.P)||A._insertFakeElement(w.P,i.P),A._closePElement()}function eg(A){A.openElements.hasInListItemScope(i.LI)&&(A.openElements.generateImpliedEndTagsWithExclusion(i.LI),A.openElements.popUntilTagNamePopped(i.LI))}function tg(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTagsWithExclusion(t),A.openElements.popUntilTagNamePopped(t))}function rg(A){A.openElements.hasNumberedHeaderInScope()&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilNumberedHeaderPopped())}function ng(A,e){const t=e.tagID;A.openElements.hasInScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t),A.activeFormattingElements.clearToLastMarker())}function sg(A){A._reconstructActiveFormattingElements(),A._insertFakeElement(w.BR,i.BR),A.openElements.pop(),A.framesetOk=!1}function Xu(A,e){const t=e.tagName,r=e.tagID;for(let n=A.openElements.stackTop;n>0;n--){const s=A.openElements.items[n],a=A.openElements.tagIDs[n];if(r===a&&(r!==i.UNKNOWN||A.treeAdapter.getTagName(s)===t)){A.openElements.generateImpliedEndTagsWithExclusion(r),A.openElements.stackTop>=n&&A.openElements.shortenToLength(n);break}if(A._isSpecialElement(s,a))break}}function rn(A,e){switch(e.tagID){case i.A:case i.B:case i.I:case i.S:case i.U:case i.EM:case i.TT:case i.BIG:case i.CODE:case i.FONT:case i.NOBR:case i.SMALL:case i.STRIKE:case i.STRONG:{qs(A,e);break}case i.P:{Ag(A);break}case i.DL:case i.UL:case i.OL:case i.DIR:case i.DIV:case i.NAV:case i.PRE:case i.MAIN:case i.MENU:case i.ASIDE:case i.BUTTON:case i.CENTER:case i.FIGURE:case i.FOOTER:case i.HEADER:case i.HGROUP:case i.DIALOG:case i.ADDRESS:case i.ARTICLE:case i.DETAILS:case i.SEARCH:case i.SECTION:case i.SUMMARY:case i.LISTING:case i.FIELDSET:case i.BLOCKQUOTE:case i.FIGCAPTION:{ZB(A,e);break}case i.LI:{eg(A);break}case i.DD:case i.DT:{tg(A,e);break}case i.H1:case i.H2:case i.H3:case i.H4:case i.H5:case i.H6:{rg(A);break}case i.BR:{sg(A);break}case i.BODY:{jB(A,e);break}case i.HTML:{$B(A,e);break}case i.FORM:{zB(A);break}case i.APPLET:case i.OBJECT:case i.MARQUEE:{ng(A,e);break}case i.TEMPLATE:{nt(A,e);break}default:Xu(A,e)}}function Wu(A,e){A.tmplInsertionModeStack.length>0?Ao(A,e):$s(A,e)}function ag(A,e){var t;e.tagID===i.SCRIPT&&((t=A.scriptHandler)===null||t===void 0||t.call(A,A.openElements.current)),A.openElements.pop(),A.insertionMode=A.originalInsertionMode}function ig(A,e){A._err(e,b.eofInElementThatCanContainOnlyText),A.openElements.pop(),A.insertionMode=A.originalInsertionMode,A.onEof(e)}function Zs(A,e){if(Ou.has(A.openElements.currentTagId))switch(A.pendingCharacterTokens.length=0,A.hasNonWhitespacePendingCharacterToken=!1,A.originalInsertionMode=A.insertionMode,A.insertionMode=E.IN_TABLE_TEXT,e.type){case tA.CHARACTER:{qu(A,e);break}case tA.WHITESPACE_CHARACTER:{Ju(A,e);break}}else rr(A,e)}function ug(A,e){A.openElements.clearBackToTableContext(),A.activeFormattingElements.insertMarker(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_CAPTION}function og(A,e){A.openElements.clearBackToTableContext(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_COLUMN_GROUP}function cg(A,e){A.openElements.clearBackToTableContext(),A._insertFakeElement(w.COLGROUP,i.COLGROUP),A.insertionMode=E.IN_COLUMN_GROUP,zs(A,e)}function lg(A,e){A.openElements.clearBackToTableContext(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_TABLE_BODY}function fg(A,e){A.openElements.clearBackToTableContext(),A._insertFakeElement(w.TBODY,i.TBODY),A.insertionMode=E.IN_TABLE_BODY,sn(A,e)}function hg(A,e){A.openElements.hasInTableScope(i.TABLE)&&(A.openElements.popUntilTagNamePopped(i.TABLE),A._resetInsertionMode(),A._processStartTag(e))}function dg(A,e){Vu(e)?A._appendElement(e,Q.HTML):rr(A,e),e.ackSelfClosing=!0}function Bg(A,e){!A.formElement&&A.openElements.tmplCount===0&&(A._insertElement(e,Q.HTML),A.formElement=A.openElements.current,A.openElements.pop())}function mt(A,e){switch(e.tagID){case i.TD:case i.TH:case i.TR:{fg(A,e);break}case i.STYLE:case i.SCRIPT:case i.TEMPLATE:{ce(A,e);break}case i.COL:{cg(A,e);break}case i.FORM:{Bg(A,e);break}case i.TABLE:{hg(A,e);break}case i.TBODY:case i.TFOOT:case i.THEAD:{lg(A,e);break}case i.INPUT:{dg(A,e);break}case i.CAPTION:{ug(A,e);break}case i.COLGROUP:{og(A,e);break}default:rr(A,e)}}function tr(A,e){switch(e.tagID){case i.TABLE:{A.openElements.hasInTableScope(i.TABLE)&&(A.openElements.popUntilTagNamePopped(i.TABLE),A._resetInsertionMode());break}case i.TEMPLATE:{nt(A,e);break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TBODY:case i.TD:case i.TFOOT:case i.TH:case i.THEAD:case i.TR:break;default:rr(A,e)}}function rr(A,e){const t=A.fosterParentingEnabled;A.fosterParentingEnabled=!0,tn(A,e),A.fosterParentingEnabled=t}function Ju(A,e){A.pendingCharacterTokens.push(e)}function qu(A,e){A.pendingCharacterTokens.push(e),A.hasNonWhitespacePendingCharacterToken=!0}function nr(A,e){let t=0;if(A.hasNonWhitespacePendingCharacterToken)for(;t<A.pendingCharacterTokens.length;t++)rr(A,A.pendingCharacterTokens[t]);else for(;t<A.pendingCharacterTokens.length;t++)A._insertCharacters(A.pendingCharacterTokens[t]);A.insertionMode=A.originalInsertionMode,A._processToken(e)}const ju=new Set([i.CAPTION,i.COL,i.COLGROUP,i.TBODY,i.TD,i.TFOOT,i.TH,i.THEAD,i.TR]);function gg(A,e){const t=e.tagID;ju.has(t)?A.openElements.hasInTableScope(i.CAPTION)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.CAPTION),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_TABLE,mt(A,e)):MA(A,e)}function Eg(A,e){const t=e.tagID;switch(t){case i.CAPTION:case i.TABLE:{A.openElements.hasInTableScope(i.CAPTION)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(i.CAPTION),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_TABLE,t===i.TABLE&&tr(A,e));break}case i.BODY:case i.COL:case i.COLGROUP:case i.HTML:case i.TBODY:case i.TD:case i.TFOOT:case i.TH:case i.THEAD:case i.TR:break;default:rn(A,e)}}function zs(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.COL:{A._appendElement(e,Q.HTML),e.ackSelfClosing=!0;break}case i.TEMPLATE:{ce(A,e);break}default:nn(A,e)}}function mg(A,e){switch(e.tagID){case i.COLGROUP:{A.openElements.currentTagId===i.COLGROUP&&(A.openElements.pop(),A.insertionMode=E.IN_TABLE);break}case i.TEMPLATE:{nt(A,e);break}case i.COL:break;default:nn(A,e)}}function nn(A,e){A.openElements.currentTagId===i.COLGROUP&&(A.openElements.pop(),A.insertionMode=E.IN_TABLE,A._processToken(e))}function sn(A,e){switch(e.tagID){case i.TR:{A.openElements.clearBackToTableBodyContext(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_ROW;break}case i.TH:case i.TD:{A.openElements.clearBackToTableBodyContext(),A._insertFakeElement(w.TR,i.TR),A.insertionMode=E.IN_ROW,an(A,e);break}case i.CAPTION:case i.COL:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:{A.openElements.hasTableBodyContextInTableScope()&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE,mt(A,e));break}default:mt(A,e)}}function Aa(A,e){const t=e.tagID;switch(e.tagID){case i.TBODY:case i.TFOOT:case i.THEAD:{A.openElements.hasInTableScope(t)&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE);break}case i.TABLE:{A.openElements.hasTableBodyContextInTableScope()&&(A.openElements.clearBackToTableBodyContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE,tr(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TD:case i.TH:case i.TR:break;default:tr(A,e)}}function an(A,e){switch(e.tagID){case i.TH:case i.TD:{A.openElements.clearBackToTableRowContext(),A._insertElement(e,Q.HTML),A.insertionMode=E.IN_CELL,A.activeFormattingElements.insertMarker();break}case i.CAPTION:case i.COL:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:case i.TR:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,sn(A,e));break}default:mt(A,e)}}function $u(A,e){switch(e.tagID){case i.TR:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY);break}case i.TABLE:{A.openElements.hasInTableScope(i.TR)&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,Aa(A,e));break}case i.TBODY:case i.TFOOT:case i.THEAD:{(A.openElements.hasInTableScope(e.tagID)||A.openElements.hasInTableScope(i.TR))&&(A.openElements.clearBackToTableRowContext(),A.openElements.pop(),A.insertionMode=E.IN_TABLE_BODY,Aa(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:case i.TD:case i.TH:break;default:tr(A,e)}}function pg(A,e){const t=e.tagID;ju.has(t)?(A.openElements.hasInTableScope(i.TD)||A.openElements.hasInTableScope(i.TH))&&(A._closeTableCell(),an(A,e)):MA(A,e)}function Cg(A,e){const t=e.tagID;switch(t){case i.TD:case i.TH:{A.openElements.hasInTableScope(t)&&(A.openElements.generateImpliedEndTags(),A.openElements.popUntilTagNamePopped(t),A.activeFormattingElements.clearToLastMarker(),A.insertionMode=E.IN_ROW);break}case i.TABLE:case i.TBODY:case i.TFOOT:case i.THEAD:case i.TR:{A.openElements.hasInTableScope(t)&&(A._closeTableCell(),$u(A,e));break}case i.BODY:case i.CAPTION:case i.COL:case i.COLGROUP:case i.HTML:break;default:rn(A,e)}}function Zu(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.OPTION:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A._insertElement(e,Q.HTML);break}case i.OPTGROUP:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop(),A._insertElement(e,Q.HTML);break}case i.HR:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop(),A._appendElement(e,Q.HTML),e.ackSelfClosing=!0;break}case i.INPUT:case i.KEYGEN:case i.TEXTAREA:case i.SELECT:{A.openElements.hasInSelectScope(i.SELECT)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),e.tagID!==i.SELECT&&A._processStartTag(e));break}case i.SCRIPT:case i.TEMPLATE:{ce(A,e);break}}}function zu(A,e){switch(e.tagID){case i.OPTGROUP:{A.openElements.stackTop>0&&A.openElements.currentTagId===i.OPTION&&A.openElements.tagIDs[A.openElements.stackTop-1]===i.OPTGROUP&&A.openElements.pop(),A.openElements.currentTagId===i.OPTGROUP&&A.openElements.pop();break}case i.OPTION:{A.openElements.currentTagId===i.OPTION&&A.openElements.pop();break}case i.SELECT:{A.openElements.hasInSelectScope(i.SELECT)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode());break}case i.TEMPLATE:{nt(A,e);break}}}function wg(A,e){const t=e.tagID;t===i.CAPTION||t===i.TABLE||t===i.TBODY||t===i.TFOOT||t===i.THEAD||t===i.TR||t===i.TD||t===i.TH?(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),A._processStartTag(e)):Zu(A,e)}function Tg(A,e){const t=e.tagID;t===i.CAPTION||t===i.TABLE||t===i.TBODY||t===i.TFOOT||t===i.THEAD||t===i.TR||t===i.TD||t===i.TH?A.openElements.hasInTableScope(t)&&(A.openElements.popUntilTagNamePopped(i.SELECT),A._resetInsertionMode(),A.onEndTag(e)):zu(A,e)}function bg(A,e){switch(e.tagID){case i.BASE:case i.BASEFONT:case i.BGSOUND:case i.LINK:case i.META:case i.NOFRAMES:case i.SCRIPT:case i.STYLE:case i.TEMPLATE:case i.TITLE:{ce(A,e);break}case i.CAPTION:case i.COLGROUP:case i.TBODY:case i.TFOOT:case i.THEAD:{A.tmplInsertionModeStack[0]=E.IN_TABLE,A.insertionMode=E.IN_TABLE,mt(A,e);break}case i.COL:{A.tmplInsertionModeStack[0]=E.IN_COLUMN_GROUP,A.insertionMode=E.IN_COLUMN_GROUP,zs(A,e);break}case i.TR:{A.tmplInsertionModeStack[0]=E.IN_TABLE_BODY,A.insertionMode=E.IN_TABLE_BODY,sn(A,e);break}case i.TD:case i.TH:{A.tmplInsertionModeStack[0]=E.IN_ROW,A.insertionMode=E.IN_ROW,an(A,e);break}default:A.tmplInsertionModeStack[0]=E.IN_BODY,A.insertionMode=E.IN_BODY,MA(A,e)}}function Ug(A,e){e.tagID===i.TEMPLATE&&nt(A,e)}function Ao(A,e){A.openElements.tmplCount>0?(A.openElements.popUntilTagNamePopped(i.TEMPLATE),A.activeFormattingElements.clearToLastMarker(),A.tmplInsertionModeStack.shift(),A._resetInsertionMode(),A.onEof(e)):$s(A,e)}function Qg(A,e){e.tagID===i.HTML?MA(A,e):un(A,e)}function eo(A,e){var t;if(e.tagID===i.HTML){if(A.fragmentContext||(A.insertionMode=E.AFTER_AFTER_BODY),A.options.sourceCodeLocationInfo&&A.openElements.tagIDs[0]===i.HTML){A._setEndLocation(A.openElements.items[0],e);const r=A.openElements.items[1];r&&!(!((t=A.treeAdapter.getNodeSourceCodeLocation(r))===null||t===void 0)&&t.endTag)&&A._setEndLocation(r,e)}}else un(A,e)}function un(A,e){A.insertionMode=E.IN_BODY,tn(A,e)}function Fg(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.FRAMESET:{A._insertElement(e,Q.HTML);break}case i.FRAME:{A._appendElement(e,Q.HTML),e.ackSelfClosing=!0;break}case i.NOFRAMES:{ce(A,e);break}}}function Ig(A,e){e.tagID===i.FRAMESET&&!A.openElements.isRootHtmlElementCurrent()&&(A.openElements.pop(),!A.fragmentContext&&A.openElements.currentTagId!==i.FRAMESET&&(A.insertionMode=E.AFTER_FRAMESET))}function _g(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.NOFRAMES:{ce(A,e);break}}}function yg(A,e){e.tagID===i.HTML&&(A.insertionMode=E.AFTER_AFTER_FRAMESET)}function Ng(A,e){e.tagID===i.HTML?MA(A,e):on(A,e)}function on(A,e){A.insertionMode=E.IN_BODY,tn(A,e)}function Sg(A,e){switch(e.tagID){case i.HTML:{MA(A,e);break}case i.NOFRAMES:{ce(A,e);break}}}function vg(A,e){e.chars=dA,A._insertCharacters(e)}function Lg(A,e){A._insertCharacters(e),A.framesetOk=!1}function to(A){for(;A.treeAdapter.getNamespaceURI(A.openElements.current)!==Q.HTML&&!A._isIntegrationPoint(A.openElements.currentTagId,A.openElements.current);)A.openElements.pop()}function xg(A,e){if(qd(e))to(A),A._startTagOutsideForeignContent(e);else{const t=A._getAdjustedCurrentElement(),r=A.treeAdapter.getNamespaceURI(t);r===Q.MATHML?Hu(e):r===Q.SVG&&(jd(e),Du(e)),Js(e),e.selfClosing?A._appendElement(e,r):A._insertElement(e,r),e.ackSelfClosing=!0}}function Hg(A,e){if(e.tagID===i.P||e.tagID===i.BR){to(A),A._endTagOutsideForeignContent(e);return}for(let t=A.openElements.stackTop;t>0;t--){const r=A.openElements.items[t];if(A.treeAdapter.getNamespaceURI(r)===Q.HTML){A._endTagOutsideForeignContent(e);break}const n=A.treeAdapter.getTagName(r);if(n.toLowerCase()===e.tagName){e.tagName=n,A.openElements.shortenToLength(t);break}}}const Dg=new Set([w.AREA,w.BASE,w.BASEFONT,w.BGSOUND,w.BR,w.COL,w.EMBED,w.FRAME,w.HR,w.IMG,w.INPUT,w.KEYGEN,w.LINK,w.META,w.PARAM,w.SOURCE,w.TRACK,w.WBR]);function Og(A,e){return e.treeAdapter.isElementNode(A)&&e.treeAdapter.getNamespaceURI(A)===Q.HTML&&Dg.has(e.treeAdapter.getTagName(A))}const Rg={treeAdapter:Ue,scriptingEnabled:!0};function Mg(A,e){const t={...Rg,...e};return ro(A,t)}function kg(A,e){let t="";const r=e.treeAdapter.isElementNode(A)&&e.treeAdapter.getTagName(A)===w.TEMPLATE&&e.treeAdapter.getNamespaceURI(A)===Q.HTML?e.treeAdapter.getTemplateContent(A):A,n=e.treeAdapter.getChildNodes(r);if(n)for(const s of n)t+=ro(s,e);return t}function ro(A,e){return e.treeAdapter.isElementNode(A)?Pg(A,e):e.treeAdapter.isTextNode(A)?Vg(A,e):e.treeAdapter.isCommentNode(A)?Gg(A,e):e.treeAdapter.isDocumentTypeNode(A)?Yg(A,e):""}function Pg(A,e){const t=e.treeAdapter.getTagName(A);return`<${t}${Kg(A,e)}>${Og(A,e)?"":`${kg(A,e)}</${t}>`}`}function Kg(A,{treeAdapter:e}){let t="";for(const r of e.getAttrList(A)){if(t+=" ",r.namespace)switch(r.namespace){case Q.XML:{t+=`xml:${r.name}`;break}case Q.XMLNS:{r.name!=="xmlns"&&(t+="xmlns:"),t+=r.name;break}case Q.XLINK:{t+=`xlink:${r.name}`;break}default:t+=`${r.prefix}:${r.name}`}else t+=r.name;t+=`="${Ui(r.value)}"`}return t}function Vg(A,e){const{treeAdapter:t}=e,r=t.getTextNodeContent(A),n=t.getParentNode(A),s=n&&t.isElementNode(n)&&t.getTagName(n);return s&&t.getNamespaceURI(n)===Q.HTML&&bd(s,e.scriptingEnabled)?r:Qi(r)}function Gg(A,{treeAdapter:e}){return`<!--${e.getCommentNodeContent(A)}-->`}function Yg(A,{treeAdapter:e}){return`<!DOCTYPE ${e.getDocumentTypeNodeName(A)}>`}function Xg(A,e){return Mu.parse(A,e)}function Wg(A,e,t){typeof A=="string"&&(t=e,e=A,A=null);const r=Mu.getFragmentParser(A,t);return r.tokenizer.write(e,!0),r.getFragment()}function no(A){const e=A.includes('"')?"'":'"';return e+A+e}function Jg(A,e,t){let r="!DOCTYPE ";return A&&(r+=A),e?r+=` PUBLIC ${no(e)}`:t&&(r+=" SYSTEM"),t&&(r+=` ${no(t)}`),r}const De={isCommentNode:Dr,isElementNode:X,isTextNode:Be,createDocument(){const A=new Ze([]);return A["x-mode"]=Ae.NO_QUIRKS,A},createDocumentFragment(){return new Ze([])},createElement(A,e,t){const r=Object.create(null),n=Object.create(null),s=Object.create(null);for(let u=0;u<t.length;u++){const o=t[u].name;r[o]=t[u].value,n[o]=t[u].namespace,s[o]=t[u].prefix}const a=new hs(A,r,[]);return a.namespace=e,a["x-attribsNamespace"]=n,a["x-attribsPrefix"]=s,a},createCommentNode(A){return new cs(A)},createTextNode(A){return new Mt(A)},appendChild(A,e){const t=A.children[A.children.length-1];t&&(t.next=e,e.prev=t),A.children.push(e),e.parent=A},insertBefore(A,e,t){const r=A.children.indexOf(t),{prev:n}=t;n&&(n.next=e,e.prev=n),t.prev=e,e.next=t,A.children.splice(r,0,e),e.parent=A},setTemplateContent(A,e){De.appendChild(A,e)},getTemplateContent(A){return A.children[0]},setDocumentType(A,e,t,r){const n=Jg(e,t,r);let s=A.children.find(a=>ds(a)&&a.name==="!doctype");s?s.data=n??null:(s=new ls("!doctype",n),De.appendChild(A,s)),s["x-name"]=e,s["x-publicId"]=t,s["x-systemId"]=r},setDocumentMode(A,e){A["x-mode"]=e},getDocumentMode(A){return A["x-mode"]},detachNode(A){if(A.parent){const e=A.parent.children.indexOf(A),{prev:t,next:r}=A;A.prev=null,A.next=null,t&&(t.next=r),r&&(r.prev=t),A.parent.children.splice(e,1),A.parent=null}},insertText(A,e){const t=A.children[A.children.length-1];t&&Be(t)?t.data+=e:De.appendChild(A,De.createTextNode(e))},insertTextBefore(A,e,t){const r=A.children[A.children.indexOf(t)-1];r&&Be(r)?r.data+=e:De.insertBefore(A,De.createTextNode(e),t)},adoptAttributes(A,e){for(let t=0;t<e.length;t++){const r=e[t].name;A.attribs[r]===void 0&&(A.attribs[r]=e[t].value,A["x-attribsNamespace"][r]=e[t].namespace,A["x-attribsPrefix"][r]=e[t].prefix)}},getFirstChild(A){return A.children[0]},getChildNodes(A){return A.children},getParentNode(A){return A.parent},getAttrList(A){return A.attributes},getTagName(A){return A.name},getNamespaceURI(A){return A.namespace},getTextNodeContent(A){return A.data},getCommentNodeContent(A){return A.data},getDocumentTypeNodeName(A){var e;return(e=A["x-name"])!==null&&e!==void 0?e:""},getDocumentTypeNodePublicId(A){var e;return(e=A["x-publicId"])!==null&&e!==void 0?e:""},getDocumentTypeNodeSystemId(A){var e;return(e=A["x-systemId"])!==null&&e!==void 0?e:""},isDocumentTypeNode(A){return ds(A)&&A.name==="!doctype"},setNodeSourceCodeLocation(A,e){e&&(A.startIndex=e.startOffset,A.endIndex=e.endOffset),A.sourceCodeLocation=e},getNodeSourceCodeLocation(A){return A.sourceCodeLocation},updateNodeSourceCodeLocation(A,e){e.endOffset!=null&&(A.endIndex=e.endOffset),A.sourceCodeLocation={...A.sourceCodeLocation,...e}}};function qg(A,e,t,r){var n;return(n=e.treeAdapter)!==null&&n!==void 0||(e.treeAdapter=De),e.scriptingEnabled!==!1&&(e.scriptingEnabled=!0),t?Xg(A,e):Wg(r,A,e)}const jg={treeAdapter:De};function $g(A){const e="length"in A?A:[A];for(let r=0;r<e.length;r+=1){const n=e[r];Se(n)&&Array.prototype.splice.call(e,r,1,...n.children)}let t="";for(let r=0;r<e.length;r+=1){const n=e[r];t+=Mg(n,jg)}return t}var Y;(function(A){A[A.Tab=9]="Tab",A[A.NewLine=10]="NewLine",A[A.FormFeed=12]="FormFeed",A[A.CarriageReturn=13]="CarriageReturn",A[A.Space=32]="Space",A[A.ExclamationMark=33]="ExclamationMark",A[A.Number=35]="Number",A[A.Amp=38]="Amp",A[A.SingleQuote=39]="SingleQuote",A[A.DoubleQuote=34]="DoubleQuote",A[A.Dash=45]="Dash",A[A.Slash=47]="Slash",A[A.Zero=48]="Zero",A[A.Nine=57]="Nine",A[A.Semi=59]="Semi",A[A.Lt=60]="Lt",A[A.Eq=61]="Eq",A[A.Gt=62]="Gt",A[A.Questionmark=63]="Questionmark",A[A.UpperA=65]="UpperA",A[A.LowerA=97]="LowerA",A[A.UpperF=70]="UpperF",A[A.LowerF=102]="LowerF",A[A.UpperZ=90]="UpperZ",A[A.LowerZ=122]="LowerZ",A[A.LowerX=120]="LowerX",A[A.OpeningSquareBracket=91]="OpeningSquareBracket"})(Y||(Y={}));var y;(function(A){A[A.Text=1]="Text",A[A.BeforeTagName=2]="BeforeTagName",A[A.InTagName=3]="InTagName",A[A.InSelfClosingTag=4]="InSelfClosingTag",A[A.BeforeClosingTagName=5]="BeforeClosingTagName",A[A.InClosingTagName=6]="InClosingTagName",A[A.AfterClosingTagName=7]="AfterClosingTagName",A[A.BeforeAttributeName=8]="BeforeAttributeName",A[A.InAttributeName=9]="InAttributeName",A[A.AfterAttributeName=10]="AfterAttributeName",A[A.BeforeAttributeValue=11]="BeforeAttributeValue",A[A.InAttributeValueDq=12]="InAttributeValueDq",A[A.InAttributeValueSq=13]="InAttributeValueSq",A[A.InAttributeValueNq=14]="InAttributeValueNq",A[A.BeforeDeclaration=15]="BeforeDeclaration",A[A.InDeclaration=16]="InDeclaration",A[A.InProcessingInstruction=17]="InProcessingInstruction",A[A.BeforeComment=18]="BeforeComment",A[A.CDATASequence=19]="CDATASequence",A[A.InSpecialComment=20]="InSpecialComment",A[A.InCommentLike=21]="InCommentLike",A[A.BeforeSpecialS=22]="BeforeSpecialS",A[A.BeforeSpecialT=23]="BeforeSpecialT",A[A.SpecialStartSequence=24]="SpecialStartSequence",A[A.InSpecialTag=25]="InSpecialTag",A[A.InEntity=26]="InEntity"})(y||(y={}));function Qe(A){return A===Y.Space||A===Y.NewLine||A===Y.Tab||A===Y.FormFeed||A===Y.CarriageReturn}function cn(A){return A===Y.Slash||A===Y.Gt||Qe(A)}function Zg(A){return A>=Y.LowerA&&A<=Y.LowerZ||A>=Y.UpperA&&A<=Y.UpperZ}var Ee;(function(A){A[A.NoValue=0]="NoValue",A[A.Unquoted=1]="Unquoted",A[A.Single=2]="Single",A[A.Double=3]="Double"})(Ee||(Ee={}));const DA={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97])};let zg=class{constructor({xmlMode:e=!1,decodeEntities:t=!0},r){this.cbs=r,this.state=y.Text,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=y.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.xmlMode=e,this.decodeEntities=t,this.entityDecoder=new Cs(e?pi:gs,(n,s)=>this.emitCodePoint(n,s))}reset(){this.state=y.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=y.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}end(){this.running&&this.finish()}pause(){this.running=!1}resume(){this.running=!0,this.index<this.buffer.length+this.offset&&this.parse()}stateText(e){e===Y.Lt||!this.decodeEntities&&this.fastForwardTo(Y.Lt)?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=y.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateSpecialStartSequence(e){const t=this.sequenceIndex===this.currentSequence.length;if(!(t?cn(e):(e|32)===this.currentSequence[this.sequenceIndex]))this.isSpecial=!1;else if(!t){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=y.InTagName,this.stateInTagName(e)}stateInSpecialTag(e){if(this.sequenceIndex===this.currentSequence.length){if(e===Y.Gt||Qe(e)){const t=this.index-this.currentSequence.length;if(this.sectionStart<t){const r=this.index;this.index=t,this.cbs.ontext(this.sectionStart,t),this.index=r}this.isSpecial=!1,this.sectionStart=t+2,this.stateInClosingTagName(e);return}this.sequenceIndex=0}(e|32)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:this.sequenceIndex===0?this.currentSequence===DA.TitleEnd?this.decodeEntities&&e===Y.Amp&&this.startEntity():this.fastForwardTo(Y.Lt)&&(this.sequenceIndex=1):this.sequenceIndex=+(e===Y.Lt)}stateCDATASequence(e){e===DA.Cdata[this.sequenceIndex]?++this.sequenceIndex===DA.Cdata.length&&(this.state=y.InCommentLike,this.currentSequence=DA.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=y.InDeclaration,this.stateInDeclaration(e))}fastForwardTo(e){for(;++this.index<this.buffer.length+this.offset;)if(this.buffer.charCodeAt(this.index-this.offset)===e)return!0;return this.index=this.buffer.length+this.offset-1,!1}stateInCommentLike(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===DA.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index,2):this.cbs.oncomment(this.sectionStart,this.index,2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=y.Text):this.sequenceIndex===0?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)}isTagStartChar(e){return this.xmlMode?!cn(e):Zg(e)}startSpecial(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=y.SpecialStartSequence}stateBeforeTagName(e){if(e===Y.ExclamationMark)this.state=y.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===Y.Questionmark)this.state=y.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){const t=e|32;this.sectionStart=this.index,this.xmlMode?this.state=y.InTagName:t===DA.ScriptEnd[2]?this.state=y.BeforeSpecialS:t===DA.TitleEnd[2]?this.state=y.BeforeSpecialT:this.state=y.InTagName}else e===Y.Slash?this.state=y.BeforeClosingTagName:(this.state=y.Text,this.stateText(e))}stateInTagName(e){cn(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateBeforeClosingTagName(e){Qe(e)||(e===Y.Gt?this.state=y.Text:(this.state=this.isTagStartChar(e)?y.InClosingTagName:y.InSpecialComment,this.sectionStart=this.index))}stateInClosingTagName(e){(e===Y.Gt||Qe(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=y.AfterClosingTagName,this.stateAfterClosingTagName(e))}stateAfterClosingTagName(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeAttributeName(e){e===Y.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=y.InSpecialTag,this.sequenceIndex=0):this.state=y.Text,this.sectionStart=this.index+1):e===Y.Slash?this.state=y.InSelfClosingTag:Qe(e)||(this.state=y.InAttributeName,this.sectionStart=this.index)}stateInSelfClosingTag(e){e===Y.Gt?(this.cbs.onselfclosingtag(this.index),this.state=y.Text,this.sectionStart=this.index+1,this.isSpecial=!1):Qe(e)||(this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateInAttributeName(e){(e===Y.Eq||cn(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=this.index,this.state=y.AfterAttributeName,this.stateAfterAttributeName(e))}stateAfterAttributeName(e){e===Y.Eq?this.state=y.BeforeAttributeValue:e===Y.Slash||e===Y.Gt?(this.cbs.onattribend(Ee.NoValue,this.sectionStart),this.sectionStart=-1,this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e)):Qe(e)||(this.cbs.onattribend(Ee.NoValue,this.sectionStart),this.state=y.InAttributeName,this.sectionStart=this.index)}stateBeforeAttributeValue(e){e===Y.DoubleQuote?(this.state=y.InAttributeValueDq,this.sectionStart=this.index+1):e===Y.SingleQuote?(this.state=y.InAttributeValueSq,this.sectionStart=this.index+1):Qe(e)||(this.sectionStart=this.index,this.state=y.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}handleInAttributeValue(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===Y.DoubleQuote?Ee.Double:Ee.Single,this.index+1),this.state=y.BeforeAttributeName):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateInAttributeValueDoubleQuotes(e){this.handleInAttributeValue(e,Y.DoubleQuote)}stateInAttributeValueSingleQuotes(e){this.handleInAttributeValue(e,Y.SingleQuote)}stateInAttributeValueNoQuotes(e){Qe(e)||e===Y.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(Ee.Unquoted,this.index),this.state=y.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===Y.Amp&&this.startEntity()}stateBeforeDeclaration(e){e===Y.OpeningSquareBracket?(this.state=y.CDATASequence,this.sequenceIndex=0):this.state=e===Y.Dash?y.BeforeComment:y.InDeclaration}stateInDeclaration(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=y.Text,this.sectionStart=this.index+1)}stateInProcessingInstruction(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeComment(e){e===Y.Dash?(this.state=y.InCommentLike,this.currentSequence=DA.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=y.InDeclaration}stateInSpecialComment(e){(e===Y.Gt||this.fastForwardTo(Y.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=y.Text,this.sectionStart=this.index+1)}stateBeforeSpecialS(e){const t=e|32;t===DA.ScriptEnd[3]?this.startSpecial(DA.ScriptEnd,4):t===DA.StyleEnd[3]?this.startSpecial(DA.StyleEnd,4):(this.state=y.InTagName,this.stateInTagName(e))}stateBeforeSpecialT(e){const t=e|32;t===DA.TitleEnd[3]?this.startSpecial(DA.TitleEnd,4):t===DA.TextareaEnd[3]?this.startSpecial(DA.TextareaEnd,4):(this.state=y.InTagName,this.stateInTagName(e))}startEntity(){this.baseState=this.state,this.state=y.InEntity,this.entityStart=this.index,this.entityDecoder.startEntity(this.xmlMode?re.Strict:this.baseState===y.Text||this.baseState===y.InSpecialTag?re.Legacy:re.Attribute)}stateInEntity(){const e=this.entityDecoder.write(this.buffer,this.index-this.offset);e>=0?(this.state=this.baseState,e===0&&(this.index=this.entityStart)):this.index=this.offset+this.buffer.length-1}cleanup(){this.running&&this.sectionStart!==this.index&&(this.state===y.Text||this.state===y.InSpecialTag&&this.sequenceIndex===0?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===y.InAttributeValueDq||this.state===y.InAttributeValueSq||this.state===y.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}shouldContinue(){return this.index<this.buffer.length+this.offset&&this.running}parse(){for(;this.shouldContinue();){const e=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case y.Text:{this.stateText(e);break}case y.SpecialStartSequence:{this.stateSpecialStartSequence(e);break}case y.InSpecialTag:{this.stateInSpecialTag(e);break}case y.CDATASequence:{this.stateCDATASequence(e);break}case y.InAttributeValueDq:{this.stateInAttributeValueDoubleQuotes(e);break}case y.InAttributeName:{this.stateInAttributeName(e);break}case y.InCommentLike:{this.stateInCommentLike(e);break}case y.InSpecialComment:{this.stateInSpecialComment(e);break}case y.BeforeAttributeName:{this.stateBeforeAttributeName(e);break}case y.InTagName:{this.stateInTagName(e);break}case y.InClosingTagName:{this.stateInClosingTagName(e);break}case y.BeforeTagName:{this.stateBeforeTagName(e);break}case y.AfterAttributeName:{this.stateAfterAttributeName(e);break}case y.InAttributeValueSq:{this.stateInAttributeValueSingleQuotes(e);break}case y.BeforeAttributeValue:{this.stateBeforeAttributeValue(e);break}case y.BeforeClosingTagName:{this.stateBeforeClosingTagName(e);break}case y.AfterClosingTagName:{this.stateAfterClosingTagName(e);break}case y.BeforeSpecialS:{this.stateBeforeSpecialS(e);break}case y.BeforeSpecialT:{this.stateBeforeSpecialT(e);break}case y.InAttributeValueNq:{this.stateInAttributeValueNoQuotes(e);break}case y.InSelfClosingTag:{this.stateInSelfClosingTag(e);break}case y.InDeclaration:{this.stateInDeclaration(e);break}case y.BeforeDeclaration:{this.stateBeforeDeclaration(e);break}case y.BeforeComment:{this.stateBeforeComment(e);break}case y.InProcessingInstruction:{this.stateInProcessingInstruction(e);break}case y.InEntity:{this.stateInEntity();break}}this.index++}this.cleanup()}finish(){this.state===y.InEntity&&(this.entityDecoder.end(),this.state=this.baseState),this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){const e=this.buffer.length+this.offset;this.sectionStart>=e||(this.state===y.InCommentLike?this.currentSequence===DA.CdataEnd?this.cbs.oncdata(this.sectionStart,e,0):this.cbs.oncomment(this.sectionStart,e,0):this.state===y.InTagName||this.state===y.BeforeAttributeName||this.state===y.BeforeAttributeValue||this.state===y.AfterAttributeName||this.state===y.InAttributeName||this.state===y.InAttributeValueSq||this.state===y.InAttributeValueDq||this.state===y.InAttributeValueNq||this.state===y.InClosingTagName||this.cbs.ontext(this.sectionStart,e))}emitCodePoint(e,t){this.baseState!==y.Text&&this.baseState!==y.InSpecialTag?(this.sectionStart<this.entityStart&&this.cbs.onattribdata(this.sectionStart,this.entityStart),this.sectionStart=this.entityStart+t,this.index=this.sectionStart-1,this.cbs.onattribentity(e)):(this.sectionStart<this.entityStart&&this.cbs.ontext(this.sectionStart,this.entityStart),this.sectionStart=this.entityStart+t,this.index=this.sectionStart-1,this.cbs.ontextentity(e,this.sectionStart))}};const pt=new Set(["input","option","optgroup","select","button","datalist","textarea"]),aA=new Set(["p"]),so=new Set(["thead","tbody"]),ao=new Set(["dd","dt"]),io=new Set(["rt","rp"]),AE=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",aA],["h1",aA],["h2",aA],["h3",aA],["h4",aA],["h5",aA],["h6",aA],["select",pt],["input",pt],["output",pt],["button",pt],["datalist",pt],["textarea",pt],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",ao],["dt",ao],["address",aA],["article",aA],["aside",aA],["blockquote",aA],["details",aA],["div",aA],["dl",aA],["fieldset",aA],["figcaption",aA],["figure",aA],["footer",aA],["form",aA],["header",aA],["hr",aA],["main",aA],["nav",aA],["ol",aA],["pre",aA],["section",aA],["table",aA],["ul",aA],["rt",io],["rp",io],["tbody",so],["tfoot",so]]),eE=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),uo=new Set(["math","svg"]),oo=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),tE=/\s|\//;let rE=class{constructor(e,t={}){var r,n,s,a,u,o;this.options=t,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=e??{},this.htmlMode=!this.options.xmlMode,this.lowerCaseTagNames=(r=t.lowerCaseTags)!==null&&r!==void 0?r:this.htmlMode,this.lowerCaseAttributeNames=(n=t.lowerCaseAttributeNames)!==null&&n!==void 0?n:this.htmlMode,this.recognizeSelfClosing=(s=t.recognizeSelfClosing)!==null&&s!==void 0?s:!this.htmlMode,this.tokenizer=new((a=t.Tokenizer)!==null&&a!==void 0?a:zg)(this.options,this),this.foreignContext=[!this.htmlMode],(o=(u=this.cbs).onparserinit)===null||o===void 0||o.call(u,this)}ontext(e,t){var r,n;const s=this.getSlice(e,t);this.endIndex=t-1,(n=(r=this.cbs).ontext)===null||n===void 0||n.call(r,s),this.startIndex=t}ontextentity(e,t){var r,n;this.endIndex=t-1,(n=(r=this.cbs).ontext)===null||n===void 0||n.call(r,ms(e)),this.startIndex=t}isVoidElement(e){return this.htmlMode&&eE.has(e)}onopentagname(e,t){this.endIndex=t;let r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}emitOpenTag(e){var t,r,n,s;this.openTagStart=this.startIndex,this.tagname=e;const a=this.htmlMode&&AE.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[0]);){const u=this.stack.shift();(r=(t=this.cbs).onclosetag)===null||r===void 0||r.call(t,u,!0)}this.isVoidElement(e)||(this.stack.unshift(e),this.htmlMode&&(uo.has(e)?this.foreignContext.unshift(!0):oo.has(e)&&this.foreignContext.unshift(!1))),(s=(n=this.cbs).onopentagname)===null||s===void 0||s.call(n,e),this.cbs.onopentag&&(this.attribs={})}endOpenTag(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&((r=(t=this.cbs).onopentag)===null||r===void 0||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}onopentagend(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}onclosetag(e,t){var r,n,s,a,u,o,l,f;this.endIndex=t;let h=this.getSlice(e,t);if(this.lowerCaseTagNames&&(h=h.toLowerCase()),this.htmlMode&&(uo.has(h)||oo.has(h))&&this.foreignContext.shift(),this.isVoidElement(h))this.htmlMode&&h==="br"&&((a=(s=this.cbs).onopentagname)===null||a===void 0||a.call(s,"br"),(o=(u=this.cbs).onopentag)===null||o===void 0||o.call(u,"br",{},!0),(f=(l=this.cbs).onclosetag)===null||f===void 0||f.call(l,"br",!1));else{const d=this.stack.indexOf(h);if(d!==-1)for(let C=0;C<=d;C++){const p=this.stack.shift();(n=(r=this.cbs).onclosetag)===null||n===void 0||n.call(r,p,C!==d)}else this.htmlMode&&h==="p"&&(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}onselfclosingtag(e){this.endIndex=e,this.recognizeSelfClosing||this.foreignContext[0]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}closeCurrentTag(e){var t,r;const n=this.tagname;this.endOpenTag(e),this.stack[0]===n&&((r=(t=this.cbs).onclosetag)===null||r===void 0||r.call(t,n,!e),this.stack.shift())}onattribname(e,t){this.startIndex=e;const r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}onattribdata(e,t){this.attribvalue+=this.getSlice(e,t)}onattribentity(e){this.attribvalue+=ms(e)}onattribend(e,t){var r,n;this.endIndex=t,(n=(r=this.cbs).onattribute)===null||n===void 0||n.call(r,this.attribname,this.attribvalue,e===Ee.Double?'"':e===Ee.Single?"'":e===Ee.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}getInstructionName(e){const t=e.search(tE);let r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}ondeclaration(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const n=this.getInstructionName(r);this.cbs.onprocessinginstruction(`!${n}`,`!${r}`)}this.startIndex=t+1}onprocessinginstruction(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const n=this.getInstructionName(r);this.cbs.onprocessinginstruction(`?${n}`,`?${r}`)}this.startIndex=t+1}oncomment(e,t,r){var n,s,a,u;this.endIndex=t,(s=(n=this.cbs).oncomment)===null||s===void 0||s.call(n,this.getSlice(e,t-r)),(u=(a=this.cbs).oncommentend)===null||u===void 0||u.call(a),this.startIndex=t+1}oncdata(e,t,r){var n,s,a,u,o,l,f,h,d,C;this.endIndex=t;const p=this.getSlice(e,t-r);!this.htmlMode||this.options.recognizeCDATA?((s=(n=this.cbs).oncdatastart)===null||s===void 0||s.call(n),(u=(a=this.cbs).ontext)===null||u===void 0||u.call(a,p),(l=(o=this.cbs).oncdataend)===null||l===void 0||l.call(o)):((h=(f=this.cbs).oncomment)===null||h===void 0||h.call(f,`[CDATA[${p}]]`),(C=(d=this.cbs).oncommentend)===null||C===void 0||C.call(d)),this.startIndex=t+1}onend(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let r=0;r<this.stack.length;r++)this.cbs.onclosetag(this.stack[r],!0)}(t=(e=this.cbs).onend)===null||t===void 0||t.call(e)}reset(){var e,t,r,n;(t=(e=this.cbs).onreset)===null||t===void 0||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,(n=(r=this.cbs).onparserinit)===null||n===void 0||n.call(r,this),this.buffers.length=0,this.foreignContext.length=0,this.foreignContext.unshift(!this.htmlMode),this.bufferOffset=0,this.writeIndex=0,this.ended=!1}parseComplete(e){this.reset(),this.end(e)}getSlice(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();let r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);for(;t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write(e){var t,r;if(this.ended){(r=(t=this.cbs).onerror)===null||r===void 0||r.call(t,new Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}end(e){var t,r;if(this.ended){(r=(t=this.cbs).onerror)===null||r===void 0||r.call(t,new Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}pause(){this.tokenizer.pause()}resume(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex<this.buffers.length;)this.tokenizer.write(this.buffers[this.writeIndex++]);this.ended&&this.tokenizer.end()}parseChunk(e){this.write(e)}done(e){this.end(e)}};function nE(A,e){const t=new s0(void 0,e);return new rE(t,e).end(A),t.root}const sE=xh((A,e,t,r)=>e._useHtmlParser2?nE(A,e):qg(A,e,t,r)),co=hd(sE,(A,e)=>e._useHtmlParser2?Or(A,e):$g(A));var W=(A=>(A[A.None=0]="None",A[A.Text=1]="Text",A[A.Image=2]="Image",A[A.Video=3]="Video",A[A.Icon=4]="Icon",A[A.Link=5]="Link",A[A.Button=6]="Button",A[A.Block=10]="Block",A))(W||{}),le;(A=>{A.THEME_TEXT_COLOR_CLASS="gp-designer-theme-text",A.THEME_BUTTON_COLOR_CLASS="gp-designer-theme-button",A.THEME_ICON_COLOR_CLASS="gp-designer-theme-icon",A.THEME_COLOR="#3574e6"})(le||(le={}));const aE=c.defineComponent({name:"GpMessage",props:{message:{type:String,required:!0},type:{type:String,default:"info"},position:{type:String,default:"top-right"},duration:{type:Number,default:3e3},onClose:{type:Function,required:!0},icon:{type:Boolean,default:!0}},setup(A){const e=c.ref(!1),t=c.computed(()=>({success:"bg-green-100 text-green-800",error:"bg-red-100 text-red-800",info:"bg-blue-100 text-blue-800",warning:"bg-yellow-100 text-yellow-800"})[A.type]),r=()=>{e.value=!1,A.onClose()};return setTimeout(()=>{r()},A.duration),e.value=!0,{visible:e,typeClass:t,closeMessage:r}}}),Oe=(A,e)=>{const t=A.__vccOpts||A;for(const[r,n]of e)t[r]=n;return t},iE={key:0,class:"gp-message"},uE={key:0,class:"mr-2"},oE={key:0,class:"text-green-500"},cE={key:1,class:"text-red-500"},lE={key:2,class:"text-blue-500"},fE={key:3,class:"text-yellow-500"};function hE(A,e,t,r,n,s){return c.openBlock(),c.createBlock(c.Transition,{name:"fade"},{default:c.withCtx(()=>[A.visible?(c.openBlock(),c.createElementBlock("div",iE,[c.createElementVNode("div",{class:c.normalizeClass([A.typeClass,"message-content"])},[A.icon?(c.openBlock(),c.createElementBlock("span",uE,[c.renderSlot(A.$slots,"icon",{},()=>[A.type==="success"?(c.openBlock(),c.createElementBlock("span",oE,"✔")):c.createCommentVNode("",!0),A.type==="error"?(c.openBlock(),c.createElementBlock("span",cE,"✖")):c.createCommentVNode("",!0),A.type==="info"?(c.openBlock(),c.createElementBlock("span",lE,"ℹ")):c.createCommentVNode("",!0),A.type==="warning"?(c.openBlock(),c.createElementBlock("span",fE,"⚠")):c.createCommentVNode("",!0)],!0)])):c.createCommentVNode("",!0),c.createElementVNode("span",null,c.toDisplayString(A.message),1),c.createElementVNode("button",{class:"close-btn hover:text-gray-800 font-bold",onClick:e[0]||(e[0]=(...a)=>A.closeMessage&&A.closeMessage(...a))}," × ")],2)])):c.createCommentVNode("",!0)]),_:3})}const dE=Oe(aE,[["render",hE],["__scopeId","data-v-12cd136f"]]),Ct=c.reactive([]);let ea=null;const BE=()=>{const A=document.createElement("div");return A.id="global-message-container",document.body.appendChild(A),A},gE=()=>{if(ea)return;const A=BE();ea=c.createApp({setup(){return{messageQueue:Ct}},render(){const e=c.computed(()=>{var r;return{"top-left":"top-4 left-4","top-right":"top-4 right-4","bottom-left":"bottom-4 left-4","bottom-right":"bottom-4 right-4","top-center":"top-4 left-1/2 transform -translate-x-1/2","bottom-center":"bottom-4 left-1/2 transform -translate-x-1/2"}[((r=Ct[0])==null?void 0:r.options.position)||"top-right"]});return c.h("div",{class:`fixed flex flex-col gap-2 ${e.value}`},Ct.map(t=>c.h(dE,{key:t.id,...t.options,onClose:()=>lo(t.id)})))}}),ea.mount(A)},lo=A=>{const e=Ct.findIndex(t=>t.id===A);e!==-1&&Ct.splice(e,1)};let EE=0;const j=A=>{gE();const e=EE++;Ct.push({id:e,options:A}),setTimeout(()=>{lo(e)},A.duration||3e3)};j.success=(A,e=3e3,t=!0)=>{j(typeof A=="string"?{message:A,type:"success",duration:e,icon:t}:{...A,type:"success"})},j.error=(A,e=3e3,t=!0)=>{j(typeof A=="string"?{message:A,type:"error",duration:e,icon:t}:{...A,type:"error"})},j.info=(A,e=3e3,t=!0)=>{j(typeof A=="string"?{message:A,type:"info",duration:e,icon:t}:{...A,type:"info"})},j.warning=(A,e=3e3,t=!0)=>{j(typeof A=="string"?{message:A,type:"warning",duration:e,icon:t}:{...A,type:"warning"})};const mE=["onClick"],pE={key:0,"date-action":"1",contenteditable:"false",class:"text-red-500 text-xs mt-1"},CE=Oe(c.defineComponent({__name:"ElementRenderer",props:{element:{type:Object,required:!0},selectedElement:Object,hoveredElement:Object,uploadByFile:{type:Function,required:!1},icons:{type:Array,default:()=>[]},mode:{type:String,default:"edit"},cropper:{type:Object,required:!1},icon:{type:Object,required:!1},upload:{type:Object,required:!1},r:{type:String,required:!1},showMargin:{type:Boolean,default:!1}},emits:["selectElement","hoverElement","updateText","contentUpdated","blockAction","addIcon","updateElementRule"],setup(A,{emit:e}){const t=A,r=e,n=c.computed(()=>t.element.editText||t.element.text),s=c.computed(()=>t.selectedElement===t.element),a=c.computed(()=>t.hoveredElement===t.element),u=c.ref(!1),o=c.ref(!1),l=c.ref(""),f=c.computed(()=>t.element.rule.minText||0),h=c.computed(()=>t.element.rule.maxText||1/0),d=v=>{let S="";if(v.children&&v.children.length&&v.children[0].type===W.Block){const q=v.children[0].rule.flexColumn||v.children[0].rule.mobileFlexColumn;Math.min(q,v.children.length)&&(S+=" flex pc:justify-center flex-wrap ",v.children[0].rule.mobileFlexColumn?S+=" justify-center ":S+=" gp-designer-m-swiper swiper-wrapper justify-normal ")}if(v.type===W.Block){const q=v.rule.flexColumn,$=v.rule.mobileFlexColumn;($||q)&&(S+=" box-border "),$>1&&$<=12?S+=` basis-1/${$} `:$==1?S+=" basis-full ":$||(S+=" gp-designer-m-swiper-slide swiper-slide "),q>1&&q<=12?S+=` pc:basis-1/${q} `:q==1&&(S+=" pc:basis-full ")}return S};c.watch(()=>t.r,()=>{r("contentUpdated",D())},{immediate:!0});function C(v){v.xpath!="/div[1]"&&t.mode!=="preview"&&(t.mode==="edit"?v.type===W.Text&&r("selectElement",v):r("selectElement",v),!v.rule.isReadOnly&&v.type===W.Text&&(u.value=!0))}function p(v){r("selectElement",v)}function T(v,S){r("hoverElement",v,S)}function U(v){r("hoverElement",v)}function _(v){v.currentTarget.contains(v.relatedTarget)?r("hoverElement",null):t.hoveredElement?r("hoverElement",null,t.hoveredElement.parentxpath):r("hoverElement",null)}function I(){u.value=!1,r("contentUpdated",D())}function D(){function v(q){var te;const $=q,zA=$.rule.isThemeColor&&$.type==W.Text?le.THEME_TEXT_COLOR_CLASS:$.rule.isThemeColor&&$.type==W.Button?le.THEME_BUTTON_COLOR_CLASS:$.rule.isThemeColor&&$.type==W.Icon?le.THEME_ICON_COLOR_CLASS:"";zA?$.attrs.class=$.attrs.class?$.attrs.class+" "+zA:zA:$.attrs.class=(te=$.attrs.class)==null?void 0:te.replace(new RegExp(`${le.THEME_TEXT_COLOR_CLASS}|${le.THEME_BUTTON_COLOR_CLASS}|${le.THEME_ICON_COLOR_CLASS}`,"g"),"");const je={class:$.attrs.class||""},Lr=d($);Lr&&(je.class+=" "+Lr);const xr=Object.entries(q.attrs||{}).filter(([YA,HA])=>YA!=="class").map(([YA,HA])=>`${YA}="${HA}"`).join(" "),F=Object.entries(je||{}).map(([YA,HA])=>`${YA}="${HA}"`).join(" "),L=`<${q.tag}${xr?" "+xr:""}${F?" "+F:""}>`,K=`</${q.tag}>`,V=(q.children||[]).map(YA=>v(YA)).join("");let CA=q.editText||q.text||"";return CA=CA.replace(/\r\n/g,`
9
+ `).replace(/\n/g,"<br>"),`${L}${CA}${V}${K}`}return v(t.element)}function k(v){var zA,je;v.preventDefault(),v.stopPropagation();let S=((zA=v.clipboardData)==null?void 0:zA.getData("text/plain"))||"";(je=t.element.rule)!=null&&je.allowWrap?(S=S==null?void 0:S.replace(/\n/g,"<br>"),document.execCommand("insertHTML",!1,S)):(S=S==null?void 0:S.replace(/\n/g," "),document.execCommand("insertText",!1,S));const q=v.target,$=q.innerText||q.textContent||"";H($)}function x(v){var S;v.key==="Enter"&&(v.preventDefault(),v.stopPropagation(),(S=t.element.rule)!=null&&S.allowWrap?document.execCommand("insertLineBreak"):j.error("当前节点不允许换行"))}function m(v){v.stopPropagation();const S=v.target,q=S.innerText||S.textContent||"";H(q)}function H(v){if(v.length<f.value){o.value=!0,l.value=`最少输入 ${f.value} 个字符`;return}else if(v.length>h.value){o.value=!0,l.value=`最多输入 ${h.value} 个字符`;return}else o.value=!1,l.value="";r("updateText",{element:t.element,newText:v}),r("contentUpdated",D());const S=c.toRaw(t.element);S.editText=v}function P(v){r("updateText",v),r("contentUpdated",D())}function M(){const v={...t.element};r("blockAction",{action:"add",element:t.element,newBlock:v})}function eA(){uA(t.element),r("blockAction",{action:"moveUp",element:t.element})}function uA(v){v.children&&v.children.length>0&&v.children.forEach(S=>{S.type==W.Text&&(S.text!==S.editText&&(S.text=S.editText),uA(S))})}function fA(){uA(t.element),r("blockAction",{action:"moveDown",element:t.element})}function J(){r("blockAction",{action:"delete",element:t.element})}function rA(v){r("blockAction",v),r("contentUpdated",D())}function oA(v){IA.value.openModal(v)}function hA(v){KA.value.openModal(v)}function pA(v,S){r("addIcon",v,S),r("contentUpdated",D())}function GA(v){r("updateElementRule",v)}const IA=c.ref(t.icon);c.watch(()=>t.icon,v=>{IA.value=v},{immediate:!0});const KA=c.ref(t.upload);c.watch(()=>t.upload,v=>{KA.value=v},{immediate:!0});const xA=c.computed(()=>{const v=d(t.element);return t.element.css=v,v}),ZA=(v,S)=>{S.children&&S.children.length&&S.children[0].type===W.Block&&S.children.map(q=>{q.rule.flexColumn=v}),r("updateElementRule",S)},_A=c.computed(()=>{let v="";if(t.mode==="design"){const S=t.element;if(S.type===W.Block){const q=S.rule.flexColumn;q>1&&q<=12&&(v+=`flex-basis: calc(100% / ${q} - 10px);`)}}return v});return(v,S)=>{const q=c.resolveComponent("ElementRenderer",!0);return c.openBlock(),c.createElementBlock(c.Fragment,null,[(c.openBlock(),c.createBlock(c.resolveDynamicComponent(t.element.tag),c.mergeProps({class:["relative",A.mode==="design"?" border-dashed border-2":"",A.showMargin?"p-1 m-1":"",a.value?"border-dashed border-blue-500":"",s.value?"border-dashed border-green-500 z-5 border-2":"",o.value?"border-dashed border-red-500":"",(!a.value&&!s.value&&!o.value,""),t.element.rule&&t.element.rule.isReadOnly?"cursor-not-allowed":"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Text?c.unref(le).THEME_TEXT_COLOR_CLASS:"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Button?c.unref(le).THEME_BUTTON_COLOR_CLASS:"",t.element.rule.isThemeColor&&t.element.type===c.unref(W).Icon?c.unref(le).THEME_ICON_COLOR_CLASS:"",xA.value],style:_A.value},t.element.attrs,{contenteditable:u.value,onClick:S[3]||(S[3]=c.withModifiers(()=>C(t.element),["stop"])),onMouseenter:S[4]||(S[4]=()=>U(t.element)),onMouseleave:_,onBlur:I,onInput:m,onPaste:k,onKeydown:c.withModifiers(x,["stop"])}),{default:c.withCtx(()=>[c.createTextVNode(c.toDisplayString(n.value),1),t.element.children&&t.element.children.length?(c.openBlock(),c.createElementBlock(c.Fragment,{key:0},[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(t.element.children,($,zA)=>(c.openBlock(),c.createBlock(q,{"show-margin":A.showMargin,key:zA,r:A.r,mode:A.mode,icons:A.icons,element:$,selectedElement:t.selectedElement,hoveredElement:t.hoveredElement,cropper:A.cropper,icon:A.icon,upload:A.upload,"upload-by-file":A.uploadByFile,onSelectElement:p,onHoverElement:T,onUpdateText:P,onBlockAction:rA,onAddIcon:pA,onUpdateElementRule:()=>GA($)},null,8,["show-margin","r","mode","icons","element","selectedElement","hoveredElement","cropper","icon","upload","upload-by-file","onUpdateElementRule"]))),128)),t.element.type===c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",{key:0,"date-action":"1",contenteditable:"false",onClick:S[0]||(S[0]=c.withModifiers(()=>{},["stop"])),class:"hover:z-10 z-9 flex space-x-1 flex-none flex-nowrap overflow-visible absolute left-2 top-2 text-sm"},[c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-green-500/80 text-white rounded hover:bg-green-500",onClick:c.withModifiers(M,["stop"])},S[7]||(S[7]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("rect",{width:"336",height:"336",x:"128",y:"128",fill:"none",stroke:"white","stroke-linejoin":"round","stroke-width":"32",rx:"57",ry:"57"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m383.5 128l.5-24a56.16 56.16 0 0 0-56-56H112a64.19 64.19 0 0 0-64 64v216a56.16 56.16 0 0 0 56 56h24"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-blue-500/80 text-white rounded hover:bg-blue-500",onClick:c.withModifiers(eA,["stop"])},S[8]||(S[8]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"48",d:"M244 400L100 256l144-144M120 256h292"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-blue-500/80 text-white rounded hover:bg-blue-500",onClick:c.withModifiers(fA,["stop"])},S[9]||(S[9]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"48",d:"m268 112l144 144l-144 144m124-144H100"})],-1)])),c.createElementVNode("button",{class:"flex-none content-center items-center p-1 bg-red-500/80 text-white rounded hover:bg-red-500",onClick:c.withModifiers(J,["stop"])},S[10]||(S[10]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M400 256H112"})],-1)]))])):c.createCommentVNode("",!0),t.element.children&&t.element.children.length&&t.element.children[0].type===c.unref(W).Block&&t.element.children[0].rule&&t.element.children[0].rule.flexColumns&&t.element.children[0].rule.flexColumns.length>0?(c.openBlock(),c.createElementBlock("div",{key:1,"date-action":"1",contenteditable:"false",onClick:S[1]||(S[1]=c.withModifiers(()=>{},["stop"])),class:"hover:z-10 z-9 flex space-x-1 flex-none flex-nowrap overflow-visible absolute right-0 -top-6 items-center"},[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(t.element.children[0].rule.flexColumns,($,zA)=>(c.openBlock(),c.createElementBlock("button",{class:c.normalizeClass(["text-xs w-6 h-6 flex-none content-center items-center justify-center bg-purple-400/80 text-white rounded hover:bg-purple-600",t.element.children[0].rule.flexColumn===$?"bg-purple-700":""]),onClick:c.withModifiers(()=>ZA($,t.element),["stop"])},c.toDisplayString($),11,mE))),256))])):c.createCommentVNode("",!0)],64)):c.createCommentVNode("",!0),t.element.type===c.unref(W).Icon?(c.openBlock(),c.createElementBlock("div",{key:1,class:"cursor-pointer rounded-sm w-5 h-5 flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm text-gray-50 z-10 bg-black/80 hover:bg-black",contenteditable:"false",onClick:S[2]||(S[2]=c.withModifiers(()=>oA(t.element),["stop"]))},S[11]||(S[11]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M320 367.79h76c55 0 100-29.21 100-83.6s-53-81.47-96-83.6c-8.89-85.06-71-136.8-144-136.8c-69 0-113.44 45.79-128 91.2c-60 5.7-112 43.88-112 106.4s54 106.4 120 106.4h56"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m320 255.79l-64-64l-64 64m64 192.42V207.79"})],-1)]))):c.createCommentVNode("",!0)]),_:1},16,["class","style","contenteditable"])),t.element.type==c.unref(W).Text&&o.value?(c.openBlock(),c.createElementBlock("div",pE,c.toDisplayString(l.value),1)):c.createCommentVNode("",!0),t.element.type===c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",{key:1,class:"cursor-pointer rounded-sm flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 text-sm text-gray-50 z-10 bg-black/80 hover:bg-black",onClick:S[6]||(S[6]=c.withModifiers(()=>{},["stop"])),contenteditable:"false"},[c.createElementVNode("div",{class:"p-1",onClick:S[5]||(S[5]=c.withModifiers(()=>hA(t.element),["stop"]))},S[12]||(S[12]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512"},[c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M320 367.79h76c55 0 100-29.21 100-83.6s-53-81.47-96-83.6c-8.89-85.06-71-136.8-144-136.8c-69 0-113.44 45.79-128 91.2c-60 5.7-112 43.88-112 106.4s54 106.4 120 106.4h56"}),c.createElementVNode("path",{fill:"none",stroke:"white","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"m320 255.79l-64-64l-64 64m64 192.42V207.79"})],-1)]))])):c.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-7ef7ba89"]]),wE=c.defineComponent({name:"GpCheckbox",props:{modelValue:{type:Boolean,required:!0},label:{type:String,default:""}},emits:["update:modelValue"],setup(A,{emit:e}){return{updateValue:r=>{e("update:modelValue",r.target.checked)}}}}),TE={class:"form-group"},bE={class:"flex items-center space-x-2 cursor-pointer"},UE=["checked","aria-checked"],QE={class:"checkbox-label text-sm text-gray-700"};function FE(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",TE,[c.createElementVNode("label",bE,[c.createElementVNode("input",{type:"checkbox",checked:A.modelValue,onChange:e[0]||(e[0]=(...a)=>A.updateValue&&A.updateValue(...a)),class:"custom-checkbox","aria-checked":A.modelValue},null,40,UE),c.createElementVNode("span",QE,c.toDisplayString(A.label),1)])])}const wt=Oe(wE,[["render",FE],["__scopeId","data-v-68b8f276"]]),IE={class:"text-sm"},_E={key:0},yE={key:0},NE={class:"text-gray-500 my-2 truncate"},SE={class:"text-gray-500 my-2 break-words"},vE={key:1},LE={key:2},xE={key:3},HE={key:4},DE={key:5},OE={key:6},RE={key:7},ME={key:8},kE={key:9},PE={key:10},KE={key:11},VE={key:12},GE={key:13},YE=Oe(c.defineComponent({__name:"EditorPanel",props:{element:Object},emits:["updateElement"],setup(A,{emit:e}){const t=A,r=e,n=c.ref({rule:{},...t.element});c.watch(()=>t.element,a=>{n.value={rule:{},...a}},{immediate:!0});function s(){var a;if(n.value.type===W.Icon&&!n.value.attrs.class.includes("iconfont")){j.error("图标仅支持 iconfont 图标");return}if(n.value.type===W.Image&&n.value.tag!=="img"){j.error("节点类型错误");return}if(n.value.type===W.Video&&n.value.tag!=="video"){j.error("节点类型错误");return}if(n.value.type===W.Link&&n.value.tag!=="a"){j.error("节点类型错误");return}if(n.value.type===W.Text){if(Number(n.value.rule.minText)>Number(n.value.rule.maxText)){j.error("最小文本长度不能大于最大文本长度");return}if(n.value.tag!=="p"&&n.value.tag!=="div"&&n.value.tag!=="span"&&n.value.tag!=="h1"&&n.value.tag!=="h2"&&n.value.tag!=="h3"&&n.value.tag!=="h4"&&n.value.tag!=="h5"&&n.value.tag!=="h6"){j.error("节点类型错误");return}}if(n.value.type===W.Block){if(Number(n.value.rule.minBlock)>Number(n.value.rule.maxBlock)){j.error("最小块数量不能大于最大块数量");return}if(n.value.tag!=="div"&&n.value.tag!=="section"&&n.value.tag!=="article"&&n.value.tag!=="nav"&&n.value.tag!=="header"&&n.value.tag!=="footer"&&n.value.tag!=="span"&&n.value.tag!=="p"&&n.value.tag!=="img"){j.error("节点类型错误");return}if(!n.value.children||n.value.children.length<1){j.error("节点错误,必须包含子元素");return}!n.value.rule.flexColumn&&((a=n.value.rule.flexColumns)==null?void 0:a.length)>0&&(n.value.rule.flexColumn=n.value.rule.flexColumns[0])}n.value.rule.minText&&(n.value.rule.minText=Number(n.value.rule.minText)),n.value.rule.maxText&&(n.value.rule.maxText=Number(n.value.rule.maxText)),n.value.rule.minBlock&&(n.value.rule.minBlock=Number(n.value.rule.minBlock)),n.value.rule.maxBlock&&(n.value.rule.maxBlock=Number(n.value.rule.maxBlock)),n.value.rule.flexColumn&&(n.value.rule.flexColumn=Number(n.value.rule.flexColumn)),n.value.rule.mobileFlexColumn&&(n.value.rule.mobileFlexColumn=Number(n.value.rule.mobileFlexColumn)),r("updateElement",n.value)}return(a,u)=>(c.openBlock(),c.createElementBlock("div",IE,[n.value?(c.openBlock(),c.createElementBlock("div",_E,[n.value.text!==void 0?(c.openBlock(),c.createElementBlock("div",yE,[u[16]||(u[16]=c.createElementVNode("label",{class:"block"},"内容",-1)),c.createElementVNode("div",NE,c.toDisplayString(n.value.text||"-"),1)])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[u[17]||(u[17]=c.createElementVNode("label",{class:"block mt-4"},"节点",-1)),c.createElementVNode("div",SE,c.toDisplayString(n.value.xpath),1)]),c.createElementVNode("div",null,[u[19]||(u[19]=c.createElementVNode("label",{class:"block mt-4"},"类型",-1)),c.withDirectives(c.createElementVNode("select",{"onUpdate:modelValue":u[0]||(u[0]=o=>n.value.type=o),class:"border rounded p-1 w-full"},u[18]||(u[18]=[c.createElementVNode("option",{value:0},"无",-1),c.createElementVNode("option",{value:1},"文本",-1),c.createElementVNode("option",{value:2},"图片",-1),c.createElementVNode("option",{value:3},"视频",-1),c.createElementVNode("option",{value:4},"图标",-1),c.createElementVNode("option",{value:5},"链接",-1),c.createElementVNode("option",{value:6},"按钮",-1),c.createElementVNode("option",{value:10},"块",-1)]),512),[[c.vModelSelect,n.value.type]])]),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",vE,[u[20]||(u[20]=c.createElementVNode("label",{class:"block mt-4"},"最小文本长度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[1]||(u[1]=o=>n.value.rule.minText=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minText]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",LE,[u[21]||(u[21]=c.createElementVNode("label",{class:"block mt-4"},"最大文本长度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[2]||(u[2]=o=>n.value.rule.maxText=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxText]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",xE,[u[22]||(u[22]=c.createElementVNode("label",{class:"block mt-4"},"是否裁剪",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.crop,"onUpdate:modelValue":u[3]||(u[3]=o=>n.value.rule.crop=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",HE,[u[23]||(u[23]=c.createElementVNode("label",{class:"block mt-4"},"图片宽度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[4]||(u[4]=o=>n.value.rule.minImageWidth=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minImageWidth]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Image?(c.openBlock(),c.createElementBlock("div",DE,[u[24]||(u[24]=c.createElementVNode("label",{class:"block mt-4"},"图片高度",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[5]||(u[5]=o=>n.value.rule.maxImageHeight=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxImageHeight]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",OE,[u[25]||(u[25]=c.createElementVNode("label",{class:"block mt-4"},"块最小数量",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[6]||(u[6]=o=>n.value.rule.minBlock=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.minBlock]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",RE,[u[26]||(u[26]=c.createElementVNode("label",{class:"block mt-4"},"块最大数量",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[7]||(u[7]=o=>n.value.rule.maxBlock=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.maxBlock]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",ME,[u[28]||(u[28]=c.createElementVNode("label",{class:"block mt-4"},"PC端每行列数",-1)),c.withDirectives(c.createElementVNode("select",{multiple:"","onUpdate:modelValue":u[8]||(u[8]=o=>n.value.rule.flexColumns=o),class:"border rounded p-1 w-full"},u[27]||(u[27]=[c.createElementVNode("option",{value:1},"1",-1),c.createElementVNode("option",{value:2},"2",-1),c.createElementVNode("option",{value:3},"3",-1),c.createElementVNode("option",{value:4},"4",-1),c.createElementVNode("option",{value:5},"5",-1),c.createElementVNode("option",{value:6},"6",-1),c.createElementVNode("option",{value:7},"7",-1),c.createElementVNode("option",{value:8},"8",-1),c.createElementVNode("option",{value:9},"9",-1),c.createElementVNode("option",{value:10},"10",-1),c.createElementVNode("option",{value:11},"11",-1),c.createElementVNode("option",{value:12},"12",-1)]),512),[[c.vModelSelect,n.value.rule.flexColumns]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Block?(c.openBlock(),c.createElementBlock("div",kE,[u[29]||(u[29]=c.createElementVNode("label",{class:"block mt-4"},"移动端每行列数",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[9]||(u[9]=o=>n.value.rule.mobileFlexColumn=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.mobileFlexColumn]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text||n.value.type==c.unref(W).Icon||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",PE,[u[30]||(u[30]=c.createElementVNode("label",{class:"block mt-4"},"主题色",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.isThemeColor,"onUpdate:modelValue":u[10]||(u[10]=o=>n.value.rule.isThemeColor=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[u[31]||(u[31]=c.createElementVNode("label",{class:"block mt-4"},"是否必填",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.isRequired,"onUpdate:modelValue":u[11]||(u[11]=o=>n.value.rule.isRequired=o),label:"是"},null,8,["modelValue"])]),c.createElementVNode("div",null,[u[32]||(u[32]=c.createElementVNode("label",{class:"block mt-4"},"是否只读",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.isReadOnly,"onUpdate:modelValue":u[12]||(u[12]=o=>n.value.rule.isReadOnly=o),label:"是"},null,8,["modelValue"])]),n.value.type==c.unref(W).Link||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",KE,[u[33]||(u[33]=c.createElementVNode("label",{class:"block mt-4"},"打开美洽",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.openMeiqia,"onUpdate:modelValue":u[13]||(u[13]=o=>n.value.rule.openMeiqia=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Link||n.value.type==c.unref(W).Button?(c.openBlock(),c.createElementBlock("div",VE,[u[34]||(u[34]=c.createElementVNode("label",{class:"block mt-4"},"链接",-1)),c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":u[14]||(u[14]=o=>n.value.rule.linkUrl=o),class:"border rounded p-1 w-full"},null,512),[[c.vModelText,n.value.rule.linkUrl]])])):c.createCommentVNode("",!0),n.value.type==c.unref(W).Text?(c.openBlock(),c.createElementBlock("div",GE,[u[35]||(u[35]=c.createElementVNode("label",{class:"block mt-4"},"允许换行(回车/粘贴多段文本等)",-1)),c.createVNode(wt,{class:"py-2",modelValue:n.value.rule.allowWrap,"onUpdate:modelValue":u[15]||(u[15]=o=>n.value.rule.allowWrap=o),label:"是"},null,8,["modelValue"])])):c.createCommentVNode("",!0)])):c.createCommentVNode("",!0),c.createElementVNode("button",{onClick:s,class:"mt-4 p-2 bg-green-500 text-white rounded"}," 保存 ")]))}}),[["__scopeId","data-v-ae3bfa9e"]]);/*!
10
10
  * Cropper.js v1.6.2
11
11
  * https://fengyuanchen.github.io/cropperjs
12
12
  *
@@ -14,8 +14,8 @@
14
14
  * Released under the MIT license
15
15
  *
16
16
  * Date: 2024-04-21T07:43:05.335Z
17
- */function lo(A,e){var t=Object.keys(A);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(A);e&&(r=r.filter(function(n){return Object.getOwnPropertyDescriptor(A,n).enumerable})),t.push.apply(t,r)}return t}function fo(A){for(var e=1;e<arguments.length;e++){var t=arguments[e]!=null?arguments[e]:{};e%2?lo(Object(t),!0).forEach(function(r){qE(A,r,t[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(A,Object.getOwnPropertyDescriptors(t)):lo(Object(t)).forEach(function(r){Object.defineProperty(A,r,Object.getOwnPropertyDescriptor(t,r))})}return A}function XE(A,e){if(typeof A!="object"||!A)return A;var t=A[Symbol.toPrimitive];if(t!==void 0){var r=t.call(A,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(A)}function ho(A){var e=XE(A,"string");return typeof e=="symbol"?e:e+""}function ea(A){"@babel/helpers - typeof";return ea=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ea(A)}function WE(A,e){if(!(A instanceof e))throw new TypeError("Cannot call a class as a function")}function Bo(A,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(A,ho(r.key),r)}}function JE(A,e,t){return e&&Bo(A.prototype,e),t&&Bo(A,t),Object.defineProperty(A,"prototype",{writable:!1}),A}function qE(A,e,t){return e=ho(e),e in A?Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):A[e]=t,A}function go(A){return jE(A)||$E(A)||ZE(A)||zE()}function jE(A){if(Array.isArray(A))return ta(A)}function $E(A){if(typeof Symbol<"u"&&A[Symbol.iterator]!=null||A["@@iterator"]!=null)return Array.from(A)}function ZE(A,e){if(A){if(typeof A=="string")return ta(A,e);var t=Object.prototype.toString.call(A).slice(8,-1);if(t==="Object"&&A.constructor&&(t=A.constructor.name),t==="Map"||t==="Set")return Array.from(A);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return ta(A,e)}}function ta(A,e){(e==null||e>A.length)&&(e=A.length);for(var t=0,r=new Array(e);t<e;t++)r[t]=A[t];return r}function zE(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
18
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var ln=typeof window<"u"&&typeof window.document<"u",Ee=ln?window:{},ra=ln&&Ee.document.documentElement?"ontouchstart"in Ee.document.documentElement:!1,na=ln?"PointerEvent"in Ee:!1,dA="cropper",sa="all",Eo="crop",mo="move",po="zoom",rt="e",nt="w",wt="s",Re="n",nr="ne",sr="nw",ar="se",ir="sw",aa="".concat(dA,"-crop"),Co="".concat(dA,"-disabled"),WA="".concat(dA,"-hidden"),wo="".concat(dA,"-hide"),Am="".concat(dA,"-invisible"),fn="".concat(dA,"-modal"),ia="".concat(dA,"-move"),ur="".concat(dA,"Action"),hn="".concat(dA,"Preview"),ua="crop",To="move",bo="none",oa="crop",ca="cropend",la="cropmove",fa="cropstart",Uo="dblclick",em=ra?"touchstart":"mousedown",tm=ra?"touchmove":"mousemove",rm=ra?"touchend touchcancel":"mouseup",Qo=na?"pointerdown":em,Fo=na?"pointermove":tm,Io=na?"pointerup pointercancel":rm,_o="ready",yo="resize",No="wheel",ha="zoom",So="image/jpeg",nm=/^e|w|s|n|se|sw|ne|nw|all|crop|move|zoom$/,sm=/^data:/,am=/^data:image\/jpeg;base64,/,im=/^img|canvas$/i,vo=200,Lo=100,xo={viewMode:0,dragMode:ua,initialAspectRatio:NaN,aspectRatio:NaN,data:null,preview:"",responsive:!0,restore:!0,checkCrossOrigin:!0,checkOrientation:!0,modal:!0,guides:!0,center:!0,highlight:!0,background:!0,autoCrop:!0,autoCropArea:.8,movable:!0,rotatable:!0,scalable:!0,zoomable:!0,zoomOnTouch:!0,zoomOnWheel:!0,wheelZoomRatio:.1,cropBoxMovable:!0,cropBoxResizable:!0,toggleDragModeOnDblclick:!0,minCanvasWidth:0,minCanvasHeight:0,minCropBoxWidth:0,minCropBoxHeight:0,minContainerWidth:vo,minContainerHeight:Lo,ready:null,cropstart:null,cropmove:null,cropend:null,crop:null,zoom:null},um='<div class="cropper-container" touch-action="none"><div class="cropper-wrap-box"><div class="cropper-canvas"></div></div><div class="cropper-drag-box"></div><div class="cropper-crop-box"><span class="cropper-view-box"></span><span class="cropper-dashed dashed-h"></span><span class="cropper-dashed dashed-v"></span><span class="cropper-center"></span><span class="cropper-face"></span><span class="cropper-line line-e" data-cropper-action="e"></span><span class="cropper-line line-n" data-cropper-action="n"></span><span class="cropper-line line-w" data-cropper-action="w"></span><span class="cropper-line line-s" data-cropper-action="s"></span><span class="cropper-point point-e" data-cropper-action="e"></span><span class="cropper-point point-n" data-cropper-action="n"></span><span class="cropper-point point-w" data-cropper-action="w"></span><span class="cropper-point point-s" data-cropper-action="s"></span><span class="cropper-point point-ne" data-cropper-action="ne"></span><span class="cropper-point point-nw" data-cropper-action="nw"></span><span class="cropper-point point-sw" data-cropper-action="sw"></span><span class="cropper-point point-se" data-cropper-action="se"></span></div></div>',om=Number.isNaN||Ee.isNaN;function z(A){return typeof A=="number"&&!om(A)}var Ho=function(e){return e>0&&e<1/0};function da(A){return typeof A>"u"}function st(A){return ea(A)==="object"&&A!==null}var cm=Object.prototype.hasOwnProperty;function Tt(A){if(!st(A))return!1;try{var e=A.constructor,t=e.prototype;return e&&t&&cm.call(t,"isPrototypeOf")}catch{return!1}}function JA(A){return typeof A=="function"}var lm=Array.prototype.slice;function Do(A){return Array.from?Array.from(A):lm.call(A)}function TA(A,e){return A&&JA(e)&&(Array.isArray(A)||z(A.length)?Do(A).forEach(function(t,r){e.call(A,t,r,A)}):st(A)&&Object.keys(A).forEach(function(t){e.call(A,A[t],t,A)})),A}var BA=Object.assign||function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return st(e)&&r.length>0&&r.forEach(function(s){st(s)&&Object.keys(s).forEach(function(a){e[a]=s[a]})}),e},fm=/\.\d*(?:0|9){12}\d*$/;function bt(A){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1e11;return fm.test(A)?Math.round(A*e)/e:A}var hm=/^width|height|left|top|marginLeft|marginTop$/;function Me(A,e){var t=A.style;TA(e,function(r,n){hm.test(n)&&z(r)&&(r="".concat(r,"px")),t[n]=r})}function dm(A,e){return A.classList?A.classList.contains(e):A.className.indexOf(e)>-1}function NA(A,e){if(e){if(z(A.length)){TA(A,function(r){NA(r,e)});return}if(A.classList){A.classList.add(e);return}var t=A.className.trim();t?t.indexOf(e)<0&&(A.className="".concat(t," ").concat(e)):A.className=e}}function me(A,e){if(e){if(z(A.length)){TA(A,function(t){me(t,e)});return}if(A.classList){A.classList.remove(e);return}A.className.indexOf(e)>=0&&(A.className=A.className.replace(e,""))}}function Ut(A,e,t){if(e){if(z(A.length)){TA(A,function(r){Ut(r,e,t)});return}t?NA(A,e):me(A,e)}}var Bm=/([a-z\d])([A-Z])/g;function Ba(A){return A.replace(Bm,"$1-$2").toLowerCase()}function ga(A,e){return st(A[e])?A[e]:A.dataset?A.dataset[e]:A.getAttribute("data-".concat(Ba(e)))}function or(A,e,t){st(t)?A[e]=t:A.dataset?A.dataset[e]=t:A.setAttribute("data-".concat(Ba(e)),t)}function gm(A,e){if(st(A[e]))try{delete A[e]}catch{A[e]=void 0}else if(A.dataset)try{delete A.dataset[e]}catch{A.dataset[e]=void 0}else A.removeAttribute("data-".concat(Ba(e)))}var Oo=/\s\s*/,Ro=function(){var A=!1;if(ln){var e=!1,t=function(){},r=Object.defineProperty({},"once",{get:function(){return A=!0,e},set:function(s){e=s}});Ee.addEventListener("test",t,r),Ee.removeEventListener("test",t,r)}return A}();function le(A,e,t){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=t;e.trim().split(Oo).forEach(function(s){if(!Ro){var a=A.listeners;a&&a[s]&&a[s][t]&&(n=a[s][t],delete a[s][t],Object.keys(a[s]).length===0&&delete a[s],Object.keys(a).length===0&&delete A.listeners)}A.removeEventListener(s,n,r)})}function re(A,e,t){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=t;e.trim().split(Oo).forEach(function(s){if(r.once&&!Ro){var a=A.listeners,u=a===void 0?{}:a;n=function(){delete u[s][t],A.removeEventListener(s,n,r);for(var l=arguments.length,f=new Array(l),h=0;h<l;h++)f[h]=arguments[h];t.apply(A,f)},u[s]||(u[s]={}),u[s][t]&&A.removeEventListener(s,u[s][t],r),u[s][t]=n,A.listeners=u}A.addEventListener(s,n,r)})}function Qt(A,e,t){var r;return JA(Event)&&JA(CustomEvent)?r=new CustomEvent(e,{detail:t,bubbles:!0,cancelable:!0}):(r=document.createEvent("CustomEvent"),r.initCustomEvent(e,!0,!0,t)),A.dispatchEvent(r)}function Mo(A){var e=A.getBoundingClientRect();return{left:e.left+(window.pageXOffset-document.documentElement.clientLeft),top:e.top+(window.pageYOffset-document.documentElement.clientTop)}}var Ea=Ee.location,Em=/^(\w+:)\/\/([^:/?#]*):?(\d*)/i;function ko(A){var e=A.match(Em);return e!==null&&(e[1]!==Ea.protocol||e[2]!==Ea.hostname||e[3]!==Ea.port)}function Po(A){var e="timestamp=".concat(new Date().getTime());return A+(A.indexOf("?")===-1?"?":"&")+e}function cr(A){var e=A.rotate,t=A.scaleX,r=A.scaleY,n=A.translateX,s=A.translateY,a=[];z(n)&&n!==0&&a.push("translateX(".concat(n,"px)")),z(s)&&s!==0&&a.push("translateY(".concat(s,"px)")),z(e)&&e!==0&&a.push("rotate(".concat(e,"deg)")),z(t)&&t!==1&&a.push("scaleX(".concat(t,")")),z(r)&&r!==1&&a.push("scaleY(".concat(r,")"));var u=a.length?a.join(" "):"none";return{WebkitTransform:u,msTransform:u,transform:u}}function mm(A){var e=fo({},A),t=0;return TA(A,function(r,n){delete e[n],TA(e,function(s){var a=Math.abs(r.startX-s.startX),u=Math.abs(r.startY-s.startY),o=Math.abs(r.endX-s.endX),l=Math.abs(r.endY-s.endY),f=Math.sqrt(a*a+u*u),h=Math.sqrt(o*o+l*l),d=(h-f)/f;Math.abs(d)>Math.abs(t)&&(t=d)})}),t}function dn(A,e){var t=A.pageX,r=A.pageY,n={endX:t,endY:r};return e?n:fo({startX:t,startY:r},n)}function pm(A){var e=0,t=0,r=0;return TA(A,function(n){var s=n.startX,a=n.startY;e+=s,t+=a,r+=1}),e/=r,t/=r,{pageX:e,pageY:t}}function ke(A){var e=A.aspectRatio,t=A.height,r=A.width,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"contain",s=Ho(r),a=Ho(t);if(s&&a){var u=t*e;n==="contain"&&u>r||n==="cover"&&u<r?t=r/e:r=t*e}else s?t=r/e:a&&(r=t*e);return{width:r,height:t}}function Cm(A){var e=A.width,t=A.height,r=A.degree;if(r=Math.abs(r)%180,r===90)return{width:t,height:e};var n=r%90*Math.PI/180,s=Math.sin(n),a=Math.cos(n),u=e*a+t*s,o=e*s+t*a;return r>90?{width:o,height:u}:{width:u,height:o}}function wm(A,e,t,r){var n=e.aspectRatio,s=e.naturalWidth,a=e.naturalHeight,u=e.rotate,o=u===void 0?0:u,l=e.scaleX,f=l===void 0?1:l,h=e.scaleY,d=h===void 0?1:h,C=t.aspectRatio,p=t.naturalWidth,T=t.naturalHeight,U=r.fillColor,_=U===void 0?"transparent":U,Q=r.imageSmoothingEnabled,D=Q===void 0?!0:Q,k=r.imageSmoothingQuality,x=k===void 0?"low":k,m=r.maxWidth,H=m===void 0?1/0:m,P=r.maxHeight,M=P===void 0?1/0:P,eA=r.minWidth,cA=eA===void 0?0:eA,lA=r.minHeight,q=lA===void 0?0:lA,rA=document.createElement("canvas"),uA=rA.getContext("2d"),fA=ke({aspectRatio:C,width:H,height:M}),mA=ke({aspectRatio:C,width:cA,height:q},"cover"),PA=Math.min(fA.width,Math.max(mA.width,p)),FA=Math.min(fA.height,Math.max(mA.height,T)),VA=ke({aspectRatio:n,width:H,height:M}),vA=ke({aspectRatio:n,width:cA,height:q},"cover"),jA=Math.min(VA.width,Math.max(vA.width,s)),S=Math.min(VA.height,Math.max(vA.height,a)),v=[-jA/2,-S/2,jA,S];return rA.width=bt(PA),rA.height=bt(FA),uA.fillStyle=_,uA.fillRect(0,0,PA,FA),uA.save(),uA.translate(PA/2,FA/2),uA.rotate(o*Math.PI/180),uA.scale(f,d),uA.imageSmoothingEnabled=D,uA.imageSmoothingQuality=x,uA.drawImage.apply(uA,[A].concat(go(v.map(function(J){return Math.floor(bt(J))})))),uA.restore(),rA}var Ko=String.fromCharCode;function Tm(A,e,t){var r="";t+=e;for(var n=e;n<t;n+=1)r+=Ko(A.getUint8(n));return r}var bm=/^data:.*,/;function Um(A){var e=A.replace(bm,""),t=atob(e),r=new ArrayBuffer(t.length),n=new Uint8Array(r);return TA(n,function(s,a){n[a]=t.charCodeAt(a)}),r}function Qm(A,e){for(var t=[],r=8192,n=new Uint8Array(A);n.length>0;)t.push(Ko.apply(null,Do(n.subarray(0,r)))),n=n.subarray(r);return"data:".concat(e,";base64,").concat(btoa(t.join("")))}function Fm(A){var e=new DataView(A),t;try{var r,n,s;if(e.getUint8(0)===255&&e.getUint8(1)===216)for(var a=e.byteLength,u=2;u+1<a;){if(e.getUint8(u)===255&&e.getUint8(u+1)===225){n=u;break}u+=1}if(n){var o=n+4,l=n+10;if(Tm(e,o,4)==="Exif"){var f=e.getUint16(l);if(r=f===18761,(r||f===19789)&&e.getUint16(l+2,r)===42){var h=e.getUint32(l+4,r);h>=8&&(s=l+h)}}}if(s){var d=e.getUint16(s,r),C,p;for(p=0;p<d;p+=1)if(C=s+p*12+2,e.getUint16(C,r)===274){C+=8,t=e.getUint16(C,r),e.setUint16(C,1,r);break}}}catch{t=1}return t}function Im(A){var e=0,t=1,r=1;switch(A){case 2:t=-1;break;case 3:e=-180;break;case 4:r=-1;break;case 5:e=90,r=-1;break;case 6:e=90;break;case 7:e=90,t=-1;break;case 8:e=-90;break}return{rotate:e,scaleX:t,scaleY:r}}var _m={render:function(){this.initContainer(),this.initCanvas(),this.initCropBox(),this.renderCanvas(),this.cropped&&this.renderCropBox()},initContainer:function(){var e=this.element,t=this.options,r=this.container,n=this.cropper,s=Number(t.minContainerWidth),a=Number(t.minContainerHeight);NA(n,WA),me(e,WA);var u={width:Math.max(r.offsetWidth,s>=0?s:vo),height:Math.max(r.offsetHeight,a>=0?a:Lo)};this.containerData=u,Me(n,{width:u.width,height:u.height}),NA(e,WA),me(n,WA)},initCanvas:function(){var e=this.containerData,t=this.imageData,r=this.options.viewMode,n=Math.abs(t.rotate)%180===90,s=n?t.naturalHeight:t.naturalWidth,a=n?t.naturalWidth:t.naturalHeight,u=s/a,o=e.width,l=e.height;e.height*u>e.width?r===3?o=e.height*u:l=e.width/u:r===3?l=e.width/u:o=e.height*u;var f={aspectRatio:u,naturalWidth:s,naturalHeight:a,width:o,height:l};this.canvasData=f,this.limited=r===1||r===2,this.limitCanvas(!0,!0),f.width=Math.min(Math.max(f.width,f.minWidth),f.maxWidth),f.height=Math.min(Math.max(f.height,f.minHeight),f.maxHeight),f.left=(e.width-f.width)/2,f.top=(e.height-f.height)/2,f.oldLeft=f.left,f.oldTop=f.top,this.initialCanvasData=BA({},f)},limitCanvas:function(e,t){var r=this.options,n=this.containerData,s=this.canvasData,a=this.cropBoxData,u=r.viewMode,o=s.aspectRatio,l=this.cropped&&a;if(e){var f=Number(r.minCanvasWidth)||0,h=Number(r.minCanvasHeight)||0;u>1?(f=Math.max(f,n.width),h=Math.max(h,n.height),u===3&&(h*o>f?f=h*o:h=f/o)):u>0&&(f?f=Math.max(f,l?a.width:0):h?h=Math.max(h,l?a.height:0):l&&(f=a.width,h=a.height,h*o>f?f=h*o:h=f/o));var d=ke({aspectRatio:o,width:f,height:h});f=d.width,h=d.height,s.minWidth=f,s.minHeight=h,s.maxWidth=1/0,s.maxHeight=1/0}if(t)if(u>(l?0:1)){var C=n.width-s.width,p=n.height-s.height;s.minLeft=Math.min(0,C),s.minTop=Math.min(0,p),s.maxLeft=Math.max(0,C),s.maxTop=Math.max(0,p),l&&this.limited&&(s.minLeft=Math.min(a.left,a.left+(a.width-s.width)),s.minTop=Math.min(a.top,a.top+(a.height-s.height)),s.maxLeft=a.left,s.maxTop=a.top,u===2&&(s.width>=n.width&&(s.minLeft=Math.min(0,C),s.maxLeft=Math.max(0,C)),s.height>=n.height&&(s.minTop=Math.min(0,p),s.maxTop=Math.max(0,p))))}else s.minLeft=-s.width,s.minTop=-s.height,s.maxLeft=n.width,s.maxTop=n.height},renderCanvas:function(e,t){var r=this.canvasData,n=this.imageData;if(t){var s=Cm({width:n.naturalWidth*Math.abs(n.scaleX||1),height:n.naturalHeight*Math.abs(n.scaleY||1),degree:n.rotate||0}),a=s.width,u=s.height,o=r.width*(a/r.naturalWidth),l=r.height*(u/r.naturalHeight);r.left-=(o-r.width)/2,r.top-=(l-r.height)/2,r.width=o,r.height=l,r.aspectRatio=a/u,r.naturalWidth=a,r.naturalHeight=u,this.limitCanvas(!0,!1)}(r.width>r.maxWidth||r.width<r.minWidth)&&(r.left=r.oldLeft),(r.height>r.maxHeight||r.height<r.minHeight)&&(r.top=r.oldTop),r.width=Math.min(Math.max(r.width,r.minWidth),r.maxWidth),r.height=Math.min(Math.max(r.height,r.minHeight),r.maxHeight),this.limitCanvas(!1,!0),r.left=Math.min(Math.max(r.left,r.minLeft),r.maxLeft),r.top=Math.min(Math.max(r.top,r.minTop),r.maxTop),r.oldLeft=r.left,r.oldTop=r.top,Me(this.canvas,BA({width:r.width,height:r.height},cr({translateX:r.left,translateY:r.top}))),this.renderImage(e),this.cropped&&this.limited&&this.limitCropBox(!0,!0)},renderImage:function(e){var t=this.canvasData,r=this.imageData,n=r.naturalWidth*(t.width/t.naturalWidth),s=r.naturalHeight*(t.height/t.naturalHeight);BA(r,{width:n,height:s,left:(t.width-n)/2,top:(t.height-s)/2}),Me(this.image,BA({width:r.width,height:r.height},cr(BA({translateX:r.left,translateY:r.top},r)))),e&&this.output()},initCropBox:function(){var e=this.options,t=this.canvasData,r=e.aspectRatio||e.initialAspectRatio,n=Number(e.autoCropArea)||.8,s={width:t.width,height:t.height};r&&(t.height*r>t.width?s.height=s.width/r:s.width=s.height*r),this.cropBoxData=s,this.limitCropBox(!0,!0),s.width=Math.min(Math.max(s.width,s.minWidth),s.maxWidth),s.height=Math.min(Math.max(s.height,s.minHeight),s.maxHeight),s.width=Math.max(s.minWidth,s.width*n),s.height=Math.max(s.minHeight,s.height*n),s.left=t.left+(t.width-s.width)/2,s.top=t.top+(t.height-s.height)/2,s.oldLeft=s.left,s.oldTop=s.top,this.initialCropBoxData=BA({},s)},limitCropBox:function(e,t){var r=this.options,n=this.containerData,s=this.canvasData,a=this.cropBoxData,u=this.limited,o=r.aspectRatio;if(e){var l=Number(r.minCropBoxWidth)||0,f=Number(r.minCropBoxHeight)||0,h=u?Math.min(n.width,s.width,s.width+s.left,n.width-s.left):n.width,d=u?Math.min(n.height,s.height,s.height+s.top,n.height-s.top):n.height;l=Math.min(l,n.width),f=Math.min(f,n.height),o&&(l&&f?f*o>l?f=l/o:l=f*o:l?f=l/o:f&&(l=f*o),d*o>h?d=h/o:h=d*o),a.minWidth=Math.min(l,h),a.minHeight=Math.min(f,d),a.maxWidth=h,a.maxHeight=d}t&&(u?(a.minLeft=Math.max(0,s.left),a.minTop=Math.max(0,s.top),a.maxLeft=Math.min(n.width,s.left+s.width)-a.width,a.maxTop=Math.min(n.height,s.top+s.height)-a.height):(a.minLeft=0,a.minTop=0,a.maxLeft=n.width-a.width,a.maxTop=n.height-a.height))},renderCropBox:function(){var e=this.options,t=this.containerData,r=this.cropBoxData;(r.width>r.maxWidth||r.width<r.minWidth)&&(r.left=r.oldLeft),(r.height>r.maxHeight||r.height<r.minHeight)&&(r.top=r.oldTop),r.width=Math.min(Math.max(r.width,r.minWidth),r.maxWidth),r.height=Math.min(Math.max(r.height,r.minHeight),r.maxHeight),this.limitCropBox(!1,!0),r.left=Math.min(Math.max(r.left,r.minLeft),r.maxLeft),r.top=Math.min(Math.max(r.top,r.minTop),r.maxTop),r.oldLeft=r.left,r.oldTop=r.top,e.movable&&e.cropBoxMovable&&or(this.face,ur,r.width>=t.width&&r.height>=t.height?mo:sa),Me(this.cropBox,BA({width:r.width,height:r.height},cr({translateX:r.left,translateY:r.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),Qt(this.element,oa,this.getData())}},ym={initPreview:function(){var e=this.element,t=this.crossOrigin,r=this.options.preview,n=t?this.crossOriginUrl:this.url,s=e.alt||"The image to preview",a=document.createElement("img");if(t&&(a.crossOrigin=t),a.src=n,a.alt=s,this.viewBox.appendChild(a),this.viewBoxImage=a,!!r){var u=r;typeof r=="string"?u=e.ownerDocument.querySelectorAll(r):r.querySelector&&(u=[r]),this.previews=u,TA(u,function(o){var l=document.createElement("img");or(o,hn,{width:o.offsetWidth,height:o.offsetHeight,html:o.innerHTML}),t&&(l.crossOrigin=t),l.src=n,l.alt=s,l.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',o.innerHTML="",o.appendChild(l)})}},resetPreview:function(){TA(this.previews,function(e){var t=ga(e,hn);Me(e,{width:t.width,height:t.height}),e.innerHTML=t.html,gm(e,hn)})},preview:function(){var e=this.imageData,t=this.canvasData,r=this.cropBoxData,n=r.width,s=r.height,a=e.width,u=e.height,o=r.left-t.left-e.left,l=r.top-t.top-e.top;!this.cropped||this.disabled||(Me(this.viewBoxImage,BA({width:a,height:u},cr(BA({translateX:-o,translateY:-l},e)))),TA(this.previews,function(f){var h=ga(f,hn),d=h.width,C=h.height,p=d,T=C,U=1;n&&(U=d/n,T=s*U),s&&T>C&&(U=C/s,p=n*U,T=C),Me(f,{width:p,height:T}),Me(f.getElementsByTagName("img")[0],BA({width:a*U,height:u*U},cr(BA({translateX:-o*U,translateY:-l*U},e))))}))}},Nm={bind:function(){var e=this.element,t=this.options,r=this.cropper;JA(t.cropstart)&&re(e,fa,t.cropstart),JA(t.cropmove)&&re(e,la,t.cropmove),JA(t.cropend)&&re(e,ca,t.cropend),JA(t.crop)&&re(e,oa,t.crop),JA(t.zoom)&&re(e,ha,t.zoom),re(r,Qo,this.onCropStart=this.cropStart.bind(this)),t.zoomable&&t.zoomOnWheel&&re(r,No,this.onWheel=this.wheel.bind(this),{passive:!1,capture:!0}),t.toggleDragModeOnDblclick&&re(r,Uo,this.onDblclick=this.dblclick.bind(this)),re(e.ownerDocument,Fo,this.onCropMove=this.cropMove.bind(this)),re(e.ownerDocument,Io,this.onCropEnd=this.cropEnd.bind(this)),t.responsive&&re(window,yo,this.onResize=this.resize.bind(this))},unbind:function(){var e=this.element,t=this.options,r=this.cropper;JA(t.cropstart)&&le(e,fa,t.cropstart),JA(t.cropmove)&&le(e,la,t.cropmove),JA(t.cropend)&&le(e,ca,t.cropend),JA(t.crop)&&le(e,oa,t.crop),JA(t.zoom)&&le(e,ha,t.zoom),le(r,Qo,this.onCropStart),t.zoomable&&t.zoomOnWheel&&le(r,No,this.onWheel,{passive:!1,capture:!0}),t.toggleDragModeOnDblclick&&le(r,Uo,this.onDblclick),le(e.ownerDocument,Fo,this.onCropMove),le(e.ownerDocument,Io,this.onCropEnd),t.responsive&&le(window,yo,this.onResize)}},Sm={resize:function(){if(!this.disabled){var e=this.options,t=this.container,r=this.containerData,n=t.offsetWidth/r.width,s=t.offsetHeight/r.height,a=Math.abs(n-1)>Math.abs(s-1)?n:s;if(a!==1){var u,o;e.restore&&(u=this.getCanvasData(),o=this.getCropBoxData()),this.render(),e.restore&&(this.setCanvasData(TA(u,function(l,f){u[f]=l*a})),this.setCropBoxData(TA(o,function(l,f){o[f]=l*a})))}}},dblclick:function(){this.disabled||this.options.dragMode===bo||this.setDragMode(dm(this.dragBox,aa)?To:ua)},wheel:function(e){var t=this,r=Number(this.options.wheelZoomRatio)||.1,n=1;this.disabled||(e.preventDefault(),!this.wheeling&&(this.wheeling=!0,setTimeout(function(){t.wheeling=!1},50),e.deltaY?n=e.deltaY>0?1:-1:e.wheelDelta?n=-e.wheelDelta/120:e.detail&&(n=e.detail>0?1:-1),this.zoom(-n*r,e)))},cropStart:function(e){var t=e.buttons,r=e.button;if(!(this.disabled||(e.type==="mousedown"||e.type==="pointerdown"&&e.pointerType==="mouse")&&(z(t)&&t!==1||z(r)&&r!==0||e.ctrlKey))){var n=this.options,s=this.pointers,a;e.changedTouches?TA(e.changedTouches,function(u){s[u.identifier]=dn(u)}):s[e.pointerId||0]=dn(e),Object.keys(s).length>1&&n.zoomable&&n.zoomOnTouch?a=po:a=ga(e.target,ur),nm.test(a)&&Qt(this.element,fa,{originalEvent:e,action:a})!==!1&&(e.preventDefault(),this.action=a,this.cropping=!1,a===Eo&&(this.cropping=!0,NA(this.dragBox,fn)))}},cropMove:function(e){var t=this.action;if(!(this.disabled||!t)){var r=this.pointers;e.preventDefault(),Qt(this.element,la,{originalEvent:e,action:t})!==!1&&(e.changedTouches?TA(e.changedTouches,function(n){BA(r[n.identifier]||{},dn(n,!0))}):BA(r[e.pointerId||0]||{},dn(e,!0)),this.change(e))}},cropEnd:function(e){if(!this.disabled){var t=this.action,r=this.pointers;e.changedTouches?TA(e.changedTouches,function(n){delete r[n.identifier]}):delete r[e.pointerId||0],t&&(e.preventDefault(),Object.keys(r).length||(this.action=""),this.cropping&&(this.cropping=!1,Ut(this.dragBox,fn,this.cropped&&this.options.modal)),Qt(this.element,ca,{originalEvent:e,action:t}))}}},vm={change:function(e){var t=this.options,r=this.canvasData,n=this.containerData,s=this.cropBoxData,a=this.pointers,u=this.action,o=t.aspectRatio,l=s.left,f=s.top,h=s.width,d=s.height,C=l+h,p=f+d,T=0,U=0,_=n.width,Q=n.height,D=!0,k;!o&&e.shiftKey&&(o=h&&d?h/d:1),this.limited&&(T=s.minLeft,U=s.minTop,_=T+Math.min(n.width,r.width,r.left+r.width),Q=U+Math.min(n.height,r.height,r.top+r.height));var x=a[Object.keys(a)[0]],m={x:x.endX-x.startX,y:x.endY-x.startY},H=function(M){switch(M){case rt:C+m.x>_&&(m.x=_-C);break;case nt:l+m.x<T&&(m.x=T-l);break;case Re:f+m.y<U&&(m.y=U-f);break;case wt:p+m.y>Q&&(m.y=Q-p);break}};switch(u){case sa:l+=m.x,f+=m.y;break;case rt:if(m.x>=0&&(C>=_||o&&(f<=U||p>=Q))){D=!1;break}H(rt),h+=m.x,h<0&&(u=nt,h=-h,l-=h),o&&(d=h/o,f+=(s.height-d)/2);break;case Re:if(m.y<=0&&(f<=U||o&&(l<=T||C>=_))){D=!1;break}H(Re),d-=m.y,f+=m.y,d<0&&(u=wt,d=-d,f-=d),o&&(h=d*o,l+=(s.width-h)/2);break;case nt:if(m.x<=0&&(l<=T||o&&(f<=U||p>=Q))){D=!1;break}H(nt),h-=m.x,l+=m.x,h<0&&(u=rt,h=-h,l-=h),o&&(d=h/o,f+=(s.height-d)/2);break;case wt:if(m.y>=0&&(p>=Q||o&&(l<=T||C>=_))){D=!1;break}H(wt),d+=m.y,d<0&&(u=Re,d=-d,f-=d),o&&(h=d*o,l+=(s.width-h)/2);break;case nr:if(o){if(m.y<=0&&(f<=U||C>=_)){D=!1;break}H(Re),d-=m.y,f+=m.y,h=d*o}else H(Re),H(rt),m.x>=0?C<_?h+=m.x:m.y<=0&&f<=U&&(D=!1):h+=m.x,m.y<=0?f>U&&(d-=m.y,f+=m.y):(d-=m.y,f+=m.y);h<0&&d<0?(u=ir,d=-d,h=-h,f-=d,l-=h):h<0?(u=sr,h=-h,l-=h):d<0&&(u=ar,d=-d,f-=d);break;case sr:if(o){if(m.y<=0&&(f<=U||l<=T)){D=!1;break}H(Re),d-=m.y,f+=m.y,h=d*o,l+=s.width-h}else H(Re),H(nt),m.x<=0?l>T?(h-=m.x,l+=m.x):m.y<=0&&f<=U&&(D=!1):(h-=m.x,l+=m.x),m.y<=0?f>U&&(d-=m.y,f+=m.y):(d-=m.y,f+=m.y);h<0&&d<0?(u=ar,d=-d,h=-h,f-=d,l-=h):h<0?(u=nr,h=-h,l-=h):d<0&&(u=ir,d=-d,f-=d);break;case ir:if(o){if(m.x<=0&&(l<=T||p>=Q)){D=!1;break}H(nt),h-=m.x,l+=m.x,d=h/o}else H(wt),H(nt),m.x<=0?l>T?(h-=m.x,l+=m.x):m.y>=0&&p>=Q&&(D=!1):(h-=m.x,l+=m.x),m.y>=0?p<Q&&(d+=m.y):d+=m.y;h<0&&d<0?(u=nr,d=-d,h=-h,f-=d,l-=h):h<0?(u=ar,h=-h,l-=h):d<0&&(u=sr,d=-d,f-=d);break;case ar:if(o){if(m.x>=0&&(C>=_||p>=Q)){D=!1;break}H(rt),h+=m.x,d=h/o}else H(wt),H(rt),m.x>=0?C<_?h+=m.x:m.y>=0&&p>=Q&&(D=!1):h+=m.x,m.y>=0?p<Q&&(d+=m.y):d+=m.y;h<0&&d<0?(u=sr,d=-d,h=-h,f-=d,l-=h):h<0?(u=ir,h=-h,l-=h):d<0&&(u=nr,d=-d,f-=d);break;case mo:this.move(m.x,m.y),D=!1;break;case po:this.zoom(mm(a),e),D=!1;break;case Eo:if(!m.x||!m.y){D=!1;break}k=Mo(this.cropper),l=x.startX-k.left,f=x.startY-k.top,h=s.minWidth,d=s.minHeight,m.x>0?u=m.y>0?ar:nr:m.x<0&&(l-=h,u=m.y>0?ir:sr),m.y<0&&(f-=d),this.cropped||(me(this.cropBox,WA),this.cropped=!0,this.limited&&this.limitCropBox(!0,!0));break}D&&(s.width=h,s.height=d,s.left=l,s.top=f,this.action=u,this.renderCropBox()),TA(a,function(P){P.startX=P.endX,P.startY=P.endY})}},Lm={crop:function(){return this.ready&&!this.cropped&&!this.disabled&&(this.cropped=!0,this.limitCropBox(!0,!0),this.options.modal&&NA(this.dragBox,fn),me(this.cropBox,WA),this.setCropBoxData(this.initialCropBoxData)),this},reset:function(){return this.ready&&!this.disabled&&(this.imageData=BA({},this.initialImageData),this.canvasData=BA({},this.initialCanvasData),this.cropBoxData=BA({},this.initialCropBoxData),this.renderCanvas(),this.cropped&&this.renderCropBox()),this},clear:function(){return this.cropped&&!this.disabled&&(BA(this.cropBoxData,{left:0,top:0,width:0,height:0}),this.cropped=!1,this.renderCropBox(),this.limitCanvas(!0,!0),this.renderCanvas(),me(this.dragBox,fn),NA(this.cropBox,WA)),this},replace:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return!this.disabled&&e&&(this.isImg&&(this.element.src=e),t?(this.url=e,this.image.src=e,this.ready&&(this.viewBoxImage.src=e,TA(this.previews,function(r){r.getElementsByTagName("img")[0].src=e}))):(this.isImg&&(this.replaced=!0),this.options.data=null,this.uncreate(),this.load(e))),this},enable:function(){return this.ready&&this.disabled&&(this.disabled=!1,me(this.cropper,Co)),this},disable:function(){return this.ready&&!this.disabled&&(this.disabled=!0,NA(this.cropper,Co)),this},destroy:function(){var e=this.element;return e[dA]?(e[dA]=void 0,this.isImg&&this.replaced&&(e.src=this.originalUrl),this.uncreate(),this):this},move:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.canvasData,n=r.left,s=r.top;return this.moveTo(da(e)?e:n+Number(e),da(t)?t:s+Number(t))},moveTo:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.canvasData,n=!1;return e=Number(e),t=Number(t),this.ready&&!this.disabled&&this.options.movable&&(z(e)&&(r.left=e,n=!0),z(t)&&(r.top=t,n=!0),n&&this.renderCanvas(!0)),this},zoom:function(e,t){var r=this.canvasData;return e=Number(e),e<0?e=1/(1-e):e=1+e,this.zoomTo(r.width*e/r.naturalWidth,null,t)},zoomTo:function(e,t,r){var n=this.options,s=this.canvasData,a=s.width,u=s.height,o=s.naturalWidth,l=s.naturalHeight;if(e=Number(e),e>=0&&this.ready&&!this.disabled&&n.zoomable){var f=o*e,h=l*e;if(Qt(this.element,ha,{ratio:e,oldRatio:a/o,originalEvent:r})===!1)return this;if(r){var d=this.pointers,C=Mo(this.cropper),p=d&&Object.keys(d).length?pm(d):{pageX:r.pageX,pageY:r.pageY};s.left-=(f-a)*((p.pageX-C.left-s.left)/a),s.top-=(h-u)*((p.pageY-C.top-s.top)/u)}else Tt(t)&&z(t.x)&&z(t.y)?(s.left-=(f-a)*((t.x-s.left)/a),s.top-=(h-u)*((t.y-s.top)/u)):(s.left-=(f-a)/2,s.top-=(h-u)/2);s.width=f,s.height=h,this.renderCanvas(!0)}return this},rotate:function(e){return this.rotateTo((this.imageData.rotate||0)+Number(e))},rotateTo:function(e){return e=Number(e),z(e)&&this.ready&&!this.disabled&&this.options.rotatable&&(this.imageData.rotate=e%360,this.renderCanvas(!0,!0)),this},scaleX:function(e){var t=this.imageData.scaleY;return this.scale(e,z(t)?t:1)},scaleY:function(e){var t=this.imageData.scaleX;return this.scale(z(t)?t:1,e)},scale:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.imageData,n=!1;return e=Number(e),t=Number(t),this.ready&&!this.disabled&&this.options.scalable&&(z(e)&&(r.scaleX=e,n=!0),z(t)&&(r.scaleY=t,n=!0),n&&this.renderCanvas(!0,!0)),this},getData:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,t=this.options,r=this.imageData,n=this.canvasData,s=this.cropBoxData,a;if(this.ready&&this.cropped){a={x:s.left-n.left,y:s.top-n.top,width:s.width,height:s.height};var u=r.width/r.naturalWidth;if(TA(a,function(f,h){a[h]=f/u}),e){var o=Math.round(a.y+a.height),l=Math.round(a.x+a.width);a.x=Math.round(a.x),a.y=Math.round(a.y),a.width=l-a.x,a.height=o-a.y}}else a={x:0,y:0,width:0,height:0};return t.rotatable&&(a.rotate=r.rotate||0),t.scalable&&(a.scaleX=r.scaleX||1,a.scaleY=r.scaleY||1),a},setData:function(e){var t=this.options,r=this.imageData,n=this.canvasData,s={};if(this.ready&&!this.disabled&&Tt(e)){var a=!1;t.rotatable&&z(e.rotate)&&e.rotate!==r.rotate&&(r.rotate=e.rotate,a=!0),t.scalable&&(z(e.scaleX)&&e.scaleX!==r.scaleX&&(r.scaleX=e.scaleX,a=!0),z(e.scaleY)&&e.scaleY!==r.scaleY&&(r.scaleY=e.scaleY,a=!0)),a&&this.renderCanvas(!0,!0);var u=r.width/r.naturalWidth;z(e.x)&&(s.left=e.x*u+n.left),z(e.y)&&(s.top=e.y*u+n.top),z(e.width)&&(s.width=e.width*u),z(e.height)&&(s.height=e.height*u),this.setCropBoxData(s)}return this},getContainerData:function(){return this.ready?BA({},this.containerData):{}},getImageData:function(){return this.sized?BA({},this.imageData):{}},getCanvasData:function(){var e=this.canvasData,t={};return this.ready&&TA(["left","top","width","height","naturalWidth","naturalHeight"],function(r){t[r]=e[r]}),t},setCanvasData:function(e){var t=this.canvasData,r=t.aspectRatio;return this.ready&&!this.disabled&&Tt(e)&&(z(e.left)&&(t.left=e.left),z(e.top)&&(t.top=e.top),z(e.width)?(t.width=e.width,t.height=e.width/r):z(e.height)&&(t.height=e.height,t.width=e.height*r),this.renderCanvas(!0)),this},getCropBoxData:function(){var e=this.cropBoxData,t;return this.ready&&this.cropped&&(t={left:e.left,top:e.top,width:e.width,height:e.height}),t||{}},setCropBoxData:function(e){var t=this.cropBoxData,r=this.options.aspectRatio,n,s;return this.ready&&this.cropped&&!this.disabled&&Tt(e)&&(z(e.left)&&(t.left=e.left),z(e.top)&&(t.top=e.top),z(e.width)&&e.width!==t.width&&(n=!0,t.width=e.width),z(e.height)&&e.height!==t.height&&(s=!0,t.height=e.height),r&&(n?t.height=t.width/r:s&&(t.width=t.height*r)),this.renderCropBox()),this},getCroppedCanvas:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!this.ready||!window.HTMLCanvasElement)return null;var t=this.canvasData,r=wm(this.image,this.imageData,t,e);if(!this.cropped)return r;var n=this.getData(e.rounded),s=n.x,a=n.y,u=n.width,o=n.height,l=r.width/Math.floor(t.naturalWidth);l!==1&&(s*=l,a*=l,u*=l,o*=l);var f=u/o,h=ke({aspectRatio:f,width:e.maxWidth||1/0,height:e.maxHeight||1/0}),d=ke({aspectRatio:f,width:e.minWidth||0,height:e.minHeight||0},"cover"),C=ke({aspectRatio:f,width:e.width||(l!==1?r.width:u),height:e.height||(l!==1?r.height:o)}),p=C.width,T=C.height;p=Math.min(h.width,Math.max(d.width,p)),T=Math.min(h.height,Math.max(d.height,T));var U=document.createElement("canvas"),_=U.getContext("2d");U.width=bt(p),U.height=bt(T),_.fillStyle=e.fillColor||"transparent",_.fillRect(0,0,p,T);var Q=e.imageSmoothingEnabled,D=Q===void 0?!0:Q,k=e.imageSmoothingQuality;_.imageSmoothingEnabled=D,k&&(_.imageSmoothingQuality=k);var x=r.width,m=r.height,H=s,P=a,M,eA,cA,lA,q,rA;H<=-u||H>x?(H=0,M=0,cA=0,q=0):H<=0?(cA=-H,H=0,M=Math.min(x,u+H),q=M):H<=x&&(cA=0,M=Math.min(u,x-H),q=M),M<=0||P<=-o||P>m?(P=0,eA=0,lA=0,rA=0):P<=0?(lA=-P,P=0,eA=Math.min(m,o+P),rA=eA):P<=m&&(lA=0,eA=Math.min(o,m-P),rA=eA);var uA=[H,P,M,eA];if(q>0&&rA>0){var fA=p/u;uA.push(cA*fA,lA*fA,q*fA,rA*fA)}return _.drawImage.apply(_,[r].concat(go(uA.map(function(mA){return Math.floor(bt(mA))})))),U},setAspectRatio:function(e){var t=this.options;return!this.disabled&&!da(e)&&(t.aspectRatio=Math.max(0,e)||NaN,this.ready&&(this.initCropBox(),this.cropped&&this.renderCropBox())),this},setDragMode:function(e){var t=this.options,r=this.dragBox,n=this.face;if(this.ready&&!this.disabled){var s=e===ua,a=t.movable&&e===To;e=s||a?e:bo,t.dragMode=e,or(r,ur,e),Ut(r,aa,s),Ut(r,ia,a),t.cropBoxMovable||(or(n,ur,e),Ut(n,aa,s),Ut(n,ia,a))}return this}},xm=Ee.Cropper,Vo=function(){function A(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(WE(this,A),!e||!im.test(e.tagName))throw new Error("The first argument is required and must be an <img> or <canvas> element.");this.element=e,this.options=BA({},xo,Tt(t)&&t),this.cropped=!1,this.disabled=!1,this.pointers={},this.ready=!1,this.reloading=!1,this.replaced=!1,this.sized=!1,this.sizing=!1,this.init()}return JE(A,[{key:"init",value:function(){var t=this.element,r=t.tagName.toLowerCase(),n;if(!t[dA]){if(t[dA]=this,r==="img"){if(this.isImg=!0,n=t.getAttribute("src")||"",this.originalUrl=n,!n)return;n=t.src}else r==="canvas"&&window.HTMLCanvasElement&&(n=t.toDataURL());this.load(n)}}},{key:"load",value:function(t){var r=this;if(t){this.url=t,this.imageData={};var n=this.element,s=this.options;if(!s.rotatable&&!s.scalable&&(s.checkOrientation=!1),!s.checkOrientation||!window.ArrayBuffer){this.clone();return}if(sm.test(t)){am.test(t)?this.read(Um(t)):this.clone();return}var a=new XMLHttpRequest,u=this.clone.bind(this);this.reloading=!0,this.xhr=a,a.onabort=u,a.onerror=u,a.ontimeout=u,a.onprogress=function(){a.getResponseHeader("content-type")!==So&&a.abort()},a.onload=function(){r.read(a.response)},a.onloadend=function(){r.reloading=!1,r.xhr=null},s.checkCrossOrigin&&ko(t)&&n.crossOrigin&&(t=Po(t)),a.open("GET",t,!0),a.responseType="arraybuffer",a.withCredentials=n.crossOrigin==="use-credentials",a.send()}}},{key:"read",value:function(t){var r=this.options,n=this.imageData,s=Fm(t),a=0,u=1,o=1;if(s>1){this.url=Qm(t,So);var l=Im(s);a=l.rotate,u=l.scaleX,o=l.scaleY}r.rotatable&&(n.rotate=a),r.scalable&&(n.scaleX=u,n.scaleY=o),this.clone()}},{key:"clone",value:function(){var t=this.element,r=this.url,n=t.crossOrigin,s=r;this.options.checkCrossOrigin&&ko(r)&&(n||(n="anonymous"),s=Po(r)),this.crossOrigin=n,this.crossOriginUrl=s;var a=document.createElement("img");n&&(a.crossOrigin=n),a.src=s||r,a.alt=t.alt||"The image to crop",this.image=a,a.onload=this.start.bind(this),a.onerror=this.stop.bind(this),NA(a,wo),t.parentNode.insertBefore(a,t.nextSibling)}},{key:"start",value:function(){var t=this,r=this.image;r.onload=null,r.onerror=null,this.sizing=!0;var n=Ee.navigator&&/(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(Ee.navigator.userAgent),s=function(l,f){BA(t.imageData,{naturalWidth:l,naturalHeight:f,aspectRatio:l/f}),t.initialImageData=BA({},t.imageData),t.sizing=!1,t.sized=!0,t.build()};if(r.naturalWidth&&!n){s(r.naturalWidth,r.naturalHeight);return}var a=document.createElement("img"),u=document.body||document.documentElement;this.sizingImage=a,a.onload=function(){s(a.width,a.height),n||u.removeChild(a)},a.src=r.src,n||(a.style.cssText="left:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:0;position:absolute;top:0;z-index:-1;",u.appendChild(a))}},{key:"stop",value:function(){var t=this.image;t.onload=null,t.onerror=null,t.parentNode.removeChild(t),this.image=null}},{key:"build",value:function(){if(!(!this.sized||this.ready)){var t=this.element,r=this.options,n=this.image,s=t.parentNode,a=document.createElement("div");a.innerHTML=um;var u=a.querySelector(".".concat(dA,"-container")),o=u.querySelector(".".concat(dA,"-canvas")),l=u.querySelector(".".concat(dA,"-drag-box")),f=u.querySelector(".".concat(dA,"-crop-box")),h=f.querySelector(".".concat(dA,"-face"));this.container=s,this.cropper=u,this.canvas=o,this.dragBox=l,this.cropBox=f,this.viewBox=u.querySelector(".".concat(dA,"-view-box")),this.face=h,o.appendChild(n),NA(t,WA),s.insertBefore(u,t.nextSibling),me(n,wo),this.initPreview(),this.bind(),r.initialAspectRatio=Math.max(0,r.initialAspectRatio)||NaN,r.aspectRatio=Math.max(0,r.aspectRatio)||NaN,r.viewMode=Math.max(0,Math.min(3,Math.round(r.viewMode)))||0,NA(f,WA),r.guides||NA(f.getElementsByClassName("".concat(dA,"-dashed")),WA),r.center||NA(f.getElementsByClassName("".concat(dA,"-center")),WA),r.background&&NA(u,"".concat(dA,"-bg")),r.highlight||NA(h,Am),r.cropBoxMovable&&(NA(h,ia),or(h,ur,sa)),r.cropBoxResizable||(NA(f.getElementsByClassName("".concat(dA,"-line")),WA),NA(f.getElementsByClassName("".concat(dA,"-point")),WA)),this.render(),this.ready=!0,this.setDragMode(r.dragMode),r.autoCrop&&this.crop(),this.setData(r.data),JA(r.ready)&&re(t,_o,r.ready,{once:!0}),Qt(t,_o)}}},{key:"unbuild",value:function(){if(this.ready){this.ready=!1,this.unbind(),this.resetPreview();var t=this.cropper.parentNode;t&&t.removeChild(this.cropper),me(this.element,WA)}}},{key:"uncreate",value:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}],[{key:"noConflict",value:function(){return window.Cropper=xm,A}},{key:"setDefaults",value:function(t){BA(xo,Tt(t)&&t)}}])}();BA(Vo.prototype,_m,ym,Nm,Sm,vm,Lm);function Hm(A,e){const t=A.split(",")||[],r=t[0].match(/:(.*?);/)[1],n=t[1]&&atob(t[1]);let s=n&&n.length;const a=new Uint8Array(s);for(;s--;)a[s]=n==null?void 0:n.charCodeAt(s);return new File([a],e,{type:r})}const Dm={key:0,contenteditable:"false",class:"z-10 w-[100vw] h-[100vh] bg-[rgba(0,0,0,0.7)] flex flex-col justify-center items-center fixed top-0 left-0 cursor-auto"},Om={class:"w-[700px] flex flex-col bg-white rounded pb-8"},Rm={class:"flex flex-row items-center justify-between px-6 py-4 bg-[#f4f8ff]"},Mm={class:"flex flex-col h-full"},km={class:"flex flex-row justify-center items-start flex-1"},Pm={class:"flex flex-col items-start flex-1"},Km={class:"flex flex-col w-full px-6 py-4"},Vm={class:"flex flex-col w-full"},Gm={class:"flex flex-row items-center"},Ym={class:"relative bg-[#474AFF] text-white rounded p-3"},Xm={class:"flex flex-row items-start justify-between mt-3"},Wm={class:"flex flex-col"},Jm={class:"flex flex-col justify-center items-center border w-[300px] h-[300px]"},qm={key:0,class:"w-full text-center"},jm=["src"],$m={class:"flex flex-col items-center",style:{width:"300px",height:"300px"}},Zm={class:"text-[#999] mt-05 flex justify-center mt-4"},zm={class:"w-full flex justify-end space-x-5 mt-5 px-6"},Ap=["loading"],ep=c.defineComponent({__name:"GpCropper",emits:["cancel","ok"],setup(A,{expose:e,emit:t}){const r=t,n=c.ref({coverUrl:"",inputValue:"",uploadType:2,videoHost:"",videoUrl:""}),s=c.ref(),a=c.ref({autoCrop:!0,autoCropArea:1,background:!0,center:!0,cropBoxResizable:!0,dragMode:"move",preview:".before",toggleDragModeOnDblclick:!0,viewMode:1,zoomOnWheel:!0}),u=c.ref(!1),o=c.ref("image/jpeg"),l=c.ref({afterImg:"",image:null,myCropper:null}),f=x=>{const m=x.target.files[0];m&&(m.name&&(n.value.inputValue=m.name),h(m))};async function h(x){if(!x)return;await k();const m=URL.createObjectURL(x);l.value.image=m,l.value.image&&d(),o.value=x.type}function d(){const x=document.querySelector("#imgId");x&&x.addEventListener("load",()=>{D(),l.value.myCropper=new Vo(x,a.value)})}const C=c.ref(!1),p=c.ref();function T(x,m,H,P){p.value=P,s.value=x,x&&x.aspectRatio&&(a.value.aspectRatio=x.aspectRatio),H&&(n.value.inputValue=H),C.value=!0,m&&h(m)}function U(){C.value=!1}const _=()=>{var P,M;if(!l.value.myCropper)return;u.value=!0;var m=l.value.myCropper.getCroppedCanvas({height:(P=s.value)==null?void 0:P.height,imageSmoothingQuality:"high",width:(M=s.value)==null?void 0:M.width}).toDataURL(o.value);l.value.afterImg=m;const H=Hm(l.value.afterImg,n.value.inputValue);r("ok",{file:H,element:p.value}),u.value=!1,k(),D(),U()};function Q(){k(),D(),U(),r("cancel")}function D(){l.value.myCropper&&l.value.myCropper.destroy()}function k(){l.value.image=""}return e({handleCloseCropper:U,handleOpenCropper:T}),(x,m)=>{var H,P,M;return C.value?(c.openBlock(),c.createElementBlock("div",Dm,[c.createElementVNode("div",Om,[c.createElementVNode("div",Rm,[m[1]||(m[1]=c.createElementVNode("span",{class:"text-base font-semibold text-[#333]"},"图片裁剪",-1)),c.createElementVNode("span",{class:"text-lg cursor-pointer text-[#999] iconfont icon-shanchu2",onClick:c.withModifiers(Q,["stop"])})]),c.createElementVNode("div",Mm,[c.createElementVNode("div",km,[c.createElementVNode("div",Pm,[c.createElementVNode("div",Km,[c.createElementVNode("div",Vm,[c.createElementVNode("div",Gm,[c.createElementVNode("div",Ym,[c.createElementVNode("input",{type:"file",accept:"image/*",onClick:m[0]||(m[0]=c.withModifiers(()=>{},["stop"])),contenteditable:"false",ref:"fileInput",onChange:f,class:"absolute top-0 left-0 w-[110px] h-[40px] opacity-0 cursor-pointer"},null,544),m[2]||(m[2]=c.createElementVNode("span",{id:"uploadHandler",class:"cursor-pointer"}," 选择/更换图片 ",-1))]),m[3]||(m[3]=c.createElementVNode("span",{class:"text-sm text-[#999] ml-3"},"滚动鼠标放大或缩小图片",-1))]),c.createElementVNode("div",Xm,[c.createElementVNode("div",Wm,[c.createElementVNode("div",Jm,[l.value.image?c.createCommentVNode("",!0):(c.openBlock(),c.createElementBlock("div",qm," 请上传图片 ")),c.createElementVNode("img",{id:"imgId",src:l.value.image,style:{width:"300px"}},null,8,jm)])]),c.createElementVNode("div",$m,[m[4]||(m[4]=c.createElementVNode("div",{class:"before w-[270px] h-[200px] pr-[70px] border"},null,-1)),c.createElementVNode("div",Zm," 预览画像 "+c.toDisplayString(((H=s.value)==null?void 0:H.width)||"")+" "+c.toDisplayString((P=s.value)!=null&&P.width?"x":"")+" "+c.toDisplayString(((M=s.value)==null?void 0:M.height)||""),1)])])])])])]),c.createElementVNode("div",zm,[c.createElementVNode("span",{loading:u.value,class:"!w-22 bg-[#474AFF] text-white rounded py-2 px-6 cursor-pointer",type:"primary",onClick:_}," 确认 ",8,Ap),c.createElementVNode("span",{class:"!w-22 border border-[#DEDEDE] text-[#666] rounded py-2 px-6 cursor-pointer",onClick:Q},"取消")])])])])):c.createCommentVNode("",!0)}}}),tp=c.defineComponent({name:"GpModal",props:{visible:{type:Boolean,required:!0},title:{type:String,default:""},okText:{type:String,default:"确定"},cancelText:{type:String,default:"取消"},showOkButton:{type:Boolean,default:!0},showCancelButton:{type:Boolean,default:!0},showCloseButton:{type:Boolean,default:!0}},emits:["update:visible","ok","cancel"],setup(A,{emit:e}){const{visible:t,okText:r,cancelText:n,showCloseButton:s}=c.toRefs(A);return{visible:t,okText:r,cancelText:n,showCloseButton:s,onClose:()=>{e("cancel"),e("update:visible",!1)},onOk:()=>{e("ok"),e("update:visible",!1)},onCancel:()=>{e("cancel"),e("update:visible",!1)}}}}),rp={class:"bg-white rounded-lg shadow-xl w-ful"},np={class:"p-4 border-b border-gray-200 relative flex items-center justify-between"},sp={key:0,class:"text-lg font-semibold"},ap={class:"p-4"},ip={key:0,class:"p-4 border-t border-gray-200 flex justify-end space-x-2"};function up(A,e,t,r,n,s){return A.visible?(c.openBlock(),c.createElementBlock("div",{key:0,class:"fixed inset-0 z-[99999] flex items-center justify-center bg-gray-900 bg-opacity-50",onClick:e[3]||(e[3]=c.withModifiers((...a)=>A.onClose&&A.onClose(...a),["self"]))},[c.createElementVNode("div",rp,[c.createElementVNode("div",np,[A.title?(c.openBlock(),c.createElementBlock("h3",sp,c.toDisplayString(A.title),1)):c.createCommentVNode("",!0),c.renderSlot(A.$slots,"header"),A.showCloseButton?(c.openBlock(),c.createElementBlock("button",{key:1,class:"text-gray-400 hover:text-gray-600",onClick:e[0]||(e[0]=(...a)=>A.onClose&&A.onClose(...a)),"aria-label":"Close"},e[4]||(e[4]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",class:"h-5 w-5",viewBox:"0 0 20 20",fill:"currentColor"},[c.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1)]))):c.createCommentVNode("",!0)]),c.createElementVNode("div",ap,[c.renderSlot(A.$slots,"default")]),A.showCancelButton||A.showOkButton?(c.openBlock(),c.createElementBlock("div",ip,[c.renderSlot(A.$slots,"footer",{},()=>[A.showCancelButton?(c.openBlock(),c.createElementBlock("button",{key:0,class:"px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded hover:bg-gray-200",onClick:e[1]||(e[1]=(...a)=>A.onCancel&&A.onCancel(...a))},c.toDisplayString(A.cancelText),1)):c.createCommentVNode("",!0),A.showOkButton?(c.openBlock(),c.createElementBlock("button",{key:1,class:"px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded hover:bg-blue-700",onClick:e[2]||(e[2]=(...a)=>A.onOk&&A.onOk(...a))},c.toDisplayString(A.okText),1)):c.createCommentVNode("",!0)])])):c.createCommentVNode("",!0)])])):c.createCommentVNode("",!0)}const op=Oe(tp,[["render",up]]),cp={class:"p-4 flex flex-wrap max-h-[500px] overflow-y-auto w-[640px]"},lp=["onClick"],fp=c.defineComponent({__name:"GpIcon",props:{icons:{type:Array,default:()=>[]}},emits:["ok"],setup(A,{expose:e,emit:t}){const r=A,n=t,s=c.ref(r.icons||[]);c.watch(()=>r.icons,h=>{s.value=h||[]},{immediate:!0});const a=c.ref(!1),u=c.ref();function o(h){a.value=!0,u.value=h}function l(h){f(),n("ok",{icon:h,element:u.value})}function f(){a.value=!1}return e({openModal:o,closeModal:f}),(h,d)=>(c.openBlock(),c.createBlock(op,{visible:a.value,"onUpdate:visible":d[0]||(d[0]=C=>a.value=C),title:"选择图标",onOk:f,onCancel:f,showCancelButton:!1,showOkButton:!1},{default:c.withCtx(()=>[c.createElementVNode("div",cp,[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(s.value,C=>(c.openBlock(),c.createElementBlock("span",{key:C,onClick:c.withModifiers(p=>l(C),["stop"]),style:{position:"unset",color:"unset",top:"unset",left:"unset",right:"unset",transform:"unset","font-size":"unset"},class:c.normalizeClass(["w-12 h-12 mx-1 mb-2 border cursor-pointer hover:border-gray-400 hover:bg-gray-200",`iconfont icon-${C} text-4xl overflow-hidden flex justify-center items-center`])},null,10,lp))),128))])]),_:1},8,["visible"]))}}),hp=c.defineComponent({name:"GpImageUpload",props:{accept:{type:String,default:"image/*"},multiple:{type:Boolean,default:!1},maxCount:{type:Number,default:1/0},beforeUpload:Function,onChange:Function,showList:{type:Boolean,default:!1},show:{type:Boolean,default:!0}},setup(A,{emit:e}){const t=c.ref(null),r=c.ref([]),n=c.ref(),s=c.ref(A.show);c.watch(()=>A.show,f=>{s.value=f},{immediate:!0});const a=()=>{var f;(f=t.value)==null||f.click()},u=async f=>{var p;const d=f.target.files;if(!d)return;const C=[];for(let T=0;T<d.length;T++){const U=d[T];if(A.beforeUpload&&await A.beforeUpload(U)===!1)continue;const _=`${Date.now()}-${U.name}`,Q=URL.createObjectURL(U),D=document.createElement("img");D.src=Q,document.body.appendChild(D),await new Promise(m=>{D.onload=m});const k=D.width,x=D.height;document.body.removeChild(D),C.push({uid:_,name:U.name,status:"uploading",thumbUrl:Q,file:U,width:k,height:x})}A.maxCount&&r.value.length+C.length>A.maxCount&&C.splice(A.maxCount-r.value.length),A.multiple?r.value=[...r.value,...C]:r.value=C.slice(0,1),(p=A.onChange)==null||p.call(A,r.value,n.value),e("update:fileList",r.value),t.value&&(t.value.value="")},o=f=>{var h;r.value=r.value.filter(d=>d.uid!==f),(h=A.onChange)==null||h.call(A,r.value,n.value)};function l(f){n.value=f,a()}return{isShow:s,openModal:l,inputRef:t,fileList:r,triggerInput:a,handleChange:u,removeFile:o}}}),dp={class:"upload-wrapper"},Bp=["accept","multiple"],gp={key:1,class:"file-list mt-4"},Ep={class:"flex items-center space-x-4"},mp=["src"],pp=["onClick"];function Cp(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",dp,[A.isShow?(c.openBlock(),c.createElementBlock("div",{key:0,class:"",onClick:e[0]||(e[0]=(...a)=>A.triggerInput&&A.triggerInput(...a))},[c.renderSlot(A.$slots,"upload-icon",{},()=>[e[2]||(e[2]=c.createElementVNode("div",{class:"upload-area border-dashed border-2 p-6 rounded cursor-pointer hover:border-blue-500"},[c.createElementVNode("div",{class:"text-gray-400 text-lg text-center"}," 点击或拖拽上传图片 ")],-1))],!0)])):c.createCommentVNode("",!0),c.createElementVNode("input",{type:"file",ref:"inputRef",class:"hidden",accept:A.accept,multiple:A.multiple,onChange:e[1]||(e[1]=(...a)=>A.handleChange&&A.handleChange(...a))},null,40,Bp),A.showList?(c.openBlock(),c.createElementBlock("div",gp,[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(A.fileList,a=>(c.openBlock(),c.createElementBlock("div",{key:a.uid,class:"file-item flex items-center justify-between p-2 border rounded mb-2"},[c.createElementVNode("div",Ep,[a.thumbUrl?(c.openBlock(),c.createElementBlock("img",{key:0,src:a.thumbUrl,alt:"preview",class:"w-12 h-12 object-cover rounded"},null,8,mp)):c.createCommentVNode("",!0),c.createElementVNode("span",null,c.toDisplayString(a.name),1)]),c.createElementVNode("div",null,[c.createElementVNode("button",{onClick:u=>A.removeFile(a.uid),class:"text-red-500 hover:underline"}," 删除 ",8,pp)])]))),128))])):c.createCommentVNode("",!0)])}const wp=Oe(hp,[["render",Cp],["__scopeId","data-v-08babff9"]]);/*!
17
+ */function fo(A,e){var t=Object.keys(A);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(A);e&&(r=r.filter(function(n){return Object.getOwnPropertyDescriptor(A,n).enumerable})),t.push.apply(t,r)}return t}function ho(A){for(var e=1;e<arguments.length;e++){var t=arguments[e]!=null?arguments[e]:{};e%2?fo(Object(t),!0).forEach(function(r){qE(A,r,t[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(A,Object.getOwnPropertyDescriptors(t)):fo(Object(t)).forEach(function(r){Object.defineProperty(A,r,Object.getOwnPropertyDescriptor(t,r))})}return A}function XE(A,e){if(typeof A!="object"||!A)return A;var t=A[Symbol.toPrimitive];if(t!==void 0){var r=t.call(A,e||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(A)}function Bo(A){var e=XE(A,"string");return typeof e=="symbol"?e:e+""}function ta(A){"@babel/helpers - typeof";return ta=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ta(A)}function WE(A,e){if(!(A instanceof e))throw new TypeError("Cannot call a class as a function")}function go(A,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(A,Bo(r.key),r)}}function JE(A,e,t){return e&&go(A.prototype,e),t&&go(A,t),Object.defineProperty(A,"prototype",{writable:!1}),A}function qE(A,e,t){return e=Bo(e),e in A?Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):A[e]=t,A}function Eo(A){return jE(A)||$E(A)||ZE(A)||zE()}function jE(A){if(Array.isArray(A))return ra(A)}function $E(A){if(typeof Symbol<"u"&&A[Symbol.iterator]!=null||A["@@iterator"]!=null)return Array.from(A)}function ZE(A,e){if(A){if(typeof A=="string")return ra(A,e);var t=Object.prototype.toString.call(A).slice(8,-1);if(t==="Object"&&A.constructor&&(t=A.constructor.name),t==="Map"||t==="Set")return Array.from(A);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return ra(A,e)}}function ra(A,e){(e==null||e>A.length)&&(e=A.length);for(var t=0,r=new Array(e);t<e;t++)r[t]=A[t];return r}function zE(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
18
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var ln=typeof window<"u"&&typeof window.document<"u",me=ln?window:{},na=ln&&me.document.documentElement?"ontouchstart"in me.document.documentElement:!1,sa=ln?"PointerEvent"in me:!1,BA="cropper",aa="all",mo="crop",po="move",Co="zoom",st="e",at="w",Tt="s",Re="n",sr="ne",ar="nw",ir="se",ur="sw",ia="".concat(BA,"-crop"),wo="".concat(BA,"-disabled"),qA="".concat(BA,"-hidden"),To="".concat(BA,"-hide"),Am="".concat(BA,"-invisible"),fn="".concat(BA,"-modal"),ua="".concat(BA,"-move"),or="".concat(BA,"Action"),hn="".concat(BA,"Preview"),oa="crop",bo="move",Uo="none",ca="crop",la="cropend",fa="cropmove",ha="cropstart",Qo="dblclick",em=na?"touchstart":"mousedown",tm=na?"touchmove":"mousemove",rm=na?"touchend touchcancel":"mouseup",Fo=sa?"pointerdown":em,Io=sa?"pointermove":tm,_o=sa?"pointerup pointercancel":rm,yo="ready",No="resize",So="wheel",da="zoom",vo="image/jpeg",nm=/^e|w|s|n|se|sw|ne|nw|all|crop|move|zoom$/,sm=/^data:/,am=/^data:image\/jpeg;base64,/,im=/^img|canvas$/i,Lo=200,xo=100,Ho={viewMode:0,dragMode:oa,initialAspectRatio:NaN,aspectRatio:NaN,data:null,preview:"",responsive:!0,restore:!0,checkCrossOrigin:!0,checkOrientation:!0,modal:!0,guides:!0,center:!0,highlight:!0,background:!0,autoCrop:!0,autoCropArea:.8,movable:!0,rotatable:!0,scalable:!0,zoomable:!0,zoomOnTouch:!0,zoomOnWheel:!0,wheelZoomRatio:.1,cropBoxMovable:!0,cropBoxResizable:!0,toggleDragModeOnDblclick:!0,minCanvasWidth:0,minCanvasHeight:0,minCropBoxWidth:0,minCropBoxHeight:0,minContainerWidth:Lo,minContainerHeight:xo,ready:null,cropstart:null,cropmove:null,cropend:null,crop:null,zoom:null},um='<div class="cropper-container" touch-action="none"><div class="cropper-wrap-box"><div class="cropper-canvas"></div></div><div class="cropper-drag-box"></div><div class="cropper-crop-box"><span class="cropper-view-box"></span><span class="cropper-dashed dashed-h"></span><span class="cropper-dashed dashed-v"></span><span class="cropper-center"></span><span class="cropper-face"></span><span class="cropper-line line-e" data-cropper-action="e"></span><span class="cropper-line line-n" data-cropper-action="n"></span><span class="cropper-line line-w" data-cropper-action="w"></span><span class="cropper-line line-s" data-cropper-action="s"></span><span class="cropper-point point-e" data-cropper-action="e"></span><span class="cropper-point point-n" data-cropper-action="n"></span><span class="cropper-point point-w" data-cropper-action="w"></span><span class="cropper-point point-s" data-cropper-action="s"></span><span class="cropper-point point-ne" data-cropper-action="ne"></span><span class="cropper-point point-nw" data-cropper-action="nw"></span><span class="cropper-point point-sw" data-cropper-action="sw"></span><span class="cropper-point point-se" data-cropper-action="se"></span></div></div>',om=Number.isNaN||me.isNaN;function z(A){return typeof A=="number"&&!om(A)}var Do=function(e){return e>0&&e<1/0};function Ba(A){return typeof A>"u"}function it(A){return ta(A)==="object"&&A!==null}var cm=Object.prototype.hasOwnProperty;function bt(A){if(!it(A))return!1;try{var e=A.constructor,t=e.prototype;return e&&t&&cm.call(t,"isPrototypeOf")}catch{return!1}}function jA(A){return typeof A=="function"}var lm=Array.prototype.slice;function Oo(A){return Array.from?Array.from(A):lm.call(A)}function bA(A,e){return A&&jA(e)&&(Array.isArray(A)||z(A.length)?Oo(A).forEach(function(t,r){e.call(A,t,r,A)}):it(A)&&Object.keys(A).forEach(function(t){e.call(A,A[t],t,A)})),A}var gA=Object.assign||function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return it(e)&&r.length>0&&r.forEach(function(s){it(s)&&Object.keys(s).forEach(function(a){e[a]=s[a]})}),e},fm=/\.\d*(?:0|9){12}\d*$/;function Ut(A){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1e11;return fm.test(A)?Math.round(A*e)/e:A}var hm=/^width|height|left|top|marginLeft|marginTop$/;function Me(A,e){var t=A.style;bA(e,function(r,n){hm.test(n)&&z(r)&&(r="".concat(r,"px")),t[n]=r})}function dm(A,e){return A.classList?A.classList.contains(e):A.className.indexOf(e)>-1}function vA(A,e){if(e){if(z(A.length)){bA(A,function(r){vA(r,e)});return}if(A.classList){A.classList.add(e);return}var t=A.className.trim();t?t.indexOf(e)<0&&(A.className="".concat(t," ").concat(e)):A.className=e}}function pe(A,e){if(e){if(z(A.length)){bA(A,function(t){pe(t,e)});return}if(A.classList){A.classList.remove(e);return}A.className.indexOf(e)>=0&&(A.className=A.className.replace(e,""))}}function Qt(A,e,t){if(e){if(z(A.length)){bA(A,function(r){Qt(r,e,t)});return}t?vA(A,e):pe(A,e)}}var Bm=/([a-z\d])([A-Z])/g;function ga(A){return A.replace(Bm,"$1-$2").toLowerCase()}function Ea(A,e){return it(A[e])?A[e]:A.dataset?A.dataset[e]:A.getAttribute("data-".concat(ga(e)))}function cr(A,e,t){it(t)?A[e]=t:A.dataset?A.dataset[e]=t:A.setAttribute("data-".concat(ga(e)),t)}function gm(A,e){if(it(A[e]))try{delete A[e]}catch{A[e]=void 0}else if(A.dataset)try{delete A.dataset[e]}catch{A.dataset[e]=void 0}else A.removeAttribute("data-".concat(ga(e)))}var Ro=/\s\s*/,Mo=function(){var A=!1;if(ln){var e=!1,t=function(){},r=Object.defineProperty({},"once",{get:function(){return A=!0,e},set:function(s){e=s}});me.addEventListener("test",t,r),me.removeEventListener("test",t,r)}return A}();function fe(A,e,t){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=t;e.trim().split(Ro).forEach(function(s){if(!Mo){var a=A.listeners;a&&a[s]&&a[s][t]&&(n=a[s][t],delete a[s][t],Object.keys(a[s]).length===0&&delete a[s],Object.keys(a).length===0&&delete A.listeners)}A.removeEventListener(s,n,r)})}function se(A,e,t){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},n=t;e.trim().split(Ro).forEach(function(s){if(r.once&&!Mo){var a=A.listeners,u=a===void 0?{}:a;n=function(){delete u[s][t],A.removeEventListener(s,n,r);for(var l=arguments.length,f=new Array(l),h=0;h<l;h++)f[h]=arguments[h];t.apply(A,f)},u[s]||(u[s]={}),u[s][t]&&A.removeEventListener(s,u[s][t],r),u[s][t]=n,A.listeners=u}A.addEventListener(s,n,r)})}function Ft(A,e,t){var r;return jA(Event)&&jA(CustomEvent)?r=new CustomEvent(e,{detail:t,bubbles:!0,cancelable:!0}):(r=document.createEvent("CustomEvent"),r.initCustomEvent(e,!0,!0,t)),A.dispatchEvent(r)}function ko(A){var e=A.getBoundingClientRect();return{left:e.left+(window.pageXOffset-document.documentElement.clientLeft),top:e.top+(window.pageYOffset-document.documentElement.clientTop)}}var ma=me.location,Em=/^(\w+:)\/\/([^:/?#]*):?(\d*)/i;function Po(A){var e=A.match(Em);return e!==null&&(e[1]!==ma.protocol||e[2]!==ma.hostname||e[3]!==ma.port)}function Ko(A){var e="timestamp=".concat(new Date().getTime());return A+(A.indexOf("?")===-1?"?":"&")+e}function lr(A){var e=A.rotate,t=A.scaleX,r=A.scaleY,n=A.translateX,s=A.translateY,a=[];z(n)&&n!==0&&a.push("translateX(".concat(n,"px)")),z(s)&&s!==0&&a.push("translateY(".concat(s,"px)")),z(e)&&e!==0&&a.push("rotate(".concat(e,"deg)")),z(t)&&t!==1&&a.push("scaleX(".concat(t,")")),z(r)&&r!==1&&a.push("scaleY(".concat(r,")"));var u=a.length?a.join(" "):"none";return{WebkitTransform:u,msTransform:u,transform:u}}function mm(A){var e=ho({},A),t=0;return bA(A,function(r,n){delete e[n],bA(e,function(s){var a=Math.abs(r.startX-s.startX),u=Math.abs(r.startY-s.startY),o=Math.abs(r.endX-s.endX),l=Math.abs(r.endY-s.endY),f=Math.sqrt(a*a+u*u),h=Math.sqrt(o*o+l*l),d=(h-f)/f;Math.abs(d)>Math.abs(t)&&(t=d)})}),t}function dn(A,e){var t=A.pageX,r=A.pageY,n={endX:t,endY:r};return e?n:ho({startX:t,startY:r},n)}function pm(A){var e=0,t=0,r=0;return bA(A,function(n){var s=n.startX,a=n.startY;e+=s,t+=a,r+=1}),e/=r,t/=r,{pageX:e,pageY:t}}function ke(A){var e=A.aspectRatio,t=A.height,r=A.width,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"contain",s=Do(r),a=Do(t);if(s&&a){var u=t*e;n==="contain"&&u>r||n==="cover"&&u<r?t=r/e:r=t*e}else s?t=r/e:a&&(r=t*e);return{width:r,height:t}}function Cm(A){var e=A.width,t=A.height,r=A.degree;if(r=Math.abs(r)%180,r===90)return{width:t,height:e};var n=r%90*Math.PI/180,s=Math.sin(n),a=Math.cos(n),u=e*a+t*s,o=e*s+t*a;return r>90?{width:o,height:u}:{width:u,height:o}}function wm(A,e,t,r){var n=e.aspectRatio,s=e.naturalWidth,a=e.naturalHeight,u=e.rotate,o=u===void 0?0:u,l=e.scaleX,f=l===void 0?1:l,h=e.scaleY,d=h===void 0?1:h,C=t.aspectRatio,p=t.naturalWidth,T=t.naturalHeight,U=r.fillColor,_=U===void 0?"transparent":U,I=r.imageSmoothingEnabled,D=I===void 0?!0:I,k=r.imageSmoothingQuality,x=k===void 0?"low":k,m=r.maxWidth,H=m===void 0?1/0:m,P=r.maxHeight,M=P===void 0?1/0:P,eA=r.minWidth,uA=eA===void 0?0:eA,fA=r.minHeight,J=fA===void 0?0:fA,rA=document.createElement("canvas"),oA=rA.getContext("2d"),hA=ke({aspectRatio:C,width:H,height:M}),pA=ke({aspectRatio:C,width:uA,height:J},"cover"),GA=Math.min(hA.width,Math.max(pA.width,p)),IA=Math.min(hA.height,Math.max(pA.height,T)),KA=ke({aspectRatio:n,width:H,height:M}),xA=ke({aspectRatio:n,width:uA,height:J},"cover"),ZA=Math.min(KA.width,Math.max(xA.width,s)),_A=Math.min(KA.height,Math.max(xA.height,a)),v=[-ZA/2,-_A/2,ZA,_A];return rA.width=Ut(GA),rA.height=Ut(IA),oA.fillStyle=_,oA.fillRect(0,0,GA,IA),oA.save(),oA.translate(GA/2,IA/2),oA.rotate(o*Math.PI/180),oA.scale(f,d),oA.imageSmoothingEnabled=D,oA.imageSmoothingQuality=x,oA.drawImage.apply(oA,[A].concat(Eo(v.map(function(S){return Math.floor(Ut(S))})))),oA.restore(),rA}var Vo=String.fromCharCode;function Tm(A,e,t){var r="";t+=e;for(var n=e;n<t;n+=1)r+=Vo(A.getUint8(n));return r}var bm=/^data:.*,/;function Um(A){var e=A.replace(bm,""),t=atob(e),r=new ArrayBuffer(t.length),n=new Uint8Array(r);return bA(n,function(s,a){n[a]=t.charCodeAt(a)}),r}function Qm(A,e){for(var t=[],r=8192,n=new Uint8Array(A);n.length>0;)t.push(Vo.apply(null,Oo(n.subarray(0,r)))),n=n.subarray(r);return"data:".concat(e,";base64,").concat(btoa(t.join("")))}function Fm(A){var e=new DataView(A),t;try{var r,n,s;if(e.getUint8(0)===255&&e.getUint8(1)===216)for(var a=e.byteLength,u=2;u+1<a;){if(e.getUint8(u)===255&&e.getUint8(u+1)===225){n=u;break}u+=1}if(n){var o=n+4,l=n+10;if(Tm(e,o,4)==="Exif"){var f=e.getUint16(l);if(r=f===18761,(r||f===19789)&&e.getUint16(l+2,r)===42){var h=e.getUint32(l+4,r);h>=8&&(s=l+h)}}}if(s){var d=e.getUint16(s,r),C,p;for(p=0;p<d;p+=1)if(C=s+p*12+2,e.getUint16(C,r)===274){C+=8,t=e.getUint16(C,r),e.setUint16(C,1,r);break}}}catch{t=1}return t}function Im(A){var e=0,t=1,r=1;switch(A){case 2:t=-1;break;case 3:e=-180;break;case 4:r=-1;break;case 5:e=90,r=-1;break;case 6:e=90;break;case 7:e=90,t=-1;break;case 8:e=-90;break}return{rotate:e,scaleX:t,scaleY:r}}var _m={render:function(){this.initContainer(),this.initCanvas(),this.initCropBox(),this.renderCanvas(),this.cropped&&this.renderCropBox()},initContainer:function(){var e=this.element,t=this.options,r=this.container,n=this.cropper,s=Number(t.minContainerWidth),a=Number(t.minContainerHeight);vA(n,qA),pe(e,qA);var u={width:Math.max(r.offsetWidth,s>=0?s:Lo),height:Math.max(r.offsetHeight,a>=0?a:xo)};this.containerData=u,Me(n,{width:u.width,height:u.height}),vA(e,qA),pe(n,qA)},initCanvas:function(){var e=this.containerData,t=this.imageData,r=this.options.viewMode,n=Math.abs(t.rotate)%180===90,s=n?t.naturalHeight:t.naturalWidth,a=n?t.naturalWidth:t.naturalHeight,u=s/a,o=e.width,l=e.height;e.height*u>e.width?r===3?o=e.height*u:l=e.width/u:r===3?l=e.width/u:o=e.height*u;var f={aspectRatio:u,naturalWidth:s,naturalHeight:a,width:o,height:l};this.canvasData=f,this.limited=r===1||r===2,this.limitCanvas(!0,!0),f.width=Math.min(Math.max(f.width,f.minWidth),f.maxWidth),f.height=Math.min(Math.max(f.height,f.minHeight),f.maxHeight),f.left=(e.width-f.width)/2,f.top=(e.height-f.height)/2,f.oldLeft=f.left,f.oldTop=f.top,this.initialCanvasData=gA({},f)},limitCanvas:function(e,t){var r=this.options,n=this.containerData,s=this.canvasData,a=this.cropBoxData,u=r.viewMode,o=s.aspectRatio,l=this.cropped&&a;if(e){var f=Number(r.minCanvasWidth)||0,h=Number(r.minCanvasHeight)||0;u>1?(f=Math.max(f,n.width),h=Math.max(h,n.height),u===3&&(h*o>f?f=h*o:h=f/o)):u>0&&(f?f=Math.max(f,l?a.width:0):h?h=Math.max(h,l?a.height:0):l&&(f=a.width,h=a.height,h*o>f?f=h*o:h=f/o));var d=ke({aspectRatio:o,width:f,height:h});f=d.width,h=d.height,s.minWidth=f,s.minHeight=h,s.maxWidth=1/0,s.maxHeight=1/0}if(t)if(u>(l?0:1)){var C=n.width-s.width,p=n.height-s.height;s.minLeft=Math.min(0,C),s.minTop=Math.min(0,p),s.maxLeft=Math.max(0,C),s.maxTop=Math.max(0,p),l&&this.limited&&(s.minLeft=Math.min(a.left,a.left+(a.width-s.width)),s.minTop=Math.min(a.top,a.top+(a.height-s.height)),s.maxLeft=a.left,s.maxTop=a.top,u===2&&(s.width>=n.width&&(s.minLeft=Math.min(0,C),s.maxLeft=Math.max(0,C)),s.height>=n.height&&(s.minTop=Math.min(0,p),s.maxTop=Math.max(0,p))))}else s.minLeft=-s.width,s.minTop=-s.height,s.maxLeft=n.width,s.maxTop=n.height},renderCanvas:function(e,t){var r=this.canvasData,n=this.imageData;if(t){var s=Cm({width:n.naturalWidth*Math.abs(n.scaleX||1),height:n.naturalHeight*Math.abs(n.scaleY||1),degree:n.rotate||0}),a=s.width,u=s.height,o=r.width*(a/r.naturalWidth),l=r.height*(u/r.naturalHeight);r.left-=(o-r.width)/2,r.top-=(l-r.height)/2,r.width=o,r.height=l,r.aspectRatio=a/u,r.naturalWidth=a,r.naturalHeight=u,this.limitCanvas(!0,!1)}(r.width>r.maxWidth||r.width<r.minWidth)&&(r.left=r.oldLeft),(r.height>r.maxHeight||r.height<r.minHeight)&&(r.top=r.oldTop),r.width=Math.min(Math.max(r.width,r.minWidth),r.maxWidth),r.height=Math.min(Math.max(r.height,r.minHeight),r.maxHeight),this.limitCanvas(!1,!0),r.left=Math.min(Math.max(r.left,r.minLeft),r.maxLeft),r.top=Math.min(Math.max(r.top,r.minTop),r.maxTop),r.oldLeft=r.left,r.oldTop=r.top,Me(this.canvas,gA({width:r.width,height:r.height},lr({translateX:r.left,translateY:r.top}))),this.renderImage(e),this.cropped&&this.limited&&this.limitCropBox(!0,!0)},renderImage:function(e){var t=this.canvasData,r=this.imageData,n=r.naturalWidth*(t.width/t.naturalWidth),s=r.naturalHeight*(t.height/t.naturalHeight);gA(r,{width:n,height:s,left:(t.width-n)/2,top:(t.height-s)/2}),Me(this.image,gA({width:r.width,height:r.height},lr(gA({translateX:r.left,translateY:r.top},r)))),e&&this.output()},initCropBox:function(){var e=this.options,t=this.canvasData,r=e.aspectRatio||e.initialAspectRatio,n=Number(e.autoCropArea)||.8,s={width:t.width,height:t.height};r&&(t.height*r>t.width?s.height=s.width/r:s.width=s.height*r),this.cropBoxData=s,this.limitCropBox(!0,!0),s.width=Math.min(Math.max(s.width,s.minWidth),s.maxWidth),s.height=Math.min(Math.max(s.height,s.minHeight),s.maxHeight),s.width=Math.max(s.minWidth,s.width*n),s.height=Math.max(s.minHeight,s.height*n),s.left=t.left+(t.width-s.width)/2,s.top=t.top+(t.height-s.height)/2,s.oldLeft=s.left,s.oldTop=s.top,this.initialCropBoxData=gA({},s)},limitCropBox:function(e,t){var r=this.options,n=this.containerData,s=this.canvasData,a=this.cropBoxData,u=this.limited,o=r.aspectRatio;if(e){var l=Number(r.minCropBoxWidth)||0,f=Number(r.minCropBoxHeight)||0,h=u?Math.min(n.width,s.width,s.width+s.left,n.width-s.left):n.width,d=u?Math.min(n.height,s.height,s.height+s.top,n.height-s.top):n.height;l=Math.min(l,n.width),f=Math.min(f,n.height),o&&(l&&f?f*o>l?f=l/o:l=f*o:l?f=l/o:f&&(l=f*o),d*o>h?d=h/o:h=d*o),a.minWidth=Math.min(l,h),a.minHeight=Math.min(f,d),a.maxWidth=h,a.maxHeight=d}t&&(u?(a.minLeft=Math.max(0,s.left),a.minTop=Math.max(0,s.top),a.maxLeft=Math.min(n.width,s.left+s.width)-a.width,a.maxTop=Math.min(n.height,s.top+s.height)-a.height):(a.minLeft=0,a.minTop=0,a.maxLeft=n.width-a.width,a.maxTop=n.height-a.height))},renderCropBox:function(){var e=this.options,t=this.containerData,r=this.cropBoxData;(r.width>r.maxWidth||r.width<r.minWidth)&&(r.left=r.oldLeft),(r.height>r.maxHeight||r.height<r.minHeight)&&(r.top=r.oldTop),r.width=Math.min(Math.max(r.width,r.minWidth),r.maxWidth),r.height=Math.min(Math.max(r.height,r.minHeight),r.maxHeight),this.limitCropBox(!1,!0),r.left=Math.min(Math.max(r.left,r.minLeft),r.maxLeft),r.top=Math.min(Math.max(r.top,r.minTop),r.maxTop),r.oldLeft=r.left,r.oldTop=r.top,e.movable&&e.cropBoxMovable&&cr(this.face,or,r.width>=t.width&&r.height>=t.height?po:aa),Me(this.cropBox,gA({width:r.width,height:r.height},lr({translateX:r.left,translateY:r.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),Ft(this.element,ca,this.getData())}},ym={initPreview:function(){var e=this.element,t=this.crossOrigin,r=this.options.preview,n=t?this.crossOriginUrl:this.url,s=e.alt||"The image to preview",a=document.createElement("img");if(t&&(a.crossOrigin=t),a.src=n,a.alt=s,this.viewBox.appendChild(a),this.viewBoxImage=a,!!r){var u=r;typeof r=="string"?u=e.ownerDocument.querySelectorAll(r):r.querySelector&&(u=[r]),this.previews=u,bA(u,function(o){var l=document.createElement("img");cr(o,hn,{width:o.offsetWidth,height:o.offsetHeight,html:o.innerHTML}),t&&(l.crossOrigin=t),l.src=n,l.alt=s,l.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',o.innerHTML="",o.appendChild(l)})}},resetPreview:function(){bA(this.previews,function(e){var t=Ea(e,hn);Me(e,{width:t.width,height:t.height}),e.innerHTML=t.html,gm(e,hn)})},preview:function(){var e=this.imageData,t=this.canvasData,r=this.cropBoxData,n=r.width,s=r.height,a=e.width,u=e.height,o=r.left-t.left-e.left,l=r.top-t.top-e.top;!this.cropped||this.disabled||(Me(this.viewBoxImage,gA({width:a,height:u},lr(gA({translateX:-o,translateY:-l},e)))),bA(this.previews,function(f){var h=Ea(f,hn),d=h.width,C=h.height,p=d,T=C,U=1;n&&(U=d/n,T=s*U),s&&T>C&&(U=C/s,p=n*U,T=C),Me(f,{width:p,height:T}),Me(f.getElementsByTagName("img")[0],gA({width:a*U,height:u*U},lr(gA({translateX:-o*U,translateY:-l*U},e))))}))}},Nm={bind:function(){var e=this.element,t=this.options,r=this.cropper;jA(t.cropstart)&&se(e,ha,t.cropstart),jA(t.cropmove)&&se(e,fa,t.cropmove),jA(t.cropend)&&se(e,la,t.cropend),jA(t.crop)&&se(e,ca,t.crop),jA(t.zoom)&&se(e,da,t.zoom),se(r,Fo,this.onCropStart=this.cropStart.bind(this)),t.zoomable&&t.zoomOnWheel&&se(r,So,this.onWheel=this.wheel.bind(this),{passive:!1,capture:!0}),t.toggleDragModeOnDblclick&&se(r,Qo,this.onDblclick=this.dblclick.bind(this)),se(e.ownerDocument,Io,this.onCropMove=this.cropMove.bind(this)),se(e.ownerDocument,_o,this.onCropEnd=this.cropEnd.bind(this)),t.responsive&&se(window,No,this.onResize=this.resize.bind(this))},unbind:function(){var e=this.element,t=this.options,r=this.cropper;jA(t.cropstart)&&fe(e,ha,t.cropstart),jA(t.cropmove)&&fe(e,fa,t.cropmove),jA(t.cropend)&&fe(e,la,t.cropend),jA(t.crop)&&fe(e,ca,t.crop),jA(t.zoom)&&fe(e,da,t.zoom),fe(r,Fo,this.onCropStart),t.zoomable&&t.zoomOnWheel&&fe(r,So,this.onWheel,{passive:!1,capture:!0}),t.toggleDragModeOnDblclick&&fe(r,Qo,this.onDblclick),fe(e.ownerDocument,Io,this.onCropMove),fe(e.ownerDocument,_o,this.onCropEnd),t.responsive&&fe(window,No,this.onResize)}},Sm={resize:function(){if(!this.disabled){var e=this.options,t=this.container,r=this.containerData,n=t.offsetWidth/r.width,s=t.offsetHeight/r.height,a=Math.abs(n-1)>Math.abs(s-1)?n:s;if(a!==1){var u,o;e.restore&&(u=this.getCanvasData(),o=this.getCropBoxData()),this.render(),e.restore&&(this.setCanvasData(bA(u,function(l,f){u[f]=l*a})),this.setCropBoxData(bA(o,function(l,f){o[f]=l*a})))}}},dblclick:function(){this.disabled||this.options.dragMode===Uo||this.setDragMode(dm(this.dragBox,ia)?bo:oa)},wheel:function(e){var t=this,r=Number(this.options.wheelZoomRatio)||.1,n=1;this.disabled||(e.preventDefault(),!this.wheeling&&(this.wheeling=!0,setTimeout(function(){t.wheeling=!1},50),e.deltaY?n=e.deltaY>0?1:-1:e.wheelDelta?n=-e.wheelDelta/120:e.detail&&(n=e.detail>0?1:-1),this.zoom(-n*r,e)))},cropStart:function(e){var t=e.buttons,r=e.button;if(!(this.disabled||(e.type==="mousedown"||e.type==="pointerdown"&&e.pointerType==="mouse")&&(z(t)&&t!==1||z(r)&&r!==0||e.ctrlKey))){var n=this.options,s=this.pointers,a;e.changedTouches?bA(e.changedTouches,function(u){s[u.identifier]=dn(u)}):s[e.pointerId||0]=dn(e),Object.keys(s).length>1&&n.zoomable&&n.zoomOnTouch?a=Co:a=Ea(e.target,or),nm.test(a)&&Ft(this.element,ha,{originalEvent:e,action:a})!==!1&&(e.preventDefault(),this.action=a,this.cropping=!1,a===mo&&(this.cropping=!0,vA(this.dragBox,fn)))}},cropMove:function(e){var t=this.action;if(!(this.disabled||!t)){var r=this.pointers;e.preventDefault(),Ft(this.element,fa,{originalEvent:e,action:t})!==!1&&(e.changedTouches?bA(e.changedTouches,function(n){gA(r[n.identifier]||{},dn(n,!0))}):gA(r[e.pointerId||0]||{},dn(e,!0)),this.change(e))}},cropEnd:function(e){if(!this.disabled){var t=this.action,r=this.pointers;e.changedTouches?bA(e.changedTouches,function(n){delete r[n.identifier]}):delete r[e.pointerId||0],t&&(e.preventDefault(),Object.keys(r).length||(this.action=""),this.cropping&&(this.cropping=!1,Qt(this.dragBox,fn,this.cropped&&this.options.modal)),Ft(this.element,la,{originalEvent:e,action:t}))}}},vm={change:function(e){var t=this.options,r=this.canvasData,n=this.containerData,s=this.cropBoxData,a=this.pointers,u=this.action,o=t.aspectRatio,l=s.left,f=s.top,h=s.width,d=s.height,C=l+h,p=f+d,T=0,U=0,_=n.width,I=n.height,D=!0,k;!o&&e.shiftKey&&(o=h&&d?h/d:1),this.limited&&(T=s.minLeft,U=s.minTop,_=T+Math.min(n.width,r.width,r.left+r.width),I=U+Math.min(n.height,r.height,r.top+r.height));var x=a[Object.keys(a)[0]],m={x:x.endX-x.startX,y:x.endY-x.startY},H=function(M){switch(M){case st:C+m.x>_&&(m.x=_-C);break;case at:l+m.x<T&&(m.x=T-l);break;case Re:f+m.y<U&&(m.y=U-f);break;case Tt:p+m.y>I&&(m.y=I-p);break}};switch(u){case aa:l+=m.x,f+=m.y;break;case st:if(m.x>=0&&(C>=_||o&&(f<=U||p>=I))){D=!1;break}H(st),h+=m.x,h<0&&(u=at,h=-h,l-=h),o&&(d=h/o,f+=(s.height-d)/2);break;case Re:if(m.y<=0&&(f<=U||o&&(l<=T||C>=_))){D=!1;break}H(Re),d-=m.y,f+=m.y,d<0&&(u=Tt,d=-d,f-=d),o&&(h=d*o,l+=(s.width-h)/2);break;case at:if(m.x<=0&&(l<=T||o&&(f<=U||p>=I))){D=!1;break}H(at),h-=m.x,l+=m.x,h<0&&(u=st,h=-h,l-=h),o&&(d=h/o,f+=(s.height-d)/2);break;case Tt:if(m.y>=0&&(p>=I||o&&(l<=T||C>=_))){D=!1;break}H(Tt),d+=m.y,d<0&&(u=Re,d=-d,f-=d),o&&(h=d*o,l+=(s.width-h)/2);break;case sr:if(o){if(m.y<=0&&(f<=U||C>=_)){D=!1;break}H(Re),d-=m.y,f+=m.y,h=d*o}else H(Re),H(st),m.x>=0?C<_?h+=m.x:m.y<=0&&f<=U&&(D=!1):h+=m.x,m.y<=0?f>U&&(d-=m.y,f+=m.y):(d-=m.y,f+=m.y);h<0&&d<0?(u=ur,d=-d,h=-h,f-=d,l-=h):h<0?(u=ar,h=-h,l-=h):d<0&&(u=ir,d=-d,f-=d);break;case ar:if(o){if(m.y<=0&&(f<=U||l<=T)){D=!1;break}H(Re),d-=m.y,f+=m.y,h=d*o,l+=s.width-h}else H(Re),H(at),m.x<=0?l>T?(h-=m.x,l+=m.x):m.y<=0&&f<=U&&(D=!1):(h-=m.x,l+=m.x),m.y<=0?f>U&&(d-=m.y,f+=m.y):(d-=m.y,f+=m.y);h<0&&d<0?(u=ir,d=-d,h=-h,f-=d,l-=h):h<0?(u=sr,h=-h,l-=h):d<0&&(u=ur,d=-d,f-=d);break;case ur:if(o){if(m.x<=0&&(l<=T||p>=I)){D=!1;break}H(at),h-=m.x,l+=m.x,d=h/o}else H(Tt),H(at),m.x<=0?l>T?(h-=m.x,l+=m.x):m.y>=0&&p>=I&&(D=!1):(h-=m.x,l+=m.x),m.y>=0?p<I&&(d+=m.y):d+=m.y;h<0&&d<0?(u=sr,d=-d,h=-h,f-=d,l-=h):h<0?(u=ir,h=-h,l-=h):d<0&&(u=ar,d=-d,f-=d);break;case ir:if(o){if(m.x>=0&&(C>=_||p>=I)){D=!1;break}H(st),h+=m.x,d=h/o}else H(Tt),H(st),m.x>=0?C<_?h+=m.x:m.y>=0&&p>=I&&(D=!1):h+=m.x,m.y>=0?p<I&&(d+=m.y):d+=m.y;h<0&&d<0?(u=ar,d=-d,h=-h,f-=d,l-=h):h<0?(u=ur,h=-h,l-=h):d<0&&(u=sr,d=-d,f-=d);break;case po:this.move(m.x,m.y),D=!1;break;case Co:this.zoom(mm(a),e),D=!1;break;case mo:if(!m.x||!m.y){D=!1;break}k=ko(this.cropper),l=x.startX-k.left,f=x.startY-k.top,h=s.minWidth,d=s.minHeight,m.x>0?u=m.y>0?ir:sr:m.x<0&&(l-=h,u=m.y>0?ur:ar),m.y<0&&(f-=d),this.cropped||(pe(this.cropBox,qA),this.cropped=!0,this.limited&&this.limitCropBox(!0,!0));break}D&&(s.width=h,s.height=d,s.left=l,s.top=f,this.action=u,this.renderCropBox()),bA(a,function(P){P.startX=P.endX,P.startY=P.endY})}},Lm={crop:function(){return this.ready&&!this.cropped&&!this.disabled&&(this.cropped=!0,this.limitCropBox(!0,!0),this.options.modal&&vA(this.dragBox,fn),pe(this.cropBox,qA),this.setCropBoxData(this.initialCropBoxData)),this},reset:function(){return this.ready&&!this.disabled&&(this.imageData=gA({},this.initialImageData),this.canvasData=gA({},this.initialCanvasData),this.cropBoxData=gA({},this.initialCropBoxData),this.renderCanvas(),this.cropped&&this.renderCropBox()),this},clear:function(){return this.cropped&&!this.disabled&&(gA(this.cropBoxData,{left:0,top:0,width:0,height:0}),this.cropped=!1,this.renderCropBox(),this.limitCanvas(!0,!0),this.renderCanvas(),pe(this.dragBox,fn),vA(this.cropBox,qA)),this},replace:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return!this.disabled&&e&&(this.isImg&&(this.element.src=e),t?(this.url=e,this.image.src=e,this.ready&&(this.viewBoxImage.src=e,bA(this.previews,function(r){r.getElementsByTagName("img")[0].src=e}))):(this.isImg&&(this.replaced=!0),this.options.data=null,this.uncreate(),this.load(e))),this},enable:function(){return this.ready&&this.disabled&&(this.disabled=!1,pe(this.cropper,wo)),this},disable:function(){return this.ready&&!this.disabled&&(this.disabled=!0,vA(this.cropper,wo)),this},destroy:function(){var e=this.element;return e[BA]?(e[BA]=void 0,this.isImg&&this.replaced&&(e.src=this.originalUrl),this.uncreate(),this):this},move:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.canvasData,n=r.left,s=r.top;return this.moveTo(Ba(e)?e:n+Number(e),Ba(t)?t:s+Number(t))},moveTo:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.canvasData,n=!1;return e=Number(e),t=Number(t),this.ready&&!this.disabled&&this.options.movable&&(z(e)&&(r.left=e,n=!0),z(t)&&(r.top=t,n=!0),n&&this.renderCanvas(!0)),this},zoom:function(e,t){var r=this.canvasData;return e=Number(e),e<0?e=1/(1-e):e=1+e,this.zoomTo(r.width*e/r.naturalWidth,null,t)},zoomTo:function(e,t,r){var n=this.options,s=this.canvasData,a=s.width,u=s.height,o=s.naturalWidth,l=s.naturalHeight;if(e=Number(e),e>=0&&this.ready&&!this.disabled&&n.zoomable){var f=o*e,h=l*e;if(Ft(this.element,da,{ratio:e,oldRatio:a/o,originalEvent:r})===!1)return this;if(r){var d=this.pointers,C=ko(this.cropper),p=d&&Object.keys(d).length?pm(d):{pageX:r.pageX,pageY:r.pageY};s.left-=(f-a)*((p.pageX-C.left-s.left)/a),s.top-=(h-u)*((p.pageY-C.top-s.top)/u)}else bt(t)&&z(t.x)&&z(t.y)?(s.left-=(f-a)*((t.x-s.left)/a),s.top-=(h-u)*((t.y-s.top)/u)):(s.left-=(f-a)/2,s.top-=(h-u)/2);s.width=f,s.height=h,this.renderCanvas(!0)}return this},rotate:function(e){return this.rotateTo((this.imageData.rotate||0)+Number(e))},rotateTo:function(e){return e=Number(e),z(e)&&this.ready&&!this.disabled&&this.options.rotatable&&(this.imageData.rotate=e%360,this.renderCanvas(!0,!0)),this},scaleX:function(e){var t=this.imageData.scaleY;return this.scale(e,z(t)?t:1)},scaleY:function(e){var t=this.imageData.scaleX;return this.scale(z(t)?t:1,e)},scale:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e,r=this.imageData,n=!1;return e=Number(e),t=Number(t),this.ready&&!this.disabled&&this.options.scalable&&(z(e)&&(r.scaleX=e,n=!0),z(t)&&(r.scaleY=t,n=!0),n&&this.renderCanvas(!0,!0)),this},getData:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,t=this.options,r=this.imageData,n=this.canvasData,s=this.cropBoxData,a;if(this.ready&&this.cropped){a={x:s.left-n.left,y:s.top-n.top,width:s.width,height:s.height};var u=r.width/r.naturalWidth;if(bA(a,function(f,h){a[h]=f/u}),e){var o=Math.round(a.y+a.height),l=Math.round(a.x+a.width);a.x=Math.round(a.x),a.y=Math.round(a.y),a.width=l-a.x,a.height=o-a.y}}else a={x:0,y:0,width:0,height:0};return t.rotatable&&(a.rotate=r.rotate||0),t.scalable&&(a.scaleX=r.scaleX||1,a.scaleY=r.scaleY||1),a},setData:function(e){var t=this.options,r=this.imageData,n=this.canvasData,s={};if(this.ready&&!this.disabled&&bt(e)){var a=!1;t.rotatable&&z(e.rotate)&&e.rotate!==r.rotate&&(r.rotate=e.rotate,a=!0),t.scalable&&(z(e.scaleX)&&e.scaleX!==r.scaleX&&(r.scaleX=e.scaleX,a=!0),z(e.scaleY)&&e.scaleY!==r.scaleY&&(r.scaleY=e.scaleY,a=!0)),a&&this.renderCanvas(!0,!0);var u=r.width/r.naturalWidth;z(e.x)&&(s.left=e.x*u+n.left),z(e.y)&&(s.top=e.y*u+n.top),z(e.width)&&(s.width=e.width*u),z(e.height)&&(s.height=e.height*u),this.setCropBoxData(s)}return this},getContainerData:function(){return this.ready?gA({},this.containerData):{}},getImageData:function(){return this.sized?gA({},this.imageData):{}},getCanvasData:function(){var e=this.canvasData,t={};return this.ready&&bA(["left","top","width","height","naturalWidth","naturalHeight"],function(r){t[r]=e[r]}),t},setCanvasData:function(e){var t=this.canvasData,r=t.aspectRatio;return this.ready&&!this.disabled&&bt(e)&&(z(e.left)&&(t.left=e.left),z(e.top)&&(t.top=e.top),z(e.width)?(t.width=e.width,t.height=e.width/r):z(e.height)&&(t.height=e.height,t.width=e.height*r),this.renderCanvas(!0)),this},getCropBoxData:function(){var e=this.cropBoxData,t;return this.ready&&this.cropped&&(t={left:e.left,top:e.top,width:e.width,height:e.height}),t||{}},setCropBoxData:function(e){var t=this.cropBoxData,r=this.options.aspectRatio,n,s;return this.ready&&this.cropped&&!this.disabled&&bt(e)&&(z(e.left)&&(t.left=e.left),z(e.top)&&(t.top=e.top),z(e.width)&&e.width!==t.width&&(n=!0,t.width=e.width),z(e.height)&&e.height!==t.height&&(s=!0,t.height=e.height),r&&(n?t.height=t.width/r:s&&(t.width=t.height*r)),this.renderCropBox()),this},getCroppedCanvas:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!this.ready||!window.HTMLCanvasElement)return null;var t=this.canvasData,r=wm(this.image,this.imageData,t,e);if(!this.cropped)return r;var n=this.getData(e.rounded),s=n.x,a=n.y,u=n.width,o=n.height,l=r.width/Math.floor(t.naturalWidth);l!==1&&(s*=l,a*=l,u*=l,o*=l);var f=u/o,h=ke({aspectRatio:f,width:e.maxWidth||1/0,height:e.maxHeight||1/0}),d=ke({aspectRatio:f,width:e.minWidth||0,height:e.minHeight||0},"cover"),C=ke({aspectRatio:f,width:e.width||(l!==1?r.width:u),height:e.height||(l!==1?r.height:o)}),p=C.width,T=C.height;p=Math.min(h.width,Math.max(d.width,p)),T=Math.min(h.height,Math.max(d.height,T));var U=document.createElement("canvas"),_=U.getContext("2d");U.width=Ut(p),U.height=Ut(T),_.fillStyle=e.fillColor||"transparent",_.fillRect(0,0,p,T);var I=e.imageSmoothingEnabled,D=I===void 0?!0:I,k=e.imageSmoothingQuality;_.imageSmoothingEnabled=D,k&&(_.imageSmoothingQuality=k);var x=r.width,m=r.height,H=s,P=a,M,eA,uA,fA,J,rA;H<=-u||H>x?(H=0,M=0,uA=0,J=0):H<=0?(uA=-H,H=0,M=Math.min(x,u+H),J=M):H<=x&&(uA=0,M=Math.min(u,x-H),J=M),M<=0||P<=-o||P>m?(P=0,eA=0,fA=0,rA=0):P<=0?(fA=-P,P=0,eA=Math.min(m,o+P),rA=eA):P<=m&&(fA=0,eA=Math.min(o,m-P),rA=eA);var oA=[H,P,M,eA];if(J>0&&rA>0){var hA=p/u;oA.push(uA*hA,fA*hA,J*hA,rA*hA)}return _.drawImage.apply(_,[r].concat(Eo(oA.map(function(pA){return Math.floor(Ut(pA))})))),U},setAspectRatio:function(e){var t=this.options;return!this.disabled&&!Ba(e)&&(t.aspectRatio=Math.max(0,e)||NaN,this.ready&&(this.initCropBox(),this.cropped&&this.renderCropBox())),this},setDragMode:function(e){var t=this.options,r=this.dragBox,n=this.face;if(this.ready&&!this.disabled){var s=e===oa,a=t.movable&&e===bo;e=s||a?e:Uo,t.dragMode=e,cr(r,or,e),Qt(r,ia,s),Qt(r,ua,a),t.cropBoxMovable||(cr(n,or,e),Qt(n,ia,s),Qt(n,ua,a))}return this}},xm=me.Cropper,Go=function(){function A(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(WE(this,A),!e||!im.test(e.tagName))throw new Error("The first argument is required and must be an <img> or <canvas> element.");this.element=e,this.options=gA({},Ho,bt(t)&&t),this.cropped=!1,this.disabled=!1,this.pointers={},this.ready=!1,this.reloading=!1,this.replaced=!1,this.sized=!1,this.sizing=!1,this.init()}return JE(A,[{key:"init",value:function(){var t=this.element,r=t.tagName.toLowerCase(),n;if(!t[BA]){if(t[BA]=this,r==="img"){if(this.isImg=!0,n=t.getAttribute("src")||"",this.originalUrl=n,!n)return;n=t.src}else r==="canvas"&&window.HTMLCanvasElement&&(n=t.toDataURL());this.load(n)}}},{key:"load",value:function(t){var r=this;if(t){this.url=t,this.imageData={};var n=this.element,s=this.options;if(!s.rotatable&&!s.scalable&&(s.checkOrientation=!1),!s.checkOrientation||!window.ArrayBuffer){this.clone();return}if(sm.test(t)){am.test(t)?this.read(Um(t)):this.clone();return}var a=new XMLHttpRequest,u=this.clone.bind(this);this.reloading=!0,this.xhr=a,a.onabort=u,a.onerror=u,a.ontimeout=u,a.onprogress=function(){a.getResponseHeader("content-type")!==vo&&a.abort()},a.onload=function(){r.read(a.response)},a.onloadend=function(){r.reloading=!1,r.xhr=null},s.checkCrossOrigin&&Po(t)&&n.crossOrigin&&(t=Ko(t)),a.open("GET",t,!0),a.responseType="arraybuffer",a.withCredentials=n.crossOrigin==="use-credentials",a.send()}}},{key:"read",value:function(t){var r=this.options,n=this.imageData,s=Fm(t),a=0,u=1,o=1;if(s>1){this.url=Qm(t,vo);var l=Im(s);a=l.rotate,u=l.scaleX,o=l.scaleY}r.rotatable&&(n.rotate=a),r.scalable&&(n.scaleX=u,n.scaleY=o),this.clone()}},{key:"clone",value:function(){var t=this.element,r=this.url,n=t.crossOrigin,s=r;this.options.checkCrossOrigin&&Po(r)&&(n||(n="anonymous"),s=Ko(r)),this.crossOrigin=n,this.crossOriginUrl=s;var a=document.createElement("img");n&&(a.crossOrigin=n),a.src=s||r,a.alt=t.alt||"The image to crop",this.image=a,a.onload=this.start.bind(this),a.onerror=this.stop.bind(this),vA(a,To),t.parentNode.insertBefore(a,t.nextSibling)}},{key:"start",value:function(){var t=this,r=this.image;r.onload=null,r.onerror=null,this.sizing=!0;var n=me.navigator&&/(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(me.navigator.userAgent),s=function(l,f){gA(t.imageData,{naturalWidth:l,naturalHeight:f,aspectRatio:l/f}),t.initialImageData=gA({},t.imageData),t.sizing=!1,t.sized=!0,t.build()};if(r.naturalWidth&&!n){s(r.naturalWidth,r.naturalHeight);return}var a=document.createElement("img"),u=document.body||document.documentElement;this.sizingImage=a,a.onload=function(){s(a.width,a.height),n||u.removeChild(a)},a.src=r.src,n||(a.style.cssText="left:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:0;position:absolute;top:0;z-index:-1;",u.appendChild(a))}},{key:"stop",value:function(){var t=this.image;t.onload=null,t.onerror=null,t.parentNode.removeChild(t),this.image=null}},{key:"build",value:function(){if(!(!this.sized||this.ready)){var t=this.element,r=this.options,n=this.image,s=t.parentNode,a=document.createElement("div");a.innerHTML=um;var u=a.querySelector(".".concat(BA,"-container")),o=u.querySelector(".".concat(BA,"-canvas")),l=u.querySelector(".".concat(BA,"-drag-box")),f=u.querySelector(".".concat(BA,"-crop-box")),h=f.querySelector(".".concat(BA,"-face"));this.container=s,this.cropper=u,this.canvas=o,this.dragBox=l,this.cropBox=f,this.viewBox=u.querySelector(".".concat(BA,"-view-box")),this.face=h,o.appendChild(n),vA(t,qA),s.insertBefore(u,t.nextSibling),pe(n,To),this.initPreview(),this.bind(),r.initialAspectRatio=Math.max(0,r.initialAspectRatio)||NaN,r.aspectRatio=Math.max(0,r.aspectRatio)||NaN,r.viewMode=Math.max(0,Math.min(3,Math.round(r.viewMode)))||0,vA(f,qA),r.guides||vA(f.getElementsByClassName("".concat(BA,"-dashed")),qA),r.center||vA(f.getElementsByClassName("".concat(BA,"-center")),qA),r.background&&vA(u,"".concat(BA,"-bg")),r.highlight||vA(h,Am),r.cropBoxMovable&&(vA(h,ua),cr(h,or,aa)),r.cropBoxResizable||(vA(f.getElementsByClassName("".concat(BA,"-line")),qA),vA(f.getElementsByClassName("".concat(BA,"-point")),qA)),this.render(),this.ready=!0,this.setDragMode(r.dragMode),r.autoCrop&&this.crop(),this.setData(r.data),jA(r.ready)&&se(t,yo,r.ready,{once:!0}),Ft(t,yo)}}},{key:"unbuild",value:function(){if(this.ready){this.ready=!1,this.unbind(),this.resetPreview();var t=this.cropper.parentNode;t&&t.removeChild(this.cropper),pe(this.element,qA)}}},{key:"uncreate",value:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}],[{key:"noConflict",value:function(){return window.Cropper=xm,A}},{key:"setDefaults",value:function(t){gA(Ho,bt(t)&&t)}}])}();gA(Go.prototype,_m,ym,Nm,Sm,vm,Lm);function Hm(A,e){const t=A.split(",")||[],r=t[0].match(/:(.*?);/)[1],n=t[1]&&atob(t[1]);let s=n&&n.length;const a=new Uint8Array(s);for(;s--;)a[s]=n==null?void 0:n.charCodeAt(s);return new File([a],e,{type:r})}const Dm={key:0,contenteditable:"false",class:"z-10 w-[100vw] h-[100vh] bg-[rgba(0,0,0,0.7)] flex flex-col justify-center items-center fixed top-0 left-0 cursor-auto"},Om={class:"w-[700px] flex flex-col bg-white rounded pb-8"},Rm={class:"flex flex-row items-center justify-between px-6 py-4 bg-[#f4f8ff]"},Mm={class:"flex flex-col h-full"},km={class:"flex flex-row justify-center items-start flex-1"},Pm={class:"flex flex-col items-start flex-1"},Km={class:"flex flex-col w-full px-6 py-4"},Vm={class:"flex flex-col w-full"},Gm={class:"flex flex-row items-center"},Ym={class:"relative bg-[#474AFF] text-white rounded p-3"},Xm={class:"flex flex-row items-start justify-between mt-3"},Wm={class:"flex flex-col"},Jm={class:"flex flex-col justify-center items-center border w-[300px] h-[300px]"},qm={key:0,class:"w-full text-center"},jm=["src"],$m={class:"flex flex-col items-center",style:{width:"300px",height:"300px"}},Zm={class:"text-[#999] mt-05 flex justify-center mt-4"},zm={class:"w-full flex justify-end space-x-5 mt-5 px-6"},Ap=["loading"],ep=c.defineComponent({__name:"GpCropper",emits:["cancel","ok"],setup(A,{expose:e,emit:t}){const r=t,n=c.ref({coverUrl:"",inputValue:"",uploadType:2,videoHost:"",videoUrl:""}),s=c.ref(),a=c.ref({autoCrop:!0,autoCropArea:1,background:!0,center:!0,cropBoxResizable:!0,dragMode:"move",preview:".before",toggleDragModeOnDblclick:!0,viewMode:1,zoomOnWheel:!0}),u=c.ref(!1),o=c.ref("image/jpeg"),l=c.ref({afterImg:"",image:null,myCropper:null}),f=x=>{const m=x.target.files[0];m&&(m.name&&(n.value.inputValue=m.name),h(m))};async function h(x){if(!x)return;await k();const m=URL.createObjectURL(x);l.value.image=m,l.value.image&&d(),o.value=x.type}function d(){const x=document.querySelector("#imgId");x&&x.addEventListener("load",()=>{D(),l.value.myCropper=new Go(x,a.value)})}const C=c.ref(!1),p=c.ref();function T(x,m,H,P){p.value=P,s.value=x,x&&x.aspectRatio&&(a.value.aspectRatio=x.aspectRatio),H&&(n.value.inputValue=H),C.value=!0,m&&h(m)}function U(){C.value=!1}const _=()=>{var P,M;if(!l.value.myCropper)return;u.value=!0;var m=l.value.myCropper.getCroppedCanvas({height:(P=s.value)==null?void 0:P.height,imageSmoothingQuality:"high",width:(M=s.value)==null?void 0:M.width}).toDataURL(o.value);l.value.afterImg=m;const H=Hm(l.value.afterImg,n.value.inputValue);r("ok",{file:H,element:p.value}),u.value=!1,k(),D(),U()};function I(){k(),D(),U(),r("cancel")}function D(){l.value.myCropper&&l.value.myCropper.destroy()}function k(){l.value.image=""}return e({handleCloseCropper:U,handleOpenCropper:T}),(x,m)=>{var H,P,M;return C.value?(c.openBlock(),c.createElementBlock("div",Dm,[c.createElementVNode("div",Om,[c.createElementVNode("div",Rm,[m[1]||(m[1]=c.createElementVNode("span",{class:"text-base font-semibold text-[#333]"},"图片裁剪",-1)),c.createElementVNode("span",{class:"text-lg cursor-pointer text-[#999] iconfont icon-shanchu2",onClick:c.withModifiers(I,["stop"])})]),c.createElementVNode("div",Mm,[c.createElementVNode("div",km,[c.createElementVNode("div",Pm,[c.createElementVNode("div",Km,[c.createElementVNode("div",Vm,[c.createElementVNode("div",Gm,[c.createElementVNode("div",Ym,[c.createElementVNode("input",{type:"file",accept:"image/*",onClick:m[0]||(m[0]=c.withModifiers(()=>{},["stop"])),contenteditable:"false",ref:"fileInput",onChange:f,class:"absolute top-0 left-0 w-[110px] h-[40px] opacity-0 cursor-pointer"},null,544),m[2]||(m[2]=c.createElementVNode("span",{id:"uploadHandler",class:"cursor-pointer"}," 选择/更换图片 ",-1))]),m[3]||(m[3]=c.createElementVNode("span",{class:"text-sm text-[#999] ml-3"},"滚动鼠标放大或缩小图片",-1))]),c.createElementVNode("div",Xm,[c.createElementVNode("div",Wm,[c.createElementVNode("div",Jm,[l.value.image?c.createCommentVNode("",!0):(c.openBlock(),c.createElementBlock("div",qm," 请上传图片 ")),c.createElementVNode("img",{id:"imgId",src:l.value.image,style:{width:"300px"}},null,8,jm)])]),c.createElementVNode("div",$m,[m[4]||(m[4]=c.createElementVNode("div",{class:"before w-[270px] h-[200px] pr-[70px] border"},null,-1)),c.createElementVNode("div",Zm," 预览画像 "+c.toDisplayString(((H=s.value)==null?void 0:H.width)||"")+" "+c.toDisplayString((P=s.value)!=null&&P.width?"x":"")+" "+c.toDisplayString(((M=s.value)==null?void 0:M.height)||""),1)])])])])])]),c.createElementVNode("div",zm,[c.createElementVNode("span",{loading:u.value,class:"!w-22 bg-[#474AFF] text-white rounded py-2 px-6 cursor-pointer",type:"primary",onClick:_}," 确认 ",8,Ap),c.createElementVNode("span",{class:"!w-22 border border-[#DEDEDE] text-[#666] rounded py-2 px-6 cursor-pointer",onClick:I},"取消")])])])])):c.createCommentVNode("",!0)}}}),tp=c.defineComponent({name:"GpModal",props:{visible:{type:Boolean,required:!0},title:{type:String,default:""},okText:{type:String,default:"确定"},cancelText:{type:String,default:"取消"},showOkButton:{type:Boolean,default:!0},showCancelButton:{type:Boolean,default:!0},showCloseButton:{type:Boolean,default:!0}},emits:["update:visible","ok","cancel"],setup(A,{emit:e}){const{visible:t,okText:r,cancelText:n,showCloseButton:s}=c.toRefs(A);return{visible:t,okText:r,cancelText:n,showCloseButton:s,onClose:()=>{e("cancel"),e("update:visible",!1)},onOk:()=>{e("ok"),e("update:visible",!1)},onCancel:()=>{e("cancel"),e("update:visible",!1)}}}}),rp={class:"bg-white rounded-lg shadow-xl w-ful"},np={class:"p-4 border-b border-gray-200 relative flex items-center justify-between"},sp={key:0,class:"text-lg font-semibold"},ap={class:"p-4"},ip={key:0,class:"p-4 border-t border-gray-200 flex justify-end space-x-2"};function up(A,e,t,r,n,s){return A.visible?(c.openBlock(),c.createElementBlock("div",{key:0,class:"fixed inset-0 z-[99999] flex items-center justify-center bg-gray-900 bg-opacity-50",onClick:e[3]||(e[3]=c.withModifiers((...a)=>A.onClose&&A.onClose(...a),["self"]))},[c.createElementVNode("div",rp,[c.createElementVNode("div",np,[A.title?(c.openBlock(),c.createElementBlock("h3",sp,c.toDisplayString(A.title),1)):c.createCommentVNode("",!0),c.renderSlot(A.$slots,"header"),A.showCloseButton?(c.openBlock(),c.createElementBlock("button",{key:1,class:"text-gray-400 hover:text-gray-600",onClick:e[0]||(e[0]=(...a)=>A.onClose&&A.onClose(...a)),"aria-label":"Close"},e[4]||(e[4]=[c.createElementVNode("svg",{xmlns:"http://www.w3.org/2000/svg",class:"h-5 w-5",viewBox:"0 0 20 20",fill:"currentColor"},[c.createElementVNode("path",{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"})],-1)]))):c.createCommentVNode("",!0)]),c.createElementVNode("div",ap,[c.renderSlot(A.$slots,"default")]),A.showCancelButton||A.showOkButton?(c.openBlock(),c.createElementBlock("div",ip,[c.renderSlot(A.$slots,"footer",{},()=>[A.showCancelButton?(c.openBlock(),c.createElementBlock("button",{key:0,class:"px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded hover:bg-gray-200",onClick:e[1]||(e[1]=(...a)=>A.onCancel&&A.onCancel(...a))},c.toDisplayString(A.cancelText),1)):c.createCommentVNode("",!0),A.showOkButton?(c.openBlock(),c.createElementBlock("button",{key:1,class:"px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded hover:bg-blue-700",onClick:e[2]||(e[2]=(...a)=>A.onOk&&A.onOk(...a))},c.toDisplayString(A.okText),1)):c.createCommentVNode("",!0)])])):c.createCommentVNode("",!0)])])):c.createCommentVNode("",!0)}const op=Oe(tp,[["render",up]]),cp={class:"p-4 flex flex-wrap max-h-[500px] overflow-y-auto w-[640px]"},lp=["onClick"],fp=c.defineComponent({__name:"GpIcon",props:{icons:{type:Array,default:()=>[]}},emits:["ok"],setup(A,{expose:e,emit:t}){const r=A,n=t,s=c.ref(r.icons||[]);c.watch(()=>r.icons,h=>{s.value=h||[]},{immediate:!0});const a=c.ref(!1),u=c.ref();function o(h){a.value=!0,u.value=h}function l(h){f(),n("ok",{icon:h,element:u.value})}function f(){a.value=!1}return e({openModal:o,closeModal:f}),(h,d)=>(c.openBlock(),c.createBlock(op,{visible:a.value,"onUpdate:visible":d[0]||(d[0]=C=>a.value=C),title:"选择图标",onOk:f,onCancel:f,showCancelButton:!1,showOkButton:!1},{default:c.withCtx(()=>[c.createElementVNode("div",cp,[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(s.value,C=>(c.openBlock(),c.createElementBlock("span",{key:C,onClick:c.withModifiers(p=>l(C),["stop"]),style:{position:"unset",color:"unset",top:"unset",left:"unset",right:"unset",transform:"unset","font-size":"unset"},class:c.normalizeClass(["w-12 h-12 mx-1 mb-2 border cursor-pointer hover:border-gray-400 hover:bg-gray-200",`iconfont icon-${C} text-4xl overflow-hidden flex justify-center items-center`])},null,10,lp))),128))])]),_:1},8,["visible"]))}}),hp=c.defineComponent({name:"GpImageUpload",props:{accept:{type:String,default:"image/*"},multiple:{type:Boolean,default:!1},maxCount:{type:Number,default:1/0},beforeUpload:Function,onChange:Function,showList:{type:Boolean,default:!1},show:{type:Boolean,default:!0}},setup(A,{emit:e}){const t=c.ref(null),r=c.ref([]),n=c.ref(),s=c.ref(A.show);c.watch(()=>A.show,f=>{s.value=f},{immediate:!0});const a=()=>{var f;(f=t.value)==null||f.click()},u=async f=>{var p;const d=f.target.files;if(!d)return;const C=[];for(let T=0;T<d.length;T++){const U=d[T];if(A.beforeUpload&&await A.beforeUpload(U)===!1)continue;const _=`${Date.now()}-${U.name}`,I=URL.createObjectURL(U),D=document.createElement("img");D.src=I,document.body.appendChild(D),await new Promise(m=>{D.onload=m});const k=D.width,x=D.height;document.body.removeChild(D),C.push({uid:_,name:U.name,status:"uploading",thumbUrl:I,file:U,width:k,height:x})}A.maxCount&&r.value.length+C.length>A.maxCount&&C.splice(A.maxCount-r.value.length),A.multiple?r.value=[...r.value,...C]:r.value=C.slice(0,1),(p=A.onChange)==null||p.call(A,r.value,n.value),e("update:fileList",r.value),t.value&&(t.value.value="")},o=f=>{var h;r.value=r.value.filter(d=>d.uid!==f),(h=A.onChange)==null||h.call(A,r.value,n.value)};function l(f){n.value=f,a()}return{isShow:s,openModal:l,inputRef:t,fileList:r,triggerInput:a,handleChange:u,removeFile:o}}}),dp={class:"upload-wrapper"},Bp=["accept","multiple"],gp={key:1,class:"file-list mt-4"},Ep={class:"flex items-center space-x-4"},mp=["src"],pp=["onClick"];function Cp(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",dp,[A.isShow?(c.openBlock(),c.createElementBlock("div",{key:0,class:"",onClick:e[0]||(e[0]=(...a)=>A.triggerInput&&A.triggerInput(...a))},[c.renderSlot(A.$slots,"upload-icon",{},()=>[e[2]||(e[2]=c.createElementVNode("div",{class:"upload-area border-dashed border-2 p-6 rounded cursor-pointer hover:border-blue-500"},[c.createElementVNode("div",{class:"text-gray-400 text-lg text-center"}," 点击或拖拽上传图片 ")],-1))],!0)])):c.createCommentVNode("",!0),c.createElementVNode("input",{type:"file",ref:"inputRef",class:"hidden",accept:A.accept,multiple:A.multiple,onChange:e[1]||(e[1]=(...a)=>A.handleChange&&A.handleChange(...a))},null,40,Bp),A.showList?(c.openBlock(),c.createElementBlock("div",gp,[(c.openBlock(!0),c.createElementBlock(c.Fragment,null,c.renderList(A.fileList,a=>(c.openBlock(),c.createElementBlock("div",{key:a.uid,class:"file-item flex items-center justify-between p-2 border rounded mb-2"},[c.createElementVNode("div",Ep,[a.thumbUrl?(c.openBlock(),c.createElementBlock("img",{key:0,src:a.thumbUrl,alt:"preview",class:"w-12 h-12 object-cover rounded"},null,8,mp)):c.createCommentVNode("",!0),c.createElementVNode("span",null,c.toDisplayString(a.name),1)]),c.createElementVNode("div",null,[c.createElementVNode("button",{onClick:u=>A.removeFile(a.uid),class:"text-red-500 hover:underline"}," 删除 ",8,pp)])]))),128))])):c.createCommentVNode("",!0)])}const wp=Oe(hp,[["render",Cp],["__scopeId","data-v-08babff9"]]);/*!
19
19
  * html2canvas 1.4.1 <https://html2canvas.hertzen.com>
20
20
  * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>
21
21
  * Released under MIT License
@@ -32,8 +32,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
32
32
  LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
33
33
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34
34
  PERFORMANCE OF THIS SOFTWARE.
35
- ***************************************************************************** */var ma=function(A,e){return ma=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])},ma(A,e)};function fe(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");ma(A,e);function t(){this.constructor=A}A.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var pa=function(){return pa=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},pa.apply(this,arguments)};function KA(A,e,t,r){function n(s){return s instanceof t?s:new t(function(a){a(s)})}return new(t||(t=Promise))(function(s,a){function u(f){try{l(r.next(f))}catch(h){a(h)}}function o(f){try{l(r.throw(f))}catch(h){a(h)}}function l(f){f.done?s(f.value):n(f.value).then(u,o)}l((r=r.apply(A,[])).next())})}function MA(A,e){var t={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},r,n,s,a;return a={next:u(0),throw:u(1),return:u(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function u(l){return function(f){return o([l,f])}}function o(l){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,n&&(s=l[0]&2?n.return:l[0]?n.throw||((s=n.return)&&s.call(n),0):n.next)&&!(s=s.call(n,l[1])).done)return s;switch(n=0,s&&(l=[l[0]&2,s.value]),l[0]){case 0:case 1:s=l;break;case 4:return t.label++,{value:l[1],done:!1};case 5:t.label++,n=l[1],l=[0];continue;case 7:l=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!s||l[1]>s[0]&&l[1]<s[3])){t.label=l[1];break}if(l[0]===6&&t.label<s[1]){t.label=s[1],s=l;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(l);break}s[2]&&t.ops.pop(),t.trys.pop();continue}l=e.call(A,t)}catch(f){l=[6,f],n=0}finally{r=s=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}}function Bn(A,e,t){if(arguments.length===2)for(var r=0,n=e.length,s;r<n;r++)(s||!(r in e))&&(s||(s=Array.prototype.slice.call(e,0,r)),s[r]=e[r]);return A.concat(s||e)}for(var Fe=function(){function A(e,t,r,n){this.left=e,this.top=t,this.width=r,this.height=n}return A.prototype.add=function(e,t,r,n){return new A(this.left+e,this.top+t,this.width+r,this.height+n)},A.fromClientRect=function(e,t){return new A(t.left+e.windowBounds.left,t.top+e.windowBounds.top,t.width,t.height)},A.fromDOMRectList=function(e,t){var r=Array.from(t).find(function(n){return n.width!==0});return r?new A(r.left+e.windowBounds.left,r.top+e.windowBounds.top,r.width,r.height):A.EMPTY},A.EMPTY=new A(0,0,0,0),A}(),gn=function(A,e){return Fe.fromClientRect(A,e.getBoundingClientRect())},Tp=function(A){var e=A.body,t=A.documentElement;if(!e||!t)throw new Error("Unable to get document size");var r=Math.max(Math.max(e.scrollWidth,t.scrollWidth),Math.max(e.offsetWidth,t.offsetWidth),Math.max(e.clientWidth,t.clientWidth)),n=Math.max(Math.max(e.scrollHeight,t.scrollHeight),Math.max(e.offsetHeight,t.offsetHeight),Math.max(e.clientHeight,t.clientHeight));return new Fe(0,0,r,n)},En=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},pA=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var a=A[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},Go="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bp=typeof Uint8Array>"u"?[]:new Uint8Array(256),mn=0;mn<Go.length;mn++)bp[Go.charCodeAt(mn)]=mn;for(var Yo="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",lr=typeof Uint8Array>"u"?[]:new Uint8Array(256),pn=0;pn<Yo.length;pn++)lr[Yo.charCodeAt(pn)]=pn;for(var Up=function(A){var e=A.length*.75,t=A.length,r,n=0,s,a,u,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var l=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),f=Array.isArray(l)?l:new Uint8Array(l);for(r=0;r<t;r+=4)s=lr[A.charCodeAt(r)],a=lr[A.charCodeAt(r+1)],u=lr[A.charCodeAt(r+2)],o=lr[A.charCodeAt(r+3)],f[n++]=s<<2|a>>4,f[n++]=(a&15)<<4|u>>2,f[n++]=(u&3)<<6|o&63;return l},Qp=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},Fp=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},at=5,Ca=11,wa=2,Ip=Ca-at,Xo=65536>>at,_p=1<<at,Ta=_p-1,yp=1024>>at,Np=Xo+yp,Sp=Np,vp=32,Lp=Sp+vp,xp=65536>>Ca,Hp=1<<Ip,Dp=Hp-1,Wo=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Op=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},Rp=function(A,e){var t=Up(A),r=Array.isArray(t)?Fp(t):new Uint32Array(t),n=Array.isArray(t)?Qp(t):new Uint16Array(t),s=24,a=Wo(n,s/2,r[4]/2),u=r[5]===2?Wo(n,(s+r[4])/2):Op(r,Math.ceil((s+r[4])/4));return new Mp(r[0],r[1],r[2],r[3],a,u)},Mp=function(){function A(e,t,r,n,s,a){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=a}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>at],t=(t<<wa)+(e&Ta),this.data[t];if(e<=65535)return t=this.index[Xo+(e-55296>>at)],t=(t<<wa)+(e&Ta),this.data[t];if(e<this.highStart)return t=Lp-xp+(e>>Ca),t=this.index[t],t+=e>>at&Dp,t=this.index[t],t=(t<<wa)+(e&Ta),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Jo="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",kp=typeof Uint8Array>"u"?[]:new Uint8Array(256),Cn=0;Cn<Jo.length;Cn++)kp[Jo.charCodeAt(Cn)]=Cn;var Pp="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==",qo=50,Kp=1,jo=2,$o=3,Vp=4,Gp=5,Zo=7,zo=8,Ac=9,Pe=10,ba=11,ec=12,Ua=13,Yp=14,fr=15,Qa=16,wn=17,hr=18,Xp=19,tc=20,Fa=21,dr=22,Ia=23,Ft=24,zA=25,Br=26,gr=27,It=28,Wp=29,it=30,Jp=31,Tn=32,bn=33,_a=34,ya=35,Na=36,Er=37,Sa=38,Un=39,Qn=40,va=41,rc=42,qp=43,jp=[9001,65288],nc="!",AA="×",Fn="÷",La=Rp(Pp),Ie=[it,Na],xa=[Kp,jo,$o,Gp],sc=[Pe,zo],ac=[gr,Br],$p=xa.concat(sc),ic=[Sa,Un,Qn,_a,ya],Zp=[fr,Ua],zp=function(A,e){e===void 0&&(e="strict");var t=[],r=[],n=[];return A.forEach(function(s,a){var u=La.get(s);if(u>qo?(n.push(!0),u-=qo):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return r.push(a),t.push(Qa);if(u===Vp||u===ba){if(a===0)return r.push(a),t.push(it);var o=t[a-1];return $p.indexOf(o)===-1?(r.push(r[a-1]),t.push(o)):(r.push(a),t.push(it))}if(r.push(a),u===Jp)return t.push(e==="strict"?Fa:Er);if(u===rc||u===Wp)return t.push(it);if(u===qp)return s>=131072&&s<=196605||s>=196608&&s<=262141?t.push(Er):t.push(it);t.push(u)}),[r,t,n]},Ha=function(A,e,t,r){var n=r[t];if(Array.isArray(A)?A.indexOf(n)!==-1:A===n)for(var s=t;s<=r.length;){s++;var a=r[s];if(a===e)return!0;if(a!==Pe)break}if(n===Pe)for(var s=t;s>0;){s--;var u=r[s];if(Array.isArray(A)?A.indexOf(u)!==-1:A===u)for(var o=t;o<=r.length;){o++;var a=r[o];if(a===e)return!0;if(a!==Pe)break}if(u!==Pe)break}return!1},uc=function(A,e){for(var t=A;t>=0;){var r=e[t];if(r===Pe)t--;else return r}return 0},AC=function(A,e,t,r,n){if(t[r]===0)return AA;var s=r-1;if(Array.isArray(n)&&n[s]===!0)return AA;var a=s-1,u=s+1,o=e[s],l=a>=0?e[a]:0,f=e[u];if(o===jo&&f===$o)return AA;if(xa.indexOf(o)!==-1)return nc;if(xa.indexOf(f)!==-1||sc.indexOf(f)!==-1)return AA;if(uc(s,e)===zo)return Fn;if(La.get(A[s])===ba||(o===Tn||o===bn)&&La.get(A[u])===ba||o===Zo||f===Zo||o===Ac||[Pe,Ua,fr].indexOf(o)===-1&&f===Ac||[wn,hr,Xp,Ft,It].indexOf(f)!==-1||uc(s,e)===dr||Ha(Ia,dr,s,e)||Ha([wn,hr],Fa,s,e)||Ha(ec,ec,s,e))return AA;if(o===Pe)return Fn;if(o===Ia||f===Ia)return AA;if(f===Qa||o===Qa)return Fn;if([Ua,fr,Fa].indexOf(f)!==-1||o===Yp||l===Na&&Zp.indexOf(o)!==-1||o===It&&f===Na||f===tc||Ie.indexOf(f)!==-1&&o===zA||Ie.indexOf(o)!==-1&&f===zA||o===gr&&[Er,Tn,bn].indexOf(f)!==-1||[Er,Tn,bn].indexOf(o)!==-1&&f===Br||Ie.indexOf(o)!==-1&&ac.indexOf(f)!==-1||ac.indexOf(o)!==-1&&Ie.indexOf(f)!==-1||[gr,Br].indexOf(o)!==-1&&(f===zA||[dr,fr].indexOf(f)!==-1&&e[u+1]===zA)||[dr,fr].indexOf(o)!==-1&&f===zA||o===zA&&[zA,It,Ft].indexOf(f)!==-1)return AA;if([zA,It,Ft,wn,hr].indexOf(f)!==-1)for(var h=s;h>=0;){var d=e[h];if(d===zA)return AA;if([It,Ft].indexOf(d)!==-1)h--;else break}if([gr,Br].indexOf(f)!==-1)for(var h=[wn,hr].indexOf(o)!==-1?a:s;h>=0;){var d=e[h];if(d===zA)return AA;if([It,Ft].indexOf(d)!==-1)h--;else break}if(Sa===o&&[Sa,Un,_a,ya].indexOf(f)!==-1||[Un,_a].indexOf(o)!==-1&&[Un,Qn].indexOf(f)!==-1||[Qn,ya].indexOf(o)!==-1&&f===Qn||ic.indexOf(o)!==-1&&[tc,Br].indexOf(f)!==-1||ic.indexOf(f)!==-1&&o===gr||Ie.indexOf(o)!==-1&&Ie.indexOf(f)!==-1||o===Ft&&Ie.indexOf(f)!==-1||Ie.concat(zA).indexOf(o)!==-1&&f===dr&&jp.indexOf(A[u])===-1||Ie.concat(zA).indexOf(f)!==-1&&o===hr)return AA;if(o===va&&f===va){for(var C=t[s],p=1;C>0&&(C--,e[C]===va);)p++;if(p%2!==0)return AA}return o===Tn&&f===bn?AA:Fn},eC=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=zp(A,e.lineBreak),r=t[0],n=t[1],s=t[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(n=n.map(function(u){return[zA,it,rc].indexOf(u)!==-1?Er:u}));var a=e.wordBreak==="keep-all"?s.map(function(u,o){return u&&A[o]>=19968&&A[o]<=40959}):void 0;return[r,n,a]},tC=function(){function A(e,t,r,n){this.codePoints=e,this.required=t===nc,this.start=r,this.end=n}return A.prototype.slice=function(){return pA.apply(void 0,this.codePoints.slice(this.start,this.end))},A}(),rC=function(A,e){var t=En(A),r=eC(t,e),n=r[0],s=r[1],a=r[2],u=t.length,o=0,l=0;return{next:function(){if(l>=u)return{done:!0,value:null};for(var f=AA;l<u&&(f=AC(t,s,n,++l,a))===AA;);if(f!==AA||l===u){var h=new tC(t,f,o,l);return o=l,{value:h,done:!1}}return{done:!0,value:null}}}},nC=1,sC=2,mr=4,oc=8,In=10,cc=47,pr=92,aC=9,iC=32,_n=34,Cr=61,uC=35,oC=36,cC=37,yn=39,Nn=40,wr=41,lC=95,qA=45,fC=33,hC=60,dC=62,BC=64,gC=91,EC=93,mC=61,pC=123,Sn=63,CC=125,lc=124,wC=126,TC=128,fc=65533,Da=42,ut=43,bC=44,UC=58,QC=59,Tr=46,FC=0,IC=8,_C=11,yC=14,NC=31,SC=127,pe=-1,hc=48,dc=97,Bc=101,vC=102,LC=117,xC=122,gc=65,Ec=69,mc=70,HC=85,DC=90,kA=function(A){return A>=hc&&A<=57},OC=function(A){return A>=55296&&A<=57343},_t=function(A){return kA(A)||A>=gc&&A<=mc||A>=dc&&A<=vC},RC=function(A){return A>=dc&&A<=xC},MC=function(A){return A>=gc&&A<=DC},kC=function(A){return RC(A)||MC(A)},PC=function(A){return A>=TC},vn=function(A){return A===In||A===aC||A===iC},Ln=function(A){return kC(A)||PC(A)||A===lC},pc=function(A){return Ln(A)||kA(A)||A===qA},KC=function(A){return A>=FC&&A<=IC||A===_C||A>=yC&&A<=NC||A===SC},Ke=function(A,e){return A!==pr?!1:e!==In},xn=function(A,e,t){return A===qA?Ln(e)||Ke(e,t):Ln(A)?!0:!!(A===pr&&Ke(A,e))},Oa=function(A,e,t){return A===ut||A===qA?kA(e)?!0:e===Tr&&kA(t):kA(A===Tr?e:A)},VC=function(A){var e=0,t=1;(A[e]===ut||A[e]===qA)&&(A[e]===qA&&(t=-1),e++);for(var r=[];kA(A[e]);)r.push(A[e++]);var n=r.length?parseInt(pA.apply(void 0,r),10):0;A[e]===Tr&&e++;for(var s=[];kA(A[e]);)s.push(A[e++]);var a=s.length,u=a?parseInt(pA.apply(void 0,s),10):0;(A[e]===Ec||A[e]===Bc)&&e++;var o=1;(A[e]===ut||A[e]===qA)&&(A[e]===qA&&(o=-1),e++);for(var l=[];kA(A[e]);)l.push(A[e++]);var f=l.length?parseInt(pA.apply(void 0,l),10):0;return t*(n+u*Math.pow(10,-a))*Math.pow(10,o*f)},GC={type:2},YC={type:3},XC={type:4},WC={type:13},JC={type:8},qC={type:21},jC={type:9},$C={type:10},ZC={type:11},zC={type:12},A1={type:14},Hn={type:23},e1={type:1},t1={type:25},r1={type:24},n1={type:26},s1={type:27},a1={type:28},i1={type:29},u1={type:31},Ra={type:32},Cc=function(){function A(){this._value=[]}return A.prototype.write=function(e){this._value=this._value.concat(En(e))},A.prototype.read=function(){for(var e=[],t=this.consumeToken();t!==Ra;)e.push(t),t=this.consumeToken();return e},A.prototype.consumeToken=function(){var e=this.consumeCodePoint();switch(e){case _n:return this.consumeStringToken(_n);case uC:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(pc(t)||Ke(r,n)){var s=xn(t,r,n)?sC:nC,a=this.consumeName();return{type:5,value:a,flags:s}}break;case oC:if(this.peekCodePoint(0)===Cr)return this.consumeCodePoint(),WC;break;case yn:return this.consumeStringToken(yn);case Nn:return GC;case wr:return YC;case Da:if(this.peekCodePoint(0)===Cr)return this.consumeCodePoint(),A1;break;case ut:if(Oa(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case bC:return XC;case qA:var u=e,o=this.peekCodePoint(0),l=this.peekCodePoint(1);if(Oa(u,o,l))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(xn(u,o,l))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(o===qA&&l===dC)return this.consumeCodePoint(),this.consumeCodePoint(),r1;break;case Tr:if(Oa(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case cc:if(this.peekCodePoint(0)===Da)for(this.consumeCodePoint();;){var f=this.consumeCodePoint();if(f===Da&&(f=this.consumeCodePoint(),f===cc))return this.consumeToken();if(f===pe)return this.consumeToken()}break;case UC:return n1;case QC:return s1;case hC:if(this.peekCodePoint(0)===fC&&this.peekCodePoint(1)===qA&&this.peekCodePoint(2)===qA)return this.consumeCodePoint(),this.consumeCodePoint(),t1;break;case BC:var h=this.peekCodePoint(0),d=this.peekCodePoint(1),C=this.peekCodePoint(2);if(xn(h,d,C)){var a=this.consumeName();return{type:7,value:a}}break;case gC:return a1;case pr:if(Ke(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case EC:return i1;case mC:if(this.peekCodePoint(0)===Cr)return this.consumeCodePoint(),JC;break;case pC:return ZC;case CC:return zC;case LC:case HC:var p=this.peekCodePoint(0),T=this.peekCodePoint(1);return p===ut&&(_t(T)||T===Sn)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case lc:if(this.peekCodePoint(0)===Cr)return this.consumeCodePoint(),jC;if(this.peekCodePoint(0)===lc)return this.consumeCodePoint(),qC;break;case wC:if(this.peekCodePoint(0)===Cr)return this.consumeCodePoint(),$C;break;case pe:return Ra}return vn(e)?(this.consumeWhiteSpace(),u1):kA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Ln(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:pA(e)}},A.prototype.consumeCodePoint=function(){var e=this._value.shift();return typeof e>"u"?-1:e},A.prototype.reconsumeCodePoint=function(e){this._value.unshift(e)},A.prototype.peekCodePoint=function(e){return e>=this._value.length?-1:this._value[e]},A.prototype.consumeUnicodeRangeToken=function(){for(var e=[],t=this.consumeCodePoint();_t(t)&&e.length<6;)e.push(t),t=this.consumeCodePoint();for(var r=!1;t===Sn&&e.length<6;)e.push(t),t=this.consumeCodePoint(),r=!0;if(r){var n=parseInt(pA.apply(void 0,e.map(function(o){return o===Sn?hc:o})),16),s=parseInt(pA.apply(void 0,e.map(function(o){return o===Sn?mc:o})),16);return{type:30,start:n,end:s}}var a=parseInt(pA.apply(void 0,e),16);if(this.peekCodePoint(0)===qA&&_t(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var u=[];_t(t)&&u.length<6;)u.push(t),t=this.consumeCodePoint();var s=parseInt(pA.apply(void 0,u),16);return{type:30,start:a,end:s}}else return{type:30,start:a,end:a}},A.prototype.consumeIdentLikeToken=function(){var e=this.consumeName();return e.toLowerCase()==="url"&&this.peekCodePoint(0)===Nn?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===Nn?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},A.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===pe)return{type:22,value:""};var t=this.peekCodePoint(0);if(t===yn||t===_n){var r=this.consumeStringToken(this.consumeCodePoint());return r.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===pe||this.peekCodePoint(0)===wr)?(this.consumeCodePoint(),{type:22,value:r.value}):(this.consumeBadUrlRemnants(),Hn)}for(;;){var n=this.consumeCodePoint();if(n===pe||n===wr)return{type:22,value:pA.apply(void 0,e)};if(vn(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===pe||this.peekCodePoint(0)===wr?(this.consumeCodePoint(),{type:22,value:pA.apply(void 0,e)}):(this.consumeBadUrlRemnants(),Hn);if(n===_n||n===yn||n===Nn||KC(n))return this.consumeBadUrlRemnants(),Hn;if(n===pr)if(Ke(n,this.peekCodePoint(0)))e.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),Hn;else e.push(n)}},A.prototype.consumeWhiteSpace=function(){for(;vn(this.peekCodePoint(0));)this.consumeCodePoint()},A.prototype.consumeBadUrlRemnants=function(){for(;;){var e=this.consumeCodePoint();if(e===wr||e===pe)return;Ke(e,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},A.prototype.consumeStringSlice=function(e){for(var t=5e4,r="";e>0;){var n=Math.min(t,e);r+=pA.apply(void 0,this._value.splice(0,n)),e-=n}return this._value.shift(),r},A.prototype.consumeStringToken=function(e){var t="",r=0;do{var n=this._value[r];if(n===pe||n===void 0||n===e)return t+=this.consumeStringSlice(r),{type:0,value:t};if(n===In)return this._value.splice(0,r),e1;if(n===pr){var s=this._value[r+1];s!==pe&&s!==void 0&&(s===In?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):Ke(n,s)&&(t+=this.consumeStringSlice(r),t+=pA(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},A.prototype.consumeNumber=function(){var e=[],t=mr,r=this.peekCodePoint(0);for((r===ut||r===qA)&&e.push(this.consumeCodePoint());kA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===Tr&&kA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=oc;kA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((r===Ec||r===Bc)&&((n===ut||n===qA)&&kA(s)||kA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=oc;kA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[VC(e),t]},A.prototype.consumeNumericToken=function(){var e=this.consumeNumber(),t=e[0],r=e[1],n=this.peekCodePoint(0),s=this.peekCodePoint(1),a=this.peekCodePoint(2);if(xn(n,s,a)){var u=this.consumeName();return{type:15,number:t,flags:r,unit:u}}return n===cC?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(_t(e)){for(var t=pA(e);_t(this.peekCodePoint(0))&&t.length<6;)t+=pA(this.consumeCodePoint());vn(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||OC(r)||r>1114111?fc:r}return e===pe?fc:e},A.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(pc(t))e+=pA(t);else if(Ke(t,this.peekCodePoint(0)))e+=pA(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},A}(),wc=function(){function A(e){this._tokens=e}return A.create=function(e){var t=new Cc;return t.write(e),new A(t.read())},A.parseValue=function(e){return A.create(e).parseComponentValue()},A.parseValues=function(e){return A.create(e).parseComponentValues()},A.prototype.parseComponentValue=function(){for(var e=this.consumeToken();e.type===31;)e=this.consumeToken();if(e.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(e);var t=this.consumeComponentValue();do e=this.consumeToken();while(e.type===31);if(e.type===32)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},A.prototype.parseComponentValues=function(){for(var e=[];;){var t=this.consumeComponentValue();if(t.type===32)return e;e.push(t),e.push()}},A.prototype.consumeComponentValue=function(){var e=this.consumeToken();switch(e.type){case 11:case 28:case 2:return this.consumeSimpleBlock(e.type);case 19:return this.consumeFunction(e)}return e},A.prototype.consumeSimpleBlock=function(e){for(var t={type:e,values:[]},r=this.consumeToken();;){if(r.type===32||c1(r,e))return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue()),r=this.consumeToken()}},A.prototype.consumeFunction=function(e){for(var t={name:e.value,values:[],type:18};;){var r=this.consumeToken();if(r.type===32||r.type===3)return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue())}},A.prototype.consumeToken=function(){var e=this._tokens.shift();return typeof e>"u"?Ra:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A}(),br=function(A){return A.type===15},yt=function(A){return A.type===17},iA=function(A){return A.type===20},o1=function(A){return A.type===0},Ma=function(A,e){return iA(A)&&A.value===e},Tc=function(A){return A.type!==31},Nt=function(A){return A.type!==31&&A.type!==4},Ce=function(A){var e=[],t=[];return A.forEach(function(r){if(r.type===4){if(t.length===0)throw new Error("Error parsing function args, zero tokens for arg");e.push(t),t=[];return}r.type!==31&&t.push(r)}),t.length&&e.push(t),e},c1=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},Ve=function(A){return A.type===17||A.type===15},bA=function(A){return A.type===16||Ve(A)},bc=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},DA={type:17,number:0,flags:mr},ka={type:16,number:50,flags:mr},Ge={type:16,number:100,flags:mr},Ur=function(A,e,t){var r=A[0],n=A[1];return[oA(r,e),oA(typeof n<"u"?n:r,t)]},oA=function(A,e){if(A.type===16)return A.number/100*e;if(br(A))switch(A.unit){case"rem":case"em":return 16*A.number;case"px":default:return A.number}return A.number},Uc="deg",Qc="grad",Fc="rad",Ic="turn",Dn={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case Uc:return Math.PI*e.number/180;case Qc:return Math.PI/200*e.number;case Fc:return e.number;case Ic:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},_c=function(A){return A.type===15&&(A.unit===Uc||A.unit===Qc||A.unit===Fc||A.unit===Ic)},yc=function(A){var e=A.filter(iA).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[DA,DA];case"to top":case"bottom":return ne(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[DA,Ge];case"to right":case"left":return ne(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[Ge,Ge];case"to bottom":case"top":return ne(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[Ge,DA];case"to left":case"right":return ne(270)}return 0},ne=function(A){return Math.PI*A/180},Ye={name:"color",parse:function(A,e){if(e.type===18){var t=l1[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return t(A,e.values)}if(e.type===5){if(e.value.length===3){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3);return We(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),1)}if(e.value.length===4){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3),a=e.value.substring(3,4);return We(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),parseInt(a+a,16)/255)}if(e.value.length===6){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6);return We(parseInt(r,16),parseInt(n,16),parseInt(s,16),1)}if(e.value.length===8){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6),a=e.value.substring(6,8);return We(parseInt(r,16),parseInt(n,16),parseInt(s,16),parseInt(a,16)/255)}}if(e.type===20){var u=_e[e.value.toUpperCase()];if(typeof u<"u")return u}return _e.TRANSPARENT}},Xe=function(A){return(255&A)===0},SA=function(A){var e=255&A,t=255&A>>8,r=255&A>>16,n=255&A>>24;return e<255?"rgba("+n+","+r+","+t+","+e/255+")":"rgb("+n+","+r+","+t+")"},We=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(r*255)<<0)>>>0},Nc=function(A,e){if(A.type===17)return A.number;if(A.type===16){var t=e===3?1:255;return e===3?A.number/100*t:Math.round(A.number/100*t)}return 0},Sc=function(A,e){var t=e.filter(Nt);if(t.length===3){var r=t.map(Nc),n=r[0],s=r[1],a=r[2];return We(n,s,a,1)}if(t.length===4){var u=t.map(Nc),n=u[0],s=u[1],a=u[2],o=u[3];return We(n,s,a,o)}return 0};function Pa(A,e,t){return t<0&&(t+=1),t>=1&&(t-=1),t<1/6?(e-A)*t*6+A:t<1/2?e:t<2/3?(e-A)*6*(2/3-t)+A:A}var vc=function(A,e){var t=e.filter(Nt),r=t[0],n=t[1],s=t[2],a=t[3],u=(r.type===17?ne(r.number):Dn.parse(A,r))/(Math.PI*2),o=bA(n)?n.number/100:0,l=bA(s)?s.number/100:0,f=typeof a<"u"&&bA(a)?oA(a,1):1;if(o===0)return We(l*255,l*255,l*255,1);var h=l<=.5?l*(o+1):l+o-l*o,d=l*2-h,C=Pa(d,h,u+1/3),p=Pa(d,h,u),T=Pa(d,h,u-1/3);return We(C*255,p*255,T*255,f)},l1={hsl:vc,hsla:vc,rgb:Sc,rgba:Sc},Qr=function(A,e){return Ye.parse(A,wc.create(e).parseComponentValue())},_e={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},f1={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(iA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},h1={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},On=function(A,e){var t=Ye.parse(A,e[0]),r=e[1];return r&&bA(r)?{color:t,stop:r}:{color:t,stop:null}},Lc=function(A,e){var t=A[0],r=A[A.length-1];t.stop===null&&(t.stop=DA),r.stop===null&&(r.stop=Ge);for(var n=[],s=0,a=0;a<A.length;a++){var u=A[a].stop;if(u!==null){var o=oA(u,e);o>s?n.push(o):n.push(s),s=o}else n.push(null)}for(var l=null,a=0;a<n.length;a++){var f=n[a];if(f===null)l===null&&(l=a);else if(l!==null){for(var h=a-l,d=n[l-1],C=(f-d)/(h+1),p=1;p<=h;p++)n[l+p-1]=C*p;l=null}}return A.map(function(T,U){var _=T.color;return{color:_,stop:Math.max(Math.min(1,n[U]/e),0)}})},d1=function(A,e,t){var r=e/2,n=t/2,s=oA(A[0],e)-r,a=n-oA(A[1],t);return(Math.atan2(a,s)+Math.PI*2)%(Math.PI*2)},B1=function(A,e,t){var r=typeof A=="number"?A:d1(A,e,t),n=Math.abs(e*Math.sin(r))+Math.abs(t*Math.cos(r)),s=e/2,a=t/2,u=n/2,o=Math.sin(r-Math.PI/2)*u,l=Math.cos(r-Math.PI/2)*u;return[n,s-l,s+l,a-o,a+o]},he=function(A,e){return Math.sqrt(A*A+e*e)},xc=function(A,e,t,r,n){var s=[[0,0],[0,e],[A,0],[A,e]];return s.reduce(function(a,u){var o=u[0],l=u[1],f=he(t-o,r-l);return(n?f<a.optimumDistance:f>a.optimumDistance)?{optimumCorner:u,optimumDistance:f}:a},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},g1=function(A,e,t,r,n){var s=0,a=0;switch(A.size){case 0:A.shape===0?s=a=Math.min(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.min(Math.abs(e),Math.abs(e-r)),a=Math.min(Math.abs(t),Math.abs(t-n)));break;case 2:if(A.shape===0)s=a=Math.min(he(e,t),he(e,t-n),he(e-r,t),he(e-r,t-n));else if(A.shape===1){var u=Math.min(Math.abs(t),Math.abs(t-n))/Math.min(Math.abs(e),Math.abs(e-r)),o=xc(r,n,e,t,!0),l=o[0],f=o[1];s=he(l-e,(f-t)/u),a=u*s}break;case 1:A.shape===0?s=a=Math.max(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.max(Math.abs(e),Math.abs(e-r)),a=Math.max(Math.abs(t),Math.abs(t-n)));break;case 3:if(A.shape===0)s=a=Math.max(he(e,t),he(e,t-n),he(e-r,t),he(e-r,t-n));else if(A.shape===1){var u=Math.max(Math.abs(t),Math.abs(t-n))/Math.max(Math.abs(e),Math.abs(e-r)),h=xc(r,n,e,t,!1),l=h[0],f=h[1];s=he(l-e,(f-t)/u),a=u*s}break}return Array.isArray(A.size)&&(s=oA(A.size[0],r),a=A.size.length===2?oA(A.size[1],n):s),[s,a]},E1=function(A,e){var t=ne(180),r=[];return Ce(e).forEach(function(n,s){if(s===0){var a=n[0];if(a.type===20&&a.value==="to"){t=yc(n);return}else if(_c(a)){t=Dn.parse(A,a);return}}var u=On(A,n);r.push(u)}),{angle:t,stops:r,type:1}},Rn=function(A,e){var t=ne(180),r=[];return Ce(e).forEach(function(n,s){if(s===0){var a=n[0];if(a.type===20&&["top","left","right","bottom"].indexOf(a.value)!==-1){t=yc(n);return}else if(_c(a)){t=(Dn.parse(A,a)+ne(270))%ne(360);return}}var u=On(A,n);r.push(u)}),{angle:t,stops:r,type:1}},m1=function(A,e){var t=ne(180),r=[],n=1,s=0,a=3,u=[];return Ce(e).forEach(function(o,l){var f=o[0];if(l===0){if(iA(f)&&f.value==="linear"){n=1;return}else if(iA(f)&&f.value==="radial"){n=2;return}}if(f.type===18){if(f.name==="from"){var h=Ye.parse(A,f.values[0]);r.push({stop:DA,color:h})}else if(f.name==="to"){var h=Ye.parse(A,f.values[0]);r.push({stop:Ge,color:h})}else if(f.name==="color-stop"){var d=f.values.filter(Nt);if(d.length===2){var h=Ye.parse(A,d[1]),C=d[0];yt(C)&&r.push({stop:{type:16,number:C.number*100,flags:C.flags},color:h})}}}}),n===1?{angle:(t+ne(180))%ne(360),stops:r,type:n}:{size:a,shape:s,stops:r,position:u,type:n}},Hc="closest-side",Dc="farthest-side",Oc="closest-corner",Rc="farthest-corner",Mc="circle",kc="ellipse",Pc="cover",Kc="contain",p1=function(A,e){var t=0,r=3,n=[],s=[];return Ce(e).forEach(function(a,u){var o=!0;if(u===0){var l=!1;o=a.reduce(function(h,d){if(l)if(iA(d))switch(d.value){case"center":return s.push(ka),h;case"top":case"left":return s.push(DA),h;case"right":case"bottom":return s.push(Ge),h}else(bA(d)||Ve(d))&&s.push(d);else if(iA(d))switch(d.value){case Mc:return t=0,!1;case kc:return t=1,!1;case"at":return l=!0,!1;case Hc:return r=0,!1;case Pc:case Dc:return r=1,!1;case Kc:case Oc:return r=2,!1;case Rc:return r=3,!1}else if(Ve(d)||bA(d))return Array.isArray(r)||(r=[]),r.push(d),!1;return h},o)}if(o){var f=On(A,a);n.push(f)}}),{size:r,shape:t,stops:n,position:s,type:2}},Mn=function(A,e){var t=0,r=3,n=[],s=[];return Ce(e).forEach(function(a,u){var o=!0;if(u===0?o=a.reduce(function(f,h){if(iA(h))switch(h.value){case"center":return s.push(ka),!1;case"top":case"left":return s.push(DA),!1;case"right":case"bottom":return s.push(Ge),!1}else if(bA(h)||Ve(h))return s.push(h),!1;return f},o):u===1&&(o=a.reduce(function(f,h){if(iA(h))switch(h.value){case Mc:return t=0,!1;case kc:return t=1,!1;case Kc:case Hc:return r=0,!1;case Dc:return r=1,!1;case Oc:return r=2,!1;case Pc:case Rc:return r=3,!1}else if(Ve(h)||bA(h))return Array.isArray(r)||(r=[]),r.push(h),!1;return f},o)),o){var l=On(A,a);n.push(l)}}),{size:r,shape:t,stops:n,position:s,type:2}},C1=function(A){return A.type===1},w1=function(A){return A.type===2},Ka={name:"image",parse:function(A,e){if(e.type===22){var t={url:e.value,type:0};return A.cache.addImage(e.value),t}if(e.type===18){var r=Vc[e.name];if(typeof r>"u")throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return r(A,e.values)}throw new Error("Unsupported image type "+e.type)}};function T1(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!Vc[A.name])}var Vc={"linear-gradient":E1,"-moz-linear-gradient":Rn,"-ms-linear-gradient":Rn,"-o-linear-gradient":Rn,"-webkit-linear-gradient":Rn,"radial-gradient":p1,"-moz-radial-gradient":Mn,"-ms-radial-gradient":Mn,"-o-radial-gradient":Mn,"-webkit-radial-gradient":Mn,"-webkit-gradient":m1},b1={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e.filter(function(r){return Nt(r)&&T1(r)}).map(function(r){return Ka.parse(A,r)})}},U1={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(iA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Q1={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return Ce(e).map(function(t){return t.filter(bA)}).map(bc)}},F1={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return Ce(e).map(function(t){return t.filter(iA).map(function(r){return r.value}).join(" ")}).map(I1)}},I1=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;case"repeat":default:return 0}},St;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(St||(St={}));var _1={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return Ce(e).map(function(t){return t.filter(y1)})}},y1=function(A){return iA(A)||bA(A)},kn=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},N1=kn("top"),S1=kn("right"),v1=kn("bottom"),L1=kn("left"),Pn=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return bc(t.filter(bA))}}},x1=Pn("top-left"),H1=Pn("top-right"),D1=Pn("bottom-right"),O1=Pn("bottom-left"),Kn=function(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(e,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},R1=Kn("top"),M1=Kn("right"),k1=Kn("bottom"),P1=Kn("left"),Vn=function(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(e,t){return br(t)?t.number:0}}},K1=Vn("top"),V1=Vn("right"),G1=Vn("bottom"),Y1=Vn("left"),X1={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},W1={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){switch(e){case"rtl":return 1;case"ltr":default:return 0}}},J1={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).reduce(function(t,r){return t|q1(r.value)},0)}},q1=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},j1={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},$1={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,e){return e.type===20&&e.value==="normal"?0:e.type===17||e.type===15?e.number:0}},Gn;(function(A){A.NORMAL="normal",A.STRICT="strict"})(Gn||(Gn={}));var Z1={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"strict":return Gn.STRICT;case"normal":default:return Gn.NORMAL}}},z1={name:"line-height",initialValue:"normal",prefix:!1,type:4},Gc=function(A,e){return iA(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:bA(A)?oA(A,e):e},Aw={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:Ka.parse(A,e)}},ew={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){switch(e){case"inside":return 0;case"outside":default:return 1}}},Va={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;case"none":default:return-1}}},Yn=function(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}},tw=Yn("top"),rw=Yn("right"),nw=Yn("bottom"),sw=Yn("left"),aw={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;case"visible":default:return 0}})}},iw={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-word":return"break-word";case"normal":default:return"normal"}}},Xn=function(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},uw=Xn("top"),ow=Xn("right"),cw=Xn("bottom"),lw=Xn("left"),fw={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,e){switch(e){case"right":return 2;case"center":case"justify":return 1;case"left":default:return 0}}},hw={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},dw={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&Ma(e[0],"none")?[]:Ce(e).map(function(t){for(var r={color:_e.TRANSPARENT,offsetX:DA,offsetY:DA,blur:DA},n=0,s=0;s<t.length;s++){var a=t[s];Ve(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:r.blur=a,n++):r.color=Ye.parse(A,a)}return r})}},Bw={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},gw={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,e){if(e.type===20&&e.value==="none")return null;if(e.type===18){var t=pw[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},Ew=function(A){var e=A.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},mw=function(A){var e=A.filter(function(o){return o.type===17}).map(function(o){return o.number}),t=e[0],r=e[1];e[2],e[3];var n=e[4],s=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var a=e[12],u=e[13];return e[14],e[15],e.length===16?[t,r,n,s,a,u]:null},pw={matrix:Ew,matrix3d:mw},Yc={type:16,number:50,flags:mr},Cw=[Yc,Yc],ww={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var t=e.filter(bA);return t.length!==2?Cw:[t[0],t[1]]}},Tw={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"hidden":return 1;case"collapse":return 2;case"visible":default:return 0}}},Fr;(function(A){A.NORMAL="normal",A.BREAK_ALL="break-all",A.KEEP_ALL="keep-all"})(Fr||(Fr={}));for(var bw={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-all":return Fr.BREAK_ALL;case"keep-all":return Fr.KEEP_ALL;case"normal":default:return Fr.NORMAL}}},Uw={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,e){if(e.type===20)return{auto:!0,order:0};if(yt(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},Xc={name:"time",parse:function(A,e){if(e.type===15)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")}},Qw={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return yt(e)?e.number:1}},Fw={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Iw={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return t!==0})}},_w={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,e){var t=[],r=[];return e.forEach(function(n){switch(n.type){case 20:case 0:t.push(n.value);break;case 17:t.push(n.number.toString());break;case 4:r.push(t.join(" ")),t.length=0;break}}),t.length&&r.push(t.join(" ")),r.map(function(n){return n.indexOf(" ")===-1?n:"'"+n+"'"})}},yw={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Nw={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,e){if(yt(e))return e.number;if(iA(e))switch(e.value){case"bold":return 700;case"normal":default:return 400}return 400}},Sw={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(iA).map(function(t){return t.value})}},vw={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";case"normal":default:return"normal"}}},QA=function(A,e){return(A&e)!==0},Lw={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e}},xw={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;for(var r=[],n=e.filter(Tc),s=0;s<n.length;s++){var a=n[s],u=n[s+1];if(a.type===20){var o=u&&yt(u)?u.number:1;r.push({counter:a.value,increment:o})}}return r}},Hw={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var t=[],r=e.filter(Tc),n=0;n<r.length;n++){var s=r[n],a=r[n+1];if(iA(s)&&s.value!=="none"){var u=a&&yt(a)?a.number:0;t.push({counter:s.value,reset:u})}}return t}},Dw={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter(br).map(function(t){return Xc.parse(A,t)})}},Ow={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;var r=[],n=e.filter(o1);if(n.length%2!==0)return null;for(var s=0;s<n.length;s+=2){var a=n[s].value,u=n[s+1].value;r.push({open:a,close:u})}return r}},Wc=function(A,e,t){if(!A)return"";var r=A[Math.min(e,A.length-1)];return r?t?r.open:r.close:""},Rw={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&Ma(e[0],"none")?[]:Ce(e).map(function(t){for(var r={color:255,offsetX:DA,offsetY:DA,blur:DA,spread:DA,inset:!1},n=0,s=0;s<t.length;s++){var a=t[s];Ma(a,"inset")?r.inset=!0:Ve(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:n===2?r.blur=a:r.spread=a,n++):r.color=Ye.parse(A,a)}return r})}},Mw={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var t=[0,1,2],r=[];return e.filter(iA).forEach(function(n){switch(n.value){case"stroke":r.push(1);break;case"fill":r.push(0);break;case"markers":r.push(2);break}}),t.forEach(function(n){r.indexOf(n)===-1&&r.push(n)}),r}},kw={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Pw={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return br(e)?e.number:0}},Kw=function(){function A(e,t){var r,n;this.animationDuration=R(e,Dw,t.animationDuration),this.backgroundClip=R(e,f1,t.backgroundClip),this.backgroundColor=R(e,h1,t.backgroundColor),this.backgroundImage=R(e,b1,t.backgroundImage),this.backgroundOrigin=R(e,U1,t.backgroundOrigin),this.backgroundPosition=R(e,Q1,t.backgroundPosition),this.backgroundRepeat=R(e,F1,t.backgroundRepeat),this.backgroundSize=R(e,_1,t.backgroundSize),this.borderTopColor=R(e,N1,t.borderTopColor),this.borderRightColor=R(e,S1,t.borderRightColor),this.borderBottomColor=R(e,v1,t.borderBottomColor),this.borderLeftColor=R(e,L1,t.borderLeftColor),this.borderTopLeftRadius=R(e,x1,t.borderTopLeftRadius),this.borderTopRightRadius=R(e,H1,t.borderTopRightRadius),this.borderBottomRightRadius=R(e,D1,t.borderBottomRightRadius),this.borderBottomLeftRadius=R(e,O1,t.borderBottomLeftRadius),this.borderTopStyle=R(e,R1,t.borderTopStyle),this.borderRightStyle=R(e,M1,t.borderRightStyle),this.borderBottomStyle=R(e,k1,t.borderBottomStyle),this.borderLeftStyle=R(e,P1,t.borderLeftStyle),this.borderTopWidth=R(e,K1,t.borderTopWidth),this.borderRightWidth=R(e,V1,t.borderRightWidth),this.borderBottomWidth=R(e,G1,t.borderBottomWidth),this.borderLeftWidth=R(e,Y1,t.borderLeftWidth),this.boxShadow=R(e,Rw,t.boxShadow),this.color=R(e,X1,t.color),this.direction=R(e,W1,t.direction),this.display=R(e,J1,t.display),this.float=R(e,j1,t.cssFloat),this.fontFamily=R(e,_w,t.fontFamily),this.fontSize=R(e,yw,t.fontSize),this.fontStyle=R(e,vw,t.fontStyle),this.fontVariant=R(e,Sw,t.fontVariant),this.fontWeight=R(e,Nw,t.fontWeight),this.letterSpacing=R(e,$1,t.letterSpacing),this.lineBreak=R(e,Z1,t.lineBreak),this.lineHeight=R(e,z1,t.lineHeight),this.listStyleImage=R(e,Aw,t.listStyleImage),this.listStylePosition=R(e,ew,t.listStylePosition),this.listStyleType=R(e,Va,t.listStyleType),this.marginTop=R(e,tw,t.marginTop),this.marginRight=R(e,rw,t.marginRight),this.marginBottom=R(e,nw,t.marginBottom),this.marginLeft=R(e,sw,t.marginLeft),this.opacity=R(e,Qw,t.opacity);var s=R(e,aw,t.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=R(e,iw,t.overflowWrap),this.paddingTop=R(e,uw,t.paddingTop),this.paddingRight=R(e,ow,t.paddingRight),this.paddingBottom=R(e,cw,t.paddingBottom),this.paddingLeft=R(e,lw,t.paddingLeft),this.paintOrder=R(e,Mw,t.paintOrder),this.position=R(e,hw,t.position),this.textAlign=R(e,fw,t.textAlign),this.textDecorationColor=R(e,Fw,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=R(e,Iw,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=R(e,dw,t.textShadow),this.textTransform=R(e,Bw,t.textTransform),this.transform=R(e,gw,t.transform),this.transformOrigin=R(e,ww,t.transformOrigin),this.visibility=R(e,Tw,t.visibility),this.webkitTextStrokeColor=R(e,kw,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=R(e,Pw,t.webkitTextStrokeWidth),this.wordBreak=R(e,bw,t.wordBreak),this.zIndex=R(e,Uw,t.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return Xe(this.backgroundColor)},A.prototype.isTransformed=function(){return this.transform!==null},A.prototype.isPositioned=function(){return this.position!==0},A.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},A.prototype.isFloating=function(){return this.float!==0},A.prototype.isInlineLevel=function(){return QA(this.display,4)||QA(this.display,33554432)||QA(this.display,268435456)||QA(this.display,536870912)||QA(this.display,67108864)||QA(this.display,134217728)},A}(),Vw=function(){function A(e,t){this.content=R(e,Lw,t.content),this.quotes=R(e,Ow,t.quotes)}return A}(),Jc=function(){function A(e,t){this.counterIncrement=R(e,xw,t.counterIncrement),this.counterReset=R(e,Hw,t.counterReset)}return A}(),R=function(A,e,t){var r=new Cc,n=t!==null&&typeof t<"u"?t.toString():e.initialValue;r.write(n);var s=new wc(r.read());switch(e.type){case 2:var a=s.parseComponentValue();return e.parse(A,iA(a)?a.value:e.initialValue);case 0:return e.parse(A,s.parseComponentValue());case 1:return e.parse(A,s.parseComponentValues());case 4:return s.parseComponentValue();case 3:switch(e.format){case"angle":return Dn.parse(A,s.parseComponentValue());case"color":return Ye.parse(A,s.parseComponentValue());case"image":return Ka.parse(A,s.parseComponentValue());case"length":var u=s.parseComponentValue();return Ve(u)?u:DA;case"length-percentage":var o=s.parseComponentValue();return bA(o)?o:DA;case"time":return Xc.parse(A,s.parseComponentValue())}break}},Gw="data-html2canvas-debug",Yw=function(A){var e=A.getAttribute(Gw);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Ga=function(A,e){var t=Yw(A);return t===1||e===t},we=function(){function A(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,Ga(t,3))debugger;this.styles=new Kw(e,window.getComputedStyle(t,null)),ni(t)&&(this.styles.animationDuration.some(function(r){return r>0})&&(t.style.animationDuration="0s"),this.styles.transform!==null&&(t.style.transform="none")),this.bounds=gn(this.context,t),Ga(t,4)&&(this.flags|=16)}return A}(),Xw="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",qc="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ir=typeof Uint8Array>"u"?[]:new Uint8Array(256),Wn=0;Wn<qc.length;Wn++)Ir[qc.charCodeAt(Wn)]=Wn;for(var Ww=function(A){var e=A.length*.75,t=A.length,r,n=0,s,a,u,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var l=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),f=Array.isArray(l)?l:new Uint8Array(l);for(r=0;r<t;r+=4)s=Ir[A.charCodeAt(r)],a=Ir[A.charCodeAt(r+1)],u=Ir[A.charCodeAt(r+2)],o=Ir[A.charCodeAt(r+3)],f[n++]=s<<2|a>>4,f[n++]=(a&15)<<4|u>>2,f[n++]=(u&3)<<6|o&63;return l},Jw=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},qw=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},ot=5,Ya=11,Xa=2,jw=Ya-ot,jc=65536>>ot,$w=1<<ot,Wa=$w-1,Zw=1024>>ot,zw=jc+Zw,AT=zw,eT=32,tT=AT+eT,rT=65536>>Ya,nT=1<<jw,sT=nT-1,$c=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},aT=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},iT=function(A,e){var t=Ww(A),r=Array.isArray(t)?qw(t):new Uint32Array(t),n=Array.isArray(t)?Jw(t):new Uint16Array(t),s=24,a=$c(n,s/2,r[4]/2),u=r[5]===2?$c(n,(s+r[4])/2):aT(r,Math.ceil((s+r[4])/4));return new uT(r[0],r[1],r[2],r[3],a,u)},uT=function(){function A(e,t,r,n,s,a){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=a}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>ot],t=(t<<Xa)+(e&Wa),this.data[t];if(e<=65535)return t=this.index[jc+(e-55296>>ot)],t=(t<<Xa)+(e&Wa),this.data[t];if(e<this.highStart)return t=tT-rT+(e>>Ya),t=this.index[t],t+=e>>ot&sT,t=this.index[t],t=(t<<Xa)+(e&Wa),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Zc="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",oT=typeof Uint8Array>"u"?[]:new Uint8Array(256),Jn=0;Jn<Zc.length;Jn++)oT[Zc.charCodeAt(Jn)]=Jn;var cT=1,Ja=2,qa=3,zc=4,Al=5,lT=7,el=8,ja=9,$a=10,tl=11,rl=12,nl=13,sl=14,Za=15,fT=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},hT=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var a=A[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},dT=iT(Xw),se="×",za="÷",BT=function(A){return dT.get(A)},gT=function(A,e,t){var r=t-2,n=e[r],s=e[t-1],a=e[t];if(s===Ja&&a===qa)return se;if(s===Ja||s===qa||s===zc||a===Ja||a===qa||a===zc)return za;if(s===el&&[el,ja,tl,rl].indexOf(a)!==-1||(s===tl||s===ja)&&(a===ja||a===$a)||(s===rl||s===$a)&&a===$a||a===nl||a===Al||a===lT||s===cT)return se;if(s===nl&&a===sl){for(;n===Al;)n=e[--r];if(n===sl)return se}if(s===Za&&a===Za){for(var u=0;n===Za;)u++,n=e[--r];if(u%2===0)return se}return za},ET=function(A){var e=fT(A),t=e.length,r=0,n=0,s=e.map(BT);return{next:function(){if(r>=t)return{done:!0,value:null};for(var a=se;r<t&&(a=gT(e,s,++r))===se;);if(a!==se||r===t){var u=hT.apply(null,e.slice(n,r));return n=r,{value:u,done:!1}}return{done:!0,value:null}}}},mT=function(A){for(var e=ET(A),t=[],r;!(r=e.next()).done;)r.value&&t.push(r.value.slice());return t},pT=function(A){var e=123;if(A.createRange){var t=A.createRange();if(t.getBoundingClientRect){var r=A.createElement("boundtest");r.style.height=e+"px",r.style.display="block",A.body.appendChild(r),t.selectNode(r);var n=t.getBoundingClientRect(),s=Math.round(n.height);if(A.body.removeChild(r),s===e)return!0}}return!1},CT=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var t=A.createRange();e.innerHTML=typeof"".repeat=="function"?"&#128104;".repeat(10):"";var r=e.firstChild,n=En(r.data).map(function(o){return pA(o)}),s=0,a={},u=n.every(function(o,l){t.setStart(r,s),t.setEnd(r,s+o.length);var f=t.getBoundingClientRect();s+=o.length;var h=f.x>a.x||f.y>a.y;return a=f,l===0?!0:h});return A.body.removeChild(e),u},wT=function(){return typeof new Image().crossOrigin<"u"},TT=function(){return typeof new XMLHttpRequest().responseType=="string"},bT=function(A){var e=new Image,t=A.createElement("canvas"),r=t.getContext("2d");if(!r)return!1;e.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(e,0,0),t.toDataURL()}catch{return!1}return!0},al=function(A){return A[0]===0&&A[1]===255&&A[2]===0&&A[3]===255},UT=function(A){var e=A.createElement("canvas"),t=100;e.width=t,e.height=t;var r=e.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,t,t);var n=new Image,s=e.toDataURL();n.src=s;var a=Ai(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),il(a).then(function(u){r.drawImage(u,0,0);var o=r.getImageData(0,0,t,t).data;r.fillStyle="red",r.fillRect(0,0,t,t);var l=A.createElement("div");return l.style.backgroundImage="url("+s+")",l.style.height=t+"px",al(o)?il(Ai(t,t,0,0,l)):Promise.reject(!1)}).then(function(u){return r.drawImage(u,0,0),al(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},Ai=function(A,e,t,r,n){var s="http://www.w3.org/2000/svg",a=document.createElementNS(s,"svg"),u=document.createElementNS(s,"foreignObject");return a.setAttributeNS(null,"width",A.toString()),a.setAttributeNS(null,"height",e.toString()),u.setAttributeNS(null,"width","100%"),u.setAttributeNS(null,"height","100%"),u.setAttributeNS(null,"x",t.toString()),u.setAttributeNS(null,"y",r.toString()),u.setAttributeNS(null,"externalResourcesRequired","true"),a.appendChild(u),u.appendChild(n),a},il=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){return e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},OA={get SUPPORT_RANGE_BOUNDS(){var A=pT(document);return Object.defineProperty(OA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=OA.SUPPORT_RANGE_BOUNDS&&CT(document);return Object.defineProperty(OA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=bT(document);return Object.defineProperty(OA,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A=typeof Array.from=="function"&&typeof window.fetch=="function"?UT(document):Promise.resolve(!1);return Object.defineProperty(OA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=wT();return Object.defineProperty(OA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=TT();return Object.defineProperty(OA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(OA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(OA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},_r=function(){function A(e,t){this.text=e,this.bounds=t}return A}(),QT=function(A,e,t,r){var n=_T(e,t),s=[],a=0;return n.forEach(function(u){if(t.textDecorationLine.length||u.trim().length>0)if(OA.SUPPORT_RANGE_BOUNDS){var o=ul(r,a,u.length).getClientRects();if(o.length>1){var l=ei(u),f=0;l.forEach(function(d){s.push(new _r(d,Fe.fromDOMRectList(A,ul(r,f+a,d.length).getClientRects()))),f+=d.length})}else s.push(new _r(u,Fe.fromDOMRectList(A,o)))}else{var h=r.splitText(u.length);s.push(new _r(u,FT(A,r))),r=h}else OA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(u.length));a+=u.length}),s},FT=function(A,e){var t=e.ownerDocument;if(t){var r=t.createElement("html2canvaswrapper");r.appendChild(e.cloneNode(!0));var n=e.parentNode;if(n){n.replaceChild(r,e);var s=gn(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),s}}return Fe.EMPTY},ul=function(A,e,t){var r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");var n=r.createRange();return n.setStart(A,e),n.setEnd(A,e+t),n},ei=function(A){if(OA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(A)).map(function(t){return t.segment})}return mT(A)},IT=function(A,e){if(OA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(function(r){return r.segment})}return NT(A,e)},_T=function(A,e){return e.letterSpacing!==0?ei(A):IT(A,e)},yT=[32,160,4961,65792,65793,4153,4241],NT=function(A,e){for(var t=rC(A,{lineBreak:e.lineBreak,wordBreak:e.overflowWrap==="break-word"?"break-word":e.wordBreak}),r=[],n,s=function(){if(n.value){var a=n.value.slice(),u=En(a),o="";u.forEach(function(l){yT.indexOf(l)===-1?o+=pA(l):(o.length&&r.push(o),r.push(pA(l)),o="")}),o.length&&r.push(o)}};!(n=t.next()).done;)s();return r},ST=function(){function A(e,t,r){this.text=vT(t.data,r.textTransform),this.textBounds=QT(e,this.text,r,t)}return A}(),vT=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(LT,xT);case 2:return A.toUpperCase();default:return A}},LT=/(^|\s|:|-|\(|\))([a-z])/g,xT=function(A,e,t){return A.length>0?e+t.toUpperCase():A},ol=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.src=r.currentSrc||r.src,n.intrinsicWidth=r.naturalWidth,n.intrinsicHeight=r.naturalHeight,n.context.cache.addImage(n.src),n}return e}(we),cl=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r,n.intrinsicWidth=r.width,n.intrinsicHeight=r.height,n}return e}(we),ll=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=new XMLSerializer,a=gn(t,r);return r.setAttribute("width",a.width+"px"),r.setAttribute("height",a.height+"px"),n.svg="data:image/svg+xml,"+encodeURIComponent(s.serializeToString(r)),n.intrinsicWidth=r.width.baseVal.value,n.intrinsicHeight=r.height.baseVal.value,n.context.cache.addImage(n.svg),n}return e}(we),fl=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e}(we),ti=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.start=r.start,n.reversed=typeof r.reversed=="boolean"&&r.reversed===!0,n}return e}(we),HT=[{type:15,flags:0,unit:"px",number:3}],DT=[{type:16,flags:0,number:50}],OT=function(A){return A.width>A.height?new Fe(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new Fe(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},RT=function(A){var e=A.type===MT?new Array(A.value.length+1).join("•"):A.value;return e.length===0?A.placeholder||"":e},qn="checkbox",jn="radio",MT="password",hl=707406591,ri=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;switch(n.type=r.type.toLowerCase(),n.checked=r.checked,n.value=RT(r),(n.type===qn||n.type===jn)&&(n.styles.backgroundColor=3739148031,n.styles.borderTopColor=n.styles.borderRightColor=n.styles.borderBottomColor=n.styles.borderLeftColor=2779096575,n.styles.borderTopWidth=n.styles.borderRightWidth=n.styles.borderBottomWidth=n.styles.borderLeftWidth=1,n.styles.borderTopStyle=n.styles.borderRightStyle=n.styles.borderBottomStyle=n.styles.borderLeftStyle=1,n.styles.backgroundClip=[0],n.styles.backgroundOrigin=[0],n.bounds=OT(n.bounds)),n.type){case qn:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=HT;break;case jn:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=DT;break}return n}return e}(we),dl=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=r.options[r.selectedIndex||0];return n.value=s&&s.text||"",n}return e}(we),Bl=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e}(we),gl=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;n.src=r.src,n.width=parseInt(r.width,10)||0,n.height=parseInt(r.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{if(r.contentWindow&&r.contentWindow.document&&r.contentWindow.document.documentElement){n.tree=ml(t,r.contentWindow.document.documentElement);var s=r.contentWindow.document.documentElement?Qr(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):_e.TRANSPARENT,a=r.contentWindow.document.body?Qr(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):_e.TRANSPARENT;n.backgroundColor=Xe(s)?Xe(a)?n.styles.backgroundColor:a:s}}catch{}return n}return e}(we),kT=["OL","UL","MENU"],$n=function(A,e,t,r){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,pl(n)&&n.data.trim().length>0)t.textNodes.push(new ST(A,n,t.styles));else if(vt(n))if(Ql(n)&&n.assignedNodes)n.assignedNodes().forEach(function(u){return $n(A,u,t,r)});else{var a=El(A,n);a.styles.isVisible()&&(PT(n,a,r)?a.flags|=4:KT(a.styles)&&(a.flags|=2),kT.indexOf(n.tagName)!==-1&&(a.flags|=8),t.elements.push(a),n.slot,n.shadowRoot?$n(A,n.shadowRoot,a,r):!zn(n)&&!Cl(n)&&!As(n)&&$n(A,n,a,r))}},El=function(A,e){return ai(e)?new ol(A,e):wl(e)?new cl(A,e):Cl(e)?new ll(A,e):VT(e)?new fl(A,e):GT(e)?new ti(A,e):YT(e)?new ri(A,e):As(e)?new dl(A,e):zn(e)?new Bl(A,e):bl(e)?new gl(A,e):new we(A,e)},ml=function(A,e){var t=El(A,e);return t.flags|=4,$n(A,e,t,t),t},PT=function(A,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||si(A)&&t.styles.isTransparent()},KT=function(A){return A.isPositioned()||A.isFloating()},pl=function(A){return A.nodeType===Node.TEXT_NODE},vt=function(A){return A.nodeType===Node.ELEMENT_NODE},ni=function(A){return vt(A)&&typeof A.style<"u"&&!Zn(A)},Zn=function(A){return typeof A.className=="object"},VT=function(A){return A.tagName==="LI"},GT=function(A){return A.tagName==="OL"},YT=function(A){return A.tagName==="INPUT"},XT=function(A){return A.tagName==="HTML"},Cl=function(A){return A.tagName==="svg"},si=function(A){return A.tagName==="BODY"},wl=function(A){return A.tagName==="CANVAS"},Tl=function(A){return A.tagName==="VIDEO"},ai=function(A){return A.tagName==="IMG"},bl=function(A){return A.tagName==="IFRAME"},Ul=function(A){return A.tagName==="STYLE"},WT=function(A){return A.tagName==="SCRIPT"},zn=function(A){return A.tagName==="TEXTAREA"},As=function(A){return A.tagName==="SELECT"},Ql=function(A){return A.tagName==="SLOT"},Fl=function(A){return A.tagName.indexOf("-")>0},JT=function(){function A(){this.counters={}}return A.prototype.getCounterValue=function(e){var t=this.counters[e];return t&&t.length?t[t.length-1]:1},A.prototype.getCounterValues=function(e){var t=this.counters[e];return t||[]},A.prototype.pop=function(e){var t=this;e.forEach(function(r){return t.counters[r].pop()})},A.prototype.parse=function(e){var t=this,r=e.counterIncrement,n=e.counterReset,s=!0;r!==null&&r.forEach(function(u){var o=t.counters[u.counter];o&&u.increment!==0&&(s=!1,o.length||o.push(1),o[Math.max(0,o.length-1)]+=u.increment)});var a=[];return s&&n.forEach(function(u){var o=t.counters[u.counter];a.push(u.counter),o||(o=t.counters[u.counter]=[]),o.push(u.reset)}),a},A}(),Il={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},_l={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},qT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},jT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},Lt=function(A,e,t,r,n,s){return A<e||A>t?Nr(A,n,s.length>0):r.integers.reduce(function(a,u,o){for(;A>=u;)A-=u,a+=r.values[o];return a},"")+s},yl=function(A,e,t,r){var n="";do t||A--,n=r(A)+n,A/=e;while(A*e>=e);return n},CA=function(A,e,t,r,n){var s=t-e+1;return(A<0?"-":"")+(yl(Math.abs(A),s,r,function(a){return pA(Math.floor(a%s)+e)})+n)},ct=function(A,e,t){t===void 0&&(t=". ");var r=e.length;return yl(Math.abs(A),r,!1,function(n){return e[Math.floor(n%r)]})+t},xt=1,Je=2,qe=4,yr=8,ye=function(A,e,t,r,n,s){if(A<-9999||A>9999)return Nr(A,4,n.length>0);var a=Math.abs(A),u=n;if(a===0)return e[0]+u;for(var o=0;a>0&&o<=4;o++){var l=a%10;l===0&&QA(s,xt)&&u!==""?u=e[l]+u:l>1||l===1&&o===0||l===1&&o===1&&QA(s,Je)||l===1&&o===1&&QA(s,qe)&&A>100||l===1&&o>1&&QA(s,yr)?u=e[l]+(o>0?t[o-1]:"")+u:l===1&&o>0&&(u=t[o-1]+u),a=Math.floor(a/10)}return(A<0?r:"")+u},Nl="十百千萬",Sl="拾佰仟萬",vl="マイナス",ii="마이너스",Nr=function(A,e,t){var r=t?". ":"",n=t?"、":"",s=t?", ":"",a=t?" ":"";switch(e){case 0:return"•"+a;case 1:return"◦"+a;case 2:return"◾"+a;case 5:var u=CA(A,48,57,!0,r);return u.length<4?"0"+u:u;case 4:return ct(A,"〇一二三四五六七八九",n);case 6:return Lt(A,1,3999,Il,3,r).toLowerCase();case 7:return Lt(A,1,3999,Il,3,r);case 8:return CA(A,945,969,!1,r);case 9:return CA(A,97,122,!1,r);case 10:return CA(A,65,90,!1,r);case 11:return CA(A,1632,1641,!0,r);case 12:case 49:return Lt(A,1,9999,_l,3,r);case 35:return Lt(A,1,9999,_l,3,r).toLowerCase();case 13:return CA(A,2534,2543,!0,r);case 14:case 30:return CA(A,6112,6121,!0,r);case 15:return ct(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return ct(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return ye(A,"零一二三四五六七八九",Nl,"負",n,Je|qe|yr);case 47:return ye(A,"零壹貳參肆伍陸柒捌玖",Sl,"負",n,xt|Je|qe|yr);case 42:return ye(A,"零一二三四五六七八九",Nl,"负",n,Je|qe|yr);case 41:return ye(A,"零壹贰叁肆伍陆柒捌玖",Sl,"负",n,xt|Je|qe|yr);case 26:return ye(A,"〇一二三四五六七八九","十百千万",vl,n,0);case 25:return ye(A,"零壱弐参四伍六七八九","拾百千万",vl,n,xt|Je|qe);case 31:return ye(A,"영일이삼사오육칠팔구","십백천만",ii,s,xt|Je|qe);case 33:return ye(A,"零一二三四五六七八九","十百千萬",ii,s,0);case 32:return ye(A,"零壹貳參四五六七八九","拾百千",ii,s,xt|Je|qe);case 18:return CA(A,2406,2415,!0,r);case 20:return Lt(A,1,19999,jT,3,r);case 21:return CA(A,2790,2799,!0,r);case 22:return CA(A,2662,2671,!0,r);case 22:return Lt(A,1,10999,qT,3,r);case 23:return ct(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return ct(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return CA(A,3302,3311,!0,r);case 28:return ct(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return ct(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return CA(A,3792,3801,!0,r);case 37:return CA(A,6160,6169,!0,r);case 38:return CA(A,4160,4169,!0,r);case 39:return CA(A,2918,2927,!0,r);case 40:return CA(A,1776,1785,!0,r);case 43:return CA(A,3046,3055,!0,r);case 44:return CA(A,3174,3183,!0,r);case 45:return CA(A,3664,3673,!0,r);case 46:return CA(A,3872,3881,!0,r);case 3:default:return CA(A,48,57,!0,r)}},Ll="data-html2canvas-ignore",xl=function(){function A(e,t,r){if(this.context=e,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new JT,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}return A.prototype.toIFrame=function(e,t){var r=this,n=$T(e,t);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var s=e.defaultView.pageXOffset,a=e.defaultView.pageYOffset,u=n.contentWindow,o=u.document,l=Ab(n).then(function(){return KA(r,void 0,void 0,function(){var f,h;return MA(this,function(d){switch(d.label){case 0:return this.scrolledElements.forEach(nb),u&&(u.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(u.scrollY!==t.top||u.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(u.scrollX-t.left,u.scrollY-t.top,0,0))),f=this.options.onclone,h=this.clonedReferenceElement,typeof h>"u"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:o.fonts&&o.fonts.ready?[4,o.fonts.ready]:[3,2];case 1:d.sent(),d.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,zT(o)]:[3,4];case 3:d.sent(),d.label=4;case 4:return typeof f=="function"?[2,Promise.resolve().then(function(){return f(o,h)}).then(function(){return n})]:[2,n]}})})});return o.open(),o.write(tb(document.doctype)+"<html></html>"),rb(this.referenceElement.ownerDocument,s,a),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),l},A.prototype.createElementClone=function(e){if(Ga(e,2))debugger;if(wl(e))return this.createCanvasClone(e);if(Tl(e))return this.createVideoClone(e);if(Ul(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return ai(t)&&(ai(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),Fl(t)?this.createCustomElementClone(t):t},A.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return ui(e.style,t),t},A.prototype.createStyleClone=function(e){try{var t=e.sheet;if(t&&t.cssRules){var r=[].slice.call(t.cssRules,0).reduce(function(s,a){return a&&typeof a.cssText=="string"?s+a.cssText:s},""),n=e.cloneNode(!1);return n.textContent=r,n}}catch(s){if(this.context.logger.error("Unable to access cssRules property",s),s.name!=="SecurityError")throw s}return e.cloneNode(!1)},A.prototype.createCanvasClone=function(e){var t;if(this.options.inlineImages&&e.ownerDocument){var r=e.ownerDocument.createElement("img");try{return r.src=e.toDataURL(),r}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}var n=e.cloneNode(!1);try{n.width=e.width,n.height=e.height;var s=e.getContext("2d"),a=n.getContext("2d");if(a)if(!this.options.allowTaint&&s)a.putImageData(s.getImageData(0,0,e.width,e.height),0,0);else{var u=(t=e.getContext("webgl2"))!==null&&t!==void 0?t:e.getContext("webgl");if(u){var o=u.getContextAttributes();(o==null?void 0:o.preserveDrawingBuffer)===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e)}a.drawImage(e,0,0)}return n}catch{this.context.logger.info("Unable to clone canvas as it is tainted",e)}return n},A.prototype.createVideoClone=function(e){var t=e.ownerDocument.createElement("canvas");t.width=e.offsetWidth,t.height=e.offsetHeight;var r=t.getContext("2d");try{return r&&(r.drawImage(e,0,0,t.width,t.height),this.options.allowTaint||r.getImageData(0,0,t.width,t.height)),t}catch{this.context.logger.info("Unable to clone video as it is tainted",e)}var n=e.ownerDocument.createElement("canvas");return n.width=e.offsetWidth,n.height=e.offsetHeight,n},A.prototype.appendChildNode=function(e,t,r){(!vt(t)||!WT(t)&&!t.hasAttribute(Ll)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!vt(t)||!Ul(t))&&e.appendChild(this.cloneNode(t,r))},A.prototype.cloneChildNodes=function(e,t,r){for(var n=this,s=e.shadowRoot?e.shadowRoot.firstChild:e.firstChild;s;s=s.nextSibling)if(vt(s)&&Ql(s)&&typeof s.assignedNodes=="function"){var a=s.assignedNodes();a.length&&a.forEach(function(u){return n.appendChildNode(t,u,r)})}else this.appendChildNode(t,s,r)},A.prototype.cloneNode=function(e,t){if(pl(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var r=e.ownerDocument.defaultView;if(r&&vt(e)&&(ni(e)||Zn(e))){var n=this.createElementClone(e);n.style.transitionProperty="none";var s=r.getComputedStyle(e),a=r.getComputedStyle(e,":before"),u=r.getComputedStyle(e,":after");this.referenceElement===e&&ni(n)&&(this.clonedReferenceElement=n),si(n)&&ib(n);var o=this.counters.parse(new Jc(this.context,s)),l=this.resolvePseudoContent(e,n,a,Sr.BEFORE);Fl(e)&&(t=!0),Tl(e)||this.cloneChildNodes(e,n,t),l&&n.insertBefore(l,n.firstChild);var f=this.resolvePseudoContent(e,n,u,Sr.AFTER);return f&&n.appendChild(f),this.counters.pop(o),(s&&(this.options.copyStyles||Zn(e))&&!bl(e)||t)&&ui(s,n),(e.scrollTop!==0||e.scrollLeft!==0)&&this.scrolledElements.push([n,e.scrollLeft,e.scrollTop]),(zn(e)||As(e))&&(zn(n)||As(n))&&(n.value=e.value),n}return e.cloneNode(!1)},A.prototype.resolvePseudoContent=function(e,t,r,n){var s=this;if(r){var a=r.content,u=t.ownerDocument;if(!(!u||!a||a==="none"||a==="-moz-alt-content"||r.display==="none")){this.counters.parse(new Jc(this.context,r));var o=new Vw(this.context,r),l=u.createElement("html2canvaspseudoelement");ui(r,l),o.content.forEach(function(h){if(h.type===0)l.appendChild(u.createTextNode(h.value));else if(h.type===22){var d=u.createElement("img");d.src=h.value,d.style.opacity="1",l.appendChild(d)}else if(h.type===18){if(h.name==="attr"){var C=h.values.filter(iA);C.length&&l.appendChild(u.createTextNode(e.getAttribute(C[0].value)||""))}else if(h.name==="counter"){var p=h.values.filter(Nt),T=p[0],U=p[1];if(T&&iA(T)){var _=s.counters.getCounterValue(T.value),Q=U&&iA(U)?Va.parse(s.context,U.value):3;l.appendChild(u.createTextNode(Nr(_,Q,!1)))}}else if(h.name==="counters"){var D=h.values.filter(Nt),T=D[0],k=D[1],U=D[2];if(T&&iA(T)){var x=s.counters.getCounterValues(T.value),m=U&&iA(U)?Va.parse(s.context,U.value):3,H=k&&k.type===0?k.value:"",P=x.map(function(cA){return Nr(cA,m,!1)}).join(H);l.appendChild(u.createTextNode(P))}}}else if(h.type===20)switch(h.value){case"open-quote":l.appendChild(u.createTextNode(Wc(o.quotes,s.quoteDepth++,!0)));break;case"close-quote":l.appendChild(u.createTextNode(Wc(o.quotes,--s.quoteDepth,!1)));break;default:l.appendChild(u.createTextNode(h.value))}}),l.className=oi+" "+ci;var f=n===Sr.BEFORE?" "+oi:" "+ci;return Zn(t)?t.className.baseValue+=f:t.className+=f,l}}},A.destroy=function(e){return e.parentNode?(e.parentNode.removeChild(e),!0):!1},A}(),Sr;(function(A){A[A.BEFORE=0]="BEFORE",A[A.AFTER=1]="AFTER"})(Sr||(Sr={}));var $T=function(A,e){var t=A.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=e.width.toString(),t.height=e.height.toString(),t.scrolling="no",t.setAttribute(Ll,"true"),A.body.appendChild(t),t},ZT=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},zT=function(A){return Promise.all([].slice.call(A.images,0).map(ZT))},Ab=function(A){return new Promise(function(e,t){var r=A.contentWindow;if(!r)return t("No window assigned for iframe");var n=r.document;r.onload=A.onload=function(){r.onload=A.onload=null;var s=setInterval(function(){n.body.childNodes.length>0&&n.readyState==="complete"&&(clearInterval(s),e(A))},50)}})},eb=["all","d","content"],ui=function(A,e){for(var t=A.length-1;t>=0;t--){var r=A.item(t);eb.indexOf(r)===-1&&e.style.setProperty(r,A.getPropertyValue(r))}return e},tb=function(A){var e="";return A&&(e+="<!DOCTYPE ",A.name&&(e+=A.name),A.internalSubset&&(e+=A.internalSubset),A.publicId&&(e+='"'+A.publicId+'"'),A.systemId&&(e+='"'+A.systemId+'"'),e+=">"),e},rb=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},nb=function(A){var e=A[0],t=A[1],r=A[2];e.scrollLeft=t,e.scrollTop=r},sb=":before",ab=":after",oi="___html2canvas___pseudoelement_before",ci="___html2canvas___pseudoelement_after",Hl=`{
35
+ ***************************************************************************** */var pa=function(A,e){return pa=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])},pa(A,e)};function he(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");pa(A,e);function t(){this.constructor=A}A.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var Ca=function(){return Ca=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},Ca.apply(this,arguments)};function VA(A,e,t,r){function n(s){return s instanceof t?s:new t(function(a){a(s)})}return new(t||(t=Promise))(function(s,a){function u(f){try{l(r.next(f))}catch(h){a(h)}}function o(f){try{l(r.throw(f))}catch(h){a(h)}}function l(f){f.done?s(f.value):n(f.value).then(u,o)}l((r=r.apply(A,[])).next())})}function kA(A,e){var t={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},r,n,s,a;return a={next:u(0),throw:u(1),return:u(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function u(l){return function(f){return o([l,f])}}function o(l){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,n&&(s=l[0]&2?n.return:l[0]?n.throw||((s=n.return)&&s.call(n),0):n.next)&&!(s=s.call(n,l[1])).done)return s;switch(n=0,s&&(l=[l[0]&2,s.value]),l[0]){case 0:case 1:s=l;break;case 4:return t.label++,{value:l[1],done:!1};case 5:t.label++,n=l[1],l=[0];continue;case 7:l=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!s||l[1]>s[0]&&l[1]<s[3])){t.label=l[1];break}if(l[0]===6&&t.label<s[1]){t.label=s[1],s=l;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(l);break}s[2]&&t.ops.pop(),t.trys.pop();continue}l=e.call(A,t)}catch(f){l=[6,f],n=0}finally{r=s=0}if(l[0]&5)throw l[1];return{value:l[0]?l[1]:void 0,done:!0}}}function Bn(A,e,t){if(arguments.length===2)for(var r=0,n=e.length,s;r<n;r++)(s||!(r in e))&&(s||(s=Array.prototype.slice.call(e,0,r)),s[r]=e[r]);return A.concat(s||e)}for(var Fe=function(){function A(e,t,r,n){this.left=e,this.top=t,this.width=r,this.height=n}return A.prototype.add=function(e,t,r,n){return new A(this.left+e,this.top+t,this.width+r,this.height+n)},A.fromClientRect=function(e,t){return new A(t.left+e.windowBounds.left,t.top+e.windowBounds.top,t.width,t.height)},A.fromDOMRectList=function(e,t){var r=Array.from(t).find(function(n){return n.width!==0});return r?new A(r.left+e.windowBounds.left,r.top+e.windowBounds.top,r.width,r.height):A.EMPTY},A.EMPTY=new A(0,0,0,0),A}(),gn=function(A,e){return Fe.fromClientRect(A,e.getBoundingClientRect())},Tp=function(A){var e=A.body,t=A.documentElement;if(!e||!t)throw new Error("Unable to get document size");var r=Math.max(Math.max(e.scrollWidth,t.scrollWidth),Math.max(e.offsetWidth,t.offsetWidth),Math.max(e.clientWidth,t.clientWidth)),n=Math.max(Math.max(e.scrollHeight,t.scrollHeight),Math.max(e.offsetHeight,t.offsetHeight),Math.max(e.clientHeight,t.clientHeight));return new Fe(0,0,r,n)},En=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},wA=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var a=A[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},Yo="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bp=typeof Uint8Array>"u"?[]:new Uint8Array(256),mn=0;mn<Yo.length;mn++)bp[Yo.charCodeAt(mn)]=mn;for(var Xo="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",fr=typeof Uint8Array>"u"?[]:new Uint8Array(256),pn=0;pn<Xo.length;pn++)fr[Xo.charCodeAt(pn)]=pn;for(var Up=function(A){var e=A.length*.75,t=A.length,r,n=0,s,a,u,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var l=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),f=Array.isArray(l)?l:new Uint8Array(l);for(r=0;r<t;r+=4)s=fr[A.charCodeAt(r)],a=fr[A.charCodeAt(r+1)],u=fr[A.charCodeAt(r+2)],o=fr[A.charCodeAt(r+3)],f[n++]=s<<2|a>>4,f[n++]=(a&15)<<4|u>>2,f[n++]=(u&3)<<6|o&63;return l},Qp=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},Fp=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},ut=5,wa=11,Ta=2,Ip=wa-ut,Wo=65536>>ut,_p=1<<ut,ba=_p-1,yp=1024>>ut,Np=Wo+yp,Sp=Np,vp=32,Lp=Sp+vp,xp=65536>>wa,Hp=1<<Ip,Dp=Hp-1,Jo=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Op=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},Rp=function(A,e){var t=Up(A),r=Array.isArray(t)?Fp(t):new Uint32Array(t),n=Array.isArray(t)?Qp(t):new Uint16Array(t),s=24,a=Jo(n,s/2,r[4]/2),u=r[5]===2?Jo(n,(s+r[4])/2):Op(r,Math.ceil((s+r[4])/4));return new Mp(r[0],r[1],r[2],r[3],a,u)},Mp=function(){function A(e,t,r,n,s,a){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=a}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>ut],t=(t<<Ta)+(e&ba),this.data[t];if(e<=65535)return t=this.index[Wo+(e-55296>>ut)],t=(t<<Ta)+(e&ba),this.data[t];if(e<this.highStart)return t=Lp-xp+(e>>wa),t=this.index[t],t+=e>>ut&Dp,t=this.index[t],t=(t<<Ta)+(e&ba),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),qo="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",kp=typeof Uint8Array>"u"?[]:new Uint8Array(256),Cn=0;Cn<qo.length;Cn++)kp[qo.charCodeAt(Cn)]=Cn;var Pp="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==",jo=50,Kp=1,$o=2,Zo=3,Vp=4,Gp=5,zo=7,Ac=8,ec=9,Pe=10,Ua=11,tc=12,Qa=13,Yp=14,hr=15,Fa=16,wn=17,dr=18,Xp=19,rc=20,Ia=21,Br=22,_a=23,It=24,ee=25,gr=26,Er=27,_t=28,Wp=29,ot=30,Jp=31,Tn=32,bn=33,ya=34,Na=35,Sa=36,mr=37,va=38,Un=39,Qn=40,La=41,nc=42,qp=43,jp=[9001,65288],sc="!",AA="×",Fn="÷",xa=Rp(Pp),Ie=[ot,Sa],Ha=[Kp,$o,Zo,Gp],ac=[Pe,Ac],ic=[Er,gr],$p=Ha.concat(ac),uc=[va,Un,Qn,ya,Na],Zp=[hr,Qa],zp=function(A,e){e===void 0&&(e="strict");var t=[],r=[],n=[];return A.forEach(function(s,a){var u=xa.get(s);if(u>jo?(n.push(!0),u-=jo):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return r.push(a),t.push(Fa);if(u===Vp||u===Ua){if(a===0)return r.push(a),t.push(ot);var o=t[a-1];return $p.indexOf(o)===-1?(r.push(r[a-1]),t.push(o)):(r.push(a),t.push(ot))}if(r.push(a),u===Jp)return t.push(e==="strict"?Ia:mr);if(u===nc||u===Wp)return t.push(ot);if(u===qp)return s>=131072&&s<=196605||s>=196608&&s<=262141?t.push(mr):t.push(ot);t.push(u)}),[r,t,n]},Da=function(A,e,t,r){var n=r[t];if(Array.isArray(A)?A.indexOf(n)!==-1:A===n)for(var s=t;s<=r.length;){s++;var a=r[s];if(a===e)return!0;if(a!==Pe)break}if(n===Pe)for(var s=t;s>0;){s--;var u=r[s];if(Array.isArray(A)?A.indexOf(u)!==-1:A===u)for(var o=t;o<=r.length;){o++;var a=r[o];if(a===e)return!0;if(a!==Pe)break}if(u!==Pe)break}return!1},oc=function(A,e){for(var t=A;t>=0;){var r=e[t];if(r===Pe)t--;else return r}return 0},AC=function(A,e,t,r,n){if(t[r]===0)return AA;var s=r-1;if(Array.isArray(n)&&n[s]===!0)return AA;var a=s-1,u=s+1,o=e[s],l=a>=0?e[a]:0,f=e[u];if(o===$o&&f===Zo)return AA;if(Ha.indexOf(o)!==-1)return sc;if(Ha.indexOf(f)!==-1||ac.indexOf(f)!==-1)return AA;if(oc(s,e)===Ac)return Fn;if(xa.get(A[s])===Ua||(o===Tn||o===bn)&&xa.get(A[u])===Ua||o===zo||f===zo||o===ec||[Pe,Qa,hr].indexOf(o)===-1&&f===ec||[wn,dr,Xp,It,_t].indexOf(f)!==-1||oc(s,e)===Br||Da(_a,Br,s,e)||Da([wn,dr],Ia,s,e)||Da(tc,tc,s,e))return AA;if(o===Pe)return Fn;if(o===_a||f===_a)return AA;if(f===Fa||o===Fa)return Fn;if([Qa,hr,Ia].indexOf(f)!==-1||o===Yp||l===Sa&&Zp.indexOf(o)!==-1||o===_t&&f===Sa||f===rc||Ie.indexOf(f)!==-1&&o===ee||Ie.indexOf(o)!==-1&&f===ee||o===Er&&[mr,Tn,bn].indexOf(f)!==-1||[mr,Tn,bn].indexOf(o)!==-1&&f===gr||Ie.indexOf(o)!==-1&&ic.indexOf(f)!==-1||ic.indexOf(o)!==-1&&Ie.indexOf(f)!==-1||[Er,gr].indexOf(o)!==-1&&(f===ee||[Br,hr].indexOf(f)!==-1&&e[u+1]===ee)||[Br,hr].indexOf(o)!==-1&&f===ee||o===ee&&[ee,_t,It].indexOf(f)!==-1)return AA;if([ee,_t,It,wn,dr].indexOf(f)!==-1)for(var h=s;h>=0;){var d=e[h];if(d===ee)return AA;if([_t,It].indexOf(d)!==-1)h--;else break}if([Er,gr].indexOf(f)!==-1)for(var h=[wn,dr].indexOf(o)!==-1?a:s;h>=0;){var d=e[h];if(d===ee)return AA;if([_t,It].indexOf(d)!==-1)h--;else break}if(va===o&&[va,Un,ya,Na].indexOf(f)!==-1||[Un,ya].indexOf(o)!==-1&&[Un,Qn].indexOf(f)!==-1||[Qn,Na].indexOf(o)!==-1&&f===Qn||uc.indexOf(o)!==-1&&[rc,gr].indexOf(f)!==-1||uc.indexOf(f)!==-1&&o===Er||Ie.indexOf(o)!==-1&&Ie.indexOf(f)!==-1||o===It&&Ie.indexOf(f)!==-1||Ie.concat(ee).indexOf(o)!==-1&&f===Br&&jp.indexOf(A[u])===-1||Ie.concat(ee).indexOf(f)!==-1&&o===dr)return AA;if(o===La&&f===La){for(var C=t[s],p=1;C>0&&(C--,e[C]===La);)p++;if(p%2!==0)return AA}return o===Tn&&f===bn?AA:Fn},eC=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=zp(A,e.lineBreak),r=t[0],n=t[1],s=t[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(n=n.map(function(u){return[ee,ot,nc].indexOf(u)!==-1?mr:u}));var a=e.wordBreak==="keep-all"?s.map(function(u,o){return u&&A[o]>=19968&&A[o]<=40959}):void 0;return[r,n,a]},tC=function(){function A(e,t,r,n){this.codePoints=e,this.required=t===sc,this.start=r,this.end=n}return A.prototype.slice=function(){return wA.apply(void 0,this.codePoints.slice(this.start,this.end))},A}(),rC=function(A,e){var t=En(A),r=eC(t,e),n=r[0],s=r[1],a=r[2],u=t.length,o=0,l=0;return{next:function(){if(l>=u)return{done:!0,value:null};for(var f=AA;l<u&&(f=AC(t,s,n,++l,a))===AA;);if(f!==AA||l===u){var h=new tC(t,f,o,l);return o=l,{value:h,done:!1}}return{done:!0,value:null}}}},nC=1,sC=2,pr=4,cc=8,In=10,lc=47,Cr=92,aC=9,iC=32,_n=34,wr=61,uC=35,oC=36,cC=37,yn=39,Nn=40,Tr=41,lC=95,$A=45,fC=33,hC=60,dC=62,BC=64,gC=91,EC=93,mC=61,pC=123,Sn=63,CC=125,fc=124,wC=126,TC=128,hc=65533,Oa=42,ct=43,bC=44,UC=58,QC=59,br=46,FC=0,IC=8,_C=11,yC=14,NC=31,SC=127,Ce=-1,dc=48,Bc=97,gc=101,vC=102,LC=117,xC=122,Ec=65,mc=69,pc=70,HC=85,DC=90,PA=function(A){return A>=dc&&A<=57},OC=function(A){return A>=55296&&A<=57343},yt=function(A){return PA(A)||A>=Ec&&A<=pc||A>=Bc&&A<=vC},RC=function(A){return A>=Bc&&A<=xC},MC=function(A){return A>=Ec&&A<=DC},kC=function(A){return RC(A)||MC(A)},PC=function(A){return A>=TC},vn=function(A){return A===In||A===aC||A===iC},Ln=function(A){return kC(A)||PC(A)||A===lC},Cc=function(A){return Ln(A)||PA(A)||A===$A},KC=function(A){return A>=FC&&A<=IC||A===_C||A>=yC&&A<=NC||A===SC},Ke=function(A,e){return A!==Cr?!1:e!==In},xn=function(A,e,t){return A===$A?Ln(e)||Ke(e,t):Ln(A)?!0:!!(A===Cr&&Ke(A,e))},Ra=function(A,e,t){return A===ct||A===$A?PA(e)?!0:e===br&&PA(t):PA(A===br?e:A)},VC=function(A){var e=0,t=1;(A[e]===ct||A[e]===$A)&&(A[e]===$A&&(t=-1),e++);for(var r=[];PA(A[e]);)r.push(A[e++]);var n=r.length?parseInt(wA.apply(void 0,r),10):0;A[e]===br&&e++;for(var s=[];PA(A[e]);)s.push(A[e++]);var a=s.length,u=a?parseInt(wA.apply(void 0,s),10):0;(A[e]===mc||A[e]===gc)&&e++;var o=1;(A[e]===ct||A[e]===$A)&&(A[e]===$A&&(o=-1),e++);for(var l=[];PA(A[e]);)l.push(A[e++]);var f=l.length?parseInt(wA.apply(void 0,l),10):0;return t*(n+u*Math.pow(10,-a))*Math.pow(10,o*f)},GC={type:2},YC={type:3},XC={type:4},WC={type:13},JC={type:8},qC={type:21},jC={type:9},$C={type:10},ZC={type:11},zC={type:12},A1={type:14},Hn={type:23},e1={type:1},t1={type:25},r1={type:24},n1={type:26},s1={type:27},a1={type:28},i1={type:29},u1={type:31},Ma={type:32},wc=function(){function A(){this._value=[]}return A.prototype.write=function(e){this._value=this._value.concat(En(e))},A.prototype.read=function(){for(var e=[],t=this.consumeToken();t!==Ma;)e.push(t),t=this.consumeToken();return e},A.prototype.consumeToken=function(){var e=this.consumeCodePoint();switch(e){case _n:return this.consumeStringToken(_n);case uC:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(Cc(t)||Ke(r,n)){var s=xn(t,r,n)?sC:nC,a=this.consumeName();return{type:5,value:a,flags:s}}break;case oC:if(this.peekCodePoint(0)===wr)return this.consumeCodePoint(),WC;break;case yn:return this.consumeStringToken(yn);case Nn:return GC;case Tr:return YC;case Oa:if(this.peekCodePoint(0)===wr)return this.consumeCodePoint(),A1;break;case ct:if(Ra(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case bC:return XC;case $A:var u=e,o=this.peekCodePoint(0),l=this.peekCodePoint(1);if(Ra(u,o,l))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(xn(u,o,l))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(o===$A&&l===dC)return this.consumeCodePoint(),this.consumeCodePoint(),r1;break;case br:if(Ra(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case lc:if(this.peekCodePoint(0)===Oa)for(this.consumeCodePoint();;){var f=this.consumeCodePoint();if(f===Oa&&(f=this.consumeCodePoint(),f===lc))return this.consumeToken();if(f===Ce)return this.consumeToken()}break;case UC:return n1;case QC:return s1;case hC:if(this.peekCodePoint(0)===fC&&this.peekCodePoint(1)===$A&&this.peekCodePoint(2)===$A)return this.consumeCodePoint(),this.consumeCodePoint(),t1;break;case BC:var h=this.peekCodePoint(0),d=this.peekCodePoint(1),C=this.peekCodePoint(2);if(xn(h,d,C)){var a=this.consumeName();return{type:7,value:a}}break;case gC:return a1;case Cr:if(Ke(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case EC:return i1;case mC:if(this.peekCodePoint(0)===wr)return this.consumeCodePoint(),JC;break;case pC:return ZC;case CC:return zC;case LC:case HC:var p=this.peekCodePoint(0),T=this.peekCodePoint(1);return p===ct&&(yt(T)||T===Sn)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case fc:if(this.peekCodePoint(0)===wr)return this.consumeCodePoint(),jC;if(this.peekCodePoint(0)===fc)return this.consumeCodePoint(),qC;break;case wC:if(this.peekCodePoint(0)===wr)return this.consumeCodePoint(),$C;break;case Ce:return Ma}return vn(e)?(this.consumeWhiteSpace(),u1):PA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Ln(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:wA(e)}},A.prototype.consumeCodePoint=function(){var e=this._value.shift();return typeof e>"u"?-1:e},A.prototype.reconsumeCodePoint=function(e){this._value.unshift(e)},A.prototype.peekCodePoint=function(e){return e>=this._value.length?-1:this._value[e]},A.prototype.consumeUnicodeRangeToken=function(){for(var e=[],t=this.consumeCodePoint();yt(t)&&e.length<6;)e.push(t),t=this.consumeCodePoint();for(var r=!1;t===Sn&&e.length<6;)e.push(t),t=this.consumeCodePoint(),r=!0;if(r){var n=parseInt(wA.apply(void 0,e.map(function(o){return o===Sn?dc:o})),16),s=parseInt(wA.apply(void 0,e.map(function(o){return o===Sn?pc:o})),16);return{type:30,start:n,end:s}}var a=parseInt(wA.apply(void 0,e),16);if(this.peekCodePoint(0)===$A&&yt(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var u=[];yt(t)&&u.length<6;)u.push(t),t=this.consumeCodePoint();var s=parseInt(wA.apply(void 0,u),16);return{type:30,start:a,end:s}}else return{type:30,start:a,end:a}},A.prototype.consumeIdentLikeToken=function(){var e=this.consumeName();return e.toLowerCase()==="url"&&this.peekCodePoint(0)===Nn?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===Nn?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},A.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===Ce)return{type:22,value:""};var t=this.peekCodePoint(0);if(t===yn||t===_n){var r=this.consumeStringToken(this.consumeCodePoint());return r.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===Ce||this.peekCodePoint(0)===Tr)?(this.consumeCodePoint(),{type:22,value:r.value}):(this.consumeBadUrlRemnants(),Hn)}for(;;){var n=this.consumeCodePoint();if(n===Ce||n===Tr)return{type:22,value:wA.apply(void 0,e)};if(vn(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===Ce||this.peekCodePoint(0)===Tr?(this.consumeCodePoint(),{type:22,value:wA.apply(void 0,e)}):(this.consumeBadUrlRemnants(),Hn);if(n===_n||n===yn||n===Nn||KC(n))return this.consumeBadUrlRemnants(),Hn;if(n===Cr)if(Ke(n,this.peekCodePoint(0)))e.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),Hn;else e.push(n)}},A.prototype.consumeWhiteSpace=function(){for(;vn(this.peekCodePoint(0));)this.consumeCodePoint()},A.prototype.consumeBadUrlRemnants=function(){for(;;){var e=this.consumeCodePoint();if(e===Tr||e===Ce)return;Ke(e,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},A.prototype.consumeStringSlice=function(e){for(var t=5e4,r="";e>0;){var n=Math.min(t,e);r+=wA.apply(void 0,this._value.splice(0,n)),e-=n}return this._value.shift(),r},A.prototype.consumeStringToken=function(e){var t="",r=0;do{var n=this._value[r];if(n===Ce||n===void 0||n===e)return t+=this.consumeStringSlice(r),{type:0,value:t};if(n===In)return this._value.splice(0,r),e1;if(n===Cr){var s=this._value[r+1];s!==Ce&&s!==void 0&&(s===In?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):Ke(n,s)&&(t+=this.consumeStringSlice(r),t+=wA(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},A.prototype.consumeNumber=function(){var e=[],t=pr,r=this.peekCodePoint(0);for((r===ct||r===$A)&&e.push(this.consumeCodePoint());PA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===br&&PA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=cc;PA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((r===mc||r===gc)&&((n===ct||n===$A)&&PA(s)||PA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=cc;PA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[VC(e),t]},A.prototype.consumeNumericToken=function(){var e=this.consumeNumber(),t=e[0],r=e[1],n=this.peekCodePoint(0),s=this.peekCodePoint(1),a=this.peekCodePoint(2);if(xn(n,s,a)){var u=this.consumeName();return{type:15,number:t,flags:r,unit:u}}return n===cC?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(yt(e)){for(var t=wA(e);yt(this.peekCodePoint(0))&&t.length<6;)t+=wA(this.consumeCodePoint());vn(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||OC(r)||r>1114111?hc:r}return e===Ce?hc:e},A.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(Cc(t))e+=wA(t);else if(Ke(t,this.peekCodePoint(0)))e+=wA(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},A}(),Tc=function(){function A(e){this._tokens=e}return A.create=function(e){var t=new wc;return t.write(e),new A(t.read())},A.parseValue=function(e){return A.create(e).parseComponentValue()},A.parseValues=function(e){return A.create(e).parseComponentValues()},A.prototype.parseComponentValue=function(){for(var e=this.consumeToken();e.type===31;)e=this.consumeToken();if(e.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(e);var t=this.consumeComponentValue();do e=this.consumeToken();while(e.type===31);if(e.type===32)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},A.prototype.parseComponentValues=function(){for(var e=[];;){var t=this.consumeComponentValue();if(t.type===32)return e;e.push(t),e.push()}},A.prototype.consumeComponentValue=function(){var e=this.consumeToken();switch(e.type){case 11:case 28:case 2:return this.consumeSimpleBlock(e.type);case 19:return this.consumeFunction(e)}return e},A.prototype.consumeSimpleBlock=function(e){for(var t={type:e,values:[]},r=this.consumeToken();;){if(r.type===32||c1(r,e))return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue()),r=this.consumeToken()}},A.prototype.consumeFunction=function(e){for(var t={name:e.value,values:[],type:18};;){var r=this.consumeToken();if(r.type===32||r.type===3)return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue())}},A.prototype.consumeToken=function(){var e=this._tokens.shift();return typeof e>"u"?Ma:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A}(),Ur=function(A){return A.type===15},Nt=function(A){return A.type===17},iA=function(A){return A.type===20},o1=function(A){return A.type===0},ka=function(A,e){return iA(A)&&A.value===e},bc=function(A){return A.type!==31},St=function(A){return A.type!==31&&A.type!==4},we=function(A){var e=[],t=[];return A.forEach(function(r){if(r.type===4){if(t.length===0)throw new Error("Error parsing function args, zero tokens for arg");e.push(t),t=[];return}r.type!==31&&t.push(r)}),t.length&&e.push(t),e},c1=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},Ve=function(A){return A.type===17||A.type===15},UA=function(A){return A.type===16||Ve(A)},Uc=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},OA={type:17,number:0,flags:pr},Pa={type:16,number:50,flags:pr},Ge={type:16,number:100,flags:pr},Qr=function(A,e,t){var r=A[0],n=A[1];return[lA(r,e),lA(typeof n<"u"?n:r,t)]},lA=function(A,e){if(A.type===16)return A.number/100*e;if(Ur(A))switch(A.unit){case"rem":case"em":return 16*A.number;case"px":default:return A.number}return A.number},Qc="deg",Fc="grad",Ic="rad",_c="turn",Dn={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case Qc:return Math.PI*e.number/180;case Fc:return Math.PI/200*e.number;case Ic:return e.number;case _c:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},yc=function(A){return A.type===15&&(A.unit===Qc||A.unit===Fc||A.unit===Ic||A.unit===_c)},Nc=function(A){var e=A.filter(iA).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[OA,OA];case"to top":case"bottom":return ae(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[OA,Ge];case"to right":case"left":return ae(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[Ge,Ge];case"to bottom":case"top":return ae(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[Ge,OA];case"to left":case"right":return ae(270)}return 0},ae=function(A){return Math.PI*A/180},Ye={name:"color",parse:function(A,e){if(e.type===18){var t=l1[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return t(A,e.values)}if(e.type===5){if(e.value.length===3){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3);return We(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),1)}if(e.value.length===4){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3),a=e.value.substring(3,4);return We(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),parseInt(a+a,16)/255)}if(e.value.length===6){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6);return We(parseInt(r,16),parseInt(n,16),parseInt(s,16),1)}if(e.value.length===8){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6),a=e.value.substring(6,8);return We(parseInt(r,16),parseInt(n,16),parseInt(s,16),parseInt(a,16)/255)}}if(e.type===20){var u=_e[e.value.toUpperCase()];if(typeof u<"u")return u}return _e.TRANSPARENT}},Xe=function(A){return(255&A)===0},LA=function(A){var e=255&A,t=255&A>>8,r=255&A>>16,n=255&A>>24;return e<255?"rgba("+n+","+r+","+t+","+e/255+")":"rgb("+n+","+r+","+t+")"},We=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(r*255)<<0)>>>0},Sc=function(A,e){if(A.type===17)return A.number;if(A.type===16){var t=e===3?1:255;return e===3?A.number/100*t:Math.round(A.number/100*t)}return 0},vc=function(A,e){var t=e.filter(St);if(t.length===3){var r=t.map(Sc),n=r[0],s=r[1],a=r[2];return We(n,s,a,1)}if(t.length===4){var u=t.map(Sc),n=u[0],s=u[1],a=u[2],o=u[3];return We(n,s,a,o)}return 0};function Ka(A,e,t){return t<0&&(t+=1),t>=1&&(t-=1),t<1/6?(e-A)*t*6+A:t<1/2?e:t<2/3?(e-A)*6*(2/3-t)+A:A}var Lc=function(A,e){var t=e.filter(St),r=t[0],n=t[1],s=t[2],a=t[3],u=(r.type===17?ae(r.number):Dn.parse(A,r))/(Math.PI*2),o=UA(n)?n.number/100:0,l=UA(s)?s.number/100:0,f=typeof a<"u"&&UA(a)?lA(a,1):1;if(o===0)return We(l*255,l*255,l*255,1);var h=l<=.5?l*(o+1):l+o-l*o,d=l*2-h,C=Ka(d,h,u+1/3),p=Ka(d,h,u),T=Ka(d,h,u-1/3);return We(C*255,p*255,T*255,f)},l1={hsl:Lc,hsla:Lc,rgb:vc,rgba:vc},Fr=function(A,e){return Ye.parse(A,Tc.create(e).parseComponentValue())},_e={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},f1={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(iA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},h1={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},On=function(A,e){var t=Ye.parse(A,e[0]),r=e[1];return r&&UA(r)?{color:t,stop:r}:{color:t,stop:null}},xc=function(A,e){var t=A[0],r=A[A.length-1];t.stop===null&&(t.stop=OA),r.stop===null&&(r.stop=Ge);for(var n=[],s=0,a=0;a<A.length;a++){var u=A[a].stop;if(u!==null){var o=lA(u,e);o>s?n.push(o):n.push(s),s=o}else n.push(null)}for(var l=null,a=0;a<n.length;a++){var f=n[a];if(f===null)l===null&&(l=a);else if(l!==null){for(var h=a-l,d=n[l-1],C=(f-d)/(h+1),p=1;p<=h;p++)n[l+p-1]=C*p;l=null}}return A.map(function(T,U){var _=T.color;return{color:_,stop:Math.max(Math.min(1,n[U]/e),0)}})},d1=function(A,e,t){var r=e/2,n=t/2,s=lA(A[0],e)-r,a=n-lA(A[1],t);return(Math.atan2(a,s)+Math.PI*2)%(Math.PI*2)},B1=function(A,e,t){var r=typeof A=="number"?A:d1(A,e,t),n=Math.abs(e*Math.sin(r))+Math.abs(t*Math.cos(r)),s=e/2,a=t/2,u=n/2,o=Math.sin(r-Math.PI/2)*u,l=Math.cos(r-Math.PI/2)*u;return[n,s-l,s+l,a-o,a+o]},de=function(A,e){return Math.sqrt(A*A+e*e)},Hc=function(A,e,t,r,n){var s=[[0,0],[0,e],[A,0],[A,e]];return s.reduce(function(a,u){var o=u[0],l=u[1],f=de(t-o,r-l);return(n?f<a.optimumDistance:f>a.optimumDistance)?{optimumCorner:u,optimumDistance:f}:a},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},g1=function(A,e,t,r,n){var s=0,a=0;switch(A.size){case 0:A.shape===0?s=a=Math.min(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.min(Math.abs(e),Math.abs(e-r)),a=Math.min(Math.abs(t),Math.abs(t-n)));break;case 2:if(A.shape===0)s=a=Math.min(de(e,t),de(e,t-n),de(e-r,t),de(e-r,t-n));else if(A.shape===1){var u=Math.min(Math.abs(t),Math.abs(t-n))/Math.min(Math.abs(e),Math.abs(e-r)),o=Hc(r,n,e,t,!0),l=o[0],f=o[1];s=de(l-e,(f-t)/u),a=u*s}break;case 1:A.shape===0?s=a=Math.max(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.max(Math.abs(e),Math.abs(e-r)),a=Math.max(Math.abs(t),Math.abs(t-n)));break;case 3:if(A.shape===0)s=a=Math.max(de(e,t),de(e,t-n),de(e-r,t),de(e-r,t-n));else if(A.shape===1){var u=Math.max(Math.abs(t),Math.abs(t-n))/Math.max(Math.abs(e),Math.abs(e-r)),h=Hc(r,n,e,t,!1),l=h[0],f=h[1];s=de(l-e,(f-t)/u),a=u*s}break}return Array.isArray(A.size)&&(s=lA(A.size[0],r),a=A.size.length===2?lA(A.size[1],n):s),[s,a]},E1=function(A,e){var t=ae(180),r=[];return we(e).forEach(function(n,s){if(s===0){var a=n[0];if(a.type===20&&a.value==="to"){t=Nc(n);return}else if(yc(a)){t=Dn.parse(A,a);return}}var u=On(A,n);r.push(u)}),{angle:t,stops:r,type:1}},Rn=function(A,e){var t=ae(180),r=[];return we(e).forEach(function(n,s){if(s===0){var a=n[0];if(a.type===20&&["top","left","right","bottom"].indexOf(a.value)!==-1){t=Nc(n);return}else if(yc(a)){t=(Dn.parse(A,a)+ae(270))%ae(360);return}}var u=On(A,n);r.push(u)}),{angle:t,stops:r,type:1}},m1=function(A,e){var t=ae(180),r=[],n=1,s=0,a=3,u=[];return we(e).forEach(function(o,l){var f=o[0];if(l===0){if(iA(f)&&f.value==="linear"){n=1;return}else if(iA(f)&&f.value==="radial"){n=2;return}}if(f.type===18){if(f.name==="from"){var h=Ye.parse(A,f.values[0]);r.push({stop:OA,color:h})}else if(f.name==="to"){var h=Ye.parse(A,f.values[0]);r.push({stop:Ge,color:h})}else if(f.name==="color-stop"){var d=f.values.filter(St);if(d.length===2){var h=Ye.parse(A,d[1]),C=d[0];Nt(C)&&r.push({stop:{type:16,number:C.number*100,flags:C.flags},color:h})}}}}),n===1?{angle:(t+ae(180))%ae(360),stops:r,type:n}:{size:a,shape:s,stops:r,position:u,type:n}},Dc="closest-side",Oc="farthest-side",Rc="closest-corner",Mc="farthest-corner",kc="circle",Pc="ellipse",Kc="cover",Vc="contain",p1=function(A,e){var t=0,r=3,n=[],s=[];return we(e).forEach(function(a,u){var o=!0;if(u===0){var l=!1;o=a.reduce(function(h,d){if(l)if(iA(d))switch(d.value){case"center":return s.push(Pa),h;case"top":case"left":return s.push(OA),h;case"right":case"bottom":return s.push(Ge),h}else(UA(d)||Ve(d))&&s.push(d);else if(iA(d))switch(d.value){case kc:return t=0,!1;case Pc:return t=1,!1;case"at":return l=!0,!1;case Dc:return r=0,!1;case Kc:case Oc:return r=1,!1;case Vc:case Rc:return r=2,!1;case Mc:return r=3,!1}else if(Ve(d)||UA(d))return Array.isArray(r)||(r=[]),r.push(d),!1;return h},o)}if(o){var f=On(A,a);n.push(f)}}),{size:r,shape:t,stops:n,position:s,type:2}},Mn=function(A,e){var t=0,r=3,n=[],s=[];return we(e).forEach(function(a,u){var o=!0;if(u===0?o=a.reduce(function(f,h){if(iA(h))switch(h.value){case"center":return s.push(Pa),!1;case"top":case"left":return s.push(OA),!1;case"right":case"bottom":return s.push(Ge),!1}else if(UA(h)||Ve(h))return s.push(h),!1;return f},o):u===1&&(o=a.reduce(function(f,h){if(iA(h))switch(h.value){case kc:return t=0,!1;case Pc:return t=1,!1;case Vc:case Dc:return r=0,!1;case Oc:return r=1,!1;case Rc:return r=2,!1;case Kc:case Mc:return r=3,!1}else if(Ve(h)||UA(h))return Array.isArray(r)||(r=[]),r.push(h),!1;return f},o)),o){var l=On(A,a);n.push(l)}}),{size:r,shape:t,stops:n,position:s,type:2}},C1=function(A){return A.type===1},w1=function(A){return A.type===2},Va={name:"image",parse:function(A,e){if(e.type===22){var t={url:e.value,type:0};return A.cache.addImage(e.value),t}if(e.type===18){var r=Gc[e.name];if(typeof r>"u")throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return r(A,e.values)}throw new Error("Unsupported image type "+e.type)}};function T1(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!Gc[A.name])}var Gc={"linear-gradient":E1,"-moz-linear-gradient":Rn,"-ms-linear-gradient":Rn,"-o-linear-gradient":Rn,"-webkit-linear-gradient":Rn,"radial-gradient":p1,"-moz-radial-gradient":Mn,"-ms-radial-gradient":Mn,"-o-radial-gradient":Mn,"-webkit-radial-gradient":Mn,"-webkit-gradient":m1},b1={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e.filter(function(r){return St(r)&&T1(r)}).map(function(r){return Va.parse(A,r)})}},U1={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(iA(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Q1={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return we(e).map(function(t){return t.filter(UA)}).map(Uc)}},F1={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return we(e).map(function(t){return t.filter(iA).map(function(r){return r.value}).join(" ")}).map(I1)}},I1=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;case"repeat":default:return 0}},vt;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(vt||(vt={}));var _1={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return we(e).map(function(t){return t.filter(y1)})}},y1=function(A){return iA(A)||UA(A)},kn=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},N1=kn("top"),S1=kn("right"),v1=kn("bottom"),L1=kn("left"),Pn=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return Uc(t.filter(UA))}}},x1=Pn("top-left"),H1=Pn("top-right"),D1=Pn("bottom-right"),O1=Pn("bottom-left"),Kn=function(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(e,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},R1=Kn("top"),M1=Kn("right"),k1=Kn("bottom"),P1=Kn("left"),Vn=function(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(e,t){return Ur(t)?t.number:0}}},K1=Vn("top"),V1=Vn("right"),G1=Vn("bottom"),Y1=Vn("left"),X1={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},W1={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){switch(e){case"rtl":return 1;case"ltr":default:return 0}}},J1={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).reduce(function(t,r){return t|q1(r.value)},0)}},q1=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},j1={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},$1={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,e){return e.type===20&&e.value==="normal"?0:e.type===17||e.type===15?e.number:0}},Gn;(function(A){A.NORMAL="normal",A.STRICT="strict"})(Gn||(Gn={}));var Z1={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"strict":return Gn.STRICT;case"normal":default:return Gn.NORMAL}}},z1={name:"line-height",initialValue:"normal",prefix:!1,type:4},Yc=function(A,e){return iA(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:UA(A)?lA(A,e):e},Aw={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:Va.parse(A,e)}},ew={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){switch(e){case"inside":return 0;case"outside":default:return 1}}},Ga={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;case"none":default:return-1}}},Yn=function(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}},tw=Yn("top"),rw=Yn("right"),nw=Yn("bottom"),sw=Yn("left"),aw={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;case"visible":default:return 0}})}},iw={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-word":return"break-word";case"normal":default:return"normal"}}},Xn=function(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},uw=Xn("top"),ow=Xn("right"),cw=Xn("bottom"),lw=Xn("left"),fw={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,e){switch(e){case"right":return 2;case"center":case"justify":return 1;case"left":default:return 0}}},hw={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},dw={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&ka(e[0],"none")?[]:we(e).map(function(t){for(var r={color:_e.TRANSPARENT,offsetX:OA,offsetY:OA,blur:OA},n=0,s=0;s<t.length;s++){var a=t[s];Ve(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:r.blur=a,n++):r.color=Ye.parse(A,a)}return r})}},Bw={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},gw={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,e){if(e.type===20&&e.value==="none")return null;if(e.type===18){var t=pw[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},Ew=function(A){var e=A.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},mw=function(A){var e=A.filter(function(o){return o.type===17}).map(function(o){return o.number}),t=e[0],r=e[1];e[2],e[3];var n=e[4],s=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var a=e[12],u=e[13];return e[14],e[15],e.length===16?[t,r,n,s,a,u]:null},pw={matrix:Ew,matrix3d:mw},Xc={type:16,number:50,flags:pr},Cw=[Xc,Xc],ww={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var t=e.filter(UA);return t.length!==2?Cw:[t[0],t[1]]}},Tw={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"hidden":return 1;case"collapse":return 2;case"visible":default:return 0}}},Ir;(function(A){A.NORMAL="normal",A.BREAK_ALL="break-all",A.KEEP_ALL="keep-all"})(Ir||(Ir={}));for(var bw={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-all":return Ir.BREAK_ALL;case"keep-all":return Ir.KEEP_ALL;case"normal":default:return Ir.NORMAL}}},Uw={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,e){if(e.type===20)return{auto:!0,order:0};if(Nt(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},Wc={name:"time",parse:function(A,e){if(e.type===15)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")}},Qw={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return Nt(e)?e.number:1}},Fw={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Iw={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(iA).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return t!==0})}},_w={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,e){var t=[],r=[];return e.forEach(function(n){switch(n.type){case 20:case 0:t.push(n.value);break;case 17:t.push(n.number.toString());break;case 4:r.push(t.join(" ")),t.length=0;break}}),t.length&&r.push(t.join(" ")),r.map(function(n){return n.indexOf(" ")===-1?n:"'"+n+"'"})}},yw={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Nw={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,e){if(Nt(e))return e.number;if(iA(e))switch(e.value){case"bold":return 700;case"normal":default:return 400}return 400}},Sw={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(iA).map(function(t){return t.value})}},vw={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";case"normal":default:return"normal"}}},FA=function(A,e){return(A&e)!==0},Lw={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e}},xw={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;for(var r=[],n=e.filter(bc),s=0;s<n.length;s++){var a=n[s],u=n[s+1];if(a.type===20){var o=u&&Nt(u)?u.number:1;r.push({counter:a.value,increment:o})}}return r}},Hw={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var t=[],r=e.filter(bc),n=0;n<r.length;n++){var s=r[n],a=r[n+1];if(iA(s)&&s.value!=="none"){var u=a&&Nt(a)?a.number:0;t.push({counter:s.value,reset:u})}}return t}},Dw={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter(Ur).map(function(t){return Wc.parse(A,t)})}},Ow={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;var r=[],n=e.filter(o1);if(n.length%2!==0)return null;for(var s=0;s<n.length;s+=2){var a=n[s].value,u=n[s+1].value;r.push({open:a,close:u})}return r}},Jc=function(A,e,t){if(!A)return"";var r=A[Math.min(e,A.length-1)];return r?t?r.open:r.close:""},Rw={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&ka(e[0],"none")?[]:we(e).map(function(t){for(var r={color:255,offsetX:OA,offsetY:OA,blur:OA,spread:OA,inset:!1},n=0,s=0;s<t.length;s++){var a=t[s];ka(a,"inset")?r.inset=!0:Ve(a)?(n===0?r.offsetX=a:n===1?r.offsetY=a:n===2?r.blur=a:r.spread=a,n++):r.color=Ye.parse(A,a)}return r})}},Mw={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var t=[0,1,2],r=[];return e.filter(iA).forEach(function(n){switch(n.value){case"stroke":r.push(1);break;case"fill":r.push(0);break;case"markers":r.push(2);break}}),t.forEach(function(n){r.indexOf(n)===-1&&r.push(n)}),r}},kw={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Pw={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return Ur(e)?e.number:0}},Kw=function(){function A(e,t){var r,n;this.animationDuration=R(e,Dw,t.animationDuration),this.backgroundClip=R(e,f1,t.backgroundClip),this.backgroundColor=R(e,h1,t.backgroundColor),this.backgroundImage=R(e,b1,t.backgroundImage),this.backgroundOrigin=R(e,U1,t.backgroundOrigin),this.backgroundPosition=R(e,Q1,t.backgroundPosition),this.backgroundRepeat=R(e,F1,t.backgroundRepeat),this.backgroundSize=R(e,_1,t.backgroundSize),this.borderTopColor=R(e,N1,t.borderTopColor),this.borderRightColor=R(e,S1,t.borderRightColor),this.borderBottomColor=R(e,v1,t.borderBottomColor),this.borderLeftColor=R(e,L1,t.borderLeftColor),this.borderTopLeftRadius=R(e,x1,t.borderTopLeftRadius),this.borderTopRightRadius=R(e,H1,t.borderTopRightRadius),this.borderBottomRightRadius=R(e,D1,t.borderBottomRightRadius),this.borderBottomLeftRadius=R(e,O1,t.borderBottomLeftRadius),this.borderTopStyle=R(e,R1,t.borderTopStyle),this.borderRightStyle=R(e,M1,t.borderRightStyle),this.borderBottomStyle=R(e,k1,t.borderBottomStyle),this.borderLeftStyle=R(e,P1,t.borderLeftStyle),this.borderTopWidth=R(e,K1,t.borderTopWidth),this.borderRightWidth=R(e,V1,t.borderRightWidth),this.borderBottomWidth=R(e,G1,t.borderBottomWidth),this.borderLeftWidth=R(e,Y1,t.borderLeftWidth),this.boxShadow=R(e,Rw,t.boxShadow),this.color=R(e,X1,t.color),this.direction=R(e,W1,t.direction),this.display=R(e,J1,t.display),this.float=R(e,j1,t.cssFloat),this.fontFamily=R(e,_w,t.fontFamily),this.fontSize=R(e,yw,t.fontSize),this.fontStyle=R(e,vw,t.fontStyle),this.fontVariant=R(e,Sw,t.fontVariant),this.fontWeight=R(e,Nw,t.fontWeight),this.letterSpacing=R(e,$1,t.letterSpacing),this.lineBreak=R(e,Z1,t.lineBreak),this.lineHeight=R(e,z1,t.lineHeight),this.listStyleImage=R(e,Aw,t.listStyleImage),this.listStylePosition=R(e,ew,t.listStylePosition),this.listStyleType=R(e,Ga,t.listStyleType),this.marginTop=R(e,tw,t.marginTop),this.marginRight=R(e,rw,t.marginRight),this.marginBottom=R(e,nw,t.marginBottom),this.marginLeft=R(e,sw,t.marginLeft),this.opacity=R(e,Qw,t.opacity);var s=R(e,aw,t.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=R(e,iw,t.overflowWrap),this.paddingTop=R(e,uw,t.paddingTop),this.paddingRight=R(e,ow,t.paddingRight),this.paddingBottom=R(e,cw,t.paddingBottom),this.paddingLeft=R(e,lw,t.paddingLeft),this.paintOrder=R(e,Mw,t.paintOrder),this.position=R(e,hw,t.position),this.textAlign=R(e,fw,t.textAlign),this.textDecorationColor=R(e,Fw,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=R(e,Iw,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=R(e,dw,t.textShadow),this.textTransform=R(e,Bw,t.textTransform),this.transform=R(e,gw,t.transform),this.transformOrigin=R(e,ww,t.transformOrigin),this.visibility=R(e,Tw,t.visibility),this.webkitTextStrokeColor=R(e,kw,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=R(e,Pw,t.webkitTextStrokeWidth),this.wordBreak=R(e,bw,t.wordBreak),this.zIndex=R(e,Uw,t.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return Xe(this.backgroundColor)},A.prototype.isTransformed=function(){return this.transform!==null},A.prototype.isPositioned=function(){return this.position!==0},A.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},A.prototype.isFloating=function(){return this.float!==0},A.prototype.isInlineLevel=function(){return FA(this.display,4)||FA(this.display,33554432)||FA(this.display,268435456)||FA(this.display,536870912)||FA(this.display,67108864)||FA(this.display,134217728)},A}(),Vw=function(){function A(e,t){this.content=R(e,Lw,t.content),this.quotes=R(e,Ow,t.quotes)}return A}(),qc=function(){function A(e,t){this.counterIncrement=R(e,xw,t.counterIncrement),this.counterReset=R(e,Hw,t.counterReset)}return A}(),R=function(A,e,t){var r=new wc,n=t!==null&&typeof t<"u"?t.toString():e.initialValue;r.write(n);var s=new Tc(r.read());switch(e.type){case 2:var a=s.parseComponentValue();return e.parse(A,iA(a)?a.value:e.initialValue);case 0:return e.parse(A,s.parseComponentValue());case 1:return e.parse(A,s.parseComponentValues());case 4:return s.parseComponentValue();case 3:switch(e.format){case"angle":return Dn.parse(A,s.parseComponentValue());case"color":return Ye.parse(A,s.parseComponentValue());case"image":return Va.parse(A,s.parseComponentValue());case"length":var u=s.parseComponentValue();return Ve(u)?u:OA;case"length-percentage":var o=s.parseComponentValue();return UA(o)?o:OA;case"time":return Wc.parse(A,s.parseComponentValue())}break}},Gw="data-html2canvas-debug",Yw=function(A){var e=A.getAttribute(Gw);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Ya=function(A,e){var t=Yw(A);return t===1||e===t},Te=function(){function A(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,Ya(t,3))debugger;this.styles=new Kw(e,window.getComputedStyle(t,null)),si(t)&&(this.styles.animationDuration.some(function(r){return r>0})&&(t.style.animationDuration="0s"),this.styles.transform!==null&&(t.style.transform="none")),this.bounds=gn(this.context,t),Ya(t,4)&&(this.flags|=16)}return A}(),Xw="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",jc="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",_r=typeof Uint8Array>"u"?[]:new Uint8Array(256),Wn=0;Wn<jc.length;Wn++)_r[jc.charCodeAt(Wn)]=Wn;for(var Ww=function(A){var e=A.length*.75,t=A.length,r,n=0,s,a,u,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var l=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),f=Array.isArray(l)?l:new Uint8Array(l);for(r=0;r<t;r+=4)s=_r[A.charCodeAt(r)],a=_r[A.charCodeAt(r+1)],u=_r[A.charCodeAt(r+2)],o=_r[A.charCodeAt(r+3)],f[n++]=s<<2|a>>4,f[n++]=(a&15)<<4|u>>2,f[n++]=(u&3)<<6|o&63;return l},Jw=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},qw=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},lt=5,Xa=11,Wa=2,jw=Xa-lt,$c=65536>>lt,$w=1<<lt,Ja=$w-1,Zw=1024>>lt,zw=$c+Zw,AT=zw,eT=32,tT=AT+eT,rT=65536>>Xa,nT=1<<jw,sT=nT-1,Zc=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},aT=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},iT=function(A,e){var t=Ww(A),r=Array.isArray(t)?qw(t):new Uint32Array(t),n=Array.isArray(t)?Jw(t):new Uint16Array(t),s=24,a=Zc(n,s/2,r[4]/2),u=r[5]===2?Zc(n,(s+r[4])/2):aT(r,Math.ceil((s+r[4])/4));return new uT(r[0],r[1],r[2],r[3],a,u)},uT=function(){function A(e,t,r,n,s,a){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=a}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>lt],t=(t<<Wa)+(e&Ja),this.data[t];if(e<=65535)return t=this.index[$c+(e-55296>>lt)],t=(t<<Wa)+(e&Ja),this.data[t];if(e<this.highStart)return t=tT-rT+(e>>Xa),t=this.index[t],t+=e>>lt&sT,t=this.index[t],t=(t<<Wa)+(e&Ja),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),zc="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",oT=typeof Uint8Array>"u"?[]:new Uint8Array(256),Jn=0;Jn<zc.length;Jn++)oT[zc.charCodeAt(Jn)]=Jn;var cT=1,qa=2,ja=3,Al=4,el=5,lT=7,tl=8,$a=9,Za=10,rl=11,nl=12,sl=13,al=14,za=15,fT=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},hT=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var a=A[n];a<=65535?r.push(a):(a-=65536,r.push((a>>10)+55296,a%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},dT=iT(Xw),ie="×",Ai="÷",BT=function(A){return dT.get(A)},gT=function(A,e,t){var r=t-2,n=e[r],s=e[t-1],a=e[t];if(s===qa&&a===ja)return ie;if(s===qa||s===ja||s===Al||a===qa||a===ja||a===Al)return Ai;if(s===tl&&[tl,$a,rl,nl].indexOf(a)!==-1||(s===rl||s===$a)&&(a===$a||a===Za)||(s===nl||s===Za)&&a===Za||a===sl||a===el||a===lT||s===cT)return ie;if(s===sl&&a===al){for(;n===el;)n=e[--r];if(n===al)return ie}if(s===za&&a===za){for(var u=0;n===za;)u++,n=e[--r];if(u%2===0)return ie}return Ai},ET=function(A){var e=fT(A),t=e.length,r=0,n=0,s=e.map(BT);return{next:function(){if(r>=t)return{done:!0,value:null};for(var a=ie;r<t&&(a=gT(e,s,++r))===ie;);if(a!==ie||r===t){var u=hT.apply(null,e.slice(n,r));return n=r,{value:u,done:!1}}return{done:!0,value:null}}}},mT=function(A){for(var e=ET(A),t=[],r;!(r=e.next()).done;)r.value&&t.push(r.value.slice());return t},pT=function(A){var e=123;if(A.createRange){var t=A.createRange();if(t.getBoundingClientRect){var r=A.createElement("boundtest");r.style.height=e+"px",r.style.display="block",A.body.appendChild(r),t.selectNode(r);var n=t.getBoundingClientRect(),s=Math.round(n.height);if(A.body.removeChild(r),s===e)return!0}}return!1},CT=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var t=A.createRange();e.innerHTML=typeof"".repeat=="function"?"&#128104;".repeat(10):"";var r=e.firstChild,n=En(r.data).map(function(o){return wA(o)}),s=0,a={},u=n.every(function(o,l){t.setStart(r,s),t.setEnd(r,s+o.length);var f=t.getBoundingClientRect();s+=o.length;var h=f.x>a.x||f.y>a.y;return a=f,l===0?!0:h});return A.body.removeChild(e),u},wT=function(){return typeof new Image().crossOrigin<"u"},TT=function(){return typeof new XMLHttpRequest().responseType=="string"},bT=function(A){var e=new Image,t=A.createElement("canvas"),r=t.getContext("2d");if(!r)return!1;e.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(e,0,0),t.toDataURL()}catch{return!1}return!0},il=function(A){return A[0]===0&&A[1]===255&&A[2]===0&&A[3]===255},UT=function(A){var e=A.createElement("canvas"),t=100;e.width=t,e.height=t;var r=e.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,t,t);var n=new Image,s=e.toDataURL();n.src=s;var a=ei(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),ul(a).then(function(u){r.drawImage(u,0,0);var o=r.getImageData(0,0,t,t).data;r.fillStyle="red",r.fillRect(0,0,t,t);var l=A.createElement("div");return l.style.backgroundImage="url("+s+")",l.style.height=t+"px",il(o)?ul(ei(t,t,0,0,l)):Promise.reject(!1)}).then(function(u){return r.drawImage(u,0,0),il(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},ei=function(A,e,t,r,n){var s="http://www.w3.org/2000/svg",a=document.createElementNS(s,"svg"),u=document.createElementNS(s,"foreignObject");return a.setAttributeNS(null,"width",A.toString()),a.setAttributeNS(null,"height",e.toString()),u.setAttributeNS(null,"width","100%"),u.setAttributeNS(null,"height","100%"),u.setAttributeNS(null,"x",t.toString()),u.setAttributeNS(null,"y",r.toString()),u.setAttributeNS(null,"externalResourcesRequired","true"),a.appendChild(u),u.appendChild(n),a},ul=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){return e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},RA={get SUPPORT_RANGE_BOUNDS(){var A=pT(document);return Object.defineProperty(RA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=RA.SUPPORT_RANGE_BOUNDS&&CT(document);return Object.defineProperty(RA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=bT(document);return Object.defineProperty(RA,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A=typeof Array.from=="function"&&typeof window.fetch=="function"?UT(document):Promise.resolve(!1);return Object.defineProperty(RA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=wT();return Object.defineProperty(RA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=TT();return Object.defineProperty(RA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(RA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(RA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},yr=function(){function A(e,t){this.text=e,this.bounds=t}return A}(),QT=function(A,e,t,r){var n=_T(e,t),s=[],a=0;return n.forEach(function(u){if(t.textDecorationLine.length||u.trim().length>0)if(RA.SUPPORT_RANGE_BOUNDS){var o=ol(r,a,u.length).getClientRects();if(o.length>1){var l=ti(u),f=0;l.forEach(function(d){s.push(new yr(d,Fe.fromDOMRectList(A,ol(r,f+a,d.length).getClientRects()))),f+=d.length})}else s.push(new yr(u,Fe.fromDOMRectList(A,o)))}else{var h=r.splitText(u.length);s.push(new yr(u,FT(A,r))),r=h}else RA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(u.length));a+=u.length}),s},FT=function(A,e){var t=e.ownerDocument;if(t){var r=t.createElement("html2canvaswrapper");r.appendChild(e.cloneNode(!0));var n=e.parentNode;if(n){n.replaceChild(r,e);var s=gn(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),s}}return Fe.EMPTY},ol=function(A,e,t){var r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");var n=r.createRange();return n.setStart(A,e),n.setEnd(A,e+t),n},ti=function(A){if(RA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(A)).map(function(t){return t.segment})}return mT(A)},IT=function(A,e){if(RA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(function(r){return r.segment})}return NT(A,e)},_T=function(A,e){return e.letterSpacing!==0?ti(A):IT(A,e)},yT=[32,160,4961,65792,65793,4153,4241],NT=function(A,e){for(var t=rC(A,{lineBreak:e.lineBreak,wordBreak:e.overflowWrap==="break-word"?"break-word":e.wordBreak}),r=[],n,s=function(){if(n.value){var a=n.value.slice(),u=En(a),o="";u.forEach(function(l){yT.indexOf(l)===-1?o+=wA(l):(o.length&&r.push(o),r.push(wA(l)),o="")}),o.length&&r.push(o)}};!(n=t.next()).done;)s();return r},ST=function(){function A(e,t,r){this.text=vT(t.data,r.textTransform),this.textBounds=QT(e,this.text,r,t)}return A}(),vT=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(LT,xT);case 2:return A.toUpperCase();default:return A}},LT=/(^|\s|:|-|\(|\))([a-z])/g,xT=function(A,e,t){return A.length>0?e+t.toUpperCase():A},cl=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.src=r.currentSrc||r.src,n.intrinsicWidth=r.naturalWidth,n.intrinsicHeight=r.naturalHeight,n.context.cache.addImage(n.src),n}return e}(Te),ll=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r,n.intrinsicWidth=r.width,n.intrinsicHeight=r.height,n}return e}(Te),fl=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=new XMLSerializer,a=gn(t,r);return r.setAttribute("width",a.width+"px"),r.setAttribute("height",a.height+"px"),n.svg="data:image/svg+xml,"+encodeURIComponent(s.serializeToString(r)),n.intrinsicWidth=r.width.baseVal.value,n.intrinsicHeight=r.height.baseVal.value,n.context.cache.addImage(n.svg),n}return e}(Te),hl=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e}(Te),ri=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.start=r.start,n.reversed=typeof r.reversed=="boolean"&&r.reversed===!0,n}return e}(Te),HT=[{type:15,flags:0,unit:"px",number:3}],DT=[{type:16,flags:0,number:50}],OT=function(A){return A.width>A.height?new Fe(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new Fe(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},RT=function(A){var e=A.type===MT?new Array(A.value.length+1).join("•"):A.value;return e.length===0?A.placeholder||"":e},qn="checkbox",jn="radio",MT="password",dl=707406591,ni=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;switch(n.type=r.type.toLowerCase(),n.checked=r.checked,n.value=RT(r),(n.type===qn||n.type===jn)&&(n.styles.backgroundColor=3739148031,n.styles.borderTopColor=n.styles.borderRightColor=n.styles.borderBottomColor=n.styles.borderLeftColor=2779096575,n.styles.borderTopWidth=n.styles.borderRightWidth=n.styles.borderBottomWidth=n.styles.borderLeftWidth=1,n.styles.borderTopStyle=n.styles.borderRightStyle=n.styles.borderBottomStyle=n.styles.borderLeftStyle=1,n.styles.backgroundClip=[0],n.styles.backgroundOrigin=[0],n.bounds=OT(n.bounds)),n.type){case qn:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=HT;break;case jn:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=DT;break}return n}return e}(Te),Bl=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=r.options[r.selectedIndex||0];return n.value=s&&s.text||"",n}return e}(Te),gl=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e}(Te),El=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;n.src=r.src,n.width=parseInt(r.width,10)||0,n.height=parseInt(r.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{if(r.contentWindow&&r.contentWindow.document&&r.contentWindow.document.documentElement){n.tree=pl(t,r.contentWindow.document.documentElement);var s=r.contentWindow.document.documentElement?Fr(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):_e.TRANSPARENT,a=r.contentWindow.document.body?Fr(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):_e.TRANSPARENT;n.backgroundColor=Xe(s)?Xe(a)?n.styles.backgroundColor:a:s}}catch{}return n}return e}(Te),kT=["OL","UL","MENU"],$n=function(A,e,t,r){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,Cl(n)&&n.data.trim().length>0)t.textNodes.push(new ST(A,n,t.styles));else if(Lt(n))if(Fl(n)&&n.assignedNodes)n.assignedNodes().forEach(function(u){return $n(A,u,t,r)});else{var a=ml(A,n);a.styles.isVisible()&&(PT(n,a,r)?a.flags|=4:KT(a.styles)&&(a.flags|=2),kT.indexOf(n.tagName)!==-1&&(a.flags|=8),t.elements.push(a),n.slot,n.shadowRoot?$n(A,n.shadowRoot,a,r):!zn(n)&&!wl(n)&&!As(n)&&$n(A,n,a,r))}},ml=function(A,e){return ii(e)?new cl(A,e):Tl(e)?new ll(A,e):wl(e)?new fl(A,e):VT(e)?new hl(A,e):GT(e)?new ri(A,e):YT(e)?new ni(A,e):As(e)?new Bl(A,e):zn(e)?new gl(A,e):Ul(e)?new El(A,e):new Te(A,e)},pl=function(A,e){var t=ml(A,e);return t.flags|=4,$n(A,e,t,t),t},PT=function(A,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||ai(A)&&t.styles.isTransparent()},KT=function(A){return A.isPositioned()||A.isFloating()},Cl=function(A){return A.nodeType===Node.TEXT_NODE},Lt=function(A){return A.nodeType===Node.ELEMENT_NODE},si=function(A){return Lt(A)&&typeof A.style<"u"&&!Zn(A)},Zn=function(A){return typeof A.className=="object"},VT=function(A){return A.tagName==="LI"},GT=function(A){return A.tagName==="OL"},YT=function(A){return A.tagName==="INPUT"},XT=function(A){return A.tagName==="HTML"},wl=function(A){return A.tagName==="svg"},ai=function(A){return A.tagName==="BODY"},Tl=function(A){return A.tagName==="CANVAS"},bl=function(A){return A.tagName==="VIDEO"},ii=function(A){return A.tagName==="IMG"},Ul=function(A){return A.tagName==="IFRAME"},Ql=function(A){return A.tagName==="STYLE"},WT=function(A){return A.tagName==="SCRIPT"},zn=function(A){return A.tagName==="TEXTAREA"},As=function(A){return A.tagName==="SELECT"},Fl=function(A){return A.tagName==="SLOT"},Il=function(A){return A.tagName.indexOf("-")>0},JT=function(){function A(){this.counters={}}return A.prototype.getCounterValue=function(e){var t=this.counters[e];return t&&t.length?t[t.length-1]:1},A.prototype.getCounterValues=function(e){var t=this.counters[e];return t||[]},A.prototype.pop=function(e){var t=this;e.forEach(function(r){return t.counters[r].pop()})},A.prototype.parse=function(e){var t=this,r=e.counterIncrement,n=e.counterReset,s=!0;r!==null&&r.forEach(function(u){var o=t.counters[u.counter];o&&u.increment!==0&&(s=!1,o.length||o.push(1),o[Math.max(0,o.length-1)]+=u.increment)});var a=[];return s&&n.forEach(function(u){var o=t.counters[u.counter];a.push(u.counter),o||(o=t.counters[u.counter]=[]),o.push(u.reset)}),a},A}(),_l={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},yl={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},qT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},jT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},xt=function(A,e,t,r,n,s){return A<e||A>t?Sr(A,n,s.length>0):r.integers.reduce(function(a,u,o){for(;A>=u;)A-=u,a+=r.values[o];return a},"")+s},Nl=function(A,e,t,r){var n="";do t||A--,n=r(A)+n,A/=e;while(A*e>=e);return n},TA=function(A,e,t,r,n){var s=t-e+1;return(A<0?"-":"")+(Nl(Math.abs(A),s,r,function(a){return wA(Math.floor(a%s)+e)})+n)},ft=function(A,e,t){t===void 0&&(t=". ");var r=e.length;return Nl(Math.abs(A),r,!1,function(n){return e[Math.floor(n%r)]})+t},Ht=1,Je=2,qe=4,Nr=8,ye=function(A,e,t,r,n,s){if(A<-9999||A>9999)return Sr(A,4,n.length>0);var a=Math.abs(A),u=n;if(a===0)return e[0]+u;for(var o=0;a>0&&o<=4;o++){var l=a%10;l===0&&FA(s,Ht)&&u!==""?u=e[l]+u:l>1||l===1&&o===0||l===1&&o===1&&FA(s,Je)||l===1&&o===1&&FA(s,qe)&&A>100||l===1&&o>1&&FA(s,Nr)?u=e[l]+(o>0?t[o-1]:"")+u:l===1&&o>0&&(u=t[o-1]+u),a=Math.floor(a/10)}return(A<0?r:"")+u},Sl="十百千萬",vl="拾佰仟萬",Ll="マイナス",ui="마이너스",Sr=function(A,e,t){var r=t?". ":"",n=t?"、":"",s=t?", ":"",a=t?" ":"";switch(e){case 0:return"•"+a;case 1:return"◦"+a;case 2:return"◾"+a;case 5:var u=TA(A,48,57,!0,r);return u.length<4?"0"+u:u;case 4:return ft(A,"〇一二三四五六七八九",n);case 6:return xt(A,1,3999,_l,3,r).toLowerCase();case 7:return xt(A,1,3999,_l,3,r);case 8:return TA(A,945,969,!1,r);case 9:return TA(A,97,122,!1,r);case 10:return TA(A,65,90,!1,r);case 11:return TA(A,1632,1641,!0,r);case 12:case 49:return xt(A,1,9999,yl,3,r);case 35:return xt(A,1,9999,yl,3,r).toLowerCase();case 13:return TA(A,2534,2543,!0,r);case 14:case 30:return TA(A,6112,6121,!0,r);case 15:return ft(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return ft(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return ye(A,"零一二三四五六七八九",Sl,"負",n,Je|qe|Nr);case 47:return ye(A,"零壹貳參肆伍陸柒捌玖",vl,"負",n,Ht|Je|qe|Nr);case 42:return ye(A,"零一二三四五六七八九",Sl,"负",n,Je|qe|Nr);case 41:return ye(A,"零壹贰叁肆伍陆柒捌玖",vl,"负",n,Ht|Je|qe|Nr);case 26:return ye(A,"〇一二三四五六七八九","十百千万",Ll,n,0);case 25:return ye(A,"零壱弐参四伍六七八九","拾百千万",Ll,n,Ht|Je|qe);case 31:return ye(A,"영일이삼사오육칠팔구","십백천만",ui,s,Ht|Je|qe);case 33:return ye(A,"零一二三四五六七八九","十百千萬",ui,s,0);case 32:return ye(A,"零壹貳參四五六七八九","拾百千",ui,s,Ht|Je|qe);case 18:return TA(A,2406,2415,!0,r);case 20:return xt(A,1,19999,jT,3,r);case 21:return TA(A,2790,2799,!0,r);case 22:return TA(A,2662,2671,!0,r);case 22:return xt(A,1,10999,qT,3,r);case 23:return ft(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return ft(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return TA(A,3302,3311,!0,r);case 28:return ft(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return ft(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return TA(A,3792,3801,!0,r);case 37:return TA(A,6160,6169,!0,r);case 38:return TA(A,4160,4169,!0,r);case 39:return TA(A,2918,2927,!0,r);case 40:return TA(A,1776,1785,!0,r);case 43:return TA(A,3046,3055,!0,r);case 44:return TA(A,3174,3183,!0,r);case 45:return TA(A,3664,3673,!0,r);case 46:return TA(A,3872,3881,!0,r);case 3:default:return TA(A,48,57,!0,r)}},xl="data-html2canvas-ignore",Hl=function(){function A(e,t,r){if(this.context=e,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new JT,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}return A.prototype.toIFrame=function(e,t){var r=this,n=$T(e,t);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var s=e.defaultView.pageXOffset,a=e.defaultView.pageYOffset,u=n.contentWindow,o=u.document,l=Ab(n).then(function(){return VA(r,void 0,void 0,function(){var f,h;return kA(this,function(d){switch(d.label){case 0:return this.scrolledElements.forEach(nb),u&&(u.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(u.scrollY!==t.top||u.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(u.scrollX-t.left,u.scrollY-t.top,0,0))),f=this.options.onclone,h=this.clonedReferenceElement,typeof h>"u"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:o.fonts&&o.fonts.ready?[4,o.fonts.ready]:[3,2];case 1:d.sent(),d.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,zT(o)]:[3,4];case 3:d.sent(),d.label=4;case 4:return typeof f=="function"?[2,Promise.resolve().then(function(){return f(o,h)}).then(function(){return n})]:[2,n]}})})});return o.open(),o.write(tb(document.doctype)+"<html></html>"),rb(this.referenceElement.ownerDocument,s,a),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),l},A.prototype.createElementClone=function(e){if(Ya(e,2))debugger;if(Tl(e))return this.createCanvasClone(e);if(bl(e))return this.createVideoClone(e);if(Ql(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return ii(t)&&(ii(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),Il(t)?this.createCustomElementClone(t):t},A.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return oi(e.style,t),t},A.prototype.createStyleClone=function(e){try{var t=e.sheet;if(t&&t.cssRules){var r=[].slice.call(t.cssRules,0).reduce(function(s,a){return a&&typeof a.cssText=="string"?s+a.cssText:s},""),n=e.cloneNode(!1);return n.textContent=r,n}}catch(s){if(this.context.logger.error("Unable to access cssRules property",s),s.name!=="SecurityError")throw s}return e.cloneNode(!1)},A.prototype.createCanvasClone=function(e){var t;if(this.options.inlineImages&&e.ownerDocument){var r=e.ownerDocument.createElement("img");try{return r.src=e.toDataURL(),r}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}var n=e.cloneNode(!1);try{n.width=e.width,n.height=e.height;var s=e.getContext("2d"),a=n.getContext("2d");if(a)if(!this.options.allowTaint&&s)a.putImageData(s.getImageData(0,0,e.width,e.height),0,0);else{var u=(t=e.getContext("webgl2"))!==null&&t!==void 0?t:e.getContext("webgl");if(u){var o=u.getContextAttributes();(o==null?void 0:o.preserveDrawingBuffer)===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e)}a.drawImage(e,0,0)}return n}catch{this.context.logger.info("Unable to clone canvas as it is tainted",e)}return n},A.prototype.createVideoClone=function(e){var t=e.ownerDocument.createElement("canvas");t.width=e.offsetWidth,t.height=e.offsetHeight;var r=t.getContext("2d");try{return r&&(r.drawImage(e,0,0,t.width,t.height),this.options.allowTaint||r.getImageData(0,0,t.width,t.height)),t}catch{this.context.logger.info("Unable to clone video as it is tainted",e)}var n=e.ownerDocument.createElement("canvas");return n.width=e.offsetWidth,n.height=e.offsetHeight,n},A.prototype.appendChildNode=function(e,t,r){(!Lt(t)||!WT(t)&&!t.hasAttribute(xl)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!Lt(t)||!Ql(t))&&e.appendChild(this.cloneNode(t,r))},A.prototype.cloneChildNodes=function(e,t,r){for(var n=this,s=e.shadowRoot?e.shadowRoot.firstChild:e.firstChild;s;s=s.nextSibling)if(Lt(s)&&Fl(s)&&typeof s.assignedNodes=="function"){var a=s.assignedNodes();a.length&&a.forEach(function(u){return n.appendChildNode(t,u,r)})}else this.appendChildNode(t,s,r)},A.prototype.cloneNode=function(e,t){if(Cl(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var r=e.ownerDocument.defaultView;if(r&&Lt(e)&&(si(e)||Zn(e))){var n=this.createElementClone(e);n.style.transitionProperty="none";var s=r.getComputedStyle(e),a=r.getComputedStyle(e,":before"),u=r.getComputedStyle(e,":after");this.referenceElement===e&&si(n)&&(this.clonedReferenceElement=n),ai(n)&&ib(n);var o=this.counters.parse(new qc(this.context,s)),l=this.resolvePseudoContent(e,n,a,vr.BEFORE);Il(e)&&(t=!0),bl(e)||this.cloneChildNodes(e,n,t),l&&n.insertBefore(l,n.firstChild);var f=this.resolvePseudoContent(e,n,u,vr.AFTER);return f&&n.appendChild(f),this.counters.pop(o),(s&&(this.options.copyStyles||Zn(e))&&!Ul(e)||t)&&oi(s,n),(e.scrollTop!==0||e.scrollLeft!==0)&&this.scrolledElements.push([n,e.scrollLeft,e.scrollTop]),(zn(e)||As(e))&&(zn(n)||As(n))&&(n.value=e.value),n}return e.cloneNode(!1)},A.prototype.resolvePseudoContent=function(e,t,r,n){var s=this;if(r){var a=r.content,u=t.ownerDocument;if(!(!u||!a||a==="none"||a==="-moz-alt-content"||r.display==="none")){this.counters.parse(new qc(this.context,r));var o=new Vw(this.context,r),l=u.createElement("html2canvaspseudoelement");oi(r,l),o.content.forEach(function(h){if(h.type===0)l.appendChild(u.createTextNode(h.value));else if(h.type===22){var d=u.createElement("img");d.src=h.value,d.style.opacity="1",l.appendChild(d)}else if(h.type===18){if(h.name==="attr"){var C=h.values.filter(iA);C.length&&l.appendChild(u.createTextNode(e.getAttribute(C[0].value)||""))}else if(h.name==="counter"){var p=h.values.filter(St),T=p[0],U=p[1];if(T&&iA(T)){var _=s.counters.getCounterValue(T.value),I=U&&iA(U)?Ga.parse(s.context,U.value):3;l.appendChild(u.createTextNode(Sr(_,I,!1)))}}else if(h.name==="counters"){var D=h.values.filter(St),T=D[0],k=D[1],U=D[2];if(T&&iA(T)){var x=s.counters.getCounterValues(T.value),m=U&&iA(U)?Ga.parse(s.context,U.value):3,H=k&&k.type===0?k.value:"",P=x.map(function(uA){return Sr(uA,m,!1)}).join(H);l.appendChild(u.createTextNode(P))}}}else if(h.type===20)switch(h.value){case"open-quote":l.appendChild(u.createTextNode(Jc(o.quotes,s.quoteDepth++,!0)));break;case"close-quote":l.appendChild(u.createTextNode(Jc(o.quotes,--s.quoteDepth,!1)));break;default:l.appendChild(u.createTextNode(h.value))}}),l.className=ci+" "+li;var f=n===vr.BEFORE?" "+ci:" "+li;return Zn(t)?t.className.baseValue+=f:t.className+=f,l}}},A.destroy=function(e){return e.parentNode?(e.parentNode.removeChild(e),!0):!1},A}(),vr;(function(A){A[A.BEFORE=0]="BEFORE",A[A.AFTER=1]="AFTER"})(vr||(vr={}));var $T=function(A,e){var t=A.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=e.width.toString(),t.height=e.height.toString(),t.scrolling="no",t.setAttribute(xl,"true"),A.body.appendChild(t),t},ZT=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},zT=function(A){return Promise.all([].slice.call(A.images,0).map(ZT))},Ab=function(A){return new Promise(function(e,t){var r=A.contentWindow;if(!r)return t("No window assigned for iframe");var n=r.document;r.onload=A.onload=function(){r.onload=A.onload=null;var s=setInterval(function(){n.body.childNodes.length>0&&n.readyState==="complete"&&(clearInterval(s),e(A))},50)}})},eb=["all","d","content"],oi=function(A,e){for(var t=A.length-1;t>=0;t--){var r=A.item(t);eb.indexOf(r)===-1&&e.style.setProperty(r,A.getPropertyValue(r))}return e},tb=function(A){var e="";return A&&(e+="<!DOCTYPE ",A.name&&(e+=A.name),A.internalSubset&&(e+=A.internalSubset),A.publicId&&(e+='"'+A.publicId+'"'),A.systemId&&(e+='"'+A.systemId+'"'),e+=">"),e},rb=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},nb=function(A){var e=A[0],t=A[1],r=A[2];e.scrollLeft=t,e.scrollTop=r},sb=":before",ab=":after",ci="___html2canvas___pseudoelement_before",li="___html2canvas___pseudoelement_after",Dl=`{
36
36
  content: "" !important;
37
37
  display: none !important;
38
- }`,ib=function(A){ub(A,"."+oi+sb+Hl+`
39
- .`+ci+ab+Hl)},ub=function(A,e){var t=A.ownerDocument;if(t){var r=t.createElement("style");r.textContent=e,A.appendChild(r)}},Dl=function(){function A(){}return A.getOrigin=function(e){var t=A._link;return t?(t.href=e,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},A.isSameOrigin=function(e){return A.getOrigin(e)===A._origin},A.setContext=function(e){A._link=e.document.createElement("a"),A._origin=A.getOrigin(e.location.href)},A._origin="about:blank",A}(),ob=function(){function A(e,t){this.context=e,this._options=t,this._cache={}}return A.prototype.addImage=function(e){var t=Promise.resolve();return this.has(e)||(fi(e)||hb(e))&&(this._cache[e]=this.loadImage(e)).catch(function(){}),t},A.prototype.match=function(e){return this._cache[e]},A.prototype.loadImage=function(e){return KA(this,void 0,void 0,function(){var t,r,n,s,a=this;return MA(this,function(u){switch(u.label){case 0:return t=Dl.isSameOrigin(e),r=!li(e)&&this._options.useCORS===!0&&OA.SUPPORT_CORS_IMAGES&&!t,n=!li(e)&&!t&&!fi(e)&&typeof this._options.proxy=="string"&&OA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!li(e)&&!fi(e)&&!n&&!r?[2]:(s=e,n?[4,this.proxy(s)]:[3,2]);case 1:s=u.sent(),u.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(o,l){var f=new Image;f.onload=function(){return o(f)},f.onerror=l,(db(s)||r)&&(f.crossOrigin="anonymous"),f.src=s,f.complete===!0&&setTimeout(function(){return o(f)},500),a._options.imageTimeout>0&&setTimeout(function(){return l("Timed out ("+a._options.imageTimeout+"ms) loading image")},a._options.imageTimeout)})];case 3:return[2,u.sent()]}})})},A.prototype.has=function(e){return typeof this._cache[e]<"u"},A.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},A.prototype.proxy=function(e){var t=this,r=this._options.proxy;if(!r)throw new Error("No proxy defined");var n=e.substring(0,256);return new Promise(function(s,a){var u=OA.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=function(){if(o.status===200)if(u==="text")s(o.response);else{var h=new FileReader;h.addEventListener("load",function(){return s(h.result)},!1),h.addEventListener("error",function(d){return a(d)},!1),h.readAsDataURL(o.response)}else a("Failed to proxy resource "+n+" with status code "+o.status)},o.onerror=a;var l=r.indexOf("?")>-1?"&":"?";if(o.open("GET",""+r+l+"url="+encodeURIComponent(e)+"&responseType="+u),u!=="text"&&o instanceof XMLHttpRequest&&(o.responseType=u),t._options.imageTimeout){var f=t._options.imageTimeout;o.timeout=f,o.ontimeout=function(){return a("Timed out ("+f+"ms) proxying "+n)}}o.send()})},A}(),cb=/^data:image\/svg\+xml/i,lb=/^data:image\/.*;base64,/i,fb=/^data:image\/.*/i,hb=function(A){return OA.SUPPORT_SVG_DRAWING||!Bb(A)},li=function(A){return fb.test(A)},db=function(A){return lb.test(A)},fi=function(A){return A.substr(0,4)==="blob"},Bb=function(A){return A.substr(-3).toLowerCase()==="svg"||cb.test(A)},O=function(){function A(e,t){this.type=0,this.x=e,this.y=t}return A.prototype.add=function(e,t){return new A(this.x+e,this.y+t)},A}(),Ht=function(A,e,t){return new O(A.x+(e.x-A.x)*t,A.y+(e.y-A.y)*t)},es=function(){function A(e,t,r,n){this.type=1,this.start=e,this.startControl=t,this.endControl=r,this.end=n}return A.prototype.subdivide=function(e,t){var r=Ht(this.start,this.startControl,e),n=Ht(this.startControl,this.endControl,e),s=Ht(this.endControl,this.end,e),a=Ht(r,n,e),u=Ht(n,s,e),o=Ht(a,u,e);return t?new A(this.start,r,a,o):new A(o,u,s,this.end)},A.prototype.add=function(e,t){return new A(this.start.add(e,t),this.startControl.add(e,t),this.endControl.add(e,t),this.end.add(e,t))},A.prototype.reverse=function(){return new A(this.end,this.endControl,this.startControl,this.start)},A}(),ae=function(A){return A.type===1},gb=function(){function A(e){var t=e.styles,r=e.bounds,n=Ur(t.borderTopLeftRadius,r.width,r.height),s=n[0],a=n[1],u=Ur(t.borderTopRightRadius,r.width,r.height),o=u[0],l=u[1],f=Ur(t.borderBottomRightRadius,r.width,r.height),h=f[0],d=f[1],C=Ur(t.borderBottomLeftRadius,r.width,r.height),p=C[0],T=C[1],U=[];U.push((s+o)/r.width),U.push((p+h)/r.width),U.push((a+T)/r.height),U.push((l+d)/r.height);var _=Math.max.apply(Math,U);_>1&&(s/=_,a/=_,o/=_,l/=_,h/=_,d/=_,p/=_,T/=_);var Q=r.width-o,D=r.height-d,k=r.width-h,x=r.height-T,m=t.borderTopWidth,H=t.borderRightWidth,P=t.borderBottomWidth,M=t.borderLeftWidth,eA=oA(t.paddingTop,e.bounds.width),cA=oA(t.paddingRight,e.bounds.width),lA=oA(t.paddingBottom,e.bounds.width),q=oA(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||a>0?gA(r.left+M/3,r.top+m/3,s-M/3,a-m/3,sA.TOP_LEFT):new O(r.left+M/3,r.top+m/3),this.topRightBorderDoubleOuterBox=s>0||a>0?gA(r.left+Q,r.top+m/3,o-H/3,l-m/3,sA.TOP_RIGHT):new O(r.left+r.width-H/3,r.top+m/3),this.bottomRightBorderDoubleOuterBox=h>0||d>0?gA(r.left+k,r.top+D,h-H/3,d-P/3,sA.BOTTOM_RIGHT):new O(r.left+r.width-H/3,r.top+r.height-P/3),this.bottomLeftBorderDoubleOuterBox=p>0||T>0?gA(r.left+M/3,r.top+x,p-M/3,T-P/3,sA.BOTTOM_LEFT):new O(r.left+M/3,r.top+r.height-P/3),this.topLeftBorderDoubleInnerBox=s>0||a>0?gA(r.left+M*2/3,r.top+m*2/3,s-M*2/3,a-m*2/3,sA.TOP_LEFT):new O(r.left+M*2/3,r.top+m*2/3),this.topRightBorderDoubleInnerBox=s>0||a>0?gA(r.left+Q,r.top+m*2/3,o-H*2/3,l-m*2/3,sA.TOP_RIGHT):new O(r.left+r.width-H*2/3,r.top+m*2/3),this.bottomRightBorderDoubleInnerBox=h>0||d>0?gA(r.left+k,r.top+D,h-H*2/3,d-P*2/3,sA.BOTTOM_RIGHT):new O(r.left+r.width-H*2/3,r.top+r.height-P*2/3),this.bottomLeftBorderDoubleInnerBox=p>0||T>0?gA(r.left+M*2/3,r.top+x,p-M*2/3,T-P*2/3,sA.BOTTOM_LEFT):new O(r.left+M*2/3,r.top+r.height-P*2/3),this.topLeftBorderStroke=s>0||a>0?gA(r.left+M/2,r.top+m/2,s-M/2,a-m/2,sA.TOP_LEFT):new O(r.left+M/2,r.top+m/2),this.topRightBorderStroke=s>0||a>0?gA(r.left+Q,r.top+m/2,o-H/2,l-m/2,sA.TOP_RIGHT):new O(r.left+r.width-H/2,r.top+m/2),this.bottomRightBorderStroke=h>0||d>0?gA(r.left+k,r.top+D,h-H/2,d-P/2,sA.BOTTOM_RIGHT):new O(r.left+r.width-H/2,r.top+r.height-P/2),this.bottomLeftBorderStroke=p>0||T>0?gA(r.left+M/2,r.top+x,p-M/2,T-P/2,sA.BOTTOM_LEFT):new O(r.left+M/2,r.top+r.height-P/2),this.topLeftBorderBox=s>0||a>0?gA(r.left,r.top,s,a,sA.TOP_LEFT):new O(r.left,r.top),this.topRightBorderBox=o>0||l>0?gA(r.left+Q,r.top,o,l,sA.TOP_RIGHT):new O(r.left+r.width,r.top),this.bottomRightBorderBox=h>0||d>0?gA(r.left+k,r.top+D,h,d,sA.BOTTOM_RIGHT):new O(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=p>0||T>0?gA(r.left,r.top+x,p,T,sA.BOTTOM_LEFT):new O(r.left,r.top+r.height),this.topLeftPaddingBox=s>0||a>0?gA(r.left+M,r.top+m,Math.max(0,s-M),Math.max(0,a-m),sA.TOP_LEFT):new O(r.left+M,r.top+m),this.topRightPaddingBox=o>0||l>0?gA(r.left+Math.min(Q,r.width-H),r.top+m,Q>r.width+H?0:Math.max(0,o-H),Math.max(0,l-m),sA.TOP_RIGHT):new O(r.left+r.width-H,r.top+m),this.bottomRightPaddingBox=h>0||d>0?gA(r.left+Math.min(k,r.width-M),r.top+Math.min(D,r.height-P),Math.max(0,h-H),Math.max(0,d-P),sA.BOTTOM_RIGHT):new O(r.left+r.width-H,r.top+r.height-P),this.bottomLeftPaddingBox=p>0||T>0?gA(r.left+M,r.top+Math.min(x,r.height-P),Math.max(0,p-M),Math.max(0,T-P),sA.BOTTOM_LEFT):new O(r.left+M,r.top+r.height-P),this.topLeftContentBox=s>0||a>0?gA(r.left+M+q,r.top+m+eA,Math.max(0,s-(M+q)),Math.max(0,a-(m+eA)),sA.TOP_LEFT):new O(r.left+M+q,r.top+m+eA),this.topRightContentBox=o>0||l>0?gA(r.left+Math.min(Q,r.width+M+q),r.top+m+eA,Q>r.width+M+q?0:o-M+q,l-(m+eA),sA.TOP_RIGHT):new O(r.left+r.width-(H+cA),r.top+m+eA),this.bottomRightContentBox=h>0||d>0?gA(r.left+Math.min(k,r.width-(M+q)),r.top+Math.min(D,r.height+m+eA),Math.max(0,h-(H+cA)),d-(P+lA),sA.BOTTOM_RIGHT):new O(r.left+r.width-(H+cA),r.top+r.height-(P+lA)),this.bottomLeftContentBox=p>0||T>0?gA(r.left+M+q,r.top+x,Math.max(0,p-(M+q)),T-(P+lA),sA.BOTTOM_LEFT):new O(r.left+M+q,r.top+r.height-(P+lA))}return A}(),sA;(function(A){A[A.TOP_LEFT=0]="TOP_LEFT",A[A.TOP_RIGHT=1]="TOP_RIGHT",A[A.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",A[A.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(sA||(sA={}));var gA=function(A,e,t,r,n){var s=4*((Math.sqrt(2)-1)/3),a=t*s,u=r*s,o=A+t,l=e+r;switch(n){case sA.TOP_LEFT:return new es(new O(A,l),new O(A,l-u),new O(o-a,e),new O(o,e));case sA.TOP_RIGHT:return new es(new O(A,e),new O(A+a,e),new O(o,l-u),new O(o,l));case sA.BOTTOM_RIGHT:return new es(new O(o,e),new O(o,e+u),new O(A+a,l),new O(A,l));case sA.BOTTOM_LEFT:default:return new es(new O(o,l),new O(o-a,l),new O(A,e+u),new O(A,e))}},ts=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},Eb=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},rs=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},mb=function(){function A(e,t,r){this.offsetX=e,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return A}(),ns=function(){function A(e,t){this.path=e,this.target=t,this.type=1}return A}(),pb=function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A}(),Cb=function(A){return A.type===0},Ol=function(A){return A.type===1},wb=function(A){return A.type===2},Rl=function(A,e){return A.length===e.length?A.some(function(t,r){return t===e[r]}):!1},Tb=function(A,e,t,r,n){return A.map(function(s,a){switch(a){case 0:return s.add(e,t);case 1:return s.add(e+r,t);case 2:return s.add(e+r,t+n);case 3:return s.add(e,t+n)}return s})},Ml=function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A}(),kl=function(){function A(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new gb(this.container),this.container.styles.opacity<1&&this.effects.push(new pb(this.container.styles.opacity)),this.container.styles.transform!==null){var r=this.container.bounds.left+this.container.styles.transformOrigin[0].number,n=this.container.bounds.top+this.container.styles.transformOrigin[1].number,s=this.container.styles.transform;this.effects.push(new mb(r,n,s))}if(this.container.styles.overflowX!==0){var a=ts(this.curves),u=rs(this.curves);Rl(a,u)?this.effects.push(new ns(a,6)):(this.effects.push(new ns(a,2)),this.effects.push(new ns(u,4)))}}return A.prototype.getEffects=function(e){for(var t=[2,3].indexOf(this.container.styles.position)===-1,r=this.parent,n=this.effects.slice(0);r;){var s=r.effects.filter(function(o){return!Ol(o)});if(t||r.container.styles.position!==0||!r.parent){if(n.unshift.apply(n,s),t=[2,3].indexOf(r.container.styles.position)===-1,r.container.styles.overflowX!==0){var a=ts(r.curves),u=rs(r.curves);Rl(a,u)||n.unshift(new ns(u,6))}}else n.unshift.apply(n,s);r=r.parent}return n.filter(function(o){return QA(o.target,e)})},A}(),hi=function(A,e,t,r){A.container.elements.forEach(function(n){var s=QA(n.flags,4),a=QA(n.flags,2),u=new kl(n,A);QA(n.styles.display,2048)&&r.push(u);var o=QA(n.flags,8)?[]:r;if(s||a){var l=s||n.styles.isPositioned()?t:e,f=new Ml(u);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){var h=n.styles.zIndex.order;if(h<0){var d=0;l.negativeZIndex.some(function(p,T){return h>p.element.container.styles.zIndex.order?(d=T,!1):d>0}),l.negativeZIndex.splice(d,0,f)}else if(h>0){var C=0;l.positiveZIndex.some(function(p,T){return h>=p.element.container.styles.zIndex.order?(C=T+1,!1):C>0}),l.positiveZIndex.splice(C,0,f)}else l.zeroOrAutoZIndexOrTransformedOrOpacity.push(f)}else n.styles.isFloating()?l.nonPositionedFloats.push(f):l.nonPositionedInlineLevel.push(f);hi(u,f,s?f:t,o)}else n.styles.isInlineLevel()?e.inlineLevel.push(u):e.nonInlineLevel.push(u),hi(u,e,t,o);QA(n.flags,8)&&Pl(n,o)})},Pl=function(A,e){for(var t=A instanceof ti?A.start:1,r=A instanceof ti?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof fl&&typeof s.container.value=="number"&&s.container.value!==0&&(t=s.container.value),s.listValue=Nr(t,s.container.styles.listStyleType,!0),t+=r?-1:1}},bb=function(A){var e=new kl(A,null),t=new Ml(e),r=[];return hi(e,t,t,r),Pl(e.container,r),t},Kl=function(A,e){switch(e){case 0:return ie(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return ie(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return ie(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);case 3:default:return ie(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ub=function(A,e){switch(e){case 0:return ie(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return ie(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return ie(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);case 3:default:return ie(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},Qb=function(A,e){switch(e){case 0:return ie(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return ie(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return ie(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);case 3:default:return ie(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},Fb=function(A,e){switch(e){case 0:return ss(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return ss(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return ss(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);case 3:default:return ss(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},ss=function(A,e){var t=[];return ae(A)?t.push(A.subdivide(.5,!1)):t.push(A),ae(e)?t.push(e.subdivide(.5,!0)):t.push(e),t},ie=function(A,e,t,r){var n=[];return ae(A)?n.push(A.subdivide(.5,!1)):n.push(A),ae(t)?n.push(t.subdivide(.5,!0)):n.push(t),ae(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),ae(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Vl=function(A){var e=A.bounds,t=A.styles;return e.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},as=function(A){var e=A.styles,t=A.bounds,r=oA(e.paddingLeft,t.width),n=oA(e.paddingRight,t.width),s=oA(e.paddingTop,t.width),a=oA(e.paddingBottom,t.width);return t.add(r+e.borderLeftWidth,s+e.borderTopWidth,-(e.borderRightWidth+e.borderLeftWidth+r+n),-(e.borderTopWidth+e.borderBottomWidth+s+a))},Ib=function(A,e){return A===0?e.bounds:A===2?as(e):Vl(e)},_b=function(A,e){return A===0?e.bounds:A===2?as(e):Vl(e)},di=function(A,e,t){var r=Ib(Ot(A.styles.backgroundOrigin,e),A),n=_b(Ot(A.styles.backgroundClip,e),A),s=yb(Ot(A.styles.backgroundSize,e),t,r),a=s[0],u=s[1],o=Ur(Ot(A.styles.backgroundPosition,e),r.width-a,r.height-u),l=Nb(Ot(A.styles.backgroundRepeat,e),o,s,r,n),f=Math.round(r.left+o[0]),h=Math.round(r.top+o[1]);return[l,f,h,a,u]},Dt=function(A){return iA(A)&&A.value===St.AUTO},is=function(A){return typeof A=="number"},yb=function(A,e,t){var r=e[0],n=e[1],s=e[2],a=A[0],u=A[1];if(!a)return[0,0];if(bA(a)&&u&&bA(u))return[oA(a,t.width),oA(u,t.height)];var o=is(s);if(iA(a)&&(a.value===St.CONTAIN||a.value===St.COVER)){if(is(s)){var l=t.width/t.height;return l<s!=(a.value===St.COVER)?[t.width,t.width/s]:[t.height*s,t.height]}return[t.width,t.height]}var f=is(r),h=is(n),d=f||h;if(Dt(a)&&(!u||Dt(u))){if(f&&h)return[r,n];if(!o&&!d)return[t.width,t.height];if(d&&o){var C=f?r:n*s,p=h?n:r/s;return[C,p]}var T=f?r:t.width,U=h?n:t.height;return[T,U]}if(o){var _=0,Q=0;return bA(a)?_=oA(a,t.width):bA(u)&&(Q=oA(u,t.height)),Dt(a)?_=Q*s:(!u||Dt(u))&&(Q=_/s),[_,Q]}var D=null,k=null;if(bA(a)?D=oA(a,t.width):u&&bA(u)&&(k=oA(u,t.height)),D!==null&&(!u||Dt(u))&&(k=f&&h?D/r*n:t.height),k!==null&&Dt(a)&&(D=f&&h?k/n*r:t.width),D!==null&&k!==null)return[D,k];throw new Error("Unable to calculate background-size for element")},Ot=function(A,e){var t=A[e];return typeof t>"u"?A[0]:t},Nb=function(A,e,t,r,n){var s=e[0],a=e[1],u=t[0],o=t[1];switch(A){case 2:return[new O(Math.round(r.left),Math.round(r.top+a)),new O(Math.round(r.left+r.width),Math.round(r.top+a)),new O(Math.round(r.left+r.width),Math.round(o+r.top+a)),new O(Math.round(r.left),Math.round(o+r.top+a))];case 3:return[new O(Math.round(r.left+s),Math.round(r.top)),new O(Math.round(r.left+s+u),Math.round(r.top)),new O(Math.round(r.left+s+u),Math.round(r.height+r.top)),new O(Math.round(r.left+s),Math.round(r.height+r.top))];case 1:return[new O(Math.round(r.left+s),Math.round(r.top+a)),new O(Math.round(r.left+s+u),Math.round(r.top+a)),new O(Math.round(r.left+s+u),Math.round(r.top+a+o)),new O(Math.round(r.left+s),Math.round(r.top+a+o))];default:return[new O(Math.round(n.left),Math.round(n.top)),new O(Math.round(n.left+n.width),Math.round(n.top)),new O(Math.round(n.left+n.width),Math.round(n.height+n.top)),new O(Math.round(n.left),Math.round(n.height+n.top))]}},Sb="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Gl="Hidden Text",vb=function(){function A(e){this._data={},this._document=e}return A.prototype.parseMetrics=function(e,t){var r=this._document.createElement("div"),n=this._document.createElement("img"),s=this._document.createElement("span"),a=this._document.body;r.style.visibility="hidden",r.style.fontFamily=e,r.style.fontSize=t,r.style.margin="0",r.style.padding="0",r.style.whiteSpace="nowrap",a.appendChild(r),n.src=Sb,n.width=1,n.height=1,n.style.margin="0",n.style.padding="0",n.style.verticalAlign="baseline",s.style.fontFamily=e,s.style.fontSize=t,s.style.margin="0",s.style.padding="0",s.appendChild(this._document.createTextNode(Gl)),r.appendChild(s),r.appendChild(n);var u=n.offsetTop-s.offsetTop+2;r.removeChild(s),r.appendChild(this._document.createTextNode(Gl)),r.style.lineHeight="normal",n.style.verticalAlign="super";var o=n.offsetTop-r.offsetTop+2;return a.removeChild(r),{baseline:u,middle:o}},A.prototype.getMetrics=function(e,t){var r=e+" "+t;return typeof this._data[r]>"u"&&(this._data[r]=this.parseMetrics(e,t)),this._data[r]},A}(),Yl=function(){function A(e,t){this.context=e,this.options=t}return A}(),Lb=1e4,xb=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n._activeEffects=[],n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),r.canvas||(n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px"),n.fontMetrics=new vb(document),n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.ctx.textBaseline="bottom",n._activeEffects=[],n.context.logger.debug("Canvas renderer initialized ("+r.width+"x"+r.height+") with scale "+r.scale),n}return e.prototype.applyEffects=function(t){for(var r=this;this._activeEffects.length;)this.popEffect();t.forEach(function(n){return r.applyEffect(n)})},e.prototype.applyEffect=function(t){this.ctx.save(),wb(t)&&(this.ctx.globalAlpha=t.opacity),Cb(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),Ol(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},e.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},e.prototype.renderStack=function(t){return KA(this,void 0,void 0,function(){var r;return MA(this,function(n){switch(n.label){case 0:return r=t.element.container.styles,r.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},e.prototype.renderNode=function(t){return KA(this,void 0,void 0,function(){return MA(this,function(r){switch(r.label){case 0:if(QA(t.container.flags,16))debugger;return t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return r.sent(),[4,this.renderNodeContent(t)];case 2:r.sent(),r.label=3;case 3:return[2]}})})},e.prototype.renderTextWithLetterSpacing=function(t,r,n){var s=this;if(r===0)this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+n);else{var a=ei(t.text);a.reduce(function(u,o){return s.ctx.fillText(o,u,t.bounds.top+n),u+s.ctx.measureText(o).width},t.bounds.left)}},e.prototype.createFontStyle=function(t){var r=t.fontVariant.filter(function(a){return a==="normal"||a==="small-caps"}).join(""),n=Mb(t.fontFamily).join(", "),s=br(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,r,t.fontWeight,s,n].join(" "),n,s]},e.prototype.renderTextNode=function(t,r){return KA(this,void 0,void 0,function(){var n,s,a,u,o,l,f,h,d=this;return MA(this,function(C){return n=this.createFontStyle(r),s=n[0],a=n[1],u=n[2],this.ctx.font=s,this.ctx.direction=r.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",o=this.fontMetrics.getMetrics(a,u),l=o.baseline,f=o.middle,h=r.paintOrder,t.textBounds.forEach(function(p){h.forEach(function(T){switch(T){case 0:d.ctx.fillStyle=SA(r.color),d.renderTextWithLetterSpacing(p,r.letterSpacing,l);var U=r.textShadow;U.length&&p.text.trim().length&&(U.slice(0).reverse().forEach(function(_){d.ctx.shadowColor=SA(_.color),d.ctx.shadowOffsetX=_.offsetX.number*d.options.scale,d.ctx.shadowOffsetY=_.offsetY.number*d.options.scale,d.ctx.shadowBlur=_.blur.number,d.renderTextWithLetterSpacing(p,r.letterSpacing,l)}),d.ctx.shadowColor="",d.ctx.shadowOffsetX=0,d.ctx.shadowOffsetY=0,d.ctx.shadowBlur=0),r.textDecorationLine.length&&(d.ctx.fillStyle=SA(r.textDecorationColor||r.color),r.textDecorationLine.forEach(function(_){switch(_){case 1:d.ctx.fillRect(p.bounds.left,Math.round(p.bounds.top+l),p.bounds.width,1);break;case 2:d.ctx.fillRect(p.bounds.left,Math.round(p.bounds.top),p.bounds.width,1);break;case 3:d.ctx.fillRect(p.bounds.left,Math.ceil(p.bounds.top+f),p.bounds.width,1);break}}));break;case 1:r.webkitTextStrokeWidth&&p.text.trim().length&&(d.ctx.strokeStyle=SA(r.webkitTextStrokeColor),d.ctx.lineWidth=r.webkitTextStrokeWidth,d.ctx.lineJoin=window.chrome?"miter":"round",d.ctx.strokeText(p.text,p.bounds.left,p.bounds.top+l)),d.ctx.strokeStyle="",d.ctx.lineWidth=0,d.ctx.lineJoin="miter";break}})}),[2]})})},e.prototype.renderReplacedElement=function(t,r,n){if(n&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var s=as(t),a=rs(r);this.path(a),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,s.left,s.top,s.width,s.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(t){return KA(this,void 0,void 0,function(){var r,n,s,a,u,o,Q,Q,l,f,h,d,k,C,p,x,T,U,_,Q,D,k,x;return MA(this,function(m){switch(m.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,s=r.styles,a=0,u=r.textNodes,m.label=1;case 1:return a<u.length?(o=u[a],[4,this.renderTextNode(o,s)]):[3,4];case 2:m.sent(),m.label=3;case 3:return a++,[3,1];case 4:if(!(r instanceof ol))return[3,8];m.label=5;case 5:return m.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return Q=m.sent(),this.renderReplacedElement(r,n,Q),[3,8];case 7:return m.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof cl&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof ll))return[3,12];m.label=9;case 9:return m.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return Q=m.sent(),this.renderReplacedElement(r,n,Q),[3,12];case 11:return m.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof gl&&r.tree?(l=new e(this.context,{scale:this.options.scale,backgroundColor:r.backgroundColor,x:0,y:0,width:r.width,height:r.height}),[4,l.render(r.tree)]):[3,14];case 13:f=m.sent(),r.width&&r.height&&this.ctx.drawImage(f,0,0,r.width,r.height,r.bounds.left,r.bounds.top,r.bounds.width,r.bounds.height),m.label=14;case 14:if(r instanceof ri&&(h=Math.min(r.bounds.width,r.bounds.height),r.type===qn?r.checked&&(this.ctx.save(),this.path([new O(r.bounds.left+h*.39363,r.bounds.top+h*.79),new O(r.bounds.left+h*.16,r.bounds.top+h*.5549),new O(r.bounds.left+h*.27347,r.bounds.top+h*.44071),new O(r.bounds.left+h*.39694,r.bounds.top+h*.5649),new O(r.bounds.left+h*.72983,r.bounds.top+h*.23),new O(r.bounds.left+h*.84,r.bounds.top+h*.34085),new O(r.bounds.left+h*.39363,r.bounds.top+h*.79)]),this.ctx.fillStyle=SA(hl),this.ctx.fill(),this.ctx.restore()):r.type===jn&&r.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(r.bounds.left+h/2,r.bounds.top+h/2,h/4,0,Math.PI*2,!0),this.ctx.fillStyle=SA(hl),this.ctx.fill(),this.ctx.restore())),Hb(r)&&r.value.length){switch(d=this.createFontStyle(s),k=d[0],C=d[1],p=this.fontMetrics.getMetrics(k,C).baseline,this.ctx.font=k,this.ctx.fillStyle=SA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Ob(r.styles.textAlign),x=as(r),T=0,r.styles.textAlign){case 1:T+=x.width/2;break;case 2:T+=x.width;break}U=x.add(T,0,0,-x.height/2+1),this.ctx.save(),this.path([new O(x.left,x.top),new O(x.left+x.width,x.top),new O(x.left+x.width,x.top+x.height),new O(x.left,x.top+x.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new _r(r.value,U),s.letterSpacing,p),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!QA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(_=r.styles.listStyleImage,_.type!==0)return[3,18];Q=void 0,D=_.url,m.label=15;case 15:return m.trys.push([15,17,,18]),[4,this.context.cache.match(D)];case 16:return Q=m.sent(),this.ctx.drawImage(Q,r.bounds.left-(Q.width+10),r.bounds.top),[3,18];case 17:return m.sent(),this.context.logger.error("Error loading list-style-image "+D),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(k=this.createFontStyle(s)[0],this.ctx.font=k,this.ctx.fillStyle=SA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",x=new Fe(r.bounds.left,r.bounds.top+oA(r.styles.paddingTop,r.bounds.width),r.bounds.width,Gc(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new _r(t.listValue,x),s.letterSpacing,Gc(s.lineHeight,s.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),m.label=20;case 20:return[2]}})})},e.prototype.renderStackContent=function(t){return KA(this,void 0,void 0,function(){var r,n,_,s,a,_,u,o,_,l,f,_,h,d,_,C,p,_,T,U,_;return MA(this,function(Q){switch(Q.label){case 0:if(QA(t.element.container.flags,16))debugger;return[4,this.renderNodeBackgroundAndBorders(t.element)];case 1:Q.sent(),r=0,n=t.negativeZIndex,Q.label=2;case 2:return r<n.length?(_=n[r],[4,this.renderStack(_)]):[3,5];case 3:Q.sent(),Q.label=4;case 4:return r++,[3,2];case 5:return[4,this.renderNodeContent(t.element)];case 6:Q.sent(),s=0,a=t.nonInlineLevel,Q.label=7;case 7:return s<a.length?(_=a[s],[4,this.renderNode(_)]):[3,10];case 8:Q.sent(),Q.label=9;case 9:return s++,[3,7];case 10:u=0,o=t.nonPositionedFloats,Q.label=11;case 11:return u<o.length?(_=o[u],[4,this.renderStack(_)]):[3,14];case 12:Q.sent(),Q.label=13;case 13:return u++,[3,11];case 14:l=0,f=t.nonPositionedInlineLevel,Q.label=15;case 15:return l<f.length?(_=f[l],[4,this.renderStack(_)]):[3,18];case 16:Q.sent(),Q.label=17;case 17:return l++,[3,15];case 18:h=0,d=t.inlineLevel,Q.label=19;case 19:return h<d.length?(_=d[h],[4,this.renderNode(_)]):[3,22];case 20:Q.sent(),Q.label=21;case 21:return h++,[3,19];case 22:C=0,p=t.zeroOrAutoZIndexOrTransformedOrOpacity,Q.label=23;case 23:return C<p.length?(_=p[C],[4,this.renderStack(_)]):[3,26];case 24:Q.sent(),Q.label=25;case 25:return C++,[3,23];case 26:T=0,U=t.positiveZIndex,Q.label=27;case 27:return T<U.length?(_=U[T],[4,this.renderStack(_)]):[3,30];case 28:Q.sent(),Q.label=29;case 29:return T++,[3,27];case 30:return[2]}})})},e.prototype.mask=function(t){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(t.slice(0).reverse()),this.ctx.closePath()},e.prototype.path=function(t){this.ctx.beginPath(),this.formatPath(t),this.ctx.closePath()},e.prototype.formatPath=function(t){var r=this;t.forEach(function(n,s){var a=ae(n)?n.start:n;s===0?r.ctx.moveTo(a.x,a.y):r.ctx.lineTo(a.x,a.y),ae(n)&&r.ctx.bezierCurveTo(n.startControl.x,n.startControl.y,n.endControl.x,n.endControl.y,n.end.x,n.end.y)})},e.prototype.renderRepeat=function(t,r,n,s){this.path(t),this.ctx.fillStyle=r,this.ctx.translate(n,s),this.ctx.fill(),this.ctx.translate(-n,-s)},e.prototype.resizeImage=function(t,r,n){var s;if(t.width===r&&t.height===n)return t;var a=(s=this.canvas.ownerDocument)!==null&&s!==void 0?s:document,u=a.createElement("canvas");u.width=Math.max(1,r),u.height=Math.max(1,n);var o=u.getContext("2d");return o.drawImage(t,0,0,t.width,t.height,0,0,r,n),u},e.prototype.renderBackgroundImage=function(t){return KA(this,void 0,void 0,function(){var r,n,s,a,u,o;return MA(this,function(l){switch(l.label){case 0:r=t.styles.backgroundImage.length-1,n=function(f){var h,d,C,eA,fA,mA,q,rA,P,p,eA,fA,mA,q,rA,T,U,_,Q,D,k,x,m,H,P,M,eA,cA,lA,q,rA,uA,fA,mA,PA,FA,VA,vA,jA,S,v,J;return MA(this,function(j){switch(j.label){case 0:if(f.type!==0)return[3,5];h=void 0,d=f.url,j.label=1;case 1:return j.trys.push([1,3,,4]),[4,s.context.cache.match(d)];case 2:return h=j.sent(),[3,4];case 3:return j.sent(),s.context.logger.error("Error loading background-image "+d),[3,4];case 4:return h&&(C=di(t,r,[h.width,h.height,h.width/h.height]),eA=C[0],fA=C[1],mA=C[2],q=C[3],rA=C[4],P=s.ctx.createPattern(s.resizeImage(h,q,rA),"repeat"),s.renderRepeat(eA,P,fA,mA)),[3,6];case 5:C1(f)?(p=di(t,r,[null,null,null]),eA=p[0],fA=p[1],mA=p[2],q=p[3],rA=p[4],T=B1(f.angle,q,rA),U=T[0],_=T[1],Q=T[2],D=T[3],k=T[4],x=document.createElement("canvas"),x.width=q,x.height=rA,m=x.getContext("2d"),H=m.createLinearGradient(_,D,Q,k),Lc(f.stops,U).forEach(function(LA){return H.addColorStop(LA.stop,SA(LA.color))}),m.fillStyle=H,m.fillRect(0,0,q,rA),q>0&&rA>0&&(P=s.ctx.createPattern(x,"repeat"),s.renderRepeat(eA,P,fA,mA))):w1(f)&&(M=di(t,r,[null,null,null]),eA=M[0],cA=M[1],lA=M[2],q=M[3],rA=M[4],uA=f.position.length===0?[ka]:f.position,fA=oA(uA[0],q),mA=oA(uA[uA.length-1],rA),PA=g1(f,fA,mA,q,rA),FA=PA[0],VA=PA[1],FA>0&&VA>0&&(vA=s.ctx.createRadialGradient(cA+fA,lA+mA,0,cA+fA,lA+mA,FA),Lc(f.stops,FA*2).forEach(function(LA){return vA.addColorStop(LA.stop,SA(LA.color))}),s.path(eA),s.ctx.fillStyle=vA,FA!==VA?(jA=t.bounds.left+.5*t.bounds.width,S=t.bounds.top+.5*t.bounds.height,v=VA/FA,J=1/v,s.ctx.save(),s.ctx.translate(jA,S),s.ctx.transform(1,0,0,v,0,0),s.ctx.translate(-jA,-S),s.ctx.fillRect(cA,J*(lA-S)+S,q,rA*J),s.ctx.restore()):s.ctx.fill())),j.label=6;case 6:return r--,[2]}})},s=this,a=0,u=t.styles.backgroundImage.slice(0).reverse(),l.label=1;case 1:return a<u.length?(o=u[a],[5,n(o)]):[3,4];case 2:l.sent(),l.label=3;case 3:return a++,[3,1];case 4:return[2]}})})},e.prototype.renderSolidBorder=function(t,r,n){return KA(this,void 0,void 0,function(){return MA(this,function(s){return this.path(Kl(n,r)),this.ctx.fillStyle=SA(t),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(t,r,n,s){return KA(this,void 0,void 0,function(){var a,u;return MA(this,function(o){switch(o.label){case 0:return r<3?[4,this.renderSolidBorder(t,n,s)]:[3,2];case 1:return o.sent(),[2];case 2:return a=Ub(s,n),this.path(a),this.ctx.fillStyle=SA(t),this.ctx.fill(),u=Qb(s,n),this.path(u),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(t){return KA(this,void 0,void 0,function(){var r,n,s,a,u,o,l,f,h=this;return MA(this,function(d){switch(d.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!Xe(r.backgroundColor)||r.backgroundImage.length,s=[{style:r.borderTopStyle,color:r.borderTopColor,width:r.borderTopWidth},{style:r.borderRightStyle,color:r.borderRightColor,width:r.borderRightWidth},{style:r.borderBottomStyle,color:r.borderBottomColor,width:r.borderBottomWidth},{style:r.borderLeftStyle,color:r.borderLeftColor,width:r.borderLeftWidth}],a=Db(Ot(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(a),this.ctx.clip(),Xe(r.backgroundColor)||(this.ctx.fillStyle=SA(r.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(t.container)]):[3,2];case 1:d.sent(),this.ctx.restore(),r.boxShadow.slice(0).reverse().forEach(function(C){h.ctx.save();var p=ts(t.curves),T=C.inset?0:Lb,U=Tb(p,-T+(C.inset?1:-1)*C.spread.number,(C.inset?1:-1)*C.spread.number,C.spread.number*(C.inset?-2:2),C.spread.number*(C.inset?-2:2));C.inset?(h.path(p),h.ctx.clip(),h.mask(U)):(h.mask(p),h.ctx.clip(),h.path(U)),h.ctx.shadowOffsetX=C.offsetX.number+T,h.ctx.shadowOffsetY=C.offsetY.number,h.ctx.shadowColor=SA(C.color),h.ctx.shadowBlur=C.blur.number,h.ctx.fillStyle=C.inset?SA(C.color):"rgba(0,0,0,1)",h.ctx.fill(),h.ctx.restore()}),d.label=2;case 2:u=0,o=0,l=s,d.label=3;case 3:return o<l.length?(f=l[o],f.style!==0&&!Xe(f.color)&&f.width>0?f.style!==2?[3,5]:[4,this.renderDashedDottedBorder(f.color,f.width,u,t.curves,2)]:[3,11]):[3,13];case 4:return d.sent(),[3,11];case 5:return f.style!==3?[3,7]:[4,this.renderDashedDottedBorder(f.color,f.width,u,t.curves,3)];case 6:return d.sent(),[3,11];case 7:return f.style!==4?[3,9]:[4,this.renderDoubleBorder(f.color,f.width,u,t.curves)];case 8:return d.sent(),[3,11];case 9:return[4,this.renderSolidBorder(f.color,u,t.curves)];case 10:d.sent(),d.label=11;case 11:u++,d.label=12;case 12:return o++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,r,n,s,a){return KA(this,void 0,void 0,function(){var u,o,l,f,h,d,C,p,T,U,_,Q,D,k,x,m,x,m;return MA(this,function(H){return this.ctx.save(),u=Fb(s,n),o=Kl(s,n),a===2&&(this.path(o),this.ctx.clip()),ae(o[0])?(l=o[0].start.x,f=o[0].start.y):(l=o[0].x,f=o[0].y),ae(o[1])?(h=o[1].end.x,d=o[1].end.y):(h=o[1].x,d=o[1].y),n===0||n===2?C=Math.abs(l-h):C=Math.abs(f-d),this.ctx.beginPath(),a===3?this.formatPath(u):this.formatPath(o.slice(0,2)),p=r<3?r*3:r*2,T=r<3?r*2:r,a===3&&(p=r,T=r),U=!0,C<=p*2?U=!1:C<=p*2+T?(_=C/(2*p+T),p*=_,T*=_):(Q=Math.floor((C+T)/(p+T)),D=(C-Q*p)/(Q-1),k=(C-(Q+1)*p)/Q,T=k<=0||Math.abs(T-D)<Math.abs(T-k)?D:k),U&&(a===3?this.ctx.setLineDash([0,p+T]):this.ctx.setLineDash([p,T])),a===3?(this.ctx.lineCap="round",this.ctx.lineWidth=r):this.ctx.lineWidth=r*2+1.1,this.ctx.strokeStyle=SA(t),this.ctx.stroke(),this.ctx.setLineDash([]),a===2&&(ae(o[0])&&(x=o[3],m=o[0],this.ctx.beginPath(),this.formatPath([new O(x.end.x,x.end.y),new O(m.start.x,m.start.y)]),this.ctx.stroke()),ae(o[1])&&(x=o[1],m=o[2],this.ctx.beginPath(),this.formatPath([new O(x.end.x,x.end.y),new O(m.start.x,m.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(t){return KA(this,void 0,void 0,function(){var r;return MA(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=SA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),r=bb(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e}(Yl),Hb=function(A){return A instanceof Bl||A instanceof dl?!0:A instanceof ri&&A.type!==jn&&A.type!==qn},Db=function(A,e){switch(A){case 0:return ts(e);case 2:return Eb(e);case 1:default:return rs(e)}},Ob=function(A){switch(A){case 1:return"center";case 2:return"right";case 0:default:return"left"}},Rb=["-apple-system","system-ui"],Mb=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Rb.indexOf(e)===-1}):A},kb=function(A){fe(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),n.options=r,n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px",n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+r.width+"x"+r.height+" at "+r.x+","+r.y+") with scale "+r.scale),n}return e.prototype.render=function(t){return KA(this,void 0,void 0,function(){var r,n;return MA(this,function(s){switch(s.label){case 0:return r=Ai(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,Pb(r)];case 1:return n=s.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=SA(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},e}(Yl),Pb=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},Kb=function(){function A(e){var t=e.id,r=e.enabled;this.id=t,this.enabled=r,this.start=Date.now()}return A.prototype.debug=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.debug=="function"?console.debug.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.getTime=function(){return Date.now()-this.start},A.prototype.info=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&typeof window<"u"&&window.console&&typeof console.info=="function"&&console.info.apply(console,Bn([this.id,this.getTime()+"ms"],e))},A.prototype.warn=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.warn=="function"?console.warn.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.error=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.error=="function"?console.error.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.instances={},A}(),Vb=function(){function A(e,t){var r;this.windowBounds=t,this.instanceName="#"+A.instanceCount++,this.logger=new Kb({id:this.instanceName,enabled:e.logging}),this.cache=(r=e.cache)!==null&&r!==void 0?r:new ob(this,e)}return A.instanceCount=1,A}(),Gb=function(A,e){return e===void 0&&(e={}),Yb(A,e)};typeof window<"u"&&Dl.setContext(window);var Yb=function(A,e){return KA(void 0,void 0,void 0,function(){var t,r,n,s,a,u,o,l,f,h,d,C,p,T,U,_,Q,D,k,x,H,m,H,P,M,eA,cA,lA,q,rA,uA,fA,mA,PA,FA,VA,vA,jA,S,v;return MA(this,function(J){switch(J.label){case 0:if(!A||typeof A!="object")return[2,Promise.reject("Invalid element provided as first argument")];if(t=A.ownerDocument,!t)throw new Error("Element is not attached to a Document");if(r=t.defaultView,!r)throw new Error("Document is not attached to a Window");return n={allowTaint:(P=e.allowTaint)!==null&&P!==void 0?P:!1,imageTimeout:(M=e.imageTimeout)!==null&&M!==void 0?M:15e3,proxy:e.proxy,useCORS:(eA=e.useCORS)!==null&&eA!==void 0?eA:!1},s=pa({logging:(cA=e.logging)!==null&&cA!==void 0?cA:!0,cache:e.cache},n),a={windowWidth:(lA=e.windowWidth)!==null&&lA!==void 0?lA:r.innerWidth,windowHeight:(q=e.windowHeight)!==null&&q!==void 0?q:r.innerHeight,scrollX:(rA=e.scrollX)!==null&&rA!==void 0?rA:r.pageXOffset,scrollY:(uA=e.scrollY)!==null&&uA!==void 0?uA:r.pageYOffset},u=new Fe(a.scrollX,a.scrollY,a.windowWidth,a.windowHeight),o=new Vb(s,u),l=(fA=e.foreignObjectRendering)!==null&&fA!==void 0?fA:!1,f={allowTaint:(mA=e.allowTaint)!==null&&mA!==void 0?mA:!1,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:l,copyStyles:l},o.logger.debug("Starting document clone with size "+u.width+"x"+u.height+" scrolled to "+-u.left+","+-u.top),h=new xl(o,A,f),d=h.clonedReferenceElement,d?[4,h.toIFrame(t,u)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return C=J.sent(),p=si(d)||XT(d)?Tp(d.ownerDocument):gn(o,d),T=p.width,U=p.height,_=p.left,Q=p.top,D=Xb(o,d,e.backgroundColor),k={canvas:e.canvas,backgroundColor:D,scale:(FA=(PA=e.scale)!==null&&PA!==void 0?PA:r.devicePixelRatio)!==null&&FA!==void 0?FA:1,x:((VA=e.x)!==null&&VA!==void 0?VA:0)+_,y:((vA=e.y)!==null&&vA!==void 0?vA:0)+Q,width:(jA=e.width)!==null&&jA!==void 0?jA:Math.ceil(T),height:(S=e.height)!==null&&S!==void 0?S:Math.ceil(U)},l?(o.logger.debug("Document cloned, using foreign object rendering"),H=new kb(o,k),[4,H.render(d)]):[3,3];case 2:return x=J.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+_+","+Q+" with size "+T+"x"+U+" using computed rendering"),o.logger.debug("Starting DOM parsing"),m=ml(o,d),D===m.styles.backgroundColor&&(m.styles.backgroundColor=_e.TRANSPARENT),o.logger.debug("Starting renderer for element at "+k.x+","+k.y+" with size "+k.width+"x"+k.height),H=new xb(o,k),[4,H.render(m)];case 4:x=J.sent(),J.label=5;case 5:return(!((v=e.removeContainer)!==null&&v!==void 0)||v)&&(xl.destroy(C)||o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),o.logger.debug("Finished rendering"),[2,x]}})})},Xb=function(A,e,t){var r=e.ownerDocument,n=r.documentElement?Qr(A,getComputedStyle(r.documentElement).backgroundColor):_e.TRANSPARENT,s=r.body?Qr(A,getComputedStyle(r.body).backgroundColor):_e.TRANSPARENT,a=typeof t=="string"?Qr(A,t):t===null?_e.TRANSPARENT:4294967295;return e===r.documentElement?Xe(n)?Xe(s)?a:s:n:a};const Wb=c.defineComponent({name:"GpIframe",props:{htmlContent:{type:String,required:!0},jsFiles:{type:Array,default:[]},cssFiles:{type:Array,default:[]},iframeStyle:{type:Object,default:()=>({width:"100%",height:"100%",border:"none"})}},setup(A){const e=c.ref(null),t=c.ref(),r=()=>{var C;const s=e.value;if(!s)return;const a=s.contentDocument||((C=s.contentWindow)==null?void 0:C.document);if(!a)return;a.open(),a.write("<!DOCTYPE html><html><head></head><body></body></html>"),a.close();const u=a.head;A.cssFiles.forEach(p=>{const T=a.createElement("link");T.rel="stylesheet",T.href=p,u.appendChild(T)});const o=a.createElement("link");o.rel="stylesheet",o.href="/src/style.css",u.appendChild(o);const l=a.createElement("script");l.src="/spa/topic/js/jquery-3.6.0.min.js",l.async=!1,u.appendChild(l);const f=a.createElement("script");f.src="/spa/topic/js/swiper-bundle.min.js",f.async=!1,u.appendChild(f);const h=a.createElement("script");h.src="/spa/topic/js/index.js",h.async=!1,u.appendChild(h);const d=a.body;d.innerHTML=A.htmlContent,A.jsFiles.forEach(p=>{const T=a.createElement("script");T.src=p,T.async=!1,d.appendChild(T)}),t.value=d,c.nextTick(()=>{})};c.watch(t,s=>{if(!s)return;new MutationObserver(()=>{const u=e.value;u&&(u.style.height=`${s.scrollHeight}px`)}).observe(s,{childList:!0,subtree:!0})});const n=async s=>{var l;const a=e.value;if(!a)return;const u=a.contentDocument||((l=a.contentWindow)==null?void 0:l.document);if(!u)return;const o=u.body;if(o)try{await c.nextTick();const f=await Gb(o,{x:0,y:0,scrollX:window.scrollX,scrollY:window.scrollY,useCORS:!0,allowTaint:!0,foreignObjectRendering:!1});s?s(f):f.toBlob(h=>{const d=URL.createObjectURL(h);window.open(d,"_blank")})}catch(f){console.error("截图生成失败:",f)}};return c.watch(()=>[A.htmlContent,A.jsFiles,A.cssFiles],r,{deep:!0}),c.onMounted(()=>{r()}),{iframeRef:e,generateCover:n}}});function Jb(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",null,[c.createElementVNode("iframe",{ref:"iframeRef",style:c.normalizeStyle(A.iframeStyle)},null,4)])}const Xl=Oe(Wb,[["render",Jb],["__scopeId","data-v-27037f5b"]]),qb={class:"flex gp-dsigner"},jb={key:0,class:"flex items-center justify-between border-b"},$b={class:"text-lg font-bold p-2"},Zb={class:"text-sm font-thin text-gray-500"},zb={class:"flex-1 overflow-auto"},AU={key:0,class:"flex justify-between items-center border-b p-2"},eU={class:"flex items-center"},tU={class:"p-2"},rU={class:"sticky top-0"},nU={key:0,class:"text-lg font-bold border-b p-2"},sU={class:"text-sm font-thin text-gray-500"},aU={class:"p-2"},Wl=Oe(c.defineComponent({__name:"Designer",props:{mode:{default:"design"},template:{},css:{},js:{},previewWidth:{default:360},uploadByFile:{},icons:{},rules:{},preview:{type:Boolean,default:!0},showTitle:{type:Boolean,default:!0}},emits:["update:modelValue","update:element"],setup(A,{expose:e,emit:t}){const r=A,n=t,s=c.ref(r.rules||[]),a=c.ref(r.template),u=c.ref();let o=oo("",{},!1);const l=c.ref("");c.watch(()=>r.template,I=>{a.value=I},{immediate:!0}),c.watch(()=>a.value,I=>{I&&(u.value=lA(I))},{immediate:!0}),c.watch(()=>r.css,I=>{I.forEach(L=>{if(document.querySelector(`link[href="${L}"]`))return;const K=document.createElement("link");K.rel="stylesheet",K.href=L,document.head.appendChild(K)})},{immediate:!0}),c.watch(()=>r.js,I=>{!I||I.length===0||I.forEach(L=>{if(document.querySelector(`script[src="${L}"]`))return;const K=document.createElement("script");K.src=L,document.body.appendChild(K)})},{immediate:!0});const f=c.ref(r.mode);c.watch(()=>u.value,I=>{I&&n("update:element",I)},{immediate:!0});const h=c.ref("");c.watch(()=>l.value,I=>{n("update:modelValue",I)},{immediate:!0});const d=c.ref(),C=c.ref(),p=c.ref(),T=c.ref(),U=c.ref(),_=c.ref(),Q=c.ref(""),D=c.ref(r.mode==="design");c.watch(()=>r.rules,I=>{s.value=I,a.value&&(u.value=lA(a.value))},{immediate:!0});function k(I=void 0){T.value&&T.value.generateCover(I)}function x(I){U.value=I}function m(I,L=""){if(L){const K=H(u.value,L);K?_.value=K:_.value=I}else _.value=I}function H(I,L){if(I.xpath===L)return I;if(I.children&&I.children.length)for(const K of I.children){const V=H(K,L);if(V)return V}}function P(I,L){var K,V;return I.tag===L.tag&&((K=I.children)==null?void 0:K.length)===((V=L.children)==null?void 0:V.length)}function M(I){if(U.value.xpath==I.xpath){if(U.value){if(I.type===W.Block){var L=!0;const K=H(u.value,U.value.parentxpath||"");if(K&&K.children&&K.children.forEach(V=>{if(V.tag!=U.value.tag||!P(V,U.value)){L=!1;return}}),!L){$.error("同级结构不一致,错误配置!");return}}if(U.value.rule=I.rule,U.value.type=I.type,U.value.type===W.Block){const K=H(u.value,U.value.parentxpath||"");K&&K.children&&(K.children.forEach(V=>{if(V.tag!=U.value.tag||!P(V,U.value)){$.error("同级结构不一致,无法配置为块类型");return}}),K.children.forEach(V=>{V.tag===U.value.tag&&(V.rule=I.rule,V.type=I.type)}))}}h.value=new Date().getTime().toString(),$.success("保存成功"),n("update:element",u.value)}}function eA(I){const L=H(u.value,I.xpath||"");L&&(L.rule=I.rule,L.type=I.type,L.children&&I.children&&L.children.forEach(K=>{const V=I.children.find(wA=>wA.xpath===K.xpath);V&&(K.rule=V.rule,K.type=V.type)})),$.success("操作成功"),h.value=new Date().getTime().toString(),n("update:element",u.value)}function cA(I){l.value=I}function lA(I){o=oo(I);const L=o("body").children().toArray().map(K=>q(o(K)));return l.value=o("body").html()||"",L[0]}function q(I,L=""){var ue;function K(Ae){if(!Ae||!Ae[0])return"";const $A=[];let lt=Ae;for(;lt.length&&lt[0].tagName!=="html";){const Jl=lt[0].tagName,uU=lt.parent().children(Jl).index(lt)+1;$A.unshift(`${Jl}[${uU}]`),lt=lt.parent()}return"/html/"+$A.join("/")}const V=K(I).replace("/html/body[1]",""),wA=I.children().toArray().map(Ae=>q(o(Ae),V)),xA=(ue=s.value)==null?void 0:ue.find(Ae=>Ae.xpath===V);return{tag:I[0].tagName,text:I.contents().not(I.children()).text().trim(),attrs:I[0].attribs,children:wA,xpath:V,parentxpath:L,type:(xA==null?void 0:xA.type)||W.None,rule:(xA==null?void 0:xA.rule)||{}}}function rA(I){console.log("更新子节点的文本",I);const L=H(u.value,I.element.xpath);if(L){const K=c.toRaw(L);K.editText=I.newText}}function uA(I,L=""){function K(V,wA){var Ae;const ue=(wA?((Ae=H(u.value,wA))==null?void 0:Ae.children)||[]:[u.value]).filter($A=>$A.tag===V.tag).indexOf(V)+1;return`${wA}/${V.tag}[${ue}]`}I.xpath=K(I,L),I.parentxpath=L,(I.children||[]).forEach(V=>uA(V,I.xpath))}function fA({action:I,element:L,newBlock:K}){const V=H(u.value,L.parentxpath||"");if(!V||!V.children)return;const wA=V.children.findIndex($A=>$A===L);if(wA===-1){$.error("未找到元素");return}const xA=V.children.length,{minBlock:ue,maxBlock:Ae}=L.rule;if((I==="add"||I==="copy")&&xA>=(Ae||1/0)){Q.value=`无法添加更多块。最大块数量为 ${Ae}`,$.error(Q.value);return}switch(I){case"add":if(K){const $A={...K,xpath:"",children:JSON.parse(JSON.stringify(K.children))};V.children.splice(wA+1,0,$A),$.success("添加成功")}break;case"copy":if(K){const $A={...K,xpath:"",children:JSON.parse(JSON.stringify(K.children))};V.children.splice(wA+1,0,$A),$.success("复制成功")}break;case"moveUp":if(wA>0){const[$A]=V.children.splice(wA,1);V.children.splice(wA-1,0,$A),$.success("前移成功")}else $.error("已经是第一个块,无法前移");break;case"moveDown":if(wA<V.children.length-1){const[$A]=V.children.splice(wA,1);V.children.splice(wA+1,0,$A),$.success("后移成功")}else $.error("已经是最后一个块,无法后移");break;case"delete":if(xA<=(ue||0)){Q.value=`无法删除更多块。最小块数量为 ${ue}`,$.error(Q.value);return}V.children.splice(wA,1),$.success("删除成功");break}Q.value="",uA(u.value)}function mA(I,L){let K=L.attrs.class.replace(/icon-\S+/g,`icon-${I}`);L.attrs.class=K}function PA(I){const L=I.file,K=H(u.value,I.element.xpath);if(r.uploadByFile)r.uploadByFile(L).then(V=>{V.success&&(K.attrs.src=V.file.url,h.value=new Date().getTime().toString())});else{K.attrs.alt=L.name;const V=URL.createObjectURL(L);K.attrs.src=V,h.value=new Date().getTime().toString()}}function FA(I){const{icon:L}=I,K=H(u.value,I.element.xpath);let V=K.attrs.class.replace(/icon-\S+/g,`icon-${L}`);K.attrs.class=V,h.value=new Date().getTime().toString()}const VA=I=>I.type.startsWith("image/")?!0:($.error("只能上传图片文件"),!1),vA=c.ref({});function jA(I,L){if(!I||I.length===0)return;const K=I[0];if(L.rule&&(L.rule.minImageWidth||L.rule.maxImageHeight)){if(L.rule.minImageWidth&&K.width<L.rule.minImageWidth){$.error(`图片宽度不能小于 ${L.rule.minImageWidth}px`);return}if(L.rule.maxImageHeight&&K.height<L.rule.maxImageHeight){$.error(`图片高度不能小于 ${L.rule.maxImageHeight}px`);return}}L.rule.minImageWidth&&L.rule.maxImageHeight?(vA.value.width=L.rule.minImageWidth,vA.value.height=L.rule.maxImageHeight,vA.value.aspectRatio=L.rule.minImageWidth/L.rule.maxImageHeight):vA.value={},K&&(L.rule.crop?(K.thumbUrl,d.value.handleOpenCropper(vA.value,K.file,K.name,L)):r.uploadByFile?r.uploadByFile(K.file).then(V=>{V.success&&(L.attrs.src=V.file.url,h.value=new Date().getTime().toString())}):(L.attrs.src=K.thumbUrl,h.value=new Date().getTime().toString()))}const S=c.ref(r.previewWidth),v=c.ref(360);let J=c.ref(!1),j=c.ref(""),LA=0,Te=0;function vr(I){j.value=I,J.value=!0,LA=event.clientX,I==="preview"?Te=S.value:I==="structure"&&(Te=v.value),window.addEventListener("mousemove",Lr),window.addEventListener("mouseup",xr)}function Lr(I){if(!J.value)return;const L=I.clientX-LA;j.value==="preview"?S.value=Math.max(200,Te+L):j.value==="structure"&&(v.value=Math.max(200,Te-L))}function xr(){J.value=!1,j.value="",window.removeEventListener("mousemove",Lr),window.removeEventListener("mouseup",xr)}return e({generateCover:k}),(I,L)=>(c.openBlock(),c.createElementBlock("div",qb,[I.preview?(c.openBlock(),c.createElementBlock("div",{key:0,class:"border-l overflow-auto resize-area",style:c.normalizeStyle({width:S.value+"px"})},[I.showTitle?(c.openBlock(),c.createElementBlock("div",jb,[c.createElementVNode("h2",$b,[L[4]||(L[4]=c.createTextVNode(" 实时预览 ")),c.createElementVNode("span",Zb,c.toDisplayString(S.value)+"px",1)]),c.createElementVNode("div",{onClick:L[0]||(L[0]=()=>k()),class:"p-2 cursor-pointer text-blue-500"}," 封面 ")])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[l.value?(c.openBlock(),c.createBlock(Xl,{key:0,"css-files":I.css,"js-files":I.js,"html-content":l.value,class:"gp-designer-preview",ref_key:"previewRef",ref:T},null,8,["css-files","js-files","html-content"])):(c.openBlock(),c.createBlock(Xl,{key:1,"css-files":I.css,"js-files":I.js,"html-content":c.unref(o)("body").html(),class:"gp-designer-preview",ref_key:"previewRef",ref:T},null,8,["css-files","js-files","html-content"]))])],4)):c.createCommentVNode("",!0),I.preview?(c.openBlock(),c.createElementBlock("div",{key:1,class:"resizer",onMousedown:L[1]||(L[1]=K=>vr("preview"))},null,32)):c.createCommentVNode("",!0),c.createElementVNode("div",zb,[I.showTitle?(c.openBlock(),c.createElementBlock("div",AU,[L[6]||(L[6]=c.createElementVNode("h2",{class:"text-lg font-bold"},"结构渲染",-1)),c.createElementVNode("div",eU,[c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":L[2]||(L[2]=K=>D.value=K),type:"checkbox",id:"showMargin",class:"mr-2"},null,512),[[c.vModelCheckbox,D.value]]),L[5]||(L[5]=c.createElementVNode("label",{for:"showMargin"},"间距",-1))])])):c.createCommentVNode("",!0),c.createElementVNode("div",tU,[u.value?(c.openBlock(),c.createBlock(CE,{key:0,"upload-by-file":I.uploadByFile,cropper:d.value,icon:C.value,upload:p.value,mode:I.mode,icons:I.icons,r:h.value,"show-margin":D.value,element:u.value,selectedElement:U.value,hoveredElement:_.value,onSelectElement:x,onHoverElement:m,onContentUpdated:cA,onUpdateText:rA,onBlockAction:fA,onAddIcon:mA,onUpdateElementRule:eA},null,8,["upload-by-file","cropper","icon","upload","mode","icons","r","show-margin","element","selectedElement","hoveredElement"])):c.createCommentVNode("",!0)])]),f.value=="design"?(c.openBlock(),c.createElementBlock("div",{key:2,class:"resizer",onMousedown:L[3]||(L[3]=K=>vr("structure"))},null,32)):c.createCommentVNode("",!0),f.value=="design"?(c.openBlock(),c.createElementBlock("div",{key:3,class:"resize-area",style:c.normalizeStyle({width:v.value+"px"})},[c.createElementVNode("div",rU,[I.showTitle?(c.openBlock(),c.createElementBlock("h2",nU,[L[7]||(L[7]=c.createTextVNode(" 节点属性 ")),c.createElementVNode("span",sU,c.toDisplayString(v.value)+"px",1)])):c.createCommentVNode("",!0),c.createElementVNode("div",aU,[U.value?(c.openBlock(),c.createBlock(YE,{key:0,element:U.value,onUpdateElement:M},null,8,["element"])):c.createCommentVNode("",!0)])])],4)):c.createCommentVNode("",!0),c.createVNode(ep,{ref_key:"cropperRef",ref:d,onOk:PA},null,512),c.createVNode(fp,{icons:I.icons,ref_key:"iconRef",ref:C,onOk:FA},null,8,["icons"]),c.createVNode(wp,{ref_key:"uploadRef",ref:p,multiple:!1,show:!1,beforeUpload:VA,onChange:jA},{"upload-icon":c.withCtx(()=>L[8]||(L[8]=[c.createElementVNode("div",{class:"p-2"},"上传",-1)])),_:1},512)]))}}),[["__scopeId","data-v-2f97c665"]]),iU={install(A){A.component("Designer",Wl)}};Ne.Designer=Wl,Ne.default=iU,Object.defineProperties(Ne,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
38
+ }`,ib=function(A){ub(A,"."+ci+sb+Dl+`
39
+ .`+li+ab+Dl)},ub=function(A,e){var t=A.ownerDocument;if(t){var r=t.createElement("style");r.textContent=e,A.appendChild(r)}},Ol=function(){function A(){}return A.getOrigin=function(e){var t=A._link;return t?(t.href=e,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},A.isSameOrigin=function(e){return A.getOrigin(e)===A._origin},A.setContext=function(e){A._link=e.document.createElement("a"),A._origin=A.getOrigin(e.location.href)},A._origin="about:blank",A}(),ob=function(){function A(e,t){this.context=e,this._options=t,this._cache={}}return A.prototype.addImage=function(e){var t=Promise.resolve();return this.has(e)||(hi(e)||hb(e))&&(this._cache[e]=this.loadImage(e)).catch(function(){}),t},A.prototype.match=function(e){return this._cache[e]},A.prototype.loadImage=function(e){return VA(this,void 0,void 0,function(){var t,r,n,s,a=this;return kA(this,function(u){switch(u.label){case 0:return t=Ol.isSameOrigin(e),r=!fi(e)&&this._options.useCORS===!0&&RA.SUPPORT_CORS_IMAGES&&!t,n=!fi(e)&&!t&&!hi(e)&&typeof this._options.proxy=="string"&&RA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!fi(e)&&!hi(e)&&!n&&!r?[2]:(s=e,n?[4,this.proxy(s)]:[3,2]);case 1:s=u.sent(),u.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(o,l){var f=new Image;f.onload=function(){return o(f)},f.onerror=l,(db(s)||r)&&(f.crossOrigin="anonymous"),f.src=s,f.complete===!0&&setTimeout(function(){return o(f)},500),a._options.imageTimeout>0&&setTimeout(function(){return l("Timed out ("+a._options.imageTimeout+"ms) loading image")},a._options.imageTimeout)})];case 3:return[2,u.sent()]}})})},A.prototype.has=function(e){return typeof this._cache[e]<"u"},A.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},A.prototype.proxy=function(e){var t=this,r=this._options.proxy;if(!r)throw new Error("No proxy defined");var n=e.substring(0,256);return new Promise(function(s,a){var u=RA.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=function(){if(o.status===200)if(u==="text")s(o.response);else{var h=new FileReader;h.addEventListener("load",function(){return s(h.result)},!1),h.addEventListener("error",function(d){return a(d)},!1),h.readAsDataURL(o.response)}else a("Failed to proxy resource "+n+" with status code "+o.status)},o.onerror=a;var l=r.indexOf("?")>-1?"&":"?";if(o.open("GET",""+r+l+"url="+encodeURIComponent(e)+"&responseType="+u),u!=="text"&&o instanceof XMLHttpRequest&&(o.responseType=u),t._options.imageTimeout){var f=t._options.imageTimeout;o.timeout=f,o.ontimeout=function(){return a("Timed out ("+f+"ms) proxying "+n)}}o.send()})},A}(),cb=/^data:image\/svg\+xml/i,lb=/^data:image\/.*;base64,/i,fb=/^data:image\/.*/i,hb=function(A){return RA.SUPPORT_SVG_DRAWING||!Bb(A)},fi=function(A){return fb.test(A)},db=function(A){return lb.test(A)},hi=function(A){return A.substr(0,4)==="blob"},Bb=function(A){return A.substr(-3).toLowerCase()==="svg"||cb.test(A)},O=function(){function A(e,t){this.type=0,this.x=e,this.y=t}return A.prototype.add=function(e,t){return new A(this.x+e,this.y+t)},A}(),Dt=function(A,e,t){return new O(A.x+(e.x-A.x)*t,A.y+(e.y-A.y)*t)},es=function(){function A(e,t,r,n){this.type=1,this.start=e,this.startControl=t,this.endControl=r,this.end=n}return A.prototype.subdivide=function(e,t){var r=Dt(this.start,this.startControl,e),n=Dt(this.startControl,this.endControl,e),s=Dt(this.endControl,this.end,e),a=Dt(r,n,e),u=Dt(n,s,e),o=Dt(a,u,e);return t?new A(this.start,r,a,o):new A(o,u,s,this.end)},A.prototype.add=function(e,t){return new A(this.start.add(e,t),this.startControl.add(e,t),this.endControl.add(e,t),this.end.add(e,t))},A.prototype.reverse=function(){return new A(this.end,this.endControl,this.startControl,this.start)},A}(),ue=function(A){return A.type===1},gb=function(){function A(e){var t=e.styles,r=e.bounds,n=Qr(t.borderTopLeftRadius,r.width,r.height),s=n[0],a=n[1],u=Qr(t.borderTopRightRadius,r.width,r.height),o=u[0],l=u[1],f=Qr(t.borderBottomRightRadius,r.width,r.height),h=f[0],d=f[1],C=Qr(t.borderBottomLeftRadius,r.width,r.height),p=C[0],T=C[1],U=[];U.push((s+o)/r.width),U.push((p+h)/r.width),U.push((a+T)/r.height),U.push((l+d)/r.height);var _=Math.max.apply(Math,U);_>1&&(s/=_,a/=_,o/=_,l/=_,h/=_,d/=_,p/=_,T/=_);var I=r.width-o,D=r.height-d,k=r.width-h,x=r.height-T,m=t.borderTopWidth,H=t.borderRightWidth,P=t.borderBottomWidth,M=t.borderLeftWidth,eA=lA(t.paddingTop,e.bounds.width),uA=lA(t.paddingRight,e.bounds.width),fA=lA(t.paddingBottom,e.bounds.width),J=lA(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||a>0?EA(r.left+M/3,r.top+m/3,s-M/3,a-m/3,sA.TOP_LEFT):new O(r.left+M/3,r.top+m/3),this.topRightBorderDoubleOuterBox=s>0||a>0?EA(r.left+I,r.top+m/3,o-H/3,l-m/3,sA.TOP_RIGHT):new O(r.left+r.width-H/3,r.top+m/3),this.bottomRightBorderDoubleOuterBox=h>0||d>0?EA(r.left+k,r.top+D,h-H/3,d-P/3,sA.BOTTOM_RIGHT):new O(r.left+r.width-H/3,r.top+r.height-P/3),this.bottomLeftBorderDoubleOuterBox=p>0||T>0?EA(r.left+M/3,r.top+x,p-M/3,T-P/3,sA.BOTTOM_LEFT):new O(r.left+M/3,r.top+r.height-P/3),this.topLeftBorderDoubleInnerBox=s>0||a>0?EA(r.left+M*2/3,r.top+m*2/3,s-M*2/3,a-m*2/3,sA.TOP_LEFT):new O(r.left+M*2/3,r.top+m*2/3),this.topRightBorderDoubleInnerBox=s>0||a>0?EA(r.left+I,r.top+m*2/3,o-H*2/3,l-m*2/3,sA.TOP_RIGHT):new O(r.left+r.width-H*2/3,r.top+m*2/3),this.bottomRightBorderDoubleInnerBox=h>0||d>0?EA(r.left+k,r.top+D,h-H*2/3,d-P*2/3,sA.BOTTOM_RIGHT):new O(r.left+r.width-H*2/3,r.top+r.height-P*2/3),this.bottomLeftBorderDoubleInnerBox=p>0||T>0?EA(r.left+M*2/3,r.top+x,p-M*2/3,T-P*2/3,sA.BOTTOM_LEFT):new O(r.left+M*2/3,r.top+r.height-P*2/3),this.topLeftBorderStroke=s>0||a>0?EA(r.left+M/2,r.top+m/2,s-M/2,a-m/2,sA.TOP_LEFT):new O(r.left+M/2,r.top+m/2),this.topRightBorderStroke=s>0||a>0?EA(r.left+I,r.top+m/2,o-H/2,l-m/2,sA.TOP_RIGHT):new O(r.left+r.width-H/2,r.top+m/2),this.bottomRightBorderStroke=h>0||d>0?EA(r.left+k,r.top+D,h-H/2,d-P/2,sA.BOTTOM_RIGHT):new O(r.left+r.width-H/2,r.top+r.height-P/2),this.bottomLeftBorderStroke=p>0||T>0?EA(r.left+M/2,r.top+x,p-M/2,T-P/2,sA.BOTTOM_LEFT):new O(r.left+M/2,r.top+r.height-P/2),this.topLeftBorderBox=s>0||a>0?EA(r.left,r.top,s,a,sA.TOP_LEFT):new O(r.left,r.top),this.topRightBorderBox=o>0||l>0?EA(r.left+I,r.top,o,l,sA.TOP_RIGHT):new O(r.left+r.width,r.top),this.bottomRightBorderBox=h>0||d>0?EA(r.left+k,r.top+D,h,d,sA.BOTTOM_RIGHT):new O(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=p>0||T>0?EA(r.left,r.top+x,p,T,sA.BOTTOM_LEFT):new O(r.left,r.top+r.height),this.topLeftPaddingBox=s>0||a>0?EA(r.left+M,r.top+m,Math.max(0,s-M),Math.max(0,a-m),sA.TOP_LEFT):new O(r.left+M,r.top+m),this.topRightPaddingBox=o>0||l>0?EA(r.left+Math.min(I,r.width-H),r.top+m,I>r.width+H?0:Math.max(0,o-H),Math.max(0,l-m),sA.TOP_RIGHT):new O(r.left+r.width-H,r.top+m),this.bottomRightPaddingBox=h>0||d>0?EA(r.left+Math.min(k,r.width-M),r.top+Math.min(D,r.height-P),Math.max(0,h-H),Math.max(0,d-P),sA.BOTTOM_RIGHT):new O(r.left+r.width-H,r.top+r.height-P),this.bottomLeftPaddingBox=p>0||T>0?EA(r.left+M,r.top+Math.min(x,r.height-P),Math.max(0,p-M),Math.max(0,T-P),sA.BOTTOM_LEFT):new O(r.left+M,r.top+r.height-P),this.topLeftContentBox=s>0||a>0?EA(r.left+M+J,r.top+m+eA,Math.max(0,s-(M+J)),Math.max(0,a-(m+eA)),sA.TOP_LEFT):new O(r.left+M+J,r.top+m+eA),this.topRightContentBox=o>0||l>0?EA(r.left+Math.min(I,r.width+M+J),r.top+m+eA,I>r.width+M+J?0:o-M+J,l-(m+eA),sA.TOP_RIGHT):new O(r.left+r.width-(H+uA),r.top+m+eA),this.bottomRightContentBox=h>0||d>0?EA(r.left+Math.min(k,r.width-(M+J)),r.top+Math.min(D,r.height+m+eA),Math.max(0,h-(H+uA)),d-(P+fA),sA.BOTTOM_RIGHT):new O(r.left+r.width-(H+uA),r.top+r.height-(P+fA)),this.bottomLeftContentBox=p>0||T>0?EA(r.left+M+J,r.top+x,Math.max(0,p-(M+J)),T-(P+fA),sA.BOTTOM_LEFT):new O(r.left+M+J,r.top+r.height-(P+fA))}return A}(),sA;(function(A){A[A.TOP_LEFT=0]="TOP_LEFT",A[A.TOP_RIGHT=1]="TOP_RIGHT",A[A.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",A[A.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(sA||(sA={}));var EA=function(A,e,t,r,n){var s=4*((Math.sqrt(2)-1)/3),a=t*s,u=r*s,o=A+t,l=e+r;switch(n){case sA.TOP_LEFT:return new es(new O(A,l),new O(A,l-u),new O(o-a,e),new O(o,e));case sA.TOP_RIGHT:return new es(new O(A,e),new O(A+a,e),new O(o,l-u),new O(o,l));case sA.BOTTOM_RIGHT:return new es(new O(o,e),new O(o,e+u),new O(A+a,l),new O(A,l));case sA.BOTTOM_LEFT:default:return new es(new O(o,l),new O(o-a,l),new O(A,e+u),new O(A,e))}},ts=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},Eb=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},rs=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},mb=function(){function A(e,t,r){this.offsetX=e,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return A}(),ns=function(){function A(e,t){this.path=e,this.target=t,this.type=1}return A}(),pb=function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A}(),Cb=function(A){return A.type===0},Rl=function(A){return A.type===1},wb=function(A){return A.type===2},Ml=function(A,e){return A.length===e.length?A.some(function(t,r){return t===e[r]}):!1},Tb=function(A,e,t,r,n){return A.map(function(s,a){switch(a){case 0:return s.add(e,t);case 1:return s.add(e+r,t);case 2:return s.add(e+r,t+n);case 3:return s.add(e,t+n)}return s})},kl=function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A}(),Pl=function(){function A(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new gb(this.container),this.container.styles.opacity<1&&this.effects.push(new pb(this.container.styles.opacity)),this.container.styles.transform!==null){var r=this.container.bounds.left+this.container.styles.transformOrigin[0].number,n=this.container.bounds.top+this.container.styles.transformOrigin[1].number,s=this.container.styles.transform;this.effects.push(new mb(r,n,s))}if(this.container.styles.overflowX!==0){var a=ts(this.curves),u=rs(this.curves);Ml(a,u)?this.effects.push(new ns(a,6)):(this.effects.push(new ns(a,2)),this.effects.push(new ns(u,4)))}}return A.prototype.getEffects=function(e){for(var t=[2,3].indexOf(this.container.styles.position)===-1,r=this.parent,n=this.effects.slice(0);r;){var s=r.effects.filter(function(o){return!Rl(o)});if(t||r.container.styles.position!==0||!r.parent){if(n.unshift.apply(n,s),t=[2,3].indexOf(r.container.styles.position)===-1,r.container.styles.overflowX!==0){var a=ts(r.curves),u=rs(r.curves);Ml(a,u)||n.unshift(new ns(u,6))}}else n.unshift.apply(n,s);r=r.parent}return n.filter(function(o){return FA(o.target,e)})},A}(),di=function(A,e,t,r){A.container.elements.forEach(function(n){var s=FA(n.flags,4),a=FA(n.flags,2),u=new Pl(n,A);FA(n.styles.display,2048)&&r.push(u);var o=FA(n.flags,8)?[]:r;if(s||a){var l=s||n.styles.isPositioned()?t:e,f=new kl(u);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){var h=n.styles.zIndex.order;if(h<0){var d=0;l.negativeZIndex.some(function(p,T){return h>p.element.container.styles.zIndex.order?(d=T,!1):d>0}),l.negativeZIndex.splice(d,0,f)}else if(h>0){var C=0;l.positiveZIndex.some(function(p,T){return h>=p.element.container.styles.zIndex.order?(C=T+1,!1):C>0}),l.positiveZIndex.splice(C,0,f)}else l.zeroOrAutoZIndexOrTransformedOrOpacity.push(f)}else n.styles.isFloating()?l.nonPositionedFloats.push(f):l.nonPositionedInlineLevel.push(f);di(u,f,s?f:t,o)}else n.styles.isInlineLevel()?e.inlineLevel.push(u):e.nonInlineLevel.push(u),di(u,e,t,o);FA(n.flags,8)&&Kl(n,o)})},Kl=function(A,e){for(var t=A instanceof ri?A.start:1,r=A instanceof ri?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof hl&&typeof s.container.value=="number"&&s.container.value!==0&&(t=s.container.value),s.listValue=Sr(t,s.container.styles.listStyleType,!0),t+=r?-1:1}},bb=function(A){var e=new Pl(A,null),t=new kl(e),r=[];return di(e,t,t,r),Kl(e.container,r),t},Vl=function(A,e){switch(e){case 0:return oe(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return oe(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return oe(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);case 3:default:return oe(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ub=function(A,e){switch(e){case 0:return oe(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return oe(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return oe(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);case 3:default:return oe(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},Qb=function(A,e){switch(e){case 0:return oe(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return oe(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return oe(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);case 3:default:return oe(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},Fb=function(A,e){switch(e){case 0:return ss(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return ss(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return ss(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);case 3:default:return ss(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},ss=function(A,e){var t=[];return ue(A)?t.push(A.subdivide(.5,!1)):t.push(A),ue(e)?t.push(e.subdivide(.5,!0)):t.push(e),t},oe=function(A,e,t,r){var n=[];return ue(A)?n.push(A.subdivide(.5,!1)):n.push(A),ue(t)?n.push(t.subdivide(.5,!0)):n.push(t),ue(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),ue(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Gl=function(A){var e=A.bounds,t=A.styles;return e.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},as=function(A){var e=A.styles,t=A.bounds,r=lA(e.paddingLeft,t.width),n=lA(e.paddingRight,t.width),s=lA(e.paddingTop,t.width),a=lA(e.paddingBottom,t.width);return t.add(r+e.borderLeftWidth,s+e.borderTopWidth,-(e.borderRightWidth+e.borderLeftWidth+r+n),-(e.borderTopWidth+e.borderBottomWidth+s+a))},Ib=function(A,e){return A===0?e.bounds:A===2?as(e):Gl(e)},_b=function(A,e){return A===0?e.bounds:A===2?as(e):Gl(e)},Bi=function(A,e,t){var r=Ib(Rt(A.styles.backgroundOrigin,e),A),n=_b(Rt(A.styles.backgroundClip,e),A),s=yb(Rt(A.styles.backgroundSize,e),t,r),a=s[0],u=s[1],o=Qr(Rt(A.styles.backgroundPosition,e),r.width-a,r.height-u),l=Nb(Rt(A.styles.backgroundRepeat,e),o,s,r,n),f=Math.round(r.left+o[0]),h=Math.round(r.top+o[1]);return[l,f,h,a,u]},Ot=function(A){return iA(A)&&A.value===vt.AUTO},is=function(A){return typeof A=="number"},yb=function(A,e,t){var r=e[0],n=e[1],s=e[2],a=A[0],u=A[1];if(!a)return[0,0];if(UA(a)&&u&&UA(u))return[lA(a,t.width),lA(u,t.height)];var o=is(s);if(iA(a)&&(a.value===vt.CONTAIN||a.value===vt.COVER)){if(is(s)){var l=t.width/t.height;return l<s!=(a.value===vt.COVER)?[t.width,t.width/s]:[t.height*s,t.height]}return[t.width,t.height]}var f=is(r),h=is(n),d=f||h;if(Ot(a)&&(!u||Ot(u))){if(f&&h)return[r,n];if(!o&&!d)return[t.width,t.height];if(d&&o){var C=f?r:n*s,p=h?n:r/s;return[C,p]}var T=f?r:t.width,U=h?n:t.height;return[T,U]}if(o){var _=0,I=0;return UA(a)?_=lA(a,t.width):UA(u)&&(I=lA(u,t.height)),Ot(a)?_=I*s:(!u||Ot(u))&&(I=_/s),[_,I]}var D=null,k=null;if(UA(a)?D=lA(a,t.width):u&&UA(u)&&(k=lA(u,t.height)),D!==null&&(!u||Ot(u))&&(k=f&&h?D/r*n:t.height),k!==null&&Ot(a)&&(D=f&&h?k/n*r:t.width),D!==null&&k!==null)return[D,k];throw new Error("Unable to calculate background-size for element")},Rt=function(A,e){var t=A[e];return typeof t>"u"?A[0]:t},Nb=function(A,e,t,r,n){var s=e[0],a=e[1],u=t[0],o=t[1];switch(A){case 2:return[new O(Math.round(r.left),Math.round(r.top+a)),new O(Math.round(r.left+r.width),Math.round(r.top+a)),new O(Math.round(r.left+r.width),Math.round(o+r.top+a)),new O(Math.round(r.left),Math.round(o+r.top+a))];case 3:return[new O(Math.round(r.left+s),Math.round(r.top)),new O(Math.round(r.left+s+u),Math.round(r.top)),new O(Math.round(r.left+s+u),Math.round(r.height+r.top)),new O(Math.round(r.left+s),Math.round(r.height+r.top))];case 1:return[new O(Math.round(r.left+s),Math.round(r.top+a)),new O(Math.round(r.left+s+u),Math.round(r.top+a)),new O(Math.round(r.left+s+u),Math.round(r.top+a+o)),new O(Math.round(r.left+s),Math.round(r.top+a+o))];default:return[new O(Math.round(n.left),Math.round(n.top)),new O(Math.round(n.left+n.width),Math.round(n.top)),new O(Math.round(n.left+n.width),Math.round(n.height+n.top)),new O(Math.round(n.left),Math.round(n.height+n.top))]}},Sb="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Yl="Hidden Text",vb=function(){function A(e){this._data={},this._document=e}return A.prototype.parseMetrics=function(e,t){var r=this._document.createElement("div"),n=this._document.createElement("img"),s=this._document.createElement("span"),a=this._document.body;r.style.visibility="hidden",r.style.fontFamily=e,r.style.fontSize=t,r.style.margin="0",r.style.padding="0",r.style.whiteSpace="nowrap",a.appendChild(r),n.src=Sb,n.width=1,n.height=1,n.style.margin="0",n.style.padding="0",n.style.verticalAlign="baseline",s.style.fontFamily=e,s.style.fontSize=t,s.style.margin="0",s.style.padding="0",s.appendChild(this._document.createTextNode(Yl)),r.appendChild(s),r.appendChild(n);var u=n.offsetTop-s.offsetTop+2;r.removeChild(s),r.appendChild(this._document.createTextNode(Yl)),r.style.lineHeight="normal",n.style.verticalAlign="super";var o=n.offsetTop-r.offsetTop+2;return a.removeChild(r),{baseline:u,middle:o}},A.prototype.getMetrics=function(e,t){var r=e+" "+t;return typeof this._data[r]>"u"&&(this._data[r]=this.parseMetrics(e,t)),this._data[r]},A}(),Xl=function(){function A(e,t){this.context=e,this.options=t}return A}(),Lb=1e4,xb=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n._activeEffects=[],n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),r.canvas||(n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px"),n.fontMetrics=new vb(document),n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.ctx.textBaseline="bottom",n._activeEffects=[],n.context.logger.debug("Canvas renderer initialized ("+r.width+"x"+r.height+") with scale "+r.scale),n}return e.prototype.applyEffects=function(t){for(var r=this;this._activeEffects.length;)this.popEffect();t.forEach(function(n){return r.applyEffect(n)})},e.prototype.applyEffect=function(t){this.ctx.save(),wb(t)&&(this.ctx.globalAlpha=t.opacity),Cb(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),Rl(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},e.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},e.prototype.renderStack=function(t){return VA(this,void 0,void 0,function(){var r;return kA(this,function(n){switch(n.label){case 0:return r=t.element.container.styles,r.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},e.prototype.renderNode=function(t){return VA(this,void 0,void 0,function(){return kA(this,function(r){switch(r.label){case 0:if(FA(t.container.flags,16))debugger;return t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return r.sent(),[4,this.renderNodeContent(t)];case 2:r.sent(),r.label=3;case 3:return[2]}})})},e.prototype.renderTextWithLetterSpacing=function(t,r,n){var s=this;if(r===0)this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+n);else{var a=ti(t.text);a.reduce(function(u,o){return s.ctx.fillText(o,u,t.bounds.top+n),u+s.ctx.measureText(o).width},t.bounds.left)}},e.prototype.createFontStyle=function(t){var r=t.fontVariant.filter(function(a){return a==="normal"||a==="small-caps"}).join(""),n=Mb(t.fontFamily).join(", "),s=Ur(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,r,t.fontWeight,s,n].join(" "),n,s]},e.prototype.renderTextNode=function(t,r){return VA(this,void 0,void 0,function(){var n,s,a,u,o,l,f,h,d=this;return kA(this,function(C){return n=this.createFontStyle(r),s=n[0],a=n[1],u=n[2],this.ctx.font=s,this.ctx.direction=r.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",o=this.fontMetrics.getMetrics(a,u),l=o.baseline,f=o.middle,h=r.paintOrder,t.textBounds.forEach(function(p){h.forEach(function(T){switch(T){case 0:d.ctx.fillStyle=LA(r.color),d.renderTextWithLetterSpacing(p,r.letterSpacing,l);var U=r.textShadow;U.length&&p.text.trim().length&&(U.slice(0).reverse().forEach(function(_){d.ctx.shadowColor=LA(_.color),d.ctx.shadowOffsetX=_.offsetX.number*d.options.scale,d.ctx.shadowOffsetY=_.offsetY.number*d.options.scale,d.ctx.shadowBlur=_.blur.number,d.renderTextWithLetterSpacing(p,r.letterSpacing,l)}),d.ctx.shadowColor="",d.ctx.shadowOffsetX=0,d.ctx.shadowOffsetY=0,d.ctx.shadowBlur=0),r.textDecorationLine.length&&(d.ctx.fillStyle=LA(r.textDecorationColor||r.color),r.textDecorationLine.forEach(function(_){switch(_){case 1:d.ctx.fillRect(p.bounds.left,Math.round(p.bounds.top+l),p.bounds.width,1);break;case 2:d.ctx.fillRect(p.bounds.left,Math.round(p.bounds.top),p.bounds.width,1);break;case 3:d.ctx.fillRect(p.bounds.left,Math.ceil(p.bounds.top+f),p.bounds.width,1);break}}));break;case 1:r.webkitTextStrokeWidth&&p.text.trim().length&&(d.ctx.strokeStyle=LA(r.webkitTextStrokeColor),d.ctx.lineWidth=r.webkitTextStrokeWidth,d.ctx.lineJoin=window.chrome?"miter":"round",d.ctx.strokeText(p.text,p.bounds.left,p.bounds.top+l)),d.ctx.strokeStyle="",d.ctx.lineWidth=0,d.ctx.lineJoin="miter";break}})}),[2]})})},e.prototype.renderReplacedElement=function(t,r,n){if(n&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var s=as(t),a=rs(r);this.path(a),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,s.left,s.top,s.width,s.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(t){return VA(this,void 0,void 0,function(){var r,n,s,a,u,o,I,I,l,f,h,d,k,C,p,x,T,U,_,I,D,k,x;return kA(this,function(m){switch(m.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,s=r.styles,a=0,u=r.textNodes,m.label=1;case 1:return a<u.length?(o=u[a],[4,this.renderTextNode(o,s)]):[3,4];case 2:m.sent(),m.label=3;case 3:return a++,[3,1];case 4:if(!(r instanceof cl))return[3,8];m.label=5;case 5:return m.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return I=m.sent(),this.renderReplacedElement(r,n,I),[3,8];case 7:return m.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof ll&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof fl))return[3,12];m.label=9;case 9:return m.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return I=m.sent(),this.renderReplacedElement(r,n,I),[3,12];case 11:return m.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof El&&r.tree?(l=new e(this.context,{scale:this.options.scale,backgroundColor:r.backgroundColor,x:0,y:0,width:r.width,height:r.height}),[4,l.render(r.tree)]):[3,14];case 13:f=m.sent(),r.width&&r.height&&this.ctx.drawImage(f,0,0,r.width,r.height,r.bounds.left,r.bounds.top,r.bounds.width,r.bounds.height),m.label=14;case 14:if(r instanceof ni&&(h=Math.min(r.bounds.width,r.bounds.height),r.type===qn?r.checked&&(this.ctx.save(),this.path([new O(r.bounds.left+h*.39363,r.bounds.top+h*.79),new O(r.bounds.left+h*.16,r.bounds.top+h*.5549),new O(r.bounds.left+h*.27347,r.bounds.top+h*.44071),new O(r.bounds.left+h*.39694,r.bounds.top+h*.5649),new O(r.bounds.left+h*.72983,r.bounds.top+h*.23),new O(r.bounds.left+h*.84,r.bounds.top+h*.34085),new O(r.bounds.left+h*.39363,r.bounds.top+h*.79)]),this.ctx.fillStyle=LA(dl),this.ctx.fill(),this.ctx.restore()):r.type===jn&&r.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(r.bounds.left+h/2,r.bounds.top+h/2,h/4,0,Math.PI*2,!0),this.ctx.fillStyle=LA(dl),this.ctx.fill(),this.ctx.restore())),Hb(r)&&r.value.length){switch(d=this.createFontStyle(s),k=d[0],C=d[1],p=this.fontMetrics.getMetrics(k,C).baseline,this.ctx.font=k,this.ctx.fillStyle=LA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Ob(r.styles.textAlign),x=as(r),T=0,r.styles.textAlign){case 1:T+=x.width/2;break;case 2:T+=x.width;break}U=x.add(T,0,0,-x.height/2+1),this.ctx.save(),this.path([new O(x.left,x.top),new O(x.left+x.width,x.top),new O(x.left+x.width,x.top+x.height),new O(x.left,x.top+x.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new yr(r.value,U),s.letterSpacing,p),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!FA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(_=r.styles.listStyleImage,_.type!==0)return[3,18];I=void 0,D=_.url,m.label=15;case 15:return m.trys.push([15,17,,18]),[4,this.context.cache.match(D)];case 16:return I=m.sent(),this.ctx.drawImage(I,r.bounds.left-(I.width+10),r.bounds.top),[3,18];case 17:return m.sent(),this.context.logger.error("Error loading list-style-image "+D),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(k=this.createFontStyle(s)[0],this.ctx.font=k,this.ctx.fillStyle=LA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",x=new Fe(r.bounds.left,r.bounds.top+lA(r.styles.paddingTop,r.bounds.width),r.bounds.width,Yc(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new yr(t.listValue,x),s.letterSpacing,Yc(s.lineHeight,s.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),m.label=20;case 20:return[2]}})})},e.prototype.renderStackContent=function(t){return VA(this,void 0,void 0,function(){var r,n,_,s,a,_,u,o,_,l,f,_,h,d,_,C,p,_,T,U,_;return kA(this,function(I){switch(I.label){case 0:if(FA(t.element.container.flags,16))debugger;return[4,this.renderNodeBackgroundAndBorders(t.element)];case 1:I.sent(),r=0,n=t.negativeZIndex,I.label=2;case 2:return r<n.length?(_=n[r],[4,this.renderStack(_)]):[3,5];case 3:I.sent(),I.label=4;case 4:return r++,[3,2];case 5:return[4,this.renderNodeContent(t.element)];case 6:I.sent(),s=0,a=t.nonInlineLevel,I.label=7;case 7:return s<a.length?(_=a[s],[4,this.renderNode(_)]):[3,10];case 8:I.sent(),I.label=9;case 9:return s++,[3,7];case 10:u=0,o=t.nonPositionedFloats,I.label=11;case 11:return u<o.length?(_=o[u],[4,this.renderStack(_)]):[3,14];case 12:I.sent(),I.label=13;case 13:return u++,[3,11];case 14:l=0,f=t.nonPositionedInlineLevel,I.label=15;case 15:return l<f.length?(_=f[l],[4,this.renderStack(_)]):[3,18];case 16:I.sent(),I.label=17;case 17:return l++,[3,15];case 18:h=0,d=t.inlineLevel,I.label=19;case 19:return h<d.length?(_=d[h],[4,this.renderNode(_)]):[3,22];case 20:I.sent(),I.label=21;case 21:return h++,[3,19];case 22:C=0,p=t.zeroOrAutoZIndexOrTransformedOrOpacity,I.label=23;case 23:return C<p.length?(_=p[C],[4,this.renderStack(_)]):[3,26];case 24:I.sent(),I.label=25;case 25:return C++,[3,23];case 26:T=0,U=t.positiveZIndex,I.label=27;case 27:return T<U.length?(_=U[T],[4,this.renderStack(_)]):[3,30];case 28:I.sent(),I.label=29;case 29:return T++,[3,27];case 30:return[2]}})})},e.prototype.mask=function(t){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(t.slice(0).reverse()),this.ctx.closePath()},e.prototype.path=function(t){this.ctx.beginPath(),this.formatPath(t),this.ctx.closePath()},e.prototype.formatPath=function(t){var r=this;t.forEach(function(n,s){var a=ue(n)?n.start:n;s===0?r.ctx.moveTo(a.x,a.y):r.ctx.lineTo(a.x,a.y),ue(n)&&r.ctx.bezierCurveTo(n.startControl.x,n.startControl.y,n.endControl.x,n.endControl.y,n.end.x,n.end.y)})},e.prototype.renderRepeat=function(t,r,n,s){this.path(t),this.ctx.fillStyle=r,this.ctx.translate(n,s),this.ctx.fill(),this.ctx.translate(-n,-s)},e.prototype.resizeImage=function(t,r,n){var s;if(t.width===r&&t.height===n)return t;var a=(s=this.canvas.ownerDocument)!==null&&s!==void 0?s:document,u=a.createElement("canvas");u.width=Math.max(1,r),u.height=Math.max(1,n);var o=u.getContext("2d");return o.drawImage(t,0,0,t.width,t.height,0,0,r,n),u},e.prototype.renderBackgroundImage=function(t){return VA(this,void 0,void 0,function(){var r,n,s,a,u,o;return kA(this,function(l){switch(l.label){case 0:r=t.styles.backgroundImage.length-1,n=function(f){var h,d,C,eA,hA,pA,J,rA,P,p,eA,hA,pA,J,rA,T,U,_,I,D,k,x,m,H,P,M,eA,uA,fA,J,rA,oA,hA,pA,GA,IA,KA,xA,ZA,_A,v,S;return kA(this,function(q){switch(q.label){case 0:if(f.type!==0)return[3,5];h=void 0,d=f.url,q.label=1;case 1:return q.trys.push([1,3,,4]),[4,s.context.cache.match(d)];case 2:return h=q.sent(),[3,4];case 3:return q.sent(),s.context.logger.error("Error loading background-image "+d),[3,4];case 4:return h&&(C=Bi(t,r,[h.width,h.height,h.width/h.height]),eA=C[0],hA=C[1],pA=C[2],J=C[3],rA=C[4],P=s.ctx.createPattern(s.resizeImage(h,J,rA),"repeat"),s.renderRepeat(eA,P,hA,pA)),[3,6];case 5:C1(f)?(p=Bi(t,r,[null,null,null]),eA=p[0],hA=p[1],pA=p[2],J=p[3],rA=p[4],T=B1(f.angle,J,rA),U=T[0],_=T[1],I=T[2],D=T[3],k=T[4],x=document.createElement("canvas"),x.width=J,x.height=rA,m=x.getContext("2d"),H=m.createLinearGradient(_,D,I,k),xc(f.stops,U).forEach(function($){return H.addColorStop($.stop,LA($.color))}),m.fillStyle=H,m.fillRect(0,0,J,rA),J>0&&rA>0&&(P=s.ctx.createPattern(x,"repeat"),s.renderRepeat(eA,P,hA,pA))):w1(f)&&(M=Bi(t,r,[null,null,null]),eA=M[0],uA=M[1],fA=M[2],J=M[3],rA=M[4],oA=f.position.length===0?[Pa]:f.position,hA=lA(oA[0],J),pA=lA(oA[oA.length-1],rA),GA=g1(f,hA,pA,J,rA),IA=GA[0],KA=GA[1],IA>0&&KA>0&&(xA=s.ctx.createRadialGradient(uA+hA,fA+pA,0,uA+hA,fA+pA,IA),xc(f.stops,IA*2).forEach(function($){return xA.addColorStop($.stop,LA($.color))}),s.path(eA),s.ctx.fillStyle=xA,IA!==KA?(ZA=t.bounds.left+.5*t.bounds.width,_A=t.bounds.top+.5*t.bounds.height,v=KA/IA,S=1/v,s.ctx.save(),s.ctx.translate(ZA,_A),s.ctx.transform(1,0,0,v,0,0),s.ctx.translate(-ZA,-_A),s.ctx.fillRect(uA,S*(fA-_A)+_A,J,rA*S),s.ctx.restore()):s.ctx.fill())),q.label=6;case 6:return r--,[2]}})},s=this,a=0,u=t.styles.backgroundImage.slice(0).reverse(),l.label=1;case 1:return a<u.length?(o=u[a],[5,n(o)]):[3,4];case 2:l.sent(),l.label=3;case 3:return a++,[3,1];case 4:return[2]}})})},e.prototype.renderSolidBorder=function(t,r,n){return VA(this,void 0,void 0,function(){return kA(this,function(s){return this.path(Vl(n,r)),this.ctx.fillStyle=LA(t),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(t,r,n,s){return VA(this,void 0,void 0,function(){var a,u;return kA(this,function(o){switch(o.label){case 0:return r<3?[4,this.renderSolidBorder(t,n,s)]:[3,2];case 1:return o.sent(),[2];case 2:return a=Ub(s,n),this.path(a),this.ctx.fillStyle=LA(t),this.ctx.fill(),u=Qb(s,n),this.path(u),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(t){return VA(this,void 0,void 0,function(){var r,n,s,a,u,o,l,f,h=this;return kA(this,function(d){switch(d.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!Xe(r.backgroundColor)||r.backgroundImage.length,s=[{style:r.borderTopStyle,color:r.borderTopColor,width:r.borderTopWidth},{style:r.borderRightStyle,color:r.borderRightColor,width:r.borderRightWidth},{style:r.borderBottomStyle,color:r.borderBottomColor,width:r.borderBottomWidth},{style:r.borderLeftStyle,color:r.borderLeftColor,width:r.borderLeftWidth}],a=Db(Rt(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(a),this.ctx.clip(),Xe(r.backgroundColor)||(this.ctx.fillStyle=LA(r.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(t.container)]):[3,2];case 1:d.sent(),this.ctx.restore(),r.boxShadow.slice(0).reverse().forEach(function(C){h.ctx.save();var p=ts(t.curves),T=C.inset?0:Lb,U=Tb(p,-T+(C.inset?1:-1)*C.spread.number,(C.inset?1:-1)*C.spread.number,C.spread.number*(C.inset?-2:2),C.spread.number*(C.inset?-2:2));C.inset?(h.path(p),h.ctx.clip(),h.mask(U)):(h.mask(p),h.ctx.clip(),h.path(U)),h.ctx.shadowOffsetX=C.offsetX.number+T,h.ctx.shadowOffsetY=C.offsetY.number,h.ctx.shadowColor=LA(C.color),h.ctx.shadowBlur=C.blur.number,h.ctx.fillStyle=C.inset?LA(C.color):"rgba(0,0,0,1)",h.ctx.fill(),h.ctx.restore()}),d.label=2;case 2:u=0,o=0,l=s,d.label=3;case 3:return o<l.length?(f=l[o],f.style!==0&&!Xe(f.color)&&f.width>0?f.style!==2?[3,5]:[4,this.renderDashedDottedBorder(f.color,f.width,u,t.curves,2)]:[3,11]):[3,13];case 4:return d.sent(),[3,11];case 5:return f.style!==3?[3,7]:[4,this.renderDashedDottedBorder(f.color,f.width,u,t.curves,3)];case 6:return d.sent(),[3,11];case 7:return f.style!==4?[3,9]:[4,this.renderDoubleBorder(f.color,f.width,u,t.curves)];case 8:return d.sent(),[3,11];case 9:return[4,this.renderSolidBorder(f.color,u,t.curves)];case 10:d.sent(),d.label=11;case 11:u++,d.label=12;case 12:return o++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,r,n,s,a){return VA(this,void 0,void 0,function(){var u,o,l,f,h,d,C,p,T,U,_,I,D,k,x,m,x,m;return kA(this,function(H){return this.ctx.save(),u=Fb(s,n),o=Vl(s,n),a===2&&(this.path(o),this.ctx.clip()),ue(o[0])?(l=o[0].start.x,f=o[0].start.y):(l=o[0].x,f=o[0].y),ue(o[1])?(h=o[1].end.x,d=o[1].end.y):(h=o[1].x,d=o[1].y),n===0||n===2?C=Math.abs(l-h):C=Math.abs(f-d),this.ctx.beginPath(),a===3?this.formatPath(u):this.formatPath(o.slice(0,2)),p=r<3?r*3:r*2,T=r<3?r*2:r,a===3&&(p=r,T=r),U=!0,C<=p*2?U=!1:C<=p*2+T?(_=C/(2*p+T),p*=_,T*=_):(I=Math.floor((C+T)/(p+T)),D=(C-I*p)/(I-1),k=(C-(I+1)*p)/I,T=k<=0||Math.abs(T-D)<Math.abs(T-k)?D:k),U&&(a===3?this.ctx.setLineDash([0,p+T]):this.ctx.setLineDash([p,T])),a===3?(this.ctx.lineCap="round",this.ctx.lineWidth=r):this.ctx.lineWidth=r*2+1.1,this.ctx.strokeStyle=LA(t),this.ctx.stroke(),this.ctx.setLineDash([]),a===2&&(ue(o[0])&&(x=o[3],m=o[0],this.ctx.beginPath(),this.formatPath([new O(x.end.x,x.end.y),new O(m.start.x,m.start.y)]),this.ctx.stroke()),ue(o[1])&&(x=o[1],m=o[2],this.ctx.beginPath(),this.formatPath([new O(x.end.x,x.end.y),new O(m.start.x,m.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(t){return VA(this,void 0,void 0,function(){var r;return kA(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=LA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),r=bb(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e}(Xl),Hb=function(A){return A instanceof gl||A instanceof Bl?!0:A instanceof ni&&A.type!==jn&&A.type!==qn},Db=function(A,e){switch(A){case 0:return ts(e);case 2:return Eb(e);case 1:default:return rs(e)}},Ob=function(A){switch(A){case 1:return"center";case 2:return"right";case 0:default:return"left"}},Rb=["-apple-system","system-ui"],Mb=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Rb.indexOf(e)===-1}):A},kb=function(A){he(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),n.options=r,n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px",n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+r.width+"x"+r.height+" at "+r.x+","+r.y+") with scale "+r.scale),n}return e.prototype.render=function(t){return VA(this,void 0,void 0,function(){var r,n;return kA(this,function(s){switch(s.label){case 0:return r=ei(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,Pb(r)];case 1:return n=s.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=LA(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},e}(Xl),Pb=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},Kb=function(){function A(e){var t=e.id,r=e.enabled;this.id=t,this.enabled=r,this.start=Date.now()}return A.prototype.debug=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.debug=="function"?console.debug.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.getTime=function(){return Date.now()-this.start},A.prototype.info=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&typeof window<"u"&&window.console&&typeof console.info=="function"&&console.info.apply(console,Bn([this.id,this.getTime()+"ms"],e))},A.prototype.warn=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.warn=="function"?console.warn.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.error=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.error=="function"?console.error.apply(console,Bn([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.instances={},A}(),Vb=function(){function A(e,t){var r;this.windowBounds=t,this.instanceName="#"+A.instanceCount++,this.logger=new Kb({id:this.instanceName,enabled:e.logging}),this.cache=(r=e.cache)!==null&&r!==void 0?r:new ob(this,e)}return A.instanceCount=1,A}(),Gb=function(A,e){return e===void 0&&(e={}),Yb(A,e)};typeof window<"u"&&Ol.setContext(window);var Yb=function(A,e){return VA(void 0,void 0,void 0,function(){var t,r,n,s,a,u,o,l,f,h,d,C,p,T,U,_,I,D,k,x,H,m,H,P,M,eA,uA,fA,J,rA,oA,hA,pA,GA,IA,KA,xA,ZA,_A,v;return kA(this,function(S){switch(S.label){case 0:if(!A||typeof A!="object")return[2,Promise.reject("Invalid element provided as first argument")];if(t=A.ownerDocument,!t)throw new Error("Element is not attached to a Document");if(r=t.defaultView,!r)throw new Error("Document is not attached to a Window");return n={allowTaint:(P=e.allowTaint)!==null&&P!==void 0?P:!1,imageTimeout:(M=e.imageTimeout)!==null&&M!==void 0?M:15e3,proxy:e.proxy,useCORS:(eA=e.useCORS)!==null&&eA!==void 0?eA:!1},s=Ca({logging:(uA=e.logging)!==null&&uA!==void 0?uA:!0,cache:e.cache},n),a={windowWidth:(fA=e.windowWidth)!==null&&fA!==void 0?fA:r.innerWidth,windowHeight:(J=e.windowHeight)!==null&&J!==void 0?J:r.innerHeight,scrollX:(rA=e.scrollX)!==null&&rA!==void 0?rA:r.pageXOffset,scrollY:(oA=e.scrollY)!==null&&oA!==void 0?oA:r.pageYOffset},u=new Fe(a.scrollX,a.scrollY,a.windowWidth,a.windowHeight),o=new Vb(s,u),l=(hA=e.foreignObjectRendering)!==null&&hA!==void 0?hA:!1,f={allowTaint:(pA=e.allowTaint)!==null&&pA!==void 0?pA:!1,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:l,copyStyles:l},o.logger.debug("Starting document clone with size "+u.width+"x"+u.height+" scrolled to "+-u.left+","+-u.top),h=new Hl(o,A,f),d=h.clonedReferenceElement,d?[4,h.toIFrame(t,u)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return C=S.sent(),p=ai(d)||XT(d)?Tp(d.ownerDocument):gn(o,d),T=p.width,U=p.height,_=p.left,I=p.top,D=Xb(o,d,e.backgroundColor),k={canvas:e.canvas,backgroundColor:D,scale:(IA=(GA=e.scale)!==null&&GA!==void 0?GA:r.devicePixelRatio)!==null&&IA!==void 0?IA:1,x:((KA=e.x)!==null&&KA!==void 0?KA:0)+_,y:((xA=e.y)!==null&&xA!==void 0?xA:0)+I,width:(ZA=e.width)!==null&&ZA!==void 0?ZA:Math.ceil(T),height:(_A=e.height)!==null&&_A!==void 0?_A:Math.ceil(U)},l?(o.logger.debug("Document cloned, using foreign object rendering"),H=new kb(o,k),[4,H.render(d)]):[3,3];case 2:return x=S.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+_+","+I+" with size "+T+"x"+U+" using computed rendering"),o.logger.debug("Starting DOM parsing"),m=pl(o,d),D===m.styles.backgroundColor&&(m.styles.backgroundColor=_e.TRANSPARENT),o.logger.debug("Starting renderer for element at "+k.x+","+k.y+" with size "+k.width+"x"+k.height),H=new xb(o,k),[4,H.render(m)];case 4:x=S.sent(),S.label=5;case 5:return(!((v=e.removeContainer)!==null&&v!==void 0)||v)&&(Hl.destroy(C)||o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),o.logger.debug("Finished rendering"),[2,x]}})})},Xb=function(A,e,t){var r=e.ownerDocument,n=r.documentElement?Fr(A,getComputedStyle(r.documentElement).backgroundColor):_e.TRANSPARENT,s=r.body?Fr(A,getComputedStyle(r.body).backgroundColor):_e.TRANSPARENT,a=typeof t=="string"?Fr(A,t):t===null?_e.TRANSPARENT:4294967295;return e===r.documentElement?Xe(n)?Xe(s)?a:s:n:a};const Wb=c.defineComponent({name:"GpIframe",props:{htmlContent:{type:String,required:!0},jsFiles:{type:Array,default:[]},cssFiles:{type:Array,default:[]},iframeStyle:{type:Object,default:()=>({width:"100%",height:"100%",border:"none"})}},setup(A){const e=c.ref(null),t=c.ref(),r=()=>{var C;const s=e.value;if(!s)return;const a=s.contentDocument||((C=s.contentWindow)==null?void 0:C.document);if(!a)return;a.open(),a.write("<!DOCTYPE html><html><head></head><body></body></html>"),a.close();const u=a.head;A.cssFiles.forEach(p=>{const T=a.createElement("link");T.rel="stylesheet",T.href=p,u.appendChild(T)});const o=a.createElement("link");o.rel="stylesheet",o.href="/spa/topic/css/style.css",u.appendChild(o);const l=a.createElement("script");l.src="/spa/topic/js/jquery-3.6.0.min.js",l.async=!1,u.appendChild(l);const f=a.createElement("script");f.src="/spa/topic/js/swiper-bundle.min.js",f.async=!1,u.appendChild(f);const h=a.createElement("script");h.src="/spa/topic/js/index.js",h.async=!1,u.appendChild(h);const d=a.body;d.innerHTML=A.htmlContent,A.jsFiles.forEach(p=>{const T=a.createElement("script");T.src=p,T.async=!1,d.appendChild(T)}),t.value=d,c.nextTick(()=>{})};c.watch(t,s=>{if(!s)return;new MutationObserver(()=>{const u=e.value;u&&(u.style.height=`${s.scrollHeight}px`)}).observe(s,{childList:!0,subtree:!0})});const n=async s=>{var l;const a=e.value;if(!a)return;const u=a.contentDocument||((l=a.contentWindow)==null?void 0:l.document);if(!u)return;const o=u.body;if(o)try{await c.nextTick();const f=await Gb(o,{x:0,y:0,scrollX:window.scrollX,scrollY:window.scrollY,useCORS:!0,allowTaint:!0,foreignObjectRendering:!1});s?s(f):f.toBlob(h=>{const d=URL.createObjectURL(h);window.open(d,"_blank")})}catch(f){console.error("截图生成失败:",f)}};return c.watch(()=>[A.htmlContent,A.jsFiles,A.cssFiles],r,{deep:!0}),c.onMounted(()=>{r()}),{iframeRef:e,generateCover:n}}});function Jb(A,e,t,r,n,s){return c.openBlock(),c.createElementBlock("div",null,[c.createElementVNode("iframe",{ref:"iframeRef",style:c.normalizeStyle(A.iframeStyle)},null,4)])}const Wl=Oe(Wb,[["render",Jb],["__scopeId","data-v-607ae90c"]]),qb={class:"flex gp-dsigner"},jb={key:0,class:"flex items-center justify-between border-b"},$b={class:"text-lg font-bold p-2"},Zb={class:"text-sm font-thin text-gray-500"},zb={class:"flex-1 overflow-auto"},AU={key:0,class:"flex justify-between items-center border-b p-2"},eU={class:"flex items-center"},tU={class:"p-2"},rU={class:"sticky top-0"},nU={key:0,class:"text-lg font-bold border-b p-2"},sU={class:"text-sm font-thin text-gray-500"},aU={class:"p-2"},Jl=Oe(c.defineComponent({__name:"Designer",props:{mode:{default:"design"},template:{},css:{},js:{},previewWidth:{default:360},uploadByFile:{},icons:{},rules:{},preview:{type:Boolean,default:!0},showTitle:{type:Boolean,default:!0}},emits:["update:modelValue","update:element"],setup(A,{expose:e,emit:t}){const r=A,n=t,s=c.ref(r.rules||[]),a=c.ref(r.template),u=c.ref();let o=co("",{},!1);const l=c.ref("");c.watch(()=>r.template,F=>{a.value=F},{immediate:!0}),c.watch(()=>a.value,F=>{F&&(u.value=fA(F))},{immediate:!0}),c.watch(()=>r.css,F=>{F.forEach(L=>{if(document.querySelector(`link[href="${L}"]`))return;const K=document.createElement("link");K.rel="stylesheet",K.href=L,document.head.appendChild(K)})},{immediate:!0}),c.watch(()=>r.js,F=>{!F||F.length===0||F.forEach(L=>{if(document.querySelector(`script[src="${L}"]`))return;const K=document.createElement("script");K.src=L,document.body.appendChild(K)})},{immediate:!0});const f=c.ref(r.mode);c.watch(()=>u.value,F=>{F&&n("update:element",F)},{immediate:!0});const h=c.ref("");c.watch(()=>l.value,F=>{n("update:modelValue",F)},{immediate:!0});const d=c.ref(),C=c.ref(),p=c.ref(),T=c.ref(),U=c.ref(),_=c.ref(),I=c.ref(""),D=c.ref(r.mode==="design");c.watch(()=>r.rules,F=>{s.value=F,a.value&&(u.value=fA(a.value))},{immediate:!0});function k(F=void 0){T.value&&T.value.generateCover(F)}function x(F){U.value=F}function m(F,L=""){if(L){const K=H(u.value,L);K?_.value=K:_.value=F}else _.value=F}function H(F,L){if(F.xpath===L)return F;if(F.children&&F.children.length)for(const K of F.children){const V=H(K,L);if(V)return V}}function P(F,L){var K,V;return F.tag===L.tag&&((K=F.children)==null?void 0:K.length)===((V=L.children)==null?void 0:V.length)}function M(F){if(U.value.xpath==F.xpath){if(U.value){if(F.type===W.Block){var L=!0;const K=H(u.value,U.value.parentxpath||"");if(K&&K.children&&K.children.forEach(V=>{if(V.tag!=U.value.tag||!P(V,U.value)){L=!1;return}}),!L){j.error("同级结构不一致,错误配置!");return}}if(U.value.rule=F.rule,U.value.type=F.type,U.value.type===W.Block){const K=H(u.value,U.value.parentxpath||"");K&&K.children&&(K.children.forEach(V=>{if(V.tag!=U.value.tag||!P(V,U.value)){j.error("同级结构不一致,无法配置为块类型");return}}),K.children.forEach(V=>{V.tag===U.value.tag&&(V.rule=F.rule,V.type=F.type)}))}}h.value=new Date().getTime().toString(),j.success("保存成功"),n("update:element",u.value)}}function eA(F){const L=H(u.value,F.xpath||"");L&&(L.rule=F.rule,L.type=F.type,L.children&&F.children&&L.children.forEach(K=>{const V=F.children.find(CA=>CA.xpath===K.xpath);V&&(K.rule=V.rule,K.type=V.type)})),j.success("操作成功"),h.value=new Date().getTime().toString(),n("update:element",u.value)}function uA(F){l.value=F}function fA(F){o=co(F);const L=o("body").children().toArray().map(K=>J(o(K)));return l.value=o("body").html()||"",L[0]}function J(F,L=""){var YA;function K(HA){if(!HA||!HA[0])return"";const $e=[];let cA=HA;for(;cA.length&&cA[0].tagName!=="html";){const us=cA[0].tagName,uU=cA.parent().children(us).index(cA)+1;$e.unshift(`${us}[${uU}]`),cA=cA.parent()}return"/html/"+$e.join("/")}const V=K(F).replace("/html/body[1]",""),CA=F.children().toArray().map(HA=>J(o(HA),V)),te=(YA=s.value)==null?void 0:YA.find(HA=>HA.xpath===V);return{tag:F[0].tagName,text:F.contents().not(F.children()).text().trim(),attrs:F[0].attribs,children:CA,xpath:V,parentxpath:L,type:(te==null?void 0:te.type)||W.None,rule:(te==null?void 0:te.rule)||{}}}function rA(F){const L=H(u.value,F.element.xpath);if(L){const K=c.toRaw(L);K.editText=F.newText}}function oA(F,L=""){function K(V,CA){var HA;const YA=(CA?((HA=H(u.value,CA))==null?void 0:HA.children)||[]:[u.value]).filter($e=>$e.tag===V.tag).indexOf(V)+1;return`${CA}/${V.tag}[${YA}]`}F.xpath=K(F,L),F.parentxpath=L,(F.children||[]).forEach(V=>oA(V,F.xpath))}function hA({action:F,element:L,newBlock:K}){const V=H(u.value,L.parentxpath||"");if(!V||!V.children)return;const CA=V.children.findIndex(cA=>cA===L);if(CA===-1){j.error("未找到元素");return}const te=V.children.length,{minBlock:YA,maxBlock:HA}=L.rule;if((F==="add"||F==="copy")&&te>=(HA||1/0)){I.value=`无法添加更多块。最大块数量为 ${HA}`,j.error(I.value);return}function $e(cA){cA.xpath="",cA.parentxpath="",cA.text=cA.editText||cA.text,cA.editText="",cA.children.forEach(us=>{$e(us)})}switch(F){case"add":if(K){const cA={...K,children:JSON.parse(JSON.stringify(K.children))};$e(cA),V.children.splice(CA+1,0,cA),j.success("添加成功")}break;case"copy":if(K){const cA={...K,children:JSON.parse(JSON.stringify(K.children))};$e(cA),V.children.splice(CA+1,0,cA),j.success("复制成功")}break;case"moveUp":if(CA>0){const[cA]=V.children.splice(CA,1);V.children.splice(CA-1,0,cA),j.success("前移成功")}else j.error("已经是第一个块,无法前移");break;case"moveDown":if(CA<V.children.length-1){const[cA]=V.children.splice(CA,1);V.children.splice(CA+1,0,cA),j.success("后移成功")}else j.error("已经是最后一个块,无法后移");break;case"delete":if(te<=(YA||0)){I.value=`无法删除更多块。最小块数量为 ${YA}`,j.error(I.value);return}V.children.splice(CA,1),j.success("删除成功");break}I.value="",oA(u.value)}function pA(F,L){let K=L.attrs.class.replace(/icon-\S+/g,`icon-${F}`);L.attrs.class=K}function GA(F){const L=F.file,K=H(u.value,F.element.xpath);if(r.uploadByFile)r.uploadByFile(L).then(V=>{V.success&&(K.attrs.src=V.file.url,h.value=new Date().getTime().toString())});else{K.attrs.alt=L.name;const V=URL.createObjectURL(L);K.attrs.src=V,h.value=new Date().getTime().toString()}}function IA(F){const{icon:L}=F,K=H(u.value,F.element.xpath);let V=K.attrs.class.replace(/icon-\S+/g,`icon-${L}`);K.attrs.class=V,h.value=new Date().getTime().toString()}const KA=F=>F.type.startsWith("image/")?!0:(j.error("只能上传图片文件"),!1),xA=c.ref({});function ZA(F,L){if(!F||F.length===0)return;const K=F[0];if(L.rule&&(L.rule.minImageWidth||L.rule.maxImageHeight)){if(L.rule.minImageWidth&&K.width<L.rule.minImageWidth){j.error(`图片宽度不能小于 ${L.rule.minImageWidth}px`);return}if(L.rule.maxImageHeight&&K.height<L.rule.maxImageHeight){j.error(`图片高度不能小于 ${L.rule.maxImageHeight}px`);return}}L.rule.minImageWidth&&L.rule.maxImageHeight?(xA.value.width=L.rule.minImageWidth,xA.value.height=L.rule.maxImageHeight,xA.value.aspectRatio=L.rule.minImageWidth/L.rule.maxImageHeight):xA.value={},K&&(L.rule.crop?(K.thumbUrl,d.value.handleOpenCropper(xA.value,K.file,K.name,L)):r.uploadByFile?r.uploadByFile(K.file).then(V=>{V.success&&(L.attrs.src=V.file.url,h.value=new Date().getTime().toString())}):(L.attrs.src=K.thumbUrl,h.value=new Date().getTime().toString()))}const _A=c.ref(r.previewWidth),v=c.ref(360);let S=c.ref(!1),q=c.ref(""),$=0,zA=0;function je(F){q.value=F,S.value=!0,$=event.clientX,F==="preview"?zA=_A.value:F==="structure"&&(zA=v.value),window.addEventListener("mousemove",Lr),window.addEventListener("mouseup",xr)}function Lr(F){if(!S.value)return;const L=F.clientX-$;q.value==="preview"?_A.value=Math.max(200,zA+L):q.value==="structure"&&(v.value=Math.max(200,zA-L))}function xr(){S.value=!1,q.value="",window.removeEventListener("mousemove",Lr),window.removeEventListener("mouseup",xr)}return e({generateCover:k}),(F,L)=>(c.openBlock(),c.createElementBlock("div",qb,[F.preview?(c.openBlock(),c.createElementBlock("div",{key:0,class:"border-l overflow-auto resize-area",style:c.normalizeStyle({width:_A.value+"px"})},[F.showTitle?(c.openBlock(),c.createElementBlock("div",jb,[c.createElementVNode("h2",$b,[L[4]||(L[4]=c.createTextVNode(" 实时预览 ")),c.createElementVNode("span",Zb,c.toDisplayString(_A.value)+"px",1)]),c.createElementVNode("div",{onClick:L[0]||(L[0]=()=>k()),class:"p-2 cursor-pointer text-blue-500"}," 封面 ")])):c.createCommentVNode("",!0),c.createElementVNode("div",null,[l.value?(c.openBlock(),c.createBlock(Wl,{key:0,"css-files":F.css,"js-files":F.js,"html-content":l.value,class:"gp-designer-preview",ref_key:"previewRef",ref:T},null,8,["css-files","js-files","html-content"])):(c.openBlock(),c.createBlock(Wl,{key:1,"css-files":F.css,"js-files":F.js,"html-content":c.unref(o)("body").html(),class:"gp-designer-preview",ref_key:"previewRef",ref:T},null,8,["css-files","js-files","html-content"]))])],4)):c.createCommentVNode("",!0),F.preview?(c.openBlock(),c.createElementBlock("div",{key:1,class:"resizer",onMousedown:L[1]||(L[1]=K=>je("preview"))},null,32)):c.createCommentVNode("",!0),c.createElementVNode("div",zb,[F.showTitle?(c.openBlock(),c.createElementBlock("div",AU,[L[6]||(L[6]=c.createElementVNode("h2",{class:"text-lg font-bold"},"结构渲染",-1)),c.createElementVNode("div",eU,[c.withDirectives(c.createElementVNode("input",{"onUpdate:modelValue":L[2]||(L[2]=K=>D.value=K),type:"checkbox",id:"showMargin",class:"mr-2"},null,512),[[c.vModelCheckbox,D.value]]),L[5]||(L[5]=c.createElementVNode("label",{for:"showMargin"},"间距",-1))])])):c.createCommentVNode("",!0),c.createElementVNode("div",tU,[u.value?(c.openBlock(),c.createBlock(CE,{key:0,"upload-by-file":F.uploadByFile,cropper:d.value,icon:C.value,upload:p.value,mode:F.mode,icons:F.icons,r:h.value,"show-margin":D.value,element:u.value,selectedElement:U.value,hoveredElement:_.value,onSelectElement:x,onHoverElement:m,onContentUpdated:uA,onUpdateText:rA,onBlockAction:hA,onAddIcon:pA,onUpdateElementRule:eA},null,8,["upload-by-file","cropper","icon","upload","mode","icons","r","show-margin","element","selectedElement","hoveredElement"])):c.createCommentVNode("",!0)])]),f.value=="design"?(c.openBlock(),c.createElementBlock("div",{key:2,class:"resizer",onMousedown:L[3]||(L[3]=K=>je("structure"))},null,32)):c.createCommentVNode("",!0),f.value=="design"?(c.openBlock(),c.createElementBlock("div",{key:3,class:"resize-area",style:c.normalizeStyle({width:v.value+"px"})},[c.createElementVNode("div",rU,[F.showTitle?(c.openBlock(),c.createElementBlock("h2",nU,[L[7]||(L[7]=c.createTextVNode(" 节点属性 ")),c.createElementVNode("span",sU,c.toDisplayString(v.value)+"px",1)])):c.createCommentVNode("",!0),c.createElementVNode("div",aU,[U.value?(c.openBlock(),c.createBlock(YE,{key:0,element:U.value,onUpdateElement:M},null,8,["element"])):c.createCommentVNode("",!0)])])],4)):c.createCommentVNode("",!0),c.createVNode(ep,{ref_key:"cropperRef",ref:d,onOk:GA},null,512),c.createVNode(fp,{icons:F.icons,ref_key:"iconRef",ref:C,onOk:IA},null,8,["icons"]),c.createVNode(wp,{ref_key:"uploadRef",ref:p,multiple:!1,show:!1,beforeUpload:KA,onChange:ZA},{"upload-icon":c.withCtx(()=>L[8]||(L[8]=[c.createElementVNode("div",{class:"p-2"},"上传",-1)])),_:1},512)]))}}),[["__scopeId","data-v-0670a162"]]),iU={install(A){A.component("Designer",Jl)}};Ne.Designer=Jl,Ne.default=iU,Object.defineProperties(Ne,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});