@hyperframes/shader-transitions 0.6.7 → 0.6.9
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/dist/index.cjs +13 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -1
- package/dist/index.d.ts +56 -1
- package/dist/index.global.js +13 -13
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
"use strict";var
|
|
2
|
-
`,ce="float hash(vec2 p){return fract(sin(dot(p,vec2(127.1,311.7)))*43758.5453);}float vnoise(vec2 p){vec2 i=floor(p),f=fract(p);f=f*f*f*(f*(f*6.-15.)+10.);return mix(mix(hash(i),hash(i+vec2(1,0)),f.x),mix(hash(i+vec2(0,1)),hash(i+vec2(1,1)),f.x),f.y);}float fbm(vec2 p){float v=0.,a=.5;mat2 R=mat2(.8,.6,-.6,.8);for(int i=0;i<5;i++){v+=a*vnoise(p);p=R*p*2.02;a*=.5;}return v;}";var ue=1920,le=1080;function In(A,e=ue,r=le){let t=A.getContext("webgl",{preserveDrawingBuffer:!0});return t?(t.viewport(0,0,e,r),t.pixelStorei(t.UNPACK_FLIP_Y_WEBGL,!1),t):null}function yn(A){let e=A.createBuffer();if(!e)throw new Error("[HyperShader] Failed to create quad buffer");return A.bindBuffer(A.ARRAY_BUFFER,e),A.bufferData(A.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,-1,1,1,1]),A.STATIC_DRAW),e}var sr=null;function ir(A,e,r){let t=A.createShader(r);if(!t)throw new Error("[HyperShader] Failed to create shader");if(A.shaderSource(t,e),A.compileShader(t),!A.getShaderParameter(t,A.COMPILE_STATUS))throw new Error(`[HyperShader] Shader compile: ${A.getShaderInfoLog(t)||"unknown"}`);return t}function bn(A,e,r){let t=A.createProgram();if(!t)throw new Error("[HyperShader] Failed to create program");if(A.attachShader(t,e),A.attachShader(t,ir(A,r,A.FRAGMENT_SHADER)),A.linkProgram(t),!A.getProgramParameter(t,A.LINK_STATUS))throw new Error(`[HyperShader] Program link: ${A.getProgramInfoLog(t)||"unknown"}`);return t}function xn(A,e){return sr||(sr=ir(A,En,A.VERTEX_SHADER)),bn(A,sr,e)}function Ln(A,e,r){return bn(A,ir(A,e,A.VERTEX_SHADER),r)}var Hn=new WeakMap;function da(A,e){let r=Hn.get(e);return r||(r={from:A.getUniformLocation(e,"u_from"),to:A.getUniformLocation(e,"u_to"),progress:A.getUniformLocation(e,"u_progress"),resolution:A.getUniformLocation(e,"u_resolution"),accent:A.getUniformLocation(e,"u_accent"),accentDark:A.getUniformLocation(e,"u_accent_dark"),accentBright:A.getUniformLocation(e,"u_accent_bright"),aPos:A.getAttribLocation(e,"a_pos")},Hn.set(e,r),r)}function Tn(A,e,r,t,n,s,i,a=ue,o=le){let B=da(A,r);A.useProgram(r),A.activeTexture(A.TEXTURE0),A.bindTexture(A.TEXTURE_2D,t),A.uniform1i(B.from,0),A.activeTexture(A.TEXTURE1),A.bindTexture(A.TEXTURE_2D,n),A.uniform1i(B.to,1),A.uniform1f(B.progress,s),A.uniform2f(B.resolution,a,o),i&&(A.uniform3f(B.accent,...i.accent),A.uniform3f(B.accentDark,...i.dark),A.uniform3f(B.accentBright,...i.bright)),A.bindBuffer(A.ARRAY_BUFFER,e),A.enableVertexAttribArray(B.aPos),A.vertexAttribPointer(B.aPos,2,A.FLOAT,!1,0,0),A.drawArrays(A.TRIANGLE_STRIP,0,4)}function nt(A){let e=A.createTexture();if(!e)throw new Error("[HyperShader] Failed to create texture");return A.bindTexture(A.TEXTURE_2D,e),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_WRAP_S,A.CLAMP_TO_EDGE),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_WRAP_T,A.CLAMP_TO_EDGE),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_MIN_FILTER,A.LINEAR),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_MAG_FILTER,A.LINEAR),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,1,1,0,A.RGBA,A.UNSIGNED_BYTE,null),e}function ar(A,e,r){A.bindTexture(A.TEXTURE_2D,e),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,r)}var Kn={"domain-warp":{frag:BA+ce+"void main(){vec2 q=vec2(fbm(v_uv*3.),fbm(v_uv*3.+vec2(5.2,1.3)));vec2 r=vec2(fbm(v_uv*3.+q*4.+vec2(1.7,9.2)),fbm(v_uv*3.+q*4.+vec2(8.3,2.8)));float n=fbm(v_uv*3.+r*2.);vec2 warpDir=(q-.5)*.4;vec4 A=texture2D(u_from,clamp(v_uv+warpDir*u_progress,0.,1.));vec4 B=texture2D(u_to,clamp(v_uv-warpDir*(1.-u_progress),0.,1.));float e=smoothstep(u_progress-.08,u_progress+.08,n);float ed=abs(n-u_progress);float em=smoothstep(.1,0.,ed)*(1.-step(1.,u_progress));vec3 ec=mix(u_accent_dark,u_accent_bright,smoothstep(0.,.1,ed));gl_FragColor=vec4(mix(B,A,e).rgb+ec*em*2.,1.);}"},"ridged-burn":{frag:BA+ce+"float ridged(vec2 p){float v=0.,a=.5;mat2 R=mat2(.8,.6,-.6,.8);for(int i=0;i<5;i++){v+=a*abs(vnoise(p)*2.-1.);p=R*p*2.02;a*=.5;}return v;}void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);float n=ridged(v_uv*4.);float e=smoothstep(u_progress-.04,u_progress+.04,n);float heat=smoothstep(.12,0.,abs(n-u_progress))*(1.-step(1.,u_progress));vec3 burn=mix(u_accent_dark,u_accent,smoothstep(0.,.25,heat));burn=mix(burn,u_accent_bright,smoothstep(.25,.5,heat));burn=mix(burn,vec3(1),smoothstep(.5,1.,heat));float sparks=step(.92,vnoise(v_uv*80.))*heat*3.;gl_FragColor=vec4(mix(B,A,e).rgb+burn*heat*3.5+u_accent_bright*sparks,1.);}"},"whip-pan":{frag:BA+"void main(){float fromOff=u_progress*1.5;vec3 fromC=vec3(0.);for(int i=0;i<10;i++){float f=float(i)/10.;vec2 fuv=vec2(v_uv.x+fromOff+u_progress*.08*f,v_uv.y);fromC+=texture2D(u_from,clamp(fuv,0.,1.)).rgb;}fromC/=10.;float toOff=(1.-u_progress)*1.5;vec3 toC=vec3(0.);for(int i=0;i<10;i++){float f=float(i)/10.;vec2 tuv=vec2(v_uv.x-toOff-(1.-u_progress)*.08*f,v_uv.y);toC+=texture2D(u_to,clamp(tuv,0.,1.)).rgb;}toC/=10.;gl_FragColor=vec4(mix(fromC,toC,u_progress),1.);}"},"sdf-iris":{frag:BA+"void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);vec2 uv=(v_uv-.5)*vec2(u_resolution.x/u_resolution.y,1.);float d=length(uv);float radius=u_progress*1.2;float fw=.003;float edge=smoothstep(radius+fw,radius-fw,d);float ring1=exp(-abs(d-radius)*25.);float ring2=exp(-abs(d-radius+.04)*20.)*.5;float ring3=exp(-abs(d-radius+.08)*15.)*.25;float glow=(ring1+ring2+ring3)*u_progress*(1.-u_progress)*4.;gl_FragColor=vec4(mix(A,B,edge).rgb+u_accent_bright*glow*.6,1.);}"},"ripple-waves":{frag:BA+"void main(){vec2 uv=v_uv-.5;float dist=length(uv);vec2 dir=normalize(uv+.001);float fromAmp=u_progress*.04;float fw1=exp(sin(dist*25.-u_progress*12.)-1.);float fw2=exp(sin(dist*50.-u_progress*18.)-1.)*.5;vec2 fromUv=clamp(v_uv+dir*(fw1+fw2)*fromAmp,0.,1.);float toAmp=(1.-u_progress)*.04;float tw1=exp(sin(dist*25.+u_progress*12.)-1.);float tw2=exp(sin(dist*50.+u_progress*18.)-1.)*.5;vec2 toUv=clamp(v_uv-dir*(tw1+tw2)*toAmp,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);float peak=fw1*u_progress;vec3 tint=u_accent_bright*peak*.1;gl_FragColor=vec4(mix(A.rgb+tint,B.rgb,u_progress),1.);}"},"gravitational-lens":{frag:BA+"void main(){vec4 B=texture2D(u_to,v_uv);vec2 uv=v_uv-.5;float dist=length(uv);float pull=u_progress*2.;float warpStr=pull*.3/(dist+.1);vec2 warped=clamp(v_uv-uv*warpStr,0.,1.);vec4 A=texture2D(u_from,warped);float horizon=smoothstep(0.,.3,dist/(1.-u_progress*.85+.001));float shift=pull*.02/(dist+.2);float r=texture2D(u_from,clamp(v_uv-uv*(warpStr+shift),0.,1.)).r;float b=texture2D(u_from,clamp(v_uv-uv*(warpStr-shift),0.,1.)).b;vec3 lensed=vec3(r,A.g,b)*horizon;gl_FragColor=vec4(mix(lensed,B.rgb,smoothstep(.3,.9,u_progress)),1.);}"},"cinematic-zoom":{frag:BA+"void main(){vec2 d=v_uv-vec2(.5);float fromS=u_progress*.08;float toS=(1.-u_progress)*.06;float fr=0.,fg=0.,fb=0.;for(int i=0;i<12;i++){float f=float(i)/12.;fr+=texture2D(u_from,v_uv-d*(fromS*1.06)*f).r;fg+=texture2D(u_from,v_uv-d*fromS*f).g;fb+=texture2D(u_from,v_uv-d*(fromS*.94)*f).b;}vec3 fromBl=vec3(fr,fg,fb)/12.;float tr=0.,tg=0.,tb=0.;for(int i=0;i<12;i++){float f=float(i)/12.;tr+=texture2D(u_to,v_uv+d*(toS*1.06)*f).r;tg+=texture2D(u_to,v_uv+d*toS*f).g;tb+=texture2D(u_to,v_uv+d*(toS*.94)*f).b;}vec3 toBl=vec3(tr,tg,tb)/12.;gl_FragColor=vec4(mix(fromBl,toBl,u_progress),1.);}"},"chromatic-split":{frag:BA+"void main(){vec2 c=v_uv-.5;float fromShift=u_progress*.06;float fr=texture2D(u_from,clamp(v_uv+c*fromShift,0.,1.)).r;float fg=texture2D(u_from,v_uv).g;float fb=texture2D(u_from,clamp(v_uv-c*fromShift,0.,1.)).b;vec3 fromSplit=vec3(fr,fg,fb);float toShift=(1.-u_progress)*.06;float tr=texture2D(u_to,clamp(v_uv-c*toShift,0.,1.)).r;float tg=texture2D(u_to,v_uv).g;float tb=texture2D(u_to,clamp(v_uv+c*toShift,0.,1.)).b;vec3 toSplit=vec3(tr,tg,tb);gl_FragColor=vec4(mix(fromSplit,toSplit,u_progress),1.);}"},glitch:{frag:BA+"float rand(vec2 co){return fract(sin(dot(co,vec2(12.9898,78.233)))*43758.5453);}void main(){float inten=u_progress*(1.-u_progress)*4.;float lineY=floor(v_uv.y*60.)/60.;float lineDisp=(rand(vec2(lineY,floor(u_progress*17.)))-.5)*.18*inten;vec2 block=floor(v_uv*vec2(12.,8.));float br=rand(block+vec2(floor(u_progress*11.)));float ba=step(.83,br)*inten;vec2 bd=(vec2(rand(block*2.1),rand(block*3.7))-.5)*.35*ba;vec2 uv=clamp(v_uv+vec2(lineDisp,0.)+bd,0.,1.);float shift=inten*.035;float r=texture2D(u_from,uv+vec2(shift,0.)).r;float g=texture2D(u_from,uv).g;float b=texture2D(u_from,uv-vec2(shift,0.)).b;vec3 col=vec3(r,g,b);col-=step(.5,fract(v_uv.y*u_resolution.y*.5))*.05*inten;col*=1.+(rand(vec2(floor(u_progress*23.)))-.5)*.3*inten;float levels=mix(256.,8.,inten*.5);col=floor(col*levels)/levels;gl_FragColor=mix(vec4(col,1.),texture2D(u_to,v_uv),u_progress);}"},"swirl-vortex":{frag:BA+ce+"void main(){vec2 uv=v_uv-.5;float dist=length(uv);float warp=fbm(v_uv*4.)*.5;float fromAng=u_progress*(1.-dist)*10.+warp*u_progress*3.;float fs=sin(fromAng),fc=cos(fromAng);vec2 fromUv=clamp(vec2(uv.x*fc-uv.y*fs,uv.x*fs+uv.y*fc)+.5,0.,1.);float toAng=-(1.-u_progress)*(1.-dist)*10.-warp*(1.-u_progress)*3.;float ts=sin(toAng),tc=cos(toAng);vec2 toUv=clamp(vec2(uv.x*tc-uv.y*ts,uv.x*ts+uv.y*tc)+.5,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);gl_FragColor=mix(A,B,u_progress);}"},"thermal-distortion":{frag:BA+ce+"void main(){float heat=u_progress*1.5;float yFade=smoothstep(1.,0.,v_uv.y);float shimmer=sin(v_uv.y*40.+fbm(v_uv*6.)*8.)*fbm(v_uv*3.+vec2(0.,u_progress*2.));float dispX=shimmer*heat*.03*yFade;vec2 fromUv=clamp(v_uv+vec2(dispX,0.),0.,1.);vec4 A=texture2D(u_from,fromUv);float invShimmer=sin(v_uv.y*40.+fbm(v_uv*6.+3.)*8.)*fbm(v_uv*3.+vec2(3.,u_progress*2.));float dispX2=invShimmer*(1.-u_progress)*.03*yFade;vec2 toUv=clamp(v_uv+vec2(dispX2,0.),0.,1.);vec4 B=texture2D(u_to,toUv);float haze=heat*yFade*.15*(1.-u_progress);gl_FragColor=vec4(mix(A.rgb,B.rgb,u_progress)+u_accent_bright*haze,1.);}"},"flash-through-white":{frag:BA+"void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);float toWhite=smoothstep(0.,.45,u_progress);vec3 fromC=mix(A.rgb,vec3(1.),toWhite);float fromWhite=1.-smoothstep(.5,1.,u_progress);vec3 toC=mix(B.rgb,vec3(1.),fromWhite);gl_FragColor=vec4(mix(fromC,toC,smoothstep(.35,.65,u_progress)),1.);}"},"cross-warp-morph":{frag:BA+ce+"void main(){vec2 disp=vec2(fbm(v_uv*3.),fbm(v_uv*3.+vec2(7.3,3.7)))-.5;vec2 fromUv=clamp(v_uv+disp*u_progress*.5,0.,1.);vec2 toUv=clamp(v_uv-disp*(1.-u_progress)*.5,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);float n=fbm(v_uv*4.+vec2(3.1,1.7));float blend=smoothstep(.4,.6,n+u_progress*1.2-.6);gl_FragColor=mix(A,B,blend);}"},"light-leak":{frag:BA+"vec3 aces(vec3 x){return clamp((x*(2.51*x+.03))/(x*(2.43*x+.59)+.14),0.,1.);}void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);vec2 lp=vec2(1.3,-.2);float dist=length(v_uv-lp);float leak=clamp(exp(-dist*1.8)*u_progress*4.,0.,1.);vec3 warmColor=mix(u_accent,u_accent_bright,dist*.7);float flare=exp(-abs(v_uv.y-(-.2+v_uv.x*.3))*15.)*leak*.3;vec3 overexposed=A.rgb+warmColor*leak*3.+u_accent_bright*flare;overexposed=aces(overexposed);gl_FragColor=vec4(mix(overexposed,B.rgb,smoothstep(.15,.85,u_progress)),1.);}"}},or=Object.keys(Kn);function Sn(A){let e=Kn[A];if(!e)throw new Error(`[HyperShader] Unknown shader: "${A}". Available: ${or.join(", ")}`);return e.frag}var xr=function(A,e){return xr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,t){r.__proto__=t}||function(r,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(r[n]=t[n])},xr(A,e)};function yA(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");xr(A,e);function r(){this.constructor=A}A.prototype=e===null?Object.create(e):(r.prototype=e.prototype,new r)}var Lr=function(){return Lr=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++){r=arguments[t];for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&(e[s]=r[s])}return e},Lr.apply(this,arguments)};function cA(A,e,r,t){function n(s){return s instanceof r?s:new r(function(i){i(s)})}return new(r||(r=Promise))(function(s,i){function a(u){try{B(t.next(u))}catch(l){i(l)}}function o(u){try{B(t.throw(u))}catch(l){i(l)}}function B(u){u.done?s(u.value):n(u.value).then(a,o)}B((t=t.apply(A,e||[])).next())})}function aA(A,e){var r={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},t,n,s,i;return i={next:a(0),throw:a(1),return:a(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function a(B){return function(u){return o([B,u])}}function o(B){if(t)throw new TypeError("Generator is already executing.");for(;r;)try{if(t=1,n&&(s=B[0]&2?n.return:B[0]?n.throw||((s=n.return)&&s.call(n),0):n.next)&&!(s=s.call(n,B[1])).done)return s;switch(n=0,s&&(B=[B[0]&2,s.value]),B[0]){case 0:case 1:s=B;break;case 4:return r.label++,{value:B[1],done:!1};case 5:r.label++,n=B[1],B=[0];continue;case 7:B=r.ops.pop(),r.trys.pop();continue;default:if(s=r.trys,!(s=s.length>0&&s[s.length-1])&&(B[0]===6||B[0]===2)){r=0;continue}if(B[0]===3&&(!s||B[1]>s[0]&&B[1]<s[3])){r.label=B[1];break}if(B[0]===6&&r.label<s[1]){r.label=s[1],s=B;break}if(s&&r.label<s[2]){r.label=s[2],r.ops.push(B);break}s[2]&&r.ops.pop(),r.trys.pop();continue}B=e.call(A,r)}catch(u){B=[6,u],n=0}finally{t=s=0}if(B[0]&5)throw B[1];return{value:B[0]?B[1]:void 0,done:!0}}}function st(A,e,r){if(r||arguments.length===2)for(var t=0,n=e.length,s;t<n;t++)(s||!(t in e))&&(s||(s=Array.prototype.slice.call(e,0,t)),s[t]=e[t]);return A.concat(s||e)}var VA=(function(){function A(e,r,t,n){this.left=e,this.top=r,this.width=t,this.height=n}return A.prototype.add=function(e,r,t,n){return new A(this.left+e,this.top+r,this.width+t,this.height+n)},A.fromClientRect=function(e,r){return new A(r.left+e.windowBounds.left,r.top+e.windowBounds.top,r.width,r.height)},A.fromDOMRectList=function(e,r){var t=Array.from(r).find(function(n){return n.width!==0});return t?new A(t.left+e.windowBounds.left,t.top+e.windowBounds.top,t.width,t.height):A.EMPTY},A.EMPTY=new A(0,0,0,0),A})(),Rt=function(A,e){return VA.fromClientRect(A,e.getBoundingClientRect())},Ua=function(A){var e=A.body,r=A.documentElement;if(!e||!r)throw new Error("Unable to get document size");var t=Math.max(Math.max(e.scrollWidth,r.scrollWidth),Math.max(e.offsetWidth,r.offsetWidth),Math.max(e.clientWidth,r.clientWidth)),n=Math.max(Math.max(e.scrollHeight,r.scrollHeight),Math.max(e.offsetHeight,r.offsetHeight),Math.max(e.clientHeight,r.clientHeight));return new VA(0,0,t,n)},_t=function(A){for(var e=[],r=0,t=A.length;r<t;){var n=A.charCodeAt(r++);if(n>=55296&&n<=56319&&r<t){var s=A.charCodeAt(r++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),r--)}else e.push(n)}return e},q=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var r=A.length;if(!r)return"";for(var t=[],n=-1,s="";++n<r;){var i=A[n];i<=65535?t.push(i):(i-=65536,t.push((i>>10)+55296,i%1024+56320)),(n+1===r||t.length>16384)&&(s+=String.fromCharCode.apply(String,t),t.length=0)}return s},Dn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Fa=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(ye=0;ye<Dn.length;ye++)Fa[Dn.charCodeAt(ye)]=ye;var ye,Mn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Re=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(be=0;be<Mn.length;be++)Re[Mn.charCodeAt(be)]=be;var be,ha=function(A){var e=A.length*.75,r=A.length,t,n=0,s,i,a,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var B=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),u=Array.isArray(B)?B:new Uint8Array(B);for(t=0;t<r;t+=4)s=Re[A.charCodeAt(t)],i=Re[A.charCodeAt(t+1)],a=Re[A.charCodeAt(t+2)],o=Re[A.charCodeAt(t+3)],u[n++]=s<<2|i>>4,u[n++]=(i&15)<<4|a>>2,u[n++]=(a&3)<<6|o&63;return B},pa=function(A){for(var e=A.length,r=[],t=0;t<e;t+=2)r.push(A[t+1]<<8|A[t]);return r},ma=function(A){for(var e=A.length,r=[],t=0;t<e;t+=4)r.push(A[t+3]<<24|A[t+2]<<16|A[t+1]<<8|A[t]);return r},se=5,$r=11,Br=2,va=$r-se,Ss=65536>>se,Ea=1<<se,cr=Ea-1,Ha=1024>>se,Ia=Ss+Ha,ya=Ia,ba=32,xa=ya+ba,La=65536>>$r,Ta=1<<va,Ka=Ta-1,Rn=function(A,e,r){return A.slice?A.slice(e,r):new Uint16Array(Array.prototype.slice.call(A,e,r))},Sa=function(A,e,r){return A.slice?A.slice(e,r):new Uint32Array(Array.prototype.slice.call(A,e,r))},Da=function(A,e){var r=ha(A),t=Array.isArray(r)?ma(r):new Uint32Array(r),n=Array.isArray(r)?pa(r):new Uint16Array(r),s=24,i=Rn(n,s/2,t[4]/2),a=t[5]===2?Rn(n,(s+t[4])/2):Sa(t,Math.ceil((s+t[4])/4));return new Ma(t[0],t[1],t[2],t[3],i,a)},Ma=(function(){function A(e,r,t,n,s,i){this.initialValue=e,this.errorValue=r,this.highStart=t,this.highValueIndex=n,this.index=s,this.data=i}return A.prototype.get=function(e){var r;if(e>=0){if(e<55296||e>56319&&e<=65535)return r=this.index[e>>se],r=(r<<Br)+(e&cr),this.data[r];if(e<=65535)return r=this.index[Ss+(e-55296>>se)],r=(r<<Br)+(e&cr),this.data[r];if(e<this.highStart)return r=xa-La+(e>>$r),r=this.index[r],r+=e>>se&Ka,r=this.index[r],r=(r<<Br)+(e&cr),this.data[r];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),_n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ra=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(xe=0;xe<_n.length;xe++)Ra[_n.charCodeAt(xe)]=xe;var xe,_a="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==",On=50,Oa=1,Ds=2,Ms=3,Ga=4,Na=5,Gn=7,Rs=8,Nn=9,JA=10,Tr=11,Vn=12,Kr=13,Va=14,_e=15,Sr=16,it=17,Le=18,Pa=19,Pn=20,Dr=21,Te=22,ur=23,fe=24,QA=25,Oe=26,Ge=27,ge=28,ka=29,re=30,Xa=31,at=32,ot=33,Mr=34,Rr=35,_r=36,Ze=37,Or=38,mt=39,vt=40,lr=41,_s=42,Wa=43,Ja=[9001,65288],Os="!",M="\xD7",Bt="\xF7",Gr=Da(_a),OA=[re,_r],Nr=[Oa,Ds,Ms,Na],Gs=[JA,Rs],kn=[Ge,Oe],Ya=Nr.concat(Gs),Xn=[Or,mt,vt,Mr,Rr],Za=[_e,Kr],ja=function(A,e){e===void 0&&(e="strict");var r=[],t=[],n=[];return A.forEach(function(s,i){var a=Gr.get(s);if(a>On?(n.push(!0),a-=On):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return t.push(i),r.push(Sr);if(a===Ga||a===Tr){if(i===0)return t.push(i),r.push(re);var o=r[i-1];return Ya.indexOf(o)===-1?(t.push(t[i-1]),r.push(o)):(t.push(i),r.push(re))}if(t.push(i),a===Xa)return r.push(e==="strict"?Dr:Ze);if(a===_s||a===ka)return r.push(re);if(a===Wa)return s>=131072&&s<=196605||s>=196608&&s<=262141?r.push(Ze):r.push(re);r.push(a)}),[t,r,n]},fr=function(A,e,r,t){var n=t[r];if(Array.isArray(A)?A.indexOf(n)!==-1:A===n)for(var s=r;s<=t.length;){s++;var i=t[s];if(i===e)return!0;if(i!==JA)break}if(n===JA)for(var s=r;s>0;){s--;var a=t[s];if(Array.isArray(A)?A.indexOf(a)!==-1:A===a)for(var o=r;o<=t.length;){o++;var i=t[o];if(i===e)return!0;if(i!==JA)break}if(a!==JA)break}return!1},Wn=function(A,e){for(var r=A;r>=0;){var t=e[r];if(t===JA)r--;else return t}return 0},qa=function(A,e,r,t,n){if(r[t]===0)return M;var s=t-1;if(Array.isArray(n)&&n[s]===!0)return M;var i=s-1,a=s+1,o=e[s],B=i>=0?e[i]:0,u=e[a];if(o===Ds&&u===Ms)return M;if(Nr.indexOf(o)!==-1)return Os;if(Nr.indexOf(u)!==-1||Gs.indexOf(u)!==-1)return M;if(Wn(s,e)===Rs)return Bt;if(Gr.get(A[s])===Tr||(o===at||o===ot)&&Gr.get(A[a])===Tr||o===Gn||u===Gn||o===Nn||[JA,Kr,_e].indexOf(o)===-1&&u===Nn||[it,Le,Pa,fe,ge].indexOf(u)!==-1||Wn(s,e)===Te||fr(ur,Te,s,e)||fr([it,Le],Dr,s,e)||fr(Vn,Vn,s,e))return M;if(o===JA)return Bt;if(o===ur||u===ur)return M;if(u===Sr||o===Sr)return Bt;if([Kr,_e,Dr].indexOf(u)!==-1||o===Va||B===_r&&Za.indexOf(o)!==-1||o===ge&&u===_r||u===Pn||OA.indexOf(u)!==-1&&o===QA||OA.indexOf(o)!==-1&&u===QA||o===Ge&&[Ze,at,ot].indexOf(u)!==-1||[Ze,at,ot].indexOf(o)!==-1&&u===Oe||OA.indexOf(o)!==-1&&kn.indexOf(u)!==-1||kn.indexOf(o)!==-1&&OA.indexOf(u)!==-1||[Ge,Oe].indexOf(o)!==-1&&(u===QA||[Te,_e].indexOf(u)!==-1&&e[a+1]===QA)||[Te,_e].indexOf(o)!==-1&&u===QA||o===QA&&[QA,ge,fe].indexOf(u)!==-1)return M;if([QA,ge,fe,it,Le].indexOf(u)!==-1)for(var l=s;l>=0;){var f=e[l];if(f===QA)return M;if([ge,fe].indexOf(f)!==-1)l--;else break}if([Ge,Oe].indexOf(u)!==-1)for(var l=[it,Le].indexOf(o)!==-1?i:s;l>=0;){var f=e[l];if(f===QA)return M;if([ge,fe].indexOf(f)!==-1)l--;else break}if(Or===o&&[Or,mt,Mr,Rr].indexOf(u)!==-1||[mt,Mr].indexOf(o)!==-1&&[mt,vt].indexOf(u)!==-1||[vt,Rr].indexOf(o)!==-1&&u===vt||Xn.indexOf(o)!==-1&&[Pn,Oe].indexOf(u)!==-1||Xn.indexOf(u)!==-1&&o===Ge||OA.indexOf(o)!==-1&&OA.indexOf(u)!==-1||o===fe&&OA.indexOf(u)!==-1||OA.concat(QA).indexOf(o)!==-1&&u===Te&&Ja.indexOf(A[a])===-1||OA.concat(QA).indexOf(u)!==-1&&o===Le)return M;if(o===lr&&u===lr){for(var d=r[s],g=1;d>0&&(d--,e[d]===lr);)g++;if(g%2!==0)return M}return o===at&&u===ot?M:Bt},za=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var r=ja(A,e.lineBreak),t=r[0],n=r[1],s=r[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(n=n.map(function(a){return[QA,re,_s].indexOf(a)!==-1?Ze:a}));var i=e.wordBreak==="keep-all"?s.map(function(a,o){return a&&A[o]>=19968&&A[o]<=40959}):void 0;return[t,n,i]},$a=(function(){function A(e,r,t,n){this.codePoints=e,this.required=r===Os,this.start=t,this.end=n}return A.prototype.slice=function(){return q.apply(void 0,this.codePoints.slice(this.start,this.end))},A})(),Ao=function(A,e){var r=_t(A),t=za(r,e),n=t[0],s=t[1],i=t[2],a=r.length,o=0,B=0;return{next:function(){if(B>=a)return{done:!0,value:null};for(var u=M;B<a&&(u=qa(r,s,n,++B,i))===M;);if(u!==M||B===a){var l=new $a(r,u,o,B);return o=B,{value:l,done:!1}}return{done:!0,value:null}}}},eo=1,to=2,ze=4,Jn=8,It=10,Yn=47,ke=92,ro=9,no=32,ct=34,Ke=61,so=35,io=36,ao=37,ut=39,lt=40,Se=41,oo=95,gA=45,Bo=33,co=60,uo=62,lo=64,fo=91,go=93,wo=61,Qo=123,ft=63,Co=125,Zn=124,Uo=126,Fo=128,jn=65533,gr=42,ne=43,ho=44,po=58,mo=59,je=46,vo=0,Eo=8,Ho=11,Io=14,yo=31,bo=127,LA=-1,Ns=48,Vs=97,Ps=101,xo=102,Lo=117,To=122,ks=65,Xs=69,Ws=70,Ko=85,So=90,oA=function(A){return A>=Ns&&A<=57},Do=function(A){return A>=55296&&A<=57343},we=function(A){return oA(A)||A>=ks&&A<=Ws||A>=Vs&&A<=xo},Mo=function(A){return A>=Vs&&A<=To},Ro=function(A){return A>=ks&&A<=So},_o=function(A){return Mo(A)||Ro(A)},Oo=function(A){return A>=Fo},gt=function(A){return A===It||A===ro||A===no},yt=function(A){return _o(A)||Oo(A)||A===oo},qn=function(A){return yt(A)||oA(A)||A===gA},Go=function(A){return A>=vo&&A<=Eo||A===Ho||A>=Io&&A<=yo||A===bo},WA=function(A,e){return A!==ke?!1:e!==It},wt=function(A,e,r){return A===gA?yt(e)||WA(e,r):yt(A)?!0:!!(A===ke&&WA(A,e))},wr=function(A,e,r){return A===ne||A===gA?oA(e)?!0:e===je&&oA(r):oA(A===je?e:A)},No=function(A){var e=0,r=1;(A[e]===ne||A[e]===gA)&&(A[e]===gA&&(r=-1),e++);for(var t=[];oA(A[e]);)t.push(A[e++]);var n=t.length?parseInt(q.apply(void 0,t),10):0;A[e]===je&&e++;for(var s=[];oA(A[e]);)s.push(A[e++]);var i=s.length,a=i?parseInt(q.apply(void 0,s),10):0;(A[e]===Xs||A[e]===Ps)&&e++;var o=1;(A[e]===ne||A[e]===gA)&&(A[e]===gA&&(o=-1),e++);for(var B=[];oA(A[e]);)B.push(A[e++]);var u=B.length?parseInt(q.apply(void 0,B),10):0;return r*(n+a*Math.pow(10,-i))*Math.pow(10,o*u)},Vo={type:2},Po={type:3},ko={type:4},Xo={type:13},Wo={type:8},Jo={type:21},Yo={type:9},Zo={type:10},jo={type:11},qo={type:12},zo={type:14},Qt={type:23},$o={type:1},AB={type:25},eB={type:24},tB={type:26},rB={type:27},nB={type:28},sB={type:29},iB={type:31},Vr={type:32},Js=(function(){function A(){this._value=[]}return A.prototype.write=function(e){this._value=this._value.concat(_t(e))},A.prototype.read=function(){for(var e=[],r=this.consumeToken();r!==Vr;)e.push(r),r=this.consumeToken();return e},A.prototype.consumeToken=function(){var e=this.consumeCodePoint();switch(e){case ct:return this.consumeStringToken(ct);case so:var r=this.peekCodePoint(0),t=this.peekCodePoint(1),n=this.peekCodePoint(2);if(qn(r)||WA(t,n)){var s=wt(r,t,n)?to:eo,i=this.consumeName();return{type:5,value:i,flags:s}}break;case io:if(this.peekCodePoint(0)===Ke)return this.consumeCodePoint(),Xo;break;case ut:return this.consumeStringToken(ut);case lt:return Vo;case Se:return Po;case gr:if(this.peekCodePoint(0)===Ke)return this.consumeCodePoint(),zo;break;case ne:if(wr(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case ho:return ko;case gA:var a=e,o=this.peekCodePoint(0),B=this.peekCodePoint(1);if(wr(a,o,B))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(wt(a,o,B))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(o===gA&&B===uo)return this.consumeCodePoint(),this.consumeCodePoint(),eB;break;case je:if(wr(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case Yn:if(this.peekCodePoint(0)===gr)for(this.consumeCodePoint();;){var u=this.consumeCodePoint();if(u===gr&&(u=this.consumeCodePoint(),u===Yn))return this.consumeToken();if(u===LA)return this.consumeToken()}break;case po:return tB;case mo:return rB;case co:if(this.peekCodePoint(0)===Bo&&this.peekCodePoint(1)===gA&&this.peekCodePoint(2)===gA)return this.consumeCodePoint(),this.consumeCodePoint(),AB;break;case lo:var l=this.peekCodePoint(0),f=this.peekCodePoint(1),d=this.peekCodePoint(2);if(wt(l,f,d)){var i=this.consumeName();return{type:7,value:i}}break;case fo:return nB;case ke:if(WA(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case go:return sB;case wo:if(this.peekCodePoint(0)===Ke)return this.consumeCodePoint(),Wo;break;case Qo:return jo;case Co:return qo;case Lo:case Ko:var g=this.peekCodePoint(0),Q=this.peekCodePoint(1);return g===ne&&(we(Q)||Q===ft)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case Zn:if(this.peekCodePoint(0)===Ke)return this.consumeCodePoint(),Yo;if(this.peekCodePoint(0)===Zn)return this.consumeCodePoint(),Jo;break;case Uo:if(this.peekCodePoint(0)===Ke)return this.consumeCodePoint(),Zo;break;case LA:return Vr}return gt(e)?(this.consumeWhiteSpace(),iB):oA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):yt(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:q(e)}},A.prototype.consumeCodePoint=function(){var e=this._value.shift();return typeof e>"u"?-1:e},A.prototype.reconsumeCodePoint=function(e){this._value.unshift(e)},A.prototype.peekCodePoint=function(e){return e>=this._value.length?-1:this._value[e]},A.prototype.consumeUnicodeRangeToken=function(){for(var e=[],r=this.consumeCodePoint();we(r)&&e.length<6;)e.push(r),r=this.consumeCodePoint();for(var t=!1;r===ft&&e.length<6;)e.push(r),r=this.consumeCodePoint(),t=!0;if(t){var n=parseInt(q.apply(void 0,e.map(function(o){return o===ft?Ns:o})),16),s=parseInt(q.apply(void 0,e.map(function(o){return o===ft?Ws:o})),16);return{type:30,start:n,end:s}}var i=parseInt(q.apply(void 0,e),16);if(this.peekCodePoint(0)===gA&&we(this.peekCodePoint(1))){this.consumeCodePoint(),r=this.consumeCodePoint();for(var a=[];we(r)&&a.length<6;)a.push(r),r=this.consumeCodePoint();var s=parseInt(q.apply(void 0,a),16);return{type:30,start:i,end:s}}else return{type:30,start:i,end:i}},A.prototype.consumeIdentLikeToken=function(){var e=this.consumeName();return e.toLowerCase()==="url"&&this.peekCodePoint(0)===lt?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===lt?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},A.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===LA)return{type:22,value:""};var r=this.peekCodePoint(0);if(r===ut||r===ct){var t=this.consumeStringToken(this.consumeCodePoint());return t.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===LA||this.peekCodePoint(0)===Se)?(this.consumeCodePoint(),{type:22,value:t.value}):(this.consumeBadUrlRemnants(),Qt)}for(;;){var n=this.consumeCodePoint();if(n===LA||n===Se)return{type:22,value:q.apply(void 0,e)};if(gt(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===LA||this.peekCodePoint(0)===Se?(this.consumeCodePoint(),{type:22,value:q.apply(void 0,e)}):(this.consumeBadUrlRemnants(),Qt);if(n===ct||n===ut||n===lt||Go(n))return this.consumeBadUrlRemnants(),Qt;if(n===ke)if(WA(n,this.peekCodePoint(0)))e.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),Qt;else e.push(n)}},A.prototype.consumeWhiteSpace=function(){for(;gt(this.peekCodePoint(0));)this.consumeCodePoint()},A.prototype.consumeBadUrlRemnants=function(){for(;;){var e=this.consumeCodePoint();if(e===Se||e===LA)return;WA(e,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},A.prototype.consumeStringSlice=function(e){for(var r=5e4,t="";e>0;){var n=Math.min(r,e);t+=q.apply(void 0,this._value.splice(0,n)),e-=n}return this._value.shift(),t},A.prototype.consumeStringToken=function(e){var r="",t=0;do{var n=this._value[t];if(n===LA||n===void 0||n===e)return r+=this.consumeStringSlice(t),{type:0,value:r};if(n===It)return this._value.splice(0,t),$o;if(n===ke){var s=this._value[t+1];s!==LA&&s!==void 0&&(s===It?(r+=this.consumeStringSlice(t),t=-1,this._value.shift()):WA(n,s)&&(r+=this.consumeStringSlice(t),r+=q(this.consumeEscapedCodePoint()),t=-1))}t++}while(!0)},A.prototype.consumeNumber=function(){var e=[],r=ze,t=this.peekCodePoint(0);for((t===ne||t===gA)&&e.push(this.consumeCodePoint());oA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());t=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(t===je&&oA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),r=Jn;oA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());t=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((t===Xs||t===Ps)&&((n===ne||n===gA)&&oA(s)||oA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),r=Jn;oA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[No(e),r]},A.prototype.consumeNumericToken=function(){var e=this.consumeNumber(),r=e[0],t=e[1],n=this.peekCodePoint(0),s=this.peekCodePoint(1),i=this.peekCodePoint(2);if(wt(n,s,i)){var a=this.consumeName();return{type:15,number:r,flags:t,unit:a}}return n===ao?(this.consumeCodePoint(),{type:16,number:r,flags:t}):{type:17,number:r,flags:t}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(we(e)){for(var r=q(e);we(this.peekCodePoint(0))&&r.length<6;)r+=q(this.consumeCodePoint());gt(this.peekCodePoint(0))&&this.consumeCodePoint();var t=parseInt(r,16);return t===0||Do(t)||t>1114111?jn:t}return e===LA?jn:e},A.prototype.consumeName=function(){for(var e="";;){var r=this.consumeCodePoint();if(qn(r))e+=q(r);else if(WA(r,this.peekCodePoint(0)))e+=q(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(r),e}},A})(),Ys=(function(){function A(e){this._tokens=e}return A.create=function(e){var r=new Js;return r.write(e),new A(r.read())},A.parseValue=function(e){return A.create(e).parseComponentValue()},A.parseValues=function(e){return A.create(e).parseComponentValues()},A.prototype.parseComponentValue=function(){for(var e=this.consumeToken();e.type===31;)e=this.consumeToken();if(e.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(e);var r=this.consumeComponentValue();do e=this.consumeToken();while(e.type===31);if(e.type===32)return r;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},A.prototype.parseComponentValues=function(){for(var e=[];;){var r=this.consumeComponentValue();if(r.type===32)return e;e.push(r),e.push()}},A.prototype.consumeComponentValue=function(){var e=this.consumeToken();switch(e.type){case 11:case 28:case 2:return this.consumeSimpleBlock(e.type);case 19:return this.consumeFunction(e)}return e},A.prototype.consumeSimpleBlock=function(e){for(var r={type:e,values:[]},t=this.consumeToken();;){if(t.type===32||oB(t,e))return r;this.reconsumeToken(t),r.values.push(this.consumeComponentValue()),t=this.consumeToken()}},A.prototype.consumeFunction=function(e){for(var r={name:e.value,values:[],type:18};;){var t=this.consumeToken();if(t.type===32||t.type===3)return r;this.reconsumeToken(t),r.values.push(this.consumeComponentValue())}},A.prototype.consumeToken=function(){var e=this._tokens.shift();return typeof e>"u"?Vr:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A})(),$e=function(A){return A.type===15},ve=function(A){return A.type===17},V=function(A){return A.type===20},aB=function(A){return A.type===0},Pr=function(A,e){return V(A)&&A.value===e},Zs=function(A){return A.type!==31},me=function(A){return A.type!==31&&A.type!==4},TA=function(A){var e=[],r=[];return A.forEach(function(t){if(t.type===4){if(r.length===0)throw new Error("Error parsing function args, zero tokens for arg");e.push(r),r=[];return}t.type!==31&&r.push(t)}),r.length&&e.push(r),e},oB=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},zA=function(A){return A.type===17||A.type===15},AA=function(A){return A.type===16||zA(A)},js=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},iA={type:17,number:0,flags:ze},An={type:16,number:50,flags:ze},YA={type:16,number:100,flags:ze},Ne=function(A,e,r){var t=A[0],n=A[1];return[k(t,e),k(typeof n<"u"?n:t,r)]},k=function(A,e){if(A.type===16)return A.number/100*e;if($e(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},qs="deg",zs="grad",$s="rad",Ai="turn",Ot={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case qs:return Math.PI*e.number/180;case zs:return Math.PI/200*e.number;case $s:return e.number;case Ai:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},ei=function(A){return A.type===15&&(A.unit===qs||A.unit===zs||A.unit===$s||A.unit===Ai)},ti=function(A){var e=A.filter(V).map(function(r){return r.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[iA,iA];case"to top":case"bottom":return pA(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[iA,YA];case"to right":case"left":return pA(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[YA,YA];case"to bottom":case"top":return pA(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[YA,iA];case"to left":case"right":return pA(270)}return 0},pA=function(A){return Math.PI*A/180},jA={name:"color",parse:function(A,e){if(e.type===18){var r=BB[e.name];if(typeof r>"u")throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return r(A,e.values)}if(e.type===5){if(e.value.length===3){var t=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3);return ZA(parseInt(t+t,16),parseInt(n+n,16),parseInt(s+s,16),1)}if(e.value.length===4){var t=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3),i=e.value.substring(3,4);return ZA(parseInt(t+t,16),parseInt(n+n,16),parseInt(s+s,16),parseInt(i+i,16)/255)}if(e.value.length===6){var t=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6);return ZA(parseInt(t,16),parseInt(n,16),parseInt(s,16),1)}if(e.value.length===8){var t=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6),i=e.value.substring(6,8);return ZA(parseInt(t,16),parseInt(n,16),parseInt(s,16),parseInt(i,16)/255)}}if(e.type===20){var a=NA[e.value.toUpperCase()];if(typeof a<"u")return a}return NA.TRANSPARENT}},qA=function(A){return(255&A)===0},rA=function(A){var e=255&A,r=255&A>>8,t=255&A>>16,n=255&A>>24;return e<255?"rgba("+n+","+t+","+r+","+e/255+")":"rgb("+n+","+t+","+r+")"},ZA=function(A,e,r,t){return(A<<24|e<<16|r<<8|Math.round(t*255)<<0)>>>0},zn=function(A,e){if(A.type===17)return A.number;if(A.type===16){var r=e===3?1:255;return e===3?A.number/100*r:Math.round(A.number/100*r)}return 0},$n=function(A,e){var r=e.filter(me);if(r.length===3){var t=r.map(zn),n=t[0],s=t[1],i=t[2];return ZA(n,s,i,1)}if(r.length===4){var a=r.map(zn),n=a[0],s=a[1],i=a[2],o=a[3];return ZA(n,s,i,o)}return 0};function Qr(A,e,r){return r<0&&(r+=1),r>=1&&(r-=1),r<1/6?(e-A)*r*6+A:r<1/2?e:r<2/3?(e-A)*6*(2/3-r)+A:A}var As=function(A,e){var r=e.filter(me),t=r[0],n=r[1],s=r[2],i=r[3],a=(t.type===17?pA(t.number):Ot.parse(A,t))/(Math.PI*2),o=AA(n)?n.number/100:0,B=AA(s)?s.number/100:0,u=typeof i<"u"&&AA(i)?k(i,1):1;if(o===0)return ZA(B*255,B*255,B*255,1);var l=B<=.5?B*(o+1):B+o-B*o,f=B*2-l,d=Qr(f,l,a+1/3),g=Qr(f,l,a),Q=Qr(f,l,a-1/3);return ZA(d*255,g*255,Q*255,u)},BB={hsl:As,hsla:As,rgb:$n,rgba:$n},Xe=function(A,e){return jA.parse(A,Ys.create(e).parseComponentValue())},NA={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},cB={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(r){if(V(r))switch(r.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},uB={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Gt=function(A,e){var r=jA.parse(A,e[0]),t=e[1];return t&&AA(t)?{color:r,stop:t}:{color:r,stop:null}},es=function(A,e){var r=A[0],t=A[A.length-1];r.stop===null&&(r.stop=iA),t.stop===null&&(t.stop=YA);for(var n=[],s=0,i=0;i<A.length;i++){var a=A[i].stop;if(a!==null){var o=k(a,e);o>s?n.push(o):n.push(s),s=o}else n.push(null)}for(var B=null,i=0;i<n.length;i++){var u=n[i];if(u===null)B===null&&(B=i);else if(B!==null){for(var l=i-B,f=n[B-1],d=(u-f)/(l+1),g=1;g<=l;g++)n[B+g-1]=d*g;B=null}}return A.map(function(Q,L){var h=Q.color;return{color:h,stop:Math.max(Math.min(1,n[L]/e),0)}})},lB=function(A,e,r){var t=e/2,n=r/2,s=k(A[0],e)-t,i=n-k(A[1],r);return(Math.atan2(i,s)+Math.PI*2)%(Math.PI*2)},fB=function(A,e,r){var t=typeof A=="number"?A:lB(A,e,r),n=Math.abs(e*Math.sin(t))+Math.abs(r*Math.cos(t)),s=e/2,i=r/2,a=n/2,o=Math.sin(t-Math.PI/2)*a,B=Math.cos(t-Math.PI/2)*a;return[n,s-B,s+B,i-o,i+o]},IA=function(A,e){return Math.sqrt(A*A+e*e)},ts=function(A,e,r,t,n){var s=[[0,0],[0,e],[A,0],[A,e]];return s.reduce(function(i,a){var o=a[0],B=a[1],u=IA(r-o,t-B);return(n?u<i.optimumDistance:u>i.optimumDistance)?{optimumCorner:a,optimumDistance:u}:i},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},gB=function(A,e,r,t,n){var s=0,i=0;switch(A.size){case 0:A.shape===0?s=i=Math.min(Math.abs(e),Math.abs(e-t),Math.abs(r),Math.abs(r-n)):A.shape===1&&(s=Math.min(Math.abs(e),Math.abs(e-t)),i=Math.min(Math.abs(r),Math.abs(r-n)));break;case 2:if(A.shape===0)s=i=Math.min(IA(e,r),IA(e,r-n),IA(e-t,r),IA(e-t,r-n));else if(A.shape===1){var a=Math.min(Math.abs(r),Math.abs(r-n))/Math.min(Math.abs(e),Math.abs(e-t)),o=ts(t,n,e,r,!0),B=o[0],u=o[1];s=IA(B-e,(u-r)/a),i=a*s}break;case 1:A.shape===0?s=i=Math.max(Math.abs(e),Math.abs(e-t),Math.abs(r),Math.abs(r-n)):A.shape===1&&(s=Math.max(Math.abs(e),Math.abs(e-t)),i=Math.max(Math.abs(r),Math.abs(r-n)));break;case 3:if(A.shape===0)s=i=Math.max(IA(e,r),IA(e,r-n),IA(e-t,r),IA(e-t,r-n));else if(A.shape===1){var a=Math.max(Math.abs(r),Math.abs(r-n))/Math.max(Math.abs(e),Math.abs(e-t)),l=ts(t,n,e,r,!1),B=l[0],u=l[1];s=IA(B-e,(u-r)/a),i=a*s}break}return Array.isArray(A.size)&&(s=k(A.size[0],t),i=A.size.length===2?k(A.size[1],n):s),[s,i]},wB=function(A,e){var r=pA(180),t=[];return TA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&i.value==="to"){r=ti(n);return}else if(ei(i)){r=Ot.parse(A,i);return}}var a=Gt(A,n);t.push(a)}),{angle:r,stops:t,type:1}},Ct=function(A,e){var r=pA(180),t=[];return TA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&["top","left","right","bottom"].indexOf(i.value)!==-1){r=ti(n);return}else if(ei(i)){r=(Ot.parse(A,i)+pA(270))%pA(360);return}}var a=Gt(A,n);t.push(a)}),{angle:r,stops:t,type:1}},QB=function(A,e){var r=pA(180),t=[],n=1,s=0,i=3,a=[];return TA(e).forEach(function(o,B){var u=o[0];if(B===0){if(V(u)&&u.value==="linear"){n=1;return}else if(V(u)&&u.value==="radial"){n=2;return}}if(u.type===18){if(u.name==="from"){var l=jA.parse(A,u.values[0]);t.push({stop:iA,color:l})}else if(u.name==="to"){var l=jA.parse(A,u.values[0]);t.push({stop:YA,color:l})}else if(u.name==="color-stop"){var f=u.values.filter(me);if(f.length===2){var l=jA.parse(A,f[1]),d=f[0];ve(d)&&t.push({stop:{type:16,number:d.number*100,flags:d.flags},color:l})}}}}),n===1?{angle:(r+pA(180))%pA(360),stops:t,type:n}:{size:i,shape:s,stops:t,position:a,type:n}},ri="closest-side",ni="farthest-side",si="closest-corner",ii="farthest-corner",ai="circle",oi="ellipse",Bi="cover",ci="contain",CB=function(A,e){var r=0,t=3,n=[],s=[];return TA(e).forEach(function(i,a){var o=!0;if(a===0){var B=!1;o=i.reduce(function(l,f){if(B)if(V(f))switch(f.value){case"center":return s.push(An),l;case"top":case"left":return s.push(iA),l;case"right":case"bottom":return s.push(YA),l}else(AA(f)||zA(f))&&s.push(f);else if(V(f))switch(f.value){case ai:return r=0,!1;case oi:return r=1,!1;case"at":return B=!0,!1;case ri:return t=0,!1;case Bi:case ni:return t=1,!1;case ci:case si:return t=2,!1;case ii:return t=3,!1}else if(zA(f)||AA(f))return Array.isArray(t)||(t=[]),t.push(f),!1;return l},o)}if(o){var u=Gt(A,i);n.push(u)}}),{size:t,shape:r,stops:n,position:s,type:2}},dt=function(A,e){var r=0,t=3,n=[],s=[];return TA(e).forEach(function(i,a){var o=!0;if(a===0?o=i.reduce(function(u,l){if(V(l))switch(l.value){case"center":return s.push(An),!1;case"top":case"left":return s.push(iA),!1;case"right":case"bottom":return s.push(YA),!1}else if(AA(l)||zA(l))return s.push(l),!1;return u},o):a===1&&(o=i.reduce(function(u,l){if(V(l))switch(l.value){case ai:return r=0,!1;case oi:return r=1,!1;case ci:case ri:return t=0,!1;case ni:return t=1,!1;case si:return t=2,!1;case Bi:case ii:return t=3,!1}else if(zA(l)||AA(l))return Array.isArray(t)||(t=[]),t.push(l),!1;return u},o)),o){var B=Gt(A,i);n.push(B)}}),{size:t,shape:r,stops:n,position:s,type:2}},dB=function(A){return A.type===1},UB=function(A){return A.type===2},en={name:"image",parse:function(A,e){if(e.type===22){var r={url:e.value,type:0};return A.cache.addImage(e.value),r}if(e.type===18){var t=ui[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return t(A,e.values)}throw new Error("Unsupported image type "+e.type)}};function FB(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!ui[A.name])}var ui={"linear-gradient":wB,"-moz-linear-gradient":Ct,"-ms-linear-gradient":Ct,"-o-linear-gradient":Ct,"-webkit-linear-gradient":Ct,"radial-gradient":CB,"-moz-radial-gradient":dt,"-ms-radial-gradient":dt,"-o-radial-gradient":dt,"-webkit-radial-gradient":dt,"-webkit-gradient":QB},hB={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var r=e[0];return r.type===20&&r.value==="none"?[]:e.filter(function(t){return me(t)&&FB(t)}).map(function(t){return en.parse(A,t)})}},pB={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(r){if(V(r))switch(r.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},mB={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return TA(e).map(function(r){return r.filter(AA)}).map(js)}},vB={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return TA(e).map(function(r){return r.filter(V).map(function(t){return t.value}).join(" ")}).map(EB)}},EB=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},pe;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(pe||(pe={}));var HB={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return TA(e).map(function(r){return r.filter(IB)})}},IB=function(A){return V(A)||AA(A)},Nt=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},yB=Nt("top"),bB=Nt("right"),xB=Nt("bottom"),LB=Nt("left"),Vt=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,r){return js(r.filter(AA))}}},TB=Vt("top-left"),KB=Vt("top-right"),SB=Vt("bottom-right"),DB=Vt("bottom-left"),Pt=function(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(e,r){switch(r){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},MB=Pt("top"),RB=Pt("right"),_B=Pt("bottom"),OB=Pt("left"),kt=function(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(e,r){return $e(r)?r.number:0}}},GB=kt("top"),NB=kt("right"),VB=kt("bottom"),PB=kt("left"),kB={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},XB={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){return e==="rtl"?1:0}},WB={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(V).reduce(function(r,t){return r|JB(t.value)},0)}},JB=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},YB={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},ZB={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,e){return e.type===20&&e.value==="normal"?0:e.type===17||e.type===15?e.number:0}},bt;(function(A){A.NORMAL="normal",A.STRICT="strict"})(bt||(bt={}));var jB={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="strict"?bt.STRICT:bt.NORMAL}},qB={name:"line-height",initialValue:"normal",prefix:!1,type:4},rs=function(A,e){return V(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:AA(A)?k(A,e):e},zB={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:en.parse(A,e)}},$B={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){return e==="inside"?0:1}},kr={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Xt=function(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}},Ac=Xt("top"),ec=Xt("right"),tc=Xt("bottom"),rc=Xt("left"),nc={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(V).map(function(r){switch(r.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},sc={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="break-word"?"break-word":"normal"}},Wt=function(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},ic=Wt("top"),ac=Wt("right"),oc=Wt("bottom"),Bc=Wt("left"),cc={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,e){switch(e){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},uc={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},lc={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&Pr(e[0],"none")?[]:TA(e).map(function(r){for(var t={color:NA.TRANSPARENT,offsetX:iA,offsetY:iA,blur:iA},n=0,s=0;s<r.length;s++){var i=r[s];zA(i)?(n===0?t.offsetX=i:n===1?t.offsetY=i:t.blur=i,n++):t.color=jA.parse(A,i)}return t})}},fc={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},gc={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,e){if(e.type===20&&e.value==="none")return null;if(e.type===18){var r=Cc[e.name];if(typeof r>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return r(e.values)}return null}},wc=function(A){var e=A.filter(function(r){return r.type===17}).map(function(r){return r.number});return e.length===6?e:null},Qc=function(A){var e=A.filter(function(o){return o.type===17}).map(function(o){return o.number}),r=e[0],t=e[1];e[2],e[3];var n=e[4],s=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var i=e[12],a=e[13];return e[14],e[15],e.length===16?[r,t,n,s,i,a]:null},Cc={matrix:wc,matrix3d:Qc},ns={type:16,number:50,flags:ze},dc=[ns,ns],Uc={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var r=e.filter(AA);return r.length!==2?dc:[r[0],r[1]]}},Fc={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"hidden":return 1;case"collapse":return 2;default:return 0}}},We;(function(A){A.NORMAL="normal",A.BREAK_ALL="break-all",A.KEEP_ALL="keep-all"})(We||(We={}));var hc={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-all":return We.BREAK_ALL;case"keep-all":return We.KEEP_ALL;default:return We.NORMAL}}},pc={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,e){if(e.type===20)return{auto:!0,order:0};if(ve(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},li={name:"time",parse:function(A,e){if(e.type===15)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")}},mc={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return ve(e)?e.number:1}},vc={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Ec={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(V).map(function(r){switch(r.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(r){return r!==0})}},Hc={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,e){var r=[],t=[];return e.forEach(function(n){switch(n.type){case 20:case 0:r.push(n.value);break;case 17:r.push(n.number.toString());break;case 4:t.push(r.join(" ")),r.length=0;break}}),r.length&&t.push(r.join(" ")),t.map(function(n){return n.indexOf(" ")===-1?n:"'"+n+"'"})}},Ic={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},yc={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,e){return ve(e)?e.number:V(e)&&e.value==="bold"?700:400}},bc={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(V).map(function(r){return r.value})}},xc={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},eA=function(A,e){return(A&e)!==0},Lc={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var r=e[0];return r.type===20&&r.value==="none"?[]:e}},Tc={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var r=e[0];if(r.type===20&&r.value==="none")return null;for(var t=[],n=e.filter(Zs),s=0;s<n.length;s++){var i=n[s],a=n[s+1];if(i.type===20){var o=a&&ve(a)?a.number:1;t.push({counter:i.value,increment:o})}}return t}},Kc={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var r=[],t=e.filter(Zs),n=0;n<t.length;n++){var s=t[n],i=t[n+1];if(V(s)&&s.value!=="none"){var a=i&&ve(i)?i.number:0;r.push({counter:s.value,reset:a})}}return r}},Sc={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter($e).map(function(r){return li.parse(A,r)})}},Dc={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var r=e[0];if(r.type===20&&r.value==="none")return null;var t=[],n=e.filter(aB);if(n.length%2!==0)return null;for(var s=0;s<n.length;s+=2){var i=n[s].value,a=n[s+1].value;t.push({open:i,close:a})}return t}},ss=function(A,e,r){if(!A)return"";var t=A[Math.min(e,A.length-1)];return t?r?t.open:t.close:""},Mc={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&Pr(e[0],"none")?[]:TA(e).map(function(r){for(var t={color:255,offsetX:iA,offsetY:iA,blur:iA,spread:iA,inset:!1},n=0,s=0;s<r.length;s++){var i=r[s];Pr(i,"inset")?t.inset=!0:zA(i)?(n===0?t.offsetX=i:n===1?t.offsetY=i:n===2?t.blur=i:t.spread=i,n++):t.color=jA.parse(A,i)}return t})}},Rc={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var r=[0,1,2],t=[];return e.filter(V).forEach(function(n){switch(n.value){case"stroke":t.push(1);break;case"fill":t.push(0);break;case"markers":t.push(2);break}}),r.forEach(function(n){t.indexOf(n)===-1&&t.push(n)}),t}},_c={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Oc={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return $e(e)?e.number:0}},Gc=(function(){function A(e,r){var t,n;this.animationDuration=v(e,Sc,r.animationDuration),this.backgroundClip=v(e,cB,r.backgroundClip),this.backgroundColor=v(e,uB,r.backgroundColor),this.backgroundImage=v(e,hB,r.backgroundImage),this.backgroundOrigin=v(e,pB,r.backgroundOrigin),this.backgroundPosition=v(e,mB,r.backgroundPosition),this.backgroundRepeat=v(e,vB,r.backgroundRepeat),this.backgroundSize=v(e,HB,r.backgroundSize),this.borderTopColor=v(e,yB,r.borderTopColor),this.borderRightColor=v(e,bB,r.borderRightColor),this.borderBottomColor=v(e,xB,r.borderBottomColor),this.borderLeftColor=v(e,LB,r.borderLeftColor),this.borderTopLeftRadius=v(e,TB,r.borderTopLeftRadius),this.borderTopRightRadius=v(e,KB,r.borderTopRightRadius),this.borderBottomRightRadius=v(e,SB,r.borderBottomRightRadius),this.borderBottomLeftRadius=v(e,DB,r.borderBottomLeftRadius),this.borderTopStyle=v(e,MB,r.borderTopStyle),this.borderRightStyle=v(e,RB,r.borderRightStyle),this.borderBottomStyle=v(e,_B,r.borderBottomStyle),this.borderLeftStyle=v(e,OB,r.borderLeftStyle),this.borderTopWidth=v(e,GB,r.borderTopWidth),this.borderRightWidth=v(e,NB,r.borderRightWidth),this.borderBottomWidth=v(e,VB,r.borderBottomWidth),this.borderLeftWidth=v(e,PB,r.borderLeftWidth),this.boxShadow=v(e,Mc,r.boxShadow),this.color=v(e,kB,r.color),this.direction=v(e,XB,r.direction),this.display=v(e,WB,r.display),this.float=v(e,YB,r.cssFloat),this.fontFamily=v(e,Hc,r.fontFamily),this.fontSize=v(e,Ic,r.fontSize),this.fontStyle=v(e,xc,r.fontStyle),this.fontVariant=v(e,bc,r.fontVariant),this.fontWeight=v(e,yc,r.fontWeight),this.letterSpacing=v(e,ZB,r.letterSpacing),this.lineBreak=v(e,jB,r.lineBreak),this.lineHeight=v(e,qB,r.lineHeight),this.listStyleImage=v(e,zB,r.listStyleImage),this.listStylePosition=v(e,$B,r.listStylePosition),this.listStyleType=v(e,kr,r.listStyleType),this.marginTop=v(e,Ac,r.marginTop),this.marginRight=v(e,ec,r.marginRight),this.marginBottom=v(e,tc,r.marginBottom),this.marginLeft=v(e,rc,r.marginLeft),this.opacity=v(e,mc,r.opacity);var s=v(e,nc,r.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=v(e,sc,r.overflowWrap),this.paddingTop=v(e,ic,r.paddingTop),this.paddingRight=v(e,ac,r.paddingRight),this.paddingBottom=v(e,oc,r.paddingBottom),this.paddingLeft=v(e,Bc,r.paddingLeft),this.paintOrder=v(e,Rc,r.paintOrder),this.position=v(e,uc,r.position),this.textAlign=v(e,cc,r.textAlign),this.textDecorationColor=v(e,vc,(t=r.textDecorationColor)!==null&&t!==void 0?t:r.color),this.textDecorationLine=v(e,Ec,(n=r.textDecorationLine)!==null&&n!==void 0?n:r.textDecoration),this.textShadow=v(e,lc,r.textShadow),this.textTransform=v(e,fc,r.textTransform),this.transform=v(e,gc,r.transform),this.transformOrigin=v(e,Uc,r.transformOrigin),this.visibility=v(e,Fc,r.visibility),this.webkitTextStrokeColor=v(e,_c,r.webkitTextStrokeColor),this.webkitTextStrokeWidth=v(e,Oc,r.webkitTextStrokeWidth),this.wordBreak=v(e,hc,r.wordBreak),this.zIndex=v(e,pc,r.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return qA(this.backgroundColor)},A.prototype.isTransformed=function(){return this.transform!==null},A.prototype.isPositioned=function(){return this.position!==0},A.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},A.prototype.isFloating=function(){return this.float!==0},A.prototype.isInlineLevel=function(){return eA(this.display,4)||eA(this.display,33554432)||eA(this.display,268435456)||eA(this.display,536870912)||eA(this.display,67108864)||eA(this.display,134217728)},A})(),Nc=(function(){function A(e,r){this.content=v(e,Lc,r.content),this.quotes=v(e,Dc,r.quotes)}return A})(),is=(function(){function A(e,r){this.counterIncrement=v(e,Tc,r.counterIncrement),this.counterReset=v(e,Kc,r.counterReset)}return A})(),v=function(A,e,r){var t=new Js,n=r!==null&&typeof r<"u"?r.toString():e.initialValue;t.write(n);var s=new Ys(t.read());switch(e.type){case 2:var i=s.parseComponentValue();return e.parse(A,V(i)?i.value:e.initialValue);case 0:return e.parse(A,s.parseComponentValue());case 1:return e.parse(A,s.parseComponentValues());case 4:return s.parseComponentValue();case 3:switch(e.format){case"angle":return Ot.parse(A,s.parseComponentValue());case"color":return jA.parse(A,s.parseComponentValue());case"image":return en.parse(A,s.parseComponentValue());case"length":var a=s.parseComponentValue();return zA(a)?a:iA;case"length-percentage":var o=s.parseComponentValue();return AA(o)?o:iA;case"time":return li.parse(A,s.parseComponentValue())}break}},Vc="data-html2canvas-debug",Pc=function(A){var e=A.getAttribute(Vc);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Xr=function(A,e){var r=Pc(A);return r===1||e===r},KA=(function(){function A(e,r){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,Xr(r,3))debugger;this.styles=new Gc(e,window.getComputedStyle(r,null)),Yr(r)&&(this.styles.animationDuration.some(function(t){return t>0})&&(r.style.animationDuration="0s"),this.styles.transform!==null&&(r.style.transform="none")),this.bounds=Rt(this.context,r),Xr(r,4)&&(this.flags|=16)}return A})(),kc="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",as="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ve=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(De=0;De<as.length;De++)Ve[as.charCodeAt(De)]=De;var De,Xc=function(A){var e=A.length*.75,r=A.length,t,n=0,s,i,a,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var B=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),u=Array.isArray(B)?B:new Uint8Array(B);for(t=0;t<r;t+=4)s=Ve[A.charCodeAt(t)],i=Ve[A.charCodeAt(t+1)],a=Ve[A.charCodeAt(t+2)],o=Ve[A.charCodeAt(t+3)],u[n++]=s<<2|i>>4,u[n++]=(i&15)<<4|a>>2,u[n++]=(a&3)<<6|o&63;return B},Wc=function(A){for(var e=A.length,r=[],t=0;t<e;t+=2)r.push(A[t+1]<<8|A[t]);return r},Jc=function(A){for(var e=A.length,r=[],t=0;t<e;t+=4)r.push(A[t+3]<<24|A[t+2]<<16|A[t+1]<<8|A[t]);return r},ie=5,tn=11,Cr=2,Yc=tn-ie,fi=65536>>ie,Zc=1<<ie,dr=Zc-1,jc=1024>>ie,qc=fi+jc,zc=qc,$c=32,Au=zc+$c,eu=65536>>tn,tu=1<<Yc,ru=tu-1,os=function(A,e,r){return A.slice?A.slice(e,r):new Uint16Array(Array.prototype.slice.call(A,e,r))},nu=function(A,e,r){return A.slice?A.slice(e,r):new Uint32Array(Array.prototype.slice.call(A,e,r))},su=function(A,e){var r=Xc(A),t=Array.isArray(r)?Jc(r):new Uint32Array(r),n=Array.isArray(r)?Wc(r):new Uint16Array(r),s=24,i=os(n,s/2,t[4]/2),a=t[5]===2?os(n,(s+t[4])/2):nu(t,Math.ceil((s+t[4])/4));return new iu(t[0],t[1],t[2],t[3],i,a)},iu=(function(){function A(e,r,t,n,s,i){this.initialValue=e,this.errorValue=r,this.highStart=t,this.highValueIndex=n,this.index=s,this.data=i}return A.prototype.get=function(e){var r;if(e>=0){if(e<55296||e>56319&&e<=65535)return r=this.index[e>>ie],r=(r<<Cr)+(e&dr),this.data[r];if(e<=65535)return r=this.index[fi+(e-55296>>ie)],r=(r<<Cr)+(e&dr),this.data[r];if(e<this.highStart)return r=Au-eu+(e>>tn),r=this.index[r],r+=e>>ie&ru,r=this.index[r],r=(r<<Cr)+(e&dr),this.data[r];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),Bs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",au=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Me=0;Me<Bs.length;Me++)au[Bs.charCodeAt(Me)]=Me;var Me,ou=1,Ur=2,Fr=3,cs=4,us=5,Bu=7,ls=8,hr=9,pr=10,fs=11,gs=12,ws=13,Qs=14,mr=15,cu=function(A){for(var e=[],r=0,t=A.length;r<t;){var n=A.charCodeAt(r++);if(n>=55296&&n<=56319&&r<t){var s=A.charCodeAt(r++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),r--)}else e.push(n)}return e},uu=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var r=A.length;if(!r)return"";for(var t=[],n=-1,s="";++n<r;){var i=A[n];i<=65535?t.push(i):(i-=65536,t.push((i>>10)+55296,i%1024+56320)),(n+1===r||t.length>16384)&&(s+=String.fromCharCode.apply(String,t),t.length=0)}return s},lu=su(kc),FA="\xD7",vr="\xF7",fu=function(A){return lu.get(A)},gu=function(A,e,r){var t=r-2,n=e[t],s=e[r-1],i=e[r];if(s===Ur&&i===Fr)return FA;if(s===Ur||s===Fr||s===cs||i===Ur||i===Fr||i===cs)return vr;if(s===ls&&[ls,hr,fs,gs].indexOf(i)!==-1||(s===fs||s===hr)&&(i===hr||i===pr)||(s===gs||s===pr)&&i===pr||i===ws||i===us||i===Bu||s===ou)return FA;if(s===ws&&i===Qs){for(;n===us;)n=e[--t];if(n===Qs)return FA}if(s===mr&&i===mr){for(var a=0;n===mr;)a++,n=e[--t];if(a%2===0)return FA}return vr},wu=function(A){var e=cu(A),r=e.length,t=0,n=0,s=e.map(fu);return{next:function(){if(t>=r)return{done:!0,value:null};for(var i=FA;t<r&&(i=gu(e,s,++t))===FA;);if(i!==FA||t===r){var a=uu.apply(null,e.slice(n,t));return n=t,{value:a,done:!1}}return{done:!0,value:null}}}},Qu=function(A){for(var e=wu(A),r=[],t;!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r},Cu=function(A){var e=123;if(A.createRange){var r=A.createRange();if(r.getBoundingClientRect){var t=A.createElement("boundtest");t.style.height=e+"px",t.style.display="block",A.body.appendChild(t),r.selectNode(t);var n=r.getBoundingClientRect(),s=Math.round(n.height);if(A.body.removeChild(t),s===e)return!0}}return!1},du=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var r=A.createRange();e.innerHTML=typeof"".repeat=="function"?"👨".repeat(10):"";var t=e.firstChild,n=_t(t.data).map(function(o){return q(o)}),s=0,i={},a=n.every(function(o,B){r.setStart(t,s),r.setEnd(t,s+o.length);var u=r.getBoundingClientRect();s+=o.length;var l=u.x>i.x||u.y>i.y;return i=u,B===0?!0:l});return A.body.removeChild(e),a},Uu=function(){return typeof new Image().crossOrigin<"u"},Fu=function(){return typeof new XMLHttpRequest().responseType=="string"},hu=function(A){var e=new Image,r=A.createElement("canvas"),t=r.getContext("2d");if(!t)return!1;e.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{t.drawImage(e,0,0),r.toDataURL()}catch{return!1}return!0},Cs=function(A){return A[0]===0&&A[1]===255&&A[2]===0&&A[3]===255},pu=function(A){var e=A.createElement("canvas"),r=100;e.width=r,e.height=r;var t=e.getContext("2d");if(!t)return Promise.reject(!1);t.fillStyle="rgb(0, 255, 0)",t.fillRect(0,0,r,r);var n=new Image,s=e.toDataURL();n.src=s;var i=Wr(r,r,0,0,n);return t.fillStyle="red",t.fillRect(0,0,r,r),ds(i).then(function(a){t.drawImage(a,0,0);var o=t.getImageData(0,0,r,r).data;t.fillStyle="red",t.fillRect(0,0,r,r);var B=A.createElement("div");return B.style.backgroundImage="url("+s+")",B.style.height=r+"px",Cs(o)?ds(Wr(r,r,0,0,B)):Promise.reject(!1)}).then(function(a){return t.drawImage(a,0,0),Cs(t.getImageData(0,0,r,r).data)}).catch(function(){return!1})},Wr=function(A,e,r,t,n){var s="http://www.w3.org/2000/svg",i=document.createElementNS(s,"svg"),a=document.createElementNS(s,"foreignObject");return i.setAttributeNS(null,"width",A.toString()),i.setAttributeNS(null,"height",e.toString()),a.setAttributeNS(null,"width","100%"),a.setAttributeNS(null,"height","100%"),a.setAttributeNS(null,"x",r.toString()),a.setAttributeNS(null,"y",t.toString()),a.setAttributeNS(null,"externalResourcesRequired","true"),i.appendChild(a),a.appendChild(n),i},ds=function(A){return new Promise(function(e,r){var t=new Image;t.onload=function(){return e(t)},t.onerror=r,t.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},sA={get SUPPORT_RANGE_BOUNDS(){var A=Cu(document);return Object.defineProperty(sA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=sA.SUPPORT_RANGE_BOUNDS&&du(document);return Object.defineProperty(sA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=hu(document);return Object.defineProperty(sA,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A=typeof Array.from=="function"&&typeof window.fetch=="function"?pu(document):Promise.resolve(!1);return Object.defineProperty(sA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=Uu();return Object.defineProperty(sA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=Fu();return Object.defineProperty(sA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(sA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(sA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},Je=(function(){function A(e,r){this.text=e,this.bounds=r}return A})(),mu=function(A,e,r,t){var n=Hu(e,r),s=[],i=0;return n.forEach(function(a){if(r.textDecorationLine.length||a.trim().length>0)if(sA.SUPPORT_RANGE_BOUNDS){var o=Us(t,i,a.length).getClientRects();if(o.length>1){var B=rn(a),u=0;B.forEach(function(f){s.push(new Je(f,VA.fromDOMRectList(A,Us(t,u+i,f.length).getClientRects()))),u+=f.length})}else s.push(new Je(a,VA.fromDOMRectList(A,o)))}else{var l=t.splitText(a.length);s.push(new Je(a,vu(A,t))),t=l}else sA.SUPPORT_RANGE_BOUNDS||(t=t.splitText(a.length));i+=a.length}),s},vu=function(A,e){var r=e.ownerDocument;if(r){var t=r.createElement("html2canvaswrapper");t.appendChild(e.cloneNode(!0));var n=e.parentNode;if(n){n.replaceChild(t,e);var s=Rt(A,t);return t.firstChild&&n.replaceChild(t.firstChild,t),s}}return VA.EMPTY},Us=function(A,e,r){var t=A.ownerDocument;if(!t)throw new Error("Node has no owner document");var n=t.createRange();return n.setStart(A,e),n.setEnd(A,e+r),n},rn=function(A){if(sA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(A)).map(function(r){return r.segment})}return Qu(A)},Eu=function(A,e){if(sA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var r=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(r.segment(A)).map(function(t){return t.segment})}return yu(A,e)},Hu=function(A,e){return e.letterSpacing!==0?rn(A):Eu(A,e)},Iu=[32,160,4961,65792,65793,4153,4241],yu=function(A,e){for(var r=Ao(A,{lineBreak:e.lineBreak,wordBreak:e.overflowWrap==="break-word"?"break-word":e.wordBreak}),t=[],n,s=function(){if(n.value){var i=n.value.slice(),a=_t(i),o="";a.forEach(function(B){Iu.indexOf(B)===-1?o+=q(B):(o.length&&t.push(o),t.push(q(B)),o="")}),o.length&&t.push(o)}};!(n=r.next()).done;)s();return t},bu=(function(){function A(e,r,t){this.text=xu(r.data,t.textTransform),this.textBounds=mu(e,this.text,t,r)}return A})(),xu=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(Lu,Tu);case 2:return A.toUpperCase();default:return A}},Lu=/(^|\s|:|-|\(|\))([a-z])/g,Tu=function(A,e,r){return A.length>0?e+r.toUpperCase():A},gi=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.src=t.currentSrc||t.src,n.intrinsicWidth=t.naturalWidth,n.intrinsicHeight=t.naturalHeight,n.context.cache.addImage(n.src),n}return e})(KA),wi=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.canvas=t,n.intrinsicWidth=t.width,n.intrinsicHeight=t.height,n}return e})(KA),Qi=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this,s=new XMLSerializer,i=Rt(r,t);return t.setAttribute("width",i.width+"px"),t.setAttribute("height",i.height+"px"),n.svg="data:image/svg+xml,"+encodeURIComponent(s.serializeToString(t)),n.intrinsicWidth=t.width.baseVal.value,n.intrinsicHeight=t.height.baseVal.value,n.context.cache.addImage(n.svg),n}return e})(KA),Ci=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.value=t.value,n}return e})(KA),Jr=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.start=t.start,n.reversed=typeof t.reversed=="boolean"&&t.reversed===!0,n}return e})(KA),Ku=[{type:15,flags:0,unit:"px",number:3}],Su=[{type:16,flags:0,number:50}],Du=function(A){return A.width>A.height?new VA(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new VA(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},Mu=function(A){var e=A.type===Ru?new Array(A.value.length+1).join("\u2022"):A.value;return e.length===0?A.placeholder||"":e},xt="checkbox",Lt="radio",Ru="password",Fs=707406591,nn=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;switch(n.type=t.type.toLowerCase(),n.checked=t.checked,n.value=Mu(t),(n.type===xt||n.type===Lt)&&(n.styles.backgroundColor=3739148031,n.styles.borderTopColor=n.styles.borderRightColor=n.styles.borderBottomColor=n.styles.borderLeftColor=2779096575,n.styles.borderTopWidth=n.styles.borderRightWidth=n.styles.borderBottomWidth=n.styles.borderLeftWidth=1,n.styles.borderTopStyle=n.styles.borderRightStyle=n.styles.borderBottomStyle=n.styles.borderLeftStyle=1,n.styles.backgroundClip=[0],n.styles.backgroundOrigin=[0],n.bounds=Du(n.bounds)),n.type){case xt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Ku;break;case Lt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Su;break}return n}return e})(KA),di=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this,s=t.options[t.selectedIndex||0];return n.value=s&&s.text||"",n}return e})(KA),Ui=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.value=t.value,n}return e})(KA),Fi=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;n.src=t.src,n.width=parseInt(t.width,10)||0,n.height=parseInt(t.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{if(t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement){n.tree=pi(r,t.contentWindow.document.documentElement);var s=t.contentWindow.document.documentElement?Xe(r,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):NA.TRANSPARENT,i=t.contentWindow.document.body?Xe(r,getComputedStyle(t.contentWindow.document.body).backgroundColor):NA.TRANSPARENT;n.backgroundColor=qA(s)?qA(i)?n.styles.backgroundColor:i:s}}catch{}return n}return e})(KA),_u=["OL","UL","MENU"],Et=function(A,e,r,t){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,mi(n)&&n.data.trim().length>0)r.textNodes.push(new bu(A,n,r.styles));else if(he(n))if(Ii(n)&&n.assignedNodes)n.assignedNodes().forEach(function(a){return Et(A,a,r,t)});else{var i=hi(A,n);i.styles.isVisible()&&(Ou(n,i,t)?i.flags|=4:Gu(i.styles)&&(i.flags|=2),_u.indexOf(n.tagName)!==-1&&(i.flags|=8),r.elements.push(i),n.slot,n.shadowRoot?Et(A,n.shadowRoot,i,t):!Tt(n)&&!vi(n)&&!Kt(n)&&Et(A,n,i,t))}},hi=function(A,e){return Zr(e)?new gi(A,e):Ei(e)?new wi(A,e):vi(e)?new Qi(A,e):Nu(e)?new Ci(A,e):Vu(e)?new Jr(A,e):Pu(e)?new nn(A,e):Kt(e)?new di(A,e):Tt(e)?new Ui(A,e):Hi(e)?new Fi(A,e):new KA(A,e)},pi=function(A,e){var r=hi(A,e);return r.flags|=4,Et(A,e,r,r),r},Ou=function(A,e,r){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||sn(A)&&r.styles.isTransparent()},Gu=function(A){return A.isPositioned()||A.isFloating()},mi=function(A){return A.nodeType===Node.TEXT_NODE},he=function(A){return A.nodeType===Node.ELEMENT_NODE},Yr=function(A){return he(A)&&typeof A.style<"u"&&!Ht(A)},Ht=function(A){return typeof A.className=="object"},Nu=function(A){return A.tagName==="LI"},Vu=function(A){return A.tagName==="OL"},Pu=function(A){return A.tagName==="INPUT"},ku=function(A){return A.tagName==="HTML"},vi=function(A){return A.tagName==="svg"},sn=function(A){return A.tagName==="BODY"},Ei=function(A){return A.tagName==="CANVAS"},hs=function(A){return A.tagName==="VIDEO"},Zr=function(A){return A.tagName==="IMG"},Hi=function(A){return A.tagName==="IFRAME"},ps=function(A){return A.tagName==="STYLE"},Xu=function(A){return A.tagName==="SCRIPT"},Tt=function(A){return A.tagName==="TEXTAREA"},Kt=function(A){return A.tagName==="SELECT"},Ii=function(A){return A.tagName==="SLOT"},ms=function(A){return A.tagName.indexOf("-")>0},Wu=(function(){function A(){this.counters={}}return A.prototype.getCounterValue=function(e){var r=this.counters[e];return r&&r.length?r[r.length-1]:1},A.prototype.getCounterValues=function(e){var r=this.counters[e];return r||[]},A.prototype.pop=function(e){var r=this;e.forEach(function(t){return r.counters[t].pop()})},A.prototype.parse=function(e){var r=this,t=e.counterIncrement,n=e.counterReset,s=!0;t!==null&&t.forEach(function(a){var o=r.counters[a.counter];o&&a.increment!==0&&(s=!1,o.length||o.push(1),o[Math.max(0,o.length-1)]+=a.increment)});var i=[];return s&&n.forEach(function(a){var o=r.counters[a.counter];i.push(a.counter),o||(o=r.counters[a.counter]=[]),o.push(a.reset)}),i},A})(),vs={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Es={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u0554","\u0553","\u0552","\u0551","\u0550","\u054F","\u054E","\u054D","\u054C","\u054B","\u054A","\u0549","\u0548","\u0547","\u0546","\u0545","\u0544","\u0543","\u0542","\u0541","\u0540","\u053F","\u053E","\u053D","\u053C","\u053B","\u053A","\u0539","\u0538","\u0537","\u0536","\u0535","\u0534","\u0533","\u0532","\u0531"]},Ju={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["\u05D9\u05F3","\u05D8\u05F3","\u05D7\u05F3","\u05D6\u05F3","\u05D5\u05F3","\u05D4\u05F3","\u05D3\u05F3","\u05D2\u05F3","\u05D1\u05F3","\u05D0\u05F3","\u05EA","\u05E9","\u05E8","\u05E7","\u05E6","\u05E4","\u05E2","\u05E1","\u05E0","\u05DE","\u05DC","\u05DB","\u05D9\u05D8","\u05D9\u05D7","\u05D9\u05D6","\u05D8\u05D6","\u05D8\u05D5","\u05D9","\u05D8","\u05D7","\u05D6","\u05D5","\u05D4","\u05D3","\u05D2","\u05D1","\u05D0"]},Yu={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u10F5","\u10F0","\u10EF","\u10F4","\u10EE","\u10ED","\u10EC","\u10EB","\u10EA","\u10E9","\u10E8","\u10E7","\u10E6","\u10E5","\u10E4","\u10F3","\u10E2","\u10E1","\u10E0","\u10DF","\u10DE","\u10DD","\u10F2","\u10DC","\u10DB","\u10DA","\u10D9","\u10D8","\u10D7","\u10F1","\u10D6","\u10D5","\u10D4","\u10D3","\u10D2","\u10D1","\u10D0"]},Qe=function(A,e,r,t,n,s){return A<e||A>r?qe(A,n,s.length>0):t.integers.reduce(function(i,a,o){for(;A>=a;)A-=a,i+=t.values[o];return i},"")+s},yi=function(A,e,r,t){var n="";do r||A--,n=t(A)+n,A/=e;while(A*e>=e);return n},j=function(A,e,r,t,n){var s=r-e+1;return(A<0?"-":"")+(yi(Math.abs(A),s,t,function(i){return q(Math.floor(i%s)+e)})+n)},te=function(A,e,r){r===void 0&&(r=". ");var t=e.length;return yi(Math.abs(A),t,!1,function(n){return e[Math.floor(n%t)]})+r},Ue=1,kA=2,XA=4,Pe=8,GA=function(A,e,r,t,n,s){if(A<-9999||A>9999)return qe(A,4,n.length>0);var i=Math.abs(A),a=n;if(i===0)return e[0]+a;for(var o=0;i>0&&o<=4;o++){var B=i%10;B===0&&eA(s,Ue)&&a!==""?a=e[B]+a:B>1||B===1&&o===0||B===1&&o===1&&eA(s,kA)||B===1&&o===1&&eA(s,XA)&&A>100||B===1&&o>1&&eA(s,Pe)?a=e[B]+(o>0?r[o-1]:"")+a:B===1&&o>0&&(a=r[o-1]+a),i=Math.floor(i/10)}return(A<0?t:"")+a},Hs="\u5341\u767E\u5343\u842C",Is="\u62FE\u4F70\u4EDF\u842C",ys="\u30DE\u30A4\u30CA\u30B9",Er="\uB9C8\uC774\uB108\uC2A4",qe=function(A,e,r){var t=r?". ":"",n=r?"\u3001":"",s=r?", ":"",i=r?" ":"";switch(e){case 0:return"\u2022"+i;case 1:return"\u25E6"+i;case 2:return"\u25FE"+i;case 5:var a=j(A,48,57,!0,t);return a.length<4?"0"+a:a;case 4:return te(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",n);case 6:return Qe(A,1,3999,vs,3,t).toLowerCase();case 7:return Qe(A,1,3999,vs,3,t);case 8:return j(A,945,969,!1,t);case 9:return j(A,97,122,!1,t);case 10:return j(A,65,90,!1,t);case 11:return j(A,1632,1641,!0,t);case 12:case 49:return Qe(A,1,9999,Es,3,t);case 35:return Qe(A,1,9999,Es,3,t).toLowerCase();case 13:return j(A,2534,2543,!0,t);case 14:case 30:return j(A,6112,6121,!0,t);case 15:return te(A,"\u5B50\u4E11\u5BC5\u536F\u8FB0\u5DF3\u5348\u672A\u7533\u9149\u620C\u4EA5",n);case 16:return te(A,"\u7532\u4E59\u4E19\u4E01\u620A\u5DF1\u5E9A\u8F9B\u58EC\u7678",n);case 17:case 48:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Hs,"\u8CA0",n,kA|XA|Pe);case 47:return GA(A,"\u96F6\u58F9\u8CB3\u53C3\u8086\u4F0D\u9678\u67D2\u634C\u7396",Is,"\u8CA0",n,Ue|kA|XA|Pe);case 42:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Hs,"\u8D1F",n,kA|XA|Pe);case 41:return GA(A,"\u96F6\u58F9\u8D30\u53C1\u8086\u4F0D\u9646\u67D2\u634C\u7396",Is,"\u8D1F",n,Ue|kA|XA|Pe);case 26:return GA(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u4E07",ys,n,0);case 25:return GA(A,"\u96F6\u58F1\u5F10\u53C2\u56DB\u4F0D\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343\u4E07",ys,n,Ue|kA|XA);case 31:return GA(A,"\uC601\uC77C\uC774\uC0BC\uC0AC\uC624\uC721\uCE60\uD314\uAD6C","\uC2ED\uBC31\uCC9C\uB9CC",Er,s,Ue|kA|XA);case 33:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u842C",Er,s,0);case 32:return GA(A,"\u96F6\u58F9\u8CB3\u53C3\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343",Er,s,Ue|kA|XA);case 18:return j(A,2406,2415,!0,t);case 20:return Qe(A,1,19999,Yu,3,t);case 21:return j(A,2790,2799,!0,t);case 22:return j(A,2662,2671,!0,t);case 22:return Qe(A,1,10999,Ju,3,t);case 23:return te(A,"\u3042\u3044\u3046\u3048\u304A\u304B\u304D\u304F\u3051\u3053\u3055\u3057\u3059\u305B\u305D\u305F\u3061\u3064\u3066\u3068\u306A\u306B\u306C\u306D\u306E\u306F\u3072\u3075\u3078\u307B\u307E\u307F\u3080\u3081\u3082\u3084\u3086\u3088\u3089\u308A\u308B\u308C\u308D\u308F\u3090\u3091\u3092\u3093");case 24:return te(A,"\u3044\u308D\u306F\u306B\u307B\u3078\u3068\u3061\u308A\u306C\u308B\u3092\u308F\u304B\u3088\u305F\u308C\u305D\u3064\u306D\u306A\u3089\u3080\u3046\u3090\u306E\u304A\u304F\u3084\u307E\u3051\u3075\u3053\u3048\u3066\u3042\u3055\u304D\u3086\u3081\u307F\u3057\u3091\u3072\u3082\u305B\u3059");case 27:return j(A,3302,3311,!0,t);case 28:return te(A,"\u30A2\u30A4\u30A6\u30A8\u30AA\u30AB\u30AD\u30AF\u30B1\u30B3\u30B5\u30B7\u30B9\u30BB\u30BD\u30BF\u30C1\u30C4\u30C6\u30C8\u30CA\u30CB\u30CC\u30CD\u30CE\u30CF\u30D2\u30D5\u30D8\u30DB\u30DE\u30DF\u30E0\u30E1\u30E2\u30E4\u30E6\u30E8\u30E9\u30EA\u30EB\u30EC\u30ED\u30EF\u30F0\u30F1\u30F2\u30F3",n);case 29:return te(A,"\u30A4\u30ED\u30CF\u30CB\u30DB\u30D8\u30C8\u30C1\u30EA\u30CC\u30EB\u30F2\u30EF\u30AB\u30E8\u30BF\u30EC\u30BD\u30C4\u30CD\u30CA\u30E9\u30E0\u30A6\u30F0\u30CE\u30AA\u30AF\u30E4\u30DE\u30B1\u30D5\u30B3\u30A8\u30C6\u30A2\u30B5\u30AD\u30E6\u30E1\u30DF\u30B7\u30F1\u30D2\u30E2\u30BB\u30B9",n);case 34:return j(A,3792,3801,!0,t);case 37:return j(A,6160,6169,!0,t);case 38:return j(A,4160,4169,!0,t);case 39:return j(A,2918,2927,!0,t);case 40:return j(A,1776,1785,!0,t);case 43:return j(A,3046,3055,!0,t);case 44:return j(A,3174,3183,!0,t);case 45:return j(A,3664,3673,!0,t);case 46:return j(A,3872,3881,!0,t);default:return j(A,48,57,!0,t)}},bi="data-html2canvas-ignore",bs=(function(){function A(e,r,t){if(this.context=e,this.options=t,this.scrolledElements=[],this.referenceElement=r,this.counters=new Wu,this.quoteDepth=0,!r.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(r.ownerDocument.documentElement,!1)}return A.prototype.toIFrame=function(e,r){var t=this,n=Zu(e,r);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var s=e.defaultView.pageXOffset,i=e.defaultView.pageYOffset,a=n.contentWindow,o=a.document,B=zu(n).then(function(){return cA(t,void 0,void 0,function(){var u,l;return aA(this,function(f){switch(f.label){case 0:return this.scrolledElements.forEach(tl),a&&(a.scrollTo(r.left,r.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(a.scrollY!==r.top||a.scrollX!==r.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(a.scrollX-r.left,a.scrollY-r.top,0,0))),u=this.options.onclone,l=this.clonedReferenceElement,typeof l>"u"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:o.fonts&&o.fonts.ready?[4,o.fonts.ready]:[3,2];case 1:f.sent(),f.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,qu(o)]:[3,4];case 3:f.sent(),f.label=4;case 4:return typeof u=="function"?[2,Promise.resolve().then(function(){return u(o,l)}).then(function(){return n})]:[2,n]}})})});return o.open(),o.write(Al(document.doctype)+"<html></html>"),el(this.referenceElement.ownerDocument,s,i),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),B},A.prototype.createElementClone=function(e){if(Xr(e,2))debugger;if(Ei(e))return this.createCanvasClone(e);if(hs(e))return this.createVideoClone(e);if(ps(e))return this.createStyleClone(e);var r=e.cloneNode(!1);return Zr(r)&&(Zr(e)&&e.currentSrc&&e.currentSrc!==e.src&&(r.src=e.currentSrc,r.srcset=""),r.loading==="lazy"&&(r.loading="eager")),ms(r)?this.createCustomElementClone(r):r},A.prototype.createCustomElementClone=function(e){var r=document.createElement("html2canvascustomelement");return Hr(e.style,r),r},A.prototype.createStyleClone=function(e){try{var r=e.sheet;if(r&&r.cssRules){var t=[].slice.call(r.cssRules,0).reduce(function(s,i){return i&&typeof i.cssText=="string"?s+i.cssText:s},""),n=e.cloneNode(!1);return n.textContent=t,n}}catch(s){if(this.context.logger.error("Unable to access cssRules property",s),s.name!=="SecurityError")throw s}return e.cloneNode(!1)},A.prototype.createCanvasClone=function(e){var r;if(this.options.inlineImages&&e.ownerDocument){var t=e.ownerDocument.createElement("img");try{return t.src=e.toDataURL(),t}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}var n=e.cloneNode(!1);try{n.width=e.width,n.height=e.height;var s=e.getContext("2d"),i=n.getContext("2d");if(i)if(!this.options.allowTaint&&s)i.putImageData(s.getImageData(0,0,e.width,e.height),0,0);else{var a=(r=e.getContext("webgl2"))!==null&&r!==void 0?r:e.getContext("webgl");if(a){var o=a.getContextAttributes();o?.preserveDrawingBuffer===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e)}i.drawImage(e,0,0)}return n}catch{this.context.logger.info("Unable to clone canvas as it is tainted",e)}return n},A.prototype.createVideoClone=function(e){var r=e.ownerDocument.createElement("canvas");r.width=e.offsetWidth,r.height=e.offsetHeight;var t=r.getContext("2d");try{return t&&(t.drawImage(e,0,0,r.width,r.height),this.options.allowTaint||t.getImageData(0,0,r.width,r.height)),r}catch{this.context.logger.info("Unable to clone video as it is tainted",e)}var n=e.ownerDocument.createElement("canvas");return n.width=e.offsetWidth,n.height=e.offsetHeight,n},A.prototype.appendChildNode=function(e,r,t){(!he(r)||!Xu(r)&&!r.hasAttribute(bi)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(r)))&&(!this.options.copyStyles||!he(r)||!ps(r))&&e.appendChild(this.cloneNode(r,t))},A.prototype.cloneChildNodes=function(e,r,t){for(var n=this,s=e.shadowRoot?e.shadowRoot.firstChild:e.firstChild;s;s=s.nextSibling)if(he(s)&&Ii(s)&&typeof s.assignedNodes=="function"){var i=s.assignedNodes();i.length&&i.forEach(function(a){return n.appendChildNode(r,a,t)})}else this.appendChildNode(r,s,t)},A.prototype.cloneNode=function(e,r){if(mi(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var t=e.ownerDocument.defaultView;if(t&&he(e)&&(Yr(e)||Ht(e))){var n=this.createElementClone(e);n.style.transitionProperty="none";var s=t.getComputedStyle(e),i=t.getComputedStyle(e,":before"),a=t.getComputedStyle(e,":after");this.referenceElement===e&&Yr(n)&&(this.clonedReferenceElement=n),sn(n)&&sl(n);var o=this.counters.parse(new is(this.context,s)),B=this.resolvePseudoContent(e,n,i,Ye.BEFORE);ms(e)&&(r=!0),hs(e)||this.cloneChildNodes(e,n,r),B&&n.insertBefore(B,n.firstChild);var u=this.resolvePseudoContent(e,n,a,Ye.AFTER);return u&&n.appendChild(u),this.counters.pop(o),(s&&(this.options.copyStyles||Ht(e))&&!Hi(e)||r)&&Hr(s,n),(e.scrollTop!==0||e.scrollLeft!==0)&&this.scrolledElements.push([n,e.scrollLeft,e.scrollTop]),(Tt(e)||Kt(e))&&(Tt(n)||Kt(n))&&(n.value=e.value),n}return e.cloneNode(!1)},A.prototype.resolvePseudoContent=function(e,r,t,n){var s=this;if(t){var i=t.content,a=r.ownerDocument;if(!(!a||!i||i==="none"||i==="-moz-alt-content"||t.display==="none")){this.counters.parse(new is(this.context,t));var o=new Nc(this.context,t),B=a.createElement("html2canvaspseudoelement");Hr(t,B),o.content.forEach(function(l){if(l.type===0)B.appendChild(a.createTextNode(l.value));else if(l.type===22){var f=a.createElement("img");f.src=l.value,f.style.opacity="1",B.appendChild(f)}else if(l.type===18){if(l.name==="attr"){var d=l.values.filter(V);d.length&&B.appendChild(a.createTextNode(e.getAttribute(d[0].value)||""))}else if(l.name==="counter"){var g=l.values.filter(me),Q=g[0],L=g[1];if(Q&&V(Q)){var h=s.counters.getCounterValue(Q.value),p=L&&V(L)?kr.parse(s.context,L.value):3;B.appendChild(a.createTextNode(qe(h,p,!1)))}}else if(l.name==="counters"){var T=l.values.filter(me),Q=T[0],I=T[1],L=T[2];if(Q&&V(Q)){var b=s.counters.getCounterValues(Q.value),U=L&&V(L)?kr.parse(s.context,L.value):3,x=I&&I.type===0?I.value:"",D=b.map(function(z){return qe(z,U,!1)}).join(x);B.appendChild(a.createTextNode(D))}}}else if(l.type===20)switch(l.value){case"open-quote":B.appendChild(a.createTextNode(ss(o.quotes,s.quoteDepth++,!0)));break;case"close-quote":B.appendChild(a.createTextNode(ss(o.quotes,--s.quoteDepth,!1)));break;default:B.appendChild(a.createTextNode(l.value))}}),B.className=jr+" "+qr;var u=n===Ye.BEFORE?" "+jr:" "+qr;return Ht(r)?r.className.baseValue+=u:r.className+=u,B}}},A.destroy=function(e){return e.parentNode?(e.parentNode.removeChild(e),!0):!1},A})(),Ye;(function(A){A[A.BEFORE=0]="BEFORE",A[A.AFTER=1]="AFTER"})(Ye||(Ye={}));var Zu=function(A,e){var r=A.createElement("iframe");return r.className="html2canvas-container",r.style.visibility="hidden",r.style.position="fixed",r.style.left="-10000px",r.style.top="0px",r.style.border="0",r.width=e.width.toString(),r.height=e.height.toString(),r.scrolling="no",r.setAttribute(bi,"true"),A.body.appendChild(r),r},ju=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},qu=function(A){return Promise.all([].slice.call(A.images,0).map(ju))},zu=function(A){return new Promise(function(e,r){var t=A.contentWindow;if(!t)return r("No window assigned for iframe");var n=t.document;t.onload=A.onload=function(){t.onload=A.onload=null;var s=setInterval(function(){n.body.childNodes.length>0&&n.readyState==="complete"&&(clearInterval(s),e(A))},50)}})},$u=["all","d","content"],Hr=function(A,e){for(var r=A.length-1;r>=0;r--){var t=A.item(r);$u.indexOf(t)===-1&&e.style.setProperty(t,A.getPropertyValue(t))}return e},Al=function(A){var e="";return A&&(e+="<!DOCTYPE ",A.name&&(e+=A.name),A.internalSubset&&(e+=A.internalSubset),A.publicId&&(e+='"'+A.publicId+'"'),A.systemId&&(e+='"'+A.systemId+'"'),e+=">"),e},el=function(A,e,r){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||r!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,r)},tl=function(A){var e=A[0],r=A[1],t=A[2];e.scrollLeft=r,e.scrollTop=t},rl=":before",nl=":after",jr="___html2canvas___pseudoelement_before",qr="___html2canvas___pseudoelement_after",xs=`{
|
|
1
|
+
"use strict";var gr=Object.defineProperty;var Ca=Object.getOwnPropertyDescriptor;var da=Object.getOwnPropertyNames;var Ua=Object.prototype.hasOwnProperty;var ha=(A,e)=>{for(var t in e)gr(A,t,{get:e[t],enumerable:!0})},Fa=(A,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of da(e))!Ua.call(A,n)&&n!==t&&gr(A,n,{get:()=>e[n],enumerable:!(r=Ca(e,n))||r.enumerable});return A};var pa=A=>Fa(gr({},"__esModule",{value:!0}),A);var Ff={};ha(Ff,{PAGE_COMPOSITOR_BUILD_CANARY:()=>Qn,PAGE_COMPOSITOR_CANVAS_ID:()=>Ar,SHADER_NAMES:()=>Cr,init:()=>na,installPageSideCompositor:()=>er,isHtmlInCanvasCaptureSupported:()=>tt,isPageSideCompositingSupported:()=>Cn});module.exports=pa(Ff);var Sn="attribute vec2 a_pos; varying vec2 v_uv; void main(){v_uv=a_pos*0.5+0.5; v_uv.y=1.0-v_uv.y; gl_Position=vec4(a_pos,0,1);}",cA=`precision mediump float;varying vec2 v_uv;uniform sampler2D u_from, u_to;uniform float u_progress;uniform vec2 u_resolution;uniform vec3 u_accent;uniform vec3 u_accent_dark;uniform vec3 u_accent_bright;
|
|
2
|
+
`,le="float hash(vec2 p){return fract(sin(dot(p,vec2(127.1,311.7)))*43758.5453);}float vnoise(vec2 p){vec2 i=floor(p),f=fract(p);f=f*f*f*(f*(f*6.-15.)+10.);return mix(mix(hash(i),hash(i+vec2(1,0)),f.x),mix(hash(i+vec2(0,1)),hash(i+vec2(1,1)),f.x),f.y);}float fbm(vec2 p){float v=0.,a=.5;mat2 R=mat2(.8,.6,-.6,.8);for(int i=0;i<5;i++){v+=a*vnoise(p);p=R*p*2.02;a*=.5;}return v;}";var ue=1920,fe=1080;function at(A,e=ue,t=fe){let r=A.getContext("webgl",{preserveDrawingBuffer:!0});return r?(r.viewport(0,0,e,t),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r):null}function ot(A){let e=A.createBuffer();if(!e)throw new Error("[HyperShader] Failed to create quad buffer");return A.bindBuffer(A.ARRAY_BUFFER,e),A.bufferData(A.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,-1,1,1,1]),A.STATIC_DRAW),e}var wr=null;function Qr(A,e,t){let r=A.createShader(t);if(!r)throw new Error("[HyperShader] Failed to create shader");if(A.shaderSource(r,e),A.compileShader(r),!A.getShaderParameter(r,A.COMPILE_STATUS))throw new Error(`[HyperShader] Shader compile: ${A.getShaderInfoLog(r)||"unknown"}`);return r}function _n(A,e,t){let r=A.createProgram();if(!r)throw new Error("[HyperShader] Failed to create program");if(A.attachShader(r,e),A.attachShader(r,Qr(A,t,A.FRAGMENT_SHADER)),A.linkProgram(r),!A.getProgramParameter(r,A.LINK_STATUS))throw new Error(`[HyperShader] Program link: ${A.getProgramInfoLog(r)||"unknown"}`);return r}function Bt(A,e){return wr||(wr=Qr(A,Sn,A.VERTEX_SHADER)),_n(A,wr,e)}function Rn(A,e,t){return _n(A,Qr(A,e,A.VERTEX_SHADER),t)}var Dn=new WeakMap;function ma(A,e){let t=Dn.get(e);return t||(t={from:A.getUniformLocation(e,"u_from"),to:A.getUniformLocation(e,"u_to"),progress:A.getUniformLocation(e,"u_progress"),resolution:A.getUniformLocation(e,"u_resolution"),accent:A.getUniformLocation(e,"u_accent"),accentDark:A.getUniformLocation(e,"u_accent_dark"),accentBright:A.getUniformLocation(e,"u_accent_bright"),aPos:A.getAttribLocation(e,"a_pos")},Dn.set(e,t),t)}function ct(A,e,t,r,n,s,i,a=ue,o=fe){let B=ma(A,t);A.useProgram(t),A.activeTexture(A.TEXTURE0),A.bindTexture(A.TEXTURE_2D,r),A.uniform1i(B.from,0),A.activeTexture(A.TEXTURE1),A.bindTexture(A.TEXTURE_2D,n),A.uniform1i(B.to,1),A.uniform1f(B.progress,s),A.uniform2f(B.resolution,a,o),i&&(A.uniform3f(B.accent,...i.accent),A.uniform3f(B.accentDark,...i.dark),A.uniform3f(B.accentBright,...i.bright)),A.bindBuffer(A.ARRAY_BUFFER,e),A.enableVertexAttribArray(B.aPos),A.vertexAttribPointer(B.aPos,2,A.FLOAT,!1,0,0),A.drawArrays(A.TRIANGLE_STRIP,0,4)}function te(A){let e=A.createTexture();if(!e)throw new Error("[HyperShader] Failed to create texture");return A.bindTexture(A.TEXTURE_2D,e),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_WRAP_S,A.CLAMP_TO_EDGE),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_WRAP_T,A.CLAMP_TO_EDGE),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_MIN_FILTER,A.LINEAR),A.texParameteri(A.TEXTURE_2D,A.TEXTURE_MAG_FILTER,A.LINEAR),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,1,1,0,A.RGBA,A.UNSIGNED_BYTE,null),e}function ge(A,e,t){A.bindTexture(A.TEXTURE_2D,e),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,t)}var Mn={"domain-warp":{frag:cA+le+"void main(){vec2 q=vec2(fbm(v_uv*3.),fbm(v_uv*3.+vec2(5.2,1.3)));vec2 r=vec2(fbm(v_uv*3.+q*4.+vec2(1.7,9.2)),fbm(v_uv*3.+q*4.+vec2(8.3,2.8)));float n=fbm(v_uv*3.+r*2.);vec2 warpDir=(q-.5)*.4;vec4 A=texture2D(u_from,clamp(v_uv+warpDir*u_progress,0.,1.));vec4 B=texture2D(u_to,clamp(v_uv-warpDir*(1.-u_progress),0.,1.));float e=smoothstep(u_progress-.08,u_progress+.08,n);float ed=abs(n-u_progress);float em=smoothstep(.1,0.,ed)*(1.-step(1.,u_progress));vec3 ec=mix(u_accent_dark,u_accent_bright,smoothstep(0.,.1,ed));gl_FragColor=vec4(mix(B,A,e).rgb+ec*em*2.,1.);}"},"ridged-burn":{frag:cA+le+"float ridged(vec2 p){float v=0.,a=.5;mat2 R=mat2(.8,.6,-.6,.8);for(int i=0;i<5;i++){v+=a*abs(vnoise(p)*2.-1.);p=R*p*2.02;a*=.5;}return v;}void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);float n=ridged(v_uv*4.);float e=smoothstep(u_progress-.04,u_progress+.04,n);float heat=smoothstep(.12,0.,abs(n-u_progress))*(1.-step(1.,u_progress));vec3 burn=mix(u_accent_dark,u_accent,smoothstep(0.,.25,heat));burn=mix(burn,u_accent_bright,smoothstep(.25,.5,heat));burn=mix(burn,vec3(1),smoothstep(.5,1.,heat));float sparks=step(.92,vnoise(v_uv*80.))*heat*3.;gl_FragColor=vec4(mix(B,A,e).rgb+burn*heat*3.5+u_accent_bright*sparks,1.);}"},"whip-pan":{frag:cA+"void main(){float fromOff=u_progress*1.5;vec3 fromC=vec3(0.);for(int i=0;i<10;i++){float f=float(i)/10.;vec2 fuv=vec2(v_uv.x+fromOff+u_progress*.08*f,v_uv.y);fromC+=texture2D(u_from,clamp(fuv,0.,1.)).rgb;}fromC/=10.;float toOff=(1.-u_progress)*1.5;vec3 toC=vec3(0.);for(int i=0;i<10;i++){float f=float(i)/10.;vec2 tuv=vec2(v_uv.x-toOff-(1.-u_progress)*.08*f,v_uv.y);toC+=texture2D(u_to,clamp(tuv,0.,1.)).rgb;}toC/=10.;gl_FragColor=vec4(mix(fromC,toC,u_progress),1.);}"},"sdf-iris":{frag:cA+"void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);vec2 uv=(v_uv-.5)*vec2(u_resolution.x/u_resolution.y,1.);float d=length(uv);float radius=u_progress*1.2;float fw=.003;float edge=smoothstep(radius+fw,radius-fw,d);float ring1=exp(-abs(d-radius)*25.);float ring2=exp(-abs(d-radius+.04)*20.)*.5;float ring3=exp(-abs(d-radius+.08)*15.)*.25;float glow=(ring1+ring2+ring3)*u_progress*(1.-u_progress)*4.;gl_FragColor=vec4(mix(A,B,edge).rgb+u_accent_bright*glow*.6,1.);}"},"ripple-waves":{frag:cA+"void main(){vec2 uv=v_uv-.5;float dist=length(uv);vec2 dir=normalize(uv+.001);float fromAmp=u_progress*.04;float fw1=exp(sin(dist*25.-u_progress*12.)-1.);float fw2=exp(sin(dist*50.-u_progress*18.)-1.)*.5;vec2 fromUv=clamp(v_uv+dir*(fw1+fw2)*fromAmp,0.,1.);float toAmp=(1.-u_progress)*.04;float tw1=exp(sin(dist*25.+u_progress*12.)-1.);float tw2=exp(sin(dist*50.+u_progress*18.)-1.)*.5;vec2 toUv=clamp(v_uv-dir*(tw1+tw2)*toAmp,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);float peak=fw1*u_progress;vec3 tint=u_accent_bright*peak*.1;gl_FragColor=vec4(mix(A.rgb+tint,B.rgb,u_progress),1.);}"},"gravitational-lens":{frag:cA+"void main(){vec4 B=texture2D(u_to,v_uv);vec2 uv=v_uv-.5;float dist=length(uv);float pull=u_progress*2.;float warpStr=pull*.3/(dist+.1);vec2 warped=clamp(v_uv-uv*warpStr,0.,1.);vec4 A=texture2D(u_from,warped);float horizon=smoothstep(0.,.3,dist/(1.-u_progress*.85+.001));float shift=pull*.02/(dist+.2);float r=texture2D(u_from,clamp(v_uv-uv*(warpStr+shift),0.,1.)).r;float b=texture2D(u_from,clamp(v_uv-uv*(warpStr-shift),0.,1.)).b;vec3 lensed=vec3(r,A.g,b)*horizon;gl_FragColor=vec4(mix(lensed,B.rgb,smoothstep(.3,.9,u_progress)),1.);}"},"cinematic-zoom":{frag:cA+"void main(){vec2 d=v_uv-vec2(.5);float fromS=u_progress*.08;float toS=(1.-u_progress)*.06;float fr=0.,fg=0.,fb=0.;for(int i=0;i<12;i++){float f=float(i)/12.;fr+=texture2D(u_from,v_uv-d*(fromS*1.06)*f).r;fg+=texture2D(u_from,v_uv-d*fromS*f).g;fb+=texture2D(u_from,v_uv-d*(fromS*.94)*f).b;}vec3 fromBl=vec3(fr,fg,fb)/12.;float tr=0.,tg=0.,tb=0.;for(int i=0;i<12;i++){float f=float(i)/12.;tr+=texture2D(u_to,v_uv+d*(toS*1.06)*f).r;tg+=texture2D(u_to,v_uv+d*toS*f).g;tb+=texture2D(u_to,v_uv+d*(toS*.94)*f).b;}vec3 toBl=vec3(tr,tg,tb)/12.;gl_FragColor=vec4(mix(fromBl,toBl,u_progress),1.);}"},"chromatic-split":{frag:cA+"void main(){vec2 c=v_uv-.5;float fromShift=u_progress*.06;float fr=texture2D(u_from,clamp(v_uv+c*fromShift,0.,1.)).r;float fg=texture2D(u_from,v_uv).g;float fb=texture2D(u_from,clamp(v_uv-c*fromShift,0.,1.)).b;vec3 fromSplit=vec3(fr,fg,fb);float toShift=(1.-u_progress)*.06;float tr=texture2D(u_to,clamp(v_uv-c*toShift,0.,1.)).r;float tg=texture2D(u_to,v_uv).g;float tb=texture2D(u_to,clamp(v_uv+c*toShift,0.,1.)).b;vec3 toSplit=vec3(tr,tg,tb);gl_FragColor=vec4(mix(fromSplit,toSplit,u_progress),1.);}"},glitch:{frag:cA+"float rand(vec2 co){return fract(sin(dot(co,vec2(12.9898,78.233)))*43758.5453);}void main(){float inten=u_progress*(1.-u_progress)*4.;float lineY=floor(v_uv.y*60.)/60.;float lineDisp=(rand(vec2(lineY,floor(u_progress*17.)))-.5)*.18*inten;vec2 block=floor(v_uv*vec2(12.,8.));float br=rand(block+vec2(floor(u_progress*11.)));float ba=step(.83,br)*inten;vec2 bd=(vec2(rand(block*2.1),rand(block*3.7))-.5)*.35*ba;vec2 uv=clamp(v_uv+vec2(lineDisp,0.)+bd,0.,1.);float shift=inten*.035;float r=texture2D(u_from,uv+vec2(shift,0.)).r;float g=texture2D(u_from,uv).g;float b=texture2D(u_from,uv-vec2(shift,0.)).b;vec3 col=vec3(r,g,b);col-=step(.5,fract(v_uv.y*u_resolution.y*.5))*.05*inten;col*=1.+(rand(vec2(floor(u_progress*23.)))-.5)*.3*inten;float levels=mix(256.,8.,inten*.5);col=floor(col*levels)/levels;gl_FragColor=mix(vec4(col,1.),texture2D(u_to,v_uv),u_progress);}"},"swirl-vortex":{frag:cA+le+"void main(){vec2 uv=v_uv-.5;float dist=length(uv);float warp=fbm(v_uv*4.)*.5;float fromAng=u_progress*(1.-dist)*10.+warp*u_progress*3.;float fs=sin(fromAng),fc=cos(fromAng);vec2 fromUv=clamp(vec2(uv.x*fc-uv.y*fs,uv.x*fs+uv.y*fc)+.5,0.,1.);float toAng=-(1.-u_progress)*(1.-dist)*10.-warp*(1.-u_progress)*3.;float ts=sin(toAng),tc=cos(toAng);vec2 toUv=clamp(vec2(uv.x*tc-uv.y*ts,uv.x*ts+uv.y*tc)+.5,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);gl_FragColor=mix(A,B,u_progress);}"},"thermal-distortion":{frag:cA+le+"void main(){float heat=u_progress*1.5;float yFade=smoothstep(1.,0.,v_uv.y);float shimmer=sin(v_uv.y*40.+fbm(v_uv*6.)*8.)*fbm(v_uv*3.+vec2(0.,u_progress*2.));float dispX=shimmer*heat*.03*yFade;vec2 fromUv=clamp(v_uv+vec2(dispX,0.),0.,1.);vec4 A=texture2D(u_from,fromUv);float invShimmer=sin(v_uv.y*40.+fbm(v_uv*6.+3.)*8.)*fbm(v_uv*3.+vec2(3.,u_progress*2.));float dispX2=invShimmer*(1.-u_progress)*.03*yFade;vec2 toUv=clamp(v_uv+vec2(dispX2,0.),0.,1.);vec4 B=texture2D(u_to,toUv);float haze=heat*yFade*.15*(1.-u_progress);gl_FragColor=vec4(mix(A.rgb,B.rgb,u_progress)+u_accent_bright*haze,1.);}"},"flash-through-white":{frag:cA+"void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);float toWhite=smoothstep(0.,.45,u_progress);vec3 fromC=mix(A.rgb,vec3(1.),toWhite);float fromWhite=1.-smoothstep(.5,1.,u_progress);vec3 toC=mix(B.rgb,vec3(1.),fromWhite);gl_FragColor=vec4(mix(fromC,toC,smoothstep(.35,.65,u_progress)),1.);}"},"cross-warp-morph":{frag:cA+le+"void main(){vec2 disp=vec2(fbm(v_uv*3.),fbm(v_uv*3.+vec2(7.3,3.7)))-.5;vec2 fromUv=clamp(v_uv+disp*u_progress*.5,0.,1.);vec2 toUv=clamp(v_uv-disp*(1.-u_progress)*.5,0.,1.);vec4 A=texture2D(u_from,fromUv);vec4 B=texture2D(u_to,toUv);float n=fbm(v_uv*4.+vec2(3.1,1.7));float blend=smoothstep(.4,.6,n+u_progress*1.2-.6);gl_FragColor=mix(A,B,blend);}"},"light-leak":{frag:cA+"vec3 aces(vec3 x){return clamp((x*(2.51*x+.03))/(x*(2.43*x+.59)+.14),0.,1.);}void main(){vec4 A=texture2D(u_from,v_uv),B=texture2D(u_to,v_uv);vec2 lp=vec2(1.3,-.2);float dist=length(v_uv-lp);float leak=clamp(exp(-dist*1.8)*u_progress*4.,0.,1.);vec3 warmColor=mix(u_accent,u_accent_bright,dist*.7);float flare=exp(-abs(v_uv.y-(-.2+v_uv.x*.3))*15.)*leak*.3;vec3 overexposed=A.rgb+warmColor*leak*3.+u_accent_bright*flare;overexposed=aces(overexposed);gl_FragColor=vec4(mix(overexposed,B.rgb,smoothstep(.15,.85,u_progress)),1.);}"}},Cr=Object.keys(Mn);function lt(A){let e=Mn[A];if(!e)throw new Error(`[HyperShader] Unknown shader: "${A}". Available: ${Cr.join(", ")}`);return e.frag}var Or=function(A,e){return Or=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])},Or(A,e)};function bA(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Or(A,e);function t(){this.constructor=A}A.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var Gr=function(){return Gr=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},Gr.apply(this,arguments)};function lA(A,e,t,r){function n(s){return s instanceof t?s:new t(function(i){i(s)})}return new(t||(t=Promise))(function(s,i){function a(l){try{B(r.next(l))}catch(u){i(u)}}function o(l){try{B(r.throw(l))}catch(u){i(u)}}function B(l){l.done?s(l.value):n(l.value).then(a,o)}B((r=r.apply(A,e||[])).next())})}function oA(A,e){var t={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},r,n,s,i;return i={next:a(0),throw:a(1),return:a(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function a(B){return function(l){return o([B,l])}}function o(B){if(r)throw new TypeError("Generator is already executing.");for(;t;)try{if(r=1,n&&(s=B[0]&2?n.return:B[0]?n.throw||((s=n.return)&&s.call(n),0):n.next)&&!(s=s.call(n,B[1])).done)return s;switch(n=0,s&&(B=[B[0]&2,s.value]),B[0]){case 0:case 1:s=B;break;case 4:return t.label++,{value:B[1],done:!1};case 5:t.label++,n=B[1],B=[0];continue;case 7:B=t.ops.pop(),t.trys.pop();continue;default:if(s=t.trys,!(s=s.length>0&&s[s.length-1])&&(B[0]===6||B[0]===2)){t=0;continue}if(B[0]===3&&(!s||B[1]>s[0]&&B[1]<s[3])){t.label=B[1];break}if(B[0]===6&&t.label<s[1]){t.label=s[1],s=B;break}if(s&&t.label<s[2]){t.label=s[2],t.ops.push(B);break}s[2]&&t.ops.pop(),t.trys.pop();continue}B=e.call(A,t)}catch(l){B=[6,l],n=0}finally{r=s=0}if(B[0]&5)throw B[1];return{value:B[0]?B[1]:void 0,done:!0}}}function ut(A,e,t){if(t||arguments.length===2)for(var r=0,n=e.length,s;r<n;r++)(s||!(r in e))&&(s||(s=Array.prototype.slice.call(e,0,r)),s[r]=e[r]);return A.concat(s||e)}var VA=(function(){function A(e,t,r,n){this.left=e,this.top=t,this.width=r,this.height=n}return A.prototype.add=function(e,t,r,n){return new A(this.left+e,this.top+t,this.width+r,this.height+n)},A.fromClientRect=function(e,t){return new A(t.left+e.windowBounds.left,t.top+e.windowBounds.top,t.width,t.height)},A.fromDOMRectList=function(e,t){var r=Array.from(t).find(function(n){return n.width!==0});return r?new A(r.left+e.windowBounds.left,r.top+e.windowBounds.top,r.width,r.height):A.EMPTY},A.EMPTY=new A(0,0,0,0),A})(),kt=function(A,e){return VA.fromClientRect(A,e.getBoundingClientRect())},va=function(A){var e=A.body,t=A.documentElement;if(!e||!t)throw new Error("Unable to get document size");var r=Math.max(Math.max(e.scrollWidth,t.scrollWidth),Math.max(e.offsetWidth,t.offsetWidth),Math.max(e.clientWidth,t.clientWidth)),n=Math.max(Math.max(e.scrollHeight,t.scrollHeight),Math.max(e.offsetHeight,t.offsetHeight),Math.max(e.clientHeight,t.clientHeight));return new VA(0,0,r,n)},Xt=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},$=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var i=A[n];i<=65535?r.push(i):(i-=65536,r.push((i>>10)+55296,i%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},On="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ea=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(xe=0;xe<On.length;xe++)Ea[On.charCodeAt(xe)]=xe;var xe,Gn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Oe=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Le=0;Le<Gn.length;Le++)Oe[Gn.charCodeAt(Le)]=Le;var Le,Ha=function(A){var e=A.length*.75,t=A.length,r,n=0,s,i,a,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var B=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),l=Array.isArray(B)?B:new Uint8Array(B);for(r=0;r<t;r+=4)s=Oe[A.charCodeAt(r)],i=Oe[A.charCodeAt(r+1)],a=Oe[A.charCodeAt(r+2)],o=Oe[A.charCodeAt(r+3)],l[n++]=s<<2|i>>4,l[n++]=(i&15)<<4|a>>2,l[n++]=(a&3)<<6|o&63;return B},Ia=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},ya=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},ie=5,Bn=11,dr=2,ba=Bn-ie,Ms=65536>>ie,xa=1<<ie,Ur=xa-1,La=1024>>ie,Ta=Ms+La,Ka=Ta,Sa=32,Da=Ka+Sa,_a=65536>>Bn,Ra=1<<ba,Ma=Ra-1,Nn=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Oa=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},Ga=function(A,e){var t=Ha(A),r=Array.isArray(t)?ya(t):new Uint32Array(t),n=Array.isArray(t)?Ia(t):new Uint16Array(t),s=24,i=Nn(n,s/2,r[4]/2),a=r[5]===2?Nn(n,(s+r[4])/2):Oa(r,Math.ceil((s+r[4])/4));return new Na(r[0],r[1],r[2],r[3],i,a)},Na=(function(){function A(e,t,r,n,s,i){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=i}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>ie],t=(t<<dr)+(e&Ur),this.data[t];if(e<=65535)return t=this.index[Ms+(e-55296>>ie)],t=(t<<dr)+(e&Ur),this.data[t];if(e<this.highStart)return t=Da-_a+(e>>Bn),t=this.index[t],t+=e>>ie&Ma,t=this.index[t],t=(t<<dr)+(e&Ur),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),Vn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Va=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Te=0;Te<Vn.length;Te++)Va[Vn.charCodeAt(Te)]=Te;var Te,Pa="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA==",Pn=50,ka=1,Os=2,Gs=3,Xa=4,Wa=5,kn=7,Ns=8,Xn=9,JA=10,Nr=11,Wn=12,Vr=13,Ja=14,Ge=15,Pr=16,ft=17,Ke=18,Ya=19,Jn=20,kr=21,Se=22,hr=23,we=24,CA=25,Ne=26,Ve=27,Qe=28,Za=29,ne=30,qa=31,gt=32,wt=33,Xr=34,Wr=35,Jr=36,je=37,Yr=38,xt=39,Lt=40,Fr=41,Vs=42,ja=43,za=[9001,65288],Ps="!",G="\xD7",Qt="\xF7",Zr=Ga(Pa),OA=[ne,Jr],qr=[ka,Os,Gs,Wa],ks=[JA,Ns],Yn=[Ve,Ne],$a=qr.concat(ks),Zn=[Yr,xt,Lt,Xr,Wr],Ao=[Ge,Vr],eo=function(A,e){e===void 0&&(e="strict");var t=[],r=[],n=[];return A.forEach(function(s,i){var a=Zr.get(s);if(a>Pn?(n.push(!0),a-=Pn):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return r.push(i),t.push(Pr);if(a===Xa||a===Nr){if(i===0)return r.push(i),t.push(ne);var o=t[i-1];return $a.indexOf(o)===-1?(r.push(r[i-1]),t.push(o)):(r.push(i),t.push(ne))}if(r.push(i),a===qa)return t.push(e==="strict"?kr:je);if(a===Vs||a===Za)return t.push(ne);if(a===ja)return s>=131072&&s<=196605||s>=196608&&s<=262141?t.push(je):t.push(ne);t.push(a)}),[r,t,n]},pr=function(A,e,t,r){var n=r[t];if(Array.isArray(A)?A.indexOf(n)!==-1:A===n)for(var s=t;s<=r.length;){s++;var i=r[s];if(i===e)return!0;if(i!==JA)break}if(n===JA)for(var s=t;s>0;){s--;var a=r[s];if(Array.isArray(A)?A.indexOf(a)!==-1:A===a)for(var o=t;o<=r.length;){o++;var i=r[o];if(i===e)return!0;if(i!==JA)break}if(a!==JA)break}return!1},qn=function(A,e){for(var t=A;t>=0;){var r=e[t];if(r===JA)t--;else return r}return 0},to=function(A,e,t,r,n){if(t[r]===0)return G;var s=r-1;if(Array.isArray(n)&&n[s]===!0)return G;var i=s-1,a=s+1,o=e[s],B=i>=0?e[i]:0,l=e[a];if(o===Os&&l===Gs)return G;if(qr.indexOf(o)!==-1)return Ps;if(qr.indexOf(l)!==-1||ks.indexOf(l)!==-1)return G;if(qn(s,e)===Ns)return Qt;if(Zr.get(A[s])===Nr||(o===gt||o===wt)&&Zr.get(A[a])===Nr||o===kn||l===kn||o===Xn||[JA,Vr,Ge].indexOf(o)===-1&&l===Xn||[ft,Ke,Ya,we,Qe].indexOf(l)!==-1||qn(s,e)===Se||pr(hr,Se,s,e)||pr([ft,Ke],kr,s,e)||pr(Wn,Wn,s,e))return G;if(o===JA)return Qt;if(o===hr||l===hr)return G;if(l===Pr||o===Pr)return Qt;if([Vr,Ge,kr].indexOf(l)!==-1||o===Ja||B===Jr&&Ao.indexOf(o)!==-1||o===Qe&&l===Jr||l===Jn||OA.indexOf(l)!==-1&&o===CA||OA.indexOf(o)!==-1&&l===CA||o===Ve&&[je,gt,wt].indexOf(l)!==-1||[je,gt,wt].indexOf(o)!==-1&&l===Ne||OA.indexOf(o)!==-1&&Yn.indexOf(l)!==-1||Yn.indexOf(o)!==-1&&OA.indexOf(l)!==-1||[Ve,Ne].indexOf(o)!==-1&&(l===CA||[Se,Ge].indexOf(l)!==-1&&e[a+1]===CA)||[Se,Ge].indexOf(o)!==-1&&l===CA||o===CA&&[CA,Qe,we].indexOf(l)!==-1)return G;if([CA,Qe,we,ft,Ke].indexOf(l)!==-1)for(var u=s;u>=0;){var f=e[u];if(f===CA)return G;if([Qe,we].indexOf(f)!==-1)u--;else break}if([Ve,Ne].indexOf(l)!==-1)for(var u=[ft,Ke].indexOf(o)!==-1?i:s;u>=0;){var f=e[u];if(f===CA)return G;if([Qe,we].indexOf(f)!==-1)u--;else break}if(Yr===o&&[Yr,xt,Xr,Wr].indexOf(l)!==-1||[xt,Xr].indexOf(o)!==-1&&[xt,Lt].indexOf(l)!==-1||[Lt,Wr].indexOf(o)!==-1&&l===Lt||Zn.indexOf(o)!==-1&&[Jn,Ne].indexOf(l)!==-1||Zn.indexOf(l)!==-1&&o===Ve||OA.indexOf(o)!==-1&&OA.indexOf(l)!==-1||o===we&&OA.indexOf(l)!==-1||OA.concat(CA).indexOf(o)!==-1&&l===Se&&za.indexOf(A[a])===-1||OA.concat(CA).indexOf(l)!==-1&&o===Ke)return G;if(o===Fr&&l===Fr){for(var d=t[s],g=1;d>0&&(d--,e[d]===Fr);)g++;if(g%2!==0)return G}return o===gt&&l===wt?G:Qt},ro=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=eo(A,e.lineBreak),r=t[0],n=t[1],s=t[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(n=n.map(function(a){return[CA,ne,Vs].indexOf(a)!==-1?je:a}));var i=e.wordBreak==="keep-all"?s.map(function(a,o){return a&&A[o]>=19968&&A[o]<=40959}):void 0;return[r,n,i]},no=(function(){function A(e,t,r,n){this.codePoints=e,this.required=t===Ps,this.start=r,this.end=n}return A.prototype.slice=function(){return $.apply(void 0,this.codePoints.slice(this.start,this.end))},A})(),so=function(A,e){var t=Xt(A),r=ro(t,e),n=r[0],s=r[1],i=r[2],a=t.length,o=0,B=0;return{next:function(){if(B>=a)return{done:!0,value:null};for(var l=G;B<a&&(l=to(t,s,n,++B,i))===G;);if(l!==G||B===a){var u=new no(t,l,o,B);return o=B,{value:u,done:!1}}return{done:!0,value:null}}}},io=1,ao=2,At=4,jn=8,St=10,zn=47,We=92,oo=9,Bo=32,Ct=34,De=61,co=35,lo=36,uo=37,dt=39,Ut=40,_e=41,fo=95,wA=45,go=33,wo=60,Qo=62,Co=64,Uo=91,ho=93,Fo=61,po=123,ht=63,mo=125,$n=124,vo=126,Eo=128,As=65533,mr=42,se=43,Ho=44,Io=58,yo=59,ze=46,bo=0,xo=8,Lo=11,To=14,Ko=31,So=127,LA=-1,Xs=48,Ws=97,Js=101,Do=102,_o=117,Ro=122,Ys=65,Zs=69,qs=70,Mo=85,Oo=90,BA=function(A){return A>=Xs&&A<=57},Go=function(A){return A>=55296&&A<=57343},Ce=function(A){return BA(A)||A>=Ys&&A<=qs||A>=Ws&&A<=Do},No=function(A){return A>=Ws&&A<=Ro},Vo=function(A){return A>=Ys&&A<=Oo},Po=function(A){return No(A)||Vo(A)},ko=function(A){return A>=Eo},Ft=function(A){return A===St||A===oo||A===Bo},Dt=function(A){return Po(A)||ko(A)||A===fo},es=function(A){return Dt(A)||BA(A)||A===wA},Xo=function(A){return A>=bo&&A<=xo||A===Lo||A>=To&&A<=Ko||A===So},WA=function(A,e){return A!==We?!1:e!==St},pt=function(A,e,t){return A===wA?Dt(e)||WA(e,t):Dt(A)?!0:!!(A===We&&WA(A,e))},vr=function(A,e,t){return A===se||A===wA?BA(e)?!0:e===ze&&BA(t):BA(A===ze?e:A)},Wo=function(A){var e=0,t=1;(A[e]===se||A[e]===wA)&&(A[e]===wA&&(t=-1),e++);for(var r=[];BA(A[e]);)r.push(A[e++]);var n=r.length?parseInt($.apply(void 0,r),10):0;A[e]===ze&&e++;for(var s=[];BA(A[e]);)s.push(A[e++]);var i=s.length,a=i?parseInt($.apply(void 0,s),10):0;(A[e]===Zs||A[e]===Js)&&e++;var o=1;(A[e]===se||A[e]===wA)&&(A[e]===wA&&(o=-1),e++);for(var B=[];BA(A[e]);)B.push(A[e++]);var l=B.length?parseInt($.apply(void 0,B),10):0;return t*(n+a*Math.pow(10,-i))*Math.pow(10,o*l)},Jo={type:2},Yo={type:3},Zo={type:4},qo={type:13},jo={type:8},zo={type:21},$o={type:9},AB={type:10},eB={type:11},tB={type:12},rB={type:14},mt={type:23},nB={type:1},sB={type:25},iB={type:24},aB={type:26},oB={type:27},BB={type:28},cB={type:29},lB={type:31},jr={type:32},js=(function(){function A(){this._value=[]}return A.prototype.write=function(e){this._value=this._value.concat(Xt(e))},A.prototype.read=function(){for(var e=[],t=this.consumeToken();t!==jr;)e.push(t),t=this.consumeToken();return e},A.prototype.consumeToken=function(){var e=this.consumeCodePoint();switch(e){case Ct:return this.consumeStringToken(Ct);case co:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(es(t)||WA(r,n)){var s=pt(t,r,n)?ao:io,i=this.consumeName();return{type:5,value:i,flags:s}}break;case lo:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),qo;break;case dt:return this.consumeStringToken(dt);case Ut:return Jo;case _e:return Yo;case mr:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),rB;break;case se:if(vr(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case Ho:return Zo;case wA:var a=e,o=this.peekCodePoint(0),B=this.peekCodePoint(1);if(vr(a,o,B))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(pt(a,o,B))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(o===wA&&B===Qo)return this.consumeCodePoint(),this.consumeCodePoint(),iB;break;case ze:if(vr(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case zn:if(this.peekCodePoint(0)===mr)for(this.consumeCodePoint();;){var l=this.consumeCodePoint();if(l===mr&&(l=this.consumeCodePoint(),l===zn))return this.consumeToken();if(l===LA)return this.consumeToken()}break;case Io:return aB;case yo:return oB;case wo:if(this.peekCodePoint(0)===go&&this.peekCodePoint(1)===wA&&this.peekCodePoint(2)===wA)return this.consumeCodePoint(),this.consumeCodePoint(),sB;break;case Co:var u=this.peekCodePoint(0),f=this.peekCodePoint(1),d=this.peekCodePoint(2);if(pt(u,f,d)){var i=this.consumeName();return{type:7,value:i}}break;case Uo:return BB;case We:if(WA(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case ho:return cB;case Fo:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),jo;break;case po:return eB;case mo:return tB;case _o:case Mo:var g=this.peekCodePoint(0),w=this.peekCodePoint(1);return g===se&&(Ce(w)||w===ht)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case $n:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),$o;if(this.peekCodePoint(0)===$n)return this.consumeCodePoint(),zo;break;case vo:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),AB;break;case LA:return jr}return Ft(e)?(this.consumeWhiteSpace(),lB):BA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Dt(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:$(e)}},A.prototype.consumeCodePoint=function(){var e=this._value.shift();return typeof e>"u"?-1:e},A.prototype.reconsumeCodePoint=function(e){this._value.unshift(e)},A.prototype.peekCodePoint=function(e){return e>=this._value.length?-1:this._value[e]},A.prototype.consumeUnicodeRangeToken=function(){for(var e=[],t=this.consumeCodePoint();Ce(t)&&e.length<6;)e.push(t),t=this.consumeCodePoint();for(var r=!1;t===ht&&e.length<6;)e.push(t),t=this.consumeCodePoint(),r=!0;if(r){var n=parseInt($.apply(void 0,e.map(function(o){return o===ht?Xs:o})),16),s=parseInt($.apply(void 0,e.map(function(o){return o===ht?qs:o})),16);return{type:30,start:n,end:s}}var i=parseInt($.apply(void 0,e),16);if(this.peekCodePoint(0)===wA&&Ce(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var a=[];Ce(t)&&a.length<6;)a.push(t),t=this.consumeCodePoint();var s=parseInt($.apply(void 0,a),16);return{type:30,start:i,end:s}}else return{type:30,start:i,end:i}},A.prototype.consumeIdentLikeToken=function(){var e=this.consumeName();return e.toLowerCase()==="url"&&this.peekCodePoint(0)===Ut?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===Ut?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},A.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===LA)return{type:22,value:""};var t=this.peekCodePoint(0);if(t===dt||t===Ct){var r=this.consumeStringToken(this.consumeCodePoint());return r.type===0&&(this.consumeWhiteSpace(),this.peekCodePoint(0)===LA||this.peekCodePoint(0)===_e)?(this.consumeCodePoint(),{type:22,value:r.value}):(this.consumeBadUrlRemnants(),mt)}for(;;){var n=this.consumeCodePoint();if(n===LA||n===_e)return{type:22,value:$.apply(void 0,e)};if(Ft(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===LA||this.peekCodePoint(0)===_e?(this.consumeCodePoint(),{type:22,value:$.apply(void 0,e)}):(this.consumeBadUrlRemnants(),mt);if(n===Ct||n===dt||n===Ut||Xo(n))return this.consumeBadUrlRemnants(),mt;if(n===We)if(WA(n,this.peekCodePoint(0)))e.push(this.consumeEscapedCodePoint());else return this.consumeBadUrlRemnants(),mt;else e.push(n)}},A.prototype.consumeWhiteSpace=function(){for(;Ft(this.peekCodePoint(0));)this.consumeCodePoint()},A.prototype.consumeBadUrlRemnants=function(){for(;;){var e=this.consumeCodePoint();if(e===_e||e===LA)return;WA(e,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},A.prototype.consumeStringSlice=function(e){for(var t=5e4,r="";e>0;){var n=Math.min(t,e);r+=$.apply(void 0,this._value.splice(0,n)),e-=n}return this._value.shift(),r},A.prototype.consumeStringToken=function(e){var t="",r=0;do{var n=this._value[r];if(n===LA||n===void 0||n===e)return t+=this.consumeStringSlice(r),{type:0,value:t};if(n===St)return this._value.splice(0,r),nB;if(n===We){var s=this._value[r+1];s!==LA&&s!==void 0&&(s===St?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):WA(n,s)&&(t+=this.consumeStringSlice(r),t+=$(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},A.prototype.consumeNumber=function(){var e=[],t=At,r=this.peekCodePoint(0);for((r===se||r===wA)&&e.push(this.consumeCodePoint());BA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===ze&&BA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=jn;BA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((r===Zs||r===Js)&&((n===se||n===wA)&&BA(s)||BA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=jn;BA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[Wo(e),t]},A.prototype.consumeNumericToken=function(){var e=this.consumeNumber(),t=e[0],r=e[1],n=this.peekCodePoint(0),s=this.peekCodePoint(1),i=this.peekCodePoint(2);if(pt(n,s,i)){var a=this.consumeName();return{type:15,number:t,flags:r,unit:a}}return n===uo?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(Ce(e)){for(var t=$(e);Ce(this.peekCodePoint(0))&&t.length<6;)t+=$(this.consumeCodePoint());Ft(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||Go(r)||r>1114111?As:r}return e===LA?As:e},A.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(es(t))e+=$(t);else if(WA(t,this.peekCodePoint(0)))e+=$(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},A})(),zs=(function(){function A(e){this._tokens=e}return A.create=function(e){var t=new js;return t.write(e),new A(t.read())},A.parseValue=function(e){return A.create(e).parseComponentValue()},A.parseValues=function(e){return A.create(e).parseComponentValues()},A.prototype.parseComponentValue=function(){for(var e=this.consumeToken();e.type===31;)e=this.consumeToken();if(e.type===32)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(e);var t=this.consumeComponentValue();do e=this.consumeToken();while(e.type===31);if(e.type===32)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},A.prototype.parseComponentValues=function(){for(var e=[];;){var t=this.consumeComponentValue();if(t.type===32)return e;e.push(t),e.push()}},A.prototype.consumeComponentValue=function(){var e=this.consumeToken();switch(e.type){case 11:case 28:case 2:return this.consumeSimpleBlock(e.type);case 19:return this.consumeFunction(e)}return e},A.prototype.consumeSimpleBlock=function(e){for(var t={type:e,values:[]},r=this.consumeToken();;){if(r.type===32||fB(r,e))return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue()),r=this.consumeToken()}},A.prototype.consumeFunction=function(e){for(var t={name:e.value,values:[],type:18};;){var r=this.consumeToken();if(r.type===32||r.type===3)return t;this.reconsumeToken(r),t.values.push(this.consumeComponentValue())}},A.prototype.consumeToken=function(){var e=this._tokens.shift();return typeof e>"u"?jr:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A})(),et=function(A){return A.type===15},He=function(A){return A.type===17},W=function(A){return A.type===20},uB=function(A){return A.type===0},zr=function(A,e){return W(A)&&A.value===e},$s=function(A){return A.type!==31},Ee=function(A){return A.type!==31&&A.type!==4},TA=function(A){var e=[],t=[];return A.forEach(function(r){if(r.type===4){if(t.length===0)throw new Error("Error parsing function args, zero tokens for arg");e.push(t),t=[];return}r.type!==31&&t.push(r)}),t.length&&e.push(t),e},fB=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},zA=function(A){return A.type===17||A.type===15},eA=function(A){return A.type===16||zA(A)},Ai=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},aA={type:17,number:0,flags:At},cn={type:16,number:50,flags:At},YA={type:16,number:100,flags:At},Pe=function(A,e,t){var r=A[0],n=A[1];return[Y(r,e),Y(typeof n<"u"?n:r,t)]},Y=function(A,e){if(A.type===16)return A.number/100*e;if(et(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},ei="deg",ti="grad",ri="rad",ni="turn",Wt={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case ei:return Math.PI*e.number/180;case ti:return Math.PI/200*e.number;case ri:return e.number;case ni:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},si=function(A){return A.type===15&&(A.unit===ei||A.unit===ti||A.unit===ri||A.unit===ni)},ii=function(A){var e=A.filter(W).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[aA,aA];case"to top":case"bottom":return mA(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[aA,YA];case"to right":case"left":return mA(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[YA,YA];case"to bottom":case"top":return mA(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[YA,aA];case"to left":case"right":return mA(270)}return 0},mA=function(A){return Math.PI*A/180},qA={name:"color",parse:function(A,e){if(e.type===18){var t=gB[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported color function "'+e.name+'"');return t(A,e.values)}if(e.type===5){if(e.value.length===3){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3);return ZA(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),1)}if(e.value.length===4){var r=e.value.substring(0,1),n=e.value.substring(1,2),s=e.value.substring(2,3),i=e.value.substring(3,4);return ZA(parseInt(r+r,16),parseInt(n+n,16),parseInt(s+s,16),parseInt(i+i,16)/255)}if(e.value.length===6){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6);return ZA(parseInt(r,16),parseInt(n,16),parseInt(s,16),1)}if(e.value.length===8){var r=e.value.substring(0,2),n=e.value.substring(2,4),s=e.value.substring(4,6),i=e.value.substring(6,8);return ZA(parseInt(r,16),parseInt(n,16),parseInt(s,16),parseInt(i,16)/255)}}if(e.type===20){var a=NA[e.value.toUpperCase()];if(typeof a<"u")return a}return NA.TRANSPARENT}},jA=function(A){return(255&A)===0},sA=function(A){var e=255&A,t=255&A>>8,r=255&A>>16,n=255&A>>24;return e<255?"rgba("+n+","+r+","+t+","+e/255+")":"rgb("+n+","+r+","+t+")"},ZA=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(r*255)<<0)>>>0},ts=function(A,e){if(A.type===17)return A.number;if(A.type===16){var t=e===3?1:255;return e===3?A.number/100*t:Math.round(A.number/100*t)}return 0},rs=function(A,e){var t=e.filter(Ee);if(t.length===3){var r=t.map(ts),n=r[0],s=r[1],i=r[2];return ZA(n,s,i,1)}if(t.length===4){var a=t.map(ts),n=a[0],s=a[1],i=a[2],o=a[3];return ZA(n,s,i,o)}return 0};function Er(A,e,t){return t<0&&(t+=1),t>=1&&(t-=1),t<1/6?(e-A)*t*6+A:t<1/2?e:t<2/3?(e-A)*6*(2/3-t)+A:A}var ns=function(A,e){var t=e.filter(Ee),r=t[0],n=t[1],s=t[2],i=t[3],a=(r.type===17?mA(r.number):Wt.parse(A,r))/(Math.PI*2),o=eA(n)?n.number/100:0,B=eA(s)?s.number/100:0,l=typeof i<"u"&&eA(i)?Y(i,1):1;if(o===0)return ZA(B*255,B*255,B*255,1);var u=B<=.5?B*(o+1):B+o-B*o,f=B*2-u,d=Er(f,u,a+1/3),g=Er(f,u,a),w=Er(f,u,a-1/3);return ZA(d*255,g*255,w*255,l)},gB={hsl:ns,hsla:ns,rgb:rs,rgba:rs},Je=function(A,e){return qA.parse(A,zs.create(e).parseComponentValue())},NA={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},wB={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(W(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},QB={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Jt=function(A,e){var t=qA.parse(A,e[0]),r=e[1];return r&&eA(r)?{color:t,stop:r}:{color:t,stop:null}},ss=function(A,e){var t=A[0],r=A[A.length-1];t.stop===null&&(t.stop=aA),r.stop===null&&(r.stop=YA);for(var n=[],s=0,i=0;i<A.length;i++){var a=A[i].stop;if(a!==null){var o=Y(a,e);o>s?n.push(o):n.push(s),s=o}else n.push(null)}for(var B=null,i=0;i<n.length;i++){var l=n[i];if(l===null)B===null&&(B=i);else if(B!==null){for(var u=i-B,f=n[B-1],d=(l-f)/(u+1),g=1;g<=u;g++)n[B+g-1]=d*g;B=null}}return A.map(function(w,T){var h=w.color;return{color:h,stop:Math.max(Math.min(1,n[T]/e),0)}})},CB=function(A,e,t){var r=e/2,n=t/2,s=Y(A[0],e)-r,i=n-Y(A[1],t);return(Math.atan2(i,s)+Math.PI*2)%(Math.PI*2)},dB=function(A,e,t){var r=typeof A=="number"?A:CB(A,e,t),n=Math.abs(e*Math.sin(r))+Math.abs(t*Math.cos(r)),s=e/2,i=t/2,a=n/2,o=Math.sin(r-Math.PI/2)*a,B=Math.cos(r-Math.PI/2)*a;return[n,s-B,s+B,i-o,i+o]},yA=function(A,e){return Math.sqrt(A*A+e*e)},is=function(A,e,t,r,n){var s=[[0,0],[0,e],[A,0],[A,e]];return s.reduce(function(i,a){var o=a[0],B=a[1],l=yA(t-o,r-B);return(n?l<i.optimumDistance:l>i.optimumDistance)?{optimumCorner:a,optimumDistance:l}:i},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},UB=function(A,e,t,r,n){var s=0,i=0;switch(A.size){case 0:A.shape===0?s=i=Math.min(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.min(Math.abs(e),Math.abs(e-r)),i=Math.min(Math.abs(t),Math.abs(t-n)));break;case 2:if(A.shape===0)s=i=Math.min(yA(e,t),yA(e,t-n),yA(e-r,t),yA(e-r,t-n));else if(A.shape===1){var a=Math.min(Math.abs(t),Math.abs(t-n))/Math.min(Math.abs(e),Math.abs(e-r)),o=is(r,n,e,t,!0),B=o[0],l=o[1];s=yA(B-e,(l-t)/a),i=a*s}break;case 1:A.shape===0?s=i=Math.max(Math.abs(e),Math.abs(e-r),Math.abs(t),Math.abs(t-n)):A.shape===1&&(s=Math.max(Math.abs(e),Math.abs(e-r)),i=Math.max(Math.abs(t),Math.abs(t-n)));break;case 3:if(A.shape===0)s=i=Math.max(yA(e,t),yA(e,t-n),yA(e-r,t),yA(e-r,t-n));else if(A.shape===1){var a=Math.max(Math.abs(t),Math.abs(t-n))/Math.max(Math.abs(e),Math.abs(e-r)),u=is(r,n,e,t,!1),B=u[0],l=u[1];s=yA(B-e,(l-t)/a),i=a*s}break}return Array.isArray(A.size)&&(s=Y(A.size[0],r),i=A.size.length===2?Y(A.size[1],n):s),[s,i]},hB=function(A,e){var t=mA(180),r=[];return TA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&i.value==="to"){t=ii(n);return}else if(si(i)){t=Wt.parse(A,i);return}}var a=Jt(A,n);r.push(a)}),{angle:t,stops:r,type:1}},vt=function(A,e){var t=mA(180),r=[];return TA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&["top","left","right","bottom"].indexOf(i.value)!==-1){t=ii(n);return}else if(si(i)){t=(Wt.parse(A,i)+mA(270))%mA(360);return}}var a=Jt(A,n);r.push(a)}),{angle:t,stops:r,type:1}},FB=function(A,e){var t=mA(180),r=[],n=1,s=0,i=3,a=[];return TA(e).forEach(function(o,B){var l=o[0];if(B===0){if(W(l)&&l.value==="linear"){n=1;return}else if(W(l)&&l.value==="radial"){n=2;return}}if(l.type===18){if(l.name==="from"){var u=qA.parse(A,l.values[0]);r.push({stop:aA,color:u})}else if(l.name==="to"){var u=qA.parse(A,l.values[0]);r.push({stop:YA,color:u})}else if(l.name==="color-stop"){var f=l.values.filter(Ee);if(f.length===2){var u=qA.parse(A,f[1]),d=f[0];He(d)&&r.push({stop:{type:16,number:d.number*100,flags:d.flags},color:u})}}}}),n===1?{angle:(t+mA(180))%mA(360),stops:r,type:n}:{size:i,shape:s,stops:r,position:a,type:n}},ai="closest-side",oi="farthest-side",Bi="closest-corner",ci="farthest-corner",li="circle",ui="ellipse",fi="cover",gi="contain",pB=function(A,e){var t=0,r=3,n=[],s=[];return TA(e).forEach(function(i,a){var o=!0;if(a===0){var B=!1;o=i.reduce(function(u,f){if(B)if(W(f))switch(f.value){case"center":return s.push(cn),u;case"top":case"left":return s.push(aA),u;case"right":case"bottom":return s.push(YA),u}else(eA(f)||zA(f))&&s.push(f);else if(W(f))switch(f.value){case li:return t=0,!1;case ui:return t=1,!1;case"at":return B=!0,!1;case ai:return r=0,!1;case fi:case oi:return r=1,!1;case gi:case Bi:return r=2,!1;case ci:return r=3,!1}else if(zA(f)||eA(f))return Array.isArray(r)||(r=[]),r.push(f),!1;return u},o)}if(o){var l=Jt(A,i);n.push(l)}}),{size:r,shape:t,stops:n,position:s,type:2}},Et=function(A,e){var t=0,r=3,n=[],s=[];return TA(e).forEach(function(i,a){var o=!0;if(a===0?o=i.reduce(function(l,u){if(W(u))switch(u.value){case"center":return s.push(cn),!1;case"top":case"left":return s.push(aA),!1;case"right":case"bottom":return s.push(YA),!1}else if(eA(u)||zA(u))return s.push(u),!1;return l},o):a===1&&(o=i.reduce(function(l,u){if(W(u))switch(u.value){case li:return t=0,!1;case ui:return t=1,!1;case gi:case ai:return r=0,!1;case oi:return r=1,!1;case Bi:return r=2,!1;case fi:case ci:return r=3,!1}else if(zA(u)||eA(u))return Array.isArray(r)||(r=[]),r.push(u),!1;return l},o)),o){var B=Jt(A,i);n.push(B)}}),{size:r,shape:t,stops:n,position:s,type:2}},mB=function(A){return A.type===1},vB=function(A){return A.type===2},ln={name:"image",parse:function(A,e){if(e.type===22){var t={url:e.value,type:0};return A.cache.addImage(e.value),t}if(e.type===18){var r=wi[e.name];if(typeof r>"u")throw new Error('Attempting to parse an unsupported image function "'+e.name+'"');return r(A,e.values)}throw new Error("Unsupported image type "+e.type)}};function EB(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!wi[A.name])}var wi={"linear-gradient":hB,"-moz-linear-gradient":vt,"-ms-linear-gradient":vt,"-o-linear-gradient":vt,"-webkit-linear-gradient":vt,"radial-gradient":pB,"-moz-radial-gradient":Et,"-ms-radial-gradient":Et,"-o-radial-gradient":Et,"-webkit-radial-gradient":Et,"-webkit-gradient":FB},HB={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e.filter(function(r){return Ee(r)&&EB(r)}).map(function(r){return ln.parse(A,r)})}},IB={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(W(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},yB={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return TA(e).map(function(t){return t.filter(eA)}).map(Ai)}},bB={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return TA(e).map(function(t){return t.filter(W).map(function(r){return r.value}).join(" ")}).map(xB)}},xB=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},ve;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(ve||(ve={}));var LB={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return TA(e).map(function(t){return t.filter(TB)})}},TB=function(A){return W(A)||eA(A)},Yt=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},KB=Yt("top"),SB=Yt("right"),DB=Yt("bottom"),_B=Yt("left"),Zt=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return Ai(t.filter(eA))}}},RB=Zt("top-left"),MB=Zt("top-right"),OB=Zt("bottom-right"),GB=Zt("bottom-left"),qt=function(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(e,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},NB=qt("top"),VB=qt("right"),PB=qt("bottom"),kB=qt("left"),jt=function(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(e,t){return et(t)?t.number:0}}},XB=jt("top"),WB=jt("right"),JB=jt("bottom"),YB=jt("left"),ZB={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},qB={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){return e==="rtl"?1:0}},jB={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(W).reduce(function(t,r){return t|zB(r.value)},0)}},zB=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},$B={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Ac={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,e){return e.type===20&&e.value==="normal"?0:e.type===17||e.type===15?e.number:0}},_t;(function(A){A.NORMAL="normal",A.STRICT="strict"})(_t||(_t={}));var ec={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="strict"?_t.STRICT:_t.NORMAL}},tc={name:"line-height",initialValue:"normal",prefix:!1,type:4},as=function(A,e){return W(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:eA(A)?Y(A,e):e},rc={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:ln.parse(A,e)}},nc={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){return e==="inside"?0:1}},$r={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},zt=function(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}},sc=zt("top"),ic=zt("right"),ac=zt("bottom"),oc=zt("left"),Bc={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(W).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},cc={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="break-word"?"break-word":"normal"}},$t=function(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},lc=$t("top"),uc=$t("right"),fc=$t("bottom"),gc=$t("left"),wc={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,e){switch(e){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},Qc={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},Cc={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&zr(e[0],"none")?[]:TA(e).map(function(t){for(var r={color:NA.TRANSPARENT,offsetX:aA,offsetY:aA,blur:aA},n=0,s=0;s<t.length;s++){var i=t[s];zA(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:r.blur=i,n++):r.color=qA.parse(A,i)}return r})}},dc={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},Uc={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,e){if(e.type===20&&e.value==="none")return null;if(e.type===18){var t=pc[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},hc=function(A){var e=A.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},Fc=function(A){var e=A.filter(function(o){return o.type===17}).map(function(o){return o.number}),t=e[0],r=e[1];e[2],e[3];var n=e[4],s=e[5];e[6],e[7],e[8],e[9],e[10],e[11];var i=e[12],a=e[13];return e[14],e[15],e.length===16?[t,r,n,s,i,a]:null},pc={matrix:hc,matrix3d:Fc},os={type:16,number:50,flags:At},mc=[os,os],vc={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var t=e.filter(eA);return t.length!==2?mc:[t[0],t[1]]}},Ec={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,e){switch(e){case"hidden":return 1;case"collapse":return 2;default:return 0}}},Ye;(function(A){A.NORMAL="normal",A.BREAK_ALL="break-all",A.KEEP_ALL="keep-all"})(Ye||(Ye={}));var Hc={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"break-all":return Ye.BREAK_ALL;case"keep-all":return Ye.KEEP_ALL;default:return Ye.NORMAL}}},Ic={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,e){if(e.type===20)return{auto:!0,order:0};if(He(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},Qi={name:"time",parse:function(A,e){if(e.type===15)switch(e.unit.toLowerCase()){case"s":return 1e3*e.number;case"ms":return e.number}throw new Error("Unsupported time type")}},yc={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return He(e)?e.number:1}},bc={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},xc={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(W).map(function(t){switch(t.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(t){return t!==0})}},Lc={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,e){var t=[],r=[];return e.forEach(function(n){switch(n.type){case 20:case 0:t.push(n.value);break;case 17:t.push(n.number.toString());break;case 4:r.push(t.join(" ")),t.length=0;break}}),t.length&&r.push(t.join(" ")),r.map(function(n){return n.indexOf(" ")===-1?n:"'"+n+"'"})}},Tc={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Kc={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,e){return He(e)?e.number:W(e)&&e.value==="bold"?700:400}},Sc={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(W).map(function(t){return t.value})}},Dc={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){switch(e){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},rA=function(A,e){return(A&e)!==0},_c={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,e){if(e.length===0)return[];var t=e[0];return t.type===20&&t.value==="none"?[]:e}},Rc={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;for(var r=[],n=e.filter($s),s=0;s<n.length;s++){var i=n[s],a=n[s+1];if(i.type===20){var o=a&&He(a)?a.number:1;r.push({counter:i.value,increment:o})}}return r}},Mc={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var t=[],r=e.filter($s),n=0;n<r.length;n++){var s=r[n],i=r[n+1];if(W(s)&&s.value!=="none"){var a=i&&He(i)?i.number:0;t.push({counter:s.value,reset:a})}}return t}},Oc={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter(et).map(function(t){return Qi.parse(A,t)})}},Gc={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return null;var t=e[0];if(t.type===20&&t.value==="none")return null;var r=[],n=e.filter(uB);if(n.length%2!==0)return null;for(var s=0;s<n.length;s+=2){var i=n[s].value,a=n[s+1].value;r.push({open:i,close:a})}return r}},Bs=function(A,e,t){if(!A)return"";var r=A[Math.min(e,A.length-1)];return r?t?r.open:r.close:""},Nc={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&zr(e[0],"none")?[]:TA(e).map(function(t){for(var r={color:255,offsetX:aA,offsetY:aA,blur:aA,spread:aA,inset:!1},n=0,s=0;s<t.length;s++){var i=t[s];zr(i,"inset")?r.inset=!0:zA(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:n===2?r.blur=i:r.spread=i,n++):r.color=qA.parse(A,i)}return r})}},Vc={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var t=[0,1,2],r=[];return e.filter(W).forEach(function(n){switch(n.value){case"stroke":r.push(1);break;case"fill":r.push(0);break;case"markers":r.push(2);break}}),t.forEach(function(n){r.indexOf(n)===-1&&r.push(n)}),r}},Pc={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},kc={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return et(e)?e.number:0}},Xc=(function(){function A(e,t){var r,n;this.animationDuration=v(e,Oc,t.animationDuration),this.backgroundClip=v(e,wB,t.backgroundClip),this.backgroundColor=v(e,QB,t.backgroundColor),this.backgroundImage=v(e,HB,t.backgroundImage),this.backgroundOrigin=v(e,IB,t.backgroundOrigin),this.backgroundPosition=v(e,yB,t.backgroundPosition),this.backgroundRepeat=v(e,bB,t.backgroundRepeat),this.backgroundSize=v(e,LB,t.backgroundSize),this.borderTopColor=v(e,KB,t.borderTopColor),this.borderRightColor=v(e,SB,t.borderRightColor),this.borderBottomColor=v(e,DB,t.borderBottomColor),this.borderLeftColor=v(e,_B,t.borderLeftColor),this.borderTopLeftRadius=v(e,RB,t.borderTopLeftRadius),this.borderTopRightRadius=v(e,MB,t.borderTopRightRadius),this.borderBottomRightRadius=v(e,OB,t.borderBottomRightRadius),this.borderBottomLeftRadius=v(e,GB,t.borderBottomLeftRadius),this.borderTopStyle=v(e,NB,t.borderTopStyle),this.borderRightStyle=v(e,VB,t.borderRightStyle),this.borderBottomStyle=v(e,PB,t.borderBottomStyle),this.borderLeftStyle=v(e,kB,t.borderLeftStyle),this.borderTopWidth=v(e,XB,t.borderTopWidth),this.borderRightWidth=v(e,WB,t.borderRightWidth),this.borderBottomWidth=v(e,JB,t.borderBottomWidth),this.borderLeftWidth=v(e,YB,t.borderLeftWidth),this.boxShadow=v(e,Nc,t.boxShadow),this.color=v(e,ZB,t.color),this.direction=v(e,qB,t.direction),this.display=v(e,jB,t.display),this.float=v(e,$B,t.cssFloat),this.fontFamily=v(e,Lc,t.fontFamily),this.fontSize=v(e,Tc,t.fontSize),this.fontStyle=v(e,Dc,t.fontStyle),this.fontVariant=v(e,Sc,t.fontVariant),this.fontWeight=v(e,Kc,t.fontWeight),this.letterSpacing=v(e,Ac,t.letterSpacing),this.lineBreak=v(e,ec,t.lineBreak),this.lineHeight=v(e,tc,t.lineHeight),this.listStyleImage=v(e,rc,t.listStyleImage),this.listStylePosition=v(e,nc,t.listStylePosition),this.listStyleType=v(e,$r,t.listStyleType),this.marginTop=v(e,sc,t.marginTop),this.marginRight=v(e,ic,t.marginRight),this.marginBottom=v(e,ac,t.marginBottom),this.marginLeft=v(e,oc,t.marginLeft),this.opacity=v(e,yc,t.opacity);var s=v(e,Bc,t.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=v(e,cc,t.overflowWrap),this.paddingTop=v(e,lc,t.paddingTop),this.paddingRight=v(e,uc,t.paddingRight),this.paddingBottom=v(e,fc,t.paddingBottom),this.paddingLeft=v(e,gc,t.paddingLeft),this.paintOrder=v(e,Vc,t.paintOrder),this.position=v(e,Qc,t.position),this.textAlign=v(e,wc,t.textAlign),this.textDecorationColor=v(e,bc,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=v(e,xc,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=v(e,Cc,t.textShadow),this.textTransform=v(e,dc,t.textTransform),this.transform=v(e,Uc,t.transform),this.transformOrigin=v(e,vc,t.transformOrigin),this.visibility=v(e,Ec,t.visibility),this.webkitTextStrokeColor=v(e,Pc,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=v(e,kc,t.webkitTextStrokeWidth),this.wordBreak=v(e,Hc,t.wordBreak),this.zIndex=v(e,Ic,t.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return jA(this.backgroundColor)},A.prototype.isTransformed=function(){return this.transform!==null},A.prototype.isPositioned=function(){return this.position!==0},A.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},A.prototype.isFloating=function(){return this.float!==0},A.prototype.isInlineLevel=function(){return rA(this.display,4)||rA(this.display,33554432)||rA(this.display,268435456)||rA(this.display,536870912)||rA(this.display,67108864)||rA(this.display,134217728)},A})(),Wc=(function(){function A(e,t){this.content=v(e,_c,t.content),this.quotes=v(e,Gc,t.quotes)}return A})(),cs=(function(){function A(e,t){this.counterIncrement=v(e,Rc,t.counterIncrement),this.counterReset=v(e,Mc,t.counterReset)}return A})(),v=function(A,e,t){var r=new js,n=t!==null&&typeof t<"u"?t.toString():e.initialValue;r.write(n);var s=new zs(r.read());switch(e.type){case 2:var i=s.parseComponentValue();return e.parse(A,W(i)?i.value:e.initialValue);case 0:return e.parse(A,s.parseComponentValue());case 1:return e.parse(A,s.parseComponentValues());case 4:return s.parseComponentValue();case 3:switch(e.format){case"angle":return Wt.parse(A,s.parseComponentValue());case"color":return qA.parse(A,s.parseComponentValue());case"image":return ln.parse(A,s.parseComponentValue());case"length":var a=s.parseComponentValue();return zA(a)?a:aA;case"length-percentage":var o=s.parseComponentValue();return eA(o)?o:aA;case"time":return Qi.parse(A,s.parseComponentValue())}break}},Jc="data-html2canvas-debug",Yc=function(A){var e=A.getAttribute(Jc);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},An=function(A,e){var t=Yc(A);return t===1||e===t},KA=(function(){function A(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,An(t,3))debugger;this.styles=new Xc(e,window.getComputedStyle(t,null)),rn(t)&&(this.styles.animationDuration.some(function(r){return r>0})&&(t.style.animationDuration="0s"),this.styles.transform!==null&&(t.style.transform="none")),this.bounds=kt(this.context,t),An(t,4)&&(this.flags|=16)}return A})(),Zc="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",ls="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ke=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Re=0;Re<ls.length;Re++)ke[ls.charCodeAt(Re)]=Re;var Re,qc=function(A){var e=A.length*.75,t=A.length,r,n=0,s,i,a,o;A[A.length-1]==="="&&(e--,A[A.length-2]==="="&&e--);var B=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&typeof Uint8Array.prototype.slice<"u"?new ArrayBuffer(e):new Array(e),l=Array.isArray(B)?B:new Uint8Array(B);for(r=0;r<t;r+=4)s=ke[A.charCodeAt(r)],i=ke[A.charCodeAt(r+1)],a=ke[A.charCodeAt(r+2)],o=ke[A.charCodeAt(r+3)],l[n++]=s<<2|i>>4,l[n++]=(i&15)<<4|a>>2,l[n++]=(a&3)<<6|o&63;return B},jc=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},zc=function(A){for(var e=A.length,t=[],r=0;r<e;r+=4)t.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return t},ae=5,un=11,Hr=2,$c=un-ae,Ci=65536>>ae,Al=1<<ae,Ir=Al-1,el=1024>>ae,tl=Ci+el,rl=tl,nl=32,sl=rl+nl,il=65536>>un,al=1<<$c,ol=al-1,us=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Bl=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},cl=function(A,e){var t=qc(A),r=Array.isArray(t)?zc(t):new Uint32Array(t),n=Array.isArray(t)?jc(t):new Uint16Array(t),s=24,i=us(n,s/2,r[4]/2),a=r[5]===2?us(n,(s+r[4])/2):Bl(r,Math.ceil((s+r[4])/4));return new ll(r[0],r[1],r[2],r[3],i,a)},ll=(function(){function A(e,t,r,n,s,i){this.initialValue=e,this.errorValue=t,this.highStart=r,this.highValueIndex=n,this.index=s,this.data=i}return A.prototype.get=function(e){var t;if(e>=0){if(e<55296||e>56319&&e<=65535)return t=this.index[e>>ae],t=(t<<Hr)+(e&Ir),this.data[t];if(e<=65535)return t=this.index[Ci+(e-55296>>ae)],t=(t<<Hr)+(e&Ir),this.data[t];if(e<this.highStart)return t=sl-il+(e>>un),t=this.index[t],t+=e>>ae&ol,t=this.index[t],t=(t<<Hr)+(e&Ir),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),fs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ul=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Me=0;Me<fs.length;Me++)ul[fs.charCodeAt(Me)]=Me;var Me,fl=1,yr=2,br=3,gs=4,ws=5,gl=7,Qs=8,xr=9,Lr=10,Cs=11,ds=12,Us=13,hs=14,Tr=15,wl=function(A){for(var e=[],t=0,r=A.length;t<r;){var n=A.charCodeAt(t++);if(n>=55296&&n<=56319&&t<r){var s=A.charCodeAt(t++);(s&64512)===56320?e.push(((n&1023)<<10)+(s&1023)+65536):(e.push(n),t--)}else e.push(n)}return e},Ql=function(){for(var A=[],e=0;e<arguments.length;e++)A[e]=arguments[e];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var t=A.length;if(!t)return"";for(var r=[],n=-1,s="";++n<t;){var i=A[n];i<=65535?r.push(i):(i-=65536,r.push((i>>10)+55296,i%1024+56320)),(n+1===t||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},Cl=cl(Zc),FA="\xD7",Kr="\xF7",dl=function(A){return Cl.get(A)},Ul=function(A,e,t){var r=t-2,n=e[r],s=e[t-1],i=e[t];if(s===yr&&i===br)return FA;if(s===yr||s===br||s===gs||i===yr||i===br||i===gs)return Kr;if(s===Qs&&[Qs,xr,Cs,ds].indexOf(i)!==-1||(s===Cs||s===xr)&&(i===xr||i===Lr)||(s===ds||s===Lr)&&i===Lr||i===Us||i===ws||i===gl||s===fl)return FA;if(s===Us&&i===hs){for(;n===ws;)n=e[--r];if(n===hs)return FA}if(s===Tr&&i===Tr){for(var a=0;n===Tr;)a++,n=e[--r];if(a%2===0)return FA}return Kr},hl=function(A){var e=wl(A),t=e.length,r=0,n=0,s=e.map(dl);return{next:function(){if(r>=t)return{done:!0,value:null};for(var i=FA;r<t&&(i=Ul(e,s,++r))===FA;);if(i!==FA||r===t){var a=Ql.apply(null,e.slice(n,r));return n=r,{value:a,done:!1}}return{done:!0,value:null}}}},Fl=function(A){for(var e=hl(A),t=[],r;!(r=e.next()).done;)r.value&&t.push(r.value.slice());return t},pl=function(A){var e=123;if(A.createRange){var t=A.createRange();if(t.getBoundingClientRect){var r=A.createElement("boundtest");r.style.height=e+"px",r.style.display="block",A.body.appendChild(r),t.selectNode(r);var n=t.getBoundingClientRect(),s=Math.round(n.height);if(A.body.removeChild(r),s===e)return!0}}return!1},ml=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var t=A.createRange();e.innerHTML=typeof"".repeat=="function"?"👨".repeat(10):"";var r=e.firstChild,n=Xt(r.data).map(function(o){return $(o)}),s=0,i={},a=n.every(function(o,B){t.setStart(r,s),t.setEnd(r,s+o.length);var l=t.getBoundingClientRect();s+=o.length;var u=l.x>i.x||l.y>i.y;return i=l,B===0?!0:u});return A.body.removeChild(e),a},vl=function(){return typeof new Image().crossOrigin<"u"},El=function(){return typeof new XMLHttpRequest().responseType=="string"},Hl=function(A){var e=new Image,t=A.createElement("canvas"),r=t.getContext("2d");if(!r)return!1;e.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(e,0,0),t.toDataURL()}catch{return!1}return!0},Fs=function(A){return A[0]===0&&A[1]===255&&A[2]===0&&A[3]===255},Il=function(A){var e=A.createElement("canvas"),t=100;e.width=t,e.height=t;var r=e.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,t,t);var n=new Image,s=e.toDataURL();n.src=s;var i=en(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),ps(i).then(function(a){r.drawImage(a,0,0);var o=r.getImageData(0,0,t,t).data;r.fillStyle="red",r.fillRect(0,0,t,t);var B=A.createElement("div");return B.style.backgroundImage="url("+s+")",B.style.height=t+"px",Fs(o)?ps(en(t,t,0,0,B)):Promise.reject(!1)}).then(function(a){return r.drawImage(a,0,0),Fs(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},en=function(A,e,t,r,n){var s="http://www.w3.org/2000/svg",i=document.createElementNS(s,"svg"),a=document.createElementNS(s,"foreignObject");return i.setAttributeNS(null,"width",A.toString()),i.setAttributeNS(null,"height",e.toString()),a.setAttributeNS(null,"width","100%"),a.setAttributeNS(null,"height","100%"),a.setAttributeNS(null,"x",t.toString()),a.setAttributeNS(null,"y",r.toString()),a.setAttributeNS(null,"externalResourcesRequired","true"),i.appendChild(a),a.appendChild(n),i},ps=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){return e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},iA={get SUPPORT_RANGE_BOUNDS(){var A=pl(document);return Object.defineProperty(iA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=iA.SUPPORT_RANGE_BOUNDS&&ml(document);return Object.defineProperty(iA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=Hl(document);return Object.defineProperty(iA,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A=typeof Array.from=="function"&&typeof window.fetch=="function"?Il(document):Promise.resolve(!1);return Object.defineProperty(iA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=vl();return Object.defineProperty(iA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=El();return Object.defineProperty(iA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(iA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(iA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},Ze=(function(){function A(e,t){this.text=e,this.bounds=t}return A})(),yl=function(A,e,t,r){var n=Ll(e,t),s=[],i=0;return n.forEach(function(a){if(t.textDecorationLine.length||a.trim().length>0)if(iA.SUPPORT_RANGE_BOUNDS){var o=ms(r,i,a.length).getClientRects();if(o.length>1){var B=fn(a),l=0;B.forEach(function(f){s.push(new Ze(f,VA.fromDOMRectList(A,ms(r,l+i,f.length).getClientRects()))),l+=f.length})}else s.push(new Ze(a,VA.fromDOMRectList(A,o)))}else{var u=r.splitText(a.length);s.push(new Ze(a,bl(A,r))),r=u}else iA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(a.length));i+=a.length}),s},bl=function(A,e){var t=e.ownerDocument;if(t){var r=t.createElement("html2canvaswrapper");r.appendChild(e.cloneNode(!0));var n=e.parentNode;if(n){n.replaceChild(r,e);var s=kt(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),s}}return VA.EMPTY},ms=function(A,e,t){var r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");var n=r.createRange();return n.setStart(A,e),n.setEnd(A,e+t),n},fn=function(A){if(iA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var e=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(e.segment(A)).map(function(t){return t.segment})}return Fl(A)},xl=function(A,e){if(iA.SUPPORT_NATIVE_TEXT_SEGMENTATION){var t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(function(r){return r.segment})}return Kl(A,e)},Ll=function(A,e){return e.letterSpacing!==0?fn(A):xl(A,e)},Tl=[32,160,4961,65792,65793,4153,4241],Kl=function(A,e){for(var t=so(A,{lineBreak:e.lineBreak,wordBreak:e.overflowWrap==="break-word"?"break-word":e.wordBreak}),r=[],n,s=function(){if(n.value){var i=n.value.slice(),a=Xt(i),o="";a.forEach(function(B){Tl.indexOf(B)===-1?o+=$(B):(o.length&&r.push(o),r.push($(B)),o="")}),o.length&&r.push(o)}};!(n=t.next()).done;)s();return r},Sl=(function(){function A(e,t,r){this.text=Dl(t.data,r.textTransform),this.textBounds=yl(e,this.text,r,t)}return A})(),Dl=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(_l,Rl);case 2:return A.toUpperCase();default:return A}},_l=/(^|\s|:|-|\(|\))([a-z])/g,Rl=function(A,e,t){return A.length>0?e+t.toUpperCase():A},di=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.src=r.currentSrc||r.src,n.intrinsicWidth=r.naturalWidth,n.intrinsicHeight=r.naturalHeight,n.context.cache.addImage(n.src),n}return e})(KA),Ui=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r,n.intrinsicWidth=r.width,n.intrinsicHeight=r.height,n}return e})(KA),hi=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=new XMLSerializer,i=kt(t,r);return r.setAttribute("width",i.width+"px"),r.setAttribute("height",i.height+"px"),n.svg="data:image/svg+xml,"+encodeURIComponent(s.serializeToString(r)),n.intrinsicWidth=r.width.baseVal.value,n.intrinsicHeight=r.height.baseVal.value,n.context.cache.addImage(n.svg),n}return e})(KA),Fi=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(KA),tn=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.start=r.start,n.reversed=typeof r.reversed=="boolean"&&r.reversed===!0,n}return e})(KA),Ml=[{type:15,flags:0,unit:"px",number:3}],Ol=[{type:16,flags:0,number:50}],Gl=function(A){return A.width>A.height?new VA(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new VA(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},Nl=function(A){var e=A.type===Vl?new Array(A.value.length+1).join("\u2022"):A.value;return e.length===0?A.placeholder||"":e},Rt="checkbox",Mt="radio",Vl="password",vs=707406591,gn=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;switch(n.type=r.type.toLowerCase(),n.checked=r.checked,n.value=Nl(r),(n.type===Rt||n.type===Mt)&&(n.styles.backgroundColor=3739148031,n.styles.borderTopColor=n.styles.borderRightColor=n.styles.borderBottomColor=n.styles.borderLeftColor=2779096575,n.styles.borderTopWidth=n.styles.borderRightWidth=n.styles.borderBottomWidth=n.styles.borderLeftWidth=1,n.styles.borderTopStyle=n.styles.borderRightStyle=n.styles.borderBottomStyle=n.styles.borderLeftStyle=1,n.styles.backgroundClip=[0],n.styles.backgroundOrigin=[0],n.bounds=Gl(n.bounds)),n.type){case Rt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Ml;break;case Mt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Ol;break}return n}return e})(KA),pi=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this,s=r.options[r.selectedIndex||0];return n.value=s&&s.text||"",n}return e})(KA),mi=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(KA),vi=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;n.src=r.src,n.width=parseInt(r.width,10)||0,n.height=parseInt(r.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{if(r.contentWindow&&r.contentWindow.document&&r.contentWindow.document.documentElement){n.tree=Hi(t,r.contentWindow.document.documentElement);var s=r.contentWindow.document.documentElement?Je(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):NA.TRANSPARENT,i=r.contentWindow.document.body?Je(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):NA.TRANSPARENT;n.backgroundColor=jA(s)?jA(i)?n.styles.backgroundColor:i:s}}catch{}return n}return e})(KA),Pl=["OL","UL","MENU"],Tt=function(A,e,t,r){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,Ii(n)&&n.data.trim().length>0)t.textNodes.push(new Sl(A,n,t.styles));else if(me(n))if(Li(n)&&n.assignedNodes)n.assignedNodes().forEach(function(a){return Tt(A,a,t,r)});else{var i=Ei(A,n);i.styles.isVisible()&&(kl(n,i,r)?i.flags|=4:Xl(i.styles)&&(i.flags|=2),Pl.indexOf(n.tagName)!==-1&&(i.flags|=8),t.elements.push(i),n.slot,n.shadowRoot?Tt(A,n.shadowRoot,i,r):!Ot(n)&&!yi(n)&&!Gt(n)&&Tt(A,n,i,r))}},Ei=function(A,e){return nn(e)?new di(A,e):bi(e)?new Ui(A,e):yi(e)?new hi(A,e):Wl(e)?new Fi(A,e):Jl(e)?new tn(A,e):Yl(e)?new gn(A,e):Gt(e)?new pi(A,e):Ot(e)?new mi(A,e):xi(e)?new vi(A,e):new KA(A,e)},Hi=function(A,e){var t=Ei(A,e);return t.flags|=4,Tt(A,e,t,t),t},kl=function(A,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||wn(A)&&t.styles.isTransparent()},Xl=function(A){return A.isPositioned()||A.isFloating()},Ii=function(A){return A.nodeType===Node.TEXT_NODE},me=function(A){return A.nodeType===Node.ELEMENT_NODE},rn=function(A){return me(A)&&typeof A.style<"u"&&!Kt(A)},Kt=function(A){return typeof A.className=="object"},Wl=function(A){return A.tagName==="LI"},Jl=function(A){return A.tagName==="OL"},Yl=function(A){return A.tagName==="INPUT"},Zl=function(A){return A.tagName==="HTML"},yi=function(A){return A.tagName==="svg"},wn=function(A){return A.tagName==="BODY"},bi=function(A){return A.tagName==="CANVAS"},Es=function(A){return A.tagName==="VIDEO"},nn=function(A){return A.tagName==="IMG"},xi=function(A){return A.tagName==="IFRAME"},Hs=function(A){return A.tagName==="STYLE"},ql=function(A){return A.tagName==="SCRIPT"},Ot=function(A){return A.tagName==="TEXTAREA"},Gt=function(A){return A.tagName==="SELECT"},Li=function(A){return A.tagName==="SLOT"},Is=function(A){return A.tagName.indexOf("-")>0},jl=(function(){function A(){this.counters={}}return A.prototype.getCounterValue=function(e){var t=this.counters[e];return t&&t.length?t[t.length-1]:1},A.prototype.getCounterValues=function(e){var t=this.counters[e];return t||[]},A.prototype.pop=function(e){var t=this;e.forEach(function(r){return t.counters[r].pop()})},A.prototype.parse=function(e){var t=this,r=e.counterIncrement,n=e.counterReset,s=!0;r!==null&&r.forEach(function(a){var o=t.counters[a.counter];o&&a.increment!==0&&(s=!1,o.length||o.push(1),o[Math.max(0,o.length-1)]+=a.increment)});var i=[];return s&&n.forEach(function(a){var o=t.counters[a.counter];i.push(a.counter),o||(o=t.counters[a.counter]=[]),o.push(a.reset)}),i},A})(),ys={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},bs={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u0554","\u0553","\u0552","\u0551","\u0550","\u054F","\u054E","\u054D","\u054C","\u054B","\u054A","\u0549","\u0548","\u0547","\u0546","\u0545","\u0544","\u0543","\u0542","\u0541","\u0540","\u053F","\u053E","\u053D","\u053C","\u053B","\u053A","\u0539","\u0538","\u0537","\u0536","\u0535","\u0534","\u0533","\u0532","\u0531"]},zl={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["\u05D9\u05F3","\u05D8\u05F3","\u05D7\u05F3","\u05D6\u05F3","\u05D5\u05F3","\u05D4\u05F3","\u05D3\u05F3","\u05D2\u05F3","\u05D1\u05F3","\u05D0\u05F3","\u05EA","\u05E9","\u05E8","\u05E7","\u05E6","\u05E4","\u05E2","\u05E1","\u05E0","\u05DE","\u05DC","\u05DB","\u05D9\u05D8","\u05D9\u05D7","\u05D9\u05D6","\u05D8\u05D6","\u05D8\u05D5","\u05D9","\u05D8","\u05D7","\u05D6","\u05D5","\u05D4","\u05D3","\u05D2","\u05D1","\u05D0"]},$l={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["\u10F5","\u10F0","\u10EF","\u10F4","\u10EE","\u10ED","\u10EC","\u10EB","\u10EA","\u10E9","\u10E8","\u10E7","\u10E6","\u10E5","\u10E4","\u10F3","\u10E2","\u10E1","\u10E0","\u10DF","\u10DE","\u10DD","\u10F2","\u10DC","\u10DB","\u10DA","\u10D9","\u10D8","\u10D7","\u10F1","\u10D6","\u10D5","\u10D4","\u10D3","\u10D2","\u10D1","\u10D0"]},de=function(A,e,t,r,n,s){return A<e||A>t?$e(A,n,s.length>0):r.integers.reduce(function(i,a,o){for(;A>=a;)A-=a,i+=r.values[o];return i},"")+s},Ti=function(A,e,t,r){var n="";do t||A--,n=r(A)+n,A/=e;while(A*e>=e);return n},z=function(A,e,t,r,n){var s=t-e+1;return(A<0?"-":"")+(Ti(Math.abs(A),s,r,function(i){return $(Math.floor(i%s)+e)})+n)},re=function(A,e,t){t===void 0&&(t=". ");var r=e.length;return Ti(Math.abs(A),r,!1,function(n){return e[Math.floor(n%r)]})+t},Fe=1,kA=2,XA=4,Xe=8,GA=function(A,e,t,r,n,s){if(A<-9999||A>9999)return $e(A,4,n.length>0);var i=Math.abs(A),a=n;if(i===0)return e[0]+a;for(var o=0;i>0&&o<=4;o++){var B=i%10;B===0&&rA(s,Fe)&&a!==""?a=e[B]+a:B>1||B===1&&o===0||B===1&&o===1&&rA(s,kA)||B===1&&o===1&&rA(s,XA)&&A>100||B===1&&o>1&&rA(s,Xe)?a=e[B]+(o>0?t[o-1]:"")+a:B===1&&o>0&&(a=t[o-1]+a),i=Math.floor(i/10)}return(A<0?r:"")+a},xs="\u5341\u767E\u5343\u842C",Ls="\u62FE\u4F70\u4EDF\u842C",Ts="\u30DE\u30A4\u30CA\u30B9",Sr="\uB9C8\uC774\uB108\uC2A4",$e=function(A,e,t){var r=t?". ":"",n=t?"\u3001":"",s=t?", ":"",i=t?" ":"";switch(e){case 0:return"\u2022"+i;case 1:return"\u25E6"+i;case 2:return"\u25FE"+i;case 5:var a=z(A,48,57,!0,r);return a.length<4?"0"+a:a;case 4:return re(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",n);case 6:return de(A,1,3999,ys,3,r).toLowerCase();case 7:return de(A,1,3999,ys,3,r);case 8:return z(A,945,969,!1,r);case 9:return z(A,97,122,!1,r);case 10:return z(A,65,90,!1,r);case 11:return z(A,1632,1641,!0,r);case 12:case 49:return de(A,1,9999,bs,3,r);case 35:return de(A,1,9999,bs,3,r).toLowerCase();case 13:return z(A,2534,2543,!0,r);case 14:case 30:return z(A,6112,6121,!0,r);case 15:return re(A,"\u5B50\u4E11\u5BC5\u536F\u8FB0\u5DF3\u5348\u672A\u7533\u9149\u620C\u4EA5",n);case 16:return re(A,"\u7532\u4E59\u4E19\u4E01\u620A\u5DF1\u5E9A\u8F9B\u58EC\u7678",n);case 17:case 48:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",xs,"\u8CA0",n,kA|XA|Xe);case 47:return GA(A,"\u96F6\u58F9\u8CB3\u53C3\u8086\u4F0D\u9678\u67D2\u634C\u7396",Ls,"\u8CA0",n,Fe|kA|XA|Xe);case 42:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",xs,"\u8D1F",n,kA|XA|Xe);case 41:return GA(A,"\u96F6\u58F9\u8D30\u53C1\u8086\u4F0D\u9646\u67D2\u634C\u7396",Ls,"\u8D1F",n,Fe|kA|XA|Xe);case 26:return GA(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u4E07",Ts,n,0);case 25:return GA(A,"\u96F6\u58F1\u5F10\u53C2\u56DB\u4F0D\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343\u4E07",Ts,n,Fe|kA|XA);case 31:return GA(A,"\uC601\uC77C\uC774\uC0BC\uC0AC\uC624\uC721\uCE60\uD314\uAD6C","\uC2ED\uBC31\uCC9C\uB9CC",Sr,s,Fe|kA|XA);case 33:return GA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u842C",Sr,s,0);case 32:return GA(A,"\u96F6\u58F9\u8CB3\u53C3\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343",Sr,s,Fe|kA|XA);case 18:return z(A,2406,2415,!0,r);case 20:return de(A,1,19999,$l,3,r);case 21:return z(A,2790,2799,!0,r);case 22:return z(A,2662,2671,!0,r);case 22:return de(A,1,10999,zl,3,r);case 23:return re(A,"\u3042\u3044\u3046\u3048\u304A\u304B\u304D\u304F\u3051\u3053\u3055\u3057\u3059\u305B\u305D\u305F\u3061\u3064\u3066\u3068\u306A\u306B\u306C\u306D\u306E\u306F\u3072\u3075\u3078\u307B\u307E\u307F\u3080\u3081\u3082\u3084\u3086\u3088\u3089\u308A\u308B\u308C\u308D\u308F\u3090\u3091\u3092\u3093");case 24:return re(A,"\u3044\u308D\u306F\u306B\u307B\u3078\u3068\u3061\u308A\u306C\u308B\u3092\u308F\u304B\u3088\u305F\u308C\u305D\u3064\u306D\u306A\u3089\u3080\u3046\u3090\u306E\u304A\u304F\u3084\u307E\u3051\u3075\u3053\u3048\u3066\u3042\u3055\u304D\u3086\u3081\u307F\u3057\u3091\u3072\u3082\u305B\u3059");case 27:return z(A,3302,3311,!0,r);case 28:return re(A,"\u30A2\u30A4\u30A6\u30A8\u30AA\u30AB\u30AD\u30AF\u30B1\u30B3\u30B5\u30B7\u30B9\u30BB\u30BD\u30BF\u30C1\u30C4\u30C6\u30C8\u30CA\u30CB\u30CC\u30CD\u30CE\u30CF\u30D2\u30D5\u30D8\u30DB\u30DE\u30DF\u30E0\u30E1\u30E2\u30E4\u30E6\u30E8\u30E9\u30EA\u30EB\u30EC\u30ED\u30EF\u30F0\u30F1\u30F2\u30F3",n);case 29:return re(A,"\u30A4\u30ED\u30CF\u30CB\u30DB\u30D8\u30C8\u30C1\u30EA\u30CC\u30EB\u30F2\u30EF\u30AB\u30E8\u30BF\u30EC\u30BD\u30C4\u30CD\u30CA\u30E9\u30E0\u30A6\u30F0\u30CE\u30AA\u30AF\u30E4\u30DE\u30B1\u30D5\u30B3\u30A8\u30C6\u30A2\u30B5\u30AD\u30E6\u30E1\u30DF\u30B7\u30F1\u30D2\u30E2\u30BB\u30B9",n);case 34:return z(A,3792,3801,!0,r);case 37:return z(A,6160,6169,!0,r);case 38:return z(A,4160,4169,!0,r);case 39:return z(A,2918,2927,!0,r);case 40:return z(A,1776,1785,!0,r);case 43:return z(A,3046,3055,!0,r);case 44:return z(A,3174,3183,!0,r);case 45:return z(A,3664,3673,!0,r);case 46:return z(A,3872,3881,!0,r);default:return z(A,48,57,!0,r)}},Ki="data-html2canvas-ignore",Ks=(function(){function A(e,t,r){if(this.context=e,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new jl,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}return A.prototype.toIFrame=function(e,t){var r=this,n=Au(e,t);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var s=e.defaultView.pageXOffset,i=e.defaultView.pageYOffset,a=n.contentWindow,o=a.document,B=ru(n).then(function(){return lA(r,void 0,void 0,function(){var l,u;return oA(this,function(f){switch(f.label){case 0:return this.scrolledElements.forEach(au),a&&(a.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(a.scrollY!==t.top||a.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(a.scrollX-t.left,a.scrollY-t.top,0,0))),l=this.options.onclone,u=this.clonedReferenceElement,typeof u>"u"?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:o.fonts&&o.fonts.ready?[4,o.fonts.ready]:[3,2];case 1:f.sent(),f.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,tu(o)]:[3,4];case 3:f.sent(),f.label=4;case 4:return typeof l=="function"?[2,Promise.resolve().then(function(){return l(o,u)}).then(function(){return n})]:[2,n]}})})});return o.open(),o.write(su(document.doctype)+"<html></html>"),iu(this.referenceElement.ownerDocument,s,i),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),B},A.prototype.createElementClone=function(e){if(An(e,2))debugger;if(bi(e))return this.createCanvasClone(e);if(Es(e))return this.createVideoClone(e);if(Hs(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return nn(t)&&(nn(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),Is(t)?this.createCustomElementClone(t):t},A.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return Dr(e.style,t),t},A.prototype.createStyleClone=function(e){try{var t=e.sheet;if(t&&t.cssRules){var r=[].slice.call(t.cssRules,0).reduce(function(s,i){return i&&typeof i.cssText=="string"?s+i.cssText:s},""),n=e.cloneNode(!1);return n.textContent=r,n}}catch(s){if(this.context.logger.error("Unable to access cssRules property",s),s.name!=="SecurityError")throw s}return e.cloneNode(!1)},A.prototype.createCanvasClone=function(e){var t;if(this.options.inlineImages&&e.ownerDocument){var r=e.ownerDocument.createElement("img");try{return r.src=e.toDataURL(),r}catch{this.context.logger.info("Unable to inline canvas contents, canvas is tainted",e)}}var n=e.cloneNode(!1);try{n.width=e.width,n.height=e.height;var s=e.getContext("2d"),i=n.getContext("2d");if(i)if(!this.options.allowTaint&&s)i.putImageData(s.getImageData(0,0,e.width,e.height),0,0);else{var a=(t=e.getContext("webgl2"))!==null&&t!==void 0?t:e.getContext("webgl");if(a){var o=a.getContextAttributes();o?.preserveDrawingBuffer===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",e)}i.drawImage(e,0,0)}return n}catch{this.context.logger.info("Unable to clone canvas as it is tainted",e)}return n},A.prototype.createVideoClone=function(e){var t=e.ownerDocument.createElement("canvas");t.width=e.offsetWidth,t.height=e.offsetHeight;var r=t.getContext("2d");try{return r&&(r.drawImage(e,0,0,t.width,t.height),this.options.allowTaint||r.getImageData(0,0,t.width,t.height)),t}catch{this.context.logger.info("Unable to clone video as it is tainted",e)}var n=e.ownerDocument.createElement("canvas");return n.width=e.offsetWidth,n.height=e.offsetHeight,n},A.prototype.appendChildNode=function(e,t,r){(!me(t)||!ql(t)&&!t.hasAttribute(Ki)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!me(t)||!Hs(t))&&e.appendChild(this.cloneNode(t,r))},A.prototype.cloneChildNodes=function(e,t,r){for(var n=this,s=e.shadowRoot?e.shadowRoot.firstChild:e.firstChild;s;s=s.nextSibling)if(me(s)&&Li(s)&&typeof s.assignedNodes=="function"){var i=s.assignedNodes();i.length&&i.forEach(function(a){return n.appendChildNode(t,a,r)})}else this.appendChildNode(t,s,r)},A.prototype.cloneNode=function(e,t){if(Ii(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var r=e.ownerDocument.defaultView;if(r&&me(e)&&(rn(e)||Kt(e))){var n=this.createElementClone(e);n.style.transitionProperty="none";var s=r.getComputedStyle(e),i=r.getComputedStyle(e,":before"),a=r.getComputedStyle(e,":after");this.referenceElement===e&&rn(n)&&(this.clonedReferenceElement=n),wn(n)&&cu(n);var o=this.counters.parse(new cs(this.context,s)),B=this.resolvePseudoContent(e,n,i,qe.BEFORE);Is(e)&&(t=!0),Es(e)||this.cloneChildNodes(e,n,t),B&&n.insertBefore(B,n.firstChild);var l=this.resolvePseudoContent(e,n,a,qe.AFTER);return l&&n.appendChild(l),this.counters.pop(o),(s&&(this.options.copyStyles||Kt(e))&&!xi(e)||t)&&Dr(s,n),(e.scrollTop!==0||e.scrollLeft!==0)&&this.scrolledElements.push([n,e.scrollLeft,e.scrollTop]),(Ot(e)||Gt(e))&&(Ot(n)||Gt(n))&&(n.value=e.value),n}return e.cloneNode(!1)},A.prototype.resolvePseudoContent=function(e,t,r,n){var s=this;if(r){var i=r.content,a=t.ownerDocument;if(!(!a||!i||i==="none"||i==="-moz-alt-content"||r.display==="none")){this.counters.parse(new cs(this.context,r));var o=new Wc(this.context,r),B=a.createElement("html2canvaspseudoelement");Dr(r,B),o.content.forEach(function(u){if(u.type===0)B.appendChild(a.createTextNode(u.value));else if(u.type===22){var f=a.createElement("img");f.src=u.value,f.style.opacity="1",B.appendChild(f)}else if(u.type===18){if(u.name==="attr"){var d=u.values.filter(W);d.length&&B.appendChild(a.createTextNode(e.getAttribute(d[0].value)||""))}else if(u.name==="counter"){var g=u.values.filter(Ee),w=g[0],T=g[1];if(w&&W(w)){var h=s.counters.getCounterValue(w.value),p=T&&W(T)?$r.parse(s.context,T.value):3;B.appendChild(a.createTextNode($e(h,p,!1)))}}else if(u.name==="counters"){var E=u.values.filter(Ee),w=E[0],I=E[1],T=E[2];if(w&&W(w)){var y=s.counters.getCounterValues(w.value),C=T&&W(T)?$r.parse(s.context,T.value):3,L=I&&I.type===0?I.value:"",_=y.map(function(M){return $e(M,C,!1)}).join(L);B.appendChild(a.createTextNode(_))}}}else if(u.type===20)switch(u.value){case"open-quote":B.appendChild(a.createTextNode(Bs(o.quotes,s.quoteDepth++,!0)));break;case"close-quote":B.appendChild(a.createTextNode(Bs(o.quotes,--s.quoteDepth,!1)));break;default:B.appendChild(a.createTextNode(u.value))}}),B.className=sn+" "+an;var l=n===qe.BEFORE?" "+sn:" "+an;return Kt(t)?t.className.baseValue+=l:t.className+=l,B}}},A.destroy=function(e){return e.parentNode?(e.parentNode.removeChild(e),!0):!1},A})(),qe;(function(A){A[A.BEFORE=0]="BEFORE",A[A.AFTER=1]="AFTER"})(qe||(qe={}));var Au=function(A,e){var t=A.createElement("iframe");return t.className="html2canvas-container",t.style.visibility="hidden",t.style.position="fixed",t.style.left="-10000px",t.style.top="0px",t.style.border="0",t.width=e.width.toString(),t.height=e.height.toString(),t.scrolling="no",t.setAttribute(Ki,"true"),A.body.appendChild(t),t},eu=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},tu=function(A){return Promise.all([].slice.call(A.images,0).map(eu))},ru=function(A){return new Promise(function(e,t){var r=A.contentWindow;if(!r)return t("No window assigned for iframe");var n=r.document;r.onload=A.onload=function(){r.onload=A.onload=null;var s=setInterval(function(){n.body.childNodes.length>0&&n.readyState==="complete"&&(clearInterval(s),e(A))},50)}})},nu=["all","d","content"],Dr=function(A,e){for(var t=A.length-1;t>=0;t--){var r=A.item(t);nu.indexOf(r)===-1&&e.style.setProperty(r,A.getPropertyValue(r))}return e},su=function(A){var e="";return A&&(e+="<!DOCTYPE ",A.name&&(e+=A.name),A.internalSubset&&(e+=A.internalSubset),A.publicId&&(e+='"'+A.publicId+'"'),A.systemId&&(e+='"'+A.systemId+'"'),e+=">"),e},iu=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},au=function(A){var e=A[0],t=A[1],r=A[2];e.scrollLeft=t,e.scrollTop=r},ou=":before",Bu=":after",sn="___html2canvas___pseudoelement_before",an="___html2canvas___pseudoelement_after",Ss=`{
|
|
3
3
|
content: "" !important;
|
|
4
4
|
display: none !important;
|
|
5
|
-
}`,
|
|
6
|
-
.`+qr+nl+xs)},il=function(A,e){var r=A.ownerDocument;if(r){var t=r.createElement("style");t.textContent=e,A.appendChild(t)}},xi=(function(){function A(){}return A.getOrigin=function(e){var r=A._link;return r?(r.href=e,r.href=r.href,r.protocol+r.hostname+r.port):"about:blank"},A.isSameOrigin=function(e){return A.getOrigin(e)===A._origin},A.setContext=function(e){A._link=e.document.createElement("a"),A._origin=A.getOrigin(e.location.href)},A._origin="about:blank",A})(),al=(function(){function A(e,r){this.context=e,this._options=r,this._cache={}}return A.prototype.addImage=function(e){var r=Promise.resolve();return this.has(e)||(yr(e)||ul(e))&&(this._cache[e]=this.loadImage(e)).catch(function(){}),r},A.prototype.match=function(e){return this._cache[e]},A.prototype.loadImage=function(e){return cA(this,void 0,void 0,function(){var r,t,n,s,i=this;return aA(this,function(a){switch(a.label){case 0:return r=xi.isSameOrigin(e),t=!Ir(e)&&this._options.useCORS===!0&&sA.SUPPORT_CORS_IMAGES&&!r,n=!Ir(e)&&!r&&!yr(e)&&typeof this._options.proxy=="string"&&sA.SUPPORT_CORS_XHR&&!t,!r&&this._options.allowTaint===!1&&!Ir(e)&&!yr(e)&&!n&&!t?[2]:(s=e,n?[4,this.proxy(s)]:[3,2]);case 1:s=a.sent(),a.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(o,B){var u=new Image;u.onload=function(){return o(u)},u.onerror=B,(ll(s)||t)&&(u.crossOrigin="anonymous"),u.src=s,u.complete===!0&&setTimeout(function(){return o(u)},500),i._options.imageTimeout>0&&setTimeout(function(){return B("Timed out ("+i._options.imageTimeout+"ms) loading image")},i._options.imageTimeout)})];case 3:return[2,a.sent()]}})})},A.prototype.has=function(e){return typeof this._cache[e]<"u"},A.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},A.prototype.proxy=function(e){var r=this,t=this._options.proxy;if(!t)throw new Error("No proxy defined");var n=e.substring(0,256);return new Promise(function(s,i){var a=sA.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=function(){if(o.status===200)if(a==="text")s(o.response);else{var l=new FileReader;l.addEventListener("load",function(){return s(l.result)},!1),l.addEventListener("error",function(f){return i(f)},!1),l.readAsDataURL(o.response)}else i("Failed to proxy resource "+n+" with status code "+o.status)},o.onerror=i;var B=t.indexOf("?")>-1?"&":"?";if(o.open("GET",""+t+B+"url="+encodeURIComponent(e)+"&responseType="+a),a!=="text"&&o instanceof XMLHttpRequest&&(o.responseType=a),r._options.imageTimeout){var u=r._options.imageTimeout;o.timeout=u,o.ontimeout=function(){return i("Timed out ("+u+"ms) proxying "+n)}}o.send()})},A})(),ol=/^data:image\/svg\+xml/i,Bl=/^data:image\/.*;base64,/i,cl=/^data:image\/.*/i,ul=function(A){return sA.SUPPORT_SVG_DRAWING||!fl(A)},Ir=function(A){return cl.test(A)},ll=function(A){return Bl.test(A)},yr=function(A){return A.substr(0,4)==="blob"},fl=function(A){return A.substr(-3).toLowerCase()==="svg"||ol.test(A)},m=(function(){function A(e,r){this.type=0,this.x=e,this.y=r}return A.prototype.add=function(e,r){return new A(this.x+e,this.y+r)},A})(),Ce=function(A,e,r){return new m(A.x+(e.x-A.x)*r,A.y+(e.y-A.y)*r)},Ut=(function(){function A(e,r,t,n){this.type=1,this.start=e,this.startControl=r,this.endControl=t,this.end=n}return A.prototype.subdivide=function(e,r){var t=Ce(this.start,this.startControl,e),n=Ce(this.startControl,this.endControl,e),s=Ce(this.endControl,this.end,e),i=Ce(t,n,e),a=Ce(n,s,e),o=Ce(i,a,e);return r?new A(this.start,t,i,o):new A(o,a,s,this.end)},A.prototype.add=function(e,r){return new A(this.start.add(e,r),this.startControl.add(e,r),this.endControl.add(e,r),this.end.add(e,r))},A.prototype.reverse=function(){return new A(this.end,this.endControl,this.startControl,this.start)},A})(),hA=function(A){return A.type===1},gl=(function(){function A(e){var r=e.styles,t=e.bounds,n=Ne(r.borderTopLeftRadius,t.width,t.height),s=n[0],i=n[1],a=Ne(r.borderTopRightRadius,t.width,t.height),o=a[0],B=a[1],u=Ne(r.borderBottomRightRadius,t.width,t.height),l=u[0],f=u[1],d=Ne(r.borderBottomLeftRadius,t.width,t.height),g=d[0],Q=d[1],L=[];L.push((s+o)/t.width),L.push((g+l)/t.width),L.push((i+Q)/t.height),L.push((B+f)/t.height);var h=Math.max.apply(Math,L);h>1&&(s/=h,i/=h,o/=h,B/=h,l/=h,f/=h,g/=h,Q/=h);var p=t.width-o,T=t.height-f,I=t.width-l,b=t.height-Q,U=r.borderTopWidth,x=r.borderRightWidth,D=r.borderBottomWidth,K=r.borderLeftWidth,X=k(r.paddingTop,e.bounds.width),z=k(r.paddingRight,e.bounds.width),nA=k(r.paddingBottom,e.bounds.width),O=k(r.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||i>0?W(t.left+K/3,t.top+U/3,s-K/3,i-U/3,N.TOP_LEFT):new m(t.left+K/3,t.top+U/3),this.topRightBorderDoubleOuterBox=s>0||i>0?W(t.left+p,t.top+U/3,o-x/3,B-U/3,N.TOP_RIGHT):new m(t.left+t.width-x/3,t.top+U/3),this.bottomRightBorderDoubleOuterBox=l>0||f>0?W(t.left+I,t.top+T,l-x/3,f-D/3,N.BOTTOM_RIGHT):new m(t.left+t.width-x/3,t.top+t.height-D/3),this.bottomLeftBorderDoubleOuterBox=g>0||Q>0?W(t.left+K/3,t.top+b,g-K/3,Q-D/3,N.BOTTOM_LEFT):new m(t.left+K/3,t.top+t.height-D/3),this.topLeftBorderDoubleInnerBox=s>0||i>0?W(t.left+K*2/3,t.top+U*2/3,s-K*2/3,i-U*2/3,N.TOP_LEFT):new m(t.left+K*2/3,t.top+U*2/3),this.topRightBorderDoubleInnerBox=s>0||i>0?W(t.left+p,t.top+U*2/3,o-x*2/3,B-U*2/3,N.TOP_RIGHT):new m(t.left+t.width-x*2/3,t.top+U*2/3),this.bottomRightBorderDoubleInnerBox=l>0||f>0?W(t.left+I,t.top+T,l-x*2/3,f-D*2/3,N.BOTTOM_RIGHT):new m(t.left+t.width-x*2/3,t.top+t.height-D*2/3),this.bottomLeftBorderDoubleInnerBox=g>0||Q>0?W(t.left+K*2/3,t.top+b,g-K*2/3,Q-D*2/3,N.BOTTOM_LEFT):new m(t.left+K*2/3,t.top+t.height-D*2/3),this.topLeftBorderStroke=s>0||i>0?W(t.left+K/2,t.top+U/2,s-K/2,i-U/2,N.TOP_LEFT):new m(t.left+K/2,t.top+U/2),this.topRightBorderStroke=s>0||i>0?W(t.left+p,t.top+U/2,o-x/2,B-U/2,N.TOP_RIGHT):new m(t.left+t.width-x/2,t.top+U/2),this.bottomRightBorderStroke=l>0||f>0?W(t.left+I,t.top+T,l-x/2,f-D/2,N.BOTTOM_RIGHT):new m(t.left+t.width-x/2,t.top+t.height-D/2),this.bottomLeftBorderStroke=g>0||Q>0?W(t.left+K/2,t.top+b,g-K/2,Q-D/2,N.BOTTOM_LEFT):new m(t.left+K/2,t.top+t.height-D/2),this.topLeftBorderBox=s>0||i>0?W(t.left,t.top,s,i,N.TOP_LEFT):new m(t.left,t.top),this.topRightBorderBox=o>0||B>0?W(t.left+p,t.top,o,B,N.TOP_RIGHT):new m(t.left+t.width,t.top),this.bottomRightBorderBox=l>0||f>0?W(t.left+I,t.top+T,l,f,N.BOTTOM_RIGHT):new m(t.left+t.width,t.top+t.height),this.bottomLeftBorderBox=g>0||Q>0?W(t.left,t.top+b,g,Q,N.BOTTOM_LEFT):new m(t.left,t.top+t.height),this.topLeftPaddingBox=s>0||i>0?W(t.left+K,t.top+U,Math.max(0,s-K),Math.max(0,i-U),N.TOP_LEFT):new m(t.left+K,t.top+U),this.topRightPaddingBox=o>0||B>0?W(t.left+Math.min(p,t.width-x),t.top+U,p>t.width+x?0:Math.max(0,o-x),Math.max(0,B-U),N.TOP_RIGHT):new m(t.left+t.width-x,t.top+U),this.bottomRightPaddingBox=l>0||f>0?W(t.left+Math.min(I,t.width-K),t.top+Math.min(T,t.height-D),Math.max(0,l-x),Math.max(0,f-D),N.BOTTOM_RIGHT):new m(t.left+t.width-x,t.top+t.height-D),this.bottomLeftPaddingBox=g>0||Q>0?W(t.left+K,t.top+Math.min(b,t.height-D),Math.max(0,g-K),Math.max(0,Q-D),N.BOTTOM_LEFT):new m(t.left+K,t.top+t.height-D),this.topLeftContentBox=s>0||i>0?W(t.left+K+O,t.top+U+X,Math.max(0,s-(K+O)),Math.max(0,i-(U+X)),N.TOP_LEFT):new m(t.left+K+O,t.top+U+X),this.topRightContentBox=o>0||B>0?W(t.left+Math.min(p,t.width+K+O),t.top+U+X,p>t.width+K+O?0:o-K+O,B-(U+X),N.TOP_RIGHT):new m(t.left+t.width-(x+z),t.top+U+X),this.bottomRightContentBox=l>0||f>0?W(t.left+Math.min(I,t.width-(K+O)),t.top+Math.min(T,t.height+U+X),Math.max(0,l-(x+z)),f-(D+nA),N.BOTTOM_RIGHT):new m(t.left+t.width-(x+z),t.top+t.height-(D+nA)),this.bottomLeftContentBox=g>0||Q>0?W(t.left+K+O,t.top+b,Math.max(0,g-(K+O)),Q-(D+nA),N.BOTTOM_LEFT):new m(t.left+K+O,t.top+t.height-(D+nA))}return A})(),N;(function(A){A[A.TOP_LEFT=0]="TOP_LEFT",A[A.TOP_RIGHT=1]="TOP_RIGHT",A[A.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",A[A.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(N||(N={}));var W=function(A,e,r,t,n){var s=4*((Math.sqrt(2)-1)/3),i=r*s,a=t*s,o=A+r,B=e+t;switch(n){case N.TOP_LEFT:return new Ut(new m(A,B),new m(A,B-a),new m(o-i,e),new m(o,e));case N.TOP_RIGHT:return new Ut(new m(A,e),new m(A+i,e),new m(o,B-a),new m(o,B));case N.BOTTOM_RIGHT:return new Ut(new m(o,e),new m(o,e+a),new m(A+i,B),new m(A,B));case N.BOTTOM_LEFT:default:return new Ut(new m(o,B),new m(o-i,B),new m(A,e+a),new m(A,e))}},St=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},wl=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},Dt=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},Ql=(function(){function A(e,r,t){this.offsetX=e,this.offsetY=r,this.matrix=t,this.type=0,this.target=6}return A})(),Ft=(function(){function A(e,r){this.path=e,this.target=r,this.type=1}return A})(),Cl=(function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A})(),dl=function(A){return A.type===0},Li=function(A){return A.type===1},Ul=function(A){return A.type===2},Ls=function(A,e){return A.length===e.length?A.some(function(r,t){return r===e[t]}):!1},Fl=function(A,e,r,t,n){return A.map(function(s,i){switch(i){case 0:return s.add(e,r);case 1:return s.add(e+t,r);case 2:return s.add(e+t,r+n);case 3:return s.add(e,r+n)}return s})},Ti=(function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A})(),Ki=(function(){function A(e,r){if(this.container=e,this.parent=r,this.effects=[],this.curves=new gl(this.container),this.container.styles.opacity<1&&this.effects.push(new Cl(this.container.styles.opacity)),this.container.styles.transform!==null){var t=this.container.bounds.left+this.container.styles.transformOrigin[0].number,n=this.container.bounds.top+this.container.styles.transformOrigin[1].number,s=this.container.styles.transform;this.effects.push(new Ql(t,n,s))}if(this.container.styles.overflowX!==0){var i=St(this.curves),a=Dt(this.curves);Ls(i,a)?this.effects.push(new Ft(i,6)):(this.effects.push(new Ft(i,2)),this.effects.push(new Ft(a,4)))}}return A.prototype.getEffects=function(e){for(var r=[2,3].indexOf(this.container.styles.position)===-1,t=this.parent,n=this.effects.slice(0);t;){var s=t.effects.filter(function(o){return!Li(o)});if(r||t.container.styles.position!==0||!t.parent){if(n.unshift.apply(n,s),r=[2,3].indexOf(t.container.styles.position)===-1,t.container.styles.overflowX!==0){var i=St(t.curves),a=Dt(t.curves);Ls(i,a)||n.unshift(new Ft(a,6))}}else n.unshift.apply(n,s);t=t.parent}return n.filter(function(o){return eA(o.target,e)})},A})(),zr=function(A,e,r,t){A.container.elements.forEach(function(n){var s=eA(n.flags,4),i=eA(n.flags,2),a=new Ki(n,A);eA(n.styles.display,2048)&&t.push(a);var o=eA(n.flags,8)?[]:t;if(s||i){var B=s||n.styles.isPositioned()?r:e,u=new Ti(a);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){var l=n.styles.zIndex.order;if(l<0){var f=0;B.negativeZIndex.some(function(g,Q){return l>g.element.container.styles.zIndex.order?(f=Q,!1):f>0}),B.negativeZIndex.splice(f,0,u)}else if(l>0){var d=0;B.positiveZIndex.some(function(g,Q){return l>=g.element.container.styles.zIndex.order?(d=Q+1,!1):d>0}),B.positiveZIndex.splice(d,0,u)}else B.zeroOrAutoZIndexOrTransformedOrOpacity.push(u)}else n.styles.isFloating()?B.nonPositionedFloats.push(u):B.nonPositionedInlineLevel.push(u);zr(a,u,s?u:r,o)}else n.styles.isInlineLevel()?e.inlineLevel.push(a):e.nonInlineLevel.push(a),zr(a,e,r,o);eA(n.flags,8)&&Si(n,o)})},Si=function(A,e){for(var r=A instanceof Jr?A.start:1,t=A instanceof Jr?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof Ci&&typeof s.container.value=="number"&&s.container.value!==0&&(r=s.container.value),s.listValue=qe(r,s.container.styles.listStyleType,!0),r+=t?-1:1}},hl=function(A){var e=new Ki(A,null),r=new Ti(e),t=[];return zr(e,r,r,t),Si(e.container,t),r},Ts=function(A,e){switch(e){case 0:return mA(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return mA(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return mA(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return mA(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},pl=function(A,e){switch(e){case 0:return mA(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return mA(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return mA(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return mA(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},ml=function(A,e){switch(e){case 0:return mA(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return mA(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return mA(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return mA(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},vl=function(A,e){switch(e){case 0:return ht(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return ht(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return ht(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return ht(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},ht=function(A,e){var r=[];return hA(A)?r.push(A.subdivide(.5,!1)):r.push(A),hA(e)?r.push(e.subdivide(.5,!0)):r.push(e),r},mA=function(A,e,r,t){var n=[];return hA(A)?n.push(A.subdivide(.5,!1)):n.push(A),hA(r)?n.push(r.subdivide(.5,!0)):n.push(r),hA(t)?n.push(t.subdivide(.5,!0).reverse()):n.push(t),hA(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Di=function(A){var e=A.bounds,r=A.styles;return e.add(r.borderLeftWidth,r.borderTopWidth,-(r.borderRightWidth+r.borderLeftWidth),-(r.borderTopWidth+r.borderBottomWidth))},Mt=function(A){var e=A.styles,r=A.bounds,t=k(e.paddingLeft,r.width),n=k(e.paddingRight,r.width),s=k(e.paddingTop,r.width),i=k(e.paddingBottom,r.width);return r.add(t+e.borderLeftWidth,s+e.borderTopWidth,-(e.borderRightWidth+e.borderLeftWidth+t+n),-(e.borderTopWidth+e.borderBottomWidth+s+i))},El=function(A,e){return A===0?e.bounds:A===2?Mt(e):Di(e)},Hl=function(A,e){return A===0?e.bounds:A===2?Mt(e):Di(e)},br=function(A,e,r){var t=El(Fe(A.styles.backgroundOrigin,e),A),n=Hl(Fe(A.styles.backgroundClip,e),A),s=Il(Fe(A.styles.backgroundSize,e),r,t),i=s[0],a=s[1],o=Ne(Fe(A.styles.backgroundPosition,e),t.width-i,t.height-a),B=yl(Fe(A.styles.backgroundRepeat,e),o,s,t,n),u=Math.round(t.left+o[0]),l=Math.round(t.top+o[1]);return[B,u,l,i,a]},de=function(A){return V(A)&&A.value===pe.AUTO},pt=function(A){return typeof A=="number"},Il=function(A,e,r){var t=e[0],n=e[1],s=e[2],i=A[0],a=A[1];if(!i)return[0,0];if(AA(i)&&a&&AA(a))return[k(i,r.width),k(a,r.height)];var o=pt(s);if(V(i)&&(i.value===pe.CONTAIN||i.value===pe.COVER)){if(pt(s)){var B=r.width/r.height;return B<s!=(i.value===pe.COVER)?[r.width,r.width/s]:[r.height*s,r.height]}return[r.width,r.height]}var u=pt(t),l=pt(n),f=u||l;if(de(i)&&(!a||de(a))){if(u&&l)return[t,n];if(!o&&!f)return[r.width,r.height];if(f&&o){var d=u?t:n*s,g=l?n:t/s;return[d,g]}var Q=u?t:r.width,L=l?n:r.height;return[Q,L]}if(o){var h=0,p=0;return AA(i)?h=k(i,r.width):AA(a)&&(p=k(a,r.height)),de(i)?h=p*s:(!a||de(a))&&(p=h/s),[h,p]}var T=null,I=null;if(AA(i)?T=k(i,r.width):a&&AA(a)&&(I=k(a,r.height)),T!==null&&(!a||de(a))&&(I=u&&l?T/t*n:r.height),I!==null&&de(i)&&(T=u&&l?I/n*t:r.width),T!==null&&I!==null)return[T,I];throw new Error("Unable to calculate background-size for element")},Fe=function(A,e){var r=A[e];return typeof r>"u"?A[0]:r},yl=function(A,e,r,t,n){var s=e[0],i=e[1],a=r[0],o=r[1];switch(A){case 2:return[new m(Math.round(t.left),Math.round(t.top+i)),new m(Math.round(t.left+t.width),Math.round(t.top+i)),new m(Math.round(t.left+t.width),Math.round(o+t.top+i)),new m(Math.round(t.left),Math.round(o+t.top+i))];case 3:return[new m(Math.round(t.left+s),Math.round(t.top)),new m(Math.round(t.left+s+a),Math.round(t.top)),new m(Math.round(t.left+s+a),Math.round(t.height+t.top)),new m(Math.round(t.left+s),Math.round(t.height+t.top))];case 1:return[new m(Math.round(t.left+s),Math.round(t.top+i)),new m(Math.round(t.left+s+a),Math.round(t.top+i)),new m(Math.round(t.left+s+a),Math.round(t.top+i+o)),new m(Math.round(t.left+s),Math.round(t.top+i+o))];default:return[new m(Math.round(n.left),Math.round(n.top)),new m(Math.round(n.left+n.width),Math.round(n.top)),new m(Math.round(n.left+n.width),Math.round(n.height+n.top)),new m(Math.round(n.left),Math.round(n.height+n.top))]}},bl="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Ks="Hidden Text",xl=(function(){function A(e){this._data={},this._document=e}return A.prototype.parseMetrics=function(e,r){var t=this._document.createElement("div"),n=this._document.createElement("img"),s=this._document.createElement("span"),i=this._document.body;t.style.visibility="hidden",t.style.fontFamily=e,t.style.fontSize=r,t.style.margin="0",t.style.padding="0",t.style.whiteSpace="nowrap",i.appendChild(t),n.src=bl,n.width=1,n.height=1,n.style.margin="0",n.style.padding="0",n.style.verticalAlign="baseline",s.style.fontFamily=e,s.style.fontSize=r,s.style.margin="0",s.style.padding="0",s.appendChild(this._document.createTextNode(Ks)),t.appendChild(s),t.appendChild(n);var a=n.offsetTop-s.offsetTop+2;t.removeChild(s),t.appendChild(this._document.createTextNode(Ks)),t.style.lineHeight="normal",n.style.verticalAlign="super";var o=n.offsetTop-t.offsetTop+2;return i.removeChild(t),{baseline:a,middle:o}},A.prototype.getMetrics=function(e,r){var t=e+" "+r;return typeof this._data[t]>"u"&&(this._data[t]=this.parseMetrics(e,r)),this._data[t]},A})(),Mi=(function(){function A(e,r){this.context=e,this.options=r}return A})(),Ll=1e4,Tl=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n._activeEffects=[],n.canvas=t.canvas?t.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),t.canvas||(n.canvas.width=Math.floor(t.width*t.scale),n.canvas.height=Math.floor(t.height*t.scale),n.canvas.style.width=t.width+"px",n.canvas.style.height=t.height+"px"),n.fontMetrics=new xl(document),n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-t.x,-t.y),n.ctx.textBaseline="bottom",n._activeEffects=[],n.context.logger.debug("Canvas renderer initialized ("+t.width+"x"+t.height+") with scale "+t.scale),n}return e.prototype.applyEffects=function(r){for(var t=this;this._activeEffects.length;)this.popEffect();r.forEach(function(n){return t.applyEffect(n)})},e.prototype.applyEffect=function(r){this.ctx.save(),Ul(r)&&(this.ctx.globalAlpha=r.opacity),dl(r)&&(this.ctx.translate(r.offsetX,r.offsetY),this.ctx.transform(r.matrix[0],r.matrix[1],r.matrix[2],r.matrix[3],r.matrix[4],r.matrix[5]),this.ctx.translate(-r.offsetX,-r.offsetY)),Li(r)&&(this.path(r.path),this.ctx.clip()),this._activeEffects.push(r)},e.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},e.prototype.renderStack=function(r){return cA(this,void 0,void 0,function(){var t;return aA(this,function(n){switch(n.label){case 0:return t=r.element.container.styles,t.isVisible()?[4,this.renderStackContent(r)]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},e.prototype.renderNode=function(r){return cA(this,void 0,void 0,function(){return aA(this,function(t){switch(t.label){case 0:if(eA(r.container.flags,16))debugger;return r.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(r)]:[3,3];case 1:return t.sent(),[4,this.renderNodeContent(r)];case 2:t.sent(),t.label=3;case 3:return[2]}})})},e.prototype.renderTextWithLetterSpacing=function(r,t,n){var s=this;if(t===0)this.ctx.fillText(r.text,r.bounds.left,r.bounds.top+n);else{var i=rn(r.text);i.reduce(function(a,o){return s.ctx.fillText(o,a,r.bounds.top+n),a+s.ctx.measureText(o).width},r.bounds.left)}},e.prototype.createFontStyle=function(r){var t=r.fontVariant.filter(function(i){return i==="normal"||i==="small-caps"}).join(""),n=Rl(r.fontFamily).join(", "),s=$e(r.fontSize)?""+r.fontSize.number+r.fontSize.unit:r.fontSize.number+"px";return[[r.fontStyle,t,r.fontWeight,s,n].join(" "),n,s]},e.prototype.renderTextNode=function(r,t){return cA(this,void 0,void 0,function(){var n,s,i,a,o,B,u,l,f=this;return aA(this,function(d){return n=this.createFontStyle(t),s=n[0],i=n[1],a=n[2],this.ctx.font=s,this.ctx.direction=t.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",o=this.fontMetrics.getMetrics(i,a),B=o.baseline,u=o.middle,l=t.paintOrder,r.textBounds.forEach(function(g){l.forEach(function(Q){switch(Q){case 0:f.ctx.fillStyle=rA(t.color),f.renderTextWithLetterSpacing(g,t.letterSpacing,B);var L=t.textShadow;L.length&&g.text.trim().length&&(L.slice(0).reverse().forEach(function(h){f.ctx.shadowColor=rA(h.color),f.ctx.shadowOffsetX=h.offsetX.number*f.options.scale,f.ctx.shadowOffsetY=h.offsetY.number*f.options.scale,f.ctx.shadowBlur=h.blur.number,f.renderTextWithLetterSpacing(g,t.letterSpacing,B)}),f.ctx.shadowColor="",f.ctx.shadowOffsetX=0,f.ctx.shadowOffsetY=0,f.ctx.shadowBlur=0),t.textDecorationLine.length&&(f.ctx.fillStyle=rA(t.textDecorationColor||t.color),t.textDecorationLine.forEach(function(h){switch(h){case 1:f.ctx.fillRect(g.bounds.left,Math.round(g.bounds.top+B),g.bounds.width,1);break;case 2:f.ctx.fillRect(g.bounds.left,Math.round(g.bounds.top),g.bounds.width,1);break;case 3:f.ctx.fillRect(g.bounds.left,Math.ceil(g.bounds.top+u),g.bounds.width,1);break}}));break;case 1:t.webkitTextStrokeWidth&&g.text.trim().length&&(f.ctx.strokeStyle=rA(t.webkitTextStrokeColor),f.ctx.lineWidth=t.webkitTextStrokeWidth,f.ctx.lineJoin=window.chrome?"miter":"round",f.ctx.strokeText(g.text,g.bounds.left,g.bounds.top+B)),f.ctx.strokeStyle="",f.ctx.lineWidth=0,f.ctx.lineJoin="miter";break}})}),[2]})})},e.prototype.renderReplacedElement=function(r,t,n){if(n&&r.intrinsicWidth>0&&r.intrinsicHeight>0){var s=Mt(r),i=Dt(t);this.path(i),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,r.intrinsicWidth,r.intrinsicHeight,s.left,s.top,s.width,s.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(r){return cA(this,void 0,void 0,function(){var t,n,s,i,a,o,p,p,B,u,l,f,I,d,g,b,Q,L,h,p,T,I,b;return aA(this,function(U){switch(U.label){case 0:this.applyEffects(r.getEffects(4)),t=r.container,n=r.curves,s=t.styles,i=0,a=t.textNodes,U.label=1;case 1:return i<a.length?(o=a[i],[4,this.renderTextNode(o,s)]):[3,4];case 2:U.sent(),U.label=3;case 3:return i++,[3,1];case 4:if(!(t instanceof gi))return[3,8];U.label=5;case 5:return U.trys.push([5,7,,8]),[4,this.context.cache.match(t.src)];case 6:return p=U.sent(),this.renderReplacedElement(t,n,p),[3,8];case 7:return U.sent(),this.context.logger.error("Error loading image "+t.src),[3,8];case 8:if(t instanceof wi&&this.renderReplacedElement(t,n,t.canvas),!(t instanceof Qi))return[3,12];U.label=9;case 9:return U.trys.push([9,11,,12]),[4,this.context.cache.match(t.svg)];case 10:return p=U.sent(),this.renderReplacedElement(t,n,p),[3,12];case 11:return U.sent(),this.context.logger.error("Error loading svg "+t.svg.substring(0,255)),[3,12];case 12:return t instanceof Fi&&t.tree?(B=new e(this.context,{scale:this.options.scale,backgroundColor:t.backgroundColor,x:0,y:0,width:t.width,height:t.height}),[4,B.render(t.tree)]):[3,14];case 13:u=U.sent(),t.width&&t.height&&this.ctx.drawImage(u,0,0,t.width,t.height,t.bounds.left,t.bounds.top,t.bounds.width,t.bounds.height),U.label=14;case 14:if(t instanceof nn&&(l=Math.min(t.bounds.width,t.bounds.height),t.type===xt?t.checked&&(this.ctx.save(),this.path([new m(t.bounds.left+l*.39363,t.bounds.top+l*.79),new m(t.bounds.left+l*.16,t.bounds.top+l*.5549),new m(t.bounds.left+l*.27347,t.bounds.top+l*.44071),new m(t.bounds.left+l*.39694,t.bounds.top+l*.5649),new m(t.bounds.left+l*.72983,t.bounds.top+l*.23),new m(t.bounds.left+l*.84,t.bounds.top+l*.34085),new m(t.bounds.left+l*.39363,t.bounds.top+l*.79)]),this.ctx.fillStyle=rA(Fs),this.ctx.fill(),this.ctx.restore()):t.type===Lt&&t.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(t.bounds.left+l/2,t.bounds.top+l/2,l/4,0,Math.PI*2,!0),this.ctx.fillStyle=rA(Fs),this.ctx.fill(),this.ctx.restore())),Kl(t)&&t.value.length){switch(f=this.createFontStyle(s),I=f[0],d=f[1],g=this.fontMetrics.getMetrics(I,d).baseline,this.ctx.font=I,this.ctx.fillStyle=rA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Dl(t.styles.textAlign),b=Mt(t),Q=0,t.styles.textAlign){case 1:Q+=b.width/2;break;case 2:Q+=b.width;break}L=b.add(Q,0,0,-b.height/2+1),this.ctx.save(),this.path([new m(b.left,b.top),new m(b.left+b.width,b.top),new m(b.left+b.width,b.top+b.height),new m(b.left,b.top+b.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Je(t.value,L),s.letterSpacing,g),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!eA(t.styles.display,2048))return[3,20];if(t.styles.listStyleImage===null)return[3,19];if(h=t.styles.listStyleImage,h.type!==0)return[3,18];p=void 0,T=h.url,U.label=15;case 15:return U.trys.push([15,17,,18]),[4,this.context.cache.match(T)];case 16:return p=U.sent(),this.ctx.drawImage(p,t.bounds.left-(p.width+10),t.bounds.top),[3,18];case 17:return U.sent(),this.context.logger.error("Error loading list-style-image "+T),[3,18];case 18:return[3,20];case 19:r.listValue&&t.styles.listStyleType!==-1&&(I=this.createFontStyle(s)[0],this.ctx.font=I,this.ctx.fillStyle=rA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",b=new VA(t.bounds.left,t.bounds.top+k(t.styles.paddingTop,t.bounds.width),t.bounds.width,rs(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Je(r.listValue,b),s.letterSpacing,rs(s.lineHeight,s.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),U.label=20;case 20:return[2]}})})},e.prototype.renderStackContent=function(r){return cA(this,void 0,void 0,function(){var t,n,h,s,i,h,a,o,h,B,u,h,l,f,h,d,g,h,Q,L,h;return aA(this,function(p){switch(p.label){case 0:if(eA(r.element.container.flags,16))debugger;return[4,this.renderNodeBackgroundAndBorders(r.element)];case 1:p.sent(),t=0,n=r.negativeZIndex,p.label=2;case 2:return t<n.length?(h=n[t],[4,this.renderStack(h)]):[3,5];case 3:p.sent(),p.label=4;case 4:return t++,[3,2];case 5:return[4,this.renderNodeContent(r.element)];case 6:p.sent(),s=0,i=r.nonInlineLevel,p.label=7;case 7:return s<i.length?(h=i[s],[4,this.renderNode(h)]):[3,10];case 8:p.sent(),p.label=9;case 9:return s++,[3,7];case 10:a=0,o=r.nonPositionedFloats,p.label=11;case 11:return a<o.length?(h=o[a],[4,this.renderStack(h)]):[3,14];case 12:p.sent(),p.label=13;case 13:return a++,[3,11];case 14:B=0,u=r.nonPositionedInlineLevel,p.label=15;case 15:return B<u.length?(h=u[B],[4,this.renderStack(h)]):[3,18];case 16:p.sent(),p.label=17;case 17:return B++,[3,15];case 18:l=0,f=r.inlineLevel,p.label=19;case 19:return l<f.length?(h=f[l],[4,this.renderNode(h)]):[3,22];case 20:p.sent(),p.label=21;case 21:return l++,[3,19];case 22:d=0,g=r.zeroOrAutoZIndexOrTransformedOrOpacity,p.label=23;case 23:return d<g.length?(h=g[d],[4,this.renderStack(h)]):[3,26];case 24:p.sent(),p.label=25;case 25:return d++,[3,23];case 26:Q=0,L=r.positiveZIndex,p.label=27;case 27:return Q<L.length?(h=L[Q],[4,this.renderStack(h)]):[3,30];case 28:p.sent(),p.label=29;case 29:return Q++,[3,27];case 30:return[2]}})})},e.prototype.mask=function(r){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(r.slice(0).reverse()),this.ctx.closePath()},e.prototype.path=function(r){this.ctx.beginPath(),this.formatPath(r),this.ctx.closePath()},e.prototype.formatPath=function(r){var t=this;r.forEach(function(n,s){var i=hA(n)?n.start:n;s===0?t.ctx.moveTo(i.x,i.y):t.ctx.lineTo(i.x,i.y),hA(n)&&t.ctx.bezierCurveTo(n.startControl.x,n.startControl.y,n.endControl.x,n.endControl.y,n.end.x,n.end.y)})},e.prototype.renderRepeat=function(r,t,n,s){this.path(r),this.ctx.fillStyle=t,this.ctx.translate(n,s),this.ctx.fill(),this.ctx.translate(-n,-s)},e.prototype.resizeImage=function(r,t,n){var s;if(r.width===t&&r.height===n)return r;var i=(s=this.canvas.ownerDocument)!==null&&s!==void 0?s:document,a=i.createElement("canvas");a.width=Math.max(1,t),a.height=Math.max(1,n);var o=a.getContext("2d");return o.drawImage(r,0,0,r.width,r.height,0,0,t,n),a},e.prototype.renderBackgroundImage=function(r){return cA(this,void 0,void 0,function(){var t,n,s,i,a,o;return aA(this,function(B){switch(B.label){case 0:t=r.styles.backgroundImage.length-1,n=function(u){var l,f,d,X,Y,P,O,J,D,g,X,Y,P,O,J,Q,L,h,p,T,I,b,U,x,D,K,X,z,nA,O,J,bA,Y,P,vA,uA,CA,DA,MA,lA,EA,dA;return aA(this,function(RA){switch(RA.label){case 0:if(u.type!==0)return[3,5];l=void 0,f=u.url,RA.label=1;case 1:return RA.trys.push([1,3,,4]),[4,s.context.cache.match(f)];case 2:return l=RA.sent(),[3,4];case 3:return RA.sent(),s.context.logger.error("Error loading background-image "+f),[3,4];case 4:return l&&(d=br(r,t,[l.width,l.height,l.width/l.height]),X=d[0],Y=d[1],P=d[2],O=d[3],J=d[4],D=s.ctx.createPattern(s.resizeImage(l,O,J),"repeat"),s.renderRepeat(X,D,Y,P)),[3,6];case 5:dB(u)?(g=br(r,t,[null,null,null]),X=g[0],Y=g[1],P=g[2],O=g[3],J=g[4],Q=fB(u.angle,O,J),L=Q[0],h=Q[1],p=Q[2],T=Q[3],I=Q[4],b=document.createElement("canvas"),b.width=O,b.height=J,U=b.getContext("2d"),x=U.createLinearGradient(h,T,p,I),es(u.stops,L).forEach(function($A){return x.addColorStop($A.stop,rA($A.color))}),U.fillStyle=x,U.fillRect(0,0,O,J),O>0&&J>0&&(D=s.ctx.createPattern(b,"repeat"),s.renderRepeat(X,D,Y,P))):UB(u)&&(K=br(r,t,[null,null,null]),X=K[0],z=K[1],nA=K[2],O=K[3],J=K[4],bA=u.position.length===0?[An]:u.position,Y=k(bA[0],O),P=k(bA[bA.length-1],J),vA=gB(u,Y,P,O,J),uA=vA[0],CA=vA[1],uA>0&&CA>0&&(DA=s.ctx.createRadialGradient(z+Y,nA+P,0,z+Y,nA+P,uA),es(u.stops,uA*2).forEach(function($A){return DA.addColorStop($A.stop,rA($A.color))}),s.path(X),s.ctx.fillStyle=DA,uA!==CA?(MA=r.bounds.left+.5*r.bounds.width,lA=r.bounds.top+.5*r.bounds.height,EA=CA/uA,dA=1/EA,s.ctx.save(),s.ctx.translate(MA,lA),s.ctx.transform(1,0,0,EA,0,0),s.ctx.translate(-MA,-lA),s.ctx.fillRect(z,dA*(nA-lA)+lA,O,J*dA),s.ctx.restore()):s.ctx.fill())),RA.label=6;case 6:return t--,[2]}})},s=this,i=0,a=r.styles.backgroundImage.slice(0).reverse(),B.label=1;case 1:return i<a.length?(o=a[i],[5,n(o)]):[3,4];case 2:B.sent(),B.label=3;case 3:return i++,[3,1];case 4:return[2]}})})},e.prototype.renderSolidBorder=function(r,t,n){return cA(this,void 0,void 0,function(){return aA(this,function(s){return this.path(Ts(n,t)),this.ctx.fillStyle=rA(r),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(r,t,n,s){return cA(this,void 0,void 0,function(){var i,a;return aA(this,function(o){switch(o.label){case 0:return t<3?[4,this.renderSolidBorder(r,n,s)]:[3,2];case 1:return o.sent(),[2];case 2:return i=pl(s,n),this.path(i),this.ctx.fillStyle=rA(r),this.ctx.fill(),a=ml(s,n),this.path(a),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(r){return cA(this,void 0,void 0,function(){var t,n,s,i,a,o,B,u,l=this;return aA(this,function(f){switch(f.label){case 0:return this.applyEffects(r.getEffects(2)),t=r.container.styles,n=!qA(t.backgroundColor)||t.backgroundImage.length,s=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],i=Sl(Fe(t.backgroundClip,0),r.curves),n||t.boxShadow.length?(this.ctx.save(),this.path(i),this.ctx.clip(),qA(t.backgroundColor)||(this.ctx.fillStyle=rA(t.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(r.container)]):[3,2];case 1:f.sent(),this.ctx.restore(),t.boxShadow.slice(0).reverse().forEach(function(d){l.ctx.save();var g=St(r.curves),Q=d.inset?0:Ll,L=Fl(g,-Q+(d.inset?1:-1)*d.spread.number,(d.inset?1:-1)*d.spread.number,d.spread.number*(d.inset?-2:2),d.spread.number*(d.inset?-2:2));d.inset?(l.path(g),l.ctx.clip(),l.mask(L)):(l.mask(g),l.ctx.clip(),l.path(L)),l.ctx.shadowOffsetX=d.offsetX.number+Q,l.ctx.shadowOffsetY=d.offsetY.number,l.ctx.shadowColor=rA(d.color),l.ctx.shadowBlur=d.blur.number,l.ctx.fillStyle=d.inset?rA(d.color):"rgba(0,0,0,1)",l.ctx.fill(),l.ctx.restore()}),f.label=2;case 2:a=0,o=0,B=s,f.label=3;case 3:return o<B.length?(u=B[o],u.style!==0&&!qA(u.color)&&u.width>0?u.style!==2?[3,5]:[4,this.renderDashedDottedBorder(u.color,u.width,a,r.curves,2)]:[3,11]):[3,13];case 4:return f.sent(),[3,11];case 5:return u.style!==3?[3,7]:[4,this.renderDashedDottedBorder(u.color,u.width,a,r.curves,3)];case 6:return f.sent(),[3,11];case 7:return u.style!==4?[3,9]:[4,this.renderDoubleBorder(u.color,u.width,a,r.curves)];case 8:return f.sent(),[3,11];case 9:return[4,this.renderSolidBorder(u.color,a,r.curves)];case 10:f.sent(),f.label=11;case 11:a++,f.label=12;case 12:return o++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(r,t,n,s,i){return cA(this,void 0,void 0,function(){var a,o,B,u,l,f,d,g,Q,L,h,p,T,I,b,U,b,U;return aA(this,function(x){return this.ctx.save(),a=vl(s,n),o=Ts(s,n),i===2&&(this.path(o),this.ctx.clip()),hA(o[0])?(B=o[0].start.x,u=o[0].start.y):(B=o[0].x,u=o[0].y),hA(o[1])?(l=o[1].end.x,f=o[1].end.y):(l=o[1].x,f=o[1].y),n===0||n===2?d=Math.abs(B-l):d=Math.abs(u-f),this.ctx.beginPath(),i===3?this.formatPath(a):this.formatPath(o.slice(0,2)),g=t<3?t*3:t*2,Q=t<3?t*2:t,i===3&&(g=t,Q=t),L=!0,d<=g*2?L=!1:d<=g*2+Q?(h=d/(2*g+Q),g*=h,Q*=h):(p=Math.floor((d+Q)/(g+Q)),T=(d-p*g)/(p-1),I=(d-(p+1)*g)/p,Q=I<=0||Math.abs(Q-T)<Math.abs(Q-I)?T:I),L&&(i===3?this.ctx.setLineDash([0,g+Q]):this.ctx.setLineDash([g,Q])),i===3?(this.ctx.lineCap="round",this.ctx.lineWidth=t):this.ctx.lineWidth=t*2+1.1,this.ctx.strokeStyle=rA(r),this.ctx.stroke(),this.ctx.setLineDash([]),i===2&&(hA(o[0])&&(b=o[3],U=o[0],this.ctx.beginPath(),this.formatPath([new m(b.end.x,b.end.y),new m(U.start.x,U.start.y)]),this.ctx.stroke()),hA(o[1])&&(b=o[1],U=o[2],this.ctx.beginPath(),this.formatPath([new m(b.end.x,b.end.y),new m(U.start.x,U.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(r){return cA(this,void 0,void 0,function(){var t;return aA(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=rA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),t=hl(r),[4,this.renderStack(t)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e})(Mi),Kl=function(A){return A instanceof Ui||A instanceof di?!0:A instanceof nn&&A.type!==Lt&&A.type!==xt},Sl=function(A,e){switch(A){case 0:return St(e);case 2:return wl(e);default:return Dt(e)}},Dl=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},Ml=["-apple-system","system-ui"],Rl=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Ml.indexOf(e)===-1}):A},_l=(function(A){yA(e,A);function e(r,t){var n=A.call(this,r,t)||this;return n.canvas=t.canvas?t.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),n.options=t,n.canvas.width=Math.floor(t.width*t.scale),n.canvas.height=Math.floor(t.height*t.scale),n.canvas.style.width=t.width+"px",n.canvas.style.height=t.height+"px",n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-t.x,-t.y),n.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+t.width+"x"+t.height+" at "+t.x+","+t.y+") with scale "+t.scale),n}return e.prototype.render=function(r){return cA(this,void 0,void 0,function(){var t,n;return aA(this,function(s){switch(s.label){case 0:return t=Wr(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,r),[4,Ol(t)];case 1:return n=s.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=rA(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},e})(Mi),Ol=function(A){return new Promise(function(e,r){var t=new Image;t.onload=function(){e(t)},t.onerror=r,t.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},Gl=(function(){function A(e){var r=e.id,t=e.enabled;this.id=r,this.enabled=t,this.start=Date.now()}return A.prototype.debug=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];this.enabled&&(typeof window<"u"&&window.console&&typeof console.debug=="function"?console.debug.apply(console,st([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.getTime=function(){return Date.now()-this.start},A.prototype.info=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];this.enabled&&typeof window<"u"&&window.console&&typeof console.info=="function"&&console.info.apply(console,st([this.id,this.getTime()+"ms"],e))},A.prototype.warn=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];this.enabled&&(typeof window<"u"&&window.console&&typeof console.warn=="function"?console.warn.apply(console,st([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.error=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];this.enabled&&(typeof window<"u"&&window.console&&typeof console.error=="function"?console.error.apply(console,st([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.instances={},A})(),Nl=(function(){function A(e,r){var t;this.windowBounds=r,this.instanceName="#"+A.instanceCount++,this.logger=new Gl({id:this.instanceName,enabled:e.logging}),this.cache=(t=e.cache)!==null&&t!==void 0?t:new al(this,e)}return A.instanceCount=1,A})(),Vl=function(A,e){return e===void 0&&(e={}),Pl(A,e)};typeof window<"u"&&xi.setContext(window);var Pl=function(A,e){return cA(void 0,void 0,void 0,function(){var r,t,n,s,i,a,o,B,u,l,f,d,g,Q,L,h,p,T,I,b,x,U,x,D,K,X,z,nA,O,J,bA,Y,P,vA,uA,CA,DA,MA,lA,EA;return aA(this,function(dA){switch(dA.label){case 0:if(!A||typeof A!="object")return[2,Promise.reject("Invalid element provided as first argument")];if(r=A.ownerDocument,!r)throw new Error("Element is not attached to a Document");if(t=r.defaultView,!t)throw new Error("Document is not attached to a Window");return n={allowTaint:(D=e.allowTaint)!==null&&D!==void 0?D:!1,imageTimeout:(K=e.imageTimeout)!==null&&K!==void 0?K:15e3,proxy:e.proxy,useCORS:(X=e.useCORS)!==null&&X!==void 0?X:!1},s=Lr({logging:(z=e.logging)!==null&&z!==void 0?z:!0,cache:e.cache},n),i={windowWidth:(nA=e.windowWidth)!==null&&nA!==void 0?nA:t.innerWidth,windowHeight:(O=e.windowHeight)!==null&&O!==void 0?O:t.innerHeight,scrollX:(J=e.scrollX)!==null&&J!==void 0?J:t.pageXOffset,scrollY:(bA=e.scrollY)!==null&&bA!==void 0?bA:t.pageYOffset},a=new VA(i.scrollX,i.scrollY,i.windowWidth,i.windowHeight),o=new Nl(s,a),B=(Y=e.foreignObjectRendering)!==null&&Y!==void 0?Y:!1,u={allowTaint:(P=e.allowTaint)!==null&&P!==void 0?P:!1,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:B,copyStyles:B},o.logger.debug("Starting document clone with size "+a.width+"x"+a.height+" scrolled to "+-a.left+","+-a.top),l=new bs(o,A,u),f=l.clonedReferenceElement,f?[4,l.toIFrame(r,a)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return d=dA.sent(),g=sn(f)||ku(f)?Ua(f.ownerDocument):Rt(o,f),Q=g.width,L=g.height,h=g.left,p=g.top,T=kl(o,f,e.backgroundColor),I={canvas:e.canvas,backgroundColor:T,scale:(uA=(vA=e.scale)!==null&&vA!==void 0?vA:t.devicePixelRatio)!==null&&uA!==void 0?uA:1,x:((CA=e.x)!==null&&CA!==void 0?CA:0)+h,y:((DA=e.y)!==null&&DA!==void 0?DA:0)+p,width:(MA=e.width)!==null&&MA!==void 0?MA:Math.ceil(Q),height:(lA=e.height)!==null&&lA!==void 0?lA:Math.ceil(L)},B?(o.logger.debug("Document cloned, using foreign object rendering"),x=new _l(o,I),[4,x.render(f)]):[3,3];case 2:return b=dA.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+h+","+p+" with size "+Q+"x"+L+" using computed rendering"),o.logger.debug("Starting DOM parsing"),U=pi(o,f),T===U.styles.backgroundColor&&(U.styles.backgroundColor=NA.TRANSPARENT),o.logger.debug("Starting renderer for element at "+I.x+","+I.y+" with size "+I.width+"x"+I.height),x=new Tl(o,I),[4,x.render(U)];case 4:b=dA.sent(),dA.label=5;case 5:return(!((EA=e.removeContainer)!==null&&EA!==void 0)||EA)&&(bs.destroy(d)||o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),o.logger.debug("Finished rendering"),[2,b]}})})},kl=function(A,e,r){var t=e.ownerDocument,n=t.documentElement?Xe(A,getComputedStyle(t.documentElement).backgroundColor):NA.TRANSPARENT,s=t.body?Xe(A,getComputedStyle(t.body).backgroundColor):NA.TRANSPARENT,i=typeof r=="string"?Xe(A,r):r===null?NA.TRANSPARENT:4294967295;return e===t.documentElement?qA(n)?qA(s)?i:s:n:i},Ri=Vl;var _i=!1,Xl=new Set(["AREA","BASE","BR","COL","EMBED","HR","IMG","INPUT","LINK","META","PARAM","SOURCE","TRACK","WBR"]);function Wl(){if(_i)return;_i=!0;let A=CanvasRenderingContext2D.prototype.createPattern;CanvasRenderingContext2D.prototype.createPattern=function(e,r){return e&&"width"in e&&"height"in e&&(e.width===0||e.height===0)?null:A.call(this,e,r)}}function Gi(){Wl()}function Jl(A,e){if(!A.id)return;let r=e.getElementById(A.id);r instanceof HTMLElement&&(r.style.opacity="1",r.style.visibility="visible",r.querySelectorAll("[data-start]").forEach(t=>{t.style.visibility="visible"}))}function Yl(A){let e=A.ownerDocument.defaultView;e&&[A,...Array.from(A.querySelectorAll("*"))].forEach(r=>{if(Xl.has(r.tagName))return;let t=e.getComputedStyle(r);if(t.boxShadow==="none"||t.transform==="none")return;let n=A.ownerDocument.createElement("div");n.setAttribute("data-hyper-shader-shadow-shim",""),n.style.cssText=["position:absolute","inset:0","border-radius:inherit",`box-shadow:${t.boxShadow}`,"background:transparent","pointer-events:none","z-index:0"].join(";"),t.position==="static"&&(r.style.position="relative"),r.style.boxShadow="none",r.insertBefore(n,r.firstChild)})}function an(){if(typeof document>"u")return!1;let A=document.createElement("canvas");if(A.setAttribute("layoutsubtree",""),!("layoutSubtree"in A))return!1;let e=A.getContext("2d");return e!=null&&typeof e.drawElementImage=="function"}async function Zl(A,e,r,t){let n=document.createElement("canvas");n.width=r,n.height=t,n.setAttribute("layoutsubtree",""),n.style.cssText=`position:fixed;top:0;left:0;width:${r}px;height:${t}px;z-index:-9999;pointer-events:none;opacity:0`,n.appendChild(A.cloneNode(!0)),document.body.appendChild(n);try{await new Promise(o=>requestAnimationFrame(()=>requestAnimationFrame(()=>o())));let s=n.getContext("2d");s.fillStyle=e,s.fillRect(0,0,r,t);let i=n.firstElementChild;i&&s.drawElementImage(i,0,0,r,t);let a=document.createElement("canvas");return a.width=r,a.height=t,a.getContext("2d").drawImage(n,0,0),n.remove(),a}catch(s){throw n.remove(),s}}function Ni(A,e,r=ue,t=le,n={}){return an()&&!n.preferBrowserPaint?Zl(A,e,r,t).catch(()=>Oi(A,e,r,t,n)):Oi(A,e,r,t,n)}function Oi(A,e,r,t,n={}){let s=i=>Ri(A,{width:r,height:t,scale:n.scale??1,backgroundColor:e,logging:!1,foreignObjectRendering:i,useCORS:!0,allowTaint:!0,onclone:a=>{if(!A.id)return;let o=a.getElementById(A.id);o instanceof HTMLElement&&Yl(o),n.forceVisible&&Jl(A,a)},ignoreElements:a=>a.tagName==="CANVAS"||a.hasAttribute("data-no-capture")});return n.preferBrowserPaint===!0?s(!0).catch(()=>s(!1)):s(!1)}var Bn=.7,Vi="power2.inOut",jl="attribute vec2 a_pos; varying vec2 v_uv; void main(){v_uv=a_pos*0.5+0.5; gl_Position=vec4(a_pos,0,1);}",Jt=["Preparing scene transitions","Sampling outgoing scene motion","Sampling incoming scene motion","Caching transition frames","Finalizing transition preview"],ql="hyper-shader-preview-cache",SA="frames",zl=1,$l="v1",Pi=2,ki=1.25,Af=1200;function ef(A){let e=A.replace("#","");if(e.length<6)return[.5,.5,.5];let r=parseInt(e.slice(0,2),16)/255,t=parseInt(e.slice(2,4),16)/255,n=parseInt(e.slice(4,6),16)/255;return Number.isNaN(r)||Number.isNaN(t)||Number.isNaN(n)?[.5,.5,.5]:[r,t,n]}function tf(A){let[e,r,t]=ef(A);return{accent:[e,r,t],dark:[e*.35,r*.35,t*.35],bright:[Math.min(1,e*1.5+.2),Math.min(1,r*1.5+.2),Math.min(1,t*1.5+.2)]}}function ae(A,e,r){return Math.min(r,Math.max(e,A))}function rf(A,e){return A===void 0?e:Number.isFinite(A)&&A>0?A:e}var nf="__hf_shader_capture_scale",sf="__hf_shader_loading";function zi(A,e){let r=window[A];if(typeof r=="string")return r;if(typeof r=="number"&&Number.isFinite(r))return String(r);try{return new URLSearchParams(window.location.search).get(e)}catch{return null}}function af(){let A=zi("__HF_SHADER_CAPTURE_SCALE",nf),e=A===null?NaN:Number(A);return ae(Number.isFinite(e)&&e>0?e:1,.25,1)}function of(){let A=zi("__HF_SHADER_LOADING",sf)?.trim().toLowerCase();return A==="player"||A==="true"||A==="1"?"player":A==="none"||A==="false"||A==="0"||A==="off"?"none":"internal"}function jt(A){let e=2166136261;for(let r=0;r<A.length;r+=1)e^=A.charCodeAt(r),e=Math.imul(e,16777619);return(e>>>0).toString(16).padStart(8,"0")}function Bf(A){let e=Array.from(A.querySelectorAll("style")).map(t=>t.textContent||"").join(`
|
|
7
|
-
`),
|
|
8
|
-
`);return
|
|
9
|
-
${
|
|
10
|
-
`),
|
|
11
|
-
${
|
|
12
|
-
`);return
|
|
13
|
-
${
|
|
14
|
-
${
|
|
15
|
-
${uf(e)}`):"missing"}function Wi(A,e){for(let r of e)A.style.removeProperty(r);A.getAttribute("style")?.trim()===""&&A.removeAttribute("style")}function uf(A){let e=A.cloneNode(!0);return Wi(e,["opacity","visibility","pointer-events"]),e.querySelectorAll("[data-start]").forEach(r=>{Wi(r,["visibility"])}),e.outerHTML}function Yt(A,e,r){return`${A}:sample:${e}:${r}`}function lf(){return typeof indexedDB>"u"?Promise.resolve(null):new Promise(A=>{let e=indexedDB.open(ql,zl);e.onupgradeneeded=()=>{let r=e.result;r.objectStoreNames.contains(SA)||r.createObjectStore(SA,{keyPath:"key"})},e.onerror=()=>A(null),e.onblocked=()=>A(null),e.onsuccess=()=>{let r=e.result;r.onversionchange=()=>{r.close(),At=null},A(r)}})}var At=null;function Zt(A){try{A?.close()}catch{}At=null}function un(){return At=At||lf(),At}async function on(A){let e=await un();return e?new Promise(r=>{try{let n=e.transaction(SA,"readonly").objectStore(SA).get(A);n.onerror=()=>r(null),n.onsuccess=()=>{let s=n.result;s&&typeof s=="object"&&"blob"in s&&s.blob instanceof Blob?r(s):r(null)}}catch{Zt(e),r(null)}}):null}async function ff(A){let e=await un();return e?new Promise(r=>{try{let t=e.transaction(SA,"readwrite");t.oncomplete=()=>r(!0),t.onerror=()=>r(!1),t.objectStore(SA).put(A)}catch{Zt(e),r(!1)}}):!1}function Ji(A){return new Promise(e=>{try{A.toBlob(r=>e(r),"image/png")}catch{e(null)}})}async function gf(A,e,r=Af){let t=await un();if(!t)return;let n=await new Promise(Q=>{try{let h=t.transaction(SA,"readonly").objectStore(SA).getAll();h.onerror=()=>Q([]),h.onsuccess=()=>{let p=[];for(let T of h.result)if(T&&typeof T=="object"&&"key"in T&&typeof T.key=="string"){let I="updatedAt"in T&&typeof T.updatedAt=="number"?T.updatedAt:0;p.push({key:T.key,updatedAt:I})}Q(p)}}catch{Zt(t),Q([])}}),s=`${A}:`,i=Q=>{for(let L of e)if(Q.startsWith(`${L}:sample:`))return!0;return!1},a=n.filter(Q=>Q.key.startsWith(s)&&!i(Q.key)).map(Q=>Q.key),o=new Set(a),B=n.filter(Q=>!o.has(Q.key)),u=B.filter(Q=>i(Q.key)).length,l=B.filter(Q=>!i(Q.key)).sort((Q,L)=>L.updatedAt-Q.updatedAt),f=Math.max(0,r-u),d=l.length>f?l.slice(f).map(Q=>Q.key):[],g=Array.from(new Set([...a,...d]));g.length!==0&&await new Promise(Q=>{try{let L=t.transaction(SA,"readwrite");L.oncomplete=()=>Q(),L.onerror=()=>Q();let h=L.objectStore(SA);for(let p of g)h.delete(p)}catch{Zt(t),Q()}})}function Yi(A){return typeof createImageBitmap=="function"?createImageBitmap(A):new Promise((e,r)=>{let t=URL.createObjectURL(A),n=new Image;n.onload=()=>{URL.revokeObjectURL(t),e(n)},n.onerror=()=>{URL.revokeObjectURL(t),r(new Error("[HyperShader] Failed to decode cached snapshot"))},n.src=t})}function Zi(A){typeof ImageBitmap<"u"&&A instanceof ImageBitmap&&A.close()}function ji(A,e,r){let t=nt(A);return A.bindTexture(A.TEXTURE_2D,t),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,e,r,0,A.RGBA,A.UNSIGNED_BYTE,null),t}function qi(A,e){let r=A.createFramebuffer();if(!r)throw new Error("[HyperShader] Failed to create framebuffer");return A.bindFramebuffer(A.FRAMEBUFFER,r),A.framebufferTexture2D(A.FRAMEBUFFER,A.COLOR_ATTACHMENT0,A.TEXTURE_2D,e,0),A.bindFramebuffer(A.FRAMEBUFFER,null),r}function wf(A,e,r){let t=A?.ownerDocument||document,n=A||t.body;if(!n)return null;n.querySelector("[data-hyper-shader-loading]")?.remove();let s=t.createElement("div");s.setAttribute("data-hyper-shader-loading",""),s.setAttribute("data-hyperframes-ignore",""),s.setAttribute("data-hyperframes-picker-block",""),s.setAttribute("data-hf-ignore",""),s.setAttribute("data-no-capture",""),s.setAttribute("data-no-inspect",""),s.setAttribute("data-no-pick",""),s.setAttribute("draggable","false"),s.setAttribute("role","status"),s.setAttribute("aria-label","Preparing scene transitions"),s.style.cssText=["position:absolute","inset:0",`width:${e}px`,`height:${r}px`,"z-index:2147483647","display:none","place-items:center","opacity:1","transition:opacity 240ms ease-out","background:#030504","pointer-events:auto","color:#f4f7fb","cursor:default","touch-action:none","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";");let i=I=>{I.preventDefault(),I.stopPropagation()};for(let I of["selectstart","dragstart","pointerdown","mousedown","touchstart"])s.addEventListener(I,i,{capture:!0});let a=t.createElement("div");a.setAttribute("draggable","false"),a.style.cssText=["display:grid","grid-template-rows:172px 72px 44px 44px 54px","justify-items:center","align-items:center","gap:0","width:min(1040px,82%)","padding:42px","box-sizing:border-box","text-align:center","font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";");let o=t.createElement("div");o.setAttribute("data-hf-loader-mark-frame",""),o.style.cssText=["width:172px","height:172px","display:grid","place-items:center","overflow:visible","transform-origin:50% 50%","will-change:transform,opacity","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";"),o.innerHTML=['<svg width="156" height="156" viewBox="0 0 100 100" fill="none" aria-hidden="true" draggable="false" style="display:block;overflow:visible;filter:drop-shadow(0 0 7px rgba(79,219,94,.2));user-select:none;-webkit-user-select:none">','<g data-hf-loader-mark transform="translate(50 50)">','<g data-hf-loader-core transform="scale(1)" opacity=".92">','<g transform="translate(-50 -50)">','<path data-hf-loader-left d="M10.1851 57.8021L33.1145 73.8313C36.2202 75.9978 41.5173 73.5433 42.4816 69.4984L51.7611 30.4271C52.7253 26.3822 48.5802 23.9277 44.4602 26.0942L13.917 42.1235C6.96677 45.7676 4.97564 54.1579 10.1851 57.8021Z" fill="url(#hyper-shader-loader-grad-left)"/>','<path data-hf-loader-right d="M87.5129 57.5141L56.9696 73.5433C52.8371 75.7098 48.7046 73.2553 49.6688 69.2104L58.9483 30.1391C59.9125 26.0942 65.2097 23.6397 68.3154 25.8062L91.2447 41.8354C96.4668 45.4796 94.4631 53.8699 87.5129 57.5141Z" fill="url(#hyper-shader-loader-grad-right)"/>',"</g>","</g>","</g>","<defs>",'<linearGradient id="hyper-shader-loader-grad-left" x1="48.5676" y1="25" x2="44.7804" y2="71.9384" gradientUnits="userSpaceOnUse">','<stop stop-color="#06E3FA"/>','<stop offset="1" stop-color="#4FDB5E"/>',"</linearGradient>",'<linearGradient id="hyper-shader-loader-grad-right" x1="54.8282" y1="73.8392" x2="72.0989" y2="32.8932" gradientUnits="userSpaceOnUse">','<stop stop-color="#06E3FA"/>','<stop offset="1" stop-color="#4FDB5E"/>',"</linearGradient>","</defs>","</svg>"].join("");let B=o.querySelector("svg");if(!B)return null;B.setAttribute("draggable","false");let u=t.createElement("div");u.style.cssText=["width:100%","height:72px","display:flex","align-items:center","justify-content:center","overflow:hidden","white-space:nowrap","text-overflow:ellipsis","font:600 44px/1.15 Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif","letter-spacing:0","text-align:center","color:#f4f7fb"].join(";");let l=t.createElement("span");l.textContent=Jt[0]??"Preparing scene transitions";let f=t.createElement("div");f.textContent="Sampling animated scene frames so shader transitions stay in motion.",f.style.cssText=["width:min(760px,100%)","height:44px","overflow:hidden","white-space:nowrap","text-overflow:ellipsis","color:rgba(244,247,251,0.64)","font:400 24px/1.5 Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif"].join(";"),u.appendChild(l);let d=t.createElement("div");d.setAttribute("aria-hidden","true"),d.style.cssText=["width:min(520px,100%)","height:10px","overflow:hidden","border-radius:999px","background:rgba(255,255,255,0.1)"].join(";");let g=t.createElement("div");g.style.cssText=["width:100%","height:100%","transform:scaleX(0)","transform-origin:left center","border-radius:inherit","background:linear-gradient(90deg,#06e3fa,#4fdb5e)","transition:transform 160ms ease"].join(";");let Q=t.createElement("div");Q.style.cssText=["width:min(560px,100%)","height:54px","overflow:hidden","display:grid","grid-template-rows:repeat(2,27px)","font:500 18px/27px 'IBM Plex Mono','SF Mono','Fira Code',monospace","font-variant-numeric:tabular-nums","color:rgba(244,247,251,0.48)"].join(";");let L=I=>{let b=t.createElement("div");b.style.cssText=["display:grid","grid-template-columns:minmax(0,1fr) auto","align-items:center","column-gap:28px","width:100%","height:27px","white-space:nowrap"].join(";");let U=t.createElement("span");U.textContent=I,U.style.cssText=["overflow:hidden","text-overflow:ellipsis","text-align:left","min-width:0"].join(";");let x=t.createElement("span");return x.style.cssText=["min-width:76px","text-align:right"].join(";"),b.appendChild(U),b.appendChild(x),Q.appendChild(b),{row:b,label:U,value:x}},h=L("transition"),p=L("transition frame");d.appendChild(g),a.appendChild(o),a.appendChild(u),a.appendChild(f),a.appendChild(d),a.appendChild(Q),s.appendChild(a),n.appendChild(s);let T=null;return{show:()=>{T&&(clearTimeout(T),T=null),s.style.display="grid",s.style.opacity="1",s.style.pointerEvents="auto"},update:I=>{let{progress:b,total:U}=I,x=U>0?ae(b/U,0,1):0,D=Math.min(Jt.length-1,Math.floor(x*Jt.length)),K=Jt[D]??"Preparing scene transitions";l.textContent=K,g.style.transform=`scaleX(${x})`;let X=I.currentTransition!==void 0&&I.transitionTotal!==void 0?`${I.currentTransition}/${I.transitionTotal}`:U>0?`${b}/${U}`:"",z=I.transitionFrame!==void 0&&I.transitionFrames!==void 0?`${I.transitionFrame}/${I.transitionFrames}`:"",nA=I.phase==="cached"?"loading cached transition frames":I.phase==="finalizing"?"finalizing":"rendering transition frames";h.label.textContent=I.currentTransition!==void 0?"transition":"transition frames",h.value.textContent=X,p.label.textContent=nA,p.value.textContent=z,p.row.style.visibility=z?"visible":"hidden",s.setAttribute("aria-valuenow",String(Math.round(x*100)))},hide:()=>{T&&clearTimeout(T),s.style.display!=="none"&&(s.style.opacity="0",s.style.pointerEvents="none",T=setTimeout(()=>{s.style.display="none",s.style.opacity="1",s.style.pointerEvents="auto",T=null},240))}}}function $i(A){let{bgColor:e,scenes:r,transitions:t}=A;if(r.length!==t.length+1)throw new Error(`[HyperShader] init(): expected scenes.length === transitions.length + 1, got scenes=${r.length}, transitions=${t.length}`);if(typeof document<"u"){let c=[],w=[];for(let C of r){let F=document.getElementById(C);F?F.classList.contains("scene")||w.push(C):c.push(C)}if(c.length>0)throw new Error(`[HyperShader] init(): scene ids not found in DOM: ${c.join(", ")}`);if(w.length>0)throw new Error(`[HyperShader] init(): elements found but missing .scene class: ${w.join(", ")}`)}if(typeof window<"u"){let c=window;c.__hf&&(c.__hf.transitions=t.map((w,C)=>({time:w.time,duration:w.duration??Bn,shader:w.shader,ease:w.ease??Vi,fromScene:r[C]??"",toScene:r[C+1]??""})))}let n=A.accentColor?tf(A.accentColor):{accent:[1,.6,.2],dark:[.4,.15,0],bright:[1,.85,.5]},s=document.querySelector("[data-composition-id]"),i=A.compositionId||s?.getAttribute("data-composition-id")||"main",a=Number(s?.getAttribute("data-width")),o=Number(s?.getAttribute("data-height")),B=Number.isFinite(a)&&a>0?a:ue,u=Number.isFinite(o)&&o>0?o:le;if(typeof window<"u"&&!!window.__HF_VIRTUAL_TIME__)return Qf(A,r,t,i,s);let f={active:!1,prog:null,progress:0,transitionIndex:-1},d=document.getElementById("gl-canvas");d||(d=document.createElement("canvas"),d.id="gl-canvas",d.style.cssText="position:absolute;top:0;left:0;z-index:100;pointer-events:none;display:none;",(s||document.body).appendChild(d)),d.width=B,d.height=u,d.style.width=`${B}px`,d.style.height=`${u}px`;let g=In(d,B,u);if(!g){console.warn("[HyperShader] WebGL unavailable \u2014 shader transitions disabled.");let c=A.timeline||gsap.timeline({paused:!0});return cn(i,c,A.timeline),c}let Q=yn(g),L=new Map;for(let c of t)if(!L.has(c.shader))try{L.set(c.shader,xn(g,Sn(c.shader)))}catch(w){console.error(`[HyperShader] Failed to compile "${c.shader}":`,w)}let h=d,p=ae(rf(A.previewCaptureFps,30),1,60),T=af(),I=of(),b=Math.max(1,Math.round(B*T)),U=Math.max(1,Math.round(u*T)),x=[],D=Ln(g,jl,["precision mediump float;","varying vec2 v_uv;","uniform sampler2D u_a;","uniform sampler2D u_b;","uniform float u_mix;","void main(){","gl_FragColor=mix(texture2D(u_a,v_uv),texture2D(u_b,v_uv),u_mix);","}"].join("")),K={a:g.getUniformLocation(D,"u_a"),b:g.getUniformLocation(D,"u_b"),mix:g.getUniformLocation(D,"u_mix"),pos:g.getAttribLocation(D,"a_pos")},X=ji(g,b,U),z=ji(g,b,U),nA=qi(g,X),O=qi(g,z),J=null,bA=()=>I!=="internal"?null:(J=J||wf(s,B,u),J),Y=!1,P=!1,vA=0,uA=0,CA=new WeakMap,DA=()=>{uA=performance.now()+120},MA=c=>{CA.has(c)||CA.set(c,c.style.pointerEvents)},lA=(c,w,C)=>{MA(c),DA(),c.style.opacity=C,c.style.visibility=w?"visible":"hidden",c.style.pointerEvents=w?CA.get(c)??"":"none"},EA=(c,w,C,F)=>{r.forEach(H=>{let y=document.getElementById(H);y&&(H===c?lA(y,!0,C):H===w?lA(y,!0,F):lA(y,!1,"0"))})},dA=c=>{c.width=0,c.height=0},RA=c=>Ni(c,e,B,u,{forceVisible:!0,scale:T}),$A=()=>new Promise(c=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>c())})}),ln=c=>!!(c?.fromTex&&c.toTex),Aa=(c,w)=>{if(c.frames.length===0)return null;let C=ae(w,0,1)*(c.frames.length-1),F=Math.floor(C),H=Math.ceil(C),y=c.frames[F]??c.frames[c.frames.length-1],tA=c.frames[H]??y;return!ln(y)||!ln(tA)?null:{a:y,b:tA,mix:C-F}},fn=(c,w,C,F)=>{g.bindFramebuffer(g.FRAMEBUFFER,c),g.viewport(0,0,b,U),g.useProgram(D),g.activeTexture(g.TEXTURE0),g.bindTexture(g.TEXTURE_2D,w),g.uniform1i(K.a,0),g.activeTexture(g.TEXTURE1),g.bindTexture(g.TEXTURE_2D,C),g.uniform1i(K.b,1),g.uniform1f(K.mix,F),g.bindBuffer(g.ARRAY_BUFFER,Q),g.enableVertexAttribArray(K.pos),g.vertexAttribPointer(K.pos,2,g.FLOAT,!1,0,0),g.drawArrays(g.TRIANGLE_STRIP,0,4),g.bindFramebuffer(g.FRAMEBUFFER,null),g.viewport(0,0,B,u)},gn=c=>{pn(c).then(w=>{if(!w)return;let C=G.time();C>=c.time&&C<c.time+c.duration&&Ae()})},ea=c=>{let w=0;for(let C=0;C<x.length;C+=1){let F=x[C];F&&c>=F.time+F.duration&&(w=C+1)}return ae(w,0,r.length-1)},wn=c=>{let w=ea(c);r.forEach((C,F)=>{let H=document.getElementById(C);if(!H)return;let y=F===w;lA(H,y,y?"1":"0")})},Qn=(c,w)=>{let C=document.getElementById(c.fromId),F=document.getElementById(c.toId);if(!C||!F)return;let H=w*w*(3-2*w);h.style.display="none",EA(c.fromId,c.toId,String(1-H),String(H))},Ae=()=>{if(P)return;let c=G.time(),w=x.find(y=>!y.fallback&&y.ready&&!y.dirty&&!y.textureReady&&c>=y.time-ki&&c<y.time+y.duration);w&&gn(w);let C=x.findIndex(y=>c>=y.time&&c<y.time+y.duration);if(C<0){f.active=!1,f.transitionIndex=-1,h.style.display="none",wn(c);return}let F=x[C];if(!F||F.dirty||!F.ready){h.style.display="none";return}if(F.fallback){f.active=!0,f.transitionIndex=C,f.prog=null,f.progress=ae((c-F.time)/F.duration,0,1),Qn(F,f.progress);return}if(!F.textureReady){gn(F),h.style.display="none";return}f.active=!0,f.transitionIndex=C,f.prog=F.prog,f.progress=ae((c-F.time)/F.duration,0,1),er(F);let H=Aa(F,f.progress);if(!H){h.style.display="none";return}EA(F.fromId,F.toId,"1","1"),fn(nA,H.a.fromTex,H.b.fromTex,H.mix),fn(O,H.a.toTex,H.b.toTex,H.mix),h.style.display="block",Tn(g,Q,f.prog,X,z,f.progress,n,B,u)},G;if(A.timeline){G=A.timeline;let c=Number(s?.getAttribute("data-duration")||"40");G.to({t:0},{t:1,duration:c,ease:"none",onUpdate:Ae},0)}else G=gsap.timeline({paused:!0,onUpdate:Ae});let qt=G.play.bind(G),zt=G.pause.bind(G),et=G.time.bind(G),Cn=typeof G.seek=="function"?G.seek.bind(G):null,_A=()=>{let c=et();return typeof c=="number"&&Number.isFinite(c)?c:0},fA=_A(),tt=c=>{typeof c=="number"&&Number.isFinite(c)&&(fA=c)},rt=(c,w)=>{let C=c[0];return typeof C=="number"&&Number.isFinite(C)?C:w},ta=(c,w)=>{let C=et(c,w);return typeof C=="number"?G:C},xA=c=>{vA+=1;try{return c()}finally{vA-=1,uA=performance.now()+120}},HA=!1,PA=[],ee=!1;G.play=((...c)=>{tt(c[0]);let w=rt(c,fA);if(!Ee()||!na(w))return ee=!1,HA=!0,PA=c,vn(),G;let C=xA(()=>qt(...c));return fA=_A(),C}),G.pause=((...c)=>{if(HA=!1,PA=[],tt(c[0]),P)return ee=!0,G;let w=xA(()=>zt(...c));return fA=_A(),c.length>0&&Ae(),w}),G.time=((...c)=>{if(c.length===0)return P||(fA=_A()),fA;if(tt(c[0]),P)return G;let w=xA(()=>et(...c));return P||(fA=_A()),Ae(),w}),Cn&&(G.seek=((...c)=>{if(tt(c[0]),P)return G;let w=xA(()=>Cn(...c));return P||(fA=_A()),Ae(),w})),Gi(),d.style.display="none";for(let c=0;c<t.length;c++){let w=t[c],C=r[c],F=r[c+1];if(!C||!F)continue;let H=L.get(w.shader);if(!H)continue;let y=w.duration??Bn,tA=w.ease??Vi,R=w.time,E=x.length;x.push({index:E,time:R,duration:y,fromId:C,toId:F,prog:H,frames:[],cacheKey:"",dirty:!0,ready:!1,fallback:!1,persisted:!1,textureReady:!1,texturePromise:null,textureGeneration:0,textureAccess:0}),G.call(()=>{xA(()=>{let Z=document.getElementById(C),_=document.getElementById(F);if(!Z||!_)return;f.prog=H,f.transitionIndex=E,f.progress=0,f.active=!0;let $=x[E];if($?.fallback){Qn($,0);return}h.style.display=!P&&$?.ready&&!$.dirty&&$.textureReady?"block":"none",EA(C,F,"1","1")})},null,R);let S={p:0};G.to(S,{p:1,duration:y,ease:tA,onUpdate:()=>{f.progress=S.p}},R),G.call(()=>{xA(()=>{f.active=!1,f.transitionIndex=-1,h.style.display="none",wn(R+y)})},null,R+y)}let ra=c=>Math.max(2,Math.ceil(c.duration*p)+1),Ee=()=>x.every(c=>c.ready&&!c.dirty),dn=c=>{let w=[],C=new Set,F=y=>{C.has(y.index)||y.fallback||y.dirty||!y.ready||(w.push(y),C.add(y.index))};for(let y of x)c>=y.time&&c<y.time+y.duration&&F(y);let H=x.find(y=>y.time>=c);H&&F(H);for(let y of x)y.time>=c&&y.time-c<=ki&&F(y);return w.slice(0,Pi)},na=c=>dn(c).every(w=>w.textureReady),Un=0,$t=c=>{c.textureGeneration+=1;for(let w of c.frames)w.fromTex&&(g.deleteTexture(w.fromTex),w.fromTex=null),w.toTex&&(g.deleteTexture(w.toTex),w.toTex=null);c.textureReady=!1},Ar=c=>{$t(c),c.texturePromise=null,c.frames=[],c.ready=!1,c.fallback=!1,c.persisted=!1,c.textureReady=!1,c.lastError=void 0},er=c=>{Un+=1,c.textureAccess=Un},sa=c=>{let w=x.filter(C=>C!==c&&C.textureReady).sort((C,F)=>C.textureAccess-F.textureAccess);for(;w.length>=Pi;){let C=w.shift();if(!C)break;$t(C)}},ia=(c,w)=>{let C=[$l,i,c.index,c.fromId,Xi(c.fromId),c.toId,Xi(c.toId),t[c.index]?.shader||"unknown",c.time,c.duration,w,p,T,b,U,B,u].join("|");return`${i}:${c.index}:${jt(C)}`},UA=c=>{let w=window;w.__hf=w.__hf||{},w.__hf.shaderTransitions=w.__hf.shaderTransitions||{};let F={...w.__hf.shaderTransitions[i]||{ready:!1,progress:0,total:0,dirtyTransitions:x.length,captureScale:T,textureWidth:b,textureHeight:U,fps:p,loading:!0},...c};if(F.dirtyTransitions=x.filter(H=>H.dirty||!H.ready).length,w.__hf.shaderTransitions[i]=F,window.parent?.postMessage({source:"hf-preview",type:"shader-transition-state",compositionId:i,state:F},"*"),F.loading){let H=bA();H?.show(),H?.update({progress:F.progress,total:F.total,currentTransition:F.currentTransition,transitionTotal:F.transitionTotal,transitionFrame:F.transitionFrame,transitionFrames:F.transitionFrames,phase:F.phase})}F.ready?J?.hide():F.loading||J?.hide()},Fn=()=>P||vA>0||performance.now()<uA||!G.paused(),hn=c=>{if(c.size===0)return;let w=!1;for(let C of x)!c.has(C.fromId)&&!c.has(C.toId)||(Ar(C),C.dirty=!0,C.cacheKey="",w=!0);w&&(Y=Ee(),UA({ready:Y,progress:0,total:0,currentTransition:void 0,transitionTotal:void 0,transitionFrame:void 0,transitionFrames:void 0,phase:void 0,loading:!1}),window.dispatchEvent(new CustomEvent("hyperShader:dirty",{detail:{compositionId:i,scenes:Array.from(c)}})))},aa=()=>{let c=r.map(F=>document.getElementById(F)).filter(F=>F instanceof HTMLElement),w=[];for(let F of c){let H=new MutationObserver(y=>{if(Fn())return;let tA=new Set;for(let R of y){let E=R.target instanceof Element?R.target:R.target.parentElement;if(E)for(let S of c)(S===E||S.contains(E))&&tA.add(S.id)}hn(tA)});H.observe(F,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),w.push(H)}let C=new MutationObserver(()=>{Fn()||hn(new Set(r))});return C.observe(document.head,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),w.push(C),w},oa=async(c,w,C)=>{let F=[];for(let H=0;H<w;H+=1){let[y,tA]=await Promise.all([on(Yt(c.cacheKey,H,"from")),on(Yt(c.cacheKey,H,"to"))]);if(!y||!tA){for(let R of F)g.deleteTexture(R.fromTex),g.deleteTexture(R.toTex);return!1}F.push({sampleIndex:H,fromBlob:y.blob,toBlob:tA.blob,fromTex:null,toTex:null}),C(H+1)}return c.frames=F,c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=!0,c.textureReady=!1,!0},pn=c=>{if(c.fallback||c.dirty||!c.ready)return Promise.resolve(!1);if(c.textureReady)return er(c),Promise.resolve(!0);if(c.texturePromise)return c.texturePromise;let w=c.textureGeneration,C=c.frames,F=[],H=()=>c.textureGeneration!==w||c.dirty||c.frames!==C,y=()=>{let E=new Set;for(let S of F)E.has(S)||(g.deleteTexture(S),E.add(S));for(let S of C)S.fromTex&&!E.has(S.fromTex)&&(g.deleteTexture(S.fromTex),E.add(S.fromTex)),S.toTex&&!E.has(S.toTex)&&(g.deleteTexture(S.toTex),E.add(S.toTex)),S.fromTex=null,S.toTex=null},tA=async(E,S)=>{let Z=S==="from"?E.fromBlob:E.toBlob;if(Z)return Z;let _=await on(Yt(c.cacheKey,E.sampleIndex,S));if(_?.blob)return _.blob;throw new Error("[HyperShader] Cached transition snapshot blob is unavailable")},R=Promise.resolve(!1);return R=(async()=>{for(let E of C){if(H())return y(),!1;if(!E.fromTex){let S=await tA(E,"from");if(H())return y(),!1;let Z=await Yi(S),_=nt(g);F.push(_);try{if(ar(g,_,Z),H())return y(),!1;E.fromTex=_}finally{Zi(Z)}}if(!E.toTex){let S=await tA(E,"to");if(H())return y(),!1;let Z=await Yi(S),_=nt(g);F.push(_);try{if(ar(g,_,Z),H())return y(),!1;E.toTex=_}finally{Zi(Z)}}c.persisted&&(E.fromBlob=null,E.toBlob=null)}return H()?(y(),!1):(c.textureReady=C.every(E=>!!(E.fromTex&&E.toTex)),c.textureReady&&(er(c),sa(c)),c.textureReady)})().catch(E=>(y(),H()||($t(c),c.fallback=!0,c.ready=!0,c.dirty=!1,c.lastError=E instanceof Error?E.message:String(E),UA({ready:Ee(),loading:!1,error:c.lastError})),!1)).finally(()=>{c.texturePromise===R&&(c.texturePromise=null)}),c.texturePromise=R,R},tr=async c=>{for(let w of dn(c))await pn(w)},mn=async(c,w,C,F)=>F?ff({key:Yt(c.cacheKey,w,C),blob:F,width:b,height:U,updatedAt:c.index*1e6+w*2+(C==="to"?1:0)}):!1,Ba=async(c,w,C)=>{Ar(c);let F=!0;for(let H=0;H<w;H+=1){let y=H/(w-1);xA(()=>{et(c.time+c.duration*y,!1)}),await $A();let tA=document.getElementById(c.fromId),R=document.getElementById(c.toId);if(!tA||!R)continue;let[E,S]=await Promise.all([RA(tA),RA(R)]),[Z,_]=await Promise.all([Ji(E),Ji(S)]);if(dA(E),dA(S),!Z||!_)throw new Error("[HyperShader] Failed to encode transition snapshot");c.frames.push({sampleIndex:H,fromBlob:Z,toBlob:_,fromTex:null,toTex:null}),(await Promise.all([mn(c,H,"from",Z),mn(c,H,"to",_)])).every(Boolean)||(F=!1,c.lastError="[HyperShader] Failed to persist one or more transition snapshots"),C(H+1)}c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=F,c.textureReady=!1},oe=null,vn=()=>oe||(oe=(async()=>{let c=x.filter(E=>E.dirty||!E.ready),w=c.map(E=>({cache:E,sampleCount:ra(E)}));for(let E of w)E.cache.cacheKey=ia(E.cache,E.sampleCount);let C=w.reduce((E,S)=>E+S.sampleCount,0),F=w[0],H=!1;if(UA({ready:!1,progress:0,total:C,currentTransition:F?1:void 0,transitionTotal:w.length||void 0,transitionFrame:F?0:void 0,transitionFrames:F?.sampleCount,phase:F?"cached":void 0,loading:H}),c.length===0){if(Y=!0,UA({ready:!0,progress:0,total:0,currentTransition:void 0,transitionTotal:void 0,transitionFrame:void 0,transitionFrames:void 0,phase:void 0,loading:!1}),HA){let E=PA,S=rt(E,fA);await tr(S),HA&&(HA=!1,PA=[],ee=!1,xA(()=>qt(...E)),fA=_A())}oe=null;return}fA=_A();let y=G.paused(),tA=r.map(E=>{let S=document.getElementById(E);return{scene:S,opacity:S?.style.opacity??"",visibility:S?.style.visibility??"",pointerEvents:S?.style.pointerEvents??""}});P=!0,h.style.display="none",zt();let R=0;try{for(let S=0;S<w.length;S+=1){let Z=w[S];if(!Z)continue;let{cache:_,sampleCount:$}=Z,wA=S+1,Be=R;Ar(_);try{UA({ready:!1,progress:Be,total:C,currentTransition:wA,transitionTotal:w.length,transitionFrame:0,transitionFrames:$,phase:"cached",loading:H}),await oa(_,$,Ie=>{R=Be+Ie,UA({ready:!1,progress:R,total:C,currentTransition:wA,transitionTotal:w.length,transitionFrame:Ie,transitionFrames:$,phase:"cached",loading:H})})||(R=Be,H=!0,UA({ready:!1,progress:R,total:C,currentTransition:wA,transitionTotal:w.length,transitionFrame:0,transitionFrames:$,phase:"capturing",loading:!0}),await Ba(_,$,Ie=>{R=Be+Ie,UA({ready:!1,progress:R,total:C,currentTransition:wA,transitionTotal:w.length,transitionFrame:Ie,transitionFrames:$,phase:"capturing",loading:!0})}),!_.persisted&&_.lastError&&UA({ready:!1,loading:H,error:_.lastError}))}catch(He){R=Be+$,_.fallback=!0,_.ready=!0,_.dirty=!1,_.lastError=He instanceof Error?He.message:String(He),console.warn("[HyperShader] Transition capture failed; using CSS fallback:",He),UA({ready:!1,progress:R,total:C,currentTransition:wA,transitionTotal:w.length,transitionFrame:$,transitionFrames:$,phase:"finalizing",loading:H,error:_.lastError})}R=Be+$}gf(i,new Set(x.map(S=>S.cacheKey).filter(Boolean))),Y=Ee();let E=w[w.length-1];UA({ready:Y,progress:R,total:C,currentTransition:w.length,transitionTotal:w.length,transitionFrame:E?.sampleCount,transitionFrames:E?.sampleCount,phase:"finalizing",loading:!1})}catch(E){console.warn("[HyperShader] Pre-capture failed, keeping DOM fallback visible:",E),Y=Ee(),UA({ready:Y,progress:R,total:C,phase:"finalizing",loading:!1,error:E instanceof Error?E.message:String(E)})}finally{let E=fA,S=(HA||!y)&&!ee,Z=HA?PA:[],_=rt(Z,E),$=null;S&&(await tr(_),$=_),S=(HA||!y)&&!ee,Z=HA?PA:[],_=rt(Z,E),S&&_!==$&&await tr(_),P=!1,f.active=!1,f.transitionIndex=-1,h.style.display="none",xA(()=>{ta(E,!1)}),fA=E;for(let wA of tA)wA.scene&&(wA.scene.style.opacity=wA.opacity,wA.scene.style.visibility=wA.visibility,wA.scene.style.pointerEvents=wA.pointerEvents);Ae(),window.dispatchEvent(new CustomEvent("hyperShader:ready",{detail:{compositionId:i,progress:R,total:C}})),oe=null,S?(HA=!1,PA=[],ee=!1,xA(()=>qt(...Z)),fA=_A()):(HA=!1,PA=[],ee=!1,zt())}})(),oe),ca=aa();window.addEventListener("beforeunload",()=>{for(let c of ca)c.disconnect()},{once:!0});let ua=Promise.resolve().then(()=>vn()),rr=window;return rr.__hf=rr.__hf||{},rr.__hf.shaderTransitionsReady=ua,cn(i,G,A.timeline),G}function cn(A,e,r){if(!r){let t=window;t.__timelines=t.__timelines||{},t.__timelines[A]=e}}function Qf(A,e,r,t,n){let s=A.timeline||gsap.timeline({paused:!0});if(A.timeline){let i=Number(n?.getAttribute("data-duration")||"40");s.to({t:0},{t:1,duration:i,ease:"none"},0)}for(let i=1;i<e.length;i++){let a=e[i];a&&s.set(`#${a}`,{opacity:0},0)}for(let i=0;i<r.length;i++){let a=r[i],o=e[i],B=e[i+1];if(!o||!B)continue;let u=a.duration??Bn,l=a.time;s.set(`#${B}`,{opacity:1},l),s.set(`#${o}`,{opacity:0},l+u)}return cn(t,s,A.timeline),s}0&&(module.exports={SHADER_NAMES,init,isHtmlInCanvasCaptureSupported});
|
|
5
|
+
}`,cu=function(A){lu(A,"."+sn+ou+Ss+`
|
|
6
|
+
.`+an+Bu+Ss)},lu=function(A,e){var t=A.ownerDocument;if(t){var r=t.createElement("style");r.textContent=e,A.appendChild(r)}},Si=(function(){function A(){}return A.getOrigin=function(e){var t=A._link;return t?(t.href=e,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},A.isSameOrigin=function(e){return A.getOrigin(e)===A._origin},A.setContext=function(e){A._link=e.document.createElement("a"),A._origin=A.getOrigin(e.location.href)},A._origin="about:blank",A})(),uu=(function(){function A(e,t){this.context=e,this._options=t,this._cache={}}return A.prototype.addImage=function(e){var t=Promise.resolve();return this.has(e)||(Rr(e)||Qu(e))&&(this._cache[e]=this.loadImage(e)).catch(function(){}),t},A.prototype.match=function(e){return this._cache[e]},A.prototype.loadImage=function(e){return lA(this,void 0,void 0,function(){var t,r,n,s,i=this;return oA(this,function(a){switch(a.label){case 0:return t=Si.isSameOrigin(e),r=!_r(e)&&this._options.useCORS===!0&&iA.SUPPORT_CORS_IMAGES&&!t,n=!_r(e)&&!t&&!Rr(e)&&typeof this._options.proxy=="string"&&iA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!_r(e)&&!Rr(e)&&!n&&!r?[2]:(s=e,n?[4,this.proxy(s)]:[3,2]);case 1:s=a.sent(),a.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(o,B){var l=new Image;l.onload=function(){return o(l)},l.onerror=B,(Cu(s)||r)&&(l.crossOrigin="anonymous"),l.src=s,l.complete===!0&&setTimeout(function(){return o(l)},500),i._options.imageTimeout>0&&setTimeout(function(){return B("Timed out ("+i._options.imageTimeout+"ms) loading image")},i._options.imageTimeout)})];case 3:return[2,a.sent()]}})})},A.prototype.has=function(e){return typeof this._cache[e]<"u"},A.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},A.prototype.proxy=function(e){var t=this,r=this._options.proxy;if(!r)throw new Error("No proxy defined");var n=e.substring(0,256);return new Promise(function(s,i){var a=iA.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=function(){if(o.status===200)if(a==="text")s(o.response);else{var u=new FileReader;u.addEventListener("load",function(){return s(u.result)},!1),u.addEventListener("error",function(f){return i(f)},!1),u.readAsDataURL(o.response)}else i("Failed to proxy resource "+n+" with status code "+o.status)},o.onerror=i;var B=r.indexOf("?")>-1?"&":"?";if(o.open("GET",""+r+B+"url="+encodeURIComponent(e)+"&responseType="+a),a!=="text"&&o instanceof XMLHttpRequest&&(o.responseType=a),t._options.imageTimeout){var l=t._options.imageTimeout;o.timeout=l,o.ontimeout=function(){return i("Timed out ("+l+"ms) proxying "+n)}}o.send()})},A})(),fu=/^data:image\/svg\+xml/i,gu=/^data:image\/.*;base64,/i,wu=/^data:image\/.*/i,Qu=function(A){return iA.SUPPORT_SVG_DRAWING||!du(A)},_r=function(A){return wu.test(A)},Cu=function(A){return gu.test(A)},Rr=function(A){return A.substr(0,4)==="blob"},du=function(A){return A.substr(-3).toLowerCase()==="svg"||fu.test(A)},m=(function(){function A(e,t){this.type=0,this.x=e,this.y=t}return A.prototype.add=function(e,t){return new A(this.x+e,this.y+t)},A})(),Ue=function(A,e,t){return new m(A.x+(e.x-A.x)*t,A.y+(e.y-A.y)*t)},Ht=(function(){function A(e,t,r,n){this.type=1,this.start=e,this.startControl=t,this.endControl=r,this.end=n}return A.prototype.subdivide=function(e,t){var r=Ue(this.start,this.startControl,e),n=Ue(this.startControl,this.endControl,e),s=Ue(this.endControl,this.end,e),i=Ue(r,n,e),a=Ue(n,s,e),o=Ue(i,a,e);return t?new A(this.start,r,i,o):new A(o,a,s,this.end)},A.prototype.add=function(e,t){return new A(this.start.add(e,t),this.startControl.add(e,t),this.endControl.add(e,t),this.end.add(e,t))},A.prototype.reverse=function(){return new A(this.end,this.endControl,this.startControl,this.start)},A})(),pA=function(A){return A.type===1},Uu=(function(){function A(e){var t=e.styles,r=e.bounds,n=Pe(t.borderTopLeftRadius,r.width,r.height),s=n[0],i=n[1],a=Pe(t.borderTopRightRadius,r.width,r.height),o=a[0],B=a[1],l=Pe(t.borderBottomRightRadius,r.width,r.height),u=l[0],f=l[1],d=Pe(t.borderBottomLeftRadius,r.width,r.height),g=d[0],w=d[1],T=[];T.push((s+o)/r.width),T.push((g+u)/r.width),T.push((i+w)/r.height),T.push((B+f)/r.height);var h=Math.max.apply(Math,T);h>1&&(s/=h,i/=h,o/=h,B/=h,u/=h,f/=h,g/=h,w/=h);var p=r.width-o,E=r.height-f,I=r.width-u,y=r.height-w,C=t.borderTopWidth,L=t.borderRightWidth,_=t.borderBottomWidth,K=t.borderLeftWidth,S=Y(t.paddingTop,e.bounds.width),M=Y(t.paddingRight,e.bounds.width),P=Y(t.paddingBottom,e.bounds.width),R=Y(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||i>0?Z(r.left+K/3,r.top+C/3,s-K/3,i-C/3,X.TOP_LEFT):new m(r.left+K/3,r.top+C/3),this.topRightBorderDoubleOuterBox=s>0||i>0?Z(r.left+p,r.top+C/3,o-L/3,B-C/3,X.TOP_RIGHT):new m(r.left+r.width-L/3,r.top+C/3),this.bottomRightBorderDoubleOuterBox=u>0||f>0?Z(r.left+I,r.top+E,u-L/3,f-_/3,X.BOTTOM_RIGHT):new m(r.left+r.width-L/3,r.top+r.height-_/3),this.bottomLeftBorderDoubleOuterBox=g>0||w>0?Z(r.left+K/3,r.top+y,g-K/3,w-_/3,X.BOTTOM_LEFT):new m(r.left+K/3,r.top+r.height-_/3),this.topLeftBorderDoubleInnerBox=s>0||i>0?Z(r.left+K*2/3,r.top+C*2/3,s-K*2/3,i-C*2/3,X.TOP_LEFT):new m(r.left+K*2/3,r.top+C*2/3),this.topRightBorderDoubleInnerBox=s>0||i>0?Z(r.left+p,r.top+C*2/3,o-L*2/3,B-C*2/3,X.TOP_RIGHT):new m(r.left+r.width-L*2/3,r.top+C*2/3),this.bottomRightBorderDoubleInnerBox=u>0||f>0?Z(r.left+I,r.top+E,u-L*2/3,f-_*2/3,X.BOTTOM_RIGHT):new m(r.left+r.width-L*2/3,r.top+r.height-_*2/3),this.bottomLeftBorderDoubleInnerBox=g>0||w>0?Z(r.left+K*2/3,r.top+y,g-K*2/3,w-_*2/3,X.BOTTOM_LEFT):new m(r.left+K*2/3,r.top+r.height-_*2/3),this.topLeftBorderStroke=s>0||i>0?Z(r.left+K/2,r.top+C/2,s-K/2,i-C/2,X.TOP_LEFT):new m(r.left+K/2,r.top+C/2),this.topRightBorderStroke=s>0||i>0?Z(r.left+p,r.top+C/2,o-L/2,B-C/2,X.TOP_RIGHT):new m(r.left+r.width-L/2,r.top+C/2),this.bottomRightBorderStroke=u>0||f>0?Z(r.left+I,r.top+E,u-L/2,f-_/2,X.BOTTOM_RIGHT):new m(r.left+r.width-L/2,r.top+r.height-_/2),this.bottomLeftBorderStroke=g>0||w>0?Z(r.left+K/2,r.top+y,g-K/2,w-_/2,X.BOTTOM_LEFT):new m(r.left+K/2,r.top+r.height-_/2),this.topLeftBorderBox=s>0||i>0?Z(r.left,r.top,s,i,X.TOP_LEFT):new m(r.left,r.top),this.topRightBorderBox=o>0||B>0?Z(r.left+p,r.top,o,B,X.TOP_RIGHT):new m(r.left+r.width,r.top),this.bottomRightBorderBox=u>0||f>0?Z(r.left+I,r.top+E,u,f,X.BOTTOM_RIGHT):new m(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=g>0||w>0?Z(r.left,r.top+y,g,w,X.BOTTOM_LEFT):new m(r.left,r.top+r.height),this.topLeftPaddingBox=s>0||i>0?Z(r.left+K,r.top+C,Math.max(0,s-K),Math.max(0,i-C),X.TOP_LEFT):new m(r.left+K,r.top+C),this.topRightPaddingBox=o>0||B>0?Z(r.left+Math.min(p,r.width-L),r.top+C,p>r.width+L?0:Math.max(0,o-L),Math.max(0,B-C),X.TOP_RIGHT):new m(r.left+r.width-L,r.top+C),this.bottomRightPaddingBox=u>0||f>0?Z(r.left+Math.min(I,r.width-K),r.top+Math.min(E,r.height-_),Math.max(0,u-L),Math.max(0,f-_),X.BOTTOM_RIGHT):new m(r.left+r.width-L,r.top+r.height-_),this.bottomLeftPaddingBox=g>0||w>0?Z(r.left+K,r.top+Math.min(y,r.height-_),Math.max(0,g-K),Math.max(0,w-_),X.BOTTOM_LEFT):new m(r.left+K,r.top+r.height-_),this.topLeftContentBox=s>0||i>0?Z(r.left+K+R,r.top+C+S,Math.max(0,s-(K+R)),Math.max(0,i-(C+S)),X.TOP_LEFT):new m(r.left+K+R,r.top+C+S),this.topRightContentBox=o>0||B>0?Z(r.left+Math.min(p,r.width+K+R),r.top+C+S,p>r.width+K+R?0:o-K+R,B-(C+S),X.TOP_RIGHT):new m(r.left+r.width-(L+M),r.top+C+S),this.bottomRightContentBox=u>0||f>0?Z(r.left+Math.min(I,r.width-(K+R)),r.top+Math.min(E,r.height+C+S),Math.max(0,u-(L+M)),f-(_+P),X.BOTTOM_RIGHT):new m(r.left+r.width-(L+M),r.top+r.height-(_+P)),this.bottomLeftContentBox=g>0||w>0?Z(r.left+K+R,r.top+y,Math.max(0,g-(K+R)),w-(_+P),X.BOTTOM_LEFT):new m(r.left+K+R,r.top+r.height-(_+P))}return A})(),X;(function(A){A[A.TOP_LEFT=0]="TOP_LEFT",A[A.TOP_RIGHT=1]="TOP_RIGHT",A[A.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",A[A.BOTTOM_LEFT=3]="BOTTOM_LEFT"})(X||(X={}));var Z=function(A,e,t,r,n){var s=4*((Math.sqrt(2)-1)/3),i=t*s,a=r*s,o=A+t,B=e+r;switch(n){case X.TOP_LEFT:return new Ht(new m(A,B),new m(A,B-a),new m(o-i,e),new m(o,e));case X.TOP_RIGHT:return new Ht(new m(A,e),new m(A+i,e),new m(o,B-a),new m(o,B));case X.BOTTOM_RIGHT:return new Ht(new m(o,e),new m(o,e+a),new m(A+i,B),new m(A,B));case X.BOTTOM_LEFT:default:return new Ht(new m(o,B),new m(o-i,B),new m(A,e+a),new m(A,e))}},Nt=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},hu=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},Vt=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},Fu=(function(){function A(e,t,r){this.offsetX=e,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return A})(),It=(function(){function A(e,t){this.path=e,this.target=t,this.type=1}return A})(),pu=(function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A})(),mu=function(A){return A.type===0},Di=function(A){return A.type===1},vu=function(A){return A.type===2},Ds=function(A,e){return A.length===e.length?A.some(function(t,r){return t===e[r]}):!1},Eu=function(A,e,t,r,n){return A.map(function(s,i){switch(i){case 0:return s.add(e,t);case 1:return s.add(e+r,t);case 2:return s.add(e+r,t+n);case 3:return s.add(e,t+n)}return s})},_i=(function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A})(),Ri=(function(){function A(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new Uu(this.container),this.container.styles.opacity<1&&this.effects.push(new pu(this.container.styles.opacity)),this.container.styles.transform!==null){var r=this.container.bounds.left+this.container.styles.transformOrigin[0].number,n=this.container.bounds.top+this.container.styles.transformOrigin[1].number,s=this.container.styles.transform;this.effects.push(new Fu(r,n,s))}if(this.container.styles.overflowX!==0){var i=Nt(this.curves),a=Vt(this.curves);Ds(i,a)?this.effects.push(new It(i,6)):(this.effects.push(new It(i,2)),this.effects.push(new It(a,4)))}}return A.prototype.getEffects=function(e){for(var t=[2,3].indexOf(this.container.styles.position)===-1,r=this.parent,n=this.effects.slice(0);r;){var s=r.effects.filter(function(o){return!Di(o)});if(t||r.container.styles.position!==0||!r.parent){if(n.unshift.apply(n,s),t=[2,3].indexOf(r.container.styles.position)===-1,r.container.styles.overflowX!==0){var i=Nt(r.curves),a=Vt(r.curves);Ds(i,a)||n.unshift(new It(a,6))}}else n.unshift.apply(n,s);r=r.parent}return n.filter(function(o){return rA(o.target,e)})},A})(),on=function(A,e,t,r){A.container.elements.forEach(function(n){var s=rA(n.flags,4),i=rA(n.flags,2),a=new Ri(n,A);rA(n.styles.display,2048)&&r.push(a);var o=rA(n.flags,8)?[]:r;if(s||i){var B=s||n.styles.isPositioned()?t:e,l=new _i(a);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){var u=n.styles.zIndex.order;if(u<0){var f=0;B.negativeZIndex.some(function(g,w){return u>g.element.container.styles.zIndex.order?(f=w,!1):f>0}),B.negativeZIndex.splice(f,0,l)}else if(u>0){var d=0;B.positiveZIndex.some(function(g,w){return u>=g.element.container.styles.zIndex.order?(d=w+1,!1):d>0}),B.positiveZIndex.splice(d,0,l)}else B.zeroOrAutoZIndexOrTransformedOrOpacity.push(l)}else n.styles.isFloating()?B.nonPositionedFloats.push(l):B.nonPositionedInlineLevel.push(l);on(a,l,s?l:t,o)}else n.styles.isInlineLevel()?e.inlineLevel.push(a):e.nonInlineLevel.push(a),on(a,e,t,o);rA(n.flags,8)&&Mi(n,o)})},Mi=function(A,e){for(var t=A instanceof tn?A.start:1,r=A instanceof tn?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof Fi&&typeof s.container.value=="number"&&s.container.value!==0&&(t=s.container.value),s.listValue=$e(t,s.container.styles.listStyleType,!0),t+=r?-1:1}},Hu=function(A){var e=new Ri(A,null),t=new _i(e),r=[];return on(e,t,t,r),Mi(e.container,r),t},_s=function(A,e){switch(e){case 0:return vA(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return vA(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return vA(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return vA(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Iu=function(A,e){switch(e){case 0:return vA(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return vA(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return vA(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return vA(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},yu=function(A,e){switch(e){case 0:return vA(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return vA(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return vA(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return vA(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},bu=function(A,e){switch(e){case 0:return yt(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return yt(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return yt(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return yt(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},yt=function(A,e){var t=[];return pA(A)?t.push(A.subdivide(.5,!1)):t.push(A),pA(e)?t.push(e.subdivide(.5,!0)):t.push(e),t},vA=function(A,e,t,r){var n=[];return pA(A)?n.push(A.subdivide(.5,!1)):n.push(A),pA(t)?n.push(t.subdivide(.5,!0)):n.push(t),pA(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),pA(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Oi=function(A){var e=A.bounds,t=A.styles;return e.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},Pt=function(A){var e=A.styles,t=A.bounds,r=Y(e.paddingLeft,t.width),n=Y(e.paddingRight,t.width),s=Y(e.paddingTop,t.width),i=Y(e.paddingBottom,t.width);return t.add(r+e.borderLeftWidth,s+e.borderTopWidth,-(e.borderRightWidth+e.borderLeftWidth+r+n),-(e.borderTopWidth+e.borderBottomWidth+s+i))},xu=function(A,e){return A===0?e.bounds:A===2?Pt(e):Oi(e)},Lu=function(A,e){return A===0?e.bounds:A===2?Pt(e):Oi(e)},Mr=function(A,e,t){var r=xu(pe(A.styles.backgroundOrigin,e),A),n=Lu(pe(A.styles.backgroundClip,e),A),s=Tu(pe(A.styles.backgroundSize,e),t,r),i=s[0],a=s[1],o=Pe(pe(A.styles.backgroundPosition,e),r.width-i,r.height-a),B=Ku(pe(A.styles.backgroundRepeat,e),o,s,r,n),l=Math.round(r.left+o[0]),u=Math.round(r.top+o[1]);return[B,l,u,i,a]},he=function(A){return W(A)&&A.value===ve.AUTO},bt=function(A){return typeof A=="number"},Tu=function(A,e,t){var r=e[0],n=e[1],s=e[2],i=A[0],a=A[1];if(!i)return[0,0];if(eA(i)&&a&&eA(a))return[Y(i,t.width),Y(a,t.height)];var o=bt(s);if(W(i)&&(i.value===ve.CONTAIN||i.value===ve.COVER)){if(bt(s)){var B=t.width/t.height;return B<s!=(i.value===ve.COVER)?[t.width,t.width/s]:[t.height*s,t.height]}return[t.width,t.height]}var l=bt(r),u=bt(n),f=l||u;if(he(i)&&(!a||he(a))){if(l&&u)return[r,n];if(!o&&!f)return[t.width,t.height];if(f&&o){var d=l?r:n*s,g=u?n:r/s;return[d,g]}var w=l?r:t.width,T=u?n:t.height;return[w,T]}if(o){var h=0,p=0;return eA(i)?h=Y(i,t.width):eA(a)&&(p=Y(a,t.height)),he(i)?h=p*s:(!a||he(a))&&(p=h/s),[h,p]}var E=null,I=null;if(eA(i)?E=Y(i,t.width):a&&eA(a)&&(I=Y(a,t.height)),E!==null&&(!a||he(a))&&(I=l&&u?E/r*n:t.height),I!==null&&he(i)&&(E=l&&u?I/n*r:t.width),E!==null&&I!==null)return[E,I];throw new Error("Unable to calculate background-size for element")},pe=function(A,e){var t=A[e];return typeof t>"u"?A[0]:t},Ku=function(A,e,t,r,n){var s=e[0],i=e[1],a=t[0],o=t[1];switch(A){case 2:return[new m(Math.round(r.left),Math.round(r.top+i)),new m(Math.round(r.left+r.width),Math.round(r.top+i)),new m(Math.round(r.left+r.width),Math.round(o+r.top+i)),new m(Math.round(r.left),Math.round(o+r.top+i))];case 3:return[new m(Math.round(r.left+s),Math.round(r.top)),new m(Math.round(r.left+s+a),Math.round(r.top)),new m(Math.round(r.left+s+a),Math.round(r.height+r.top)),new m(Math.round(r.left+s),Math.round(r.height+r.top))];case 1:return[new m(Math.round(r.left+s),Math.round(r.top+i)),new m(Math.round(r.left+s+a),Math.round(r.top+i)),new m(Math.round(r.left+s+a),Math.round(r.top+i+o)),new m(Math.round(r.left+s),Math.round(r.top+i+o))];default:return[new m(Math.round(n.left),Math.round(n.top)),new m(Math.round(n.left+n.width),Math.round(n.top)),new m(Math.round(n.left+n.width),Math.round(n.height+n.top)),new m(Math.round(n.left),Math.round(n.height+n.top))]}},Su="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Rs="Hidden Text",Du=(function(){function A(e){this._data={},this._document=e}return A.prototype.parseMetrics=function(e,t){var r=this._document.createElement("div"),n=this._document.createElement("img"),s=this._document.createElement("span"),i=this._document.body;r.style.visibility="hidden",r.style.fontFamily=e,r.style.fontSize=t,r.style.margin="0",r.style.padding="0",r.style.whiteSpace="nowrap",i.appendChild(r),n.src=Su,n.width=1,n.height=1,n.style.margin="0",n.style.padding="0",n.style.verticalAlign="baseline",s.style.fontFamily=e,s.style.fontSize=t,s.style.margin="0",s.style.padding="0",s.appendChild(this._document.createTextNode(Rs)),r.appendChild(s),r.appendChild(n);var a=n.offsetTop-s.offsetTop+2;r.removeChild(s),r.appendChild(this._document.createTextNode(Rs)),r.style.lineHeight="normal",n.style.verticalAlign="super";var o=n.offsetTop-r.offsetTop+2;return i.removeChild(r),{baseline:a,middle:o}},A.prototype.getMetrics=function(e,t){var r=e+" "+t;return typeof this._data[r]>"u"&&(this._data[r]=this.parseMetrics(e,t)),this._data[r]},A})(),Gi=(function(){function A(e,t){this.context=e,this.options=t}return A})(),_u=1e4,Ru=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n._activeEffects=[],n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),r.canvas||(n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px"),n.fontMetrics=new Du(document),n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.ctx.textBaseline="bottom",n._activeEffects=[],n.context.logger.debug("Canvas renderer initialized ("+r.width+"x"+r.height+") with scale "+r.scale),n}return e.prototype.applyEffects=function(t){for(var r=this;this._activeEffects.length;)this.popEffect();t.forEach(function(n){return r.applyEffect(n)})},e.prototype.applyEffect=function(t){this.ctx.save(),vu(t)&&(this.ctx.globalAlpha=t.opacity),mu(t)&&(this.ctx.translate(t.offsetX,t.offsetY),this.ctx.transform(t.matrix[0],t.matrix[1],t.matrix[2],t.matrix[3],t.matrix[4],t.matrix[5]),this.ctx.translate(-t.offsetX,-t.offsetY)),Di(t)&&(this.path(t.path),this.ctx.clip()),this._activeEffects.push(t)},e.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},e.prototype.renderStack=function(t){return lA(this,void 0,void 0,function(){var r;return oA(this,function(n){switch(n.label){case 0:return r=t.element.container.styles,r.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:n.sent(),n.label=2;case 2:return[2]}})})},e.prototype.renderNode=function(t){return lA(this,void 0,void 0,function(){return oA(this,function(r){switch(r.label){case 0:if(rA(t.container.flags,16))debugger;return t.container.styles.isVisible()?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return r.sent(),[4,this.renderNodeContent(t)];case 2:r.sent(),r.label=3;case 3:return[2]}})})},e.prototype.renderTextWithLetterSpacing=function(t,r,n){var s=this;if(r===0)this.ctx.fillText(t.text,t.bounds.left,t.bounds.top+n);else{var i=fn(t.text);i.reduce(function(a,o){return s.ctx.fillText(o,a,t.bounds.top+n),a+s.ctx.measureText(o).width},t.bounds.left)}},e.prototype.createFontStyle=function(t){var r=t.fontVariant.filter(function(i){return i==="normal"||i==="small-caps"}).join(""),n=Vu(t.fontFamily).join(", "),s=et(t.fontSize)?""+t.fontSize.number+t.fontSize.unit:t.fontSize.number+"px";return[[t.fontStyle,r,t.fontWeight,s,n].join(" "),n,s]},e.prototype.renderTextNode=function(t,r){return lA(this,void 0,void 0,function(){var n,s,i,a,o,B,l,u,f=this;return oA(this,function(d){return n=this.createFontStyle(r),s=n[0],i=n[1],a=n[2],this.ctx.font=s,this.ctx.direction=r.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",o=this.fontMetrics.getMetrics(i,a),B=o.baseline,l=o.middle,u=r.paintOrder,t.textBounds.forEach(function(g){u.forEach(function(w){switch(w){case 0:f.ctx.fillStyle=sA(r.color),f.renderTextWithLetterSpacing(g,r.letterSpacing,B);var T=r.textShadow;T.length&&g.text.trim().length&&(T.slice(0).reverse().forEach(function(h){f.ctx.shadowColor=sA(h.color),f.ctx.shadowOffsetX=h.offsetX.number*f.options.scale,f.ctx.shadowOffsetY=h.offsetY.number*f.options.scale,f.ctx.shadowBlur=h.blur.number,f.renderTextWithLetterSpacing(g,r.letterSpacing,B)}),f.ctx.shadowColor="",f.ctx.shadowOffsetX=0,f.ctx.shadowOffsetY=0,f.ctx.shadowBlur=0),r.textDecorationLine.length&&(f.ctx.fillStyle=sA(r.textDecorationColor||r.color),r.textDecorationLine.forEach(function(h){switch(h){case 1:f.ctx.fillRect(g.bounds.left,Math.round(g.bounds.top+B),g.bounds.width,1);break;case 2:f.ctx.fillRect(g.bounds.left,Math.round(g.bounds.top),g.bounds.width,1);break;case 3:f.ctx.fillRect(g.bounds.left,Math.ceil(g.bounds.top+l),g.bounds.width,1);break}}));break;case 1:r.webkitTextStrokeWidth&&g.text.trim().length&&(f.ctx.strokeStyle=sA(r.webkitTextStrokeColor),f.ctx.lineWidth=r.webkitTextStrokeWidth,f.ctx.lineJoin=window.chrome?"miter":"round",f.ctx.strokeText(g.text,g.bounds.left,g.bounds.top+B)),f.ctx.strokeStyle="",f.ctx.lineWidth=0,f.ctx.lineJoin="miter";break}})}),[2]})})},e.prototype.renderReplacedElement=function(t,r,n){if(n&&t.intrinsicWidth>0&&t.intrinsicHeight>0){var s=Pt(t),i=Vt(r);this.path(i),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,s.left,s.top,s.width,s.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(t){return lA(this,void 0,void 0,function(){var r,n,s,i,a,o,p,p,B,l,u,f,I,d,g,y,w,T,h,p,E,I,y;return oA(this,function(C){switch(C.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,s=r.styles,i=0,a=r.textNodes,C.label=1;case 1:return i<a.length?(o=a[i],[4,this.renderTextNode(o,s)]):[3,4];case 2:C.sent(),C.label=3;case 3:return i++,[3,1];case 4:if(!(r instanceof di))return[3,8];C.label=5;case 5:return C.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return p=C.sent(),this.renderReplacedElement(r,n,p),[3,8];case 7:return C.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof Ui&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof hi))return[3,12];C.label=9;case 9:return C.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return p=C.sent(),this.renderReplacedElement(r,n,p),[3,12];case 11:return C.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof vi&&r.tree?(B=new e(this.context,{scale:this.options.scale,backgroundColor:r.backgroundColor,x:0,y:0,width:r.width,height:r.height}),[4,B.render(r.tree)]):[3,14];case 13:l=C.sent(),r.width&&r.height&&this.ctx.drawImage(l,0,0,r.width,r.height,r.bounds.left,r.bounds.top,r.bounds.width,r.bounds.height),C.label=14;case 14:if(r instanceof gn&&(u=Math.min(r.bounds.width,r.bounds.height),r.type===Rt?r.checked&&(this.ctx.save(),this.path([new m(r.bounds.left+u*.39363,r.bounds.top+u*.79),new m(r.bounds.left+u*.16,r.bounds.top+u*.5549),new m(r.bounds.left+u*.27347,r.bounds.top+u*.44071),new m(r.bounds.left+u*.39694,r.bounds.top+u*.5649),new m(r.bounds.left+u*.72983,r.bounds.top+u*.23),new m(r.bounds.left+u*.84,r.bounds.top+u*.34085),new m(r.bounds.left+u*.39363,r.bounds.top+u*.79)]),this.ctx.fillStyle=sA(vs),this.ctx.fill(),this.ctx.restore()):r.type===Mt&&r.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(r.bounds.left+u/2,r.bounds.top+u/2,u/4,0,Math.PI*2,!0),this.ctx.fillStyle=sA(vs),this.ctx.fill(),this.ctx.restore())),Mu(r)&&r.value.length){switch(f=this.createFontStyle(s),I=f[0],d=f[1],g=this.fontMetrics.getMetrics(I,d).baseline,this.ctx.font=I,this.ctx.fillStyle=sA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Gu(r.styles.textAlign),y=Pt(r),w=0,r.styles.textAlign){case 1:w+=y.width/2;break;case 2:w+=y.width;break}T=y.add(w,0,0,-y.height/2+1),this.ctx.save(),this.path([new m(y.left,y.top),new m(y.left+y.width,y.top),new m(y.left+y.width,y.top+y.height),new m(y.left,y.top+y.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Ze(r.value,T),s.letterSpacing,g),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!rA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(h=r.styles.listStyleImage,h.type!==0)return[3,18];p=void 0,E=h.url,C.label=15;case 15:return C.trys.push([15,17,,18]),[4,this.context.cache.match(E)];case 16:return p=C.sent(),this.ctx.drawImage(p,r.bounds.left-(p.width+10),r.bounds.top),[3,18];case 17:return C.sent(),this.context.logger.error("Error loading list-style-image "+E),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(I=this.createFontStyle(s)[0],this.ctx.font=I,this.ctx.fillStyle=sA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",y=new VA(r.bounds.left,r.bounds.top+Y(r.styles.paddingTop,r.bounds.width),r.bounds.width,as(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Ze(t.listValue,y),s.letterSpacing,as(s.lineHeight,s.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),C.label=20;case 20:return[2]}})})},e.prototype.renderStackContent=function(t){return lA(this,void 0,void 0,function(){var r,n,h,s,i,h,a,o,h,B,l,h,u,f,h,d,g,h,w,T,h;return oA(this,function(p){switch(p.label){case 0:if(rA(t.element.container.flags,16))debugger;return[4,this.renderNodeBackgroundAndBorders(t.element)];case 1:p.sent(),r=0,n=t.negativeZIndex,p.label=2;case 2:return r<n.length?(h=n[r],[4,this.renderStack(h)]):[3,5];case 3:p.sent(),p.label=4;case 4:return r++,[3,2];case 5:return[4,this.renderNodeContent(t.element)];case 6:p.sent(),s=0,i=t.nonInlineLevel,p.label=7;case 7:return s<i.length?(h=i[s],[4,this.renderNode(h)]):[3,10];case 8:p.sent(),p.label=9;case 9:return s++,[3,7];case 10:a=0,o=t.nonPositionedFloats,p.label=11;case 11:return a<o.length?(h=o[a],[4,this.renderStack(h)]):[3,14];case 12:p.sent(),p.label=13;case 13:return a++,[3,11];case 14:B=0,l=t.nonPositionedInlineLevel,p.label=15;case 15:return B<l.length?(h=l[B],[4,this.renderStack(h)]):[3,18];case 16:p.sent(),p.label=17;case 17:return B++,[3,15];case 18:u=0,f=t.inlineLevel,p.label=19;case 19:return u<f.length?(h=f[u],[4,this.renderNode(h)]):[3,22];case 20:p.sent(),p.label=21;case 21:return u++,[3,19];case 22:d=0,g=t.zeroOrAutoZIndexOrTransformedOrOpacity,p.label=23;case 23:return d<g.length?(h=g[d],[4,this.renderStack(h)]):[3,26];case 24:p.sent(),p.label=25;case 25:return d++,[3,23];case 26:w=0,T=t.positiveZIndex,p.label=27;case 27:return w<T.length?(h=T[w],[4,this.renderStack(h)]):[3,30];case 28:p.sent(),p.label=29;case 29:return w++,[3,27];case 30:return[2]}})})},e.prototype.mask=function(t){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(t.slice(0).reverse()),this.ctx.closePath()},e.prototype.path=function(t){this.ctx.beginPath(),this.formatPath(t),this.ctx.closePath()},e.prototype.formatPath=function(t){var r=this;t.forEach(function(n,s){var i=pA(n)?n.start:n;s===0?r.ctx.moveTo(i.x,i.y):r.ctx.lineTo(i.x,i.y),pA(n)&&r.ctx.bezierCurveTo(n.startControl.x,n.startControl.y,n.endControl.x,n.endControl.y,n.end.x,n.end.y)})},e.prototype.renderRepeat=function(t,r,n,s){this.path(t),this.ctx.fillStyle=r,this.ctx.translate(n,s),this.ctx.fill(),this.ctx.translate(-n,-s)},e.prototype.resizeImage=function(t,r,n){var s;if(t.width===r&&t.height===n)return t;var i=(s=this.canvas.ownerDocument)!==null&&s!==void 0?s:document,a=i.createElement("canvas");a.width=Math.max(1,r),a.height=Math.max(1,n);var o=a.getContext("2d");return o.drawImage(t,0,0,t.width,t.height,0,0,r,n),a},e.prototype.renderBackgroundImage=function(t){return lA(this,void 0,void 0,function(){var r,n,s,i,a,o;return oA(this,function(B){switch(B.label){case 0:r=t.styles.backgroundImage.length-1,n=function(l){var u,f,d,S,q,J,R,O,_,g,S,q,J,R,O,w,T,h,p,E,I,y,C,L,_,K,S,M,P,R,O,tA,q,J,EA,uA,dA,DA,_A,fA,HA,UA;return oA(this,function(RA){switch(RA.label){case 0:if(l.type!==0)return[3,5];u=void 0,f=l.url,RA.label=1;case 1:return RA.trys.push([1,3,,4]),[4,s.context.cache.match(f)];case 2:return u=RA.sent(),[3,4];case 3:return RA.sent(),s.context.logger.error("Error loading background-image "+f),[3,4];case 4:return u&&(d=Mr(t,r,[u.width,u.height,u.width/u.height]),S=d[0],q=d[1],J=d[2],R=d[3],O=d[4],_=s.ctx.createPattern(s.resizeImage(u,R,O),"repeat"),s.renderRepeat(S,_,q,J)),[3,6];case 5:mB(l)?(g=Mr(t,r,[null,null,null]),S=g[0],q=g[1],J=g[2],R=g[3],O=g[4],w=dB(l.angle,R,O),T=w[0],h=w[1],p=w[2],E=w[3],I=w[4],y=document.createElement("canvas"),y.width=R,y.height=O,C=y.getContext("2d"),L=C.createLinearGradient(h,E,p,I),ss(l.stops,T).forEach(function($A){return L.addColorStop($A.stop,sA($A.color))}),C.fillStyle=L,C.fillRect(0,0,R,O),R>0&&O>0&&(_=s.ctx.createPattern(y,"repeat"),s.renderRepeat(S,_,q,J))):vB(l)&&(K=Mr(t,r,[null,null,null]),S=K[0],M=K[1],P=K[2],R=K[3],O=K[4],tA=l.position.length===0?[cn]:l.position,q=Y(tA[0],R),J=Y(tA[tA.length-1],O),EA=UB(l,q,J,R,O),uA=EA[0],dA=EA[1],uA>0&&dA>0&&(DA=s.ctx.createRadialGradient(M+q,P+J,0,M+q,P+J,uA),ss(l.stops,uA*2).forEach(function($A){return DA.addColorStop($A.stop,sA($A.color))}),s.path(S),s.ctx.fillStyle=DA,uA!==dA?(_A=t.bounds.left+.5*t.bounds.width,fA=t.bounds.top+.5*t.bounds.height,HA=dA/uA,UA=1/HA,s.ctx.save(),s.ctx.translate(_A,fA),s.ctx.transform(1,0,0,HA,0,0),s.ctx.translate(-_A,-fA),s.ctx.fillRect(M,UA*(P-fA)+fA,R,O*UA),s.ctx.restore()):s.ctx.fill())),RA.label=6;case 6:return r--,[2]}})},s=this,i=0,a=t.styles.backgroundImage.slice(0).reverse(),B.label=1;case 1:return i<a.length?(o=a[i],[5,n(o)]):[3,4];case 2:B.sent(),B.label=3;case 3:return i++,[3,1];case 4:return[2]}})})},e.prototype.renderSolidBorder=function(t,r,n){return lA(this,void 0,void 0,function(){return oA(this,function(s){return this.path(_s(n,r)),this.ctx.fillStyle=sA(t),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(t,r,n,s){return lA(this,void 0,void 0,function(){var i,a;return oA(this,function(o){switch(o.label){case 0:return r<3?[4,this.renderSolidBorder(t,n,s)]:[3,2];case 1:return o.sent(),[2];case 2:return i=Iu(s,n),this.path(i),this.ctx.fillStyle=sA(t),this.ctx.fill(),a=yu(s,n),this.path(a),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(t){return lA(this,void 0,void 0,function(){var r,n,s,i,a,o,B,l,u=this;return oA(this,function(f){switch(f.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!jA(r.backgroundColor)||r.backgroundImage.length,s=[{style:r.borderTopStyle,color:r.borderTopColor,width:r.borderTopWidth},{style:r.borderRightStyle,color:r.borderRightColor,width:r.borderRightWidth},{style:r.borderBottomStyle,color:r.borderBottomColor,width:r.borderBottomWidth},{style:r.borderLeftStyle,color:r.borderLeftColor,width:r.borderLeftWidth}],i=Ou(pe(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(i),this.ctx.clip(),jA(r.backgroundColor)||(this.ctx.fillStyle=sA(r.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(t.container)]):[3,2];case 1:f.sent(),this.ctx.restore(),r.boxShadow.slice(0).reverse().forEach(function(d){u.ctx.save();var g=Nt(t.curves),w=d.inset?0:_u,T=Eu(g,-w+(d.inset?1:-1)*d.spread.number,(d.inset?1:-1)*d.spread.number,d.spread.number*(d.inset?-2:2),d.spread.number*(d.inset?-2:2));d.inset?(u.path(g),u.ctx.clip(),u.mask(T)):(u.mask(g),u.ctx.clip(),u.path(T)),u.ctx.shadowOffsetX=d.offsetX.number+w,u.ctx.shadowOffsetY=d.offsetY.number,u.ctx.shadowColor=sA(d.color),u.ctx.shadowBlur=d.blur.number,u.ctx.fillStyle=d.inset?sA(d.color):"rgba(0,0,0,1)",u.ctx.fill(),u.ctx.restore()}),f.label=2;case 2:a=0,o=0,B=s,f.label=3;case 3:return o<B.length?(l=B[o],l.style!==0&&!jA(l.color)&&l.width>0?l.style!==2?[3,5]:[4,this.renderDashedDottedBorder(l.color,l.width,a,t.curves,2)]:[3,11]):[3,13];case 4:return f.sent(),[3,11];case 5:return l.style!==3?[3,7]:[4,this.renderDashedDottedBorder(l.color,l.width,a,t.curves,3)];case 6:return f.sent(),[3,11];case 7:return l.style!==4?[3,9]:[4,this.renderDoubleBorder(l.color,l.width,a,t.curves)];case 8:return f.sent(),[3,11];case 9:return[4,this.renderSolidBorder(l.color,a,t.curves)];case 10:f.sent(),f.label=11;case 11:a++,f.label=12;case 12:return o++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,r,n,s,i){return lA(this,void 0,void 0,function(){var a,o,B,l,u,f,d,g,w,T,h,p,E,I,y,C,y,C;return oA(this,function(L){return this.ctx.save(),a=bu(s,n),o=_s(s,n),i===2&&(this.path(o),this.ctx.clip()),pA(o[0])?(B=o[0].start.x,l=o[0].start.y):(B=o[0].x,l=o[0].y),pA(o[1])?(u=o[1].end.x,f=o[1].end.y):(u=o[1].x,f=o[1].y),n===0||n===2?d=Math.abs(B-u):d=Math.abs(l-f),this.ctx.beginPath(),i===3?this.formatPath(a):this.formatPath(o.slice(0,2)),g=r<3?r*3:r*2,w=r<3?r*2:r,i===3&&(g=r,w=r),T=!0,d<=g*2?T=!1:d<=g*2+w?(h=d/(2*g+w),g*=h,w*=h):(p=Math.floor((d+w)/(g+w)),E=(d-p*g)/(p-1),I=(d-(p+1)*g)/p,w=I<=0||Math.abs(w-E)<Math.abs(w-I)?E:I),T&&(i===3?this.ctx.setLineDash([0,g+w]):this.ctx.setLineDash([g,w])),i===3?(this.ctx.lineCap="round",this.ctx.lineWidth=r):this.ctx.lineWidth=r*2+1.1,this.ctx.strokeStyle=sA(t),this.ctx.stroke(),this.ctx.setLineDash([]),i===2&&(pA(o[0])&&(y=o[3],C=o[0],this.ctx.beginPath(),this.formatPath([new m(y.end.x,y.end.y),new m(C.start.x,C.start.y)]),this.ctx.stroke()),pA(o[1])&&(y=o[1],C=o[2],this.ctx.beginPath(),this.formatPath([new m(y.end.x,y.end.y),new m(C.start.x,C.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(t){return lA(this,void 0,void 0,function(){var r;return oA(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=sA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),r=Hu(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e})(Gi),Mu=function(A){return A instanceof mi||A instanceof pi?!0:A instanceof gn&&A.type!==Mt&&A.type!==Rt},Ou=function(A,e){switch(A){case 0:return Nt(e);case 2:return hu(e);default:return Vt(e)}},Gu=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},Nu=["-apple-system","system-ui"],Vu=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Nu.indexOf(e)===-1}):A},Pu=(function(A){bA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.canvas=r.canvas?r.canvas:document.createElement("canvas"),n.ctx=n.canvas.getContext("2d"),n.options=r,n.canvas.width=Math.floor(r.width*r.scale),n.canvas.height=Math.floor(r.height*r.scale),n.canvas.style.width=r.width+"px",n.canvas.style.height=r.height+"px",n.ctx.scale(n.options.scale,n.options.scale),n.ctx.translate(-r.x,-r.y),n.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+r.width+"x"+r.height+" at "+r.x+","+r.y+") with scale "+r.scale),n}return e.prototype.render=function(t){return lA(this,void 0,void 0,function(){var r,n;return oA(this,function(s){switch(s.label){case 0:return r=en(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,ku(r)];case 1:return n=s.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=sA(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(n,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},e})(Gi),ku=function(A){return new Promise(function(e,t){var r=new Image;r.onload=function(){e(r)},r.onerror=t,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(A))})},Xu=(function(){function A(e){var t=e.id,r=e.enabled;this.id=t,this.enabled=r,this.start=Date.now()}return A.prototype.debug=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.debug=="function"?console.debug.apply(console,ut([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.getTime=function(){return Date.now()-this.start},A.prototype.info=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&typeof window<"u"&&window.console&&typeof console.info=="function"&&console.info.apply(console,ut([this.id,this.getTime()+"ms"],e))},A.prototype.warn=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.warn=="function"?console.warn.apply(console,ut([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.prototype.error=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.enabled&&(typeof window<"u"&&window.console&&typeof console.error=="function"?console.error.apply(console,ut([this.id,this.getTime()+"ms"],e)):this.info.apply(this,e))},A.instances={},A})(),Wu=(function(){function A(e,t){var r;this.windowBounds=t,this.instanceName="#"+A.instanceCount++,this.logger=new Xu({id:this.instanceName,enabled:e.logging}),this.cache=(r=e.cache)!==null&&r!==void 0?r:new uu(this,e)}return A.instanceCount=1,A})(),Ju=function(A,e){return e===void 0&&(e={}),Yu(A,e)};typeof window<"u"&&Si.setContext(window);var Yu=function(A,e){return lA(void 0,void 0,void 0,function(){var t,r,n,s,i,a,o,B,l,u,f,d,g,w,T,h,p,E,I,y,L,C,L,_,K,S,M,P,R,O,tA,q,J,EA,uA,dA,DA,_A,fA,HA;return oA(this,function(UA){switch(UA.label){case 0:if(!A||typeof A!="object")return[2,Promise.reject("Invalid element provided as first argument")];if(t=A.ownerDocument,!t)throw new Error("Element is not attached to a Document");if(r=t.defaultView,!r)throw new Error("Document is not attached to a Window");return n={allowTaint:(_=e.allowTaint)!==null&&_!==void 0?_:!1,imageTimeout:(K=e.imageTimeout)!==null&&K!==void 0?K:15e3,proxy:e.proxy,useCORS:(S=e.useCORS)!==null&&S!==void 0?S:!1},s=Gr({logging:(M=e.logging)!==null&&M!==void 0?M:!0,cache:e.cache},n),i={windowWidth:(P=e.windowWidth)!==null&&P!==void 0?P:r.innerWidth,windowHeight:(R=e.windowHeight)!==null&&R!==void 0?R:r.innerHeight,scrollX:(O=e.scrollX)!==null&&O!==void 0?O:r.pageXOffset,scrollY:(tA=e.scrollY)!==null&&tA!==void 0?tA:r.pageYOffset},a=new VA(i.scrollX,i.scrollY,i.windowWidth,i.windowHeight),o=new Wu(s,a),B=(q=e.foreignObjectRendering)!==null&&q!==void 0?q:!1,l={allowTaint:(J=e.allowTaint)!==null&&J!==void 0?J:!1,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:B,copyStyles:B},o.logger.debug("Starting document clone with size "+a.width+"x"+a.height+" scrolled to "+-a.left+","+-a.top),u=new Ks(o,A,l),f=u.clonedReferenceElement,f?[4,u.toIFrame(t,a)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return d=UA.sent(),g=wn(f)||Zl(f)?va(f.ownerDocument):kt(o,f),w=g.width,T=g.height,h=g.left,p=g.top,E=Zu(o,f,e.backgroundColor),I={canvas:e.canvas,backgroundColor:E,scale:(uA=(EA=e.scale)!==null&&EA!==void 0?EA:r.devicePixelRatio)!==null&&uA!==void 0?uA:1,x:((dA=e.x)!==null&&dA!==void 0?dA:0)+h,y:((DA=e.y)!==null&&DA!==void 0?DA:0)+p,width:(_A=e.width)!==null&&_A!==void 0?_A:Math.ceil(w),height:(fA=e.height)!==null&&fA!==void 0?fA:Math.ceil(T)},B?(o.logger.debug("Document cloned, using foreign object rendering"),L=new Pu(o,I),[4,L.render(f)]):[3,3];case 2:return y=UA.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+h+","+p+" with size "+w+"x"+T+" using computed rendering"),o.logger.debug("Starting DOM parsing"),C=Hi(o,f),E===C.styles.backgroundColor&&(C.styles.backgroundColor=NA.TRANSPARENT),o.logger.debug("Starting renderer for element at "+I.x+","+I.y+" with size "+I.width+"x"+I.height),L=new Ru(o,I),[4,L.render(C)];case 4:y=UA.sent(),UA.label=5;case 5:return(!((HA=e.removeContainer)!==null&&HA!==void 0)||HA)&&(Ks.destroy(d)||o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),o.logger.debug("Finished rendering"),[2,y]}})})},Zu=function(A,e,t){var r=e.ownerDocument,n=r.documentElement?Je(A,getComputedStyle(r.documentElement).backgroundColor):NA.TRANSPARENT,s=r.body?Je(A,getComputedStyle(r.body).backgroundColor):NA.TRANSPARENT,i=typeof t=="string"?Je(A,t):t===null?NA.TRANSPARENT:4294967295;return e===r.documentElement?jA(n)?jA(s)?i:s:n:i},Ni=Ju;var Vi=!1,qu=new Set(["AREA","BASE","BR","COL","EMBED","HR","IMG","INPUT","LINK","META","PARAM","SOURCE","TRACK","WBR"]);function ju(){if(Vi)return;Vi=!0;let A=CanvasRenderingContext2D.prototype.createPattern;CanvasRenderingContext2D.prototype.createPattern=function(e,t){return e&&"width"in e&&"height"in e&&(e.width===0||e.height===0)?null:A.call(this,e,t)}}function ki(){ju()}function zu(A,e){if(!A.id)return;let t=e.getElementById(A.id);t instanceof HTMLElement&&(t.style.opacity="1",t.style.visibility="visible",t.querySelectorAll("[data-start]").forEach(r=>{r.style.visibility="visible"}))}function $u(A){let e=A.ownerDocument.defaultView;e&&[A,...Array.from(A.querySelectorAll("*"))].forEach(t=>{if(qu.has(t.tagName))return;let r=e.getComputedStyle(t);if(r.boxShadow==="none"||r.transform==="none")return;let n=A.ownerDocument.createElement("div");n.setAttribute("data-hyper-shader-shadow-shim",""),n.style.cssText=["position:absolute","inset:0","border-radius:inherit",`box-shadow:${r.boxShadow}`,"background:transparent","pointer-events:none","z-index:0"].join(";"),r.position==="static"&&(t.style.position="relative"),t.style.boxShadow="none",t.insertBefore(n,t.firstChild)})}function tt(){if(typeof document>"u")return!1;let A=document.createElement("canvas");if(A.setAttribute("layoutsubtree",""),!("layoutSubtree"in A))return!1;let e=A.getContext("2d");return e!=null&&typeof e.drawElementImage=="function"}async function Af(A,e,t,r){let n=document.createElement("canvas");n.width=t,n.height=r,n.setAttribute("layoutsubtree",""),n.style.cssText=`position:fixed;top:0;left:0;width:${t}px;height:${r}px;z-index:-9999;pointer-events:none;opacity:0`,n.appendChild(A.cloneNode(!0)),document.body.appendChild(n);try{await new Promise(o=>requestAnimationFrame(()=>requestAnimationFrame(()=>o())));let s=n.getContext("2d");s.fillStyle=e,s.fillRect(0,0,t,r);let i=n.firstElementChild;i&&s.drawElementImage(i,0,0,t,r);let a=document.createElement("canvas");return a.width=t,a.height=r,a.getContext("2d").drawImage(n,0,0),n.remove(),a}catch(s){throw n.remove(),s}}function Xi(A,e,t=ue,r=fe,n={}){return tt()&&!n.preferBrowserPaint?Af(A,e,t,r).catch(()=>Pi(A,e,t,r,n)):Pi(A,e,t,r,n)}function Pi(A,e,t,r,n={}){let s=i=>Ni(A,{width:t,height:r,scale:n.scale??1,backgroundColor:e,logging:!1,foreignObjectRendering:i,useCORS:!0,allowTaint:!0,onclone:a=>{if(!A.id)return;let o=a.getElementById(A.id);o instanceof HTMLElement&&$u(o),n.forceVisible&&zu(A,a)},ignoreElements:a=>a.tagName==="CANVAS"||a.hasAttribute("data-no-capture")});return n.preferBrowserPaint===!0?s(!0).catch(()=>s(!1)):s(!1)}var Ar="__hf-page-side-compositor",Qn="__hf_page_compositor_v1__";function Cn(){if(typeof window>"u"||typeof document>"u"||!tt())return!1;let A=document.createElement("canvas"),e=A.getContext("webgl")||A.getContext("experimental-webgl");return e?(e.getExtension("WEBGL_lose_context")?.loseContext(),!0):!1}function er(A){if(typeof window>"u")return!1;if(window.__HF_PAGE_COMPOSITOR_CANARY__=Qn,!Cn())return console.warn("[HyperShader] page-side compositing requested but drawElementImage/WebGL is not available; falling back to opacity-flip mode (Node-side layered pipeline will handle the blend)."),!1;if(document.getElementById(Ar))return!0;let{scenes:e,transitions:t,accentColors:r,width:n,height:s,defaultDuration:i}=A,a=document.createElement("canvas");a.id=Ar,a.width=n,a.height=s,a.style.cssText="position:fixed;top:0;left:0;width:100%;height:100%;z-index:2147483646;pointer-events:none;display:none;",document.body.appendChild(a);let o=at(a,n,s);if(!o)return console.warn("[HyperShader] page-side compositor: WebGL context unavailable."),a.remove(),!1;let B=ot(o),l=new Map;for(let S of t)if(!l.has(S.shader))try{l.set(S.shader,Bt(o,lt(S.shader)))}catch(M){console.warn(`[HyperShader] page-side compositor: failed to compile "${S.shader}":`,M)}let u=[];for(let S=0;S<t.length;S++){let M=t[S];if(!M)continue;let P=e[S],R=e[S+1],O=l.get(M.shader);!P||!R||!O||u.push({time:M.time,duration:M.duration??i,shader:M.shader,fromSceneId:P,toSceneId:R,prog:O})}if(u.length===0)return a.remove(),!1;let f=te(o),d=te(o),g=document.createElement("canvas"),w=document.createElement("canvas");for(let S of[g,w])S.width=n,S.height=s,S.setAttribute("layoutsubtree",""),S.style.cssText="position:fixed;top:0;left:0;width:"+n+"px;height:"+s+"px;z-index:-9998;pointer-events:none;",document.body.appendChild(S);function T(S){for(let M of u)if(S>=M.time&&S<=M.time+M.duration)return M;return null}let h=null,p=0,E=window;async function I(){let S=h;if(!S)return E.__hf_page_composite_pending=!1,!1;let M=document.getElementById(S.fromSceneId),P=document.getElementById(S.toSceneId);if(!(M instanceof HTMLElement)||!(P instanceof HTMLElement))return E.__hf_page_composite_pending=!1,!1;for(;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);g.appendChild(M.cloneNode(!0)),w.appendChild(P.cloneNode(!0));let R=[];for(let O of[g,w])for(let tA of O.querySelectorAll("img"))tA.src&&tA.src.startsWith("data:")&&typeof tA.decode=="function"&&R.push(tA.decode().catch(()=>{}));return R.length>0&&await Promise.all(R),!0}function y(){let S=h;if(!S)return E.__hf_page_composite_pending=!1,!1;let M=g.firstElementChild,P=w.firstElementChild;if(!M||!P)return E.__hf_page_composite_pending=!1,!1;let R=g.getContext("2d"),O=w.getContext("2d");if(!R?.drawElementImage||!O?.drawElementImage)return E.__hf_page_composite_pending=!1,!1;try{R.fillStyle=A.bgColor,R.fillRect(0,0,n,s),R.drawElementImage(M,0,0,n,s),O.fillStyle=A.bgColor,O.fillRect(0,0,n,s),O.drawElementImage(P,0,0,n,s)}catch(tA){return console.warn("[HyperShader] page-side compositor: drawElementImage failed:",tA),E.__hf_page_composite_pending=!1,!1}ge(o,f,g),ge(o,d,w);try{ct(o,B,S.prog,f,d,p,r,n,s),a.style.display="block"}catch(tA){console.warn("[HyperShader] page-side compositor: renderShader failed:",tA),a.style.display="none"}return E.__hf_page_composite_pending=!1,!0}E.__hf_page_composite_resolve=y,E.__hf_page_composite_prepare=I;let C=window,L=()=>{if(!C.__hf)return;let S=C.__hf.seek;if(typeof S!="function")return;let M=P=>{let R=S.call(C.__hf,P),O=T(P);if(!O){for(a.style.display="none",E.__hf_page_composite_pending=!1;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);return R}return h=O,p=O.duration===0?1:Math.min(1,Math.max(0,(P-O.time)/O.duration)),E.__hf_page_composite_pending=!0,R};C.__hf.seek=M},_=0,K=window.setInterval(()=>{_+=1,C.__hf?.seek?(L(),window.clearInterval(K)):_>200&&(window.clearInterval(K),console.warn("[HyperShader] page-side compositor: window.__hf.seek never appeared after 10s; the engine bridge did not initialize. Falling back to opacity-flip mode."))},50);return!0}var nr=.7,Wi="power2.inOut",ef="attribute vec2 a_pos; varying vec2 v_uv; void main(){v_uv=a_pos*0.5+0.5; gl_Position=vec4(a_pos,0,1);}",tr=["Preparing scene transitions","Sampling outgoing scene motion","Sampling incoming scene motion","Caching transition frames","Finalizing transition preview"],tf="hyper-shader-preview-cache",SA="frames",rf=1,nf="v1",Ji=2,Yi=1.25,sf=1200;function af(A){let e=A.replace("#","");if(e.length<6)return[.5,.5,.5];let t=parseInt(e.slice(0,2),16)/255,r=parseInt(e.slice(2,4),16)/255,n=parseInt(e.slice(4,6),16)/255;return Number.isNaN(t)||Number.isNaN(r)||Number.isNaN(n)?[.5,.5,.5]:[t,r,n]}function ta(A){let[e,t,r]=af(A);return{accent:[e,t,r],dark:[e*.35,t*.35,r*.35],bright:[Math.min(1,e*1.5+.2),Math.min(1,t*1.5+.2),Math.min(1,r*1.5+.2)]}}function oe(A,e,t){return Math.min(t,Math.max(e,A))}function of(A,e){return A===void 0?e:Number.isFinite(A)&&A>0?A:e}var Bf="__hf_shader_capture_scale",cf="__hf_shader_loading";function ra(A,e){let t=window[A];if(typeof t=="string")return t;if(typeof t=="number"&&Number.isFinite(t))return String(t);try{return new URLSearchParams(window.location.search).get(e)}catch{return null}}function lf(){let A=ra("__HF_SHADER_CAPTURE_SCALE",Bf),e=A===null?NaN:Number(A);return oe(Number.isFinite(e)&&e>0?e:1,.25,1)}function uf(){let A=ra("__HF_SHADER_LOADING",cf)?.trim().toLowerCase();return A==="player"||A==="true"||A==="1"?"player":A==="none"||A==="false"||A==="0"||A==="off"?"none":"internal"}function ir(A){let e=2166136261;for(let t=0;t<A.length;t+=1)e^=A.charCodeAt(t),e=Math.imul(e,16777619);return(e>>>0).toString(16).padStart(8,"0")}function ff(A){let e=Array.from(A.querySelectorAll("style")).map(r=>r.textContent||"").join(`
|
|
7
|
+
`),t=Array.from(A.querySelectorAll('link[rel~="stylesheet"]')).map(r=>`${r.href}:${r.getAttribute("integrity")||""}`).join(`
|
|
8
|
+
`);return ir(`${e}
|
|
9
|
+
${t}`)}function gf(A){let e=Array.from(A.querySelectorAll('meta[name="hyperframes-project-signature"]')).map(r=>r.getAttribute("content")||"").join(`
|
|
10
|
+
`),t=Array.from(A.querySelectorAll("script")).map(r=>`${[r.type,r.src,r.getAttribute("integrity")||"",r.getAttribute("crossorigin")||"",r.getAttribute("data-hyperframes-runtime")||""].join(":")}
|
|
11
|
+
${r.src?"":r.textContent||""}`).join(`
|
|
12
|
+
`);return ir(`${e}
|
|
13
|
+
${t}`)}function Zi(A){let e=document.getElementById(A);return e?ir(`${ff(document)}
|
|
14
|
+
${gf(document)}
|
|
15
|
+
${wf(e)}`):"missing"}function qi(A,e){for(let t of e)A.style.removeProperty(t);A.getAttribute("style")?.trim()===""&&A.removeAttribute("style")}function wf(A){let e=A.cloneNode(!0);return qi(e,["opacity","visibility","pointer-events"]),e.querySelectorAll("[data-start]").forEach(t=>{qi(t,["visibility"])}),e.outerHTML}function rr(A,e,t){return`${A}:sample:${e}:${t}`}function Qf(){return typeof indexedDB>"u"?Promise.resolve(null):new Promise(A=>{let e=indexedDB.open(tf,rf);e.onupgradeneeded=()=>{let t=e.result;t.objectStoreNames.contains(SA)||t.createObjectStore(SA,{keyPath:"key"})},e.onerror=()=>A(null),e.onblocked=()=>A(null),e.onsuccess=()=>{let t=e.result;t.onversionchange=()=>{t.close(),rt=null},A(t)}})}var rt=null;function sr(A){try{A?.close()}catch{}rt=null}function hn(){return rt=rt||Qf(),rt}async function dn(A){let e=await hn();return e?new Promise(t=>{try{let n=e.transaction(SA,"readonly").objectStore(SA).get(A);n.onerror=()=>t(null),n.onsuccess=()=>{let s=n.result;s&&typeof s=="object"&&"blob"in s&&s.blob instanceof Blob?t(s):t(null)}}catch{sr(e),t(null)}}):null}async function Cf(A){let e=await hn();return e?new Promise(t=>{try{let r=e.transaction(SA,"readwrite");r.oncomplete=()=>t(!0),r.onerror=()=>t(!1),r.objectStore(SA).put(A)}catch{sr(e),t(!1)}}):!1}function ji(A){return new Promise(e=>{try{A.toBlob(t=>e(t),"image/png")}catch{e(null)}})}async function df(A,e,t=sf){let r=await hn();if(!r)return;let n=await new Promise(w=>{try{let h=r.transaction(SA,"readonly").objectStore(SA).getAll();h.onerror=()=>w([]),h.onsuccess=()=>{let p=[];for(let E of h.result)if(E&&typeof E=="object"&&"key"in E&&typeof E.key=="string"){let I="updatedAt"in E&&typeof E.updatedAt=="number"?E.updatedAt:0;p.push({key:E.key,updatedAt:I})}w(p)}}catch{sr(r),w([])}}),s=`${A}:`,i=w=>{for(let T of e)if(w.startsWith(`${T}:sample:`))return!0;return!1},a=n.filter(w=>w.key.startsWith(s)&&!i(w.key)).map(w=>w.key),o=new Set(a),B=n.filter(w=>!o.has(w.key)),l=B.filter(w=>i(w.key)).length,u=B.filter(w=>!i(w.key)).sort((w,T)=>T.updatedAt-w.updatedAt),f=Math.max(0,t-l),d=u.length>f?u.slice(f).map(w=>w.key):[],g=Array.from(new Set([...a,...d]));g.length!==0&&await new Promise(w=>{try{let T=r.transaction(SA,"readwrite");T.oncomplete=()=>w(),T.onerror=()=>w();let h=T.objectStore(SA);for(let p of g)h.delete(p)}catch{sr(r),w()}})}function zi(A){return typeof createImageBitmap=="function"?createImageBitmap(A):new Promise((e,t)=>{let r=URL.createObjectURL(A),n=new Image;n.onload=()=>{URL.revokeObjectURL(r),e(n)},n.onerror=()=>{URL.revokeObjectURL(r),t(new Error("[HyperShader] Failed to decode cached snapshot"))},n.src=r})}function $i(A){typeof ImageBitmap<"u"&&A instanceof ImageBitmap&&A.close()}function Aa(A,e,t){let r=te(A);return A.bindTexture(A.TEXTURE_2D,r),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,e,t,0,A.RGBA,A.UNSIGNED_BYTE,null),r}function ea(A,e){let t=A.createFramebuffer();if(!t)throw new Error("[HyperShader] Failed to create framebuffer");return A.bindFramebuffer(A.FRAMEBUFFER,t),A.framebufferTexture2D(A.FRAMEBUFFER,A.COLOR_ATTACHMENT0,A.TEXTURE_2D,e,0),A.bindFramebuffer(A.FRAMEBUFFER,null),t}function Uf(A,e,t){let r=A?.ownerDocument||document,n=A||r.body;if(!n)return null;n.querySelector("[data-hyper-shader-loading]")?.remove();let s=r.createElement("div");s.setAttribute("data-hyper-shader-loading",""),s.setAttribute("data-hyperframes-ignore",""),s.setAttribute("data-hyperframes-picker-block",""),s.setAttribute("data-hf-ignore",""),s.setAttribute("data-no-capture",""),s.setAttribute("data-no-inspect",""),s.setAttribute("data-no-pick",""),s.setAttribute("draggable","false"),s.setAttribute("role","status"),s.setAttribute("aria-label","Preparing scene transitions"),s.style.cssText=["position:absolute","inset:0",`width:${e}px`,`height:${t}px`,"z-index:2147483647","display:none","place-items:center","opacity:1","transition:opacity 240ms ease-out","background:#030504","pointer-events:auto","color:#f4f7fb","cursor:default","touch-action:none","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";");let i=I=>{I.preventDefault(),I.stopPropagation()};for(let I of["selectstart","dragstart","pointerdown","mousedown","touchstart"])s.addEventListener(I,i,{capture:!0});let a=r.createElement("div");a.setAttribute("draggable","false"),a.style.cssText=["display:grid","grid-template-rows:172px 72px 44px 44px 54px","justify-items:center","align-items:center","gap:0","width:min(1040px,82%)","padding:42px","box-sizing:border-box","text-align:center","font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";");let o=r.createElement("div");o.setAttribute("data-hf-loader-mark-frame",""),o.style.cssText=["width:172px","height:172px","display:grid","place-items:center","overflow:visible","transform-origin:50% 50%","will-change:transform,opacity","user-select:none","-webkit-user-select:none","-webkit-user-drag:none"].join(";"),o.innerHTML=['<svg width="156" height="156" viewBox="0 0 100 100" fill="none" aria-hidden="true" draggable="false" style="display:block;overflow:visible;filter:drop-shadow(0 0 7px rgba(79,219,94,.2));user-select:none;-webkit-user-select:none">','<g data-hf-loader-mark transform="translate(50 50)">','<g data-hf-loader-core transform="scale(1)" opacity=".92">','<g transform="translate(-50 -50)">','<path data-hf-loader-left d="M10.1851 57.8021L33.1145 73.8313C36.2202 75.9978 41.5173 73.5433 42.4816 69.4984L51.7611 30.4271C52.7253 26.3822 48.5802 23.9277 44.4602 26.0942L13.917 42.1235C6.96677 45.7676 4.97564 54.1579 10.1851 57.8021Z" fill="url(#hyper-shader-loader-grad-left)"/>','<path data-hf-loader-right d="M87.5129 57.5141L56.9696 73.5433C52.8371 75.7098 48.7046 73.2553 49.6688 69.2104L58.9483 30.1391C59.9125 26.0942 65.2097 23.6397 68.3154 25.8062L91.2447 41.8354C96.4668 45.4796 94.4631 53.8699 87.5129 57.5141Z" fill="url(#hyper-shader-loader-grad-right)"/>',"</g>","</g>","</g>","<defs>",'<linearGradient id="hyper-shader-loader-grad-left" x1="48.5676" y1="25" x2="44.7804" y2="71.9384" gradientUnits="userSpaceOnUse">','<stop stop-color="#06E3FA"/>','<stop offset="1" stop-color="#4FDB5E"/>',"</linearGradient>",'<linearGradient id="hyper-shader-loader-grad-right" x1="54.8282" y1="73.8392" x2="72.0989" y2="32.8932" gradientUnits="userSpaceOnUse">','<stop stop-color="#06E3FA"/>','<stop offset="1" stop-color="#4FDB5E"/>',"</linearGradient>","</defs>","</svg>"].join("");let B=o.querySelector("svg");if(!B)return null;B.setAttribute("draggable","false");let l=r.createElement("div");l.style.cssText=["width:100%","height:72px","display:flex","align-items:center","justify-content:center","overflow:hidden","white-space:nowrap","text-overflow:ellipsis","font:600 44px/1.15 Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif","letter-spacing:0","text-align:center","color:#f4f7fb"].join(";");let u=r.createElement("span");u.textContent=tr[0]??"Preparing scene transitions";let f=r.createElement("div");f.textContent="Sampling animated scene frames so shader transitions stay in motion.",f.style.cssText=["width:min(760px,100%)","height:44px","overflow:hidden","white-space:nowrap","text-overflow:ellipsis","color:rgba(244,247,251,0.64)","font:400 24px/1.5 Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif"].join(";"),l.appendChild(u);let d=r.createElement("div");d.setAttribute("aria-hidden","true"),d.style.cssText=["width:min(520px,100%)","height:10px","overflow:hidden","border-radius:999px","background:rgba(255,255,255,0.1)"].join(";");let g=r.createElement("div");g.style.cssText=["width:100%","height:100%","transform:scaleX(0)","transform-origin:left center","border-radius:inherit","background:linear-gradient(90deg,#06e3fa,#4fdb5e)","transition:transform 160ms ease"].join(";");let w=r.createElement("div");w.style.cssText=["width:min(560px,100%)","height:54px","overflow:hidden","display:grid","grid-template-rows:repeat(2,27px)","font:500 18px/27px 'IBM Plex Mono','SF Mono','Fira Code',monospace","font-variant-numeric:tabular-nums","color:rgba(244,247,251,0.48)"].join(";");let T=I=>{let y=r.createElement("div");y.style.cssText=["display:grid","grid-template-columns:minmax(0,1fr) auto","align-items:center","column-gap:28px","width:100%","height:27px","white-space:nowrap"].join(";");let C=r.createElement("span");C.textContent=I,C.style.cssText=["overflow:hidden","text-overflow:ellipsis","text-align:left","min-width:0"].join(";");let L=r.createElement("span");return L.style.cssText=["min-width:76px","text-align:right"].join(";"),y.appendChild(C),y.appendChild(L),w.appendChild(y),{row:y,label:C,value:L}},h=T("transition"),p=T("transition frame");d.appendChild(g),a.appendChild(o),a.appendChild(l),a.appendChild(f),a.appendChild(d),a.appendChild(w),s.appendChild(a),n.appendChild(s);let E=null;return{show:()=>{E&&(clearTimeout(E),E=null),s.style.display="grid",s.style.opacity="1",s.style.pointerEvents="auto"},update:I=>{let{progress:y,total:C}=I,L=C>0?oe(y/C,0,1):0,_=Math.min(tr.length-1,Math.floor(L*tr.length)),K=tr[_]??"Preparing scene transitions";u.textContent=K,g.style.transform=`scaleX(${L})`;let S=I.currentTransition!==void 0&&I.transitionTotal!==void 0?`${I.currentTransition}/${I.transitionTotal}`:C>0?`${y}/${C}`:"",M=I.transitionFrame!==void 0&&I.transitionFrames!==void 0?`${I.transitionFrame}/${I.transitionFrames}`:"",P=I.phase==="cached"?"loading cached transition frames":I.phase==="finalizing"?"finalizing":"rendering transition frames";h.label.textContent=I.currentTransition!==void 0?"transition":"transition frames",h.value.textContent=S,p.label.textContent=P,p.value.textContent=M,p.row.style.visibility=M?"visible":"hidden",s.setAttribute("aria-valuenow",String(Math.round(L*100)))},hide:()=>{E&&clearTimeout(E),s.style.display!=="none"&&(s.style.opacity="0",s.style.pointerEvents="none",E=setTimeout(()=>{s.style.display="none",s.style.opacity="1",s.style.pointerEvents="auto",E=null},240))}}}function na(A){let{bgColor:e,scenes:t,transitions:r}=A;if(t.length!==r.length+1)throw new Error(`[HyperShader] init(): expected scenes.length === transitions.length + 1, got scenes=${t.length}, transitions=${r.length}`);if(typeof document<"u"){let c=[],Q=[];for(let U of t){let F=document.getElementById(U);F?F.classList.contains("scene")||Q.push(U):c.push(U)}if(c.length>0)throw new Error(`[HyperShader] init(): scene ids not found in DOM: ${c.join(", ")}`);if(Q.length>0)throw new Error(`[HyperShader] init(): elements found but missing .scene class: ${Q.join(", ")}`)}if(typeof window<"u"){let c=window;c.__hf&&(c.__hf.transitions=r.map((Q,U)=>({time:Q.time,duration:Q.duration??nr,shader:Q.shader,ease:Q.ease??Wi,fromScene:t[U]??"",toScene:t[U+1]??""})))}let n=A.accentColor?ta(A.accentColor):{accent:[1,.6,.2],dark:[.4,.15,0],bright:[1,.85,.5]},s=document.querySelector("[data-composition-id]"),i=A.compositionId||s?.getAttribute("data-composition-id")||"main",a=Number(s?.getAttribute("data-width")),o=Number(s?.getAttribute("data-height")),B=Number.isFinite(a)&&a>0?a:ue,l=Number.isFinite(o)&&o>0?o:fe;if(typeof window<"u"&&!!window.__HF_VIRTUAL_TIME__)return hf(A,t,r,i,s);let f={active:!1,prog:null,progress:0,transitionIndex:-1},d=document.getElementById("gl-canvas");d||(d=document.createElement("canvas"),d.id="gl-canvas",d.style.cssText="position:absolute;top:0;left:0;z-index:100;pointer-events:none;display:none;",(s||document.body).appendChild(d)),d.width=B,d.height=l,d.style.width=`${B}px`,d.style.height=`${l}px`;let g=at(d,B,l);if(!g){console.warn("[HyperShader] WebGL unavailable \u2014 shader transitions disabled.");let c=A.timeline||gsap.timeline({paused:!0});return Un(i,c,A.timeline),c}let w=ot(g),T=new Map;for(let c of r)if(!T.has(c.shader))try{T.set(c.shader,Bt(g,lt(c.shader)))}catch(Q){console.error(`[HyperShader] Failed to compile "${c.shader}":`,Q)}let h=d,p=oe(of(A.previewCaptureFps,30),1,60),E=lf(),I=uf(),y=Math.max(1,Math.round(B*E)),C=Math.max(1,Math.round(l*E)),L=[],_=Rn(g,ef,["precision mediump float;","varying vec2 v_uv;","uniform sampler2D u_a;","uniform sampler2D u_b;","uniform float u_mix;","void main(){","gl_FragColor=mix(texture2D(u_a,v_uv),texture2D(u_b,v_uv),u_mix);","}"].join("")),K={a:g.getUniformLocation(_,"u_a"),b:g.getUniformLocation(_,"u_b"),mix:g.getUniformLocation(_,"u_mix"),pos:g.getAttribLocation(_,"a_pos")},S=Aa(g,y,C),M=Aa(g,y,C),P=ea(g,S),R=ea(g,M),O=null,tA=()=>I!=="internal"?null:(O=O||Uf(s,B,l),O),q=!1,J=!1,EA=0,uA=0,dA=new WeakMap,DA=()=>{uA=performance.now()+120},_A=c=>{dA.has(c)||dA.set(c,c.style.pointerEvents)},fA=(c,Q,U)=>{_A(c),DA(),c.style.opacity=U,c.style.visibility=Q?"visible":"hidden",c.style.pointerEvents=Q?dA.get(c)??"":"none"},HA=(c,Q,U,F)=>{t.forEach(b=>{let x=document.getElementById(b);x&&(b===c?fA(x,!0,U):b===Q?fA(x,!0,F):fA(x,!1,"0"))})},UA=c=>{c.width=0,c.height=0},RA=c=>Xi(c,e,B,l,{forceVisible:!0,scale:E}),$A=()=>new Promise(c=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>c())})}),Fn=c=>!!(c?.fromTex&&c.toTex),sa=(c,Q)=>{if(c.frames.length===0)return null;let U=oe(Q,0,1)*(c.frames.length-1),F=Math.floor(U),b=Math.ceil(U),x=c.frames[F]??c.frames[c.frames.length-1],nA=c.frames[b]??x;return!Fn(x)||!Fn(nA)?null:{a:x,b:nA,mix:U-F}},pn=(c,Q,U,F)=>{g.bindFramebuffer(g.FRAMEBUFFER,c),g.viewport(0,0,y,C),g.useProgram(_),g.activeTexture(g.TEXTURE0),g.bindTexture(g.TEXTURE_2D,Q),g.uniform1i(K.a,0),g.activeTexture(g.TEXTURE1),g.bindTexture(g.TEXTURE_2D,U),g.uniform1i(K.b,1),g.uniform1f(K.mix,F),g.bindBuffer(g.ARRAY_BUFFER,w),g.enableVertexAttribArray(K.pos),g.vertexAttribPointer(K.pos,2,g.FLOAT,!1,0,0),g.drawArrays(g.TRIANGLE_STRIP,0,4),g.bindFramebuffer(g.FRAMEBUFFER,null),g.viewport(0,0,B,l)},mn=c=>{Ln(c).then(Q=>{if(!Q)return;let U=k.time();U>=c.time&&U<c.time+c.duration&&Ae()})},ia=c=>{let Q=0;for(let U=0;U<L.length;U+=1){let F=L[U];F&&c>=F.time+F.duration&&(Q=U+1)}return oe(Q,0,t.length-1)},vn=c=>{let Q=ia(c);t.forEach((U,F)=>{let b=document.getElementById(U);if(!b)return;let x=F===Q;fA(b,x,x?"1":"0")})},En=(c,Q)=>{let U=document.getElementById(c.fromId),F=document.getElementById(c.toId);if(!U||!F)return;let b=Q*Q*(3-2*Q);h.style.display="none",HA(c.fromId,c.toId,String(1-b),String(b))},Ae=()=>{if(J)return;let c=k.time(),Q=L.find(x=>!x.fallback&&x.ready&&!x.dirty&&!x.textureReady&&c>=x.time-Yi&&c<x.time+x.duration);Q&&mn(Q);let U=L.findIndex(x=>c>=x.time&&c<x.time+x.duration);if(U<0){f.active=!1,f.transitionIndex=-1,h.style.display="none",vn(c);return}let F=L[U];if(!F||F.dirty||!F.ready){h.style.display="none";return}if(F.fallback){f.active=!0,f.transitionIndex=U,f.prog=null,f.progress=oe((c-F.time)/F.duration,0,1),En(F,f.progress);return}if(!F.textureReady){mn(F),h.style.display="none";return}f.active=!0,f.transitionIndex=U,f.prog=F.prog,f.progress=oe((c-F.time)/F.duration,0,1),lr(F);let b=sa(F,f.progress);if(!b){h.style.display="none";return}HA(F.fromId,F.toId,"1","1"),pn(P,b.a.fromTex,b.b.fromTex,b.mix),pn(R,b.a.toTex,b.b.toTex,b.mix),h.style.display="block",ct(g,w,f.prog,S,M,f.progress,n,B,l)},k;if(A.timeline){k=A.timeline;let c=Number(s?.getAttribute("data-duration")||"40");k.to({t:0},{t:1,duration:c,ease:"none",onUpdate:Ae},0)}else k=gsap.timeline({paused:!0,onUpdate:Ae});let ar=k.play.bind(k),or=k.pause.bind(k),nt=k.time.bind(k),Hn=typeof k.seek=="function"?k.seek.bind(k):null,MA=()=>{let c=nt();return typeof c=="number"&&Number.isFinite(c)?c:0},gA=MA(),st=c=>{typeof c=="number"&&Number.isFinite(c)&&(gA=c)},it=(c,Q)=>{let U=c[0];return typeof U=="number"&&Number.isFinite(U)?U:Q},aa=(c,Q)=>{let U=nt(c,Q);return typeof U=="number"?k:U},xA=c=>{EA+=1;try{return c()}finally{EA-=1,uA=performance.now()+120}},IA=!1,PA=[],ee=!1;k.play=((...c)=>{st(c[0]);let Q=it(c,gA);if(!Ie()||!Ba(Q))return ee=!1,IA=!0,PA=c,Kn(),k;let U=xA(()=>ar(...c));return gA=MA(),U}),k.pause=((...c)=>{if(IA=!1,PA=[],st(c[0]),J)return ee=!0,k;let Q=xA(()=>or(...c));return gA=MA(),c.length>0&&Ae(),Q}),k.time=((...c)=>{if(c.length===0)return J||(gA=MA()),gA;if(st(c[0]),J)return k;let Q=xA(()=>nt(...c));return J||(gA=MA()),Ae(),Q}),Hn&&(k.seek=((...c)=>{if(st(c[0]),J)return k;let Q=xA(()=>Hn(...c));return J||(gA=MA()),Ae(),Q})),ki(),d.style.display="none";for(let c=0;c<r.length;c++){let Q=r[c],U=t[c],F=t[c+1];if(!U||!F)continue;let b=T.get(Q.shader);if(!b)continue;let x=Q.duration??nr,nA=Q.ease??Wi,N=Q.time,H=L.length;L.push({index:H,time:N,duration:x,fromId:U,toId:F,prog:b,frames:[],cacheKey:"",dirty:!0,ready:!1,fallback:!1,persisted:!1,textureReady:!1,texturePromise:null,textureGeneration:0,textureAccess:0}),k.call(()=>{xA(()=>{let j=document.getElementById(U),V=document.getElementById(F);if(!j||!V)return;f.prog=b,f.transitionIndex=H,f.progress=0,f.active=!0;let AA=L[H];if(AA?.fallback){En(AA,0);return}h.style.display=!J&&AA?.ready&&!AA.dirty&&AA.textureReady?"block":"none",HA(U,F,"1","1")})},null,N);let D={p:0};k.to(D,{p:1,duration:x,ease:nA,onUpdate:()=>{f.progress=D.p}},N),k.call(()=>{xA(()=>{f.active=!1,f.transitionIndex=-1,h.style.display="none",vn(N+x)})},null,N+x)}let oa=c=>Math.max(2,Math.ceil(c.duration*p)+1),Ie=()=>L.every(c=>c.ready&&!c.dirty),In=c=>{let Q=[],U=new Set,F=x=>{U.has(x.index)||x.fallback||x.dirty||!x.ready||(Q.push(x),U.add(x.index))};for(let x of L)c>=x.time&&c<x.time+x.duration&&F(x);let b=L.find(x=>x.time>=c);b&&F(b);for(let x of L)x.time>=c&&x.time-c<=Yi&&F(x);return Q.slice(0,Ji)},Ba=c=>In(c).every(Q=>Q.textureReady),yn=0,Br=c=>{c.textureGeneration+=1;for(let Q of c.frames)Q.fromTex&&(g.deleteTexture(Q.fromTex),Q.fromTex=null),Q.toTex&&(g.deleteTexture(Q.toTex),Q.toTex=null);c.textureReady=!1},cr=c=>{Br(c),c.texturePromise=null,c.frames=[],c.ready=!1,c.fallback=!1,c.persisted=!1,c.textureReady=!1,c.lastError=void 0},lr=c=>{yn+=1,c.textureAccess=yn},ca=c=>{let Q=L.filter(U=>U!==c&&U.textureReady).sort((U,F)=>U.textureAccess-F.textureAccess);for(;Q.length>=Ji;){let U=Q.shift();if(!U)break;Br(U)}},la=(c,Q)=>{let U=[nf,i,c.index,c.fromId,Zi(c.fromId),c.toId,Zi(c.toId),r[c.index]?.shader||"unknown",c.time,c.duration,Q,p,E,y,C,B,l].join("|");return`${i}:${c.index}:${ir(U)}`},hA=c=>{let Q=window;Q.__hf=Q.__hf||{},Q.__hf.shaderTransitions=Q.__hf.shaderTransitions||{};let F={...Q.__hf.shaderTransitions[i]||{ready:!1,progress:0,total:0,dirtyTransitions:L.length,captureScale:E,textureWidth:y,textureHeight:C,fps:p,loading:!0},...c};if(F.dirtyTransitions=L.filter(b=>b.dirty||!b.ready).length,Q.__hf.shaderTransitions[i]=F,window.parent?.postMessage({source:"hf-preview",type:"shader-transition-state",compositionId:i,state:F},"*"),F.loading){let b=tA();b?.show(),b?.update({progress:F.progress,total:F.total,currentTransition:F.currentTransition,transitionTotal:F.transitionTotal,transitionFrame:F.transitionFrame,transitionFrames:F.transitionFrames,phase:F.phase})}F.ready?O?.hide():F.loading||O?.hide()},bn=()=>J||EA>0||performance.now()<uA||!k.paused(),xn=c=>{if(c.size===0)return;let Q=!1;for(let U of L)!c.has(U.fromId)&&!c.has(U.toId)||(cr(U),U.dirty=!0,U.cacheKey="",Q=!0);Q&&(q=Ie(),hA({ready:q,progress:0,total:0,currentTransition:void 0,transitionTotal:void 0,transitionFrame:void 0,transitionFrames:void 0,phase:void 0,loading:!1}),window.dispatchEvent(new CustomEvent("hyperShader:dirty",{detail:{compositionId:i,scenes:Array.from(c)}})))},ua=()=>{let c=t.map(F=>document.getElementById(F)).filter(F=>F instanceof HTMLElement),Q=[];for(let F of c){let b=new MutationObserver(x=>{if(bn())return;let nA=new Set;for(let N of x){let H=N.target instanceof Element?N.target:N.target.parentElement;if(H)for(let D of c)(D===H||D.contains(H))&&nA.add(D.id)}xn(nA)});b.observe(F,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(b)}let U=new MutationObserver(()=>{bn()||xn(new Set(t))});return U.observe(document.head,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(U),Q},fa=async(c,Q,U)=>{let F=[];for(let b=0;b<Q;b+=1){let[x,nA]=await Promise.all([dn(rr(c.cacheKey,b,"from")),dn(rr(c.cacheKey,b,"to"))]);if(!x||!nA){for(let N of F)g.deleteTexture(N.fromTex),g.deleteTexture(N.toTex);return!1}F.push({sampleIndex:b,fromBlob:x.blob,toBlob:nA.blob,fromTex:null,toTex:null}),U(b+1)}return c.frames=F,c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=!0,c.textureReady=!1,!0},Ln=c=>{if(c.fallback||c.dirty||!c.ready)return Promise.resolve(!1);if(c.textureReady)return lr(c),Promise.resolve(!0);if(c.texturePromise)return c.texturePromise;let Q=c.textureGeneration,U=c.frames,F=[],b=()=>c.textureGeneration!==Q||c.dirty||c.frames!==U,x=()=>{let H=new Set;for(let D of F)H.has(D)||(g.deleteTexture(D),H.add(D));for(let D of U)D.fromTex&&!H.has(D.fromTex)&&(g.deleteTexture(D.fromTex),H.add(D.fromTex)),D.toTex&&!H.has(D.toTex)&&(g.deleteTexture(D.toTex),H.add(D.toTex)),D.fromTex=null,D.toTex=null},nA=async(H,D)=>{let j=D==="from"?H.fromBlob:H.toBlob;if(j)return j;let V=await dn(rr(c.cacheKey,H.sampleIndex,D));if(V?.blob)return V.blob;throw new Error("[HyperShader] Cached transition snapshot blob is unavailable")},N=Promise.resolve(!1);return N=(async()=>{for(let H of U){if(b())return x(),!1;if(!H.fromTex){let D=await nA(H,"from");if(b())return x(),!1;let j=await zi(D),V=te(g);F.push(V);try{if(ge(g,V,j),b())return x(),!1;H.fromTex=V}finally{$i(j)}}if(!H.toTex){let D=await nA(H,"to");if(b())return x(),!1;let j=await zi(D),V=te(g);F.push(V);try{if(ge(g,V,j),b())return x(),!1;H.toTex=V}finally{$i(j)}}c.persisted&&(H.fromBlob=null,H.toBlob=null)}return b()?(x(),!1):(c.textureReady=U.every(H=>!!(H.fromTex&&H.toTex)),c.textureReady&&(lr(c),ca(c)),c.textureReady)})().catch(H=>(x(),b()||(Br(c),c.fallback=!0,c.ready=!0,c.dirty=!1,c.lastError=H instanceof Error?H.message:String(H),hA({ready:Ie(),loading:!1,error:c.lastError})),!1)).finally(()=>{c.texturePromise===N&&(c.texturePromise=null)}),c.texturePromise=N,N},ur=async c=>{for(let Q of In(c))await Ln(Q)},Tn=async(c,Q,U,F)=>F?Cf({key:rr(c.cacheKey,Q,U),blob:F,width:y,height:C,updatedAt:c.index*1e6+Q*2+(U==="to"?1:0)}):!1,ga=async(c,Q,U)=>{cr(c);let F=!0;for(let b=0;b<Q;b+=1){let x=b/(Q-1);xA(()=>{nt(c.time+c.duration*x,!1)}),await $A();let nA=document.getElementById(c.fromId),N=document.getElementById(c.toId);if(!nA||!N)continue;let[H,D]=await Promise.all([RA(nA),RA(N)]),[j,V]=await Promise.all([ji(H),ji(D)]);if(UA(H),UA(D),!j||!V)throw new Error("[HyperShader] Failed to encode transition snapshot");c.frames.push({sampleIndex:b,fromBlob:j,toBlob:V,fromTex:null,toTex:null}),(await Promise.all([Tn(c,b,"from",j),Tn(c,b,"to",V)])).every(Boolean)||(F=!1,c.lastError="[HyperShader] Failed to persist one or more transition snapshots"),U(b+1)}c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=F,c.textureReady=!1},Be=null,Kn=()=>Be||(Be=(async()=>{let c=L.filter(H=>H.dirty||!H.ready),Q=c.map(H=>({cache:H,sampleCount:oa(H)}));for(let H of Q)H.cache.cacheKey=la(H.cache,H.sampleCount);let U=Q.reduce((H,D)=>H+D.sampleCount,0),F=Q[0],b=!1;if(hA({ready:!1,progress:0,total:U,currentTransition:F?1:void 0,transitionTotal:Q.length||void 0,transitionFrame:F?0:void 0,transitionFrames:F?.sampleCount,phase:F?"cached":void 0,loading:b}),c.length===0){if(q=!0,hA({ready:!0,progress:0,total:0,currentTransition:void 0,transitionTotal:void 0,transitionFrame:void 0,transitionFrames:void 0,phase:void 0,loading:!1}),IA){let H=PA,D=it(H,gA);await ur(D),IA&&(IA=!1,PA=[],ee=!1,xA(()=>ar(...H)),gA=MA())}Be=null;return}gA=MA();let x=k.paused(),nA=t.map(H=>{let D=document.getElementById(H);return{scene:D,opacity:D?.style.opacity??"",visibility:D?.style.visibility??"",pointerEvents:D?.style.pointerEvents??""}});J=!0,h.style.display="none",or();let N=0;try{for(let D=0;D<Q.length;D+=1){let j=Q[D];if(!j)continue;let{cache:V,sampleCount:AA}=j,QA=D+1,ce=N;cr(V);try{hA({ready:!1,progress:ce,total:U,currentTransition:QA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:AA,phase:"cached",loading:b}),await fa(V,AA,be=>{N=ce+be,hA({ready:!1,progress:N,total:U,currentTransition:QA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:AA,phase:"cached",loading:b})})||(N=ce,b=!0,hA({ready:!1,progress:N,total:U,currentTransition:QA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:AA,phase:"capturing",loading:!0}),await ga(V,AA,be=>{N=ce+be,hA({ready:!1,progress:N,total:U,currentTransition:QA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:AA,phase:"capturing",loading:!0})}),!V.persisted&&V.lastError&&hA({ready:!1,loading:b,error:V.lastError}))}catch(ye){N=ce+AA,V.fallback=!0,V.ready=!0,V.dirty=!1,V.lastError=ye instanceof Error?ye.message:String(ye),console.warn("[HyperShader] Transition capture failed; using CSS fallback:",ye),hA({ready:!1,progress:N,total:U,currentTransition:QA,transitionTotal:Q.length,transitionFrame:AA,transitionFrames:AA,phase:"finalizing",loading:b,error:V.lastError})}N=ce+AA}df(i,new Set(L.map(D=>D.cacheKey).filter(Boolean))),q=Ie();let H=Q[Q.length-1];hA({ready:q,progress:N,total:U,currentTransition:Q.length,transitionTotal:Q.length,transitionFrame:H?.sampleCount,transitionFrames:H?.sampleCount,phase:"finalizing",loading:!1})}catch(H){console.warn("[HyperShader] Pre-capture failed, keeping DOM fallback visible:",H),q=Ie(),hA({ready:q,progress:N,total:U,phase:"finalizing",loading:!1,error:H instanceof Error?H.message:String(H)})}finally{let H=gA,D=(IA||!x)&&!ee,j=IA?PA:[],V=it(j,H),AA=null;D&&(await ur(V),AA=V),D=(IA||!x)&&!ee,j=IA?PA:[],V=it(j,H),D&&V!==AA&&await ur(V),J=!1,f.active=!1,f.transitionIndex=-1,h.style.display="none",xA(()=>{aa(H,!1)}),gA=H;for(let QA of nA)QA.scene&&(QA.scene.style.opacity=QA.opacity,QA.scene.style.visibility=QA.visibility,QA.scene.style.pointerEvents=QA.pointerEvents);Ae(),window.dispatchEvent(new CustomEvent("hyperShader:ready",{detail:{compositionId:i,progress:N,total:U}})),Be=null,D?(IA=!1,PA=[],ee=!1,xA(()=>ar(...j)),gA=MA()):(IA=!1,PA=[],ee=!1,or())}})(),Be),wa=ua();window.addEventListener("beforeunload",()=>{for(let c of wa)c.disconnect()},{once:!0});let Qa=Promise.resolve().then(()=>Kn()),fr=window;return fr.__hf=fr.__hf||{},fr.__hf.shaderTransitionsReady=Qa,Un(i,k,A.timeline),k}function Un(A,e,t){if(!t){let r=window;r.__timelines=r.__timelines||{},r.__timelines[A]=e}}function hf(A,e,t,r,n){let s=A.timeline||gsap.timeline({paused:!0});if(A.timeline){let a=Number(n?.getAttribute("data-duration")||"40");s.to({t:0},{t:1,duration:a,ease:"none"},0)}for(let a=1;a<e.length;a++){let o=e[a];o&&s.set(`#${o}`,{opacity:0},0)}for(let a=0;a<t.length;a++){let o=t[a],B=e[a],l=e[a+1];if(!B||!l)continue;let u=o.duration??nr,f=o.time;s.set(`#${l}`,{opacity:1},f),s.set(`#${B}`,{opacity:0},f+u)}if(typeof window<"u"&&!!window.__HF_PAGE_SIDE_COMPOSITING__){let a=A.bgColor??"#000",o=A.accentColor?ta(A.accentColor):{accent:[1,.6,.2],dark:[.4,.15,0],bright:[1,.85,.5]},B=Number(n?.getAttribute("data-width")),l=Number(n?.getAttribute("data-height")),u=Number.isFinite(B)&&B>0?B:1920,f=Number.isFinite(l)&&l>0?l:1080;er({scenes:e,transitions:t,bgColor:a,accentColors:o,width:u,height:f,defaultDuration:nr})}return Un(r,s,A.timeline),s}0&&(module.exports={PAGE_COMPOSITOR_BUILD_CANARY,PAGE_COMPOSITOR_CANVAS_ID,SHADER_NAMES,init,installPageSideCompositor,isHtmlInCanvasCaptureSupported,isPageSideCompositingSupported});
|
|
16
16
|
/*! Bundled license information:
|
|
17
17
|
|
|
18
18
|
html2canvas/dist/html2canvas.esm.js:
|