html-crush 6.3.2 → 6.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 6.3.3 (2026-09-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **html-crush:** preserve CSS escapes across whitespace edits ([0c1ce07](https://github.com/codsen/codsen/commit/0c1ce07cba1850cc59b9bb0f9abecac87993b0d1))
11
+ - **html-crush:** preserve CSS strings and decoded inline contexts ([4157b3c](https://github.com/codsen/codsen/commit/4157b3c864f5a99ba161d29b9f80542242718d54))
12
+ - **html-crush:** preserve token boundaries when removing CSS comments ([ce3b25f](https://github.com/codsen/codsen/commit/ce3b25fc01af59b04eba64e2e9ecdaa42b04db66))
13
+ - **html-crush:** report only effective CSS comment removal ([0d53f83](https://github.com/codsen/codsen/commit/0d53f83ee1e7b4e77c512a3e36882fa998411d97))
14
+
6
15
  ## 6.3.0 (2026-09-01)
7
16
 
8
17
  ### Bug Fixes
@@ -1,25 +1,27 @@
1
1
  /**
2
2
  * @name html-crush
3
3
  * @fileoverview Minify email templates
4
- * @version 6.3.2
4
+ * @version 6.3.3
5
5
  * @author Roy Revelt
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/html-crush/}
8
8
  */
9
9
 
10
- import{formatDiagnosticValue as z,isLetter as De,isPlainObject as Oe,isStr as N,isWhitespaceChar as L}from"codsen-utils";import{Ranges as Ce}from"ranges-push";import{left as Z,right as V}from"string-left-right";import{matchLeft as Ve,matchRight as Ae,matchRightIncl as ye}from"string-match-left-right";import{expander as ee}from"string-range-expander";var me="6.3.2";function ae(n,g){if(g<0||g>=n.length)return;let E=n.charCodeAt(g),b=n.charCodeAt(g+1);if(E>=55296&&E<=56319&&b>=56320&&b<=57343)return n.slice(g,g+2);let i=n.charCodeAt(g-1);return E>=56320&&E<=57343&&i>=55296&&i<=56319?n.slice(g-1,g+1):n[g]}var Re=me;function ne(n){return n>96&&n<123||n>64&&n<91||n>47&&n<58||n===95}function J(n){return n!==void 0&&ne(n.charCodeAt(0))}function ce(n){return n!==void 0&&(ne(n.charCodeAt(0))||":-.".includes(n))}function ge(n){if(/^[\x00-\x7f]*$/.test(n))return n.length;let g=0;for(let E=0;E<n.length;E++){let b=n.charCodeAt(E);if(b<=127)g+=1;else if(b<=2047)g+=2;else if(b>=55296&&b<=56319&&E+1<n.length){let i=n.charCodeAt(E+1);i>=56320&&i<=57343?(g+=4,E+=1):g+=3}else g+=3}return g}function Ne(n,g,E){let b="",i=0;for(let l=0,I=g.length;l<I;l++){E&&E(l/I*100);let O=g[l];b+=`${n.slice(i,O[0])}${O[2]??""}`,i=O[1]}return E&&E(100),b+n.slice(i)}var be={lineLengthLimit:500,removeIndentations:!0,removeLineBreaks:!1,removeHTMLComments:!1,removeCSSComments:!0,reportProgressFunc:null,reportProgressFuncFrom:0,reportProgressFuncTo:100,breakToTheLeftOf:["</td","<html","</html","<head","</head","<meta","<link","<table","<script","</script","<!DOCTYPE","<style","</style","<title","<body","@media","</body","<!--[if","<!--<![endif","<![endif]"],mindTheInlineTags:["a","abbr","acronym","audio","b","bdi","bdo","big","br","button","canvas","cite","code","data","datalist","del","dfn","em","embed","i","iframe","img","input","ins","kbd","label","map","mark","meter","noscript","object","output","picture","progress","q","ruby","s","samp","script","select","slot","small","span","strong","sub","sup","svg","template","textarea","time","u","tt","var","video","wbr"]};function Be(n,g){let E=Date.now();if(!N(n))throw n===void 0?new Error("html-crush/crush(): [THROW_ID_01] the first input argument is completely missing! It should be given as string."):new Error(`html-crush/crush(): [THROW_ID_02] the first input argument must be string! It was given as "${typeof n}", equal to:
11
- ${z(n,4)}`);if(g&&!Oe(g))throw new Error(`html-crush/crush(): [THROW_ID_03] the second input argument, options object, should be a plain object but it was given as type ${typeof g}, equal to ${z(g,4)}`);let b=g;if(b&&Array.isArray(b.breakToTheLeftOf)&&b.breakToTheLeftOf.length){for(let s=0,e=b.breakToTheLeftOf.length;s<e;s++)if(!N(b.breakToTheLeftOf[s]))throw new TypeError(`html-crush/crush(): [THROW_ID_04] the resolvedOpts.breakToTheLeftOf array contains non-string elements! For example, element at index ${s} is of a type "${typeof b.breakToTheLeftOf[s]}" and is equal to:
12
- ${z(b.breakToTheLeftOf[s],4)}`)}let i=new Ce({limitToBeAddedWhitespace:!0}),l={...be,...b,reportProgressFunc:typeof b?.reportProgressFunc=="function"?b.reportProgressFunc:null,breakToTheLeftOf:b?.breakToTheLeftOf===void 0?be.breakToTheLeftOf:Array.isArray(b.breakToTheLeftOf)?b.breakToTheLeftOf:[]};typeof l.removeHTMLComments=="boolean"&&(l.removeHTMLComments=l.removeHTMLComments?1:0);let I="";Array.isArray(l.breakToTheLeftOf)&&l.breakToTheLeftOf.length&&(I=[...new Set(l.breakToTheLeftOf.map(s=>s[0]))].join(""));let O={removeHTMLComments:!1,removeCSSComments:!1},Y=Array.isArray(l.mindTheInlineTags)?l.mindTheInlineTags:[],W=new Set(Y),fe=!!Y.length&&Y.every(s=>N(s)&&!!s.length&&![...s].some(e=>!J(e))),X=new Map,te=Array.isArray(l.breakToTheLeftOf)&&!!l.breakToTheLeftOf.length&&l.breakToTheLeftOf.every(N)&&!(l.breakToTheLeftOf.length===1&&!l.breakToTheLeftOf[0].trim());if(te)for(let s of l.breakToTheLeftOf){if(!s.length)continue;let e=X.get(s[0]);e?e.push(s):X.set(s[0],[s])}function le(s){if(!te)return!!ye(n,s,l.breakToTheLeftOf);let e=X.get(n[s]);if(e===void 0)return!1;for(let a=0,t=e.length;a<t;a++)if(n.startsWith(e[a],s))return!0;return!1}function H(s,e){if(!fe)return!!Ae(n,s,l.mindTheInlineTags,{...e?{trimCharsBeforeMatching:"/"}:{},cb:c=>!c||!J(c)});let a=s+1;if(e)for(;n[a]==="/";)a++;let t=a;for(;t<h&&ne(n.charCodeAt(t));)t++;return t>a&&W.has(n.slice(a,t))}function he(s){let e=s-1;for(;e>=0&&L(n[e]);)e--;if(n[e]!=="=")return null;let a=e,t=e-1;for(;t>=0&&L(n[t]);)t--,a--;for(;t>=0&&ce(n[t]);)t--;return t+1<a?n.slice(t+1,a).toLowerCase():null}function y(s,e,a){if(n[s]!=="<")return!1;let t=s+1;if(a){if(n[t]!=="/")return!1;t++}else if(n[t]==="/")return!1;for(let c=0;c<e.length;c++){let C=n.charCodeAt(t+c);if(C>64&&C<91&&(C+=32),C!==e.charCodeAt(c))return!1}return!ce(n[t+e.length])&&!De(ae(n,t+e.length))}function de(s,e){let a=n.indexOf("<",s);for(;a!==-1;){if(y(a,e,!0))return a;a=n.indexOf("<",a+1)}return-1}let P=null,$=null,w=!1,r=0,G=0,T=!1,k=!1,f=null,U=null,M=null,S=null,v=null,q=null,u,o=null,m=null,d=null,D=null,A=null,j=null,R=">};",B="<",Te="!",Ee=">",pe="<",oe="{},:;<>~+",K=oe,Q=oe,F=!0,h=n.length;function ie(s,e=!1){let a=s.length,t=Math.max(h-a,0),c=ge(n),C=e?c:ge(s),re=Math.max(c-C,0);return{timeTakenInMilliseconds:Date.now()-E,originalLength:h,cleanedLength:a,bytesSaved:t,percentageReducedOfOriginal:h?Math.round(t*100/h):0,originalLengthInCodeUnits:h,cleanedLengthInCodeUnits:a,codeUnitsSaved:t,percentageReducedOfOriginalInCodeUnits:h?Math.round(t*100/h):0,originalLengthInUtf8Bytes:c,cleanedLengthInUtf8Bytes:C,utf8BytesSaved:re,percentageReducedOfOriginalInUtf8Bytes:c?Math.round(re*100/c):0}}let _=0;for(;_<h&&L(n[_]);)_++;let Se=Math.floor(h/2),se=.01,$e=1-se,ue=null;function x(s){if(!l.reportProgressFunc||h<=1e3)return;let e=Math.max(0,Math.min(s,1)),a=Math.floor(l.reportProgressFuncFrom+(l.reportProgressFuncTo-l.reportProgressFuncFrom)*e);a!==ue&&(ue=a,l.reportProgressFunc(a))}let p=`
13
- `;if(n.includes(`\r
14
- `)?p=`\r
15
- `:n.includes("\r")&&(p="\r"),h){for(let e=0;e<h;e++){if(l.reportProgressFunc&&(h>1e3&&h<2e3?e===Se&&x(.5):h>=2e3&&x(e/h*$e)),G++,!u&&T&&n[e]==="}"&&n[e-1]==="}"&&(r+1>=l.lineLengthLimit?(i.push(e,e,p),r=0):(o=e,m=e,d=" ")),u&&typeof u=="number"&&e>=u&&(u=void 0),q!==null&&y(e,"script",!0)){if((l.removeIndentations||l.removeLineBreaks)&&e>0&&n[~-e]&&L(n[~-e])){for(let t=e;t--;)if(n[t]===`
16
- `||n[t]==="\r"||!L(n[t])){t+1<e&&i.push(t+1,e);break}}q=null,u=!1,e+=8;continue}if(!u&&!T&&y(e,"script",!1)){q=e,u=!0;let t="";(l.removeLineBreaks||l.removeIndentations)&&$!==null&&($>0&&(t=p),i.push($,e,t)),$=null,P=null}if(!u&&U!==null){l.removeLineBreaks&&(r=`\r
17
- `.includes(n[e])?0:r+1),e>U&&n[e]===n[U]&&(U=null);continue}if(!u&&A!==null&&!f&&`"'`.includes(n[e])){let t=he(e);if(t==="style")f=e;else if(t!==null){U=e,l.removeLineBreaks&&(r+=1);continue}}if(!u&&M!==null){if(l.removeLineBreaks&&(r=`\r
18
- `.includes(n[e])?0:r+1),e>M&&n[e]===n[M]){let t=0;for(let c=e;c>0&&n[c-1]==="\\";c--)t++;t%2===0&&(M=null)}continue}if(!u&&(T||f)&&(f||A===null)&&`"'`.includes(n[e])&&!(f&&n[e]===n[f])){M=e,l.removeLineBreaks&&(r+=1);continue}if(A!==null&&D===null&&!J(n[e])){D=n.slice(A,e);let t=V(n,~-e),c=V(n,e);if(typeof t=="number"&&n[t]===">"&&L(n[e])&&c)i.push(e,c);else if(t&&n[t]==="/"&&n[V(n,t)]===">"){L(n[e])&&c&&i.push(e,c);let C=V(n,t+1);n[t+1]!==">"&&C&&i.push(t+1,C)}}if(!u&&!T&&!f&&n[~-e]==="<"&&A===null)if(J(n[e]))A=e;else{let t=V(n,~-e),c=V(n,t);n[t]==="/"&&J(n[c]||"")&&(A=c)}if(!u&&(T||f)&&S!==null&&n[e]==="*"&&n[e+1]==="/"&&([o,m]=ee({str:n,from:S,to:e+2,ifLeftSideIncludesThisThenCropTightly:K||"",ifRightSideIncludesThisThenCropTightly:Q||""}),S=null,o!=null?i.push(o,m):(r+=1,e+=1),u=e+2),!u&&(T||f)&&S===null&&n[e]==="/"&&n[e+1]==="*"&&(O.removeCSSComments||(O.removeCSSComments=!0),l.removeCSSComments&&(S=e)),k&&n.startsWith("![endif",e+1)&&(k=!1),!u&&!T&&!f&&v!==null){let t;n.startsWith("-->",e)?t=3:n[e]===">"&&n[e-1]==="]"&&(t=1),t&&([o,m]=ee({str:n,from:v,to:e+t}),v=null,o!=null?l.removeLineBreaks&&l.lineLengthLimit&&G-(m-o)>=l.lineLengthLimit?(i.push(o,m,p),G=-t):(i.push(o,m),G-=m-o):(r+=t-1,e+=t-1),u=e+t)}if(!u&&!T&&!f&&n[e]==="<"&&(n.startsWith("<!--",e)||n.startsWith("<![endif",e))&&v===null&&(n.startsWith("<![endif",e)?l.removeHTMLComments===2&&(v=e):n.startsWith("[if",e+4)?(k||(k=!0),l.removeHTMLComments===2&&(v=e)):l.removeHTMLComments&&(!k||l.removeHTMLComments===2)&&(v=e),O.removeHTMLComments||(O.removeHTMLComments=!0)),!u&&T&&S===null&&y(e,"style",!0)?T=!1:!u&&!T&&S===null&&y(e,"style",!1)&&(T=!0,(l.removeLineBreaks||l.removeIndentations)&&l.breakToTheLeftOf.includes("<style")&&n.startsWith(' type="text/css">',e+6)&&n[e+24]&&i.push(e+23,e+23,p)),!u&&!f&&`"'`.includes(n[e])&&n.endsWith("style=",e)&&(f=e),!u&&L(n[e]))$===null&&($=e);else if(!u&&!((T||f)&&S!==null)){if($!==null){if(l.removeLineBreaks&&(r+=1),F)F=!1,(l.removeIndentations||l.removeLineBreaks)&&i.push(0,e);else if(l.removeIndentations&&!l.removeLineBreaks&&(!w&&P!==null&&e>P?i.push(P+1,e):$+1<e&&(n.endsWith("]>",$)||n.endsWith("-->",$)||n.startsWith("<![",e)||n.startsWith("<!--<![",e)?i.push($,e):n[$]===" "?i.push($+1,e):n[~-e]===" "?i.push($,~-e):i.push($,e," "))),l.removeLineBreaks||f){if(I.includes(n[e])&&le(e)){!(`\r
19
- `.includes(n[~-e])&&$===~-e)&&!(n[~-e]===`
20
- `&&n[e-2]==="\r"&&$===e-2)&&i.push($,e,p),o=null,m=null,d=null,$=null,r=1;continue}let t=" ";if(!(n[e]==="<"&&H(e,!1))){if(n[~-$]&&Ee.includes(n[~-$])&&pe.includes(n[e])||(T||f)&&S===null&&(K.includes(n[~-$])||Q.includes(n[e]))||n[e]==="!"&&n.startsWith("!important",e)&&!k||f&&(n[~-$]==="'"||n[~-$]==='"')||n[~-$]==="}"&&n.startsWith("</style",e)||n[e]===">"&&(`'"`.includes(n[Z(n,e)])||n[V(n,e)]==="<")||n[e]==="/"&&n[V(n,e)]===">"){t="";let c=n[e]==="/"&&n[e+1]===">"?V(n,e):null;c&&c>e+1&&(i.push(e+1,c),r-=c-e+1)}}T&&n[e]==="}"&&$&&n[$-1]==="}"&&(t=" "),t?.length&&(r+=1),l.lineLengthLimit?r>=l.lineLengthLimit||!n[e+1]||n[e]===">"||n[e]==="/"&&n[e+1]===">"?((r>l.lineLengthLimit||r===l.lineLengthLimit&&n[e+1]?.trim()&&!R.includes(n[e])&&!B.includes(n[e+1]))&&(t=p,r=1),(r>l.lineLengthLimit||!(t===" "&&e===$+1))&&(i.push($,e,t),P=null),o=null,m=null,d=null):(o===null||$<o)&&(o=$,m=e,d=t):e===$+1&&t===" "||i.push($,e,t)}$=null,w||(w=!0)}else F&&(F=!1),l.removeLineBreaks&&(r+=1);w||(w=!0)}if(!u&&!F&&e!==0&&l.removeLineBreaks&&(l.lineLengthLimit||I)&&!(n[e]==="<"&&n.startsWith("</a",e))){if(I&&le(e)&&_<e&&(n[e]!=="<"||!n.startsWith("<![endif]",e)||!Ve(n,e,"<!--"))){i.push(e,e,p),o=null,m=null,d=null,r=1;continue}else if(l.lineLengthLimit&&r<=l.lineLengthLimit){if(!n[e+1]||B.includes(n[e])&&!Te.includes(n[e])||R.includes(n[e])||L(n[e])){if(o!==null&&m!==null&&(o!==m||d?.length)){let t=d;!L(n[e])&&n[e+1]?.trim()&&r+(d?d.length:0)>l.lineLengthLimit&&(t=p),(r+(t?t.length:0)>l.lineLengthLimit||!(t===" "&&m===o+1&&n[o]===" "))&&(n[~-o]==="}"&&n[m]==="{"||(i.push(o,m,t),P=null))}!L(n[e])&&(B.includes(n[e])||n[~-e]&&R.includes(n[~-e]))&&N(j)&&(!D||!W.has(D))&&!(n[e]==="<"&&H(e,!1))&&!(n[e]==="<"&&H(e,!0))?(o=e,m=e,d=null):S===null&&o!==null&&(f||!l.mindTheInlineTags||!Array.isArray(l.mindTheInlineTags)||Array.isArray(l.mindTheInlineTags.length)&&!l.mindTheInlineTags.length||!N(D)||Array.isArray(l.mindTheInlineTags)&&l.mindTheInlineTags.length&&N(D)&&!W.has(D))&&!(n[e]==="<"&&H(e,!0))&&(o=null,m=null,d=null)}}else if(l.lineLengthLimit)if(B.includes(n[e])&&!(n[e]==="<"&&H(e,!0)))if(o!==null&&m!==null&&(o!==m||d?.length)){let t=d?.length?d.length:0;r-(m-o-t)-1>l.lineLengthLimit||(i.push(o,m,d),r-(m-o-t)-1===l.lineLengthLimit&&(i.push(e,e,p),r=0),o=null,m=null,d=null)}else i.push(e,e,p),r=0;else n[e+1]&&R.includes(n[e])&&N(D)&&Array.isArray(l.mindTheInlineTags)&&l.mindTheInlineTags.length&&!W.has(D)?o!==null&&m!==null&&(o!==m||d?.length)||(i.push(e+1,e+1,p),r=0):L(n[e])||n[e+1]||o!==null&&m!==null&&(o!==m||d?.length)&&i.push(o,m,p)}if(!u&&!F&&l.removeLineBreaks&&l.lineLengthLimit&&r>=l.lineLengthLimit&&o!==null&&m!==null&&!R.includes(n[e])&&!B.includes(n[e])&&!"/".includes(n[e])&&!(r===l.lineLengthLimit&&n[e+1]&&!n[e+1].trim())){let t=p;n[e+1]&&!n[e+1].trim()&&r===l.lineLengthLimit&&(t=d),t===p&&!n[~-o].trim()&&Z(n,o)&&(o=Z(n,o)+1),i.push(o,m,t),r=e-m,n[e].length&&(r+=1),o=null,m=null,d=null}if((!u&&n[e]===`
21
- `||n[e]==="\r"&&(!n[e+1]||n[e+1]&&n[e+1]!==`
22
- `))&&(P=e,w&&(w=!1),!l.removeLineBreaks&&$!==null&&$<e&&n[e+1]&&n[e+1]!=="\r"&&n[e+1]!==`
23
- `&&i.push($,e)),!n[e+1]){if((T||f)&&S!==null)i.push([...ee({str:n,from:S,to:e+1,ifLeftSideIncludesThisThenCropTightly:K||"",ifRightSideIncludesThisThenCropTightly:Q||""})]);else if($!==null&&(_<h||l.removeIndentations||l.removeLineBreaks)){let t=n.endsWith(`\r
24
- `)?h-2:n.endsWith(`
25
- `)||n.endsWith("\r")?h-1:h;$<t&&i.push($,t)}}if(!u&&f&&f<e&&n[f]===n[e]&&(f=null),!u&&!T&&n[e]==="<"){let t=null;if(y(e,"pre",!1)?t="pre":y(e,"code",!1)?t="code":y(e,"textarea",!1)&&(t="textarea"),t!==null){let c=de(e+2,t);u=c===-1?h:c}}if(!u&&n[e]==="<"&&n.startsWith("<![CDATA[",e)){let t=n.indexOf("]]>",e+9);t>0&&(u=t)}if(!u&&!T&&!f&&A!==null&&n[e]===">"&&(n[V(n,e)]==="<"&&(j=D),A=null,D=null),n[e]==="<"&&j!==null&&(j=null),!u&&T&&n[e]==="{"&&n[e+1]==="{"){let t=n.indexOf("}}",e+2);t!==-1&&(u=t+2)}let a=!0}let s=i.current();if(s){let e=l.reportProgressFunc&&h>=2e3?t=>{x($e+se*(t/100))}:void 0,a=Ne(n,s,e);return x(1),{log:ie(a),ranges:s,applicableOpts:O,result:a}}}return x(1),{log:ie(n,!0),applicableOpts:O,ranges:null,result:n}}export{Be as crush,be as defaults,Re as version};
10
+ import{formatDiagnosticValue as de,isLetter as Je,isPlainObject as Ge,isStr as J,isWhitespaceChar as P}from"codsen-utils";import{Ranges as je}from"ranges-push";import{left as he,right as F}from"string-left-right";import{matchLeft as qe,matchRight as Ye,matchRightIncl as Ke}from"string-match-left-right";import{expander as Ie}from"string-range-expander";var ye="6.3.3";function Ve(e,s){if(s<0||s>=e.length)return;let i=e.charCodeAt(s),t=e.charCodeAt(s+1);if(i>=55296&&i<=56319&&t>=56320&&t<=57343)return e.slice(s,s+2);let T=e.charCodeAt(s-1);return i>=56320&&i<=57343&&T>=55296&&T<=56319?e.slice(s-1,s+1):e[s]}import{scanReference as Be}from"html-entity-codec";import{readCssToken as be}from"string-extract-class-names";function x(e){return e===" "||e===" "||e===`
11
+ `||e==="\f"||e==="\r"}function fe(e){return e.replace(/[A-Z]/g,s=>s.toLowerCase())}function we(e,s){let i=null;for(let t=s;t<e.length;t++)if(i)e[t]===i&&(i=null);else if(e[t]==='"'||e[t]==="'")i=e[t];else if(e[t]===">")return t;return e.length}function _e(e,s,i){for(let t=e.indexOf("</",s);t!==-1;t=e.indexOf("</",t+2)){let T=t+i.length+2;if(fe(e.slice(t+2,T))===i&&(x(e[T])||e[T]==="/"||e[T]===">"))return t}return e.length}function Ne(e){let s=[];for(let i=e.indexOf("<");i!==-1;i=e.indexOf("<",i+1)){if(e.startsWith("<!--",i)){if(/^<!--\[if[\t\n\f\r (!]/i.test(e.slice(i,i+8))){let b=e.indexOf(">",i+7);if(b===-1)break;i=b}else if(e.startsWith("<!-->",i))i+=4;else if(e.startsWith("<!--->",i))i+=5;else{let b=e.indexOf("--",i+4);for(;b!==-1&&e[b+2]!==">"&&!(e[b+2]==="!"&&e[b+3]===">");)b=e.indexOf("--",b+1);if(b===-1)break;i=b+(e[b+2]==="!"?3:2)}continue}if(e[i+1]==="/"||e[i+1]==="!"||e[i+1]==="?"){i=we(e,i+2);continue}if(!/[a-z]/i.test(e[i+1]||""))continue;let t=i+1,T=t;for(;t<e.length&&!x(e[t])&&e[t]!=="/"&&e[t]!==">";)t++;let d=fe(e.slice(T,t)),a=!1;for(;t<e.length;){for(;x(e[t]);)t++;if(e[t]===">")break;if(e[t]==="/"&&e[t+1]===">"){t++;break}let p=t;for(;t<e.length&&!x(e[t])&&!"=/>".includes(e[t]);)t++;if(t===p){t++;continue}let b=fe(e.slice(p,t)),O=b==="style"&&!a;for(b==="style"&&(a=!0);x(e[t]);)t++;if(e[t]!=="=")continue;for(t++;x(e[t]);)t++;let D=null;(e[t]==='"'||e[t]==="'")&&(D=e[t],t++);let I=t;if(D){let r=e.indexOf(D,t);t=r===-1?e.length:r}else for(;t<e.length&&!x(e[t])&&e[t]!==">";)t++;O&&s.push({start:I,end:t,inline:!0,quote:D,source:e.slice(I,t)}),D&&e[t]===D&&t++}if(i=t,t>=e.length||d==="plaintext")break;if(d==="style"||d==="script"||d==="textarea"||d==="title"||d==="xmp"||d==="iframe"||d==="noembed"||d==="noframes"){let p=t+1,b=_e(e,p,d);d==="style"&&s.push({start:p,end:b,inline:!1,quote:null,source:e.slice(p,b)}),i=b===e.length?b:we(e,b+d.length+2)}}return s}function We(e){let s=e.source,i=[];if(!s.includes("&")&&!s.includes("\r")&&!s.includes("\0"))return{source:s,mappings:i};let t=[],T=0,d=0;for(let a=0;a<s.length;){let p=s.charCodeAt(a),b,O=a+1;if(p===38){let D=Be(s,a,{context:"attribute"});D&&(b=D.value,O=D.end)}else p===13?(b=`
12
+ `,s.charCodeAt(O)===10&&O++):p===0&&(b="\uFFFD");if(b!==void 0){let D=s.slice(T,a);t.push(D,b),d+=D.length,i.push({decodedFrom:d,decodedTo:d+b.length,from:e.start+a,to:e.start+O}),d+=b.length,T=O}a=O}return t.push(s.slice(T)),{source:t.join(""),mappings:i}}function me(e,s,i){let t=e.decoded?.mappings;if(!t?.length)return e.start+s;let T=0,d=t.length;for(;T<d;){let p=T+d>>>1;t[p].decodedFrom<=s?T=p+1:d=p}if(!T)return e.start+s;let a=t[T-1];return s===a.decodedFrom?a.from:s<a.decodedTo?i?a.to:a.from:a.to+s-a.decodedTo}function $e(e){e.sort((i,t)=>i[0]-t[0]||i[1]-t[1]);let s=[];for(let i of e){let t=s[s.length-1];t&&i[0]<=t[1]?t[1]=Math.max(t[1],i[1]):s.push(i)}return s}function ke(e){let s=[],i=[],t=[],T=[],d=[];for(let a of e){a.inline&&(a.decoded||=We(a),a.source.includes("&")&&T.push([a.start,a.end]));let p=a.inline?a.decoded.source:a.source,b=!1,O=null,D=null;for(let I=0;I<p.length;){let r=be(p,I);if(!r)break;let o=r.kind==="string"||r.kind==="bad-string"||r.kind==="url"||r.kind==="bad-url",H=r.kind!=="comment"&&(r.kind!=="delimiter"||r.raw==="\\")&&r.kind!=="whitespace"&&r.raw.includes("\\"),M=b&&r.kind==="whitespace";if(o||H||M||r.kind==="comment"){let G=me(a,r.range[0],!1),U=me(a,r.range[1],!0);if((o||H||M)&&s.push([G,U]),(o||H)&&i.push([G,U]),r.kind==="comment"){let j=be(p,r.range[1]),X=j?.kind==="whitespace"?be(p,j.range[1]):j,z=!D||!X||[D,X].some(A=>A?.kind==="delimiter"&&"{};,".includes(A.raw)),ue=O?.kind==="whitespace"||j?.kind==="whitespace"&&!O?.raw.includes("\\"),q=[O,j].some(A=>A?.kind==="delimiter"&&A.raw===":"),ce=z||ue||q?"":"/**/";if(!z){let A=r.range[0],ee=r.range[1];for(;x(p[A-1]);)A--;for(;x(p[ee]);)ee++;d.push([me(a,A,!1),me(a,ee,!0)])}t.push({from:G,to:U,region:a,closed:r.raw.length>=4&&r.raw.endsWith("*/"),replacement:ce,canExpand:z})}}b=H||r.kind==="bad-string",O=r,r.kind!=="whitespace"&&(D=r),I=r.range[1]}}return t.sort((a,p)=>a.from-p.from||a.to-p.to),{escapeRanges:$e(s),opaqueRanges:$e(i),commentTokens:t,inlineReferenceRanges:$e(T),commentBoundaryRanges:$e(d)}}var cn=ye;function Te(e){return e>96&&e<123||e>64&&e<91||e>47&&e<58||e===95}function re(e){return e!==void 0&&Te(e.charCodeAt(0))}function Pe(e){return e!==void 0&&(Te(e.charCodeAt(0))||":-.".includes(e))}function Re(e){if(/^[\x00-\x7f]*$/.test(e))return e.length;let s=0;for(let i=0;i<e.length;i++){let t=e.charCodeAt(i);if(t<=127)s+=1;else if(t<=2047)s+=2;else if(t>=55296&&t<=56319&&i+1<e.length){let T=e.charCodeAt(i+1);T>=56320&&T<=57343?(s+=4,i+=1):s+=3}else s+=3}return s}function Xe(e,s,i){let t="",T=0;for(let d=0,a=s.length;d<a;d++){i&&i(d/a*100);let p=s[d];t+=`${e.slice(T,p[0])}${p[2]??""}`,T=p[1]}return i&&i(100),t+e.slice(T)}var ve={lineLengthLimit:500,removeIndentations:!0,removeLineBreaks:!1,removeHTMLComments:!1,removeCSSComments:!0,reportProgressFunc:null,reportProgressFuncFrom:0,reportProgressFuncTo:100,breakToTheLeftOf:["</td","<html","</html","<head","</head","<meta","<link","<table","<script","</script","<!DOCTYPE","<style","</style","<title","<body","@media","</body","<!--[if","<!--<![endif","<![endif]"],mindTheInlineTags:["a","abbr","acronym","audio","b","bdi","bdo","big","br","button","canvas","cite","code","data","datalist","del","dfn","em","embed","i","iframe","img","input","ins","kbd","label","map","mark","meter","noscript","object","output","picture","progress","q","ruby","s","samp","script","select","slot","small","span","strong","sub","sup","svg","template","textarea","time","u","tt","var","video","wbr"]};function gn(e,s){let i=Date.now();if(!J(e))throw e===void 0?new Error("html-crush/crush(): [THROW_ID_01] the first input argument is completely missing! It should be given as string."):new Error(`html-crush/crush(): [THROW_ID_02] the first input argument must be string! It was given as "${typeof e}", equal to:
13
+ ${de(e,4)}`);if(s&&!Ge(s))throw new Error(`html-crush/crush(): [THROW_ID_03] the second input argument, options object, should be a plain object but it was given as type ${typeof s}, equal to ${de(s,4)}`);let t=s;if(t&&Array.isArray(t.breakToTheLeftOf)&&t.breakToTheLeftOf.length){for(let u=0,n=t.breakToTheLeftOf.length;u<n;u++)if(!J(t.breakToTheLeftOf[u]))throw new TypeError(`html-crush/crush(): [THROW_ID_04] the resolvedOpts.breakToTheLeftOf array contains non-string elements! For example, element at index ${u} is of a type "${typeof t.breakToTheLeftOf[u]}" and is equal to:
14
+ ${de(t.breakToTheLeftOf[u],4)}`)}let T=new je({limitToBeAddedWhitespace:!0}),d=Ne(e),a=ke(d),p=a.commentTokens.map(({from:u,to:n})=>[u,n]),b=0,O=0,D=0;function I(u,n,m){let g=0,f=u.length;for(;g<f;){let v=g+f>>>1;(n===m?u[v][1]<n:u[v][1]<=n)?g=v+1:f=v}let V=u[g];return!!V&&(n===m?V[0]<=n&&n<=V[1]:V[0]<m&&n<V[1])}function r(u,n,m,g){Array.isArray(u)&&([u,n,m]=u),!(typeof u!="number"||typeof n!="number")&&(g!=="html-comment"&&(I(a.escapeRanges,u,n)||g!=="css-comment"&&(I(a.inlineReferenceRanges,u,n)||!o.removeCSSComments&&I(p,u,n)||I(a.commentBoundaryRanges,u,n)))||T.push(u,n,m))}let o={...ve,...t,reportProgressFunc:typeof t?.reportProgressFunc=="function"?t.reportProgressFunc:null,breakToTheLeftOf:t?.breakToTheLeftOf===void 0?ve.breakToTheLeftOf:Array.isArray(t.breakToTheLeftOf)?t.breakToTheLeftOf:[]};typeof o.removeHTMLComments=="boolean"&&(o.removeHTMLComments=o.removeHTMLComments?1:0);let H="";Array.isArray(o.breakToTheLeftOf)&&o.breakToTheLeftOf.length&&(H=[...new Set(o.breakToTheLeftOf.map(u=>u[0]))].join(""));let M={removeHTMLComments:!1,removeCSSComments:!1},G=Array.isArray(o.mindTheInlineTags)?o.mindTheInlineTags:[],U=new Set(G),j=!!G.length&&G.every(u=>J(u)&&!!u.length&&![...u].some(n=>!re(n))),X=new Map,z=Array.isArray(o.breakToTheLeftOf)&&!!o.breakToTheLeftOf.length&&o.breakToTheLeftOf.every(J)&&!(o.breakToTheLeftOf.length===1&&!o.breakToTheLeftOf[0].trim());if(z)for(let u of o.breakToTheLeftOf){if(!u.length)continue;let n=X.get(u[0]);n?n.push(u):X.set(u[0],[u])}function ue(u){if(!z)return!!Ke(e,u,o.breakToTheLeftOf);let n=X.get(e[u]);if(n===void 0)return!1;for(let m=0,g=n.length;m<g;m++)if(e.startsWith(n[m],u))return!0;return!1}function q(u,n){if(!j)return!!Ye(e,u,o.mindTheInlineTags,{...n?{trimCharsBeforeMatching:"/"}:{},cb:f=>!f||!re(f)});let m=u+1;if(n)for(;e[m]==="/";)m++;let g=m;for(;g<S&&Te(e.charCodeAt(g));)g++;return g>m&&U.has(e.slice(m,g))}function ce(u){let n=u-1;for(;n>=0&&P(e[n]);)n--;if(e[n]!=="=")return null;let m=n,g=n-1;for(;g>=0&&P(e[g]);)g--,m--;for(;g>=0&&Pe(e[g]);)g--;return g+1<m?e.slice(g+1,m).toLowerCase():null}function A(u,n,m){if(e[u]!=="<")return!1;let g=u+1;if(m){if(e[g]!=="/")return!1;g++}else if(e[g]==="/")return!1;for(let f=0;f<n.length;f++){let V=e.charCodeAt(g+f);if(V>64&&V<91&&(V+=32),V!==n.charCodeAt(f))return!1}return!Pe(e[g+n.length])&&!Je(Ve(e,g+n.length))}function ee(u,n){let m=e.indexOf("<",u);for(;m!==-1;){if(A(m,n,!0))return m;m=e.indexOf("<",m+1)}return-1}let Y=null,c=null,K=!1,E=0,ne=0,w=!1,Q=!1,y=null,te=null,B=null,_=null,ge=null,L,$=null,h=null,C=null,R=null,W=null,ae=null,oe=">};",le="<",Fe="!",He=">",xe="<",Ee="{},:;<>~+",pe=Ee,Le=Ee,Z=!0,S=e.length;function Se(u,n=!1){let m=u.length,g=Math.max(S-m,0),f=Re(e),V=n?f:Re(u),v=Math.max(f-V,0);return{timeTakenInMilliseconds:Date.now()-i,originalLength:S,cleanedLength:m,bytesSaved:g,percentageReducedOfOriginal:S?Math.round(g*100/S):0,originalLengthInCodeUnits:S,cleanedLengthInCodeUnits:m,codeUnitsSaved:g,percentageReducedOfOriginalInCodeUnits:S?Math.round(g*100/S):0,originalLengthInUtf8Bytes:f,cleanedLengthInUtf8Bytes:V,utf8BytesSaved:v,percentageReducedOfOriginalInUtf8Bytes:f?Math.round(v*100/f):0}}let ie=0;for(;ie<S&&P(e[ie]);)ie++;let Me=Math.floor(S/2),De=.01,Ce=1-De,Oe=null;function se(u){if(!o.reportProgressFunc||S<=1e3)return;let n=Math.max(0,Math.min(u,1)),m=Math.floor(o.reportProgressFuncFrom+(o.reportProgressFuncTo-o.reportProgressFuncFrom)*n);m!==Oe&&(Oe=m,o.reportProgressFunc(m))}let N=`
15
+ `;if(e.includes(`\r
16
+ `)?N=`\r
17
+ `:e.includes("\r")&&(N="\r"),S){for(let n=0;n<S;n++){for(o.reportProgressFunc&&(S>1e3&&S<2e3?n===Me&&se(.5):S>=2e3&&se(n/S*Ce)),ne++,!L&&w&&e[n]==="}"&&e[n-1]==="}"&&(E+1>=o.lineLengthLimit?(r(n,n,N),E=0):($=n,h=n,C=" ")),L&&typeof L=="number"&&n>=L&&(L=void 0);b<d.length&&n>=d[b].end;)n>d[b].end&&(d[b].inline?y=null:w=!1),B=null,b++;let m=d[b],g=!!m&&n>=m.start&&n<m.end;for(;O<a.opaqueRanges.length&&n>=a.opaqueRanges[O][1];)O++;for(;D<a.commentTokens.length&&n>=a.commentTokens[D].to;)D++,B=null;let f=a.commentTokens[D],V=!!f&&n>=f.from&&n<f.to,v=a.opaqueRanges[O];if(!L&&_===null&&g){if(V&&n===f.from&&((f.to-f.from!==f.replacement.length||e.slice(f.from,f.to)!==f.replacement)&&(M.removeCSSComments=!0),o.removeCSSComments)){B=n;let l=f.canExpand?Ie({str:e,from:f.from,to:f.to,ifLeftSideIncludesThisThenCropTightly:pe||"",ifRightSideIncludesThisThenCropTightly:Le||""}):[f.from,f.to];$=Math.max(m.start,l[0]),h=Math.min(m.end,l[1]),I(a.escapeRanges,$,h)&&($=f.from,h=f.to),c=null,r($,h,f.replacement||void 0,"css-comment")}if(V&&(o.removeCSSComments||n>f.from)||v&&n>=v[0]&&n<v[1]){V&&o.removeCSSComments?ne--:o.removeLineBreaks&&(E=`\r
18
+ `.includes(e[n])?0:E+1);continue}}if(ge!==null&&A(n,"script",!0)){if((o.removeIndentations||o.removeLineBreaks)&&n>0&&e[~-n]&&P(e[~-n])){for(let l=n;l--;)if(e[l]===`
19
+ `||e[l]==="\r"||!P(e[l])){l+1<n&&r(l+1,n);break}}ge=null,L=!1,n+=8;continue}if(!L&&!w&&A(n,"script",!1)){ge=n,L=!0;let l="";(o.removeLineBreaks||o.removeIndentations)&&c!==null&&(c>0&&(l=N),r(c,n,l)),c=null,Y=null}if(!L&&te!==null){o.removeLineBreaks&&(E=`\r
20
+ `.includes(e[n])?0:E+1),n>te&&e[n]===e[te]&&(te=null);continue}if(!L&&W!==null&&!y&&`"'`.includes(e[n])){let l=ce(n);if(l==="style")y=n;else if(l!==null){te=n,o.removeLineBreaks&&(E+=1);continue}}if(W!==null&&R===null&&!re(e[n])){R=e.slice(W,n);let l=F(e,~-n),k=F(e,n);if(typeof l=="number"&&e[l]===">"&&P(e[n])&&k)r(n,k);else if(l&&e[l]==="/"&&e[F(e,l)]===">"){P(e[n])&&k&&r(n,k);let Ae=F(e,l+1);e[l+1]!==">"&&Ae&&r(l+1,Ae)}}if(!L&&!w&&!y&&e[~-n]==="<"&&W===null)if(re(e[n]))W=n;else{let l=F(e,~-n),k=F(e,l);e[l]==="/"&&re(e[k]||"")&&(W=k)}if(Q&&e.startsWith("![endif",n+1)&&(Q=!1),!L&&!w&&!y&&_!==null){let l;e.startsWith("-->",n)?l=3:e[n]===">"&&e[n-1]==="]"&&(l=1),l&&([$,h]=Ie({str:e,from:_,to:n+l}),_=null,$!=null?o.removeLineBreaks&&o.lineLengthLimit&&ne-(h-$)>=o.lineLengthLimit?(r($,h,N,"html-comment"),ne=-l):(r($,h,void 0,"html-comment"),ne-=h-$):(E+=l-1,n+=l-1),L=n+l)}if(!L&&!w&&!y&&e[n]==="<"&&(e.startsWith("<!--",n)||e.startsWith("<![endif",n))&&_===null&&(e.startsWith("<![endif",n)?o.removeHTMLComments===2&&(_=n):e.startsWith("[if",n+4)?(Q||(Q=!0),o.removeHTMLComments===2&&(_=n)):o.removeHTMLComments&&(!Q||o.removeHTMLComments===2)&&(_=n),M.removeHTMLComments||(M.removeHTMLComments=!0)),!L&&w&&B===null&&A(n,"style",!0)?w=!1:!L&&!w&&B===null&&A(n,"style",!1)&&(w=!0,(o.removeLineBreaks||o.removeIndentations)&&o.breakToTheLeftOf.includes("<style")&&e.startsWith(' type="text/css">',n+6)&&e[n+24]&&r(n+23,n+23,N)),!L&&!y&&`"'`.includes(e[n])&&e.endsWith("style=",n)&&(y=n),!L&&P(e[n]))c===null&&(c=n);else if(!L&&!((w||y)&&B!==null)){if(c!==null){if(o.removeLineBreaks&&(E+=1),Z)Z=!1,(o.removeIndentations||o.removeLineBreaks)&&r(0,n);else if(o.removeIndentations&&!o.removeLineBreaks&&(!K&&Y!==null&&n>Y?r(Y+1,n):c+1<n&&(e.endsWith("]>",c)||e.endsWith("-->",c)||e.startsWith("<![",n)||e.startsWith("<!--<![",n)?r(c,n):e[c]===" "?r(c+1,n):e[~-n]===" "?r(c,~-n):r(c,n," "))),o.removeLineBreaks||y){if(H.includes(e[n])&&ue(n)){!(`\r
21
+ `.includes(e[~-n])&&c===~-n)&&!(e[~-n]===`
22
+ `&&e[n-2]==="\r"&&c===n-2)&&r(c,n,N),$=null,h=null,C=null,c=null,E=1;continue}let l=" ";if(!(e[n]==="<"&&q(n,!1))){if(e[~-c]&&He.includes(e[~-c])&&xe.includes(e[n])||(w||y)&&B===null&&(pe.includes(e[~-c])||Le.includes(e[n]))||e[n]==="!"&&e.startsWith("!important",n)&&!Q||y&&(e[~-c]==="'"||e[~-c]==='"')||e[~-c]==="}"&&e.startsWith("</style",n)||e[n]===">"&&(`'"`.includes(e[he(e,n)])||e[F(e,n)]==="<")||e[n]==="/"&&e[F(e,n)]===">"){l="";let k=e[n]==="/"&&e[n+1]===">"?F(e,n):null;k&&k>n+1&&(r(n+1,k),E-=k-n+1)}}w&&e[n]==="}"&&c&&e[c-1]==="}"&&(l=" "),l?.length&&(E+=1),o.lineLengthLimit?E>=o.lineLengthLimit||!e[n+1]||e[n]===">"||e[n]==="/"&&e[n+1]===">"?((E>o.lineLengthLimit||E===o.lineLengthLimit&&e[n+1]?.trim()&&!oe.includes(e[n])&&!le.includes(e[n+1]))&&(l=N,E=1),(E>o.lineLengthLimit||!(l===" "&&n===c+1))&&(r(c,n,l),Y=null),$=null,h=null,C=null):($===null||c<$)&&($=c,h=n,C=l):n===c+1&&l===" "||r(c,n,l)}c=null,K||(K=!0)}else Z&&(Z=!1),o.removeLineBreaks&&(E+=1);K||(K=!0)}if(!L&&!Z&&n!==0&&o.removeLineBreaks&&(o.lineLengthLimit||H)&&!(e[n]==="<"&&e.startsWith("</a",n))){if(H&&ue(n)&&ie<n&&(e[n]!=="<"||!e.startsWith("<![endif]",n)||!qe(e,n,"<!--"))){r(n,n,N),$=null,h=null,C=null,E=1;continue}else if(o.lineLengthLimit&&E<=o.lineLengthLimit){if(!e[n+1]||le.includes(e[n])&&!Fe.includes(e[n])||oe.includes(e[n])||P(e[n])){if($!==null&&h!==null&&($!==h||C?.length)){let l=C;!P(e[n])&&e[n+1]?.trim()&&E+(C?C.length:0)>o.lineLengthLimit&&(l=N),(E+(l?l.length:0)>o.lineLengthLimit||!(l===" "&&h===$+1&&e[$]===" "))&&(e[~-$]==="}"&&e[h]==="{"||(r($,h,l),Y=null))}!P(e[n])&&(le.includes(e[n])||e[~-n]&&oe.includes(e[~-n]))&&J(ae)&&(!R||!U.has(R))&&!(e[n]==="<"&&q(n,!1))&&!(e[n]==="<"&&q(n,!0))?($=n,h=n,C=null):B===null&&$!==null&&(y||!o.mindTheInlineTags||!Array.isArray(o.mindTheInlineTags)||Array.isArray(o.mindTheInlineTags.length)&&!o.mindTheInlineTags.length||!J(R)||Array.isArray(o.mindTheInlineTags)&&o.mindTheInlineTags.length&&J(R)&&!U.has(R))&&!(e[n]==="<"&&q(n,!0))&&($=null,h=null,C=null)}}else if(o.lineLengthLimit)if(le.includes(e[n])&&!(e[n]==="<"&&q(n,!0)))if($!==null&&h!==null&&($!==h||C?.length)){let l=C?.length?C.length:0;E-(h-$-l)-1>o.lineLengthLimit||(r($,h,C),E-(h-$-l)-1===o.lineLengthLimit&&(r(n,n,N),E=0),$=null,h=null,C=null)}else r(n,n,N),E=0;else e[n+1]&&oe.includes(e[n])&&J(R)&&Array.isArray(o.mindTheInlineTags)&&o.mindTheInlineTags.length&&!U.has(R)?$!==null&&h!==null&&($!==h||C?.length)||(r(n+1,n+1,N),E=0):P(e[n])||e[n+1]||$!==null&&h!==null&&($!==h||C?.length)&&r($,h,N)}if(!L&&!Z&&o.removeLineBreaks&&o.lineLengthLimit&&E>=o.lineLengthLimit&&$!==null&&h!==null&&!oe.includes(e[n])&&!le.includes(e[n])&&!"/".includes(e[n])&&!(E===o.lineLengthLimit&&e[n+1]&&!e[n+1].trim())){let l=N;e[n+1]&&!e[n+1].trim()&&E===o.lineLengthLimit&&(l=C),l===N&&!e[~-$].trim()&&he(e,$)&&($=he(e,$)+1),r($,h,l),E=n-h,e[n].length&&(E+=1),$=null,h=null,C=null}if((!L&&e[n]===`
23
+ `||e[n]==="\r"&&(!e[n+1]||e[n+1]&&e[n+1]!==`
24
+ `))&&(Y=n,K&&(K=!1),!o.removeLineBreaks&&c!==null&&c<n&&e[n+1]&&e[n+1]!=="\r"&&e[n+1]!==`
25
+ `&&r(c,n)),!e[n+1]&&c!==null&&(ie<S||o.removeIndentations||o.removeLineBreaks)){let l=e.endsWith(`\r
26
+ `)?S-2:e.endsWith(`
27
+ `)||e.endsWith("\r")?S-1:S;c<l&&r(c,l)}if(!L&&y&&y<n&&e[y]===e[n]&&(y=null),!L&&!w&&e[n]==="<"){let l=null;if(A(n,"pre",!1)?l="pre":A(n,"code",!1)?l="code":A(n,"textarea",!1)&&(l="textarea"),l!==null){let k=ee(n+2,l);L=k===-1?S:k}}if(!L&&e[n]==="<"&&e.startsWith("<![CDATA[",n)){let l=e.indexOf("]]>",n+9);l>0&&(L=l)}if(!L&&!w&&!y&&W!==null&&e[n]===">"&&(e[F(e,n)]==="<"&&(ae=R),W=null,R=null),e[n]==="<"&&ae!==null&&(ae=null),!L&&w&&e[n]==="{"&&e[n+1]==="{"){let l=e.indexOf("}}",n+2);l!==-1&&(L=l+2)}let ze=!0}let u=T.current();if(u){let n=o.reportProgressFunc&&S>=2e3?g=>{se(Ce+De*(g/100))}:void 0,m=Xe(e,u,n);return se(1),{log:Se(m),ranges:u,applicableOpts:M,result:m}}}return se(1),{log:Se(e,!0),applicableOpts:M,ranges:null,result:e}}export{gn as crush,ve as defaults,cn as version};
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * @name html-crush
3
3
  * @fileoverview Minify email templates
4
- * @version 6.3.2
4
+ * @version 6.3.3
5
5
  * @author Roy Revelt
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/html-crush/}
8
8
  */
9
9
 
10
- "use strict";var htmlCrush=(()=>{var ue=Object.defineProperty,$t=Object.defineProperties,bt=Object.getOwnPropertyDescriptor,Tt=Object.getOwnPropertyDescriptors,yt=Object.getOwnPropertyNames,We=Object.getOwnPropertySymbols;var He=Object.prototype.hasOwnProperty,St=Object.prototype.propertyIsEnumerable;var Te=(e,n,t)=>n in e?ue(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,U=(e,n)=>{for(var t in n||(n={}))He.call(n,t)&&Te(e,t,n[t]);if(We)for(var t of We(n))St.call(n,t)&&Te(e,t,n[t]);return e},le=(e,n)=>$t(e,Tt(n));var Et=(e,n)=>{for(var t in n)ue(e,t,{get:n[t],enumerable:!0})},Ct=(e,n,t,r)=>{if(n&&typeof n=="object"||typeof n=="function")for(let l of yt(n))!He.call(e,l)&&l!==t&&ue(e,l,{get:()=>n[l],enumerable:!(r=bt(n,l))||r.enumerable});return e};var At=e=>Ct(ue({},"__esModule",{value:!0}),e);var oe=(e,n,t)=>Te(e,typeof n!="symbol"?n+"":n,t);var Yt={};Et(Yt,{crush:()=>Kt,defaults:()=>ve,version:()=>zt});function Ot(){let e=[],n=0,t=!1;return{append(r){return t?!1:n+r.length>1999?(e.push("\u2026"),n+=1,t=!0,!1):(e.push(r),n+=r.length,!0)},result(){return e.join("")},stopped(){return t}}}function wt(e){return"\\u".concat(e.toString(16).padStart(4,"0"))}function fe(e,n){if(e.append('"')){for(let t=0;t<n.length&&!e.stopped();t+=1){let r=n.charCodeAt(t);r===34?e.append('\\"'):r===92?e.append("\\\\"):r===8?e.append("\\b"):r===9?e.append("\\t"):r===10?e.append("\\n"):r===12?e.append("\\f"):r===13?e.append("\\r"):r<32||r===8232||r===8233||r>=55296&&r<=57343?e.append(wt(r)):e.append(n[t])}e.append('"')}}function Lt(e){return e.get&&e.set?"[Getter/Setter]":e.get?"[Getter]":e.set?"[Setter]":"[Accessor]"}function Fe(e,n){e.append("Symbol(");let t=String(n);t.length>8&&fe(e,t.slice(7,-1)),e.append(")")}function je(e,n){typeof n=="symbol"?Fe(e,n):fe(e,String(n))}function g(e,n=0){let t=Ot(),r=n===4?4:0,l=new WeakSet,i=0;function s(f){r&&t.append(" ".repeat(f*r))}function u(f,C){f&&t.append(","),r&&(t.append("\n"),s(C+1))}function c(f,C,m){r&&C&&(t.append("\n"),s(m)),t.append(f)}function h(f,C){Object.prototype.hasOwnProperty.call(f,"value")?N(f.value,C):t.append(Lt(f))}function E(f,C){let m;try{m=Reflect.getOwnPropertyDescriptor(f,"length")}catch(a){t.append("[Uninspectable]");return}let b=m==null?void 0:m.value;if(!Number.isSafeInteger(b)||b<0){t.append("[Uninspectable]");return}t.append("[");let d=!1;for(let a=0;a<b&&!t.stopped();a+=1){if(u(d,C),d=!0,i>=50){t.append("[MaxEntries]");break}i+=1;let R;try{R=Reflect.getOwnPropertyDescriptor(f,String(a))}catch($){t.append("[Uninspectable]");continue}R!=null&&R.enumerable?h(R,C+1):t.append("[Empty]")}c("]",d,C)}function A(f,C){let m;try{m=Reflect.ownKeys(f)}catch(d){t.append("[Uninspectable]");return}t.append("{");let b=!1;for(let d of m){if(t.stopped())break;if(i>=50){u(b,C),b=!0,fe(t,"\u2026"),t.append(r?": ":":"),t.append("[MaxEntries]");break}i+=1;let a;try{a=Reflect.getOwnPropertyDescriptor(f,d)}catch(R){u(b,C),b=!0,je(t,d),t.append(r?": ":":"),t.append("[Uninspectable]");continue}a!=null&&a.enumerable&&(u(b,C),b=!0,je(t,d),t.append(r?": ":":"),h(a,C+1))}c("}",b,C)}function p(f,C){if(l.has(f)){t.append("[Circular]");return}if(C>=5){t.append("[MaxDepth]");return}let m;try{m=Array.isArray(f)}catch(b){t.append("[Uninspectable]");return}l.add(f);try{m?E(f,C):A(f,C)}finally{l.delete(f)}}function N(f,C){f===null?t.append("null"):typeof f=="string"?fe(t,f):typeof f=="number"?t.append(Object.is(f,-0)?"-0":String(f)):typeof f=="boolean"?t.append(f?"true":"false"):typeof f>"u"?t.append("undefined"):typeof f=="bigint"?t.append("".concat(f,"n")):typeof f=="symbol"?Fe(t,f):typeof f=="function"?t.append("[Function]"):p(f,C)}try{return N(e,0),t.result()}catch(f){return"[Uninspectable]"}}var vt=["_16_0_a_0_4_0_5_m_1_u_1_cp_4_b_e_4_7_0_1_0_3l_4_1_1_2_3_1_0_6_0_1_2_1_0_1_j_1_2a_1_3u_8_4l_1_11_2_0_","6_14_1z_q_4_3_19_16_z_1_1_2q_1_0_f_1_7_1_a_2_2_0_g_0_1_t_t_2g_b_0_o_w_9_1_4_0_5_l_4_0_9_0_3_0_n_o_7_","a_5_n_1_6_g_15_1m_1h_3_0_i_0_7_9_f_f_4_7_2_1_2_l_1_6_1_0_3_3_3_0_g_0_d_1_1_2_e_1_a_0_8_5_4_1_2_l_1_6","_1_1_1_1_1_1_v_3_1_0_j_2_g_8_1_2_1_l_1_6_1_1_1_4_3_0_i_0_f_1_n_0_b_7_2_1_2_l_1_6_1_1_1_4_3_0_u_1_1_2","_f_0_h_0_1_5_3_2_1_3_3_1_1_0_1_1_3_1_3_2_3_b_m_0_1g_7_1_2_1_m_1_f_3_0_q_2_1_1_2_1_u_0_4_7_1_2_1_m_1_","9_1_4_3_0_u_2_1_1_f_1_h_8_1_2_1_14_2_0_g_0_5_2_8_2_o_5_5_h_3_n_1_8_1_0_2_6_1m_1b_1_1_c_6_1m_1_1_0_1_","4_1_n_1_0_1_9_1_1_9_0_2_4_1_0_l_3_w_0_1r_7_1_z_r_4_37_16_k_0_g_5_4_3_3_0_3_1_7_2_4_c_c_0_h_11_1_0_5_","0_2_16_1_98_1_3_2_6_1_0_1_3_2_14_1_3_2_w_1_3_2_6_1_0_1_3_2_e_1_1k_1_3_2_1u_11_f_g_2d_2_5_3_h7_2_g_1_","p_5_22_6_7_7_h_d_i_e_h_e_c_1_2_f_1f_z_0_4_0_1v_2g_7_4_2_x_1_0_5_1x_a_u_1d_t_2_4_b_17_4_p_1i_m_9_1g_2","a_0_2l_1a_h_7_1i_t_d_1_a_17_q_z_15_2_a_z_2_a_5_16_2_2_15_3_1_5_1_1_3_0_5_5b_1s_7p_2_5_2_11_2_5_2_7_1","_0_1_0_1_0_1_u_2_1g_1_6_1_0_3_2_1_6_3_3_2_5_4_c_5_2_1_6_38_0_d_0_g_c_2t_0_4_0_2_9_1_0_3_4_6_0_1_0_1_","0_1_3_1_a_2_3_5_4_4_0_1g_1_22j_6c_6_3_3_1_c_11_1_0_5_0_2_1j_7_0_g_m_9_6_1_6_1_6_1_6_1_6_1_6_1_6_1_6_","28_0_d1_1_16_4_5_1_4_2d_6_2_1_2h_1_3_5_16_1_2l_h_v_1c_f_e8_533_1s_h3g_1v_19_2_7g_3_f_a_1_k_1a_g_u_2_","1x_1d_8_2_2u_2_29_k_g_1_2_1_3_1_m_t_1f_e_1d_1q_5_3_0_1_1_b_r_a_m_p_s_7_1a_s_0_g_4_1_9_a_4_1_14_n_2_1","_7_k_m_3_0_3_1d_1_0_3_1_2_4_2_0_1_0_o_2_2_a_7_2_c_5_2_5_2_5_9_6_1_6_1_16_1_d_6_36_t_8mb_c_m_4_1c_6is","_a5_2_2x_12_6_c_4_5_0_1_9_1_c_1_4_1_0_1_1_1_1_1_2z_x_a2_i_1r_2_1h_14_b_38_4_1_3q_10_p_6_p_b_2g_3_5_2","_5_2_5_2_2_z_b_1_p_1_i_1_1_1_e_2_d_y_3e_at_s_3_1c_1b_v_d_j_1_7_6_11_a_t_2_z_4_7_1c_4d_i_z_4_z_4_13_8","_1f_c_a_1_e_1_6_1_1_1_a_1_e_1_6_1_1_3_1f_c_8m_9_l_a_7_o_5_1_15_1_8_1x_5_2_0_1_17_1_1_3_0_2_m_a_m_9_u","_1t_i_1_1_a_l_a_p_6_p_12_1j_6_1_1s_0_f_3_1_2_1_s_16_s_3_s_z_7_1_r_r_1h_a_l_a_i_d_h_32_20_1j_1e_d_1e_","d_z_12_r_9_m_6y_15_6_1_g_5_1k_s_a_0_8_l_16_h_1a_k_r_m_c_1g_1l_1_2_0_d_18_w_o_q_z_t_0_2_0_8_y_3_0_c_1","b_e_3_l_0_1_0_z_h_1_o_j_1_1r_6_1_0_1_3_1_e_1_9_7_1a_12_7_2_1_2_l_1_6_1_1_1_4_3_0_i_0_c_4_u_9_1_0_2_0","_1_11_1_0_p_0_1_0_18_1g_i_3_k_2_u_1b_k_1_1_0_54_1a_15_3_10_1b_k_0_1n_16_d_0_1z_q_11_6_55_17_38_1r_v_","7_2_0_2_7_1_1_1_n_f_0_1_0_2m_7_2_12_g_0_1_0_s_0_a_13_7_0_l_0_b_19_j_0_i_20_5j_w_v_8_1_10_h_0_1d_t_34","_6_1_1_1_11_l_0_p_5_1_1_1_v_e_0_n_17_78_i_f_0_1_c_1_x_3g_0_27_pl_6e_5f_218_2o_f_tr_h_5_p_32y_5_g6_5a","1_t_1cy_fs_7_u_h_26_h_t_i_1b_g_3_v_k_5_i_c0_18_5v_1r_w_o_2_o_18_22_5_0_1u_c_1s_1_1_0_e_1_c_5p1_15_v_","2p_36_6pp_3_1_6_1_1_1_82_f_0_t_2_2_0_e_3_8_az_1s4_2y_5_c_3_8_7_9_4me_2c_1_1y_1_1_2_0_2_1_2_3_1_b_1_0","_1_6_1_1s_1_3_2_7_1_6_1_r_1_3_1_4_1_0_3_6_1_9f_2_o_1_o_1_u_1_o_1_u_1_o_1_u_1_o_1_u_1_o_1_7_1f8_u_6_5","_79_1p_42_18_a_6_g_0_8x_t_i_17_dg_r_6c_t_2_0_5r_u_1_2_1_1_1_6_2_4_9_1_68_6_1_3_1_1_1_e_1_5g_1n_1v_7_","0_xg_3_1_q_1_1_1_0_2_0_1_9_1_3_1_0_1_0_6_0_4_0_1_0_1_0_1_2_1_1_1_0_2_0_1_0_1_0_1_0_1_0_1_1_1_0_2_3_1","_6_1_3_1_3_1_0_1_9_1_g_5_2_1_4_1_g_3es_wyn_w_3dp_2_4gd_2_5rk_f_h9_1wi_f1_15u_3t6_5_6jt"].join(""),ye=vt.slice(1).split("_"),Se=[],Be=127;for(let e=0;e<ye.length;e+=2){let n=Be+1+Number.parseInt(ye[e],36),t=n+Number.parseInt(ye[e+1],36);Se.push([n,t]),Be=t}function It(e){if(Number.isNaN(e)||e<128||e>1114111)return!1;let n=0,t=Se.length-1;for(;n<=t;){let r=n+t>>1,l=Se[r];if(e<l[0])t=r-1;else if(e>l[1])n=r+1;else return!0}return!1}var en=new Set([..."\u060B$\u20BC\u17DB\xA5\u20A1\u20B1\xA3\u20AC\xA2\u20B9\uFDFC\u20AA\u20A9\u20AD\u20A8\u20AE\u20A6\u20BD\u20AB\u0E3F\u20A9\u20BA\u20B4","$U","$b","B/.","BZ$","Br","Bs","C$","CHF","Ft","Gs","J$","KM","K\u010D","L","MT","NT$","P","Q","R","R$","RD$","RM","Rp","S","S/.","TT$","Z$","kn","kr","lei","z\u0142","\u0192","\u0414\u0438\u043D.","\u0434\u0435\u043D","\u043B\u0432","\u062F.\u0625","Lek"]),Dt=Object.prototype.hasOwnProperty,Ge=Function.prototype.toString,Rt=Ge.call(Object);var tn=Map.prototype.entries,nn=Set.prototype.values;var Ue,rn=(Ue=Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,"byteLength"))==null?void 0:Ue.get,qe,_n=(qe=Object.getOwnPropertyDescriptor(RegExp.prototype,"flags"))==null?void 0:qe.get,Je,ln=(Je=Object.getOwnPropertyDescriptor(RegExp.prototype,"global"))==null?void 0:Je.get,ze,on=(ze=Object.getOwnPropertyDescriptor(RegExp.prototype,"source"))==null?void 0:ze.get,sn=RegExp.prototype.test;function xt(e){if(e.length===1){let n=e.charCodeAt(0);return n<55296||n>57343?n:-1}if(e.length===2){let n=e.charCodeAt(0),t=e.charCodeAt(1);if(n>=55296&&n<=56319&&t>=56320&&t<=57343)return(n-55296)*1024+t-56320+65536}return-1}function Ke(e){if(!L(e)||e.length===0||e.length>2)return!1;let n=e.charCodeAt(0);return e.length===1&&n<128?n>64&&n<91||n>96&&n<123:It(xt(e))}function H(e){if(!L(e)||!e)return!1;let n=e.charCodeAt(0);return n<128?n===32||n>8&&n<14:!e[0].trim()}function F(e){var r;if(e==null||typeof e!="object")return!1;let n=Object.getPrototypeOf(e);if(n===null||n===Object.prototype)return!0;let t=Object.getOwnPropertyDescriptor(n,"constructor");return!t||!("value"in t)||typeof t.value!="function"?!1:((r=Object.getOwnPropertyDescriptor(t.value,"prototype"))==null?void 0:r.value)===n&&Ge.call(t.value)===Rt}function L(e){return typeof e=="string"}function Ee(e){return Number.isFinite(e)}function K(e){return Number.isSafeInteger(e)&&e>=0}var an=Date.prototype.getTime;function ce(e){return e!=null}function Ye(e,n){return e!=null&&Dt.call(e,n)}function he(e,n=1){let t="\xA0";function r(i){return i.length<2?i:Array.from(i).reverse().join("")}function l(i,s,u){let c=u?"\n":"\r",h=u?"\r":"\n";if(!i)return i;let E=0,A="";for(let p=0,N=i.length;p<N;p++)(i[p]===c||i[p]===h&&i[p-1]!==c)&&E++,"\r\n".includes(i[p])||i[p]===t?i[p]===t?A+=i[p]:i[p]===c?E<=s&&(A+=i[p],i[p+1]===h&&(A+=i[p+1],p++)):i[p]===h&&(i==null?void 0:i[p-1])!==c&&E<=s&&(A+=i[p]):!i[p+1]&&!E&&(A+=" ");return A}if(typeof e=="string"&&e.length){let i=e.trim();if(i.length===e.length)return e;let s=1;typeof n=="number"&&Number.isInteger(n)&&n>=0&&(s=n);let u="",c="";if(!i)u=e;else if(!e[0].trim()){for(let E=0,A=e.length;E<A;E++)if(e[E].trim()){u=e.slice(0,E);break}}let h=e[e.length-1];if(i&&(h.trim()===""||h===t)){for(let E=e.length;E--;)if(e[E].trim()){c=e.slice(E+1);break}}return"".concat(l(u,s,!1)).concat(i).concat(r(l(r(c),s,!0)))}return e}var Qe={strictlyTwoElementsInRangeArrays:!1,progressFn:null};function Nt(e,n){let t,r=0;for(;r<e.length;){let l=r+1;for(;l<e.length&&e[r][0]===e[l][0]&&e[r][1]===e[l][1];)l+=1;if(l-r>1){t||(t=new Map(n.map((u,c)=>[u,c])));let i=t,s=e.slice(r,l).sort((u,c)=>i.get(u)-i.get(c));e.splice(r,s.length,...s)}r=l}return e}function Ce(e,n){var u;if(!Array.isArray(e)||!e.length)return e;let t=n===void 0?!0:F(n);if(n!==void 0&&t&&(n==null?void 0:n.strictlyTwoElementsInRangeArrays)===!0)for(let c=0;c<e.length;c+=1){let h=e[c];if(!Array.isArray(h)||h.length!==2)throw new TypeError("ranges-sort/rSort(): [THROW_ID_01] The first argument should be an array and must consist of arrays which are natural number indexes representing TWO string index ranges. However, range at index ".concat(c," (").concat(g(h,4),") is ").concat(Array.isArray(h)?"an array with ".concat(h.length," elements"):"not an array","!"));if(!Number.isInteger(h[0])||h[0]<0||!Number.isInteger(h[1])||h[1]<0)throw new TypeError("ranges-sort/rSort(): [THROW_ID_02] The first argument should be an array and must consist of arrays which are natural number indexes representing string index ranges. However, range at index ".concat(c," (").concat(g(h,4),") does not consist of only natural numbers!"))}else for(let c=0;c<e.length;c+=1){let h=e[c];if(!Array.isArray(h)||!Number.isInteger(h[0])||h[0]<0||!Number.isInteger(h[1])||h[1]<0)throw new TypeError("ranges-sort/rSort(): [THROW_ID_02] The first argument should be an array and must consist of arrays which are natural number indexes representing string index ranges. However, range at index ".concat(c," (").concat(g(h,4),") does not consist of only natural numbers!"))}if(n!==void 0&&!t)throw new TypeError("ranges-sort/rSort(): [THROW_ID_03] The second argument must be a plain options object; received ".concat(g(n,4)," (type ").concat(typeof n,")!"));let r=Qe.progressFn;if(n!==void 0){let c=n.strictlyTwoElementsInRangeArrays;if(c!==void 0&&typeof c!="boolean")throw new TypeError("ranges-sort/rSort(): [THROW_ID_04] opts.strictlyTwoElementsInRangeArrays must be a boolean; received ".concat(g(c,4)," (type ").concat(typeof c,")!"));if(r=(u=n.progressFn)!=null?u:Qe.progressFn,r!==!1&&r!==null&&typeof r!="function")throw new TypeError("ranges-sort/rSort(): [THROW_ID_05] opts.progressFn must be a function, false, null, or undefined; received ".concat(g(r,4)," (type ").concat(typeof r,")!"))}let l,i;if(r){let c=e.length**2,h=0,E;i=A=>{A!==E&&(E=A,r(A))},l=Array.from(e).sort((A,p)=>(h+=1,i==null||i(Math.min(99,Math.floor(h*100/c))),A[0]===p[0]?A[1]<p[1]?-1:A[1]>p[1]?1:0:A[0]<p[0]?-1:1))}else l=Array.from(e).sort((c,h)=>c[0]===h[0]?c[1]<h[1]?-1:c[1]>h[1]?1:0:c[0]<h[0]?-1:1);let s=l.length>10?Nt(l,e):l;return i==null||i(100),s}var Ae={mergeType:1,progressFn:null,joinRangesThatTouchEdges:!0};function Xe(e,n,t){return n===void 0||e===null?e:n===null?null:e===void 0||t?n:e+n}function kt(e,n){var f,C,m;function t(b){return!!b&&typeof b=="object"&&!Array.isArray(b)}if(!Array.isArray(e)||!e.length)return null;if(n&&!t(n))throw new TypeError("ranges-push/rMerge(): [THROW_ID_07] the second input argument must be a plain object. It was given as:\n".concat(g(n,4)," (type ").concat(typeof n,")"));let r=(f=n==null?void 0:n.progressFn)!=null?f:Ae.progressFn,l=(C=n==null?void 0:n.mergeType)!=null?C:Ae.mergeType,i=(m=n==null?void 0:n.joinRangesThatTouchEdges)!=null?m:Ae.joinRangesThatTouchEdges;if(r&&t(r)&&!Object.keys(r).length)r=null;else if(r&&typeof r!="function")throw new TypeError('ranges-push/rMerge(): [THROW_ID_08] resolvedOpts.progressFn must be a function! It was given of a type: "'.concat(typeof r,'", equal to ').concat(g(r,4)));if(l!==1&&l!==2&&l!=="1"&&l!=="2")throw new TypeError('ranges-push/rMerge(): [THROW_ID_09] resolvedOpts.mergeType was customised to a wrong thing! It was given of a type: "'.concat(typeof l,'", equal to ').concat(g(l,4)));if(typeof i!="boolean")throw new TypeError('ranges-push/rMerge(): [THROW_ID_10] resolvedOpts.joinRangesThatTouchEdges was customised to a wrong thing! It was given of a type: "'.concat(typeof i,'", equal to ').concat(g(i,4)));let s=[];for(let b of e)Array.isArray(b)&&(b[2]!==void 0||b[0]!==b[1])&&s.push([...b]);let u,c,h;r?u=Ce(s,{progressFn:b=>{h=Math.floor(b/5),h!==c&&(c=h,r==null||r(h))}}):u=Ce(s);let E=u.length-1,A=+l==2,p=u.length;for(let b=E;b>=0;b--){let d=u[b];for(r&&b<E&&(h=Math.floor((1-(b+1)/E)*78)+21,h!==c&&h>c&&(c=h,r(h)));p<u.length;){let a=u[p],R=a[0]===d[0];if(!R&&(i?a[0]>d[1]:a[0]>=d[1]))break;let $=a[1]>=d[1];$&&(d[1]=a[1]),a[2]===null?d[2]=null:a[2]!==void 0&&(R||$)&&(d[2]=Xe(d[2],a[2],A&&R)),p+=1}p-=1,u[p]=d}let N=u.length-p;for(let b=0;b<N;b++)u[b]=u[p+b];return u.length=N,u.length?u:null}var ge=Object.freeze({limitToBeAddedWhitespace:!1,limitLinebreaksCount:1,mergeType:1});function Y(e){if(K(e))return e;if(typeof e=="string"&&/^\d+$/.test(e)){let n=Number(e);return K(n)?n:null}return null}function Ze(e){if(!Array.isArray(e))return"a ranges batch must contain only range arrays; received ".concat(g(e,4));if(e.length>3)return"a range must contain at most three values; received ".concat(g(e,4));let[n,t,r]=e;if(n==null&&t==null)return;if(n!=null&&t==null)return"the first index is set (".concat(g(n),") but the second index is not (").concat(g(t),")");if(n==null&&t!=null)return"the second index is set (".concat(g(t),") but the first index is not (").concat(g(n),")");let l=Y(n),i=Y(t);if(l===null)return"the first index must be a natural number, zero, or a digit-only numeric string; received ".concat(g(n,4)," (type ").concat(typeof n,")");if(i===null)return"the second index must be a natural number, zero, or a digit-only numeric string; received ".concat(g(t,4)," (type ").concat(typeof t,")");if(ce(r)&&!L(r)&&!Ee(r))return"the third value must be a string, number, null, or undefined; received ".concat(g(r,4)," (type ").concat(typeof r,")");if(l>i)return"the first index (".concat(l,") must not be greater than the second index (").concat(i,")")}function Vt(e){if(e.length>3)return{error:"expected at most three arguments but received ".concat(e.length),ranges:[]};if(e.length<=1&&Array.isArray(e[0])){let t=e[0];if(!t.length)return{ranges:[]};e=Array.isArray(t[0])?t:[t]}else e=[e];let n=[];for(let t of e){let r=Ze(t);if(r)return{error:r,ranges:[]};let[l,i,s]=t;if(l==null&&i==null)continue;let u=Y(l),c=Y(i);n.push(s!==void 0&&!(L(s)&&!s.length)?[u,c,s]:[u,c])}return{ranges:n}}function Mt(e){return e[2]===void 0&&e[0]===e[1]}function Pt(e){let n=-1;for(let t=0,r=e.length;t<r;t++){let l=e[t];if(Array.isArray(l)){if(l[0]<n)return!1;n=l[0]}}return!0}var et=class{constructor(e){oe(this,"ranges");oe(this,"opts");oe(this,"currentCache",null);if(e!=null&&!F(e))throw new TypeError("ranges-push/Ranges/constructor(): [THROW_ID_01] The options argument must be a plain object. It was given as ".concat(g(e,4)," (type ").concat(typeof e,")."));if(e===void 0){this.opts=ge,this.ranges=[];return}let n=e,t=n.limitToBeAddedWhitespace===void 0?ge.limitToBeAddedWhitespace:n.limitToBeAddedWhitespace,r=n.limitLinebreaksCount===void 0?ge.limitLinebreaksCount:n.limitLinebreaksCount,l=n.mergeType===void 0?ge.mergeType:n.mergeType,i=l==="1"?1:l==="2"?2:l,s;if(typeof t!="boolean"?s="opts.limitToBeAddedWhitespace must be a boolean; received ".concat(g(t,4)," (type ").concat(typeof t,")"):K(r)?i!==1&&i!==2&&(s='opts.mergeType must be 1, 2, "1", or "2"; received '.concat(g(l,4)," (type ").concat(typeof l,")")):s="opts.limitLinebreaksCount must be a natural number or zero; received ".concat(g(r,4)," (type ").concat(typeof r,")"),s)throw new TypeError("ranges-push/Ranges/constructor(): [THROW_ID_02] ".concat(s,"."));let u=Object.freeze({limitToBeAddedWhitespace:t,limitLinebreaksCount:r,mergeType:i});this.opts=u,this.ranges=[]}rangeListsMatch(e,n){if(!Array.isArray(e))return n===null;if(!Array.isArray(n)||e.length!==n[0])return!1;let t=1;for(let r=0,l=e.length;r<l;r++){let i=e[r];if(!Array.isArray(i)){if(n[t++]!==-1||i!==n[t++])return!1;continue}if(i.length!==n[t++])return!1;for(let s=0;s<i.length;s++)if(i[s]!==n[t++])return!1}return t===n.length}snapshotRanges(e){if(!Array.isArray(e))return null;let n=new Array(1+e.length*4);n[0]=e.length;let t=1;for(let r=0,l=e.length;r<l;r++){let i=e[r];if(Array.isArray(i)){n[t++]=i.length;for(let s=0;s<i.length;s++)n[t++]=i[s]}else n[t++]=-1,n[t++]=i}return n.length=t,n}currentStateMatchesSnapshot(){let e=this.currentCache;return e!==null&&this.rangeListsMatch(this.ranges,e.rangesSnapshot)&&this.rangeListsMatch(e.result,e.resultSnapshot)}recordCurrentSnapshot(e){let n=this.snapshotRanges(this.ranges);this.currentCache={rangesSnapshot:n,result:e,resultSnapshot:e===this.ranges?n:this.snapshotRanges(e)}}invalidateCurrentCache(){this.currentCache=null}addValidated(e,n,t){this.invalidateCurrentCache();let r=this.last();if(ce(this.ranges)&&Array.isArray(r)&&e===r[1]){if(r[1]=n,t!==void 0&&!(L(t)&&!t.length)){let i=Xe(r[2],t,this.opts.mergeType===2&&r[0]===e);this.opts.limitToBeAddedWhitespace&&typeof i=="string"&&(i=he(i,this.opts.limitLinebreaksCount)),L(i)&&!i.length||(r[2]=i)}return}this.ranges||(this.ranges=[]);let l=t!==void 0?[e,n,typeof t=="string"&&this.opts.limitToBeAddedWhitespace?he(t,this.opts.limitLinebreaksCount):t]:[e,n];this.ranges.push(l)}add(e,n,t){let r=arguments.length,l;if(r>3)l="expected at most three arguments but received ".concat(r);else if(r===1&&Array.isArray(e)){let i=Array.isArray(e[0])?e:[e];for(let s=0,u=i.length;s<u&&(l=Ze(i[s]),!l);s++);if(!l)for(let s=0,u=i.length;s<u;s++){let[c,h,E]=i[s];c==null&&h==null||this.addValidated(Y(c),Y(h),L(E)&&!E.length?void 0:E)}}else{if(e==null&&n==null)return;if(e!=null&&n==null)l="the first index is set (".concat(g(e),") but the second index is not (").concat(g(n),")");else if(e==null&&n!=null)l="the second index is set (".concat(g(n),") but the first index is not (").concat(g(e),")");else{let i=Y(e),s=Y(n);i===null?l="the first index must be a natural number, zero, or a digit-only numeric string; received ".concat(g(e,4)," (type ").concat(typeof e,")"):s===null?l="the second index must be a natural number, zero, or a digit-only numeric string; received ".concat(g(n,4)," (type ").concat(typeof n,")"):ce(t)&&!L(t)&&!Ee(t)?l="the third value must be a string, number, null, or undefined; received ".concat(g(t,4)," (type ").concat(typeof t,")"):i>s?l="the first index (".concat(i,") must not be greater than the second index (").concat(s,")"):this.addValidated(i,s,L(t)&&!t.length?void 0:t)}}if(l)throw new TypeError("ranges-push/Ranges/add(): [THROW_ID_03] ".concat(l,"."))}push(e,n,t){this.add.apply(this,arguments)}current(){var e,n;if(this.currentStateMatchesSnapshot())return(n=(e=this.currentCache)==null?void 0:e.result)!=null?n:null;if(Array.isArray(this.ranges)&&this.ranges.length){this.ranges=kt(this.ranges,this.opts.mergeType===1?void 0:{mergeType:2});let t=this.ranges;return t&&this.opts.limitToBeAddedWhitespace&&(t=t.map(r=>typeof r[2]=="string"?[r[0],r[1],he(r[2],this.opts.limitLinebreaksCount)]:r)),this.recordCurrentSnapshot(t),t}return this.recordCurrentSnapshot(null),null}firstCovers(e){if(!K(e))throw new TypeError("ranges-push/Ranges/firstCovers(): [THROW_ID_04] the input argument must be a natural number or zero! It was given as ".concat(g(e,4)," (type ").concat(typeof e,")"));if(!Array.isArray(this.ranges)||!this.ranges.length)return!1;let n=Pt(this.ranges)?this.ranges:this.ranges.filter(r=>Array.isArray(r)).slice().sort((r,l)=>r[0]-l[0]||r[1]-l[1]),t=null;for(let r=0,l=n.length;r<l;r++){let i=n[r];if(!(!Array.isArray(i)||Mt(i))){if(t===null){if(i[0]!==0)return!1;t=i[1]}else{if(i[0]>t)break;i[1]>t&&(t=i[1])}if(t>=e)return!0}}return t!==null&&t>=e}wipe(){this.ranges=[],this.invalidateCurrentCache()}replace(e){if(Array.isArray(e)&&e.length)if(Array.isArray(e[0])){let n=Vt([e]);if(n.error)throw new TypeError("ranges-push/Ranges/replace(): [THROW_ID_06] ".concat(n.error,"."));this.ranges=n.ranges,this.invalidateCurrentCache()}else throw new Error("ranges-push/Ranges/replace(): [THROW_ID_05] Single range was given but we expected array of arrays! The first element, ".concat(g(e[0],4)," should be an array."));else this.ranges=[],this.invalidateCurrentCache()}last(){return Array.isArray(this.ranges)&&this.ranges.length?this.ranges[this.ranges.length-1]:null}};function Z(e){return e===32||e>=9&&e<=13||e===160||e===5760||e>=8192&&e<=8202||e===8232||e===8233||e===8239||e===8287||e===12288||e===65279}function tt(e,n){return n==null?0:typeof n!="number"||!Number.isInteger(n)||n<0?null:n>e?e:n}function Wt(e,n){return n===-1?-1:tt(e,n)}function q(e,n=0){if(typeof e!="string"||!e.length)return null;let t=Wt(e.length,n);if(t===null||t+1>=e.length)return null;let r=t+1;if(!Z(e.charCodeAt(r)))return r;if(r+=1,r>=e.length)return null;if(!Z(e.charCodeAt(r)))return r;for(r+=1;r<e.length;r++)if(!Z(e.charCodeAt(r)))return r;return null}function me(e,n=0){if(typeof e!="string"||!e.length)return null;let t=tt(e.length,n);if(t===null||t<1)return null;let r=t-1;if(!Z(e.charCodeAt(r)))return r;if(r-=1,r<0)return null;if(!Z(e.charCodeAt(r)))return r;for(r-=1;r>=0;r--)if(!Z(e.charCodeAt(r)))return r;return null}function nt(e){return typeof e!="string"?e:e.length?[e]:[]}var rt={cb:void 0,i:!1,trimBeforeMatching:!1,trimCharsBeforeMatching:[],maxMismatches:0,firstMustMatch:!1,lastMustMatch:!1,hungry:!1},it=e=>e+1,Ht=e=>e-1;function jt(e,n,t,r,l=()=>!1,i=!1,s=it){if(+n<0&&i&&t==="EOL")return t;if(n>=e.length&&!i)return!1;let u=i?1:t.length,c=0,h=!1,E=!1,A=!1,p=Math.min(r.maxMismatches,e.length+t.length),N=p,f=n,C=!1,m=!1,b=!1;function d(){return c===1&&N<p-1}for(;e[f];){let a=s(f);if(r.trimBeforeMatching&&e[f].trim()===""){if(!e[a]&&i&&t==="EOL")return!0;f=s(f);continue}if(l(e[f])){if(i&&t==="EOL"&&!e[a])return!0;f=s(f);continue}if(i)return!1;let R=a>f?t[t.length-u]:t[u-1];if(!r.i&&e[f]===R||r.i&&R!==void 0&&e[f].toLowerCase()===R.toLowerCase()){if(C||(C=!0),A||(A=!0),u===t.length){if(m=!0,N!==p)return!1}else u===1&&(b=!0);if(u-=1,c++,d())return!1;if(!u)return c!==t.length||N===p||!h?f:!1}else if(!h&&!c&&(h=!0),p&&N&&f){N-=1;for(let $=0;$<=N;$++){let M=a>f?t[t.length-u+1+$]:t[u-2-$],y=e[s(f)];if(M&&(!r.i&&e[f]===M||r.i&&e[f].toLowerCase()===M.toLowerCase())&&(!r.firstMustMatch||u!==t.length)){if(c++,d())return!1;u-=2,C=!0;break}else if(y&&M&&(!r.i&&y===M||r.i&&y.toLowerCase()===M.toLowerCase())&&(!r.firstMustMatch||u!==t.length)){if(!c&&!r.hungry)return!1;u-=1,C=!0;break}else if(M===void 0&&N>=0&&C&&(!r.firstMustMatch||m)&&(!r.lastMustMatch||b))return f}C||(E=f)}else return f===0&&u===1&&p>0&&N>0&&(!r.firstMustMatch||m)&&!r.lastMustMatch&&A?0:!1;if(E!==!1&&E!==f&&(E=!1),u<1)return f;f=s(f)}if(u>0)return i&&t==="EOL"?!0:r&&p>=u&&A?E||0:!1}function Oe(e,n,t,r,l){var f,C,m,b;if(F(l)&&Ye(l,"trimBeforeMatching")&&l&&typeof l.trimBeforeMatching!="boolean")throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_01] opts.trimBeforeMatching should be boolean!").concat(Array.isArray(l.trimBeforeMatching)?" Did you mean to use opts.trimCharsBeforeMatching?":""));let i=U(U({},rt),l);if(i.maxMismatches=(f=l==null?void 0:l.maxMismatches)!=null?f:rt.maxMismatches,Ft(i.maxMismatches,e),typeof i.trimCharsBeforeMatching=="string"&&(i.trimCharsBeforeMatching=nt(i.trimCharsBeforeMatching)),i.trimCharsBeforeMatching=i.trimCharsBeforeMatching.map(d=>L(d)?d:String(d)),!L(n)||!n.length)return!1;if(!Number.isInteger(t)||t<0)throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_02] the second argument should be a natural number. Currently it's of a type: ").concat(typeof t,", equal to:\n").concat(g(t,4)));let s,u;if(L(r))s=[r];else if(Array.isArray(r))s=r;else if(!r)s=r;else if(typeof r=="function")s=[],s.push(r);else throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_03] the third argument, whatToMatch, is neither string nor array of strings! It's ").concat(typeof r,", equal to:\n").concat(g(r,4)));if(Bt(s,e),l&&!F(l))throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_04] the fourth argument, options object, should be a plain object. Currently it's of a type \"").concat(typeof l,'", and equal to:\n').concat(g(l,4)));let c=0,h="";if((C=i==null?void 0:i.trimCharsBeforeMatching)!=null&&C.some((d,a)=>d.length>1?(c=a,h=d,!0):!1))throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_05] the fourth argument, options object contains trimCharsBeforeMatching. It was meant to list the single characters but one of the entries at index ").concat(c," is longer than 1 character, ").concat(h.length," (equals to ").concat(h,"). Please split it into separate characters and put into array as separate elements."));if(t>=n.length)return!1;let E=i.i?i.trimCharsBeforeMatching.map(d=>d.toLowerCase()):i.trimCharsBeforeMatching,A=i.i?d=>E.includes(d.toLowerCase()):d=>E.includes(d);if(!s||!Array.isArray(s)||Array.isArray(s)&&!s.length||Array.isArray(s)&&s.length===1&&L(s[0])&&!s[0].trim()){if(typeof i.cb=="function"){let a,R=t;if((e==="matchLeftIncl"||e==="matchRight")&&(R+=1),e[5]==="L")for(let y=R;y--;){let V=n[y];if((!i.trimBeforeMatching||i.trimBeforeMatching&&(V!=null&&V.trim()))&&(!((m=i.trimCharsBeforeMatching)!=null&&m.length)||V!==void 0&&!A(V))){a=y;break}}else if(e.startsWith("matchRight"))for(let y=R;y<n.length;y++){let V=n[y];if((!i.trimBeforeMatching||i.trimBeforeMatching&&V.trim())&&(!((b=i.trimCharsBeforeMatching)!=null&&b.length)||!A(V))){a=y;break}}if(a===void 0)return!1;let $=n[a],M=e[5]==="L"?n.slice(0,a+1):n.slice(a);return e[5],i.cb($,M,a)}let d="";throw l||(d=" More so, the whole options object, the fourth input argument, is missing!"),new Error("string-match-left-right/".concat(e,'(): [THROW_ID_06] the third argument, "whatToMatch", was given as an empty string. This means, you intend to match purely by a callback. The callback was not set though, the opts key "cb" is not set!').concat(d))}if(!i.cb&&!i.i&&!i.trimBeforeMatching&&!i.trimCharsBeforeMatching.length&&i.maxMismatches===0&&!i.firstMustMatch&&!i.lastMustMatch&&!i.hungry&&s.every(L)){for(let d of s){if(!d.length)continue;let a=t;if(e==="matchRight"?a+=1:e==="matchLeft"?a-=d.length:e==="matchLeftIncl"&&(a-=d.length-1),a>=0&&n.startsWith(d,a))return d}return!1}let p=t;e==="matchRight"?p+=1:e==="matchLeft"&&(p-=1);let N=e[5]==="L"?Ht:it;for(let d=0,a=s.length;d<a;d++){u=typeof s[d]=="function";let R=s[d],$=typeof R=="function"?R():R;if(u&&$!=="EOL")throw new Error("string-match-left-right/".concat(e,'(): [THROW_ID_09] EOL marker functions must return "EOL". The function at index ').concat(d," returned:\n").concat(g($,4)));if(u&&e.endsWith("Incl"))continue;let M,y,V="",D=jt(n,p,$,i,A,u,N);if(D&&u)return!i.cb||i.cb(M,V,y)?$:!1;if(Number.isInteger(D)&&(y=e.startsWith("matchLeft")?D-1:D+1,e[5]==="L"?V=n.slice(0,D):V=n.slice(y)),y<0&&(y=void 0),n[y]&&(M=n[y]),Number.isInteger(D)&&(!i.cb||i.cb(M,V,y)))return $}return!1}function Ft(e,n){if(!Number.isSafeInteger(e)||e<0)throw new Error("string-match-left-right/".concat(n,"(): [THROW_ID_07] opts.maxMismatches must be a non-negative safe integer. Currently it's of a type: ").concat(typeof e,", equal to:\n").concat(g(e,4)))}function Bt(e,n){if(e)for(let t=0;t<e.length;t+=1){let r=e[t];if(typeof r!="string"&&typeof r!="function")throw new Error("string-match-left-right/".concat(n,"(): [THROW_ID_08] matcher alternatives must be strings or EOL marker functions. The value at index ").concat(t," is of a type: ").concat(typeof r,", equal to:\n").concat(g(r,4)))}}function _t(e,n,t,r){return Oe("matchLeft",e,n,t,r)}function lt(e,n,t,r){return Oe("matchRightIncl",e,n,t,r)}function ot(e,n,t,r){return Oe("matchRight",e,n,t,r)}var Ut=["_16_0_7_1_1_0_3_1_1_2_1_m_1_u_1_cp_4_b_e_4_7_0_1_0_3l_4_1_1_2_3_1_0_6_0_1_2_1_0_1_j_1_2a_1_3u_8_4l_1","_11_2_0_6_14_1z_q_4_3_19_16_l_9_4_1_1_2q_1_0_f_1_7_e_2_0_g_0_1_t_t_2g_b_0_e_16_9_1_4_0_5_l_4_0_9_0_3","_0_n_o_7_a_5_n_1_6_g_15_1m_1h_3_0_i_0_7_9_4_9_1_f_4_7_2_1_2_l_1_6_1_0_3_3_3_0_g_0_d_1_1_2_4_b_2_5_2_","0_8_5_4_1_2_l_1_6_1_1_1_1_1_1_v_3_1_0_7_9_2_2_g_8_1_2_1_l_1_6_1_1_1_4_3_0_i_0_f_1_4_9_9_0_b_7_2_1_2_","l_1_6_1_1_1_4_3_0_u_1_1_2_4_9_1_6_b_0_1_5_3_2_1_3_3_1_1_0_1_1_3_1_3_2_3_b_m_0_l_c_i_7_1_2_1_m_1_f_3_","0_q_2_1_1_2_1_4_9_8_6_1_0_4_7_1_2_1_m_1_9_1_4_3_0_u_2_1_1_4_9_1_1_h_8_1_2_1_14_2_0_g_0_5_2_1_9_4_i_1","_5_5_h_3_n_1_8_1_0_2_6_v_9_h_1b_1_1_c_6_9_9_13_1_1_0_1_4_1_n_1_0_1_9_1_1_9_0_2_4_1_0_9_9_2_3_w_0_v_j","_c_7_1_z_r_4_37_16_k_a_6_5_4_3_3_0_3_1_7_2_4_c_c_0_1_9_6_11_1_0_5_0_2_16_1_98_1_3_2_6_1_0_1_3_2_14_1","_3_2_w_1_3_2_6_1_0_1_3_2_e_1_1k_1_3_2_1u_e_j_3_f_g_2d_2_5_3_h7_2_g_1_p_5_22_3_a_7_h_d_i_e_h_e_c_1_2_","f_1f_z_0_4_0_3_9_6_9_m_9_6_2g_7_4_2_x_1_0_5_1x_a_u_13_13_2_4_b_17_4_p_6_a_11_m_9_1g_17_9_6_9_d_0_2l_","1a_h_7_3_9_15_t_d_1j_q_z_s_9_3_1c_2_a_5_16_2_2_15_3_1_5_1_1_3_0_5_5b_1s_7p_2_5_2_11_2_5_2_7_1_0_1_0_","1_0_1_u_2_1g_1_6_1_0_3_2_1_6_3_3_2_5_4_c_5_2_1_6_37_1_2_5_5_a_6_c_2t_0_4_0_2_9_1_0_3_4_6_0_1_0_1_0_1","_3_1_a_2_3_5_4_4_0_1_1l_k6_1n_26_l_hi_t_vg_6c_6_3_3_1_9_0_2_11_1_0_5_0_2_1j_7_0_g_m_9_6_1_6_1_6_1_6_","1_6_1_6_1_6_1_6_28_0_d1_2_p_8_7_4_2_4_4_2d_6_2_1_2h_1_3_5_16_1_2l_3_3_a_v_1c_f_w_9_u_7_1_e_w_9_13_e_","8w_533_1s_h3g_1v_19_2_7g_3_r_k_1a_g_u_2_27_13_8_2_2u_2_29_k_g_1_2_1_3_1_m_d_5_a_1f_e_1d_s_9_o_5_3_0_","1_1_1_11_a_m_p_s_7_1a_s_a_6_4_1_o_1_14_n_2_1_7_4_9_6_m_3_0_3_1d_1_0_3_1_2_4_2_0_1_0_o_2_2_a_7_2_c_5_","2_5_2_5_9_6_1_6_1_16_1_d_6_36_d_9_6_8mb_c_m_4_1c_6is_a5_2_2x_12_6_c_4_5_0_1_9_1_c_1_4_1_0_1_1_1_1_1_","2z_x_a2_i_1r_2_1h_14_b_38_4_1_3q_j_9_7_p_6_p_b_2g_3_5_2_5_2_5_2_2_z_b_1_p_1_i_1_1_1_e_2_d_y_3e_c_18_","c_1k_h_1_6s_s_3_1c_g_q_4_z_9_t_5_11_a_t_2_z_4_7_1_4_16_4d_2_9_6_z_4_z_4_13_8_1f_c_a_1_e_1_6_1_1_1_a_","1_e_1_6_1_1_3_1f_c_8m_9_l_a_7_o_5_1_15_1_8_1x_5_2_0_1_17_1_1_3_0_2_m_2_u_2_11_8_8_1c_i_1_1_5_w_4_p_6","_p_12_1j_4_j_2_1a_f_3_1_2_1_s_a_8_n_u_1_v_w_7_1_r_6_4_g_1h_a_l_2_q_5_p_n_6_28_20_1j_1e_d_1e_7_15_c_9","_6_11_9_m_62_u_1_15_6_1_g_5_1k_13_8_l_b_3_r_h_1a_r_k_m_c_1g_q_t_1_1_2_0_d_18_w_o_7_9_9_z_f_9_4_0_2_0","_8_y_3_0_c_1b_e_3_b_a_1_0_4_j_b_h_1_o_j_1_1r_6_1_0_1_3_1_e_1_9_7_1a_h_9_b_7_2_1_2_l_1_6_1_1_1_4_3_0_","i_0_c_4_u_9_1_0_2_0_1_11_1_0_p_0_1_0_18_1g_i_3_5_9_5_2_u_1b_k_1_1_0_8_9_4m_1a_15_3_10_1b_k_0_b_9_12_","16_d_0_7_9_6_j_s_q_l_b_4_6_55_17_38_2a_c_7_2_0_2_7_1_1_1_n_f_0_1_0_e_9_1y_7_2_12_g_0_1_0_s_0_a_13_7_","0_l_0_b_19_j_0_i_20_5j_w_f_9_6_8_1_10_h_0_f_s_5_t_34_6_1_1_1_11_l_0_9_9_6_5_1_1_1_v_e_0_7_9_6_17_4_9","_6u_i_f_0_1_c_1_x_s_9_2e_0_f_k_17_pl_2u_32_h_5f_218_2o_f_tr_h_5_p_32y_5_g6_5a1_t_i_9_1c6_fs_7_u_1_9_","6_26_1_9_6_t_i_1b_g_3_c_9_1_6_1_k_5_i_c0_18_3_9_5i_2e_9_o_2_o_18_22_5_0_1u_c_1s_1_1_0_e_4_9_5p1_15_v","_2p_36_6pp_3_1_6_1_1_1_82_f_0_t_2_2_0_e_3_8_az_1s4_2y_5_c_3_8_7_9_386_9_152_j_c_j_30_o_3r_2c_1_1y_1_","1_2_0_2_1_2_3_1_b_1_0_1_6_1_1s_1_3_2_7_1_6_1_r_1_3_1_4_1_0_3_6_1_9f_2_o_1_o_1_u_1_o_1_u_1_o_1_u_1_o_","1_u_1_o_1_7_2_1d_1ds_u_6_5_79_1p_42_18_a_6_2_9_4_0_8x_t_i_17_4_9_d2_r_4_9_5y_t_2_a_5h_u_1_2_1_1_1_6_","2_4_9_1_68_6_1_3_1_1_1_e_1_5g_2_8_1c_1v_7_0_4_9_lz_1m_1_2_1_3_24_18_1_e_5e_3_1_q_1_1_1_0_2_0_1_9_1_3","_1_0_1_0_6_0_4_0_1_0_1_0_1_2_1_1_1_0_2_0_1_0_1_0_1_0_1_0_1_1_1_0_2_3_1_6_1_3_1_3_1_0_1_9_1_g_5_2_1_4","_1_g_g4_c_25f_9_sm_wyn_w_3dp_2_4gd_2_5rk_f_h9_1wi_f1_15u_3t6_5_6jt"].join(""),we=Ut.slice(1).split("_"),Le=[],st=127;for(let e=0;e<we.length;e+=2){let n=st+1+Number.parseInt(we[e],36),t=n+Number.parseInt(we[e+1],36);Le.push([n,t]),st=t}function qt(e){if(Number.isNaN(e)||e<128||e>1114111)return!1;let n=0,t=Le.length-1;for(;n<=t;){let r=n+t>>1,l=Le[r];if(e<l[0])t=r-1;else if(e>l[1])n=r+1;else return!0}return!1}function W(e,n,t){let r=n[t];if(!e||!r||!e.includes(r))return!1;let l=r.charCodeAt(0),i=t,s=t+1;if(!(l>=55296&&l<=56319&&n.charCodeAt(s)>=56320&&n.charCodeAt(s)<=57343))if(l>=56320&&l<=57343&&n.charCodeAt(t-1)>=55296&&n.charCodeAt(t-1)<=56319)i=t-1,s=t;else return e.includes(n[t]);let u=n.charCodeAt(i),c=n.charCodeAt(s);for(let h=0;h<e.length-1;h++)if(e.charCodeAt(h)===u&&e.charCodeAt(h+1)===c)return!0;return!1}function at(e,n){let t=e.charCodeAt(n);if(t>=48&&t<=57||t>=65&&t<=90||t>=97&&t<=122)return!0;let r=t;return t>=55296&&t<=56319&&e.charCodeAt(n+1)>=56320&&e.charCodeAt(n+1)<=57343?r=(t-55296)*1024+(e.charCodeAt(n+1)-56320)+65536:t>=56320&&t<=57343&&e.charCodeAt(n-1)>=55296&&e.charCodeAt(n-1)<=56319&&(r=(e.charCodeAt(n-1)-55296)*1024+(t-56320)+65536),qt(r)}var G={str:"",from:0,to:0,ifLeftSideIncludesThisThenCropTightly:"",ifLeftSideIncludesThisCropItToo:"",ifRightSideIncludesThisThenCropTightly:"",ifRightSideIncludesThisCropItToo:"",extendToOneSide:!1,wipeAllWhitespaceOnLeft:!1,wipeAllWhitespaceOnRight:!1,addSingleSpaceToPreventAccidentalConcatenation:!1};function de(e){var s,u,c,h,E,A,p,N,f,C;function n(m){return L(m)&&!m.trim()}if(F(e)){if(!Object.keys(e).length)throw new Error('string-range-expander/expander(): [THROW_ID_02] Input must be a plain object with the required "str", "from", and "to" keys, but it was given without any keys.')}else{let m;throw e===void 0?m="but it is missing completely.":e===null?m="but it was given as null.":m="but it was given as ".concat(typeof e,", equal to:\n").concat(g(e,4),"."),new Error("string-range-expander/expander(): [THROW_ID_01] Input must be a plain object ".concat(m))}if(!L(e.str))throw new Error('string-range-expander/expander(): [THROW_ID_03] The input\'s "str" value must be a string! It was given as '.concat(typeof e.str,", equal to ").concat(g(e.str)));if(!K(e.from)||e.from<0)throw new Error('string-range-expander/expander(): [THROW_ID_04] The input\'s "from" value must be a non-negative integer! It was given as '.concat(typeof e.from,", equal to ").concat(g(e.from)));if(!K(e.to)||e.to<0)throw new Error('string-range-expander/expander(): [THROW_ID_05] The input\'s "to" value must be a non-negative integer! It was given as '.concat(typeof e.to,", equal to ").concat(g(e.to)));if(e.from>e.str.length)throw new Error('string-range-expander/expander(): [THROW_ID_06] The input\'s "from" value ('.concat(e.from,") must not exceed the string length (").concat(e.str.length,")."));if(e.to>e.str.length)throw new Error('string-range-expander/expander(): [THROW_ID_07] The input\'s "to" value ('.concat(e.to,") must not exceed the string length (").concat(e.str.length,")."));if(e.from>e.to)throw new Error('string-range-expander/expander(): [THROW_ID_08] The input\'s "from" value ('.concat(e.from,') must not exceed its "to" value (').concat(e.to,")."));if(e.extendToOneSide!==void 0&&e.extendToOneSide!==!1&&e.extendToOneSide!=="left"&&e.extendToOneSide!=="right")throw new Error('string-range-expander/expander(): [THROW_ID_09] The options value "extendToOneSide" is not recognisable! It\'s set to: '.concat(g(e.extendToOneSide)," (").concat(typeof e.extendToOneSide,'). It has to be either Boolean "false" or one of strings: "left" or "right"'));if(e.ifLeftSideIncludesThisThenCropTightly!==void 0&&!L(e.ifLeftSideIncludesThisThenCropTightly))throw new Error('string-range-expander/expander(): [THROW_ID_10] The option "ifLeftSideIncludesThisThenCropTightly", is not a string! It\'s been given as '.concat(typeof e.ifLeftSideIncludesThisThenCropTightly,", equal to ").concat(g(e.ifLeftSideIncludesThisThenCropTightly)));if(e.ifLeftSideIncludesThisCropItToo!==void 0&&!L(e.ifLeftSideIncludesThisCropItToo))throw new Error('string-range-expander/expander(): [THROW_ID_11] The option "ifLeftSideIncludesThisCropItToo", is not a string! It\'s been given as '.concat(typeof e.ifLeftSideIncludesThisCropItToo,", equal to ").concat(g(e.ifLeftSideIncludesThisCropItToo)));if(e.ifRightSideIncludesThisThenCropTightly!==void 0&&!L(e.ifRightSideIncludesThisThenCropTightly))throw new Error('string-range-expander/expander(): [THROW_ID_12] The option "ifRightSideIncludesThisThenCropTightly", is not a string! It\'s been given as '.concat(typeof e.ifRightSideIncludesThisThenCropTightly,", equal to ").concat(g(e.ifRightSideIncludesThisThenCropTightly)));if(e.ifRightSideIncludesThisCropItToo!==void 0&&!L(e.ifRightSideIncludesThisCropItToo))throw new Error('string-range-expander/expander(): [THROW_ID_13] The option "ifRightSideIncludesThisCropItToo", is not a string! It\'s been given as '.concat(typeof e.ifRightSideIncludesThisCropItToo,", equal to ").concat(g(e.ifRightSideIncludesThisCropItToo)));if(e.wipeAllWhitespaceOnLeft!==void 0&&typeof e.wipeAllWhitespaceOnLeft!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_14] The option "wipeAllWhitespaceOnLeft" must be a Boolean! It was given as '.concat(typeof e.wipeAllWhitespaceOnLeft,", equal to ").concat(g(e.wipeAllWhitespaceOnLeft)));if(e.wipeAllWhitespaceOnRight!==void 0&&typeof e.wipeAllWhitespaceOnRight!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_15] The option "wipeAllWhitespaceOnRight" must be a Boolean! It was given as '.concat(typeof e.wipeAllWhitespaceOnRight,", equal to ").concat(g(e.wipeAllWhitespaceOnRight)));if(e.addSingleSpaceToPreventAccidentalConcatenation!==void 0&&typeof e.addSingleSpaceToPreventAccidentalConcatenation!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_16] The option "addSingleSpaceToPreventAccidentalConcatenation" must be a Boolean! It was given as '.concat(typeof e.addSingleSpaceToPreventAccidentalConcatenation,", equal to ").concat(g(e.addSingleSpaceToPreventAccidentalConcatenation)));let t=le(U(U({},G),e),{ifLeftSideIncludesThisThenCropTightly:(s=e.ifLeftSideIncludesThisThenCropTightly)!=null?s:G.ifLeftSideIncludesThisThenCropTightly,ifLeftSideIncludesThisCropItToo:(u=e.ifLeftSideIncludesThisCropItToo)!=null?u:G.ifLeftSideIncludesThisCropItToo,ifRightSideIncludesThisThenCropTightly:(c=e.ifRightSideIncludesThisThenCropTightly)!=null?c:G.ifRightSideIncludesThisThenCropTightly,ifRightSideIncludesThisCropItToo:(h=e.ifRightSideIncludesThisCropItToo)!=null?h:G.ifRightSideIncludesThisCropItToo,extendToOneSide:(E=e.extendToOneSide)!=null?E:G.extendToOneSide,wipeAllWhitespaceOnLeft:(A=e.wipeAllWhitespaceOnLeft)!=null?A:G.wipeAllWhitespaceOnLeft,wipeAllWhitespaceOnRight:(p=e.wipeAllWhitespaceOnRight)!=null?p:G.wipeAllWhitespaceOnRight,addSingleSpaceToPreventAccidentalConcatenation:(N=e.addSingleSpaceToPreventAccidentalConcatenation)!=null?N:G.addSingleSpaceToPreventAccidentalConcatenation}),r=t.str,l=t.from,i=t.to;if(t.extendToOneSide!=="right"&&(n(r[l-1])&&(n(r[l-2])||W(t.ifLeftSideIncludesThisCropItToo,r,l-2))||r[l-1]&&W(t.ifLeftSideIncludesThisCropItToo,r,l-1)||t.wipeAllWhitespaceOnLeft&&n(r[l-1]))){for(let m=l;m--;)if(W(t.ifLeftSideIncludesThisCropItToo,r,m))m===0&&(l=0);else if(r[m].trim()){t.wipeAllWhitespaceOnLeft||W(t.ifLeftSideIncludesThisCropItToo,r,m+1)?l=m+1:l=m+2;break}else if(m===0){t.wipeAllWhitespaceOnLeft?l=0:l=1;break}}if(t.extendToOneSide!=="left"&&(n(r[i])&&(t.wipeAllWhitespaceOnRight||n(r[i+1])||W(t.ifRightSideIncludesThisCropItToo,r,i+1))||W(t.ifRightSideIncludesThisCropItToo,r,i))){for(let m=i,b=r.length;m<b;m++)if(W(t.ifRightSideIncludesThisCropItToo,r,m))m===b-1&&(i=b);else if(r[m].trim()){t.wipeAllWhitespaceOnRight||W(t.ifRightSideIncludesThisCropItToo,r,m-1)?i=m:i=m-1;break}else if(m===r.length-1){t.wipeAllWhitespaceOnRight?i=r.length:i=r.length-1;break}}return(t.extendToOneSide!=="right"&&L(t.ifLeftSideIncludesThisThenCropTightly)&&t.ifLeftSideIncludesThisThenCropTightly&&(n(r[l-1])&&W(t.ifLeftSideIncludesThisThenCropTightly,r,l-2)||r[l-1]&&W(t.ifLeftSideIncludesThisThenCropTightly,r,l-1))||t.extendToOneSide!=="left"&&L(t.ifRightSideIncludesThisThenCropTightly)&&t.ifRightSideIncludesThisThenCropTightly&&(n(r[i])&&W(t.ifRightSideIncludesThisThenCropTightly,r,i+1)||r[i]&&W(t.ifRightSideIncludesThisThenCropTightly,r,i)))&&(t.extendToOneSide!=="right"&&n(r[l-1])&&!t.wipeAllWhitespaceOnLeft&&(l-=1),t.extendToOneSide!=="left"&&n(r[i])&&!t.wipeAllWhitespaceOnRight&&(i+=1)),t.addSingleSpaceToPreventAccidentalConcatenation&&l<i&&((f=r[l-1])!=null&&f.trim())&&((C=r[i])!=null&&C.trim())&&(!t.ifLeftSideIncludesThisThenCropTightly&&!t.ifRightSideIncludesThisThenCropTightly||!((!t.ifLeftSideIncludesThisThenCropTightly||W(t.ifLeftSideIncludesThisThenCropTightly,r,l-1))&&(!t.ifRightSideIncludesThisThenCropTightly||r[i]&&W(t.ifRightSideIncludesThisThenCropTightly,r,i))))&&(at(r,l-1)||at(r,i))?[l,i," "]:[l,i]}var ut="6.3.2";function ft(e,n){if(n<0||n>=e.length)return;let t=e.charCodeAt(n),r=e.charCodeAt(n+1);if(t>=55296&&t<=56319&&r>=56320&&r<=57343)return e.slice(n,n+2);let l=e.charCodeAt(n-1);return t>=56320&&t<=57343&&l>=55296&&l<=56319?e.slice(n-1,n+1):e[n]}var zt=ut;function Ie(e){return e>96&&e<123||e>64&&e<91||e>47&&e<58||e===95}function se(e){return e!==void 0&&Ie(e.charCodeAt(0))}function ct(e){return e!==void 0&&(Ie(e.charCodeAt(0))||":-.".includes(e))}function ht(e){if(/^[\x00-\x7f]*$/.test(e))return e.length;let n=0;for(let t=0;t<e.length;t++){let r=e.charCodeAt(t);if(r<=127)n+=1;else if(r<=2047)n+=2;else if(r>=55296&&r<=56319&&t+1<e.length){let l=e.charCodeAt(t+1);l>=56320&&l<=57343?(n+=4,t+=1):n+=3}else n+=3}return n}function Gt(e,n,t){var i;let r="",l=0;for(let s=0,u=n.length;s<u;s++){t&&t(s/u*100);let c=n[s];r+="".concat(e.slice(l,c[0])).concat((i=c[2])!=null?i:""),l=c[1]}return t&&t(100),r+e.slice(l)}var ve={lineLengthLimit:500,removeIndentations:!0,removeLineBreaks:!1,removeHTMLComments:!1,removeCSSComments:!0,reportProgressFunc:null,reportProgressFuncFrom:0,reportProgressFuncTo:100,breakToTheLeftOf:["</td","<html","</html","<head","</head","<meta","<link","<table","<script","<\/script","<!DOCTYPE","<style","</style","<title","<body","@media","</body","<!--[if","<!--<![endif","<![endif]"],mindTheInlineTags:["a","abbr","acronym","audio","b","bdi","bdo","big","br","button","canvas","cite","code","data","datalist","del","dfn","em","embed","i","iframe","img","input","ins","kbd","label","map","mark","meter","noscript","object","output","picture","progress","q","ruby","s","samp","script","select","slot","small","span","strong","sub","sup","svg","template","textarea","time","u","tt","var","video","wbr"]};function Kt(e,n){var Ve,Me;let t=Date.now();if(!L(e))throw e===void 0?new Error("html-crush/crush(): [THROW_ID_01] the first input argument is completely missing! It should be given as string."):new Error('html-crush/crush(): [THROW_ID_02] the first input argument must be string! It was given as "'.concat(typeof e,'", equal to:\n').concat(g(e,4)));if(n&&!F(n))throw new Error("html-crush/crush(): [THROW_ID_03] the second input argument, options object, should be a plain object but it was given as type ".concat(typeof n,", equal to ").concat(g(n,4)));let r=n;if(r&&Array.isArray(r.breakToTheLeftOf)&&r.breakToTheLeftOf.length){for(let S=0,_=r.breakToTheLeftOf.length;S<_;S++)if(!L(r.breakToTheLeftOf[S]))throw new TypeError("html-crush/crush(): [THROW_ID_04] the resolvedOpts.breakToTheLeftOf array contains non-string elements! For example, element at index ".concat(S,' is of a type "').concat(typeof r.breakToTheLeftOf[S],'" and is equal to:\n').concat(g(r.breakToTheLeftOf[S],4)))}let l=new et({limitToBeAddedWhitespace:!0}),i=le(U(U({},ve),r),{reportProgressFunc:typeof(r==null?void 0:r.reportProgressFunc)=="function"?r.reportProgressFunc:null,breakToTheLeftOf:(r==null?void 0:r.breakToTheLeftOf)===void 0?ve.breakToTheLeftOf:Array.isArray(r.breakToTheLeftOf)?r.breakToTheLeftOf:[]});typeof i.removeHTMLComments=="boolean"&&(i.removeHTMLComments=i.removeHTMLComments?1:0);let s="";Array.isArray(i.breakToTheLeftOf)&&i.breakToTheLeftOf.length&&(s=[...new Set(i.breakToTheLeftOf.map(S=>S[0]))].join(""));let u={removeHTMLComments:!1,removeCSSComments:!1},c=Array.isArray(i.mindTheInlineTags)?i.mindTheInlineTags:[],h=new Set(c),E=!!c.length&&c.every(S=>L(S)&&!!S.length&&![...S].some(_=>!se(_))),A=new Map,p=Array.isArray(i.breakToTheLeftOf)&&!!i.breakToTheLeftOf.length&&i.breakToTheLeftOf.every(L)&&!(i.breakToTheLeftOf.length===1&&!i.breakToTheLeftOf[0].trim());if(p)for(let S of i.breakToTheLeftOf){if(!S.length)continue;let _=A.get(S[0]);_?_.push(S):A.set(S[0],[S])}function N(S){if(!p)return!!lt(e,S,i.breakToTheLeftOf);let _=A.get(e[S]);if(_===void 0)return!1;for(let v=0,o=_.length;v<o;v++)if(e.startsWith(_[v],S))return!0;return!1}function f(S,_){if(!E)return!!ot(e,S,i.mindTheInlineTags,le(U({},_?{trimCharsBeforeMatching:"/"}:{}),{cb:I=>!I||!se(I)}));let v=S+1;if(_)for(;e[v]==="/";)v++;let o=v;for(;o<k&&Ie(e.charCodeAt(o));)o++;return o>v&&h.has(e.slice(v,o))}function C(S){let _=S-1;for(;_>=0&&H(e[_]);)_--;if(e[_]!=="=")return null;let v=_,o=_-1;for(;o>=0&&H(e[o]);)o--,v--;for(;o>=0&&ct(e[o]);)o--;return o+1<v?e.slice(o+1,v).toLowerCase():null}function m(S,_,v){if(e[S]!=="<")return!1;let o=S+1;if(v){if(e[o]!=="/")return!1;o++}else if(e[o]==="/")return!1;for(let I=0;I<_.length;I++){let J=e.charCodeAt(o+I);if(J>64&&J<91&&(J+=32),J!==_.charCodeAt(I))return!1}return!ct(e[o+_.length])&&!Ke(ft(e,o+_.length))}function b(S,_){let v=e.indexOf("<",S);for(;v!==-1;){if(m(v,_,!0))return v;v=e.indexOf("<",v+1)}return-1}let d=null,a=null,R=!1,$=0,M=0,y=!1,V=!1,D=null,ee=null,te=null,j=null,Q=null,pe=null,O,T=null,w=null,x=null,B=null,z=null,ae=null,ne=">};",re="<",gt="!",mt=">",dt="<",De="{},:;<>~+",$e=De,be=De,X=!0,k=e.length;function Re(S,_=!1){let v=S.length,o=Math.max(k-v,0),I=ht(e),J=_?I:ht(S),Pe=Math.max(I-J,0);return{timeTakenInMilliseconds:Date.now()-t,originalLength:k,cleanedLength:v,bytesSaved:o,percentageReducedOfOriginal:k?Math.round(o*100/k):0,originalLengthInCodeUnits:k,cleanedLengthInCodeUnits:v,codeUnitsSaved:o,percentageReducedOfOriginalInCodeUnits:k?Math.round(o*100/k):0,originalLengthInUtf8Bytes:I,cleanedLengthInUtf8Bytes:J,utf8BytesSaved:Pe,percentageReducedOfOriginalInUtf8Bytes:I?Math.round(Pe*100/I):0}}let ie=0;for(;ie<k&&H(e[ie]);)ie++;let pt=Math.floor(k/2),xe=.01,Ne=1-xe,ke=null;function _e(S){if(!i.reportProgressFunc||k<=1e3)return;let _=Math.max(0,Math.min(S,1)),v=Math.floor(i.reportProgressFuncFrom+(i.reportProgressFuncTo-i.reportProgressFuncFrom)*_);v!==ke&&(ke=v,i.reportProgressFunc(v))}let P="\n";if(e.includes("\r\n")?P="\r\n":e.includes("\r")&&(P="\r"),k){for(let _=0;_<k;_++){if(i.reportProgressFunc&&(k>1e3&&k<2e3?_===pt&&_e(.5):k>=2e3&&_e(_/k*Ne)),M++,!O&&y&&e[_]==="}"&&e[_-1]==="}"&&($+1>=i.lineLengthLimit?(l.push(_,_,P),$=0):(T=_,w=_,x=" ")),O&&typeof O=="number"&&_>=O&&(O=void 0),pe!==null&&m(_,"script",!0)){if((i.removeIndentations||i.removeLineBreaks)&&_>0&&e[~-_]&&H(e[~-_])){for(let o=_;o--;)if(e[o]==="\n"||e[o]==="\r"||!H(e[o])){o+1<_&&l.push(o+1,_);break}}pe=null,O=!1,_+=8;continue}if(!O&&!y&&m(_,"script",!1)){pe=_,O=!0;let o="";(i.removeLineBreaks||i.removeIndentations)&&a!==null&&(a>0&&(o=P),l.push(a,_,o)),a=null,d=null}if(!O&&ee!==null){i.removeLineBreaks&&($="\r\n".includes(e[_])?0:$+1),_>ee&&e[_]===e[ee]&&(ee=null);continue}if(!O&&z!==null&&!D&&"\"'".includes(e[_])){let o=C(_);if(o==="style")D=_;else if(o!==null){ee=_,i.removeLineBreaks&&($+=1);continue}}if(!O&&te!==null){if(i.removeLineBreaks&&($="\r\n".includes(e[_])?0:$+1),_>te&&e[_]===e[te]){let o=0;for(let I=_;I>0&&e[I-1]==="\\";I--)o++;o%2===0&&(te=null)}continue}if(!O&&(y||D)&&(D||z===null)&&"\"'".includes(e[_])&&!(D&&e[_]===e[D])){te=_,i.removeLineBreaks&&($+=1);continue}if(z!==null&&B===null&&!se(e[_])){B=e.slice(z,_);let o=q(e,~-_),I=q(e,_);if(typeof o=="number"&&e[o]===">"&&H(e[_])&&I)l.push(_,I);else if(o&&e[o]==="/"&&e[q(e,o)]===">"){H(e[_])&&I&&l.push(_,I);let J=q(e,o+1);e[o+1]!==">"&&J&&l.push(o+1,J)}}if(!O&&!y&&!D&&e[~-_]==="<"&&z===null)if(se(e[_]))z=_;else{let o=q(e,~-_),I=q(e,o);e[o]==="/"&&se(e[I]||"")&&(z=I)}if(!O&&(y||D)&&j!==null&&e[_]==="*"&&e[_+1]==="/"&&([T,w]=de({str:e,from:j,to:_+2,ifLeftSideIncludesThisThenCropTightly:$e||"",ifRightSideIncludesThisThenCropTightly:be||""}),j=null,T!=null?l.push(T,w):($+=1,_+=1),O=_+2),!O&&(y||D)&&j===null&&e[_]==="/"&&e[_+1]==="*"&&(u.removeCSSComments||(u.removeCSSComments=!0),i.removeCSSComments&&(j=_)),V&&e.startsWith("![endif",_+1)&&(V=!1),!O&&!y&&!D&&Q!==null){let o;e.startsWith("-->",_)?o=3:e[_]===">"&&e[_-1]==="]"&&(o=1),o&&([T,w]=de({str:e,from:Q,to:_+o}),Q=null,T!=null?i.removeLineBreaks&&i.lineLengthLimit&&M-(w-T)>=i.lineLengthLimit?(l.push(T,w,P),M=-o):(l.push(T,w),M-=w-T):($+=o-1,_+=o-1),O=_+o)}if(!O&&!y&&!D&&e[_]==="<"&&(e.startsWith("<!--",_)||e.startsWith("<![endif",_))&&Q===null&&(e.startsWith("<![endif",_)?i.removeHTMLComments===2&&(Q=_):e.startsWith("[if",_+4)?(V||(V=!0),i.removeHTMLComments===2&&(Q=_)):i.removeHTMLComments&&(!V||i.removeHTMLComments===2)&&(Q=_),u.removeHTMLComments||(u.removeHTMLComments=!0)),!O&&y&&j===null&&m(_,"style",!0)?y=!1:!O&&!y&&j===null&&m(_,"style",!1)&&(y=!0,(i.removeLineBreaks||i.removeIndentations)&&i.breakToTheLeftOf.includes("<style")&&e.startsWith(' type="text/css">',_+6)&&e[_+24]&&l.push(_+23,_+23,P)),!O&&!D&&"\"'".includes(e[_])&&e.endsWith("style=",_)&&(D=_),!O&&H(e[_]))a===null&&(a=_);else if(!O&&!((y||D)&&j!==null)){if(a!==null){if(i.removeLineBreaks&&($+=1),X)X=!1,(i.removeIndentations||i.removeLineBreaks)&&l.push(0,_);else if(i.removeIndentations&&!i.removeLineBreaks&&(!R&&d!==null&&_>d?l.push(d+1,_):a+1<_&&(e.endsWith("]>",a)||e.endsWith("-->",a)||e.startsWith("<![",_)||e.startsWith("<!--<![",_)?l.push(a,_):e[a]===" "?l.push(a+1,_):e[~-_]===" "?l.push(a,~-_):l.push(a,_," "))),i.removeLineBreaks||D){if(s.includes(e[_])&&N(_)){!("\r\n".includes(e[~-_])&&a===~-_)&&!(e[~-_]==="\n"&&e[_-2]==="\r"&&a===_-2)&&l.push(a,_,P),T=null,w=null,x=null,a=null,$=1;continue}let o=" ";if(!(e[_]==="<"&&f(_,!1))){if(e[~-a]&&mt.includes(e[~-a])&&dt.includes(e[_])||(y||D)&&j===null&&($e.includes(e[~-a])||be.includes(e[_]))||e[_]==="!"&&e.startsWith("!important",_)&&!V||D&&(e[~-a]==="'"||e[~-a]==='"')||e[~-a]==="}"&&e.startsWith("</style",_)||e[_]===">"&&("'\"".includes(e[me(e,_)])||e[q(e,_)]==="<")||e[_]==="/"&&e[q(e,_)]===">"){o="";let I=e[_]==="/"&&e[_+1]===">"?q(e,_):null;I&&I>_+1&&(l.push(_+1,I),$-=I-_+1)}}y&&e[_]==="}"&&a&&e[a-1]==="}"&&(o=" "),o!=null&&o.length&&($+=1),i.lineLengthLimit?$>=i.lineLengthLimit||!e[_+1]||e[_]===">"||e[_]==="/"&&e[_+1]===">"?(($>i.lineLengthLimit||$===i.lineLengthLimit&&((Ve=e[_+1])!=null&&Ve.trim())&&!ne.includes(e[_])&&!re.includes(e[_+1]))&&(o=P,$=1),($>i.lineLengthLimit||!(o===" "&&_===a+1))&&(l.push(a,_,o),d=null),T=null,w=null,x=null):(T===null||a<T)&&(T=a,w=_,x=o):_===a+1&&o===" "||l.push(a,_,o)}a=null,R||(R=!0)}else X&&(X=!1),i.removeLineBreaks&&($+=1);R||(R=!0)}if(!O&&!X&&_!==0&&i.removeLineBreaks&&(i.lineLengthLimit||s)&&!(e[_]==="<"&&e.startsWith("</a",_))){if(s&&N(_)&&ie<_&&(e[_]!=="<"||!e.startsWith("<![endif]",_)||!_t(e,_,"<!--"))){l.push(_,_,P),T=null,w=null,x=null,$=1;continue}else if(i.lineLengthLimit&&$<=i.lineLengthLimit){if(!e[_+1]||re.includes(e[_])&&!gt.includes(e[_])||ne.includes(e[_])||H(e[_])){if(T!==null&&w!==null&&(T!==w||x!=null&&x.length)){let o=x;!H(e[_])&&((Me=e[_+1])!=null&&Me.trim())&&$+(x?x.length:0)>i.lineLengthLimit&&(o=P),($+(o?o.length:0)>i.lineLengthLimit||!(o===" "&&w===T+1&&e[T]===" "))&&(e[~-T]==="}"&&e[w]==="{"||(l.push(T,w,o),d=null))}!H(e[_])&&(re.includes(e[_])||e[~-_]&&ne.includes(e[~-_]))&&L(ae)&&(!B||!h.has(B))&&!(e[_]==="<"&&f(_,!1))&&!(e[_]==="<"&&f(_,!0))?(T=_,w=_,x=null):j===null&&T!==null&&(D||!i.mindTheInlineTags||!Array.isArray(i.mindTheInlineTags)||Array.isArray(i.mindTheInlineTags.length)&&!i.mindTheInlineTags.length||!L(B)||Array.isArray(i.mindTheInlineTags)&&i.mindTheInlineTags.length&&L(B)&&!h.has(B))&&!(e[_]==="<"&&f(_,!0))&&(T=null,w=null,x=null)}}else if(i.lineLengthLimit)if(re.includes(e[_])&&!(e[_]==="<"&&f(_,!0)))if(T!==null&&w!==null&&(T!==w||x!=null&&x.length)){let o=x!=null&&x.length?x.length:0;$-(w-T-o)-1>i.lineLengthLimit||(l.push(T,w,x),$-(w-T-o)-1===i.lineLengthLimit&&(l.push(_,_,P),$=0),T=null,w=null,x=null)}else l.push(_,_,P),$=0;else e[_+1]&&ne.includes(e[_])&&L(B)&&Array.isArray(i.mindTheInlineTags)&&i.mindTheInlineTags.length&&!h.has(B)?T!==null&&w!==null&&(T!==w||x!=null&&x.length)||(l.push(_+1,_+1,P),$=0):H(e[_])||e[_+1]||T!==null&&w!==null&&(T!==w||x!=null&&x.length)&&l.push(T,w,P)}if(!O&&!X&&i.removeLineBreaks&&i.lineLengthLimit&&$>=i.lineLengthLimit&&T!==null&&w!==null&&!ne.includes(e[_])&&!re.includes(e[_])&&!"/".includes(e[_])&&!($===i.lineLengthLimit&&e[_+1]&&!e[_+1].trim())){let o=P;e[_+1]&&!e[_+1].trim()&&$===i.lineLengthLimit&&(o=x),o===P&&!e[~-T].trim()&&me(e,T)&&(T=me(e,T)+1),l.push(T,w,o),$=_-w,e[_].length&&($+=1),T=null,w=null,x=null}if((!O&&e[_]==="\n"||e[_]==="\r"&&(!e[_+1]||e[_+1]&&e[_+1]!=="\n"))&&(d=_,R&&(R=!1),!i.removeLineBreaks&&a!==null&&a<_&&e[_+1]&&e[_+1]!=="\r"&&e[_+1]!=="\n"&&l.push(a,_)),!e[_+1]){if((y||D)&&j!==null)l.push([...de({str:e,from:j,to:_+1,ifLeftSideIncludesThisThenCropTightly:$e||"",ifRightSideIncludesThisThenCropTightly:be||""})]);else if(a!==null&&(ie<k||i.removeIndentations||i.removeLineBreaks)){let o=e.endsWith("\r\n")?k-2:e.endsWith("\n")||e.endsWith("\r")?k-1:k;a<o&&l.push(a,o)}}if(!O&&D&&D<_&&e[D]===e[_]&&(D=null),!O&&!y&&e[_]==="<"){let o=null;if(m(_,"pre",!1)?o="pre":m(_,"code",!1)?o="code":m(_,"textarea",!1)&&(o="textarea"),o!==null){let I=b(_+2,o);O=I===-1?k:I}}if(!O&&e[_]==="<"&&e.startsWith("<![CDATA[",_)){let o=e.indexOf("]]>",_+9);o>0&&(O=o)}if(!O&&!y&&!D&&z!==null&&e[_]===">"&&(e[q(e,_)]==="<"&&(ae=B),z=null,B=null),e[_]==="<"&&ae!==null&&(ae=null),!O&&y&&e[_]==="{"&&e[_+1]==="{"){let o=e.indexOf("}}",_+2);o!==-1&&(O=o+2)}let v=!0}let S=l.current();if(S){let _=i.reportProgressFunc&&k>=2e3?o=>{_e(Ne+xe*(o/100))}:void 0,v=Gt(e,S,_);return _e(1),{log:Re(v),ranges:S,applicableOpts:u,result:v}}}return _e(1),{log:Re(e,!0),applicableOpts:u,ranges:null,result:e}}return At(Yt);})();
10
+ "use strict";var htmlCrush=(()=>{var we=Object.defineProperty,Yt=Object.defineProperties,Kt=Object.getOwnPropertyDescriptor,Zt=Object.getOwnPropertyDescriptors,Qt=Object.getOwnPropertyNames,ct=Object.getOwnPropertySymbols;var ft=Object.prototype.hasOwnProperty,Xt=Object.prototype.propertyIsEnumerable;var qe=(e,n,r)=>n in e?we(e,n,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[n]=r,Q=(e,n)=>{for(var r in n||(n={}))ft.call(n,r)&&qe(e,r,n[r]);if(ct)for(var r of ct(n))Xt.call(n,r)&&qe(e,r,n[r]);return e},De=(e,n)=>Yt(e,Zt(n));var er=(e,n)=>{for(var r in n)we(e,r,{get:n[r],enumerable:!0})},tr=(e,n,r,t)=>{if(n&&typeof n=="object"||typeof n=="function")for(let o of Qt(n))!ft.call(e,o)&&o!==r&&we(e,o,{get:()=>n[o],enumerable:!(t=Kt(n,o))||t.enumerable});return e};var rr=e=>tr(we({},"__esModule",{value:!0}),e);var Ce=(e,n,r)=>qe(e,typeof n!="symbol"?n+"":n,r);var Ur={};er(Ur,{crush:()=>Wr,defaults:()=>Xe,version:()=>Hr});function nr(){let e=[],n=0,r=!1;return{append(t){return r?!1:n+t.length>1999?(e.push("\u2026"),n+=1,r=!0,!1):(e.push(t),n+=t.length,!0)},result(){return e.join("")},stopped(){return r}}}function ur(e){return"\\u".concat(e.toString(16).padStart(4,"0"))}function ve(e,n){if(e.append('"')){for(let r=0;r<n.length&&!e.stopped();r+=1){let t=n.charCodeAt(r);t===34?e.append('\\"'):t===92?e.append("\\\\"):t===8?e.append("\\b"):t===9?e.append("\\t"):t===10?e.append("\\n"):t===12?e.append("\\f"):t===13?e.append("\\r"):t<32||t===8232||t===8233||t>=55296&&t<=57343?e.append(ur(t)):e.append(n[r])}e.append('"')}}function ir(e){return e.get&&e.set?"[Getter/Setter]":e.get?"[Getter]":e.set?"[Setter]":"[Accessor]"}function ht(e,n){e.append("Symbol(");let r=String(n);r.length>8&&ve(e,r.slice(7,-1)),e.append(")")}function gt(e,n){typeof n=="symbol"?ht(e,n):ve(e,String(n))}function m(e,n=0){let r=nr(),t=n===4?4:0,o=new WeakSet,i=0;function l(h){t&&r.append(" ".repeat(h*t))}function c(h,y){h&&r.append(","),t&&(r.append("\n"),l(y+1))}function s(h,y,A){t&&y&&(r.append("\n"),l(A)),r.append(h)}function f(h,y){Object.prototype.hasOwnProperty.call(h,"value")?_(h.value,y):r.append(ir(h))}function g(h,y){let A;try{A=Reflect.getOwnPropertyDescriptor(h,"length")}catch(C){r.append("[Uninspectable]");return}let D=A==null?void 0:A.value;if(!Number.isSafeInteger(D)||D<0){r.append("[Uninspectable]");return}r.append("[");let p=!1;for(let C=0;C<D&&!r.stopped();C+=1){if(c(p,y),p=!0,i>=50){r.append("[MaxEntries]");break}i+=1;let R;try{R=Reflect.getOwnPropertyDescriptor(h,String(C))}catch(N){r.append("[Uninspectable]");continue}R!=null&&R.enumerable?f(R,y+1):r.append("[Empty]")}s("]",p,y)}function $(h,y){let A;try{A=Reflect.ownKeys(h)}catch(p){r.append("[Uninspectable]");return}r.append("{");let D=!1;for(let p of A){if(r.stopped())break;if(i>=50){c(D,y),D=!0,ve(r,"\u2026"),r.append(t?": ":":"),r.append("[MaxEntries]");break}i+=1;let C;try{C=Reflect.getOwnPropertyDescriptor(h,p)}catch(R){c(D,y),D=!0,gt(r,p),r.append(t?": ":":"),r.append("[Uninspectable]");continue}C!=null&&C.enumerable&&(c(D,y),D=!0,gt(r,p),r.append(t?": ":":"),f(C,y+1))}s("}",D,y)}function a(h,y){if(o.has(h)){r.append("[Circular]");return}if(y>=5){r.append("[MaxDepth]");return}let A;try{A=Array.isArray(h)}catch(D){r.append("[Uninspectable]");return}o.add(h);try{A?g(h,y):$(h,y)}finally{o.delete(h)}}function _(h,y){h===null?r.append("null"):typeof h=="string"?ve(r,h):typeof h=="number"?r.append(Object.is(h,-0)?"-0":String(h)):typeof h=="boolean"?r.append(h?"true":"false"):typeof h>"u"?r.append("undefined"):typeof h=="bigint"?r.append("".concat(h,"n")):typeof h=="symbol"?ht(r,h):typeof h=="function"?r.append("[Function]"):a(h,y)}try{return _(e,0),r.result()}catch(h){return"[Uninspectable]"}}var or=["_16_0_a_0_4_0_5_m_1_u_1_cp_4_b_e_4_7_0_1_0_3l_4_1_1_2_3_1_0_6_0_1_2_1_0_1_j_1_2a_1_3u_8_4l_1_11_2_0_","6_14_1z_q_4_3_19_16_z_1_1_2q_1_0_f_1_7_1_a_2_2_0_g_0_1_t_t_2g_b_0_o_w_9_1_4_0_5_l_4_0_9_0_3_0_n_o_7_","a_5_n_1_6_g_15_1m_1h_3_0_i_0_7_9_f_f_4_7_2_1_2_l_1_6_1_0_3_3_3_0_g_0_d_1_1_2_e_1_a_0_8_5_4_1_2_l_1_6","_1_1_1_1_1_1_v_3_1_0_j_2_g_8_1_2_1_l_1_6_1_1_1_4_3_0_i_0_f_1_n_0_b_7_2_1_2_l_1_6_1_1_1_4_3_0_u_1_1_2","_f_0_h_0_1_5_3_2_1_3_3_1_1_0_1_1_3_1_3_2_3_b_m_0_1g_7_1_2_1_m_1_f_3_0_q_2_1_1_2_1_u_0_4_7_1_2_1_m_1_","9_1_4_3_0_u_2_1_1_f_1_h_8_1_2_1_14_2_0_g_0_5_2_8_2_o_5_5_h_3_n_1_8_1_0_2_6_1m_1b_1_1_c_6_1m_1_1_0_1_","4_1_n_1_0_1_9_1_1_9_0_2_4_1_0_l_3_w_0_1r_7_1_z_r_4_37_16_k_0_g_5_4_3_3_0_3_1_7_2_4_c_c_0_h_11_1_0_5_","0_2_16_1_98_1_3_2_6_1_0_1_3_2_14_1_3_2_w_1_3_2_6_1_0_1_3_2_e_1_1k_1_3_2_1u_11_f_g_2d_2_5_3_h7_2_g_1_","p_5_22_6_7_7_h_d_i_e_h_e_c_1_2_f_1f_z_0_4_0_1v_2g_7_4_2_x_1_0_5_1x_a_u_1d_t_2_4_b_17_4_p_1i_m_9_1g_2","a_0_2l_1a_h_7_1i_t_d_1_a_17_q_z_15_2_a_z_2_a_5_16_2_2_15_3_1_5_1_1_3_0_5_5b_1s_7p_2_5_2_11_2_5_2_7_1","_0_1_0_1_0_1_u_2_1g_1_6_1_0_3_2_1_6_3_3_2_5_4_c_5_2_1_6_38_0_d_0_g_c_2t_0_4_0_2_9_1_0_3_4_6_0_1_0_1_","0_1_3_1_a_2_3_5_4_4_0_1g_1_22j_6c_6_3_3_1_c_11_1_0_5_0_2_1j_7_0_g_m_9_6_1_6_1_6_1_6_1_6_1_6_1_6_1_6_","28_0_d1_1_16_4_5_1_4_2d_6_2_1_2h_1_3_5_16_1_2l_h_v_1c_f_e8_533_1s_h3g_1v_19_2_7g_3_f_a_1_k_1a_g_u_2_","1x_1d_8_2_2u_2_29_k_g_1_2_1_3_1_m_t_1f_e_1d_1q_5_3_0_1_1_b_r_a_m_p_s_7_1a_s_0_g_4_1_9_a_4_1_14_n_2_1","_7_k_m_3_0_3_1d_1_0_3_1_2_4_2_0_1_0_o_2_2_a_7_2_c_5_2_5_2_5_9_6_1_6_1_16_1_d_6_36_t_8mb_c_m_4_1c_6is","_a5_2_2x_12_6_c_4_5_0_1_9_1_c_1_4_1_0_1_1_1_1_1_2z_x_a2_i_1r_2_1h_14_b_38_4_1_3q_10_p_6_p_b_2g_3_5_2","_5_2_5_2_2_z_b_1_p_1_i_1_1_1_e_2_d_y_3e_at_s_3_1c_1b_v_d_j_1_7_6_11_a_t_2_z_4_7_1c_4d_i_z_4_z_4_13_8","_1f_c_a_1_e_1_6_1_1_1_a_1_e_1_6_1_1_3_1f_c_8m_9_l_a_7_o_5_1_15_1_8_1x_5_2_0_1_17_1_1_3_0_2_m_a_m_9_u","_1t_i_1_1_a_l_a_p_6_p_12_1j_6_1_1s_0_f_3_1_2_1_s_16_s_3_s_z_7_1_r_r_1h_a_l_a_i_d_h_32_20_1j_1e_d_1e_","d_z_12_r_9_m_6y_15_6_1_g_5_1k_s_a_0_8_l_16_h_1a_k_r_m_c_1g_1l_1_2_0_d_18_w_o_q_z_t_0_2_0_8_y_3_0_c_1","b_e_3_l_0_1_0_z_h_1_o_j_1_1r_6_1_0_1_3_1_e_1_9_7_1a_12_7_2_1_2_l_1_6_1_1_1_4_3_0_i_0_c_4_u_9_1_0_2_0","_1_11_1_0_p_0_1_0_18_1g_i_3_k_2_u_1b_k_1_1_0_54_1a_15_3_10_1b_k_0_1n_16_d_0_1z_q_11_6_55_17_38_1r_v_","7_2_0_2_7_1_1_1_n_f_0_1_0_2m_7_2_12_g_0_1_0_s_0_a_13_7_0_l_0_b_19_j_0_i_20_5j_w_v_8_1_10_h_0_1d_t_34","_6_1_1_1_11_l_0_p_5_1_1_1_v_e_0_n_17_78_i_f_0_1_c_1_x_3g_0_27_pl_6e_5f_218_2o_f_tr_h_5_p_32y_5_g6_5a","1_t_1cy_fs_7_u_h_26_h_t_i_1b_g_3_v_k_5_i_c0_18_5v_1r_w_o_2_o_18_22_5_0_1u_c_1s_1_1_0_e_1_c_5p1_15_v_","2p_36_6pp_3_1_6_1_1_1_82_f_0_t_2_2_0_e_3_8_az_1s4_2y_5_c_3_8_7_9_4me_2c_1_1y_1_1_2_0_2_1_2_3_1_b_1_0","_1_6_1_1s_1_3_2_7_1_6_1_r_1_3_1_4_1_0_3_6_1_9f_2_o_1_o_1_u_1_o_1_u_1_o_1_u_1_o_1_u_1_o_1_7_1f8_u_6_5","_79_1p_42_18_a_6_g_0_8x_t_i_17_dg_r_6c_t_2_0_5r_u_1_2_1_1_1_6_2_4_9_1_68_6_1_3_1_1_1_e_1_5g_1n_1v_7_","0_xg_3_1_q_1_1_1_0_2_0_1_9_1_3_1_0_1_0_6_0_4_0_1_0_1_0_1_2_1_1_1_0_2_0_1_0_1_0_1_0_1_0_1_1_1_0_2_3_1","_6_1_3_1_3_1_0_1_9_1_g_5_2_1_4_1_g_3es_wyn_w_3dp_2_4gd_2_5rk_f_h9_1wi_f1_15u_3t6_5_6jt"].join(""),Ne=or.slice(1).split("_"),Ve=[],dt=127;for(let e=0;e<Ne.length;e+=2){let n=dt+1+Number.parseInt(Ne[e],36),r=n+Number.parseInt(Ne[e+1],36);Ve.push([n,r]),dt=r}function lr(e){if(Number.isNaN(e)||e<128||e>1114111)return!1;let n=0,r=Ve.length-1;for(;n<=r;){let t=n+r>>1,o=Ve[t];if(e<o[0])r=t-1;else if(e>o[1])n=t+1;else return!0}return!1}var Yr=new Set([..."\u060B$\u20BC\u17DB\xA5\u20A1\u20B1\xA3\u20AC\xA2\u20B9\uFDFC\u20AA\u20A9\u20AD\u20A8\u20AE\u20A6\u20BD\u20AB\u0E3F\u20A9\u20BA\u20B4","$U","$b","B/.","BZ$","Br","Bs","C$","CHF","Ft","Gs","J$","KM","K\u010D","L","MT","NT$","P","Q","R","R$","RD$","RM","Rp","S","S/.","TT$","Z$","kn","kr","lei","z\u0142","\u0192","\u0414\u0438\u043D.","\u0434\u0435\u043D","\u043B\u0432","\u062F.\u0625","Lek"]),sr=Object.prototype.hasOwnProperty,$t=Function.prototype.toString,ar=$t.call(Object);var Kr=Map.prototype.entries,Zr=Set.prototype.values;var mt,Qr=(mt=Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,"byteLength"))==null?void 0:mt.get,pt,Xr=(pt=Object.getOwnPropertyDescriptor(RegExp.prototype,"flags"))==null?void 0:pt.get,bt,en=(bt=Object.getOwnPropertyDescriptor(RegExp.prototype,"global"))==null?void 0:bt.get,At,tn=(At=Object.getOwnPropertyDescriptor(RegExp.prototype,"source"))==null?void 0:At.get,rn=RegExp.prototype.test;function _r(e){if(e.length===1){let n=e.charCodeAt(0);return n<55296||n>57343?n:-1}if(e.length===2){let n=e.charCodeAt(0),r=e.charCodeAt(1);if(n>=55296&&n<=56319&&r>=56320&&r<=57343)return(n-55296)*1024+r-56320+65536}return-1}function Dt(e){if(!B(e)||e.length===0||e.length>2)return!1;let n=e.charCodeAt(0);return e.length===1&&n<128?n>64&&n<91||n>96&&n<123:lr(_r(e))}function G(e){if(!B(e)||!e)return!1;let n=e.charCodeAt(0);return n<128?n===32||n>8&&n<14:!e[0].trim()}function J(e){var t;if(e==null||typeof e!="object")return!1;let n=Object.getPrototypeOf(e);if(n===null||n===Object.prototype)return!0;let r=Object.getOwnPropertyDescriptor(n,"constructor");return!r||!("value"in r)||typeof r.value!="function"?!1:((t=Object.getOwnPropertyDescriptor(r.value,"prototype"))==null?void 0:t.value)===n&&$t.call(r.value)===ar}function B(e){return typeof e=="string"}function Pe(e){return Number.isFinite(e)}function oe(e){return Number.isSafeInteger(e)&&e>=0}var nn=Date.prototype.getTime;function xe(e){return e!=null}function Ct(e,n){return e!=null&&sr.call(e,n)}function Se(e,n=1){let r="\xA0";function t(i){return i.length<2?i:Array.from(i).reverse().join("")}function o(i,l,c){let s=c?"\n":"\r",f=c?"\r":"\n";if(!i)return i;let g=0,$="";for(let a=0,_=i.length;a<_;a++)(i[a]===s||i[a]===f&&i[a-1]!==s)&&g++,"\r\n".includes(i[a])||i[a]===r?i[a]===r?$+=i[a]:i[a]===s?g<=l&&($+=i[a],i[a+1]===f&&($+=i[a+1],a++)):i[a]===f&&(i==null?void 0:i[a-1])!==s&&g<=l&&($+=i[a]):!i[a+1]&&!g&&($+=" ");return $}if(typeof e=="string"&&e.length){let i=e.trim();if(i.length===e.length)return e;let l=1;typeof n=="number"&&Number.isInteger(n)&&n>=0&&(l=n);let c="",s="";if(!i)c=e;else if(!e[0].trim()){for(let g=0,$=e.length;g<$;g++)if(e[g].trim()){c=e.slice(0,g);break}}let f=e[e.length-1];if(i&&(f.trim()===""||f===r)){for(let g=e.length;g--;)if(e[g].trim()){s=e.slice(g+1);break}}return"".concat(o(c,l,!1)).concat(i).concat(t(o(t(s),l,!0)))}return e}var yt={strictlyTwoElementsInRangeArrays:!1,progressFn:null};function cr(e,n){let r,t=0;for(;t<e.length;){let o=t+1;for(;o<e.length&&e[t][0]===e[o][0]&&e[t][1]===e[o][1];)o+=1;if(o-t>1){r||(r=new Map(n.map((c,s)=>[c,s])));let i=r,l=e.slice(t,o).sort((c,s)=>i.get(c)-i.get(s));e.splice(t,l.length,...l)}t=o}return e}function He(e,n){var c;if(!Array.isArray(e)||!e.length)return e;let r=n===void 0?!0:J(n);if(n!==void 0&&r&&(n==null?void 0:n.strictlyTwoElementsInRangeArrays)===!0)for(let s=0;s<e.length;s+=1){let f=e[s];if(!Array.isArray(f)||f.length!==2)throw new TypeError("ranges-sort/rSort(): [THROW_ID_01] The first argument should be an array and must consist of arrays which are natural number indexes representing TWO string index ranges. However, range at index ".concat(s," (").concat(m(f,4),") is ").concat(Array.isArray(f)?"an array with ".concat(f.length," elements"):"not an array","!"));if(!Number.isInteger(f[0])||f[0]<0||!Number.isInteger(f[1])||f[1]<0)throw new TypeError("ranges-sort/rSort(): [THROW_ID_02] The first argument should be an array and must consist of arrays which are natural number indexes representing string index ranges. However, range at index ".concat(s," (").concat(m(f,4),") does not consist of only natural numbers!"))}else for(let s=0;s<e.length;s+=1){let f=e[s];if(!Array.isArray(f)||!Number.isInteger(f[0])||f[0]<0||!Number.isInteger(f[1])||f[1]<0)throw new TypeError("ranges-sort/rSort(): [THROW_ID_02] The first argument should be an array and must consist of arrays which are natural number indexes representing string index ranges. However, range at index ".concat(s," (").concat(m(f,4),") does not consist of only natural numbers!"))}if(n!==void 0&&!r)throw new TypeError("ranges-sort/rSort(): [THROW_ID_03] The second argument must be a plain options object; received ".concat(m(n,4)," (type ").concat(typeof n,")!"));let t=yt.progressFn;if(n!==void 0){let s=n.strictlyTwoElementsInRangeArrays;if(s!==void 0&&typeof s!="boolean")throw new TypeError("ranges-sort/rSort(): [THROW_ID_04] opts.strictlyTwoElementsInRangeArrays must be a boolean; received ".concat(m(s,4)," (type ").concat(typeof s,")!"));if(t=(c=n.progressFn)!=null?c:yt.progressFn,t!==!1&&t!==null&&typeof t!="function")throw new TypeError("ranges-sort/rSort(): [THROW_ID_05] opts.progressFn must be a function, false, null, or undefined; received ".concat(m(t,4)," (type ").concat(typeof t,")!"))}let o,i;if(t){let s=e.length**2,f=0,g;i=$=>{$!==g&&(g=$,t($))},o=Array.from(e).sort(($,a)=>(f+=1,i==null||i(Math.min(99,Math.floor(f*100/s))),$[0]===a[0]?$[1]<a[1]?-1:$[1]>a[1]?1:0:$[0]<a[0]?-1:1))}else o=Array.from(e).sort((s,f)=>s[0]===f[0]?s[1]<f[1]?-1:s[1]>f[1]?1:0:s[0]<f[0]?-1:1);let l=o.length>10?cr(o,e):o;return i==null||i(100),l}var Me={mergeType:1,progressFn:null,joinRangesThatTouchEdges:!0};function Et(e,n,r){return n===void 0||e===null?e:n===null?null:e===void 0||r?n:e+n}function fr(e,n){var h,y,A;function r(D){return!!D&&typeof D=="object"&&!Array.isArray(D)}if(!Array.isArray(e)||!e.length)return null;if(n&&!r(n))throw new TypeError("ranges-push/rMerge(): [THROW_ID_07] the second input argument must be a plain object. It was given as:\n".concat(m(n,4)," (type ").concat(typeof n,")"));let t=(h=n==null?void 0:n.progressFn)!=null?h:Me.progressFn,o=(y=n==null?void 0:n.mergeType)!=null?y:Me.mergeType,i=(A=n==null?void 0:n.joinRangesThatTouchEdges)!=null?A:Me.joinRangesThatTouchEdges;if(t&&r(t)&&!Object.keys(t).length)t=null;else if(t&&typeof t!="function")throw new TypeError('ranges-push/rMerge(): [THROW_ID_08] resolvedOpts.progressFn must be a function! It was given of a type: "'.concat(typeof t,'", equal to ').concat(m(t,4)));if(o!==1&&o!==2&&o!=="1"&&o!=="2")throw new TypeError('ranges-push/rMerge(): [THROW_ID_09] resolvedOpts.mergeType was customised to a wrong thing! It was given of a type: "'.concat(typeof o,'", equal to ').concat(m(o,4)));if(typeof i!="boolean")throw new TypeError('ranges-push/rMerge(): [THROW_ID_10] resolvedOpts.joinRangesThatTouchEdges was customised to a wrong thing! It was given of a type: "'.concat(typeof i,'", equal to ').concat(m(i,4)));let l=[];for(let D of e)Array.isArray(D)&&(D[2]!==void 0||D[0]!==D[1])&&l.push([...D]);let c,s,f;t?c=He(l,{progressFn:D=>{f=Math.floor(D/5),f!==s&&(s=f,t==null||t(f))}}):c=He(l);let g=c.length-1,$=+o==2,a=c.length;for(let D=g;D>=0;D--){let p=c[D];for(t&&D<g&&(f=Math.floor((1-(D+1)/g)*78)+21,f!==s&&f>s&&(s=f,t(f)));a<c.length;){let C=c[a],R=C[0]===p[0];if(!R&&(i?C[0]>p[1]:C[0]>=p[1]))break;let N=C[1]>=p[1];N&&(p[1]=C[1]),C[2]===null?p[2]=null:C[2]!==void 0&&(R||N)&&(p[2]=Et(p[2],C[2],$&&R)),a+=1}a-=1,c[a]=p}let _=c.length-a;for(let D=0;D<_;D++)c[D]=c[a+D];return c.length=_,c.length?c:null}var Le=Object.freeze({limitToBeAddedWhitespace:!1,limitLinebreaksCount:1,mergeType:1});function le(e){if(oe(e))return e;if(typeof e=="string"&&/^\d+$/.test(e)){let n=Number(e);return oe(n)?n:null}return null}function Tt(e){if(!Array.isArray(e))return"a ranges batch must contain only range arrays; received ".concat(m(e,4));if(e.length>3)return"a range must contain at most three values; received ".concat(m(e,4));let[n,r,t]=e;if(n==null&&r==null)return;if(n!=null&&r==null)return"the first index is set (".concat(m(n),") but the second index is not (").concat(m(r),")");if(n==null&&r!=null)return"the second index is set (".concat(m(r),") but the first index is not (").concat(m(n),")");let o=le(n),i=le(r);if(o===null)return"the first index must be a natural number, zero, or a digit-only numeric string; received ".concat(m(n,4)," (type ").concat(typeof n,")");if(i===null)return"the second index must be a natural number, zero, or a digit-only numeric string; received ".concat(m(r,4)," (type ").concat(typeof r,")");if(xe(t)&&!B(t)&&!Pe(t))return"the third value must be a string, number, null, or undefined; received ".concat(m(t,4)," (type ").concat(typeof t,")");if(o>i)return"the first index (".concat(o,") must not be greater than the second index (").concat(i,")")}function gr(e){if(e.length>3)return{error:"expected at most three arguments but received ".concat(e.length),ranges:[]};if(e.length<=1&&Array.isArray(e[0])){let r=e[0];if(!r.length)return{ranges:[]};e=Array.isArray(r[0])?r:[r]}else e=[e];let n=[];for(let r of e){let t=Tt(r);if(t)return{error:t,ranges:[]};let[o,i,l]=r;if(o==null&&i==null)continue;let c=le(o),s=le(i);n.push(l!==void 0&&!(B(l)&&!l.length)?[c,s,l]:[c,s])}return{ranges:n}}function hr(e){return e[2]===void 0&&e[0]===e[1]}function dr(e){let n=-1;for(let r=0,t=e.length;r<t;r++){let o=e[r];if(Array.isArray(o)){if(o[0]<n)return!1;n=o[0]}}return!0}var wt=class{constructor(e){Ce(this,"ranges");Ce(this,"opts");Ce(this,"currentCache",null);if(e!=null&&!J(e))throw new TypeError("ranges-push/Ranges/constructor(): [THROW_ID_01] The options argument must be a plain object. It was given as ".concat(m(e,4)," (type ").concat(typeof e,")."));if(e===void 0){this.opts=Le,this.ranges=[];return}let n=e,r=n.limitToBeAddedWhitespace===void 0?Le.limitToBeAddedWhitespace:n.limitToBeAddedWhitespace,t=n.limitLinebreaksCount===void 0?Le.limitLinebreaksCount:n.limitLinebreaksCount,o=n.mergeType===void 0?Le.mergeType:n.mergeType,i=o==="1"?1:o==="2"?2:o,l;if(typeof r!="boolean"?l="opts.limitToBeAddedWhitespace must be a boolean; received ".concat(m(r,4)," (type ").concat(typeof r,")"):oe(t)?i!==1&&i!==2&&(l='opts.mergeType must be 1, 2, "1", or "2"; received '.concat(m(o,4)," (type ").concat(typeof o,")")):l="opts.limitLinebreaksCount must be a natural number or zero; received ".concat(m(t,4)," (type ").concat(typeof t,")"),l)throw new TypeError("ranges-push/Ranges/constructor(): [THROW_ID_02] ".concat(l,"."));let c=Object.freeze({limitToBeAddedWhitespace:r,limitLinebreaksCount:t,mergeType:i});this.opts=c,this.ranges=[]}rangeListsMatch(e,n){if(!Array.isArray(e))return n===null;if(!Array.isArray(n)||e.length!==n[0])return!1;let r=1;for(let t=0,o=e.length;t<o;t++){let i=e[t];if(!Array.isArray(i)){if(n[r++]!==-1||i!==n[r++])return!1;continue}if(i.length!==n[r++])return!1;for(let l=0;l<i.length;l++)if(i[l]!==n[r++])return!1}return r===n.length}snapshotRanges(e){if(!Array.isArray(e))return null;let n=new Array(1+e.length*4);n[0]=e.length;let r=1;for(let t=0,o=e.length;t<o;t++){let i=e[t];if(Array.isArray(i)){n[r++]=i.length;for(let l=0;l<i.length;l++)n[r++]=i[l]}else n[r++]=-1,n[r++]=i}return n.length=r,n}currentStateMatchesSnapshot(){let e=this.currentCache;return e!==null&&this.rangeListsMatch(this.ranges,e.rangesSnapshot)&&this.rangeListsMatch(e.result,e.resultSnapshot)}recordCurrentSnapshot(e){let n=this.snapshotRanges(this.ranges);this.currentCache={rangesSnapshot:n,result:e,resultSnapshot:e===this.ranges?n:this.snapshotRanges(e)}}invalidateCurrentCache(){this.currentCache=null}addValidated(e,n,r){this.invalidateCurrentCache();let t=this.last();if(xe(this.ranges)&&Array.isArray(t)&&e===t[1]){if(t[1]=n,r!==void 0&&!(B(r)&&!r.length)){let i=Et(t[2],r,this.opts.mergeType===2&&t[0]===e);this.opts.limitToBeAddedWhitespace&&typeof i=="string"&&(i=Se(i,this.opts.limitLinebreaksCount)),B(i)&&!i.length||(t[2]=i)}return}this.ranges||(this.ranges=[]);let o=r!==void 0?[e,n,typeof r=="string"&&this.opts.limitToBeAddedWhitespace?Se(r,this.opts.limitLinebreaksCount):r]:[e,n];this.ranges.push(o)}add(e,n,r){let t=arguments.length,o;if(t>3)o="expected at most three arguments but received ".concat(t);else if(t===1&&Array.isArray(e)){let i=Array.isArray(e[0])?e:[e];for(let l=0,c=i.length;l<c&&(o=Tt(i[l]),!o);l++);if(!o)for(let l=0,c=i.length;l<c;l++){let[s,f,g]=i[l];s==null&&f==null||this.addValidated(le(s),le(f),B(g)&&!g.length?void 0:g)}}else{if(e==null&&n==null)return;if(e!=null&&n==null)o="the first index is set (".concat(m(e),") but the second index is not (").concat(m(n),")");else if(e==null&&n!=null)o="the second index is set (".concat(m(n),") but the first index is not (").concat(m(e),")");else{let i=le(e),l=le(n);i===null?o="the first index must be a natural number, zero, or a digit-only numeric string; received ".concat(m(e,4)," (type ").concat(typeof e,")"):l===null?o="the second index must be a natural number, zero, or a digit-only numeric string; received ".concat(m(n,4)," (type ").concat(typeof n,")"):xe(r)&&!B(r)&&!Pe(r)?o="the third value must be a string, number, null, or undefined; received ".concat(m(r,4)," (type ").concat(typeof r,")"):i>l?o="the first index (".concat(i,") must not be greater than the second index (").concat(l,")"):this.addValidated(i,l,B(r)&&!r.length?void 0:r)}}if(o)throw new TypeError("ranges-push/Ranges/add(): [THROW_ID_03] ".concat(o,"."))}push(e,n,r){this.add.apply(this,arguments)}current(){var e,n;if(this.currentStateMatchesSnapshot())return(n=(e=this.currentCache)==null?void 0:e.result)!=null?n:null;if(Array.isArray(this.ranges)&&this.ranges.length){this.ranges=fr(this.ranges,this.opts.mergeType===1?void 0:{mergeType:2});let r=this.ranges;return r&&this.opts.limitToBeAddedWhitespace&&(r=r.map(t=>typeof t[2]=="string"?[t[0],t[1],Se(t[2],this.opts.limitLinebreaksCount)]:t)),this.recordCurrentSnapshot(r),r}return this.recordCurrentSnapshot(null),null}firstCovers(e){if(!oe(e))throw new TypeError("ranges-push/Ranges/firstCovers(): [THROW_ID_04] the input argument must be a natural number or zero! It was given as ".concat(m(e,4)," (type ").concat(typeof e,")"));if(!Array.isArray(this.ranges)||!this.ranges.length)return!1;let n=dr(this.ranges)?this.ranges:this.ranges.filter(t=>Array.isArray(t)).slice().sort((t,o)=>t[0]-o[0]||t[1]-o[1]),r=null;for(let t=0,o=n.length;t<o;t++){let i=n[t];if(!(!Array.isArray(i)||hr(i))){if(r===null){if(i[0]!==0)return!1;r=i[1]}else{if(i[0]>r)break;i[1]>r&&(r=i[1])}if(r>=e)return!0}}return r!==null&&r>=e}wipe(){this.ranges=[],this.invalidateCurrentCache()}replace(e){if(Array.isArray(e)&&e.length)if(Array.isArray(e[0])){let n=gr([e]);if(n.error)throw new TypeError("ranges-push/Ranges/replace(): [THROW_ID_06] ".concat(n.error,"."));this.ranges=n.ranges,this.invalidateCurrentCache()}else throw new Error("ranges-push/Ranges/replace(): [THROW_ID_05] Single range was given but we expected array of arrays! The first element, ".concat(m(e[0],4)," should be an array."));else this.ranges=[],this.invalidateCurrentCache()}last(){return Array.isArray(this.ranges)&&this.ranges.length?this.ranges[this.ranges.length-1]:null}};function fe(e){return e===32||e>=9&&e<=13||e===160||e===5760||e>=8192&&e<=8202||e===8232||e===8233||e===8239||e===8287||e===12288||e===65279}function vt(e,n){return n==null?0:typeof n!="number"||!Number.isInteger(n)||n<0?null:n>e?e:n}function mr(e,n){return n===-1?-1:vt(e,n)}function Y(e,n=0){if(typeof e!="string"||!e.length)return null;let r=mr(e.length,n);if(r===null||r+1>=e.length)return null;let t=r+1;if(!fe(e.charCodeAt(t)))return t;if(t+=1,t>=e.length)return null;if(!fe(e.charCodeAt(t)))return t;for(t+=1;t<e.length;t++)if(!fe(e.charCodeAt(t)))return t;return null}function Be(e,n=0){if(typeof e!="string"||!e.length)return null;let r=vt(e.length,n);if(r===null||r<1)return null;let t=r-1;if(!fe(e.charCodeAt(t)))return t;if(t-=1,t<0)return null;if(!fe(e.charCodeAt(t)))return t;for(t-=1;t>=0;t--)if(!fe(e.charCodeAt(t)))return t;return null}function xt(e){return typeof e!="string"?e:e.length?[e]:[]}var St={cb:void 0,i:!1,trimBeforeMatching:!1,trimCharsBeforeMatching:[],maxMismatches:0,firstMustMatch:!1,lastMustMatch:!1,hungry:!1},Lt=e=>e+1,pr=e=>e-1;function br(e,n,r,t,o=()=>!1,i=!1,l=Lt){if(+n<0&&i&&r==="EOL")return r;if(n>=e.length&&!i)return!1;let c=i?1:r.length,s=0,f=!1,g=!1,$=!1,a=Math.min(t.maxMismatches,e.length+r.length),_=a,h=n,y=!1,A=!1,D=!1;function p(){return s===1&&_<a-1}for(;e[h];){let C=l(h);if(t.trimBeforeMatching&&e[h].trim()===""){if(!e[C]&&i&&r==="EOL")return!0;h=l(h);continue}if(o(e[h])){if(i&&r==="EOL"&&!e[C])return!0;h=l(h);continue}if(i)return!1;let R=C>h?r[r.length-c]:r[c-1];if(!t.i&&e[h]===R||t.i&&R!==void 0&&e[h].toLowerCase()===R.toLowerCase()){if(y||(y=!0),$||($=!0),c===r.length){if(A=!0,_!==a)return!1}else c===1&&(D=!0);if(c-=1,s++,p())return!1;if(!c)return s!==r.length||_===a||!f?h:!1}else if(!f&&!s&&(f=!0),a&&_&&h){_-=1;for(let N=0;N<=_;N++){let V=C>h?r[r.length-c+1+N]:r[c-2-N],k=e[l(h)];if(V&&(!t.i&&e[h]===V||t.i&&e[h].toLowerCase()===V.toLowerCase())&&(!t.firstMustMatch||c!==r.length)){if(s++,p())return!1;c-=2,y=!0;break}else if(k&&V&&(!t.i&&k===V||t.i&&k.toLowerCase()===V.toLowerCase())&&(!t.firstMustMatch||c!==r.length)){if(!s&&!t.hungry)return!1;c-=1,y=!0;break}else if(V===void 0&&_>=0&&y&&(!t.firstMustMatch||A)&&(!t.lastMustMatch||D))return h}y||(g=h)}else return h===0&&c===1&&a>0&&_>0&&(!t.firstMustMatch||A)&&!t.lastMustMatch&&$?0:!1;if(g!==!1&&g!==h&&(g=!1),c<1)return h;h=l(h)}if(c>0)return i&&r==="EOL"?!0:t&&a>=c&&$?g||0:!1}function We(e,n,r,t,o){var h,y,A,D;if(J(o)&&Ct(o,"trimBeforeMatching")&&o&&typeof o.trimBeforeMatching!="boolean")throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_01] opts.trimBeforeMatching should be boolean!").concat(Array.isArray(o.trimBeforeMatching)?" Did you mean to use opts.trimCharsBeforeMatching?":""));let i=Q(Q({},St),o);if(i.maxMismatches=(h=o==null?void 0:o.maxMismatches)!=null?h:St.maxMismatches,Ar(i.maxMismatches,e),typeof i.trimCharsBeforeMatching=="string"&&(i.trimCharsBeforeMatching=xt(i.trimCharsBeforeMatching)),i.trimCharsBeforeMatching=i.trimCharsBeforeMatching.map(p=>B(p)?p:String(p)),!B(n)||!n.length)return!1;if(!Number.isInteger(r)||r<0)throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_02] the second argument should be a natural number. Currently it's of a type: ").concat(typeof r,", equal to:\n").concat(m(r,4)));let l,c;if(B(t))l=[t];else if(Array.isArray(t))l=t;else if(!t)l=t;else if(typeof t=="function")l=[],l.push(t);else throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_03] the third argument, whatToMatch, is neither string nor array of strings! It's ").concat(typeof t,", equal to:\n").concat(m(t,4)));if($r(l,e),o&&!J(o))throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_04] the fourth argument, options object, should be a plain object. Currently it's of a type \"").concat(typeof o,'", and equal to:\n').concat(m(o,4)));let s=0,f="";if((y=i==null?void 0:i.trimCharsBeforeMatching)!=null&&y.some((p,C)=>p.length>1?(s=C,f=p,!0):!1))throw new Error("string-match-left-right/".concat(e,"(): [THROW_ID_05] the fourth argument, options object contains trimCharsBeforeMatching. It was meant to list the single characters but one of the entries at index ").concat(s," is longer than 1 character, ").concat(f.length," (equals to ").concat(f,"). Please split it into separate characters and put into array as separate elements."));if(r>=n.length)return!1;let g=i.i?i.trimCharsBeforeMatching.map(p=>p.toLowerCase()):i.trimCharsBeforeMatching,$=i.i?p=>g.includes(p.toLowerCase()):p=>g.includes(p);if(!l||!Array.isArray(l)||Array.isArray(l)&&!l.length||Array.isArray(l)&&l.length===1&&B(l[0])&&!l[0].trim()){if(typeof i.cb=="function"){let C,R=r;if((e==="matchLeftIncl"||e==="matchRight")&&(R+=1),e[5]==="L")for(let k=R;k--;){let S=n[k];if((!i.trimBeforeMatching||i.trimBeforeMatching&&(S!=null&&S.trim()))&&(!((A=i.trimCharsBeforeMatching)!=null&&A.length)||S!==void 0&&!$(S))){C=k;break}}else if(e.startsWith("matchRight"))for(let k=R;k<n.length;k++){let S=n[k];if((!i.trimBeforeMatching||i.trimBeforeMatching&&S.trim())&&(!((D=i.trimCharsBeforeMatching)!=null&&D.length)||!$(S))){C=k;break}}if(C===void 0)return!1;let N=n[C],V=e[5]==="L"?n.slice(0,C+1):n.slice(C);return e[5],i.cb(N,V,C)}let p="";throw o||(p=" More so, the whole options object, the fourth input argument, is missing!"),new Error("string-match-left-right/".concat(e,'(): [THROW_ID_06] the third argument, "whatToMatch", was given as an empty string. This means, you intend to match purely by a callback. The callback was not set though, the opts key "cb" is not set!').concat(p))}if(!i.cb&&!i.i&&!i.trimBeforeMatching&&!i.trimCharsBeforeMatching.length&&i.maxMismatches===0&&!i.firstMustMatch&&!i.lastMustMatch&&!i.hungry&&l.every(B)){for(let p of l){if(!p.length)continue;let C=r;if(e==="matchRight"?C+=1:e==="matchLeft"?C-=p.length:e==="matchLeftIncl"&&(C-=p.length-1),C>=0&&n.startsWith(p,C))return p}return!1}let a=r;e==="matchRight"?a+=1:e==="matchLeft"&&(a-=1);let _=e[5]==="L"?pr:Lt;for(let p=0,C=l.length;p<C;p++){c=typeof l[p]=="function";let R=l[p],N=typeof R=="function"?R():R;if(c&&N!=="EOL")throw new Error("string-match-left-right/".concat(e,'(): [THROW_ID_09] EOL marker functions must return "EOL". The function at index ').concat(p," returned:\n").concat(m(N,4)));if(c&&e.endsWith("Incl"))continue;let V,k,S="",z=br(n,a,N,i,$,c,_);if(z&&c)return!i.cb||i.cb(V,S,k)?N:!1;if(Number.isInteger(z)&&(k=e.startsWith("matchLeft")?z-1:z+1,e[5]==="L"?S=n.slice(0,z):S=n.slice(k)),k<0&&(k=void 0),n[k]&&(V=n[k]),Number.isInteger(z)&&(!i.cb||i.cb(V,S,k)))return N}return!1}function Ar(e,n){if(!Number.isSafeInteger(e)||e<0)throw new Error("string-match-left-right/".concat(n,"(): [THROW_ID_07] opts.maxMismatches must be a non-negative safe integer. Currently it's of a type: ").concat(typeof e,", equal to:\n").concat(m(e,4)))}function $r(e,n){if(e)for(let r=0;r<e.length;r+=1){let t=e[r];if(typeof t!="string"&&typeof t!="function")throw new Error("string-match-left-right/".concat(n,"(): [THROW_ID_08] matcher alternatives must be strings or EOL marker functions. The value at index ").concat(r," is of a type: ").concat(typeof t,", equal to:\n").concat(m(t,4)))}}function Bt(e,n,r,t){return We("matchLeft",e,n,r,t)}function Ot(e,n,r,t){return We("matchRightIncl",e,n,r,t)}function Ft(e,n,r,t){return We("matchRight",e,n,r,t)}var Dr=["_16_0_7_1_1_0_3_1_1_2_1_m_1_u_1_cp_4_b_e_4_7_0_1_0_3l_4_1_1_2_3_1_0_6_0_1_2_1_0_1_j_1_2a_1_3u_8_4l_1","_11_2_0_6_14_1z_q_4_3_19_16_l_9_4_1_1_2q_1_0_f_1_7_e_2_0_g_0_1_t_t_2g_b_0_e_16_9_1_4_0_5_l_4_0_9_0_3","_0_n_o_7_a_5_n_1_6_g_15_1m_1h_3_0_i_0_7_9_4_9_1_f_4_7_2_1_2_l_1_6_1_0_3_3_3_0_g_0_d_1_1_2_4_b_2_5_2_","0_8_5_4_1_2_l_1_6_1_1_1_1_1_1_v_3_1_0_7_9_2_2_g_8_1_2_1_l_1_6_1_1_1_4_3_0_i_0_f_1_4_9_9_0_b_7_2_1_2_","l_1_6_1_1_1_4_3_0_u_1_1_2_4_9_1_6_b_0_1_5_3_2_1_3_3_1_1_0_1_1_3_1_3_2_3_b_m_0_l_c_i_7_1_2_1_m_1_f_3_","0_q_2_1_1_2_1_4_9_8_6_1_0_4_7_1_2_1_m_1_9_1_4_3_0_u_2_1_1_4_9_1_1_h_8_1_2_1_14_2_0_g_0_5_2_1_9_4_i_1","_5_5_h_3_n_1_8_1_0_2_6_v_9_h_1b_1_1_c_6_9_9_13_1_1_0_1_4_1_n_1_0_1_9_1_1_9_0_2_4_1_0_9_9_2_3_w_0_v_j","_c_7_1_z_r_4_37_16_k_a_6_5_4_3_3_0_3_1_7_2_4_c_c_0_1_9_6_11_1_0_5_0_2_16_1_98_1_3_2_6_1_0_1_3_2_14_1","_3_2_w_1_3_2_6_1_0_1_3_2_e_1_1k_1_3_2_1u_e_j_3_f_g_2d_2_5_3_h7_2_g_1_p_5_22_3_a_7_h_d_i_e_h_e_c_1_2_","f_1f_z_0_4_0_3_9_6_9_m_9_6_2g_7_4_2_x_1_0_5_1x_a_u_13_13_2_4_b_17_4_p_6_a_11_m_9_1g_17_9_6_9_d_0_2l_","1a_h_7_3_9_15_t_d_1j_q_z_s_9_3_1c_2_a_5_16_2_2_15_3_1_5_1_1_3_0_5_5b_1s_7p_2_5_2_11_2_5_2_7_1_0_1_0_","1_0_1_u_2_1g_1_6_1_0_3_2_1_6_3_3_2_5_4_c_5_2_1_6_37_1_2_5_5_a_6_c_2t_0_4_0_2_9_1_0_3_4_6_0_1_0_1_0_1","_3_1_a_2_3_5_4_4_0_1_1l_k6_1n_26_l_hi_t_vg_6c_6_3_3_1_9_0_2_11_1_0_5_0_2_1j_7_0_g_m_9_6_1_6_1_6_1_6_","1_6_1_6_1_6_1_6_28_0_d1_2_p_8_7_4_2_4_4_2d_6_2_1_2h_1_3_5_16_1_2l_3_3_a_v_1c_f_w_9_u_7_1_e_w_9_13_e_","8w_533_1s_h3g_1v_19_2_7g_3_r_k_1a_g_u_2_27_13_8_2_2u_2_29_k_g_1_2_1_3_1_m_d_5_a_1f_e_1d_s_9_o_5_3_0_","1_1_1_11_a_m_p_s_7_1a_s_a_6_4_1_o_1_14_n_2_1_7_4_9_6_m_3_0_3_1d_1_0_3_1_2_4_2_0_1_0_o_2_2_a_7_2_c_5_","2_5_2_5_9_6_1_6_1_16_1_d_6_36_d_9_6_8mb_c_m_4_1c_6is_a5_2_2x_12_6_c_4_5_0_1_9_1_c_1_4_1_0_1_1_1_1_1_","2z_x_a2_i_1r_2_1h_14_b_38_4_1_3q_j_9_7_p_6_p_b_2g_3_5_2_5_2_5_2_2_z_b_1_p_1_i_1_1_1_e_2_d_y_3e_c_18_","c_1k_h_1_6s_s_3_1c_g_q_4_z_9_t_5_11_a_t_2_z_4_7_1_4_16_4d_2_9_6_z_4_z_4_13_8_1f_c_a_1_e_1_6_1_1_1_a_","1_e_1_6_1_1_3_1f_c_8m_9_l_a_7_o_5_1_15_1_8_1x_5_2_0_1_17_1_1_3_0_2_m_2_u_2_11_8_8_1c_i_1_1_5_w_4_p_6","_p_12_1j_4_j_2_1a_f_3_1_2_1_s_a_8_n_u_1_v_w_7_1_r_6_4_g_1h_a_l_2_q_5_p_n_6_28_20_1j_1e_d_1e_7_15_c_9","_6_11_9_m_62_u_1_15_6_1_g_5_1k_13_8_l_b_3_r_h_1a_r_k_m_c_1g_q_t_1_1_2_0_d_18_w_o_7_9_9_z_f_9_4_0_2_0","_8_y_3_0_c_1b_e_3_b_a_1_0_4_j_b_h_1_o_j_1_1r_6_1_0_1_3_1_e_1_9_7_1a_h_9_b_7_2_1_2_l_1_6_1_1_1_4_3_0_","i_0_c_4_u_9_1_0_2_0_1_11_1_0_p_0_1_0_18_1g_i_3_5_9_5_2_u_1b_k_1_1_0_8_9_4m_1a_15_3_10_1b_k_0_b_9_12_","16_d_0_7_9_6_j_s_q_l_b_4_6_55_17_38_2a_c_7_2_0_2_7_1_1_1_n_f_0_1_0_e_9_1y_7_2_12_g_0_1_0_s_0_a_13_7_","0_l_0_b_19_j_0_i_20_5j_w_f_9_6_8_1_10_h_0_f_s_5_t_34_6_1_1_1_11_l_0_9_9_6_5_1_1_1_v_e_0_7_9_6_17_4_9","_6u_i_f_0_1_c_1_x_s_9_2e_0_f_k_17_pl_2u_32_h_5f_218_2o_f_tr_h_5_p_32y_5_g6_5a1_t_i_9_1c6_fs_7_u_1_9_","6_26_1_9_6_t_i_1b_g_3_c_9_1_6_1_k_5_i_c0_18_3_9_5i_2e_9_o_2_o_18_22_5_0_1u_c_1s_1_1_0_e_4_9_5p1_15_v","_2p_36_6pp_3_1_6_1_1_1_82_f_0_t_2_2_0_e_3_8_az_1s4_2y_5_c_3_8_7_9_386_9_152_j_c_j_30_o_3r_2c_1_1y_1_","1_2_0_2_1_2_3_1_b_1_0_1_6_1_1s_1_3_2_7_1_6_1_r_1_3_1_4_1_0_3_6_1_9f_2_o_1_o_1_u_1_o_1_u_1_o_1_u_1_o_","1_u_1_o_1_7_2_1d_1ds_u_6_5_79_1p_42_18_a_6_2_9_4_0_8x_t_i_17_4_9_d2_r_4_9_5y_t_2_a_5h_u_1_2_1_1_1_6_","2_4_9_1_68_6_1_3_1_1_1_e_1_5g_2_8_1c_1v_7_0_4_9_lz_1m_1_2_1_3_24_18_1_e_5e_3_1_q_1_1_1_0_2_0_1_9_1_3","_1_0_1_0_6_0_4_0_1_0_1_0_1_2_1_1_1_0_2_0_1_0_1_0_1_0_1_0_1_1_1_0_2_3_1_6_1_3_1_3_1_0_1_9_1_g_5_2_1_4","_1_g_g4_c_25f_9_sm_wyn_w_3dp_2_4gd_2_5rk_f_h9_1wi_f1_15u_3t6_5_6jt"].join(""),Ue=Dr.slice(1).split("_"),je=[],It=127;for(let e=0;e<Ue.length;e+=2){let n=It+1+Number.parseInt(Ue[e],36),r=n+Number.parseInt(Ue[e+1],36);je.push([n,r]),It=r}function Cr(e){if(Number.isNaN(e)||e<128||e>1114111)return!1;let n=0,r=je.length-1;for(;n<=r;){let t=n+r>>1,o=je[t];if(e<o[0])r=t-1;else if(e>o[1])n=t+1;else return!0}return!1}function j(e,n,r){let t=n[r];if(!e||!t||!e.includes(t))return!1;let o=t.charCodeAt(0),i=r,l=r+1;if(!(o>=55296&&o<=56319&&n.charCodeAt(l)>=56320&&n.charCodeAt(l)<=57343))if(o>=56320&&o<=57343&&n.charCodeAt(r-1)>=55296&&n.charCodeAt(r-1)<=56319)i=r-1,l=r;else return e.includes(n[r]);let c=n.charCodeAt(i),s=n.charCodeAt(l);for(let f=0;f<e.length-1;f++)if(e.charCodeAt(f)===c&&e.charCodeAt(f+1)===s)return!0;return!1}function Rt(e,n){let r=e.charCodeAt(n);if(r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122)return!0;let t=r;return r>=55296&&r<=56319&&e.charCodeAt(n+1)>=56320&&e.charCodeAt(n+1)<=57343?t=(r-55296)*1024+(e.charCodeAt(n+1)-56320)+65536:r>=56320&&r<=57343&&e.charCodeAt(n-1)>=55296&&e.charCodeAt(n-1)<=56319&&(t=(e.charCodeAt(n-1)-55296)*1024+(r-56320)+65536),Cr(t)}var ee={str:"",from:0,to:0,ifLeftSideIncludesThisThenCropTightly:"",ifLeftSideIncludesThisCropItToo:"",ifRightSideIncludesThisThenCropTightly:"",ifRightSideIncludesThisCropItToo:"",extendToOneSide:!1,wipeAllWhitespaceOnLeft:!1,wipeAllWhitespaceOnRight:!1,addSingleSpaceToPreventAccidentalConcatenation:!1};function Ge(e){var l,c,s,f,g,$,a,_,h,y;function n(A){return B(A)&&!A.trim()}if(J(e)){if(!Object.keys(e).length)throw new Error('string-range-expander/expander(): [THROW_ID_02] Input must be a plain object with the required "str", "from", and "to" keys, but it was given without any keys.')}else{let A;throw e===void 0?A="but it is missing completely.":e===null?A="but it was given as null.":A="but it was given as ".concat(typeof e,", equal to:\n").concat(m(e,4),"."),new Error("string-range-expander/expander(): [THROW_ID_01] Input must be a plain object ".concat(A))}if(!B(e.str))throw new Error('string-range-expander/expander(): [THROW_ID_03] The input\'s "str" value must be a string! It was given as '.concat(typeof e.str,", equal to ").concat(m(e.str)));if(!oe(e.from)||e.from<0)throw new Error('string-range-expander/expander(): [THROW_ID_04] The input\'s "from" value must be a non-negative integer! It was given as '.concat(typeof e.from,", equal to ").concat(m(e.from)));if(!oe(e.to)||e.to<0)throw new Error('string-range-expander/expander(): [THROW_ID_05] The input\'s "to" value must be a non-negative integer! It was given as '.concat(typeof e.to,", equal to ").concat(m(e.to)));if(e.from>e.str.length)throw new Error('string-range-expander/expander(): [THROW_ID_06] The input\'s "from" value ('.concat(e.from,") must not exceed the string length (").concat(e.str.length,")."));if(e.to>e.str.length)throw new Error('string-range-expander/expander(): [THROW_ID_07] The input\'s "to" value ('.concat(e.to,") must not exceed the string length (").concat(e.str.length,")."));if(e.from>e.to)throw new Error('string-range-expander/expander(): [THROW_ID_08] The input\'s "from" value ('.concat(e.from,') must not exceed its "to" value (').concat(e.to,")."));if(e.extendToOneSide!==void 0&&e.extendToOneSide!==!1&&e.extendToOneSide!=="left"&&e.extendToOneSide!=="right")throw new Error('string-range-expander/expander(): [THROW_ID_09] The options value "extendToOneSide" is not recognisable! It\'s set to: '.concat(m(e.extendToOneSide)," (").concat(typeof e.extendToOneSide,'). It has to be either Boolean "false" or one of strings: "left" or "right"'));if(e.ifLeftSideIncludesThisThenCropTightly!==void 0&&!B(e.ifLeftSideIncludesThisThenCropTightly))throw new Error('string-range-expander/expander(): [THROW_ID_10] The option "ifLeftSideIncludesThisThenCropTightly", is not a string! It\'s been given as '.concat(typeof e.ifLeftSideIncludesThisThenCropTightly,", equal to ").concat(m(e.ifLeftSideIncludesThisThenCropTightly)));if(e.ifLeftSideIncludesThisCropItToo!==void 0&&!B(e.ifLeftSideIncludesThisCropItToo))throw new Error('string-range-expander/expander(): [THROW_ID_11] The option "ifLeftSideIncludesThisCropItToo", is not a string! It\'s been given as '.concat(typeof e.ifLeftSideIncludesThisCropItToo,", equal to ").concat(m(e.ifLeftSideIncludesThisCropItToo)));if(e.ifRightSideIncludesThisThenCropTightly!==void 0&&!B(e.ifRightSideIncludesThisThenCropTightly))throw new Error('string-range-expander/expander(): [THROW_ID_12] The option "ifRightSideIncludesThisThenCropTightly", is not a string! It\'s been given as '.concat(typeof e.ifRightSideIncludesThisThenCropTightly,", equal to ").concat(m(e.ifRightSideIncludesThisThenCropTightly)));if(e.ifRightSideIncludesThisCropItToo!==void 0&&!B(e.ifRightSideIncludesThisCropItToo))throw new Error('string-range-expander/expander(): [THROW_ID_13] The option "ifRightSideIncludesThisCropItToo", is not a string! It\'s been given as '.concat(typeof e.ifRightSideIncludesThisCropItToo,", equal to ").concat(m(e.ifRightSideIncludesThisCropItToo)));if(e.wipeAllWhitespaceOnLeft!==void 0&&typeof e.wipeAllWhitespaceOnLeft!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_14] The option "wipeAllWhitespaceOnLeft" must be a Boolean! It was given as '.concat(typeof e.wipeAllWhitespaceOnLeft,", equal to ").concat(m(e.wipeAllWhitespaceOnLeft)));if(e.wipeAllWhitespaceOnRight!==void 0&&typeof e.wipeAllWhitespaceOnRight!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_15] The option "wipeAllWhitespaceOnRight" must be a Boolean! It was given as '.concat(typeof e.wipeAllWhitespaceOnRight,", equal to ").concat(m(e.wipeAllWhitespaceOnRight)));if(e.addSingleSpaceToPreventAccidentalConcatenation!==void 0&&typeof e.addSingleSpaceToPreventAccidentalConcatenation!="boolean")throw new Error('string-range-expander/expander(): [THROW_ID_16] The option "addSingleSpaceToPreventAccidentalConcatenation" must be a Boolean! It was given as '.concat(typeof e.addSingleSpaceToPreventAccidentalConcatenation,", equal to ").concat(m(e.addSingleSpaceToPreventAccidentalConcatenation)));let r=De(Q(Q({},ee),e),{ifLeftSideIncludesThisThenCropTightly:(l=e.ifLeftSideIncludesThisThenCropTightly)!=null?l:ee.ifLeftSideIncludesThisThenCropTightly,ifLeftSideIncludesThisCropItToo:(c=e.ifLeftSideIncludesThisCropItToo)!=null?c:ee.ifLeftSideIncludesThisCropItToo,ifRightSideIncludesThisThenCropTightly:(s=e.ifRightSideIncludesThisThenCropTightly)!=null?s:ee.ifRightSideIncludesThisThenCropTightly,ifRightSideIncludesThisCropItToo:(f=e.ifRightSideIncludesThisCropItToo)!=null?f:ee.ifRightSideIncludesThisCropItToo,extendToOneSide:(g=e.extendToOneSide)!=null?g:ee.extendToOneSide,wipeAllWhitespaceOnLeft:($=e.wipeAllWhitespaceOnLeft)!=null?$:ee.wipeAllWhitespaceOnLeft,wipeAllWhitespaceOnRight:(a=e.wipeAllWhitespaceOnRight)!=null?a:ee.wipeAllWhitespaceOnRight,addSingleSpaceToPreventAccidentalConcatenation:(_=e.addSingleSpaceToPreventAccidentalConcatenation)!=null?_:ee.addSingleSpaceToPreventAccidentalConcatenation}),t=r.str,o=r.from,i=r.to;if(r.extendToOneSide!=="right"&&(n(t[o-1])&&(n(t[o-2])||j(r.ifLeftSideIncludesThisCropItToo,t,o-2))||t[o-1]&&j(r.ifLeftSideIncludesThisCropItToo,t,o-1)||r.wipeAllWhitespaceOnLeft&&n(t[o-1]))){for(let A=o;A--;)if(j(r.ifLeftSideIncludesThisCropItToo,t,A))A===0&&(o=0);else if(t[A].trim()){r.wipeAllWhitespaceOnLeft||j(r.ifLeftSideIncludesThisCropItToo,t,A+1)?o=A+1:o=A+2;break}else if(A===0){r.wipeAllWhitespaceOnLeft?o=0:o=1;break}}if(r.extendToOneSide!=="left"&&(n(t[i])&&(r.wipeAllWhitespaceOnRight||n(t[i+1])||j(r.ifRightSideIncludesThisCropItToo,t,i+1))||j(r.ifRightSideIncludesThisCropItToo,t,i))){for(let A=i,D=t.length;A<D;A++)if(j(r.ifRightSideIncludesThisCropItToo,t,A))A===D-1&&(i=D);else if(t[A].trim()){r.wipeAllWhitespaceOnRight||j(r.ifRightSideIncludesThisCropItToo,t,A-1)?i=A:i=A-1;break}else if(A===t.length-1){r.wipeAllWhitespaceOnRight?i=t.length:i=t.length-1;break}}return(r.extendToOneSide!=="right"&&B(r.ifLeftSideIncludesThisThenCropTightly)&&r.ifLeftSideIncludesThisThenCropTightly&&(n(t[o-1])&&j(r.ifLeftSideIncludesThisThenCropTightly,t,o-2)||t[o-1]&&j(r.ifLeftSideIncludesThisThenCropTightly,t,o-1))||r.extendToOneSide!=="left"&&B(r.ifRightSideIncludesThisThenCropTightly)&&r.ifRightSideIncludesThisThenCropTightly&&(n(t[i])&&j(r.ifRightSideIncludesThisThenCropTightly,t,i+1)||t[i]&&j(r.ifRightSideIncludesThisThenCropTightly,t,i)))&&(r.extendToOneSide!=="right"&&n(t[o-1])&&!r.wipeAllWhitespaceOnLeft&&(o-=1),r.extendToOneSide!=="left"&&n(t[i])&&!r.wipeAllWhitespaceOnRight&&(i+=1)),r.addSingleSpaceToPreventAccidentalConcatenation&&o<i&&((h=t[o-1])!=null&&h.trim())&&((y=t[i])!=null&&y.trim())&&(!r.ifLeftSideIncludesThisThenCropTightly&&!r.ifRightSideIncludesThisThenCropTightly||!((!r.ifLeftSideIncludesThisThenCropTightly||j(r.ifLeftSideIncludesThisThenCropTightly,t,o-1))&&(!r.ifRightSideIncludesThisThenCropTightly||t[i]&&j(r.ifRightSideIncludesThisThenCropTightly,t,i))))&&(Rt(t,o-1)||Rt(t,i))?[o,i," "]:[o,i]}var kt="6.3.3";function qt(e,n){if(n<0||n>=e.length)return;let r=e.charCodeAt(n),t=e.charCodeAt(n+1);if(r>=55296&&r<=56319&&t>=56320&&t<=57343)return e.slice(n,n+2);let o=e.charCodeAt(n-1);return r>=56320&&r<=57343&&o>=55296&&o<=56319?e.slice(n-1,n+1):e[n]}var Nt={AElig:"\xC6","AElig;":"\xC6",AMP:"&","AMP;":"&",Aacute:"\xC1","Aacute;":"\xC1","Abreve;":"\u0102",Acirc:"\xC2","Acirc;":"\xC2","Acy;":"\u0410","Afr;":"\u{1D504}",Agrave:"\xC0","Agrave;":"\xC0","Alpha;":"\u0391","Amacr;":"\u0100","And;":"\u2A53","Aogon;":"\u0104","Aopf;":"\u{1D538}","ApplyFunction;":"\u2061",Aring:"\xC5","Aring;":"\xC5","Ascr;":"\u{1D49C}","Assign;":"\u2254",Atilde:"\xC3","Atilde;":"\xC3",Auml:"\xC4","Auml;":"\xC4","Backslash;":"\u2216","Barv;":"\u2AE7","Barwed;":"\u2306","Bcy;":"\u0411","Because;":"\u2235","Bernoullis;":"\u212C","Beta;":"\u0392","Bfr;":"\u{1D505}","Bopf;":"\u{1D539}","Breve;":"\u02D8","Bscr;":"\u212C","Bumpeq;":"\u224E","CHcy;":"\u0427",COPY:"\xA9","COPY;":"\xA9","Cacute;":"\u0106","Cap;":"\u22D2","CapitalDifferentialD;":"\u2145","Cayleys;":"\u212D","Ccaron;":"\u010C",Ccedil:"\xC7","Ccedil;":"\xC7","Ccirc;":"\u0108","Cconint;":"\u2230","Cdot;":"\u010A","Cedilla;":"\xB8","CenterDot;":"\xB7","Cfr;":"\u212D","Chi;":"\u03A7","CircleDot;":"\u2299","CircleMinus;":"\u2296","CirclePlus;":"\u2295","CircleTimes;":"\u2297","ClockwiseContourIntegral;":"\u2232","CloseCurlyDoubleQuote;":"\u201D","CloseCurlyQuote;":"\u2019","Colon;":"\u2237","Colone;":"\u2A74","Congruent;":"\u2261","Conint;":"\u222F","ContourIntegral;":"\u222E","Copf;":"\u2102","Coproduct;":"\u2210","CounterClockwiseContourIntegral;":"\u2233","Cross;":"\u2A2F","Cscr;":"\u{1D49E}","Cup;":"\u22D3","CupCap;":"\u224D","DD;":"\u2145","DDotrahd;":"\u2911","DJcy;":"\u0402","DScy;":"\u0405","DZcy;":"\u040F","Dagger;":"\u2021","Darr;":"\u21A1","Dashv;":"\u2AE4","Dcaron;":"\u010E","Dcy;":"\u0414","Del;":"\u2207","Delta;":"\u0394","Dfr;":"\u{1D507}","DiacriticalAcute;":"\xB4","DiacriticalDot;":"\u02D9","DiacriticalDoubleAcute;":"\u02DD","DiacriticalGrave;":"`","DiacriticalTilde;":"\u02DC","Diamond;":"\u22C4","DifferentialD;":"\u2146","Dopf;":"\u{1D53B}","Dot;":"\xA8","DotDot;":"\u20DC","DotEqual;":"\u2250","DoubleContourIntegral;":"\u222F","DoubleDot;":"\xA8","DoubleDownArrow;":"\u21D3","DoubleLeftArrow;":"\u21D0","DoubleLeftRightArrow;":"\u21D4","DoubleLeftTee;":"\u2AE4","DoubleLongLeftArrow;":"\u27F8","DoubleLongLeftRightArrow;":"\u27FA","DoubleLongRightArrow;":"\u27F9","DoubleRightArrow;":"\u21D2","DoubleRightTee;":"\u22A8","DoubleUpArrow;":"\u21D1","DoubleUpDownArrow;":"\u21D5","DoubleVerticalBar;":"\u2225","DownArrow;":"\u2193","DownArrowBar;":"\u2913","DownArrowUpArrow;":"\u21F5","DownBreve;":"\u0311","DownLeftRightVector;":"\u2950","DownLeftTeeVector;":"\u295E","DownLeftVector;":"\u21BD","DownLeftVectorBar;":"\u2956","DownRightTeeVector;":"\u295F","DownRightVector;":"\u21C1","DownRightVectorBar;":"\u2957","DownTee;":"\u22A4","DownTeeArrow;":"\u21A7","Downarrow;":"\u21D3","Dscr;":"\u{1D49F}","Dstrok;":"\u0110","ENG;":"\u014A",ETH:"\xD0","ETH;":"\xD0",Eacute:"\xC9","Eacute;":"\xC9","Ecaron;":"\u011A",Ecirc:"\xCA","Ecirc;":"\xCA","Ecy;":"\u042D","Edot;":"\u0116","Efr;":"\u{1D508}",Egrave:"\xC8","Egrave;":"\xC8","Element;":"\u2208","Emacr;":"\u0112","EmptySmallSquare;":"\u25FB","EmptyVerySmallSquare;":"\u25AB","Eogon;":"\u0118","Eopf;":"\u{1D53C}","Epsilon;":"\u0395","Equal;":"\u2A75","EqualTilde;":"\u2242","Equilibrium;":"\u21CC","Escr;":"\u2130","Esim;":"\u2A73","Eta;":"\u0397",Euml:"\xCB","Euml;":"\xCB","Exists;":"\u2203","ExponentialE;":"\u2147","Fcy;":"\u0424","Ffr;":"\u{1D509}","FilledSmallSquare;":"\u25FC","FilledVerySmallSquare;":"\u25AA","Fopf;":"\u{1D53D}","ForAll;":"\u2200","Fouriertrf;":"\u2131","Fscr;":"\u2131","GJcy;":"\u0403",GT:">","GT;":">","Gamma;":"\u0393","Gammad;":"\u03DC","Gbreve;":"\u011E","Gcedil;":"\u0122","Gcirc;":"\u011C","Gcy;":"\u0413","Gdot;":"\u0120","Gfr;":"\u{1D50A}","Gg;":"\u22D9","Gopf;":"\u{1D53E}","GreaterEqual;":"\u2265","GreaterEqualLess;":"\u22DB","GreaterFullEqual;":"\u2267","GreaterGreater;":"\u2AA2","GreaterLess;":"\u2277","GreaterSlantEqual;":"\u2A7E","GreaterTilde;":"\u2273","Gscr;":"\u{1D4A2}","Gt;":"\u226B","HARDcy;":"\u042A","Hacek;":"\u02C7","Hat;":"^","Hcirc;":"\u0124","Hfr;":"\u210C","HilbertSpace;":"\u210B","Hopf;":"\u210D","HorizontalLine;":"\u2500","Hscr;":"\u210B","Hstrok;":"\u0126","HumpDownHump;":"\u224E","HumpEqual;":"\u224F","IEcy;":"\u0415","IJlig;":"\u0132","IOcy;":"\u0401",Iacute:"\xCD","Iacute;":"\xCD",Icirc:"\xCE","Icirc;":"\xCE","Icy;":"\u0418","Idot;":"\u0130","Ifr;":"\u2111",Igrave:"\xCC","Igrave;":"\xCC","Im;":"\u2111","Imacr;":"\u012A","ImaginaryI;":"\u2148","Implies;":"\u21D2","Int;":"\u222C","Integral;":"\u222B","Intersection;":"\u22C2","InvisibleComma;":"\u2063","InvisibleTimes;":"\u2062","Iogon;":"\u012E","Iopf;":"\u{1D540}","Iota;":"\u0399","Iscr;":"\u2110","Itilde;":"\u0128","Iukcy;":"\u0406",Iuml:"\xCF","Iuml;":"\xCF","Jcirc;":"\u0134","Jcy;":"\u0419","Jfr;":"\u{1D50D}","Jopf;":"\u{1D541}","Jscr;":"\u{1D4A5}","Jsercy;":"\u0408","Jukcy;":"\u0404","KHcy;":"\u0425","KJcy;":"\u040C","Kappa;":"\u039A","Kcedil;":"\u0136","Kcy;":"\u041A","Kfr;":"\u{1D50E}","Kopf;":"\u{1D542}","Kscr;":"\u{1D4A6}","LJcy;":"\u0409",LT:"<","LT;":"<","Lacute;":"\u0139","Lambda;":"\u039B","Lang;":"\u27EA","Laplacetrf;":"\u2112","Larr;":"\u219E","Lcaron;":"\u013D","Lcedil;":"\u013B","Lcy;":"\u041B","LeftAngleBracket;":"\u27E8","LeftArrow;":"\u2190","LeftArrowBar;":"\u21E4","LeftArrowRightArrow;":"\u21C6","LeftCeiling;":"\u2308","LeftDoubleBracket;":"\u27E6","LeftDownTeeVector;":"\u2961","LeftDownVector;":"\u21C3","LeftDownVectorBar;":"\u2959","LeftFloor;":"\u230A","LeftRightArrow;":"\u2194","LeftRightVector;":"\u294E","LeftTee;":"\u22A3","LeftTeeArrow;":"\u21A4","LeftTeeVector;":"\u295A","LeftTriangle;":"\u22B2","LeftTriangleBar;":"\u29CF","LeftTriangleEqual;":"\u22B4","LeftUpDownVector;":"\u2951","LeftUpTeeVector;":"\u2960","LeftUpVector;":"\u21BF","LeftUpVectorBar;":"\u2958","LeftVector;":"\u21BC","LeftVectorBar;":"\u2952","Leftarrow;":"\u21D0","Leftrightarrow;":"\u21D4","LessEqualGreater;":"\u22DA","LessFullEqual;":"\u2266","LessGreater;":"\u2276","LessLess;":"\u2AA1","LessSlantEqual;":"\u2A7D","LessTilde;":"\u2272","Lfr;":"\u{1D50F}","Ll;":"\u22D8","Lleftarrow;":"\u21DA","Lmidot;":"\u013F","LongLeftArrow;":"\u27F5","LongLeftRightArrow;":"\u27F7","LongRightArrow;":"\u27F6","Longleftarrow;":"\u27F8","Longleftrightarrow;":"\u27FA","Longrightarrow;":"\u27F9","Lopf;":"\u{1D543}","LowerLeftArrow;":"\u2199","LowerRightArrow;":"\u2198","Lscr;":"\u2112","Lsh;":"\u21B0","Lstrok;":"\u0141","Lt;":"\u226A","Map;":"\u2905","Mcy;":"\u041C","MediumSpace;":"\u205F","Mellintrf;":"\u2133","Mfr;":"\u{1D510}","MinusPlus;":"\u2213","Mopf;":"\u{1D544}","Mscr;":"\u2133","Mu;":"\u039C","NJcy;":"\u040A","Nacute;":"\u0143","Ncaron;":"\u0147","Ncedil;":"\u0145","Ncy;":"\u041D","NegativeMediumSpace;":"\u200B","NegativeThickSpace;":"\u200B","NegativeThinSpace;":"\u200B","NegativeVeryThinSpace;":"\u200B","NestedGreaterGreater;":"\u226B","NestedLessLess;":"\u226A","NewLine;":"\n","Nfr;":"\u{1D511}","NoBreak;":"\u2060","NonBreakingSpace;":"\xA0","Nopf;":"\u2115","Not;":"\u2AEC","NotCongruent;":"\u2262","NotCupCap;":"\u226D","NotDoubleVerticalBar;":"\u2226","NotElement;":"\u2209","NotEqual;":"\u2260","NotEqualTilde;":"\u2242\u0338","NotExists;":"\u2204","NotGreater;":"\u226F","NotGreaterEqual;":"\u2271","NotGreaterFullEqual;":"\u2267\u0338","NotGreaterGreater;":"\u226B\u0338","NotGreaterLess;":"\u2279","NotGreaterSlantEqual;":"\u2A7E\u0338","NotGreaterTilde;":"\u2275","NotHumpDownHump;":"\u224E\u0338","NotHumpEqual;":"\u224F\u0338","NotLeftTriangle;":"\u22EA","NotLeftTriangleBar;":"\u29CF\u0338","NotLeftTriangleEqual;":"\u22EC","NotLess;":"\u226E","NotLessEqual;":"\u2270","NotLessGreater;":"\u2278","NotLessLess;":"\u226A\u0338","NotLessSlantEqual;":"\u2A7D\u0338","NotLessTilde;":"\u2274","NotNestedGreaterGreater;":"\u2AA2\u0338","NotNestedLessLess;":"\u2AA1\u0338","NotPrecedes;":"\u2280","NotPrecedesEqual;":"\u2AAF\u0338","NotPrecedesSlantEqual;":"\u22E0","NotReverseElement;":"\u220C","NotRightTriangle;":"\u22EB","NotRightTriangleBar;":"\u29D0\u0338","NotRightTriangleEqual;":"\u22ED","NotSquareSubset;":"\u228F\u0338","NotSquareSubsetEqual;":"\u22E2","NotSquareSuperset;":"\u2290\u0338","NotSquareSupersetEqual;":"\u22E3","NotSubset;":"\u2282\u20D2","NotSubsetEqual;":"\u2288","NotSucceeds;":"\u2281","NotSucceedsEqual;":"\u2AB0\u0338","NotSucceedsSlantEqual;":"\u22E1","NotSucceedsTilde;":"\u227F\u0338","NotSuperset;":"\u2283\u20D2","NotSupersetEqual;":"\u2289","NotTilde;":"\u2241","NotTildeEqual;":"\u2244","NotTildeFullEqual;":"\u2247","NotTildeTilde;":"\u2249","NotVerticalBar;":"\u2224","Nscr;":"\u{1D4A9}",Ntilde:"\xD1","Ntilde;":"\xD1","Nu;":"\u039D","OElig;":"\u0152",Oacute:"\xD3","Oacute;":"\xD3",Ocirc:"\xD4","Ocirc;":"\xD4","Ocy;":"\u041E","Odblac;":"\u0150","Ofr;":"\u{1D512}",Ograve:"\xD2","Ograve;":"\xD2","Omacr;":"\u014C","Omega;":"\u03A9","Omicron;":"\u039F","Oopf;":"\u{1D546}","OpenCurlyDoubleQuote;":"\u201C","OpenCurlyQuote;":"\u2018","Or;":"\u2A54","Oscr;":"\u{1D4AA}",Oslash:"\xD8","Oslash;":"\xD8",Otilde:"\xD5","Otilde;":"\xD5","Otimes;":"\u2A37",Ouml:"\xD6","Ouml;":"\xD6","OverBar;":"\u203E","OverBrace;":"\u23DE","OverBracket;":"\u23B4","OverParenthesis;":"\u23DC","PartialD;":"\u2202","Pcy;":"\u041F","Pfr;":"\u{1D513}","Phi;":"\u03A6","Pi;":"\u03A0","PlusMinus;":"\xB1","Poincareplane;":"\u210C","Popf;":"\u2119","Pr;":"\u2ABB","Precedes;":"\u227A","PrecedesEqual;":"\u2AAF","PrecedesSlantEqual;":"\u227C","PrecedesTilde;":"\u227E","Prime;":"\u2033","Product;":"\u220F","Proportion;":"\u2237","Proportional;":"\u221D","Pscr;":"\u{1D4AB}","Psi;":"\u03A8",QUOT:'"',"QUOT;":'"',"Qfr;":"\u{1D514}","Qopf;":"\u211A","Qscr;":"\u{1D4AC}","RBarr;":"\u2910",REG:"\xAE","REG;":"\xAE","Racute;":"\u0154","Rang;":"\u27EB","Rarr;":"\u21A0","Rarrtl;":"\u2916","Rcaron;":"\u0158","Rcedil;":"\u0156","Rcy;":"\u0420","Re;":"\u211C","ReverseElement;":"\u220B","ReverseEquilibrium;":"\u21CB","ReverseUpEquilibrium;":"\u296F","Rfr;":"\u211C","Rho;":"\u03A1","RightAngleBracket;":"\u27E9","RightArrow;":"\u2192","RightArrowBar;":"\u21E5","RightArrowLeftArrow;":"\u21C4","RightCeiling;":"\u2309","RightDoubleBracket;":"\u27E7","RightDownTeeVector;":"\u295D","RightDownVector;":"\u21C2","RightDownVectorBar;":"\u2955","RightFloor;":"\u230B","RightTee;":"\u22A2","RightTeeArrow;":"\u21A6","RightTeeVector;":"\u295B","RightTriangle;":"\u22B3","RightTriangleBar;":"\u29D0","RightTriangleEqual;":"\u22B5","RightUpDownVector;":"\u294F","RightUpTeeVector;":"\u295C","RightUpVector;":"\u21BE","RightUpVectorBar;":"\u2954","RightVector;":"\u21C0","RightVectorBar;":"\u2953","Rightarrow;":"\u21D2","Ropf;":"\u211D","RoundImplies;":"\u2970","Rrightarrow;":"\u21DB","Rscr;":"\u211B","Rsh;":"\u21B1","RuleDelayed;":"\u29F4","SHCHcy;":"\u0429","SHcy;":"\u0428","SOFTcy;":"\u042C","Sacute;":"\u015A","Sc;":"\u2ABC","Scaron;":"\u0160","Scedil;":"\u015E","Scirc;":"\u015C","Scy;":"\u0421","Sfr;":"\u{1D516}","ShortDownArrow;":"\u2193","ShortLeftArrow;":"\u2190","ShortRightArrow;":"\u2192","ShortUpArrow;":"\u2191","Sigma;":"\u03A3","SmallCircle;":"\u2218","Sopf;":"\u{1D54A}","Sqrt;":"\u221A","Square;":"\u25A1","SquareIntersection;":"\u2293","SquareSubset;":"\u228F","SquareSubsetEqual;":"\u2291","SquareSuperset;":"\u2290","SquareSupersetEqual;":"\u2292","SquareUnion;":"\u2294","Sscr;":"\u{1D4AE}","Star;":"\u22C6","Sub;":"\u22D0","Subset;":"\u22D0","SubsetEqual;":"\u2286","Succeeds;":"\u227B","SucceedsEqual;":"\u2AB0","SucceedsSlantEqual;":"\u227D","SucceedsTilde;":"\u227F","SuchThat;":"\u220B","Sum;":"\u2211","Sup;":"\u22D1","Superset;":"\u2283","SupersetEqual;":"\u2287","Supset;":"\u22D1",THORN:"\xDE","THORN;":"\xDE","TRADE;":"\u2122","TSHcy;":"\u040B","TScy;":"\u0426","Tab;":" ","Tau;":"\u03A4","Tcaron;":"\u0164","Tcedil;":"\u0162","Tcy;":"\u0422","Tfr;":"\u{1D517}","Therefore;":"\u2234","Theta;":"\u0398","ThickSpace;":"\u205F\u200A","ThinSpace;":"\u2009","Tilde;":"\u223C","TildeEqual;":"\u2243","TildeFullEqual;":"\u2245","TildeTilde;":"\u2248","Topf;":"\u{1D54B}","TripleDot;":"\u20DB","Tscr;":"\u{1D4AF}","Tstrok;":"\u0166",Uacute:"\xDA","Uacute;":"\xDA","Uarr;":"\u219F","Uarrocir;":"\u2949","Ubrcy;":"\u040E","Ubreve;":"\u016C",Ucirc:"\xDB","Ucirc;":"\xDB","Ucy;":"\u0423","Udblac;":"\u0170","Ufr;":"\u{1D518}",Ugrave:"\xD9","Ugrave;":"\xD9","Umacr;":"\u016A","UnderBar;":"_","UnderBrace;":"\u23DF","UnderBracket;":"\u23B5","UnderParenthesis;":"\u23DD","Union;":"\u22C3","UnionPlus;":"\u228E","Uogon;":"\u0172","Uopf;":"\u{1D54C}","UpArrow;":"\u2191","UpArrowBar;":"\u2912","UpArrowDownArrow;":"\u21C5","UpDownArrow;":"\u2195","UpEquilibrium;":"\u296E","UpTee;":"\u22A5","UpTeeArrow;":"\u21A5","Uparrow;":"\u21D1","Updownarrow;":"\u21D5","UpperLeftArrow;":"\u2196","UpperRightArrow;":"\u2197","Upsi;":"\u03D2","Upsilon;":"\u03A5","Uring;":"\u016E","Uscr;":"\u{1D4B0}","Utilde;":"\u0168",Uuml:"\xDC","Uuml;":"\xDC","VDash;":"\u22AB","Vbar;":"\u2AEB","Vcy;":"\u0412","Vdash;":"\u22A9","Vdashl;":"\u2AE6","Vee;":"\u22C1","Verbar;":"\u2016","Vert;":"\u2016","VerticalBar;":"\u2223","VerticalLine;":"|","VerticalSeparator;":"\u2758","VerticalTilde;":"\u2240","VeryThinSpace;":"\u200A","Vfr;":"\u{1D519}","Vopf;":"\u{1D54D}","Vscr;":"\u{1D4B1}","Vvdash;":"\u22AA","Wcirc;":"\u0174","Wedge;":"\u22C0","Wfr;":"\u{1D51A}","Wopf;":"\u{1D54E}","Wscr;":"\u{1D4B2}","Xfr;":"\u{1D51B}","Xi;":"\u039E","Xopf;":"\u{1D54F}","Xscr;":"\u{1D4B3}","YAcy;":"\u042F","YIcy;":"\u0407","YUcy;":"\u042E",Yacute:"\xDD","Yacute;":"\xDD","Ycirc;":"\u0176","Ycy;":"\u042B","Yfr;":"\u{1D51C}","Yopf;":"\u{1D550}","Yscr;":"\u{1D4B4}","Yuml;":"\u0178","ZHcy;":"\u0416","Zacute;":"\u0179","Zcaron;":"\u017D","Zcy;":"\u0417","Zdot;":"\u017B","ZeroWidthSpace;":"\u200B","Zeta;":"\u0396","Zfr;":"\u2128","Zopf;":"\u2124","Zscr;":"\u{1D4B5}",aacute:"\xE1","aacute;":"\xE1","abreve;":"\u0103","ac;":"\u223E","acE;":"\u223E\u0333","acd;":"\u223F",acirc:"\xE2","acirc;":"\xE2",acute:"\xB4","acute;":"\xB4","acy;":"\u0430",aelig:"\xE6","aelig;":"\xE6","af;":"\u2061","afr;":"\u{1D51E}",agrave:"\xE0","agrave;":"\xE0","alefsym;":"\u2135","aleph;":"\u2135","alpha;":"\u03B1","amacr;":"\u0101","amalg;":"\u2A3F",amp:"&","amp;":"&","and;":"\u2227","andand;":"\u2A55","andd;":"\u2A5C","andslope;":"\u2A58","andv;":"\u2A5A","ang;":"\u2220","ange;":"\u29A4","angle;":"\u2220","angmsd;":"\u2221","angmsdaa;":"\u29A8","angmsdab;":"\u29A9","angmsdac;":"\u29AA","angmsdad;":"\u29AB","angmsdae;":"\u29AC","angmsdaf;":"\u29AD","angmsdag;":"\u29AE","angmsdah;":"\u29AF","angrt;":"\u221F","angrtvb;":"\u22BE","angrtvbd;":"\u299D","angsph;":"\u2222","angst;":"\xC5","angzarr;":"\u237C","aogon;":"\u0105","aopf;":"\u{1D552}","ap;":"\u2248","apE;":"\u2A70","apacir;":"\u2A6F","ape;":"\u224A","apid;":"\u224B","apos;":"'","approx;":"\u2248","approxeq;":"\u224A",aring:"\xE5","aring;":"\xE5","ascr;":"\u{1D4B6}","ast;":"*","asymp;":"\u2248","asympeq;":"\u224D",atilde:"\xE3","atilde;":"\xE3",auml:"\xE4","auml;":"\xE4","awconint;":"\u2233","awint;":"\u2A11","bNot;":"\u2AED","backcong;":"\u224C","backepsilon;":"\u03F6","backprime;":"\u2035","backsim;":"\u223D","backsimeq;":"\u22CD","barvee;":"\u22BD","barwed;":"\u2305","barwedge;":"\u2305","bbrk;":"\u23B5","bbrktbrk;":"\u23B6","bcong;":"\u224C","bcy;":"\u0431","bdquo;":"\u201E","becaus;":"\u2235","because;":"\u2235","bemptyv;":"\u29B0","bepsi;":"\u03F6","bernou;":"\u212C","beta;":"\u03B2","beth;":"\u2136","between;":"\u226C","bfr;":"\u{1D51F}","bigcap;":"\u22C2","bigcirc;":"\u25EF","bigcup;":"\u22C3","bigodot;":"\u2A00","bigoplus;":"\u2A01","bigotimes;":"\u2A02","bigsqcup;":"\u2A06","bigstar;":"\u2605","bigtriangledown;":"\u25BD","bigtriangleup;":"\u25B3","biguplus;":"\u2A04","bigvee;":"\u22C1","bigwedge;":"\u22C0","bkarow;":"\u290D","blacklozenge;":"\u29EB","blacksquare;":"\u25AA","blacktriangle;":"\u25B4","blacktriangledown;":"\u25BE","blacktriangleleft;":"\u25C2","blacktriangleright;":"\u25B8","blank;":"\u2423","blk12;":"\u2592","blk14;":"\u2591","blk34;":"\u2593","block;":"\u2588","bne;":"=\u20E5","bnequiv;":"\u2261\u20E5","bnot;":"\u2310","bopf;":"\u{1D553}","bot;":"\u22A5","bottom;":"\u22A5","bowtie;":"\u22C8","boxDL;":"\u2557","boxDR;":"\u2554","boxDl;":"\u2556","boxDr;":"\u2553","boxH;":"\u2550","boxHD;":"\u2566","boxHU;":"\u2569","boxHd;":"\u2564","boxHu;":"\u2567","boxUL;":"\u255D","boxUR;":"\u255A","boxUl;":"\u255C","boxUr;":"\u2559","boxV;":"\u2551","boxVH;":"\u256C","boxVL;":"\u2563","boxVR;":"\u2560","boxVh;":"\u256B","boxVl;":"\u2562","boxVr;":"\u255F","boxbox;":"\u29C9","boxdL;":"\u2555","boxdR;":"\u2552","boxdl;":"\u2510","boxdr;":"\u250C","boxh;":"\u2500","boxhD;":"\u2565","boxhU;":"\u2568","boxhd;":"\u252C","boxhu;":"\u2534","boxminus;":"\u229F","boxplus;":"\u229E","boxtimes;":"\u22A0","boxuL;":"\u255B","boxuR;":"\u2558","boxul;":"\u2518","boxur;":"\u2514","boxv;":"\u2502","boxvH;":"\u256A","boxvL;":"\u2561","boxvR;":"\u255E","boxvh;":"\u253C","boxvl;":"\u2524","boxvr;":"\u251C","bprime;":"\u2035","breve;":"\u02D8",brvbar:"\xA6","brvbar;":"\xA6","bscr;":"\u{1D4B7}","bsemi;":"\u204F","bsim;":"\u223D","bsime;":"\u22CD","bsol;":"\\","bsolb;":"\u29C5","bsolhsub;":"\u27C8","bull;":"\u2022","bullet;":"\u2022","bump;":"\u224E","bumpE;":"\u2AAE","bumpe;":"\u224F","bumpeq;":"\u224F","cacute;":"\u0107","cap;":"\u2229","capand;":"\u2A44","capbrcup;":"\u2A49","capcap;":"\u2A4B","capcup;":"\u2A47","capdot;":"\u2A40","caps;":"\u2229\uFE00","caret;":"\u2041","caron;":"\u02C7","ccaps;":"\u2A4D","ccaron;":"\u010D",ccedil:"\xE7","ccedil;":"\xE7","ccirc;":"\u0109","ccups;":"\u2A4C","ccupssm;":"\u2A50","cdot;":"\u010B",cedil:"\xB8","cedil;":"\xB8","cemptyv;":"\u29B2",cent:"\xA2","cent;":"\xA2","centerdot;":"\xB7","cfr;":"\u{1D520}","chcy;":"\u0447","check;":"\u2713","checkmark;":"\u2713","chi;":"\u03C7","cir;":"\u25CB","cirE;":"\u29C3","circ;":"\u02C6","circeq;":"\u2257","circlearrowleft;":"\u21BA","circlearrowright;":"\u21BB","circledR;":"\xAE","circledS;":"\u24C8","circledast;":"\u229B","circledcirc;":"\u229A","circleddash;":"\u229D","cire;":"\u2257","cirfnint;":"\u2A10","cirmid;":"\u2AEF","cirscir;":"\u29C2","clubs;":"\u2663","clubsuit;":"\u2663","colon;":":","colone;":"\u2254","coloneq;":"\u2254","comma;":",","commat;":"@","comp;":"\u2201","compfn;":"\u2218","complement;":"\u2201","complexes;":"\u2102","cong;":"\u2245","congdot;":"\u2A6D","conint;":"\u222E","copf;":"\u{1D554}","coprod;":"\u2210",copy:"\xA9","copy;":"\xA9","copysr;":"\u2117","crarr;":"\u21B5","cross;":"\u2717","cscr;":"\u{1D4B8}","csub;":"\u2ACF","csube;":"\u2AD1","csup;":"\u2AD0","csupe;":"\u2AD2","ctdot;":"\u22EF","cudarrl;":"\u2938","cudarrr;":"\u2935","cuepr;":"\u22DE","cuesc;":"\u22DF","cularr;":"\u21B6","cularrp;":"\u293D","cup;":"\u222A","cupbrcap;":"\u2A48","cupcap;":"\u2A46","cupcup;":"\u2A4A","cupdot;":"\u228D","cupor;":"\u2A45","cups;":"\u222A\uFE00","curarr;":"\u21B7","curarrm;":"\u293C","curlyeqprec;":"\u22DE","curlyeqsucc;":"\u22DF","curlyvee;":"\u22CE","curlywedge;":"\u22CF",curren:"\xA4","curren;":"\xA4","curvearrowleft;":"\u21B6","curvearrowright;":"\u21B7","cuvee;":"\u22CE","cuwed;":"\u22CF","cwconint;":"\u2232","cwint;":"\u2231","cylcty;":"\u232D","dArr;":"\u21D3","dHar;":"\u2965","dagger;":"\u2020","daleth;":"\u2138","darr;":"\u2193","dash;":"\u2010","dashv;":"\u22A3","dbkarow;":"\u290F","dblac;":"\u02DD","dcaron;":"\u010F","dcy;":"\u0434","dd;":"\u2146","ddagger;":"\u2021","ddarr;":"\u21CA","ddotseq;":"\u2A77",deg:"\xB0","deg;":"\xB0","delta;":"\u03B4","demptyv;":"\u29B1","dfisht;":"\u297F","dfr;":"\u{1D521}","dharl;":"\u21C3","dharr;":"\u21C2","diam;":"\u22C4","diamond;":"\u22C4","diamondsuit;":"\u2666","diams;":"\u2666","die;":"\xA8","digamma;":"\u03DD","disin;":"\u22F2","div;":"\xF7",divide:"\xF7","divide;":"\xF7","divideontimes;":"\u22C7","divonx;":"\u22C7","djcy;":"\u0452","dlcorn;":"\u231E","dlcrop;":"\u230D","dollar;":"$","dopf;":"\u{1D555}","dot;":"\u02D9","doteq;":"\u2250","doteqdot;":"\u2251","dotminus;":"\u2238","dotplus;":"\u2214","dotsquare;":"\u22A1","doublebarwedge;":"\u2306","downarrow;":"\u2193","downdownarrows;":"\u21CA","downharpoonleft;":"\u21C3","downharpoonright;":"\u21C2","drbkarow;":"\u2910","drcorn;":"\u231F","drcrop;":"\u230C","dscr;":"\u{1D4B9}","dscy;":"\u0455","dsol;":"\u29F6","dstrok;":"\u0111","dtdot;":"\u22F1","dtri;":"\u25BF","dtrif;":"\u25BE","duarr;":"\u21F5","duhar;":"\u296F","dwangle;":"\u29A6","dzcy;":"\u045F","dzigrarr;":"\u27FF","eDDot;":"\u2A77","eDot;":"\u2251",eacute:"\xE9","eacute;":"\xE9","easter;":"\u2A6E","ecaron;":"\u011B","ecir;":"\u2256",ecirc:"\xEA","ecirc;":"\xEA","ecolon;":"\u2255","ecy;":"\u044D","edot;":"\u0117","ee;":"\u2147","efDot;":"\u2252","efr;":"\u{1D522}","eg;":"\u2A9A",egrave:"\xE8","egrave;":"\xE8","egs;":"\u2A96","egsdot;":"\u2A98","el;":"\u2A99","elinters;":"\u23E7","ell;":"\u2113","els;":"\u2A95","elsdot;":"\u2A97","emacr;":"\u0113","empty;":"\u2205","emptyset;":"\u2205","emptyv;":"\u2205","emsp13;":"\u2004","emsp14;":"\u2005","emsp;":"\u2003","eng;":"\u014B","ensp;":"\u2002","eogon;":"\u0119","eopf;":"\u{1D556}","epar;":"\u22D5","eparsl;":"\u29E3","eplus;":"\u2A71","epsi;":"\u03B5","epsilon;":"\u03B5","epsiv;":"\u03F5","eqcirc;":"\u2256","eqcolon;":"\u2255","eqsim;":"\u2242","eqslantgtr;":"\u2A96","eqslantless;":"\u2A95","equals;":"=","equest;":"\u225F","equiv;":"\u2261","equivDD;":"\u2A78","eqvparsl;":"\u29E5","erDot;":"\u2253","erarr;":"\u2971","escr;":"\u212F","esdot;":"\u2250","esim;":"\u2242","eta;":"\u03B7",eth:"\xF0","eth;":"\xF0",euml:"\xEB","euml;":"\xEB","euro;":"\u20AC","excl;":"!","exist;":"\u2203","expectation;":"\u2130","exponentiale;":"\u2147","fallingdotseq;":"\u2252","fcy;":"\u0444","female;":"\u2640","ffilig;":"\uFB03","fflig;":"\uFB00","ffllig;":"\uFB04","ffr;":"\u{1D523}","filig;":"\uFB01","fjlig;":"fj","flat;":"\u266D","fllig;":"\uFB02","fltns;":"\u25B1","fnof;":"\u0192","fopf;":"\u{1D557}","forall;":"\u2200","fork;":"\u22D4","forkv;":"\u2AD9","fpartint;":"\u2A0D",frac12:"\xBD","frac12;":"\xBD","frac13;":"\u2153",frac14:"\xBC","frac14;":"\xBC","frac15;":"\u2155","frac16;":"\u2159","frac18;":"\u215B","frac23;":"\u2154","frac25;":"\u2156",frac34:"\xBE","frac34;":"\xBE","frac35;":"\u2157","frac38;":"\u215C","frac45;":"\u2158","frac56;":"\u215A","frac58;":"\u215D","frac78;":"\u215E","frasl;":"\u2044","frown;":"\u2322","fscr;":"\u{1D4BB}","gE;":"\u2267","gEl;":"\u2A8C","gacute;":"\u01F5","gamma;":"\u03B3","gammad;":"\u03DD","gap;":"\u2A86","gbreve;":"\u011F","gcirc;":"\u011D","gcy;":"\u0433","gdot;":"\u0121","ge;":"\u2265","gel;":"\u22DB","geq;":"\u2265","geqq;":"\u2267","geqslant;":"\u2A7E","ges;":"\u2A7E","gescc;":"\u2AA9","gesdot;":"\u2A80","gesdoto;":"\u2A82","gesdotol;":"\u2A84","gesl;":"\u22DB\uFE00","gesles;":"\u2A94","gfr;":"\u{1D524}","gg;":"\u226B","ggg;":"\u22D9","gimel;":"\u2137","gjcy;":"\u0453","gl;":"\u2277","glE;":"\u2A92","gla;":"\u2AA5","glj;":"\u2AA4","gnE;":"\u2269","gnap;":"\u2A8A","gnapprox;":"\u2A8A","gne;":"\u2A88","gneq;":"\u2A88","gneqq;":"\u2269","gnsim;":"\u22E7","gopf;":"\u{1D558}","grave;":"`","gscr;":"\u210A","gsim;":"\u2273","gsime;":"\u2A8E","gsiml;":"\u2A90",gt:">","gt;":">","gtcc;":"\u2AA7","gtcir;":"\u2A7A","gtdot;":"\u22D7","gtlPar;":"\u2995","gtquest;":"\u2A7C","gtrapprox;":"\u2A86","gtrarr;":"\u2978","gtrdot;":"\u22D7","gtreqless;":"\u22DB","gtreqqless;":"\u2A8C","gtrless;":"\u2277","gtrsim;":"\u2273","gvertneqq;":"\u2269\uFE00","gvnE;":"\u2269\uFE00","hArr;":"\u21D4","hairsp;":"\u200A","half;":"\xBD","hamilt;":"\u210B","hardcy;":"\u044A","harr;":"\u2194","harrcir;":"\u2948","harrw;":"\u21AD","hbar;":"\u210F","hcirc;":"\u0125","hearts;":"\u2665","heartsuit;":"\u2665","hellip;":"\u2026","hercon;":"\u22B9","hfr;":"\u{1D525}","hksearow;":"\u2925","hkswarow;":"\u2926","hoarr;":"\u21FF","homtht;":"\u223B","hookleftarrow;":"\u21A9","hookrightarrow;":"\u21AA","hopf;":"\u{1D559}","horbar;":"\u2015","hscr;":"\u{1D4BD}","hslash;":"\u210F","hstrok;":"\u0127","hybull;":"\u2043","hyphen;":"\u2010",iacute:"\xED","iacute;":"\xED","ic;":"\u2063",icirc:"\xEE","icirc;":"\xEE","icy;":"\u0438","iecy;":"\u0435",iexcl:"\xA1","iexcl;":"\xA1","iff;":"\u21D4","ifr;":"\u{1D526}",igrave:"\xEC","igrave;":"\xEC","ii;":"\u2148","iiiint;":"\u2A0C","iiint;":"\u222D","iinfin;":"\u29DC","iiota;":"\u2129","ijlig;":"\u0133","imacr;":"\u012B","image;":"\u2111","imagline;":"\u2110","imagpart;":"\u2111","imath;":"\u0131","imof;":"\u22B7","imped;":"\u01B5","in;":"\u2208","incare;":"\u2105","infin;":"\u221E","infintie;":"\u29DD","inodot;":"\u0131","int;":"\u222B","intcal;":"\u22BA","integers;":"\u2124","intercal;":"\u22BA","intlarhk;":"\u2A17","intprod;":"\u2A3C","iocy;":"\u0451","iogon;":"\u012F","iopf;":"\u{1D55A}","iota;":"\u03B9","iprod;":"\u2A3C",iquest:"\xBF","iquest;":"\xBF","iscr;":"\u{1D4BE}","isin;":"\u2208","isinE;":"\u22F9","isindot;":"\u22F5","isins;":"\u22F4","isinsv;":"\u22F3","isinv;":"\u2208","it;":"\u2062","itilde;":"\u0129","iukcy;":"\u0456",iuml:"\xEF","iuml;":"\xEF","jcirc;":"\u0135","jcy;":"\u0439","jfr;":"\u{1D527}","jmath;":"\u0237","jopf;":"\u{1D55B}","jscr;":"\u{1D4BF}","jsercy;":"\u0458","jukcy;":"\u0454","kappa;":"\u03BA","kappav;":"\u03F0","kcedil;":"\u0137","kcy;":"\u043A","kfr;":"\u{1D528}","kgreen;":"\u0138","khcy;":"\u0445","kjcy;":"\u045C","kopf;":"\u{1D55C}","kscr;":"\u{1D4C0}","lAarr;":"\u21DA","lArr;":"\u21D0","lAtail;":"\u291B","lBarr;":"\u290E","lE;":"\u2266","lEg;":"\u2A8B","lHar;":"\u2962","lacute;":"\u013A","laemptyv;":"\u29B4","lagran;":"\u2112","lambda;":"\u03BB","lang;":"\u27E8","langd;":"\u2991","langle;":"\u27E8","lap;":"\u2A85",laquo:"\xAB","laquo;":"\xAB","larr;":"\u2190","larrb;":"\u21E4","larrbfs;":"\u291F","larrfs;":"\u291D","larrhk;":"\u21A9","larrlp;":"\u21AB","larrpl;":"\u2939","larrsim;":"\u2973","larrtl;":"\u21A2","lat;":"\u2AAB","latail;":"\u2919","late;":"\u2AAD","lates;":"\u2AAD\uFE00","lbarr;":"\u290C","lbbrk;":"\u2772","lbrace;":"{","lbrack;":"[","lbrke;":"\u298B","lbrksld;":"\u298F","lbrkslu;":"\u298D","lcaron;":"\u013E","lcedil;":"\u013C","lceil;":"\u2308","lcub;":"{","lcy;":"\u043B","ldca;":"\u2936","ldquo;":"\u201C","ldquor;":"\u201E","ldrdhar;":"\u2967","ldrushar;":"\u294B","ldsh;":"\u21B2","le;":"\u2264","leftarrow;":"\u2190","leftarrowtail;":"\u21A2","leftharpoondown;":"\u21BD","leftharpoonup;":"\u21BC","leftleftarrows;":"\u21C7","leftrightarrow;":"\u2194","leftrightarrows;":"\u21C6","leftrightharpoons;":"\u21CB","leftrightsquigarrow;":"\u21AD","leftthreetimes;":"\u22CB","leg;":"\u22DA","leq;":"\u2264","leqq;":"\u2266","leqslant;":"\u2A7D","les;":"\u2A7D","lescc;":"\u2AA8","lesdot;":"\u2A7F","lesdoto;":"\u2A81","lesdotor;":"\u2A83","lesg;":"\u22DA\uFE00","lesges;":"\u2A93","lessapprox;":"\u2A85","lessdot;":"\u22D6","lesseqgtr;":"\u22DA","lesseqqgtr;":"\u2A8B","lessgtr;":"\u2276","lesssim;":"\u2272","lfisht;":"\u297C","lfloor;":"\u230A","lfr;":"\u{1D529}","lg;":"\u2276","lgE;":"\u2A91","lhard;":"\u21BD","lharu;":"\u21BC","lharul;":"\u296A","lhblk;":"\u2584","ljcy;":"\u0459","ll;":"\u226A","llarr;":"\u21C7","llcorner;":"\u231E","llhard;":"\u296B","lltri;":"\u25FA","lmidot;":"\u0140","lmoust;":"\u23B0","lmoustache;":"\u23B0","lnE;":"\u2268","lnap;":"\u2A89","lnapprox;":"\u2A89","lne;":"\u2A87","lneq;":"\u2A87","lneqq;":"\u2268","lnsim;":"\u22E6","loang;":"\u27EC","loarr;":"\u21FD","lobrk;":"\u27E6","longleftarrow;":"\u27F5","longleftrightarrow;":"\u27F7","longmapsto;":"\u27FC","longrightarrow;":"\u27F6","looparrowleft;":"\u21AB","looparrowright;":"\u21AC","lopar;":"\u2985","lopf;":"\u{1D55D}","loplus;":"\u2A2D","lotimes;":"\u2A34","lowast;":"\u2217","lowbar;":"_","loz;":"\u25CA","lozenge;":"\u25CA","lozf;":"\u29EB","lpar;":"(","lparlt;":"\u2993","lrarr;":"\u21C6","lrcorner;":"\u231F","lrhar;":"\u21CB","lrhard;":"\u296D","lrm;":"\u200E","lrtri;":"\u22BF","lsaquo;":"\u2039","lscr;":"\u{1D4C1}","lsh;":"\u21B0","lsim;":"\u2272","lsime;":"\u2A8D","lsimg;":"\u2A8F","lsqb;":"[","lsquo;":"\u2018","lsquor;":"\u201A","lstrok;":"\u0142",lt:"<","lt;":"<","ltcc;":"\u2AA6","ltcir;":"\u2A79","ltdot;":"\u22D6","lthree;":"\u22CB","ltimes;":"\u22C9","ltlarr;":"\u2976","ltquest;":"\u2A7B","ltrPar;":"\u2996","ltri;":"\u25C3","ltrie;":"\u22B4","ltrif;":"\u25C2","lurdshar;":"\u294A","luruhar;":"\u2966","lvertneqq;":"\u2268\uFE00","lvnE;":"\u2268\uFE00","mDDot;":"\u223A",macr:"\xAF","macr;":"\xAF","male;":"\u2642","malt;":"\u2720","maltese;":"\u2720","map;":"\u21A6","mapsto;":"\u21A6","mapstodown;":"\u21A7","mapstoleft;":"\u21A4","mapstoup;":"\u21A5","marker;":"\u25AE","mcomma;":"\u2A29","mcy;":"\u043C","mdash;":"\u2014","measuredangle;":"\u2221","mfr;":"\u{1D52A}","mho;":"\u2127",micro:"\xB5","micro;":"\xB5","mid;":"\u2223","midast;":"*","midcir;":"\u2AF0",middot:"\xB7","middot;":"\xB7","minus;":"\u2212","minusb;":"\u229F","minusd;":"\u2238","minusdu;":"\u2A2A","mlcp;":"\u2ADB","mldr;":"\u2026","mnplus;":"\u2213","models;":"\u22A7","mopf;":"\u{1D55E}","mp;":"\u2213","mscr;":"\u{1D4C2}","mstpos;":"\u223E","mu;":"\u03BC","multimap;":"\u22B8","mumap;":"\u22B8","nGg;":"\u22D9\u0338","nGt;":"\u226B\u20D2","nGtv;":"\u226B\u0338","nLeftarrow;":"\u21CD","nLeftrightarrow;":"\u21CE","nLl;":"\u22D8\u0338","nLt;":"\u226A\u20D2","nLtv;":"\u226A\u0338","nRightarrow;":"\u21CF","nVDash;":"\u22AF","nVdash;":"\u22AE","nabla;":"\u2207","nacute;":"\u0144","nang;":"\u2220\u20D2","nap;":"\u2249","napE;":"\u2A70\u0338","napid;":"\u224B\u0338","napos;":"\u0149","napprox;":"\u2249","natur;":"\u266E","natural;":"\u266E","naturals;":"\u2115",nbsp:"\xA0","nbsp;":"\xA0","nbump;":"\u224E\u0338","nbumpe;":"\u224F\u0338","ncap;":"\u2A43","ncaron;":"\u0148","ncedil;":"\u0146","ncong;":"\u2247","ncongdot;":"\u2A6D\u0338","ncup;":"\u2A42","ncy;":"\u043D","ndash;":"\u2013","ne;":"\u2260","neArr;":"\u21D7","nearhk;":"\u2924","nearr;":"\u2197","nearrow;":"\u2197","nedot;":"\u2250\u0338","nequiv;":"\u2262","nesear;":"\u2928","nesim;":"\u2242\u0338","nexist;":"\u2204","nexists;":"\u2204","nfr;":"\u{1D52B}","ngE;":"\u2267\u0338","nge;":"\u2271","ngeq;":"\u2271","ngeqq;":"\u2267\u0338","ngeqslant;":"\u2A7E\u0338","nges;":"\u2A7E\u0338","ngsim;":"\u2275","ngt;":"\u226F","ngtr;":"\u226F","nhArr;":"\u21CE","nharr;":"\u21AE","nhpar;":"\u2AF2","ni;":"\u220B","nis;":"\u22FC","nisd;":"\u22FA","niv;":"\u220B","njcy;":"\u045A","nlArr;":"\u21CD","nlE;":"\u2266\u0338","nlarr;":"\u219A","nldr;":"\u2025","nle;":"\u2270","nleftarrow;":"\u219A","nleftrightarrow;":"\u21AE","nleq;":"\u2270","nleqq;":"\u2266\u0338","nleqslant;":"\u2A7D\u0338","nles;":"\u2A7D\u0338","nless;":"\u226E","nlsim;":"\u2274","nlt;":"\u226E","nltri;":"\u22EA","nltrie;":"\u22EC","nmid;":"\u2224","nopf;":"\u{1D55F}",not:"\xAC","not;":"\xAC","notin;":"\u2209","notinE;":"\u22F9\u0338","notindot;":"\u22F5\u0338","notinva;":"\u2209","notinvb;":"\u22F7","notinvc;":"\u22F6","notni;":"\u220C","notniva;":"\u220C","notnivb;":"\u22FE","notnivc;":"\u22FD","npar;":"\u2226","nparallel;":"\u2226","nparsl;":"\u2AFD\u20E5","npart;":"\u2202\u0338","npolint;":"\u2A14","npr;":"\u2280","nprcue;":"\u22E0","npre;":"\u2AAF\u0338","nprec;":"\u2280","npreceq;":"\u2AAF\u0338","nrArr;":"\u21CF","nrarr;":"\u219B","nrarrc;":"\u2933\u0338","nrarrw;":"\u219D\u0338","nrightarrow;":"\u219B","nrtri;":"\u22EB","nrtrie;":"\u22ED","nsc;":"\u2281","nsccue;":"\u22E1","nsce;":"\u2AB0\u0338","nscr;":"\u{1D4C3}","nshortmid;":"\u2224","nshortparallel;":"\u2226","nsim;":"\u2241","nsime;":"\u2244","nsimeq;":"\u2244","nsmid;":"\u2224","nspar;":"\u2226","nsqsube;":"\u22E2","nsqsupe;":"\u22E3","nsub;":"\u2284","nsubE;":"\u2AC5\u0338","nsube;":"\u2288","nsubset;":"\u2282\u20D2","nsubseteq;":"\u2288","nsubseteqq;":"\u2AC5\u0338","nsucc;":"\u2281","nsucceq;":"\u2AB0\u0338","nsup;":"\u2285","nsupE;":"\u2AC6\u0338","nsupe;":"\u2289","nsupset;":"\u2283\u20D2","nsupseteq;":"\u2289","nsupseteqq;":"\u2AC6\u0338","ntgl;":"\u2279",ntilde:"\xF1","ntilde;":"\xF1","ntlg;":"\u2278","ntriangleleft;":"\u22EA","ntrianglelefteq;":"\u22EC","ntriangleright;":"\u22EB","ntrianglerighteq;":"\u22ED","nu;":"\u03BD","num;":"#","numero;":"\u2116","numsp;":"\u2007","nvDash;":"\u22AD","nvHarr;":"\u2904","nvap;":"\u224D\u20D2","nvdash;":"\u22AC","nvge;":"\u2265\u20D2","nvgt;":">\u20D2","nvinfin;":"\u29DE","nvlArr;":"\u2902","nvle;":"\u2264\u20D2","nvlt;":"<\u20D2","nvltrie;":"\u22B4\u20D2","nvrArr;":"\u2903","nvrtrie;":"\u22B5\u20D2","nvsim;":"\u223C\u20D2","nwArr;":"\u21D6","nwarhk;":"\u2923","nwarr;":"\u2196","nwarrow;":"\u2196","nwnear;":"\u2927","oS;":"\u24C8",oacute:"\xF3","oacute;":"\xF3","oast;":"\u229B","ocir;":"\u229A",ocirc:"\xF4","ocirc;":"\xF4","ocy;":"\u043E","odash;":"\u229D","odblac;":"\u0151","odiv;":"\u2A38","odot;":"\u2299","odsold;":"\u29BC","oelig;":"\u0153","ofcir;":"\u29BF","ofr;":"\u{1D52C}","ogon;":"\u02DB",ograve:"\xF2","ograve;":"\xF2","ogt;":"\u29C1","ohbar;":"\u29B5","ohm;":"\u03A9","oint;":"\u222E","olarr;":"\u21BA","olcir;":"\u29BE","olcross;":"\u29BB","oline;":"\u203E","olt;":"\u29C0","omacr;":"\u014D","omega;":"\u03C9","omicron;":"\u03BF","omid;":"\u29B6","ominus;":"\u2296","oopf;":"\u{1D560}","opar;":"\u29B7","operp;":"\u29B9","oplus;":"\u2295","or;":"\u2228","orarr;":"\u21BB","ord;":"\u2A5D","order;":"\u2134","orderof;":"\u2134",ordf:"\xAA","ordf;":"\xAA",ordm:"\xBA","ordm;":"\xBA","origof;":"\u22B6","oror;":"\u2A56","orslope;":"\u2A57","orv;":"\u2A5B","oscr;":"\u2134",oslash:"\xF8","oslash;":"\xF8","osol;":"\u2298",otilde:"\xF5","otilde;":"\xF5","otimes;":"\u2297","otimesas;":"\u2A36",ouml:"\xF6","ouml;":"\xF6","ovbar;":"\u233D","par;":"\u2225",para:"\xB6","para;":"\xB6","parallel;":"\u2225","parsim;":"\u2AF3","parsl;":"\u2AFD","part;":"\u2202","pcy;":"\u043F","percnt;":"%","period;":".","permil;":"\u2030","perp;":"\u22A5","pertenk;":"\u2031","pfr;":"\u{1D52D}","phi;":"\u03C6","phiv;":"\u03D5","phmmat;":"\u2133","phone;":"\u260E","pi;":"\u03C0","pitchfork;":"\u22D4","piv;":"\u03D6","planck;":"\u210F","planckh;":"\u210E","plankv;":"\u210F","plus;":"+","plusacir;":"\u2A23","plusb;":"\u229E","pluscir;":"\u2A22","plusdo;":"\u2214","plusdu;":"\u2A25","pluse;":"\u2A72",plusmn:"\xB1","plusmn;":"\xB1","plussim;":"\u2A26","plustwo;":"\u2A27","pm;":"\xB1","pointint;":"\u2A15","popf;":"\u{1D561}",pound:"\xA3","pound;":"\xA3","pr;":"\u227A","prE;":"\u2AB3","prap;":"\u2AB7","prcue;":"\u227C","pre;":"\u2AAF","prec;":"\u227A","precapprox;":"\u2AB7","preccurlyeq;":"\u227C","preceq;":"\u2AAF","precnapprox;":"\u2AB9","precneqq;":"\u2AB5","precnsim;":"\u22E8","precsim;":"\u227E","prime;":"\u2032","primes;":"\u2119","prnE;":"\u2AB5","prnap;":"\u2AB9","prnsim;":"\u22E8","prod;":"\u220F","profalar;":"\u232E","profline;":"\u2312","profsurf;":"\u2313","prop;":"\u221D","propto;":"\u221D","prsim;":"\u227E","prurel;":"\u22B0","pscr;":"\u{1D4C5}","psi;":"\u03C8","puncsp;":"\u2008","qfr;":"\u{1D52E}","qint;":"\u2A0C","qopf;":"\u{1D562}","qprime;":"\u2057","qscr;":"\u{1D4C6}","quaternions;":"\u210D","quatint;":"\u2A16","quest;":"?","questeq;":"\u225F",quot:'"',"quot;":'"',"rAarr;":"\u21DB","rArr;":"\u21D2","rAtail;":"\u291C","rBarr;":"\u290F","rHar;":"\u2964","race;":"\u223D\u0331","racute;":"\u0155","radic;":"\u221A","raemptyv;":"\u29B3","rang;":"\u27E9","rangd;":"\u2992","range;":"\u29A5","rangle;":"\u27E9",raquo:"\xBB","raquo;":"\xBB","rarr;":"\u2192","rarrap;":"\u2975","rarrb;":"\u21E5","rarrbfs;":"\u2920","rarrc;":"\u2933","rarrfs;":"\u291E","rarrhk;":"\u21AA","rarrlp;":"\u21AC","rarrpl;":"\u2945","rarrsim;":"\u2974","rarrtl;":"\u21A3","rarrw;":"\u219D","ratail;":"\u291A","ratio;":"\u2236","rationals;":"\u211A","rbarr;":"\u290D","rbbrk;":"\u2773","rbrace;":"}","rbrack;":"]","rbrke;":"\u298C","rbrksld;":"\u298E","rbrkslu;":"\u2990","rcaron;":"\u0159","rcedil;":"\u0157","rceil;":"\u2309","rcub;":"}","rcy;":"\u0440","rdca;":"\u2937","rdldhar;":"\u2969","rdquo;":"\u201D","rdquor;":"\u201D","rdsh;":"\u21B3","real;":"\u211C","realine;":"\u211B","realpart;":"\u211C","reals;":"\u211D","rect;":"\u25AD",reg:"\xAE","reg;":"\xAE","rfisht;":"\u297D","rfloor;":"\u230B","rfr;":"\u{1D52F}","rhard;":"\u21C1","rharu;":"\u21C0","rharul;":"\u296C","rho;":"\u03C1","rhov;":"\u03F1","rightarrow;":"\u2192","rightarrowtail;":"\u21A3","rightharpoondown;":"\u21C1","rightharpoonup;":"\u21C0","rightleftarrows;":"\u21C4","rightleftharpoons;":"\u21CC","rightrightarrows;":"\u21C9","rightsquigarrow;":"\u219D","rightthreetimes;":"\u22CC","ring;":"\u02DA","risingdotseq;":"\u2253","rlarr;":"\u21C4","rlhar;":"\u21CC","rlm;":"\u200F","rmoust;":"\u23B1","rmoustache;":"\u23B1","rnmid;":"\u2AEE","roang;":"\u27ED","roarr;":"\u21FE","robrk;":"\u27E7","ropar;":"\u2986","ropf;":"\u{1D563}","roplus;":"\u2A2E","rotimes;":"\u2A35","rpar;":")","rpargt;":"\u2994","rppolint;":"\u2A12","rrarr;":"\u21C9","rsaquo;":"\u203A","rscr;":"\u{1D4C7}","rsh;":"\u21B1","rsqb;":"]","rsquo;":"\u2019","rsquor;":"\u2019","rthree;":"\u22CC","rtimes;":"\u22CA","rtri;":"\u25B9","rtrie;":"\u22B5","rtrif;":"\u25B8","rtriltri;":"\u29CE","ruluhar;":"\u2968","rx;":"\u211E","sacute;":"\u015B","sbquo;":"\u201A","sc;":"\u227B","scE;":"\u2AB4","scap;":"\u2AB8","scaron;":"\u0161","sccue;":"\u227D","sce;":"\u2AB0","scedil;":"\u015F","scirc;":"\u015D","scnE;":"\u2AB6","scnap;":"\u2ABA","scnsim;":"\u22E9","scpolint;":"\u2A13","scsim;":"\u227F","scy;":"\u0441","sdot;":"\u22C5","sdotb;":"\u22A1","sdote;":"\u2A66","seArr;":"\u21D8","searhk;":"\u2925","searr;":"\u2198","searrow;":"\u2198",sect:"\xA7","sect;":"\xA7","semi;":";","seswar;":"\u2929","setminus;":"\u2216","setmn;":"\u2216","sext;":"\u2736","sfr;":"\u{1D530}","sfrown;":"\u2322","sharp;":"\u266F","shchcy;":"\u0449","shcy;":"\u0448","shortmid;":"\u2223","shortparallel;":"\u2225",shy:"\xAD","shy;":"\xAD","sigma;":"\u03C3","sigmaf;":"\u03C2","sigmav;":"\u03C2","sim;":"\u223C","simdot;":"\u2A6A","sime;":"\u2243","simeq;":"\u2243","simg;":"\u2A9E","simgE;":"\u2AA0","siml;":"\u2A9D","simlE;":"\u2A9F","simne;":"\u2246","simplus;":"\u2A24","simrarr;":"\u2972","slarr;":"\u2190","smallsetminus;":"\u2216","smashp;":"\u2A33","smeparsl;":"\u29E4","smid;":"\u2223","smile;":"\u2323","smt;":"\u2AAA","smte;":"\u2AAC","smtes;":"\u2AAC\uFE00","softcy;":"\u044C","sol;":"/","solb;":"\u29C4","solbar;":"\u233F","sopf;":"\u{1D564}","spades;":"\u2660","spadesuit;":"\u2660","spar;":"\u2225","sqcap;":"\u2293","sqcaps;":"\u2293\uFE00","sqcup;":"\u2294","sqcups;":"\u2294\uFE00","sqsub;":"\u228F","sqsube;":"\u2291","sqsubset;":"\u228F","sqsubseteq;":"\u2291","sqsup;":"\u2290","sqsupe;":"\u2292","sqsupset;":"\u2290","sqsupseteq;":"\u2292","squ;":"\u25A1","square;":"\u25A1","squarf;":"\u25AA","squf;":"\u25AA","srarr;":"\u2192","sscr;":"\u{1D4C8}","ssetmn;":"\u2216","ssmile;":"\u2323","sstarf;":"\u22C6","star;":"\u2606","starf;":"\u2605","straightepsilon;":"\u03F5","straightphi;":"\u03D5","strns;":"\xAF","sub;":"\u2282","subE;":"\u2AC5","subdot;":"\u2ABD","sube;":"\u2286","subedot;":"\u2AC3","submult;":"\u2AC1","subnE;":"\u2ACB","subne;":"\u228A","subplus;":"\u2ABF","subrarr;":"\u2979","subset;":"\u2282","subseteq;":"\u2286","subseteqq;":"\u2AC5","subsetneq;":"\u228A","subsetneqq;":"\u2ACB","subsim;":"\u2AC7","subsub;":"\u2AD5","subsup;":"\u2AD3","succ;":"\u227B","succapprox;":"\u2AB8","succcurlyeq;":"\u227D","succeq;":"\u2AB0","succnapprox;":"\u2ABA","succneqq;":"\u2AB6","succnsim;":"\u22E9","succsim;":"\u227F","sum;":"\u2211","sung;":"\u266A",sup1:"\xB9","sup1;":"\xB9",sup2:"\xB2","sup2;":"\xB2",sup3:"\xB3","sup3;":"\xB3","sup;":"\u2283","supE;":"\u2AC6","supdot;":"\u2ABE","supdsub;":"\u2AD8","supe;":"\u2287","supedot;":"\u2AC4","suphsol;":"\u27C9","suphsub;":"\u2AD7","suplarr;":"\u297B","supmult;":"\u2AC2","supnE;":"\u2ACC","supne;":"\u228B","supplus;":"\u2AC0","supset;":"\u2283","supseteq;":"\u2287","supseteqq;":"\u2AC6","supsetneq;":"\u228B","supsetneqq;":"\u2ACC","supsim;":"\u2AC8","supsub;":"\u2AD4","supsup;":"\u2AD6","swArr;":"\u21D9","swarhk;":"\u2926","swarr;":"\u2199","swarrow;":"\u2199","swnwar;":"\u292A",szlig:"\xDF","szlig;":"\xDF","target;":"\u2316","tau;":"\u03C4","tbrk;":"\u23B4","tcaron;":"\u0165","tcedil;":"\u0163","tcy;":"\u0442","tdot;":"\u20DB","telrec;":"\u2315","tfr;":"\u{1D531}","there4;":"\u2234","therefore;":"\u2234","theta;":"\u03B8","thetasym;":"\u03D1","thetav;":"\u03D1","thickapprox;":"\u2248","thicksim;":"\u223C","thinsp;":"\u2009","thkap;":"\u2248","thksim;":"\u223C",thorn:"\xFE","thorn;":"\xFE","tilde;":"\u02DC",times:"\xD7","times;":"\xD7","timesb;":"\u22A0","timesbar;":"\u2A31","timesd;":"\u2A30","tint;":"\u222D","toea;":"\u2928","top;":"\u22A4","topbot;":"\u2336","topcir;":"\u2AF1","topf;":"\u{1D565}","topfork;":"\u2ADA","tosa;":"\u2929","tprime;":"\u2034","trade;":"\u2122","triangle;":"\u25B5","triangledown;":"\u25BF","triangleleft;":"\u25C3","trianglelefteq;":"\u22B4","triangleq;":"\u225C","triangleright;":"\u25B9","trianglerighteq;":"\u22B5","tridot;":"\u25EC","trie;":"\u225C","triminus;":"\u2A3A","triplus;":"\u2A39","trisb;":"\u29CD","tritime;":"\u2A3B","trpezium;":"\u23E2","tscr;":"\u{1D4C9}","tscy;":"\u0446","tshcy;":"\u045B","tstrok;":"\u0167","twixt;":"\u226C","twoheadleftarrow;":"\u219E","twoheadrightarrow;":"\u21A0","uArr;":"\u21D1","uHar;":"\u2963",uacute:"\xFA","uacute;":"\xFA","uarr;":"\u2191","ubrcy;":"\u045E","ubreve;":"\u016D",ucirc:"\xFB","ucirc;":"\xFB","ucy;":"\u0443","udarr;":"\u21C5","udblac;":"\u0171","udhar;":"\u296E","ufisht;":"\u297E","ufr;":"\u{1D532}",ugrave:"\xF9","ugrave;":"\xF9","uharl;":"\u21BF","uharr;":"\u21BE","uhblk;":"\u2580","ulcorn;":"\u231C","ulcorner;":"\u231C","ulcrop;":"\u230F","ultri;":"\u25F8","umacr;":"\u016B",uml:"\xA8","uml;":"\xA8","uogon;":"\u0173","uopf;":"\u{1D566}","uparrow;":"\u2191","updownarrow;":"\u2195","upharpoonleft;":"\u21BF","upharpoonright;":"\u21BE","uplus;":"\u228E","upsi;":"\u03C5","upsih;":"\u03D2","upsilon;":"\u03C5","upuparrows;":"\u21C8","urcorn;":"\u231D","urcorner;":"\u231D","urcrop;":"\u230E","uring;":"\u016F","urtri;":"\u25F9","uscr;":"\u{1D4CA}","utdot;":"\u22F0","utilde;":"\u0169","utri;":"\u25B5","utrif;":"\u25B4","uuarr;":"\u21C8",uuml:"\xFC","uuml;":"\xFC","uwangle;":"\u29A7","vArr;":"\u21D5","vBar;":"\u2AE8","vBarv;":"\u2AE9","vDash;":"\u22A8","vangrt;":"\u299C","varepsilon;":"\u03F5","varkappa;":"\u03F0","varnothing;":"\u2205","varphi;":"\u03D5","varpi;":"\u03D6","varpropto;":"\u221D","varr;":"\u2195","varrho;":"\u03F1","varsigma;":"\u03C2","varsubsetneq;":"\u228A\uFE00","varsubsetneqq;":"\u2ACB\uFE00","varsupsetneq;":"\u228B\uFE00","varsupsetneqq;":"\u2ACC\uFE00","vartheta;":"\u03D1","vartriangleleft;":"\u22B2","vartriangleright;":"\u22B3","vcy;":"\u0432","vdash;":"\u22A2","vee;":"\u2228","veebar;":"\u22BB","veeeq;":"\u225A","vellip;":"\u22EE","verbar;":"|","vert;":"|","vfr;":"\u{1D533}","vltri;":"\u22B2","vnsub;":"\u2282\u20D2","vnsup;":"\u2283\u20D2","vopf;":"\u{1D567}","vprop;":"\u221D","vrtri;":"\u22B3","vscr;":"\u{1D4CB}","vsubnE;":"\u2ACB\uFE00","vsubne;":"\u228A\uFE00","vsupnE;":"\u2ACC\uFE00","vsupne;":"\u228B\uFE00","vzigzag;":"\u299A","wcirc;":"\u0175","wedbar;":"\u2A5F","wedge;":"\u2227","wedgeq;":"\u2259","weierp;":"\u2118","wfr;":"\u{1D534}","wopf;":"\u{1D568}","wp;":"\u2118","wr;":"\u2240","wreath;":"\u2240","wscr;":"\u{1D4CC}","xcap;":"\u22C2","xcirc;":"\u25EF","xcup;":"\u22C3","xdtri;":"\u25BD","xfr;":"\u{1D535}","xhArr;":"\u27FA","xharr;":"\u27F7","xi;":"\u03BE","xlArr;":"\u27F8","xlarr;":"\u27F5","xmap;":"\u27FC","xnis;":"\u22FB","xodot;":"\u2A00","xopf;":"\u{1D569}","xoplus;":"\u2A01","xotime;":"\u2A02","xrArr;":"\u27F9","xrarr;":"\u27F6","xscr;":"\u{1D4CD}","xsqcup;":"\u2A06","xuplus;":"\u2A04","xutri;":"\u25B3","xvee;":"\u22C1","xwedge;":"\u22C0",yacute:"\xFD","yacute;":"\xFD","yacy;":"\u044F","ycirc;":"\u0177","ycy;":"\u044B",yen:"\xA5","yen;":"\xA5","yfr;":"\u{1D536}","yicy;":"\u0457","yopf;":"\u{1D56A}","yscr;":"\u{1D4CE}","yucy;":"\u044E",yuml:"\xFF","yuml;":"\xFF","zacute;":"\u017A","zcaron;":"\u017E","zcy;":"\u0437","zdot;":"\u017C","zeetrf;":"\u2128","zeta;":"\u03B6","zfr;":"\u{1D537}","zhcy;":"\u0436","zigrarr;":"\u21DD","zopf;":"\u{1D56B}","zscr;":"\u{1D4CF}","zwj;":"\u200D","zwnj;":"\u200C"},Er=32,Tr={AE:["AElig"],AM:["AMP"],Aa:["Aacute"],Ab:[],Ac:["Acirc"],Af:[],Ag:["Agrave"],Al:[],Am:[],An:[],Ao:[],Ap:[],Ar:["Aring"],As:[],At:["Atilde"],Au:["Auml"],Ba:[],Bc:[],Be:[],Bf:[],Bo:[],Br:[],Bs:[],Bu:[],CH:[],CO:["COPY"],Ca:[],Cc:["Ccedil"],Cd:[],Ce:[],Cf:[],Ch:[],Ci:[],Cl:[],Co:[],Cr:[],Cs:[],Cu:[],DD:[],DJ:[],DS:[],DZ:[],Da:[],Dc:[],De:[],Df:[],Di:[],Do:[],Ds:[],EN:[],ET:["ETH"],Ea:["Eacute"],Ec:["Ecirc"],Ed:[],Ef:[],Eg:["Egrave"],El:[],Em:[],Eo:[],Ep:[],Eq:[],Es:[],Et:[],Eu:["Euml"],Ex:[],Fc:[],Ff:[],Fi:[],Fo:[],Fs:[],GJ:[],GT:["GT"],Ga:[],Gb:[],Gc:[],Gd:[],Gf:[],Gg:[],Go:[],Gr:[],Gs:[],Gt:[],HA:[],Ha:[],Hc:[],Hf:[],Hi:[],Ho:[],Hs:[],Hu:[],IE:[],IJ:[],IO:[],Ia:["Iacute"],Ic:["Icirc"],Id:[],If:[],Ig:["Igrave"],Im:[],In:[],Io:[],Is:[],It:[],Iu:["Iuml"],Jc:[],Jf:[],Jo:[],Js:[],Ju:[],KH:[],KJ:[],Ka:[],Kc:[],Kf:[],Ko:[],Ks:[],LJ:[],LT:["LT"],La:[],Lc:[],Le:[],Lf:[],Ll:[],Lm:[],Lo:[],Ls:[],Lt:[],Ma:[],Mc:[],Me:[],Mf:[],Mi:[],Mo:[],Ms:[],Mu:[],NJ:[],Na:[],Nc:[],Ne:[],Nf:[],No:[],Ns:[],Nt:["Ntilde"],Nu:[],OE:[],Oa:["Oacute"],Oc:["Ocirc"],Od:[],Of:[],Og:["Ograve"],Om:[],Oo:[],Op:[],Or:[],Os:["Oslash"],Ot:["Otilde"],Ou:["Ouml"],Ov:[],Pa:[],Pc:[],Pf:[],Ph:[],Pi:[],Pl:[],Po:[],Pr:[],Ps:[],QU:["QUOT"],Qf:[],Qo:[],Qs:[],RB:[],RE:["REG"],Ra:[],Rc:[],Re:[],Rf:[],Rh:[],Ri:[],Ro:[],Rr:[],Rs:[],Ru:[],SH:[],SO:[],Sa:[],Sc:[],Sf:[],Sh:[],Si:[],Sm:[],So:[],Sq:[],Ss:[],St:[],Su:[],TH:["THORN"],TR:[],TS:[],Ta:[],Tc:[],Tf:[],Th:[],Ti:[],To:[],Tr:[],Ts:[],Ua:["Uacute"],Ub:[],Uc:["Ucirc"],Ud:[],Uf:[],Ug:["Ugrave"],Um:[],Un:[],Uo:[],Up:[],Ur:[],Us:[],Ut:[],Uu:["Uuml"],VD:[],Vb:[],Vc:[],Vd:[],Ve:[],Vf:[],Vo:[],Vs:[],Vv:[],Wc:[],We:[],Wf:[],Wo:[],Ws:[],Xf:[],Xi:[],Xo:[],Xs:[],YA:[],YI:[],YU:[],Ya:["Yacute"],Yc:[],Yf:[],Yo:[],Ys:[],Yu:[],ZH:[],Za:[],Zc:[],Zd:[],Ze:[],Zf:[],Zo:[],Zs:[],aa:["aacute"],ab:[],ac:["acirc","acute"],ae:["aelig"],af:[],ag:["agrave"],al:[],am:["amp"],an:[],ao:[],ap:[],ar:["aring"],as:[],at:["atilde"],au:["auml"],aw:[],bN:[],ba:[],bb:[],bc:[],bd:[],be:[],bf:[],bi:[],bk:[],bl:[],bn:[],bo:[],bp:[],br:["brvbar"],bs:[],bu:[],ca:[],cc:["ccedil"],cd:[],ce:["cedil","cent"],cf:[],ch:[],ci:[],cl:[],co:["copy"],cr:[],cs:[],ct:[],cu:["curren"],cw:[],cy:[],dA:[],dH:[],da:[],db:[],dc:[],dd:[],de:["deg"],df:[],dh:[],di:["divide"],dj:[],dl:[],do:[],dr:[],ds:[],dt:[],du:[],dw:[],dz:[],eD:[],ea:["eacute"],ec:["ecirc"],ed:[],ee:[],ef:[],eg:["egrave"],el:[],em:[],en:[],eo:[],ep:[],eq:[],er:[],es:[],et:["eth"],eu:["euml"],ex:[],fa:[],fc:[],fe:[],ff:[],fi:[],fj:[],fl:[],fn:[],fo:[],fp:[],fr:["frac12","frac14","frac34"],fs:[],gE:[],ga:[],gb:[],gc:[],gd:[],ge:[],gf:[],gg:[],gi:[],gj:[],gl:[],gn:[],go:[],gr:[],gs:[],gt:["gt"],gv:[],hA:[],ha:[],hb:[],hc:[],he:[],hf:[],hk:[],ho:[],hs:[],hy:[],ia:["iacute"],ic:["icirc"],ie:["iexcl"],if:[],ig:["igrave"],ii:[],ij:[],im:[],in:[],io:[],ip:[],iq:["iquest"],is:[],it:[],iu:["iuml"],jc:[],jf:[],jm:[],jo:[],js:[],ju:[],ka:[],kc:[],kf:[],kg:[],kh:[],kj:[],ko:[],ks:[],lA:[],lB:[],lE:[],lH:[],la:["laquo"],lb:[],lc:[],ld:[],le:[],lf:[],lg:[],lh:[],lj:[],ll:[],lm:[],ln:[],lo:[],lp:[],lr:[],ls:[],lt:["lt"],lu:[],lv:[],mD:[],ma:["macr"],mc:[],md:[],me:[],mf:[],mh:[],mi:["middot","micro"],ml:[],mn:[],mo:[],mp:[],ms:[],mu:[],nG:[],nL:[],nR:[],nV:[],na:[],nb:["nbsp"],nc:[],nd:[],ne:[],nf:[],ng:[],nh:[],ni:[],nj:[],nl:[],nm:[],no:["not"],np:[],nr:[],ns:[],nt:["ntilde"],nu:[],nv:[],nw:[],oS:[],oa:["oacute"],oc:["ocirc"],od:[],oe:[],of:[],og:["ograve"],oh:[],oi:[],ol:[],om:[],oo:[],op:[],or:["ordf","ordm"],os:["oslash"],ot:["otilde"],ou:["ouml"],ov:[],pa:["para"],pc:[],pe:[],pf:[],ph:[],pi:[],pl:["plusmn"],pm:[],po:["pound"],pr:[],ps:[],pu:[],qf:[],qi:[],qo:[],qp:[],qs:[],qu:["quot"],rA:[],rB:[],rH:[],ra:["raquo"],rb:[],rc:[],rd:[],re:["reg"],rf:[],rh:[],ri:[],rl:[],rm:[],rn:[],ro:[],rp:[],rr:[],rs:[],rt:[],ru:[],rx:[],sa:[],sb:[],sc:[],sd:[],se:["sect"],sf:[],sh:["shy"],si:[],sl:[],sm:[],so:[],sp:[],sq:[],sr:[],ss:[],st:[],su:["sup1","sup2","sup3"],sw:[],sz:["szlig"],ta:[],tb:[],tc:[],td:[],te:[],tf:[],th:["thorn"],ti:["times"],to:[],tp:[],tr:[],ts:[],tw:[],uA:[],uH:[],ua:["uacute"],ub:[],uc:["ucirc"],ud:[],uf:[],ug:["ugrave"],uh:[],ul:[],um:["uml"],uo:[],up:[],ur:[],us:[],ut:[],uu:["uuml"],uw:[],vA:[],vB:[],vD:[],va:[],vc:[],vd:[],ve:[],vf:[],vl:[],vn:[],vo:[],vp:[],vr:[],vs:[],vz:[],wc:[],we:[],wf:[],wo:[],wp:[],wr:[],ws:[],xc:[],xd:[],xf:[],xh:[],xi:[],xl:[],xm:[],xn:[],xo:[],xr:[],xs:[],xu:[],xv:[],xw:[],ya:["yacute"],yc:[],ye:["yen"],yf:[],yi:[],yo:[],ys:[],yu:["yuml"],za:[],zc:[],zd:[],ze:[],zf:[],zh:[],zi:[],zo:[],zs:[],zw:[]};function wr(e,n){if(typeof e!="string")throw new TypeError("html-entity-codec/".concat(n,"(): [THROW_ID_01] The input must be a string."))}var vr=[8364,129,8218,402,8222,8230,8224,8225,710,8240,352,8249,338,141,381,143,144,8216,8217,8220,8221,8226,8211,8212,732,8482,353,8250,339,157,382,376],xr=/[0-9]+/y,Sr=/[0-9a-fA-F]+/y,Lr=/0*([0-9]*)/y,Br=/0*([0-9a-fA-F]*)/y;function Or(e,n,r,t){if(t<=1114111){let i=r===10?Lr:Br;i.lastIndex=n;let l=i.exec(e);return{end:i.lastIndex,code:Number.parseInt(l[1].slice(0,8),r)||0}}let o=r===10?xr:Sr;return o.lastIndex=n,o.test(e),{end:o.lastIndex,code:t}}function ze(e){return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122}function ge(e){throw new SyntaxError("Parse error: ".concat(e))}function Fr(e,n,r,t){if(e.charCodeAt(n)!==38)return null;let o=n+1;if(e.charCodeAt(o)===35){o++;let s=10;(e[o]==="x"||e[o]==="X")&&(s=16,o++);let f=o,g=0;for(;o<e.length;o++){let $=e.charCodeAt(o),a=-1;if($>=48&&$<=57?a=$-48:s===16&&$>=65&&$<=70?a=$-55:s===16&&$>=97&&$<=102&&(a=$-87),a<0)break;if(g<=1114111&&(g=g*s+a),o-f===32&&!t){let _=Or(e,f,s,g);o=_.end,g=_.code;break}t&&!(o%16384)&&t(o)}if(o===f)return r.strict&&ge("absence-of-digits-in-numeric-character-reference"),null;if(e[o]===";")o++;else if(r.strict&&ge("missing-semicolon-after-character-reference"),r.requireSemicolon)return null;return!g||g>1114111||g>=55296&&g<=57343?(r.strict&&ge("invalid-numeric-character-reference"),g=65533):(g>=64976&&g<=65007||(g&65535)>=65534||g===13||g<32&&g!==9&&g!==10&&g!==12||g>=127&&g<=159)&&r.strict&&ge("disallowed-numeric-character-reference"),g>=128&&g<=159&&(g=vr[g-128]),{end:o,value:String.fromCodePoint(g)}}let i=Tr[e.slice(o,o+2)],l=0,c="";if(i){let s=e.slice(o,o+Er),f=s.indexOf(";");if(f!==-1){let g=Nt[s.slice(0,f+1)];if(typeof g=="string")return{end:o+f+1,value:g}}if(r.requireSemicolon&&!r.strict)return null;for(let g of i)if(e.startsWith(g,o)){l=o+g.length,c=Nt[g];break}}if(!l){if(r.strict&&ze(e.charCodeAt(n+1))){for(;ze(e.charCodeAt(o));)o++;e[o]===";"&&ge("unknown-named-character-reference")}return null}return r.context==="attribute"&&(e[l]==="="||ze(e.charCodeAt(l)))||(r.strict&&ge("missing-semicolon-after-character-reference"),r.requireSemicolon)?null:{end:l,value:c}}function Vt(e,n,r={}){if(wr(e,"scanReference"),!Number.isInteger(n)||n<0)throw new TypeError("html-entity-codec/scanReference(): [THROW_ID_02] The index must be a nonnegative integer.");return Fr(e,n,r)}function Oe(e){return e!==void 0&&/^[\dA-Fa-f]$/.test(e)}function he(e){return e!==void 0&&" \n\r \f".includes(e)}function Je(e){return e!==void 0&&"\n\r\f".includes(e)}function te(e,n){let r=e.charCodeAt(n);if(Number.isNaN(r))return null;if(r===0||r>=56320&&r<=57343)return{codePoint:65533,rawLength:1,value:"\uFFFD"};if(r>=55296&&r<=56319){let t=e.charCodeAt(n+1);return t>=56320&&t<=57343?{codePoint:Number(e.codePointAt(n)),rawLength:2,value:e.slice(n,n+2)}:{codePoint:65533,rawLength:1,value:"\uFFFD"}}return{codePoint:r,rawLength:1,value:e[n]}}function Ye(e){return e===95||e>=65&&e<=90||e>=97&&e<=122||e>=128}function Ir(e){return Ye(e)||e===45||e>=48&&e<=57}function Ke(e,n){return e[n]==="\\"&&!Je(e[n+1])}function Rr(e,n){let r=te(e,n);if(r===null)return!1;if(r.codePoint===45){let t=n+r.rawLength,o=te(e,t);return o!==null&&(Ye(o.codePoint)||o.codePoint===45)||Ke(e,t)}return Ye(r.codePoint)||Ke(e,n)}function ye(e,n){if(!Ke(e,n))return null;let r=n+1;if(e[r]===void 0)return r;if(Oe(e[r])){let t=0;for(;t<6&&Oe(e[r]);)r+=1,t+=1;return he(e[r])?e[r]==="\r"&&e[r+1]==="\n"?r+2:r+1:r}return n+1+te(e,n+1).rawLength}function kr(e,n){if(!Rr(e,n))return null;let r=n;for(;r<e.length;){if(e[r]==="\\"){let i=ye(e,r);if(i!==null){r=i;continue}}let o=te(e,r);if(o===null||!Ir(o.codePoint))break;r+=o.rawLength}let t=e.slice(n,r);return{value:Ze(t),raw:t,range:[n,r]}}function qr(e,n){let r=e[n],t=[];for(let o=n+1;;){if(e[o]===r)return{endsAt:o+1,units:t,bad:!1};if(o===e.length)return{endsAt:o,units:t,bad:!1};if(Je(e[o]))return{endsAt:o,units:t,bad:!0};if(e[o]==="\\"){if(o+1===e.length)return{endsAt:o+1,units:t,bad:!1};if(Je(e[o+1])){o+=e[o+1]==="\r"&&e[o+2]==="\n"?3:2;continue}let l=ye(e,o);t.push({value:Ze(e.slice(o,l)),range:[o,l]}),o=l;continue}let i=te(e,o);t.push({value:i.value,range:[o,o+i.rawLength]}),o+=i.rawLength}}function X(e,n,r,t,o){return{kind:t,value:o,raw:e.slice(n,r),range:[n,r]}}function Nr(e,n,r){let t=r,o="";for(;t<e.length;){if(e[t]===")")return X(e,n,t+1,"url",o);if(he(e[t])){for(;he(e[t]);)t++;if(t===e.length||e[t]===")")return X(e,n,t===e.length?t:t+1,"url",o);break}if(e[t]==="\\"){let l=ye(e,t);if(l===null)break;o+=Ze(e.slice(t,l)),t=l;continue}let i=te(e,t);if(e[t]==='"'||e[t]==="'"||e[t]==="("||i.codePoint<=8||i.codePoint===11||i.codePoint>=14&&i.codePoint<=31||i.codePoint===127)break;o+=i.value,t+=i.rawLength}if(t===e.length)return X(e,n,t,"url",o);for(;t<e.length;){if(e[t]===")"){t++;break}let i=ye(e,t);t=i===null?t+1:i}return X(e,n,t,"bad-url","")}function Ze(e){var r;if(typeof e!="string")throw new TypeError("string-extract-class-names/decodeCssSelector(): [THROW_ID_02] first selector should be string, not ".concat(typeof e,", currently equal to ").concat(m(e,4)));let n="";for(let t=0;t<e.length;t++){if(e[t]!=="\\"){let i=te(e,t);i!==null&&(n+=i.value,t+=i.rawLength-1);continue}let o=ye(e,t);if(o===null){n+=e[t];continue}if(Oe(e[t+1])){let i=t+1;for(;i<t+7&&Oe(e[i]);)i+=1;let l=e.slice(t+1,i),c=Number.parseInt(l,16);n+=c===0||c>1114111||c>=55296&&c<=57343?"\uFFFD":String.fromCodePoint(c)}else n+=((r=te(e,t+1))==null?void 0:r.value)||"\uFFFD";t=o-1}return n}function Fe(e,n){if(typeof e!="string")throw new TypeError("string-extract-class-names/readCssToken(): [THROW_ID_06] first str should be string, not ".concat(typeof e,", currently equal to ").concat(m(e,4)));if(!Number.isInteger(n))throw new TypeError("string-extract-class-names/readCssToken(): [THROW_ID_07] second start should be an integer, not ".concat(typeof n,", currently equal to ").concat(m(n,4)));if(n<0||n>=e.length)return null;if(he(e[n])){let i=n+1;for(;he(e[i]);)i++;return X(e,n,i,"whitespace",e.slice(n,i))}if(e[n]==="/"&&e[n+1]==="*"){let i=e.indexOf("*/",n+2);return X(e,n,i===-1?e.length:i+2,"comment",e.slice(n+2,i===-1?e.length:i))}if(e[n]==='"'||e[n]==="'"){let i=qr(e,n);return X(e,n,i.endsAt,i.bad?"bad-string":"string",i.units.map(l=>l.value).join(""))}let r=e[n]==="@",t=kr(e,r?n+1:n);if(t!==null){let i=t.range[1];if(r)return X(e,n,i,"at-keyword",t.value);if(e[i]==="("){if(t.value.toLowerCase()==="url"){let l=i+1;for(;he(e[l]);)l++;if(e[l]!=='"'&&e[l]!=="'")return Nr(e,n,l)}return X(e,n,i+1,"function",t.value)}return X(e,n,i,"identifier",t.value)}let o=te(e,n);return X(e,n,n+o.rawLength,"delimiter",o.value)}function re(e){return e===" "||e===" "||e==="\n"||e==="\f"||e==="\r"}function Qe(e){return e.replace(/[A-Z]/g,n=>n.toLowerCase())}function Pt(e,n){let r=null;for(let t=n;t<e.length;t++)if(r)e[t]===r&&(r=null);else if(e[t]==='"'||e[t]==="'")r=e[t];else if(e[t]===">")return t;return e.length}function Vr(e,n,r){for(let t=e.indexOf("</",n);t!==-1;t=e.indexOf("</",t+2)){let o=t+r.length+2;if(Qe(e.slice(t+2,o))===r&&(re(e[o])||e[o]==="/"||e[o]===">"))return t}return e.length}function Ht(e){let n=[];for(let r=e.indexOf("<");r!==-1;r=e.indexOf("<",r+1)){if(e.startsWith("<!--",r)){if(/^<!--\[if[\t\n\f\r (!]/i.test(e.slice(r,r+8))){let s=e.indexOf(">",r+7);if(s===-1)break;r=s}else if(e.startsWith("<!-->",r))r+=4;else if(e.startsWith("<!--->",r))r+=5;else{let s=e.indexOf("--",r+4);for(;s!==-1&&e[s+2]!==">"&&!(e[s+2]==="!"&&e[s+3]===">");)s=e.indexOf("--",s+1);if(s===-1)break;r=s+(e[s+2]==="!"?3:2)}continue}if(e[r+1]==="/"||e[r+1]==="!"||e[r+1]==="?"){r=Pt(e,r+2);continue}if(!/[a-z]/i.test(e[r+1]||""))continue;let t=r+1,o=t;for(;t<e.length&&!re(e[t])&&e[t]!=="/"&&e[t]!==">";)t++;let i=Qe(e.slice(o,t)),l=!1;for(;t<e.length;){for(;re(e[t]);)t++;if(e[t]===">")break;if(e[t]==="/"&&e[t+1]===">"){t++;break}let c=t;for(;t<e.length&&!re(e[t])&&!"=/>".includes(e[t]);)t++;if(t===c){t++;continue}let s=Qe(e.slice(c,t)),f=s==="style"&&!l;for(s==="style"&&(l=!0);re(e[t]);)t++;if(e[t]!=="=")continue;for(t++;re(e[t]);)t++;let g=null;(e[t]==='"'||e[t]==="'")&&(g=e[t],t++);let $=t;if(g){let a=e.indexOf(g,t);t=a===-1?e.length:a}else for(;t<e.length&&!re(e[t])&&e[t]!==">";)t++;f&&n.push({start:$,end:t,inline:!0,quote:g,source:e.slice($,t)}),g&&e[t]===g&&t++}if(r=t,t>=e.length||i==="plaintext")break;if(i==="style"||i==="script"||i==="textarea"||i==="title"||i==="xmp"||i==="iframe"||i==="noembed"||i==="noframes"){let c=t+1,s=Vr(e,c,i);i==="style"&&n.push({start:c,end:s,inline:!1,quote:null,source:e.slice(c,s)}),r=s===e.length?s:Pt(e,s+i.length+2)}}return n}function Pr(e){let n=e.source,r=[];if(!n.includes("&")&&!n.includes("\r")&&!n.includes("\0"))return{source:n,mappings:r};let t=[],o=0,i=0;for(let l=0;l<n.length;){let c=n.charCodeAt(l),s,f=l+1;if(c===38){let g=Vt(n,l,{context:"attribute"});g&&(s=g.value,f=g.end)}else c===13?(s="\n",n.charCodeAt(f)===10&&f++):c===0&&(s="\uFFFD");if(s!==void 0){let g=n.slice(o,l);t.push(g,s),i+=g.length,r.push({decodedFrom:i,decodedTo:i+s.length,from:e.start+l,to:e.start+f}),i+=s.length,o=f}l=f}return t.push(n.slice(o)),{source:t.join(""),mappings:r}}function Ie(e,n,r){var c;let t=(c=e.decoded)==null?void 0:c.mappings;if(!(t!=null&&t.length))return e.start+n;let o=0,i=t.length;for(;o<i;){let s=o+i>>>1;t[s].decodedFrom<=n?o=s+1:i=s}if(!o)return e.start+n;let l=t[o-1];return n===l.decodedFrom?l.from:n<l.decodedTo?r?l.to:l.from:l.to+n-l.decodedTo}function Re(e){e.sort((r,t)=>r[0]-t[0]||r[1]-t[1]);let n=[];for(let r of e){let t=n[n.length-1];t&&r[0]<=t[1]?t[1]=Math.max(t[1],r[1]):n.push(r)}return n}function Mt(e){let n=[],r=[],t=[],o=[],i=[];for(let l of e){l.inline&&(l.decoded||(l.decoded=Pr(l)),l.source.includes("&")&&o.push([l.start,l.end]));let c=l.inline?l.decoded.source:l.source,s=!1,f=null,g=null;for(let $=0;$<c.length;){let a=Fe(c,$);if(!a)break;let _=a.kind==="string"||a.kind==="bad-string"||a.kind==="url"||a.kind==="bad-url",h=a.kind!=="comment"&&(a.kind!=="delimiter"||a.raw==="\\")&&a.kind!=="whitespace"&&a.raw.includes("\\"),y=s&&a.kind==="whitespace";if(_||h||y||a.kind==="comment"){let A=Ie(l,a.range[0],!1),D=Ie(l,a.range[1],!0);if((_||h||y)&&n.push([A,D]),(_||h)&&r.push([A,D]),a.kind==="comment"){let p=Fe(c,a.range[1]),C=(p==null?void 0:p.kind)==="whitespace"?Fe(c,p.range[1]):p,R=!g||!C||[g,C].some(S=>(S==null?void 0:S.kind)==="delimiter"&&"{};,".includes(S.raw)),N=(f==null?void 0:f.kind)==="whitespace"||(p==null?void 0:p.kind)==="whitespace"&&!(f!=null&&f.raw.includes("\\")),V=[f,p].some(S=>(S==null?void 0:S.kind)==="delimiter"&&S.raw===":"),k=R||N||V?"":"/**/";if(!R){let S=a.range[0],z=a.range[1];for(;re(c[S-1]);)S--;for(;re(c[z]);)z++;i.push([Ie(l,S,!1),Ie(l,z,!0)])}t.push({from:A,to:D,region:l,closed:a.raw.length>=4&&a.raw.endsWith("*/"),replacement:k,canExpand:R})}}s=h||a.kind==="bad-string",f=a,a.kind!=="whitespace"&&(g=a),$=a.range[1]}}return t.sort((l,c)=>l.from-c.from||l.to-c.to),{escapeRanges:Re(n),opaqueRanges:Re(r),commentTokens:t,inlineReferenceRanges:Re(o),commentBoundaryRanges:Re(i)}}var Hr=kt;function et(e){return e>96&&e<123||e>64&&e<91||e>47&&e<58||e===95}function Ee(e){return e!==void 0&&et(e.charCodeAt(0))}function Wt(e){return e!==void 0&&(et(e.charCodeAt(0))||":-.".includes(e))}function Ut(e){if(/^[\x00-\x7f]*$/.test(e))return e.length;let n=0;for(let r=0;r<e.length;r++){let t=e.charCodeAt(r);if(t<=127)n+=1;else if(t<=2047)n+=2;else if(t>=55296&&t<=56319&&r+1<e.length){let o=e.charCodeAt(r+1);o>=56320&&o<=57343?(n+=4,r+=1):n+=3}else n+=3}return n}function Mr(e,n,r){var i;let t="",o=0;for(let l=0,c=n.length;l<c;l++){r&&r(l/c*100);let s=n[l];t+="".concat(e.slice(o,s[0])).concat((i=s[2])!=null?i:""),o=s[1]}return r&&r(100),t+e.slice(o)}var Xe={lineLengthLimit:500,removeIndentations:!0,removeLineBreaks:!1,removeHTMLComments:!1,removeCSSComments:!0,reportProgressFunc:null,reportProgressFuncFrom:0,reportProgressFuncTo:100,breakToTheLeftOf:["</td","<html","</html","<head","</head","<meta","<link","<table","<script","<\/script","<!DOCTYPE","<style","</style","<title","<body","@media","</body","<!--[if","<!--<![endif","<![endif]"],mindTheInlineTags:["a","abbr","acronym","audio","b","bdi","bdo","big","br","button","canvas","cite","code","data","datalist","del","dfn","em","embed","i","iframe","img","input","ins","kbd","label","map","mark","meter","noscript","object","output","picture","progress","q","ruby","s","samp","script","select","slot","small","span","strong","sub","sup","svg","template","textarea","time","u","tt","var","video","wbr"]};function Wr(e,n){var st,at;let r=Date.now();if(!B(e))throw e===void 0?new Error("html-crush/crush(): [THROW_ID_01] the first input argument is completely missing! It should be given as string."):new Error('html-crush/crush(): [THROW_ID_02] the first input argument must be string! It was given as "'.concat(typeof e,'", equal to:\n').concat(m(e,4)));if(n&&!J(n))throw new Error("html-crush/crush(): [THROW_ID_03] the second input argument, options object, should be a plain object but it was given as type ".concat(typeof n,", equal to ").concat(m(n,4)));let t=n;if(t&&Array.isArray(t.breakToTheLeftOf)&&t.breakToTheLeftOf.length){for(let b=0,u=t.breakToTheLeftOf.length;b<u;b++)if(!B(t.breakToTheLeftOf[b]))throw new TypeError("html-crush/crush(): [THROW_ID_04] the resolvedOpts.breakToTheLeftOf array contains non-string elements! For example, element at index ".concat(b,' is of a type "').concat(typeof t.breakToTheLeftOf[b],'" and is equal to:\n').concat(m(t.breakToTheLeftOf[b],4)))}let o=new wt({limitToBeAddedWhitespace:!0}),i=Ht(e),l=Mt(i),c=l.commentTokens.map(({from:b,to:u})=>[b,u]),s=0,f=0,g=0;function $(b,u,E){let v=0,x=b.length;for(;v<x;){let Z=v+x>>>1;(u===E?b[Z][1]<u:b[Z][1]<=u)?v=Z+1:x=Z}let H=b[v];return!!H&&(u===E?H[0]<=u&&u<=H[1]:H[0]<E&&u<H[1])}function a(b,u,E,v){Array.isArray(b)&&([b,u,E]=b),!(typeof b!="number"||typeof u!="number")&&(v!=="html-comment"&&($(l.escapeRanges,b,u)||v!=="css-comment"&&($(l.inlineReferenceRanges,b,u)||!_.removeCSSComments&&$(c,b,u)||$(l.commentBoundaryRanges,b,u)))||o.push(b,u,E))}let _=De(Q(Q({},Xe),t),{reportProgressFunc:typeof(t==null?void 0:t.reportProgressFunc)=="function"?t.reportProgressFunc:null,breakToTheLeftOf:(t==null?void 0:t.breakToTheLeftOf)===void 0?Xe.breakToTheLeftOf:Array.isArray(t.breakToTheLeftOf)?t.breakToTheLeftOf:[]});typeof _.removeHTMLComments=="boolean"&&(_.removeHTMLComments=_.removeHTMLComments?1:0);let h="";Array.isArray(_.breakToTheLeftOf)&&_.breakToTheLeftOf.length&&(h=[...new Set(_.breakToTheLeftOf.map(b=>b[0]))].join(""));let y={removeHTMLComments:!1,removeCSSComments:!1},A=Array.isArray(_.mindTheInlineTags)?_.mindTheInlineTags:[],D=new Set(A),p=!!A.length&&A.every(b=>B(b)&&!!b.length&&![...b].some(u=>!Ee(u))),C=new Map,R=Array.isArray(_.breakToTheLeftOf)&&!!_.breakToTheLeftOf.length&&_.breakToTheLeftOf.every(B)&&!(_.breakToTheLeftOf.length===1&&!_.breakToTheLeftOf[0].trim());if(R)for(let b of _.breakToTheLeftOf){if(!b.length)continue;let u=C.get(b[0]);u?u.push(b):C.set(b[0],[b])}function N(b){if(!R)return!!Ot(e,b,_.breakToTheLeftOf);let u=C.get(e[b]);if(u===void 0)return!1;for(let E=0,v=u.length;E<v;E++)if(e.startsWith(u[E],b))return!0;return!1}function V(b,u){if(!p)return!!Ft(e,b,_.mindTheInlineTags,De(Q({},u?{trimCharsBeforeMatching:"/"}:{}),{cb:x=>!x||!Ee(x)}));let E=b+1;if(u)for(;e[E]==="/";)E++;let v=E;for(;v<q&&et(e.charCodeAt(v));)v++;return v>E&&D.has(e.slice(E,v))}function k(b){let u=b-1;for(;u>=0&&G(e[u]);)u--;if(e[u]!=="=")return null;let E=u,v=u-1;for(;v>=0&&G(e[v]);)v--,E--;for(;v>=0&&Wt(e[v]);)v--;return v+1<E?e.slice(v+1,E).toLowerCase():null}function S(b,u,E){if(e[b]!=="<")return!1;let v=b+1;if(E){if(e[v]!=="/")return!1;v++}else if(e[v]==="/")return!1;for(let x=0;x<u.length;x++){let H=e.charCodeAt(v+x);if(H>64&&H<91&&(H+=32),H!==u.charCodeAt(x))return!1}return!Wt(e[v+u.length])&&!Dt(qt(e,v+u.length))}function z(b,u){let E=e.indexOf("<",b);for(;E!==-1;){if(S(E,u,!0))return E;E=e.indexOf("<",E+1)}return-1}let se=null,w=null,ae=!1,O=0,de=0,M=!1,_e=!1,P=null,me=null,ne=null,ue=null,ke=null,F,T=null,L=null,I=null,K=null,ie=null,Te=null,pe=">};",be="<",jt="!",Gt=">",zt="<",tt="{},:;<>~+",rt=tt,nt=tt,ce=!0,q=e.length;function ut(b,u=!1){let E=b.length,v=Math.max(q-E,0),x=Ut(e),H=u?x:Ut(b),Z=Math.max(x-H,0);return{timeTakenInMilliseconds:Date.now()-r,originalLength:q,cleanedLength:E,bytesSaved:v,percentageReducedOfOriginal:q?Math.round(v*100/q):0,originalLengthInCodeUnits:q,cleanedLengthInCodeUnits:E,codeUnitsSaved:v,percentageReducedOfOriginalInCodeUnits:q?Math.round(v*100/q):0,originalLengthInUtf8Bytes:x,cleanedLengthInUtf8Bytes:H,utf8BytesSaved:Z,percentageReducedOfOriginalInUtf8Bytes:x?Math.round(Z*100/x):0}}let Ae=0;for(;Ae<q&&G(e[Ae]);)Ae++;let Jt=Math.floor(q/2),it=.01,ot=1-it,lt=null;function $e(b){if(!_.reportProgressFunc||q<=1e3)return;let u=Math.max(0,Math.min(b,1)),E=Math.floor(_.reportProgressFuncFrom+(_.reportProgressFuncTo-_.reportProgressFuncFrom)*u);E!==lt&&(lt=E,_.reportProgressFunc(E))}let W="\n";if(e.includes("\r\n")?W="\r\n":e.includes("\r")&&(W="\r"),q){for(let u=0;u<q;u++){for(_.reportProgressFunc&&(q>1e3&&q<2e3?u===Jt&&$e(.5):q>=2e3&&$e(u/q*ot)),de++,!F&&M&&e[u]==="}"&&e[u-1]==="}"&&(O+1>=_.lineLengthLimit?(a(u,u,W),O=0):(T=u,L=u,I=" ")),F&&typeof F=="number"&&u>=F&&(F=void 0);s<i.length&&u>=i[s].end;)u>i[s].end&&(i[s].inline?P=null:M=!1),ne=null,s++;let E=i[s],v=!!E&&u>=E.start&&u<E.end;for(;f<l.opaqueRanges.length&&u>=l.opaqueRanges[f][1];)f++;for(;g<l.commentTokens.length&&u>=l.commentTokens[g].to;)g++,ne=null;let x=l.commentTokens[g],H=!!x&&u>=x.from&&u<x.to,Z=l.opaqueRanges[f];if(!F&&ue===null&&v){if(H&&u===x.from&&((x.to-x.from!==x.replacement.length||e.slice(x.from,x.to)!==x.replacement)&&(y.removeCSSComments=!0),_.removeCSSComments)){ne=u;let d=x.canExpand?Ge({str:e,from:x.from,to:x.to,ifLeftSideIncludesThisThenCropTightly:rt||"",ifRightSideIncludesThisThenCropTightly:nt||""}):[x.from,x.to];T=Math.max(E.start,d[0]),L=Math.min(E.end,d[1]),$(l.escapeRanges,T,L)&&(T=x.from,L=x.to),w=null,a(T,L,x.replacement||void 0,"css-comment")}if(H&&(_.removeCSSComments||u>x.from)||Z&&u>=Z[0]&&u<Z[1]){H&&_.removeCSSComments?de--:_.removeLineBreaks&&(O="\r\n".includes(e[u])?0:O+1);continue}}if(ke!==null&&S(u,"script",!0)){if((_.removeIndentations||_.removeLineBreaks)&&u>0&&e[~-u]&&G(e[~-u])){for(let d=u;d--;)if(e[d]==="\n"||e[d]==="\r"||!G(e[d])){d+1<u&&a(d+1,u);break}}ke=null,F=!1,u+=8;continue}if(!F&&!M&&S(u,"script",!1)){ke=u,F=!0;let d="";(_.removeLineBreaks||_.removeIndentations)&&w!==null&&(w>0&&(d=W),a(w,u,d)),w=null,se=null}if(!F&&me!==null){_.removeLineBreaks&&(O="\r\n".includes(e[u])?0:O+1),u>me&&e[u]===e[me]&&(me=null);continue}if(!F&&ie!==null&&!P&&"\"'".includes(e[u])){let d=k(u);if(d==="style")P=u;else if(d!==null){me=u,_.removeLineBreaks&&(O+=1);continue}}if(ie!==null&&K===null&&!Ee(e[u])){K=e.slice(ie,u);let d=Y(e,~-u),U=Y(e,u);if(typeof d=="number"&&e[d]===">"&&G(e[u])&&U)a(u,U);else if(d&&e[d]==="/"&&e[Y(e,d)]===">"){G(e[u])&&U&&a(u,U);let _t=Y(e,d+1);e[d+1]!==">"&&_t&&a(d+1,_t)}}if(!F&&!M&&!P&&e[~-u]==="<"&&ie===null)if(Ee(e[u]))ie=u;else{let d=Y(e,~-u),U=Y(e,d);e[d]==="/"&&Ee(e[U]||"")&&(ie=U)}if(_e&&e.startsWith("![endif",u+1)&&(_e=!1),!F&&!M&&!P&&ue!==null){let d;e.startsWith("-->",u)?d=3:e[u]===">"&&e[u-1]==="]"&&(d=1),d&&([T,L]=Ge({str:e,from:ue,to:u+d}),ue=null,T!=null?_.removeLineBreaks&&_.lineLengthLimit&&de-(L-T)>=_.lineLengthLimit?(a(T,L,W,"html-comment"),de=-d):(a(T,L,void 0,"html-comment"),de-=L-T):(O+=d-1,u+=d-1),F=u+d)}if(!F&&!M&&!P&&e[u]==="<"&&(e.startsWith("<!--",u)||e.startsWith("<![endif",u))&&ue===null&&(e.startsWith("<![endif",u)?_.removeHTMLComments===2&&(ue=u):e.startsWith("[if",u+4)?(_e||(_e=!0),_.removeHTMLComments===2&&(ue=u)):_.removeHTMLComments&&(!_e||_.removeHTMLComments===2)&&(ue=u),y.removeHTMLComments||(y.removeHTMLComments=!0)),!F&&M&&ne===null&&S(u,"style",!0)?M=!1:!F&&!M&&ne===null&&S(u,"style",!1)&&(M=!0,(_.removeLineBreaks||_.removeIndentations)&&_.breakToTheLeftOf.includes("<style")&&e.startsWith(' type="text/css">',u+6)&&e[u+24]&&a(u+23,u+23,W)),!F&&!P&&"\"'".includes(e[u])&&e.endsWith("style=",u)&&(P=u),!F&&G(e[u]))w===null&&(w=u);else if(!F&&!((M||P)&&ne!==null)){if(w!==null){if(_.removeLineBreaks&&(O+=1),ce)ce=!1,(_.removeIndentations||_.removeLineBreaks)&&a(0,u);else if(_.removeIndentations&&!_.removeLineBreaks&&(!ae&&se!==null&&u>se?a(se+1,u):w+1<u&&(e.endsWith("]>",w)||e.endsWith("-->",w)||e.startsWith("<![",u)||e.startsWith("<!--<![",u)?a(w,u):e[w]===" "?a(w+1,u):e[~-u]===" "?a(w,~-u):a(w,u," "))),_.removeLineBreaks||P){if(h.includes(e[u])&&N(u)){!("\r\n".includes(e[~-u])&&w===~-u)&&!(e[~-u]==="\n"&&e[u-2]==="\r"&&w===u-2)&&a(w,u,W),T=null,L=null,I=null,w=null,O=1;continue}let d=" ";if(!(e[u]==="<"&&V(u,!1))){if(e[~-w]&&Gt.includes(e[~-w])&&zt.includes(e[u])||(M||P)&&ne===null&&(rt.includes(e[~-w])||nt.includes(e[u]))||e[u]==="!"&&e.startsWith("!important",u)&&!_e||P&&(e[~-w]==="'"||e[~-w]==='"')||e[~-w]==="}"&&e.startsWith("</style",u)||e[u]===">"&&("'\"".includes(e[Be(e,u)])||e[Y(e,u)]==="<")||e[u]==="/"&&e[Y(e,u)]===">"){d="";let U=e[u]==="/"&&e[u+1]===">"?Y(e,u):null;U&&U>u+1&&(a(u+1,U),O-=U-u+1)}}M&&e[u]==="}"&&w&&e[w-1]==="}"&&(d=" "),d!=null&&d.length&&(O+=1),_.lineLengthLimit?O>=_.lineLengthLimit||!e[u+1]||e[u]===">"||e[u]==="/"&&e[u+1]===">"?((O>_.lineLengthLimit||O===_.lineLengthLimit&&((st=e[u+1])!=null&&st.trim())&&!pe.includes(e[u])&&!be.includes(e[u+1]))&&(d=W,O=1),(O>_.lineLengthLimit||!(d===" "&&u===w+1))&&(a(w,u,d),se=null),T=null,L=null,I=null):(T===null||w<T)&&(T=w,L=u,I=d):u===w+1&&d===" "||a(w,u,d)}w=null,ae||(ae=!0)}else ce&&(ce=!1),_.removeLineBreaks&&(O+=1);ae||(ae=!0)}if(!F&&!ce&&u!==0&&_.removeLineBreaks&&(_.lineLengthLimit||h)&&!(e[u]==="<"&&e.startsWith("</a",u))){if(h&&N(u)&&Ae<u&&(e[u]!=="<"||!e.startsWith("<![endif]",u)||!Bt(e,u,"<!--"))){a(u,u,W),T=null,L=null,I=null,O=1;continue}else if(_.lineLengthLimit&&O<=_.lineLengthLimit){if(!e[u+1]||be.includes(e[u])&&!jt.includes(e[u])||pe.includes(e[u])||G(e[u])){if(T!==null&&L!==null&&(T!==L||I!=null&&I.length)){let d=I;!G(e[u])&&((at=e[u+1])!=null&&at.trim())&&O+(I?I.length:0)>_.lineLengthLimit&&(d=W),(O+(d?d.length:0)>_.lineLengthLimit||!(d===" "&&L===T+1&&e[T]===" "))&&(e[~-T]==="}"&&e[L]==="{"||(a(T,L,d),se=null))}!G(e[u])&&(be.includes(e[u])||e[~-u]&&pe.includes(e[~-u]))&&B(Te)&&(!K||!D.has(K))&&!(e[u]==="<"&&V(u,!1))&&!(e[u]==="<"&&V(u,!0))?(T=u,L=u,I=null):ne===null&&T!==null&&(P||!_.mindTheInlineTags||!Array.isArray(_.mindTheInlineTags)||Array.isArray(_.mindTheInlineTags.length)&&!_.mindTheInlineTags.length||!B(K)||Array.isArray(_.mindTheInlineTags)&&_.mindTheInlineTags.length&&B(K)&&!D.has(K))&&!(e[u]==="<"&&V(u,!0))&&(T=null,L=null,I=null)}}else if(_.lineLengthLimit)if(be.includes(e[u])&&!(e[u]==="<"&&V(u,!0)))if(T!==null&&L!==null&&(T!==L||I!=null&&I.length)){let d=I!=null&&I.length?I.length:0;O-(L-T-d)-1>_.lineLengthLimit||(a(T,L,I),O-(L-T-d)-1===_.lineLengthLimit&&(a(u,u,W),O=0),T=null,L=null,I=null)}else a(u,u,W),O=0;else e[u+1]&&pe.includes(e[u])&&B(K)&&Array.isArray(_.mindTheInlineTags)&&_.mindTheInlineTags.length&&!D.has(K)?T!==null&&L!==null&&(T!==L||I!=null&&I.length)||(a(u+1,u+1,W),O=0):G(e[u])||e[u+1]||T!==null&&L!==null&&(T!==L||I!=null&&I.length)&&a(T,L,W)}if(!F&&!ce&&_.removeLineBreaks&&_.lineLengthLimit&&O>=_.lineLengthLimit&&T!==null&&L!==null&&!pe.includes(e[u])&&!be.includes(e[u])&&!"/".includes(e[u])&&!(O===_.lineLengthLimit&&e[u+1]&&!e[u+1].trim())){let d=W;e[u+1]&&!e[u+1].trim()&&O===_.lineLengthLimit&&(d=I),d===W&&!e[~-T].trim()&&Be(e,T)&&(T=Be(e,T)+1),a(T,L,d),O=u-L,e[u].length&&(O+=1),T=null,L=null,I=null}if((!F&&e[u]==="\n"||e[u]==="\r"&&(!e[u+1]||e[u+1]&&e[u+1]!=="\n"))&&(se=u,ae&&(ae=!1),!_.removeLineBreaks&&w!==null&&w<u&&e[u+1]&&e[u+1]!=="\r"&&e[u+1]!=="\n"&&a(w,u)),!e[u+1]&&w!==null&&(Ae<q||_.removeIndentations||_.removeLineBreaks)){let d=e.endsWith("\r\n")?q-2:e.endsWith("\n")||e.endsWith("\r")?q-1:q;w<d&&a(w,d)}if(!F&&P&&P<u&&e[P]===e[u]&&(P=null),!F&&!M&&e[u]==="<"){let d=null;if(S(u,"pre",!1)?d="pre":S(u,"code",!1)?d="code":S(u,"textarea",!1)&&(d="textarea"),d!==null){let U=z(u+2,d);F=U===-1?q:U}}if(!F&&e[u]==="<"&&e.startsWith("<![CDATA[",u)){let d=e.indexOf("]]>",u+9);d>0&&(F=d)}if(!F&&!M&&!P&&ie!==null&&e[u]===">"&&(e[Y(e,u)]==="<"&&(Te=K),ie=null,K=null),e[u]==="<"&&Te!==null&&(Te=null),!F&&M&&e[u]==="{"&&e[u+1]==="{"){let d=e.indexOf("}}",u+2);d!==-1&&(F=d+2)}let jr=!0}let b=o.current();if(b){let u=_.reportProgressFunc&&q>=2e3?v=>{$e(ot+it*(v/100))}:void 0,E=Mr(e,b,u);return $e(1),{log:ut(E),ranges:b,applicableOpts:y,result:E}}}return $e(1),{log:ut(e,!0),applicableOpts:y,ranges:null,result:e}}return rr(Ur);})();
11
11
  /**
12
12
  * @name codsen-format-diagnostic-value
13
13
  * @fileoverview Safely format untrusted JavaScript values for diagnostics
@@ -19,7 +19,7 @@
19
19
  /**
20
20
  * @name codsen-utils
21
21
  * @fileoverview Various utility functions
22
- * @version 1.10.1
22
+ * @version 1.10.2
23
23
  * @author Roy Revelt
24
24
  * @license MIT
25
25
  * {@link https://codsen.com/os/codsen-utils/}
@@ -35,7 +35,7 @@
35
35
  /**
36
36
  * @name ranges-sort
37
37
  * @fileoverview Sort string index ranges
38
- * @version 6.2.3
38
+ * @version 6.2.4
39
39
  * @author Roy Revelt
40
40
  * @license MIT
41
41
  * {@link https://codsen.com/os/ranges-sort/}
@@ -43,7 +43,7 @@
43
43
  /**
44
44
  * @name ranges-push
45
45
  * @fileoverview Gather string index ranges
46
- * @version 7.3.1
46
+ * @version 7.3.2
47
47
  * @author Roy Revelt
48
48
  * @license MIT
49
49
  * {@link https://codsen.com/os/ranges-push/}
@@ -51,7 +51,7 @@
51
51
  /**
52
52
  * @name string-left-right
53
53
  * @fileoverview Looks up the first non-whitespace character to the left/right of a given index
54
- * @version 6.2.3
54
+ * @version 6.2.4
55
55
  * @author Roy Revelt
56
56
  * @license MIT
57
57
  * {@link https://codsen.com/os/string-left-right/}
@@ -67,7 +67,7 @@
67
67
  /**
68
68
  * @name string-match-left-right
69
69
  * @fileoverview Match substrings on the left or right of a given index, ignoring whitespace
70
- * @version 9.2.4
70
+ * @version 9.2.5
71
71
  * @author Roy Revelt
72
72
  * @license MIT
73
73
  * {@link https://codsen.com/os/string-match-left-right/}
@@ -75,8 +75,56 @@
75
75
  /**
76
76
  * @name string-range-expander
77
77
  * @fileoverview Expands string index ranges within whitespace boundaries until letters are met
78
- * @version 4.2.4
78
+ * @version 4.2.5
79
79
  * @author Roy Revelt
80
80
  * @license MIT
81
81
  * {@link https://codsen.com/os/string-range-expander/}
82
82
  */
83
+ /**
84
+ * @name html-entity-codec
85
+ * @fileoverview Decode, encode, and escape HTML character references
86
+ * @version 1.1.0
87
+ * @author Roy Revelt
88
+ * @license MIT
89
+ * {@link https://codsen.com/os/html-entity-codec/}
90
+ */
91
+ /*!
92
+ * Generated from WHATWG HTML entities.json (2026-09-05).
93
+ * Source: https://html.spec.whatwg.org/entities.json
94
+ * SHA-256: d741d877ac77c4194c4ad526b5b4a19aef8dfe411ab840a466891cdbb9f362e6
95
+ * Copyright © WHATWG (Apple, Google, Mozilla, Microsoft).
96
+ * BSD 3-Clause License
97
+ *
98
+ * Redistribution and use in source and binary forms, with or without
99
+ * modification, are permitted provided that the following conditions are met:
100
+ *
101
+ * 1. Redistributions of source code must retain the above copyright notice, this
102
+ * list of conditions and the following disclaimer.
103
+ *
104
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
105
+ * this list of conditions and the following disclaimer in the documentation
106
+ * and/or other materials provided with the distribution.
107
+ *
108
+ * 3. Neither the name of the copyright holder nor the names of its
109
+ * contributors may be used to endorse or promote products derived from
110
+ * this software without specific prior written permission.
111
+ *
112
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
113
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
114
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
115
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
116
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
117
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
118
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
119
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
120
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
121
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
122
+ */
123
+ /**
124
+ * @name string-extract-class-names
125
+ * @fileoverview Extracts class and ID names from isolated CSS selector fragments
126
+ * @version 8.4.0
127
+ * @author Roy Revelt
128
+ * @license MIT
129
+ * {@link https://codsen.com/os/string-extract-class-names/}
130
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "html-crush",
3
- "version": "6.3.2",
3
+ "version": "6.3.3",
4
4
  "description": "Minify email templates",
5
5
  "keywords": [
6
6
  "breaks",
@@ -76,14 +76,16 @@
76
76
  }
77
77
  },
78
78
  "dependencies": {
79
- "codsen-utils": "^1.10.1",
80
- "ranges-push": "^7.3.1",
81
- "string-left-right": "^6.2.3",
82
- "string-match-left-right": "^9.2.4",
83
- "string-range-expander": "^4.2.4"
79
+ "codsen-utils": "^1.10.2",
80
+ "html-entity-codec": "^1.1.0",
81
+ "ranges-push": "^7.3.2",
82
+ "string-extract-class-names": "^8.4.0",
83
+ "string-left-right": "^6.2.4",
84
+ "string-match-left-right": "^9.2.5",
85
+ "string-range-expander": "^4.2.5"
84
86
  },
85
87
  "devDependencies": {
86
- "test-mixer": "^4.4.1"
88
+ "test-mixer": "^4.4.2"
87
89
  },
88
90
  "engines": {
89
91
  "node": ">=18.20.8"