@hyperframes/shader-transitions 0.7.53 → 0.7.55

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 CHANGED
@@ -1,18 +1,18 @@
1
- "use strict";var wr=Object.defineProperty;var da=Object.getOwnPropertyDescriptor;var Ua=Object.getOwnPropertyNames;var ha=Object.prototype.hasOwnProperty;var Fa=(A,e)=>{for(var t in e)wr(A,t,{get:e[t],enumerable:!0})},pa=(A,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Ua(e))!ha.call(A,n)&&n!==t&&wr(A,n,{get:()=>e[n],enumerable:!(r=da(e,n))||r.enumerable});return A};var ma=A=>pa(wr({},"__esModule",{value:!0}),A);var mf={};Fa(mf,{PAGE_COMPOSITOR_BUILD_CANARY:()=>Cn,PAGE_COMPOSITOR_CANVAS_ID:()=>Ar,SHADER_NAMES:()=>dr,init:()=>sa,installPageSideCompositor:()=>er,isHtmlInCanvasCaptureSupported:()=>tt,isPageSideCompositingSupported:()=>dn});module.exports=ma(mf);var _n="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);}",uA=`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
- `,ue="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 fe=1920,ge=1080;function at(A,e=fe,t=ge){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 Qr=null;function Cr(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 Rn(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,Cr(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 Qr||(Qr=Cr(A,_n,A.VERTEX_SHADER)),Rn(A,Qr,e)}function On(A,e,t){return Rn(A,Cr(A,e,A.VERTEX_SHADER),t)}var Mn=new WeakMap;function va(A,e){let t=Mn.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")},Mn.set(e,t),t)}function ct(A,e,t,r,n,s,i,a=fe,o=ge){let B=va(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 ne(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 we(A,e,t){A.bindTexture(A.TEXTURE_2D,e),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,t)}var Gn={"domain-warp":{frag:uA+ue+"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:uA+ue+"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:uA+"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:uA+"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:uA+"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:uA+"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:uA+"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:uA+"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:uA+"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:uA+ue+"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:uA+ue+"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:uA+"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:uA+ue+"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:uA+"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.);}"}},dr=Object.keys(Gn);function lt(A){let e=Gn[A];if(!e)throw new Error(`[HyperShader] Unknown shader: "${A}". Available: ${dr.join(", ")}`);return e.frag}var Gr=function(A,e){return Gr=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])},Gr(A,e)};function TA(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Gr(A,e);function t(){this.constructor=A}A.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var Nr=function(){return Nr=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},Nr.apply(this,arguments)};function fA(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 BA(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 PA=(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 PA.fromClientRect(A,e.getBoundingClientRect())},Ea=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 PA(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},eA=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},Nn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ha=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(xe=0;xe<Nn.length;xe++)Ha[Nn.charCodeAt(xe)]=xe;var xe,Vn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Oe=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Te=0;Te<Vn.length;Te++)Oe[Vn.charCodeAt(Te)]=Te;var Te,ya=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},ba=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},oe=5,cn=11,Ur=2,xa=cn-oe,Gs=65536>>oe,Ta=1<<oe,hr=Ta-1,La=1024>>oe,Sa=Gs+La,Ka=Sa,Da=32,_a=Ka+Da,Ma=65536>>cn,Ra=1<<xa,Oa=Ra-1,Pn=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Ga=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},Na=function(A,e){var t=ya(A),r=Array.isArray(t)?ba(t):new Uint32Array(t),n=Array.isArray(t)?Ia(t):new Uint16Array(t),s=24,i=Pn(n,s/2,r[4]/2),a=r[5]===2?Pn(n,(s+r[4])/2):Ga(r,Math.ceil((s+r[4])/4));return new Va(r[0],r[1],r[2],r[3],i,a)},Va=(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>>oe],t=(t<<Ur)+(e&hr),this.data[t];if(e<=65535)return t=this.index[Gs+(e-55296>>oe)],t=(t<<Ur)+(e&hr),this.data[t];if(e<this.highStart)return t=_a-Ma+(e>>cn),t=this.index[t],t+=e>>oe&Oa,t=this.index[t],t=(t<<Ur)+(e&hr),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),kn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Pa=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Le=0;Le<kn.length;Le++)Pa[kn.charCodeAt(Le)]=Le;var Le,ka="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==",Xn=50,Xa=1,Ns=2,Vs=3,Wa=4,Ja=5,Wn=7,Ps=8,Jn=9,ZA=10,Vr=11,Yn=12,Pr=13,Ya=14,Ge=15,kr=16,ft=17,Se=18,Za=19,Zn=20,Xr=21,Ke=22,Fr=23,Qe=24,dA=25,Ne=26,Ve=27,Ce=28,qa=29,ie=30,ja=31,gt=32,wt=33,Wr=34,Jr=35,Yr=36,je=37,Zr=38,xt=39,Tt=40,pr=41,ks=42,za=43,$a=[9001,65288],Xs="!",V="\xD7",Qt="\xF7",qr=Na(ka),GA=[ie,Yr],jr=[Xa,Ns,Vs,Ja],Ws=[ZA,Ps],qn=[Ve,Ne],Ao=jr.concat(Ws),jn=[Zr,xt,Tt,Wr,Jr],eo=[Ge,Pr],to=function(A,e){e===void 0&&(e="strict");var t=[],r=[],n=[];return A.forEach(function(s,i){var a=qr.get(s);if(a>Xn?(n.push(!0),a-=Xn):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return r.push(i),t.push(kr);if(a===Wa||a===Vr){if(i===0)return r.push(i),t.push(ie);var o=t[i-1];return Ao.indexOf(o)===-1?(r.push(r[i-1]),t.push(o)):(r.push(i),t.push(ie))}if(r.push(i),a===ja)return t.push(e==="strict"?Xr:je);if(a===ks||a===qa)return t.push(ie);if(a===za)return s>=131072&&s<=196605||s>=196608&&s<=262141?t.push(je):t.push(ie);t.push(a)}),[r,t,n]},mr=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!==ZA)break}if(n===ZA)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!==ZA)break}if(a!==ZA)break}return!1},zn=function(A,e){for(var t=A;t>=0;){var r=e[t];if(r===ZA)t--;else return r}return 0},ro=function(A,e,t,r,n){if(t[r]===0)return V;var s=r-1;if(Array.isArray(n)&&n[s]===!0)return V;var i=s-1,a=s+1,o=e[s],B=i>=0?e[i]:0,l=e[a];if(o===Ns&&l===Vs)return V;if(jr.indexOf(o)!==-1)return Xs;if(jr.indexOf(l)!==-1||Ws.indexOf(l)!==-1)return V;if(zn(s,e)===Ps)return Qt;if(qr.get(A[s])===Vr||(o===gt||o===wt)&&qr.get(A[a])===Vr||o===Wn||l===Wn||o===Jn||[ZA,Pr,Ge].indexOf(o)===-1&&l===Jn||[ft,Se,Za,Qe,Ce].indexOf(l)!==-1||zn(s,e)===Ke||mr(Fr,Ke,s,e)||mr([ft,Se],Xr,s,e)||mr(Yn,Yn,s,e))return V;if(o===ZA)return Qt;if(o===Fr||l===Fr)return V;if(l===kr||o===kr)return Qt;if([Pr,Ge,Xr].indexOf(l)!==-1||o===Ya||B===Yr&&eo.indexOf(o)!==-1||o===Ce&&l===Yr||l===Zn||GA.indexOf(l)!==-1&&o===dA||GA.indexOf(o)!==-1&&l===dA||o===Ve&&[je,gt,wt].indexOf(l)!==-1||[je,gt,wt].indexOf(o)!==-1&&l===Ne||GA.indexOf(o)!==-1&&qn.indexOf(l)!==-1||qn.indexOf(o)!==-1&&GA.indexOf(l)!==-1||[Ve,Ne].indexOf(o)!==-1&&(l===dA||[Ke,Ge].indexOf(l)!==-1&&e[a+1]===dA)||[Ke,Ge].indexOf(o)!==-1&&l===dA||o===dA&&[dA,Ce,Qe].indexOf(l)!==-1)return V;if([dA,Ce,Qe,ft,Se].indexOf(l)!==-1)for(var u=s;u>=0;){var f=e[u];if(f===dA)return V;if([Ce,Qe].indexOf(f)!==-1)u--;else break}if([Ve,Ne].indexOf(l)!==-1)for(var u=[ft,Se].indexOf(o)!==-1?i:s;u>=0;){var f=e[u];if(f===dA)return V;if([Ce,Qe].indexOf(f)!==-1)u--;else break}if(Zr===o&&[Zr,xt,Wr,Jr].indexOf(l)!==-1||[xt,Wr].indexOf(o)!==-1&&[xt,Tt].indexOf(l)!==-1||[Tt,Jr].indexOf(o)!==-1&&l===Tt||jn.indexOf(o)!==-1&&[Zn,Ne].indexOf(l)!==-1||jn.indexOf(l)!==-1&&o===Ve||GA.indexOf(o)!==-1&&GA.indexOf(l)!==-1||o===Qe&&GA.indexOf(l)!==-1||GA.concat(dA).indexOf(o)!==-1&&l===Ke&&$a.indexOf(A[a])===-1||GA.concat(dA).indexOf(l)!==-1&&o===Se)return V;if(o===pr&&l===pr){for(var C=t[s],g=1;C>0&&(C--,e[C]===pr);)g++;if(g%2!==0)return V}return o===gt&&l===wt?V:Qt},no=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=to(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[dA,ie,ks].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]},so=(function(){function A(e,t,r,n){this.codePoints=e,this.required=t===Xs,this.start=r,this.end=n}return A.prototype.slice=function(){return eA.apply(void 0,this.codePoints.slice(this.start,this.end))},A})(),io=function(A,e){var t=Xt(A),r=no(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=V;B<a&&(l=ro(t,s,n,++B,i))===V;);if(l!==V||B===a){var u=new so(t,l,o,B);return o=B,{value:u,done:!1}}return{done:!0,value:null}}}},ao=1,oo=2,At=4,$n=8,Kt=10,As=47,We=92,Bo=9,co=32,Ct=34,De=61,lo=35,uo=36,fo=37,dt=39,Ut=40,_e=41,go=95,CA=45,wo=33,Qo=60,Co=62,Uo=64,ho=91,Fo=93,po=61,mo=123,ht=63,vo=125,es=124,Eo=126,Ho=128,ts=65533,vr=42,ae=43,yo=44,Io=58,bo=59,ze=46,xo=0,To=8,Lo=11,So=14,Ko=31,Do=127,LA=-1,Js=48,Ys=97,Zs=101,_o=102,Mo=117,Ro=122,qs=65,js=69,zs=70,Oo=85,Go=90,cA=function(A){return A>=Js&&A<=57},No=function(A){return A>=55296&&A<=57343},de=function(A){return cA(A)||A>=qs&&A<=zs||A>=Ys&&A<=_o},Vo=function(A){return A>=Ys&&A<=Ro},Po=function(A){return A>=qs&&A<=Go},ko=function(A){return Vo(A)||Po(A)},Xo=function(A){return A>=Ho},Ft=function(A){return A===Kt||A===Bo||A===co},Dt=function(A){return ko(A)||Xo(A)||A===go},rs=function(A){return Dt(A)||cA(A)||A===CA},Wo=function(A){return A>=xo&&A<=To||A===Lo||A>=So&&A<=Ko||A===Do},YA=function(A,e){return A!==We?!1:e!==Kt},pt=function(A,e,t){return A===CA?Dt(e)||YA(e,t):Dt(A)?!0:!!(A===We&&YA(A,e))},Er=function(A,e,t){return A===ae||A===CA?cA(e)?!0:e===ze&&cA(t):cA(A===ze?e:A)},Jo=function(A){var e=0,t=1;(A[e]===ae||A[e]===CA)&&(A[e]===CA&&(t=-1),e++);for(var r=[];cA(A[e]);)r.push(A[e++]);var n=r.length?parseInt(eA.apply(void 0,r),10):0;A[e]===ze&&e++;for(var s=[];cA(A[e]);)s.push(A[e++]);var i=s.length,a=i?parseInt(eA.apply(void 0,s),10):0;(A[e]===js||A[e]===Zs)&&e++;var o=1;(A[e]===ae||A[e]===CA)&&(A[e]===CA&&(o=-1),e++);for(var B=[];cA(A[e]);)B.push(A[e++]);var l=B.length?parseInt(eA.apply(void 0,B),10):0;return t*(n+a*Math.pow(10,-i))*Math.pow(10,o*l)},Yo={type:2},Zo={type:3},qo={type:4},jo={type:13},zo={type:8},$o={type:21},AB={type:9},eB={type:10},tB={type:11},rB={type:12},nB={type:14},mt={type:23},sB={type:1},iB={type:25},aB={type:24},oB={type:26},BB={type:27},cB={type:28},lB={type:29},uB={type:31},zr={type:32},$s=(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!==zr;)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 lo:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(rs(t)||YA(r,n)){var s=pt(t,r,n)?oo:ao,i=this.consumeName();return{type:5,value:i,flags:s}}break;case uo:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),jo;break;case dt:return this.consumeStringToken(dt);case Ut:return Yo;case _e:return Zo;case vr:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),nB;break;case ae:if(Er(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case yo:return qo;case CA:var a=e,o=this.peekCodePoint(0),B=this.peekCodePoint(1);if(Er(a,o,B))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(pt(a,o,B))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(o===CA&&B===Co)return this.consumeCodePoint(),this.consumeCodePoint(),aB;break;case ze:if(Er(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case As:if(this.peekCodePoint(0)===vr)for(this.consumeCodePoint();;){var l=this.consumeCodePoint();if(l===vr&&(l=this.consumeCodePoint(),l===As))return this.consumeToken();if(l===LA)return this.consumeToken()}break;case Io:return oB;case bo:return BB;case Qo:if(this.peekCodePoint(0)===wo&&this.peekCodePoint(1)===CA&&this.peekCodePoint(2)===CA)return this.consumeCodePoint(),this.consumeCodePoint(),iB;break;case Uo:var u=this.peekCodePoint(0),f=this.peekCodePoint(1),C=this.peekCodePoint(2);if(pt(u,f,C)){var i=this.consumeName();return{type:7,value:i}}break;case ho:return cB;case We:if(YA(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case Fo:return lB;case po:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),zo;break;case mo:return tB;case vo:return rB;case Mo:case Oo:var g=this.peekCodePoint(0),w=this.peekCodePoint(1);return g===ae&&(de(w)||w===ht)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case es:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),AB;if(this.peekCodePoint(0)===es)return this.consumeCodePoint(),$o;break;case Eo:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),eB;break;case LA:return zr}return Ft(e)?(this.consumeWhiteSpace(),uB):cA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Dt(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:eA(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();de(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(eA.apply(void 0,e.map(function(o){return o===ht?Js:o})),16),s=parseInt(eA.apply(void 0,e.map(function(o){return o===ht?zs:o})),16);return{type:30,start:n,end:s}}var i=parseInt(eA.apply(void 0,e),16);if(this.peekCodePoint(0)===CA&&de(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var a=[];de(t)&&a.length<6;)a.push(t),t=this.consumeCodePoint();var s=parseInt(eA.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:eA.apply(void 0,e)};if(Ft(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===LA||this.peekCodePoint(0)===_e?(this.consumeCodePoint(),{type:22,value:eA.apply(void 0,e)}):(this.consumeBadUrlRemnants(),mt);if(n===Ct||n===dt||n===Ut||Wo(n))return this.consumeBadUrlRemnants(),mt;if(n===We)if(YA(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;YA(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+=eA.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===Kt)return this._value.splice(0,r),sB;if(n===We){var s=this._value[r+1];s!==LA&&s!==void 0&&(s===Kt?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):YA(n,s)&&(t+=this.consumeStringSlice(r),t+=eA(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},A.prototype.consumeNumber=function(){var e=[],t=At,r=this.peekCodePoint(0);for((r===ae||r===CA)&&e.push(this.consumeCodePoint());cA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===ze&&cA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=$n;cA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((r===js||r===Zs)&&((n===ae||n===CA)&&cA(s)||cA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=$n;cA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[Jo(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===fo?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(de(e)){for(var t=eA(e);de(this.peekCodePoint(0))&&t.length<6;)t+=eA(this.consumeCodePoint());Ft(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||No(r)||r>1114111?ts:r}return e===LA?ts:e},A.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(rs(t))e+=eA(t);else if(YA(t,this.peekCodePoint(0)))e+=eA(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},A})(),Ai=(function(){function A(e){this._tokens=e}return A.create=function(e){var t=new $s;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||gB(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"?zr:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A})(),et=function(A){return A.type===15},ye=function(A){return A.type===17},Z=function(A){return A.type===20},fB=function(A){return A.type===0},$r=function(A,e){return Z(A)&&A.value===e},ei=function(A){return A.type!==31},He=function(A){return A.type!==31&&A.type!==4},SA=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},gB=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},Ae=function(A){return A.type===17||A.type===15},tA=function(A){return A.type===16||Ae(A)},ti=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},oA={type:17,number:0,flags:At},ln={type:16,number:50,flags:At},qA={type:16,number:100,flags:At},Pe=function(A,e,t){var r=A[0],n=A[1];return[z(r,e),z(typeof n<"u"?n:r,t)]},z=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},ri="deg",ni="grad",si="rad",ii="turn",Wt={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case ri:return Math.PI*e.number/180;case ni:return Math.PI/200*e.number;case si:return e.number;case ii:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},ai=function(A){return A.type===15&&(A.unit===ri||A.unit===ni||A.unit===si||A.unit===ii)},oi=function(A){var e=A.filter(Z).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[oA,oA];case"to top":case"bottom":return vA(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[oA,qA];case"to right":case"left":return vA(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[qA,qA];case"to bottom":case"top":return vA(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[qA,oA];case"to left":case"right":return vA(270)}return 0},vA=function(A){return Math.PI*A/180},zA={name:"color",parse:function(A,e){if(e.type===18){var t=wB[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 jA(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 jA(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 jA(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 jA(parseInt(r,16),parseInt(n,16),parseInt(s,16),parseInt(i,16)/255)}}if(e.type===20){var a=VA[e.value.toUpperCase()];if(typeof a<"u")return a}return VA.TRANSPARENT}},$A=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+")"},jA=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(r*255)<<0)>>>0},ns=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},ss=function(A,e){var t=e.filter(He);if(t.length===3){var r=t.map(ns),n=r[0],s=r[1],i=r[2];return jA(n,s,i,1)}if(t.length===4){var a=t.map(ns),n=a[0],s=a[1],i=a[2],o=a[3];return jA(n,s,i,o)}return 0};function Hr(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 is=function(A,e){var t=e.filter(He),r=t[0],n=t[1],s=t[2],i=t[3],a=(r.type===17?vA(r.number):Wt.parse(A,r))/(Math.PI*2),o=tA(n)?n.number/100:0,B=tA(s)?s.number/100:0,l=typeof i<"u"&&tA(i)?z(i,1):1;if(o===0)return jA(B*255,B*255,B*255,1);var u=B<=.5?B*(o+1):B+o-B*o,f=B*2-u,C=Hr(f,u,a+1/3),g=Hr(f,u,a),w=Hr(f,u,a-1/3);return jA(C*255,g*255,w*255,l)},wB={hsl:is,hsla:is,rgb:ss,rgba:ss},Je=function(A,e){return zA.parse(A,Ai.create(e).parseComponentValue())},VA={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},QB={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(Z(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},CB={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Jt=function(A,e){var t=zA.parse(A,e[0]),r=e[1];return r&&tA(r)?{color:t,stop:r}:{color:t,stop:null}},as=function(A,e){var t=A[0],r=A[A.length-1];t.stop===null&&(t.stop=oA),r.stop===null&&(r.stop=qA);for(var n=[],s=0,i=0;i<A.length;i++){var a=A[i].stop;if(a!==null){var o=z(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],C=(l-f)/(u+1),g=1;g<=u;g++)n[B+g-1]=C*g;B=null}}return A.map(function(w,x){var F=w.color;return{color:F,stop:Math.max(Math.min(1,n[x]/e),0)}})},dB=function(A,e,t){var r=e/2,n=t/2,s=z(A[0],e)-r,i=n-z(A[1],t);return(Math.atan2(i,s)+Math.PI*2)%(Math.PI*2)},UB=function(A,e,t){var r=typeof A=="number"?A:dB(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]},xA=function(A,e){return Math.sqrt(A*A+e*e)},os=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=xA(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},hB=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(xA(e,t),xA(e,t-n),xA(e-r,t),xA(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=os(r,n,e,t,!0),B=o[0],l=o[1];s=xA(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(xA(e,t),xA(e,t-n),xA(e-r,t),xA(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=os(r,n,e,t,!1),B=u[0],l=u[1];s=xA(B-e,(l-t)/a),i=a*s}break}return Array.isArray(A.size)&&(s=z(A.size[0],r),i=A.size.length===2?z(A.size[1],n):s),[s,i]},FB=function(A,e){var t=vA(180),r=[];return SA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&i.value==="to"){t=oi(n);return}else if(ai(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=vA(180),r=[];return SA(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=oi(n);return}else if(ai(i)){t=(Wt.parse(A,i)+vA(270))%vA(360);return}}var a=Jt(A,n);r.push(a)}),{angle:t,stops:r,type:1}},pB=function(A,e){var t=vA(180),r=[],n=1,s=0,i=3,a=[];return SA(e).forEach(function(o,B){var l=o[0];if(B===0){if(Z(l)&&l.value==="linear"){n=1;return}else if(Z(l)&&l.value==="radial"){n=2;return}}if(l.type===18){if(l.name==="from"){var u=zA.parse(A,l.values[0]);r.push({stop:oA,color:u})}else if(l.name==="to"){var u=zA.parse(A,l.values[0]);r.push({stop:qA,color:u})}else if(l.name==="color-stop"){var f=l.values.filter(He);if(f.length===2){var u=zA.parse(A,f[1]),C=f[0];ye(C)&&r.push({stop:{type:16,number:C.number*100,flags:C.flags},color:u})}}}}),n===1?{angle:(t+vA(180))%vA(360),stops:r,type:n}:{size:i,shape:s,stops:r,position:a,type:n}},Bi="closest-side",ci="farthest-side",li="closest-corner",ui="farthest-corner",fi="circle",gi="ellipse",wi="cover",Qi="contain",mB=function(A,e){var t=0,r=3,n=[],s=[];return SA(e).forEach(function(i,a){var o=!0;if(a===0){var B=!1;o=i.reduce(function(u,f){if(B)if(Z(f))switch(f.value){case"center":return s.push(ln),u;case"top":case"left":return s.push(oA),u;case"right":case"bottom":return s.push(qA),u}else(tA(f)||Ae(f))&&s.push(f);else if(Z(f))switch(f.value){case fi:return t=0,!1;case gi:return t=1,!1;case"at":return B=!0,!1;case Bi:return r=0,!1;case wi:case ci:return r=1,!1;case Qi:case li:return r=2,!1;case ui:return r=3,!1}else if(Ae(f)||tA(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 SA(e).forEach(function(i,a){var o=!0;if(a===0?o=i.reduce(function(l,u){if(Z(u))switch(u.value){case"center":return s.push(ln),!1;case"top":case"left":return s.push(oA),!1;case"right":case"bottom":return s.push(qA),!1}else if(tA(u)||Ae(u))return s.push(u),!1;return l},o):a===1&&(o=i.reduce(function(l,u){if(Z(u))switch(u.value){case fi:return t=0,!1;case gi:return t=1,!1;case Qi:case Bi:return r=0,!1;case ci:return r=1,!1;case li:return r=2,!1;case wi:case ui:return r=3,!1}else if(Ae(u)||tA(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}},vB=function(A){return A.type===1},EB=function(A){return A.type===2},un={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=Ci[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 HB(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!Ci[A.name])}var Ci={"linear-gradient":FB,"-moz-linear-gradient":vt,"-ms-linear-gradient":vt,"-o-linear-gradient":vt,"-webkit-linear-gradient":vt,"radial-gradient":mB,"-moz-radial-gradient":Et,"-ms-radial-gradient":Et,"-o-radial-gradient":Et,"-webkit-radial-gradient":Et,"-webkit-gradient":pB},yB={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 He(r)&&HB(r)}).map(function(r){return un.parse(A,r)})}},IB={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(Z(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},bB={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return SA(e).map(function(t){return t.filter(tA)}).map(ti)}},xB={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return SA(e).map(function(t){return t.filter(Z).map(function(r){return r.value}).join(" ")}).map(TB)}},TB=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}},Ee;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(Ee||(Ee={}));var LB={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return SA(e).map(function(t){return t.filter(SB)})}},SB=function(A){return Z(A)||tA(A)},Yt=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},KB=Yt("top"),DB=Yt("right"),_B=Yt("bottom"),MB=Yt("left"),Zt=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return ti(t.filter(tA))}}},RB=Zt("top-left"),OB=Zt("top-right"),GB=Zt("bottom-right"),NB=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}}},VB=qt("top"),PB=qt("right"),kB=qt("bottom"),XB=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}}},WB=jt("top"),JB=jt("right"),YB=jt("bottom"),ZB=jt("left"),qB={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},jB={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){return e==="rtl"?1:0}},zB={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).reduce(function(t,r){return t|$B(r.value)},0)}},$B=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},Ac={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}},ec={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 tc={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="strict"?_t.STRICT:_t.NORMAL}},rc={name:"line-height",initialValue:"normal",prefix:!1,type:4},Bs=function(A,e){return Z(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:tA(A)?z(A,e):e},nc={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:un.parse(A,e)}},sc={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){return e==="inside"?0:1}},An={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}},ic=zt("top"),ac=zt("right"),oc=zt("bottom"),Bc=zt("left"),cc={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).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}})}},lc={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"}},uc=$t("top"),fc=$t("right"),gc=$t("bottom"),wc=$t("left"),Qc={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}}},Cc={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}},dc={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&$r(e[0],"none")?[]:SA(e).map(function(t){for(var r={color:VA.TRANSPARENT,offsetX:oA,offsetY:oA,blur:oA},n=0,s=0;s<t.length;s++){var i=t[s];Ae(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:r.blur=i,n++):r.color=zA.parse(A,i)}return r})}},Uc={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}},hc={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=mc[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},Fc=function(A){var e=A.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},pc=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},mc={matrix:Fc,matrix3d:pc},cs={type:16,number:50,flags:At},vc=[cs,cs],Ec={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var t=e.filter(tA);return t.length!==2?vc:[t[0],t[1]]}},Hc={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 yc={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(ye(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},di={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")}},bc={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return ye(e)?e.number:1}},xc={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tc={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).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+"'"})}},Sc={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 ye(e)?e.number:Z(e)&&e.value==="bold"?700:400}},Dc={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(Z).map(function(t){return t.value})}},_c={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"}}},nA=function(A,e){return(A&e)!==0},Mc={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(ei),s=0;s<n.length;s++){var i=n[s],a=n[s+1];if(i.type===20){var o=a&&ye(a)?a.number:1;r.push({counter:i.value,increment:o})}}return r}},Oc={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var t=[],r=e.filter(ei),n=0;n<r.length;n++){var s=r[n],i=r[n+1];if(Z(s)&&s.value!=="none"){var a=i&&ye(i)?i.number:0;t.push({counter:s.value,reset:a})}}return t}},Gc={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter(et).map(function(t){return di.parse(A,t)})}},Nc={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(fB);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}},ls=function(A,e,t){if(!A)return"";var r=A[Math.min(e,A.length-1)];return r?t?r.open:r.close:""},Vc={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&$r(e[0],"none")?[]:SA(e).map(function(t){for(var r={color:255,offsetX:oA,offsetY:oA,blur:oA,spread:oA,inset:!1},n=0,s=0;s<t.length;s++){var i=t[s];$r(i,"inset")?r.inset=!0:Ae(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:n===2?r.blur=i:r.spread=i,n++):r.color=zA.parse(A,i)}return r})}},Pc={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var t=[0,1,2],r=[];return e.filter(Z).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}},kc={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Xc={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return et(e)?e.number:0}},Wc=(function(){function A(e,t){var r,n;this.animationDuration=H(e,Gc,t.animationDuration),this.backgroundClip=H(e,QB,t.backgroundClip),this.backgroundColor=H(e,CB,t.backgroundColor),this.backgroundImage=H(e,yB,t.backgroundImage),this.backgroundOrigin=H(e,IB,t.backgroundOrigin),this.backgroundPosition=H(e,bB,t.backgroundPosition),this.backgroundRepeat=H(e,xB,t.backgroundRepeat),this.backgroundSize=H(e,LB,t.backgroundSize),this.borderTopColor=H(e,KB,t.borderTopColor),this.borderRightColor=H(e,DB,t.borderRightColor),this.borderBottomColor=H(e,_B,t.borderBottomColor),this.borderLeftColor=H(e,MB,t.borderLeftColor),this.borderTopLeftRadius=H(e,RB,t.borderTopLeftRadius),this.borderTopRightRadius=H(e,OB,t.borderTopRightRadius),this.borderBottomRightRadius=H(e,GB,t.borderBottomRightRadius),this.borderBottomLeftRadius=H(e,NB,t.borderBottomLeftRadius),this.borderTopStyle=H(e,VB,t.borderTopStyle),this.borderRightStyle=H(e,PB,t.borderRightStyle),this.borderBottomStyle=H(e,kB,t.borderBottomStyle),this.borderLeftStyle=H(e,XB,t.borderLeftStyle),this.borderTopWidth=H(e,WB,t.borderTopWidth),this.borderRightWidth=H(e,JB,t.borderRightWidth),this.borderBottomWidth=H(e,YB,t.borderBottomWidth),this.borderLeftWidth=H(e,ZB,t.borderLeftWidth),this.boxShadow=H(e,Vc,t.boxShadow),this.color=H(e,qB,t.color),this.direction=H(e,jB,t.direction),this.display=H(e,zB,t.display),this.float=H(e,Ac,t.cssFloat),this.fontFamily=H(e,Lc,t.fontFamily),this.fontSize=H(e,Sc,t.fontSize),this.fontStyle=H(e,_c,t.fontStyle),this.fontVariant=H(e,Dc,t.fontVariant),this.fontWeight=H(e,Kc,t.fontWeight),this.letterSpacing=H(e,ec,t.letterSpacing),this.lineBreak=H(e,tc,t.lineBreak),this.lineHeight=H(e,rc,t.lineHeight),this.listStyleImage=H(e,nc,t.listStyleImage),this.listStylePosition=H(e,sc,t.listStylePosition),this.listStyleType=H(e,An,t.listStyleType),this.marginTop=H(e,ic,t.marginTop),this.marginRight=H(e,ac,t.marginRight),this.marginBottom=H(e,oc,t.marginBottom),this.marginLeft=H(e,Bc,t.marginLeft),this.opacity=H(e,bc,t.opacity);var s=H(e,cc,t.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=H(e,lc,t.overflowWrap),this.paddingTop=H(e,uc,t.paddingTop),this.paddingRight=H(e,fc,t.paddingRight),this.paddingBottom=H(e,gc,t.paddingBottom),this.paddingLeft=H(e,wc,t.paddingLeft),this.paintOrder=H(e,Pc,t.paintOrder),this.position=H(e,Cc,t.position),this.textAlign=H(e,Qc,t.textAlign),this.textDecorationColor=H(e,xc,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=H(e,Tc,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=H(e,dc,t.textShadow),this.textTransform=H(e,Uc,t.textTransform),this.transform=H(e,hc,t.transform),this.transformOrigin=H(e,Ec,t.transformOrigin),this.visibility=H(e,Hc,t.visibility),this.webkitTextStrokeColor=H(e,kc,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=H(e,Xc,t.webkitTextStrokeWidth),this.wordBreak=H(e,yc,t.wordBreak),this.zIndex=H(e,Ic,t.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return $A(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 nA(this.display,4)||nA(this.display,33554432)||nA(this.display,268435456)||nA(this.display,536870912)||nA(this.display,67108864)||nA(this.display,134217728)},A})(),Jc=(function(){function A(e,t){this.content=H(e,Mc,t.content),this.quotes=H(e,Nc,t.quotes)}return A})(),us=(function(){function A(e,t){this.counterIncrement=H(e,Rc,t.counterIncrement),this.counterReset=H(e,Oc,t.counterReset)}return A})(),H=function(A,e,t){var r=new $s,n=t!==null&&typeof t<"u"?t.toString():e.initialValue;r.write(n);var s=new Ai(r.read());switch(e.type){case 2:var i=s.parseComponentValue();return e.parse(A,Z(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 zA.parse(A,s.parseComponentValue());case"image":return un.parse(A,s.parseComponentValue());case"length":var a=s.parseComponentValue();return Ae(a)?a:oA;case"length-percentage":var o=s.parseComponentValue();return tA(o)?o:oA;case"time":return di.parse(A,s.parseComponentValue())}break}},Yc="data-html2canvas-debug",Zc=function(A){var e=A.getAttribute(Yc);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},en=function(A,e){var t=Zc(A);return t===1||e===t},KA=(function(){function A(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,en(t,3))debugger;this.styles=new Wc(e,window.getComputedStyle(t,null)),nn(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),en(t,4)&&(this.flags|=16)}return A})(),qc="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",fs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ke=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Me=0;Me<fs.length;Me++)ke[fs.charCodeAt(Me)]=Me;var Me,jc=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},zc=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},$c=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},Be=5,fn=11,yr=2,Al=fn-Be,Ui=65536>>Be,el=1<<Be,Ir=el-1,tl=1024>>Be,rl=Ui+tl,nl=rl,sl=32,il=nl+sl,al=65536>>fn,ol=1<<Al,Bl=ol-1,gs=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},cl=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},ll=function(A,e){var t=jc(A),r=Array.isArray(t)?$c(t):new Uint32Array(t),n=Array.isArray(t)?zc(t):new Uint16Array(t),s=24,i=gs(n,s/2,r[4]/2),a=r[5]===2?gs(n,(s+r[4])/2):cl(r,Math.ceil((s+r[4])/4));return new ul(r[0],r[1],r[2],r[3],i,a)},ul=(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>>Be],t=(t<<yr)+(e&Ir),this.data[t];if(e<=65535)return t=this.index[Ui+(e-55296>>Be)],t=(t<<yr)+(e&Ir),this.data[t];if(e<this.highStart)return t=il-al+(e>>fn),t=this.index[t],t+=e>>Be&Bl,t=this.index[t],t=(t<<yr)+(e&Ir),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),ws="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",fl=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Re=0;Re<ws.length;Re++)fl[ws.charCodeAt(Re)]=Re;var Re,gl=1,br=2,xr=3,Qs=4,Cs=5,wl=7,ds=8,Tr=9,Lr=10,Us=11,hs=12,Fs=13,ps=14,Sr=15,Ql=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},Cl=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},dl=ll(qc),pA="\xD7",Kr="\xF7",Ul=function(A){return dl.get(A)},hl=function(A,e,t){var r=t-2,n=e[r],s=e[t-1],i=e[t];if(s===br&&i===xr)return pA;if(s===br||s===xr||s===Qs||i===br||i===xr||i===Qs)return Kr;if(s===ds&&[ds,Tr,Us,hs].indexOf(i)!==-1||(s===Us||s===Tr)&&(i===Tr||i===Lr)||(s===hs||s===Lr)&&i===Lr||i===Fs||i===Cs||i===wl||s===gl)return pA;if(s===Fs&&i===ps){for(;n===Cs;)n=e[--r];if(n===ps)return pA}if(s===Sr&&i===Sr){for(var a=0;n===Sr;)a++,n=e[--r];if(a%2===0)return pA}return Kr},Fl=function(A){var e=Ql(A),t=e.length,r=0,n=0,s=e.map(Ul);return{next:function(){if(r>=t)return{done:!0,value:null};for(var i=pA;r<t&&(i=hl(e,s,++r))===pA;);if(i!==pA||r===t){var a=Cl.apply(null,e.slice(n,r));return n=r,{value:a,done:!1}}return{done:!0,value:null}}}},pl=function(A){for(var e=Fl(A),t=[],r;!(r=e.next()).done;)r.value&&t.push(r.value.slice());return t},ml=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},vl=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var t=A.createRange();e.innerHTML=typeof"".repeat=="function"?"&#128104;".repeat(10):"";var r=e.firstChild,n=Xt(r.data).map(function(o){return eA(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},El=function(){return typeof new Image().crossOrigin<"u"},Hl=function(){return typeof new XMLHttpRequest().responseType=="string"},yl=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},ms=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=tn(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),vs(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",ms(o)?vs(tn(t,t,0,0,B)):Promise.reject(!1)}).then(function(a){return r.drawImage(a,0,0),ms(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},tn=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},vs=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))})},aA={get SUPPORT_RANGE_BOUNDS(){var A=ml(document);return Object.defineProperty(aA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=aA.SUPPORT_RANGE_BOUNDS&&vl(document);return Object.defineProperty(aA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=yl(document);return Object.defineProperty(aA,"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(aA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=El();return Object.defineProperty(aA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=Hl();return Object.defineProperty(aA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(aA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(aA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},Ze=(function(){function A(e,t){this.text=e,this.bounds=t}return A})(),bl=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(aA.SUPPORT_RANGE_BOUNDS){var o=Es(r,i,a.length).getClientRects();if(o.length>1){var B=gn(a),l=0;B.forEach(function(f){s.push(new Ze(f,PA.fromDOMRectList(A,Es(r,l+i,f.length).getClientRects()))),l+=f.length})}else s.push(new Ze(a,PA.fromDOMRectList(A,o)))}else{var u=r.splitText(a.length);s.push(new Ze(a,xl(A,r))),r=u}else aA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(a.length));i+=a.length}),s},xl=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 PA.EMPTY},Es=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},gn=function(A){if(aA.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 pl(A)},Tl=function(A,e){if(aA.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?gn(A):Tl(A,e)},Sl=[32,160,4961,65792,65793,4153,4241],Kl=function(A,e){for(var t=io(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){Sl.indexOf(B)===-1?o+=eA(B):(o.length&&r.push(o),r.push(eA(B)),o="")}),o.length&&r.push(o)}};!(n=t.next()).done;)s();return r},Dl=(function(){function A(e,t,r){this.text=_l(t.data,r.textTransform),this.textBounds=bl(e,this.text,r,t)}return A})(),_l=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(Ml,Rl);case 2:return A.toUpperCase();default:return A}},Ml=/(^|\s|:|-|\(|\))([a-z])/g,Rl=function(A,e,t){return A.length>0?e+t.toUpperCase():A},hi=(function(A){TA(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),Fi=(function(A){TA(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),pi=(function(A){TA(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),mi=(function(A){TA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(KA),rn=(function(A){TA(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),Ol=[{type:15,flags:0,unit:"px",number:3}],Gl=[{type:16,flags:0,number:50}],Nl=function(A){return A.width>A.height?new PA(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new PA(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},Vl=function(A){var e=A.type===Pl?new Array(A.value.length+1).join("\u2022"):A.value;return e.length===0?A.placeholder||"":e},Mt="checkbox",Rt="radio",Pl="password",Hs=707406591,wn=(function(A){TA(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=Vl(r),(n.type===Mt||n.type===Rt)&&(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=Nl(n.bounds)),n.type){case Mt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Ol;break;case Rt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Gl;break}return n}return e})(KA),vi=(function(A){TA(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),Ei=(function(A){TA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(KA),Hi=(function(A){TA(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=Ii(t,r.contentWindow.document.documentElement);var s=r.contentWindow.document.documentElement?Je(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):VA.TRANSPARENT,i=r.contentWindow.document.body?Je(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):VA.TRANSPARENT;n.backgroundColor=$A(s)?$A(i)?n.styles.backgroundColor:i:s}}catch{}return n}return e})(KA),kl=["OL","UL","MENU"],Lt=function(A,e,t,r){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,bi(n)&&n.data.trim().length>0)t.textNodes.push(new Dl(A,n,t.styles));else if(ve(n))if(Si(n)&&n.assignedNodes)n.assignedNodes().forEach(function(a){return Lt(A,a,t,r)});else{var i=yi(A,n);i.styles.isVisible()&&(Xl(n,i,r)?i.flags|=4:Wl(i.styles)&&(i.flags|=2),kl.indexOf(n.tagName)!==-1&&(i.flags|=8),t.elements.push(i),n.slot,n.shadowRoot?Lt(A,n.shadowRoot,i,r):!Ot(n)&&!xi(n)&&!Gt(n)&&Lt(A,n,i,r))}},yi=function(A,e){return sn(e)?new hi(A,e):Ti(e)?new Fi(A,e):xi(e)?new pi(A,e):Jl(e)?new mi(A,e):Yl(e)?new rn(A,e):Zl(e)?new wn(A,e):Gt(e)?new vi(A,e):Ot(e)?new Ei(A,e):Li(e)?new Hi(A,e):new KA(A,e)},Ii=function(A,e){var t=yi(A,e);return t.flags|=4,Lt(A,e,t,t),t},Xl=function(A,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||Qn(A)&&t.styles.isTransparent()},Wl=function(A){return A.isPositioned()||A.isFloating()},bi=function(A){return A.nodeType===Node.TEXT_NODE},ve=function(A){return A.nodeType===Node.ELEMENT_NODE},nn=function(A){return ve(A)&&typeof A.style<"u"&&!St(A)},St=function(A){return typeof A.className=="object"},Jl=function(A){return A.tagName==="LI"},Yl=function(A){return A.tagName==="OL"},Zl=function(A){return A.tagName==="INPUT"},ql=function(A){return A.tagName==="HTML"},xi=function(A){return A.tagName==="svg"},Qn=function(A){return A.tagName==="BODY"},Ti=function(A){return A.tagName==="CANVAS"},ys=function(A){return A.tagName==="VIDEO"},sn=function(A){return A.tagName==="IMG"},Li=function(A){return A.tagName==="IFRAME"},Is=function(A){return A.tagName==="STYLE"},jl=function(A){return A.tagName==="SCRIPT"},Ot=function(A){return A.tagName==="TEXTAREA"},Gt=function(A){return A.tagName==="SELECT"},Si=function(A){return A.tagName==="SLOT"},bs=function(A){return A.tagName.indexOf("-")>0},zl=(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})(),xs={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"]},Ts={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"]},$l={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"]},Au={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"]},Ue=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},Ki=function(A,e,t,r){var n="";do t||A--,n=r(A)+n,A/=e;while(A*e>=e);return n},AA=function(A,e,t,r,n){var s=t-e+1;return(A<0?"-":"")+(Ki(Math.abs(A),s,r,function(i){return eA(Math.floor(i%s)+e)})+n)},se=function(A,e,t){t===void 0&&(t=". ");var r=e.length;return Ki(Math.abs(A),r,!1,function(n){return e[Math.floor(n%r)]})+t},pe=1,WA=2,JA=4,Xe=8,NA=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&&nA(s,pe)&&a!==""?a=e[B]+a:B>1||B===1&&o===0||B===1&&o===1&&nA(s,WA)||B===1&&o===1&&nA(s,JA)&&A>100||B===1&&o>1&&nA(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},Ls="\u5341\u767E\u5343\u842C",Ss="\u62FE\u4F70\u4EDF\u842C",Ks="\u30DE\u30A4\u30CA\u30B9",Dr="\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=AA(A,48,57,!0,r);return a.length<4?"0"+a:a;case 4:return se(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",n);case 6:return Ue(A,1,3999,xs,3,r).toLowerCase();case 7:return Ue(A,1,3999,xs,3,r);case 8:return AA(A,945,969,!1,r);case 9:return AA(A,97,122,!1,r);case 10:return AA(A,65,90,!1,r);case 11:return AA(A,1632,1641,!0,r);case 12:case 49:return Ue(A,1,9999,Ts,3,r);case 35:return Ue(A,1,9999,Ts,3,r).toLowerCase();case 13:return AA(A,2534,2543,!0,r);case 14:case 30:return AA(A,6112,6121,!0,r);case 15:return se(A,"\u5B50\u4E11\u5BC5\u536F\u8FB0\u5DF3\u5348\u672A\u7533\u9149\u620C\u4EA5",n);case 16:return se(A,"\u7532\u4E59\u4E19\u4E01\u620A\u5DF1\u5E9A\u8F9B\u58EC\u7678",n);case 17:case 48:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ls,"\u8CA0",n,WA|JA|Xe);case 47:return NA(A,"\u96F6\u58F9\u8CB3\u53C3\u8086\u4F0D\u9678\u67D2\u634C\u7396",Ss,"\u8CA0",n,pe|WA|JA|Xe);case 42:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ls,"\u8D1F",n,WA|JA|Xe);case 41:return NA(A,"\u96F6\u58F9\u8D30\u53C1\u8086\u4F0D\u9646\u67D2\u634C\u7396",Ss,"\u8D1F",n,pe|WA|JA|Xe);case 26:return NA(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u4E07",Ks,n,0);case 25:return NA(A,"\u96F6\u58F1\u5F10\u53C2\u56DB\u4F0D\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343\u4E07",Ks,n,pe|WA|JA);case 31:return NA(A,"\uC601\uC77C\uC774\uC0BC\uC0AC\uC624\uC721\uCE60\uD314\uAD6C","\uC2ED\uBC31\uCC9C\uB9CC",Dr,s,pe|WA|JA);case 33:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u842C",Dr,s,0);case 32:return NA(A,"\u96F6\u58F9\u8CB3\u53C3\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343",Dr,s,pe|WA|JA);case 18:return AA(A,2406,2415,!0,r);case 20:return Ue(A,1,19999,Au,3,r);case 21:return AA(A,2790,2799,!0,r);case 22:return AA(A,2662,2671,!0,r);case 22:return Ue(A,1,10999,$l,3,r);case 23:return se(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 se(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 AA(A,3302,3311,!0,r);case 28:return se(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 se(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 AA(A,3792,3801,!0,r);case 37:return AA(A,6160,6169,!0,r);case 38:return AA(A,4160,4169,!0,r);case 39:return AA(A,2918,2927,!0,r);case 40:return AA(A,1776,1785,!0,r);case 43:return AA(A,3046,3055,!0,r);case 44:return AA(A,3174,3183,!0,r);case 45:return AA(A,3664,3673,!0,r);case 46:return AA(A,3872,3881,!0,r);default:return AA(A,48,57,!0,r)}},Di="data-html2canvas-ignore",Ds=(function(){function A(e,t,r){if(this.context=e,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new zl,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=eu(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=nu(n).then(function(){return fA(r,void 0,void 0,function(){var l,u;return BA(this,function(f){switch(f.label){case 0:return this.scrolledElements.forEach(ou),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,ru(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(iu(document.doctype)+"<html></html>"),au(this.referenceElement.ownerDocument,s,i),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),B},A.prototype.createElementClone=function(e){if(en(e,2))debugger;if(Ti(e))return this.createCanvasClone(e);if(ys(e))return this.createVideoClone(e);if(Is(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return sn(t)&&(sn(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),bs(t)?this.createCustomElementClone(t):t},A.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return _r(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){(!ve(t)||!jl(t)&&!t.hasAttribute(Di)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!ve(t)||!Is(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(ve(s)&&Si(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(bi(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var r=e.ownerDocument.defaultView;if(r&&ve(e)&&(nn(e)||St(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&&nn(n)&&(this.clonedReferenceElement=n),Qn(n)&&lu(n);var o=this.counters.parse(new us(this.context,s)),B=this.resolvePseudoContent(e,n,i,qe.BEFORE);bs(e)&&(t=!0),ys(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||St(e))&&!Li(e)||t)&&_r(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 us(this.context,r));var o=new Jc(this.context,r),B=a.createElement("html2canvaspseudoelement");_r(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 C=u.values.filter(Z);C.length&&B.appendChild(a.createTextNode(e.getAttribute(C[0].value)||""))}else if(u.name==="counter"){var g=u.values.filter(He),w=g[0],x=g[1];if(w&&Z(w)){var F=s.counters.getCounterValue(w.value),p=x&&Z(x)?An.parse(s.context,x.value):3;B.appendChild(a.createTextNode($e(F,p,!1)))}}else if(u.name==="counters"){var L=u.values.filter(He),w=L[0],m=L[1],x=L[2];if(w&&Z(w)){var I=s.counters.getCounterValues(w.value),U=x&&Z(x)?An.parse(s.context,x.value):3,y=m&&m.type===0?m.value:"",M=I.map(function(K){return $e(K,U,!1)}).join(y);B.appendChild(a.createTextNode(M))}}}else if(u.type===20)switch(u.value){case"open-quote":B.appendChild(a.createTextNode(ls(o.quotes,s.quoteDepth++,!0)));break;case"close-quote":B.appendChild(a.createTextNode(ls(o.quotes,--s.quoteDepth,!1)));break;default:B.appendChild(a.createTextNode(u.value))}}),B.className=an+" "+on;var l=n===qe.BEFORE?" "+an:" "+on;return St(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 eu=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(Di,"true"),A.body.appendChild(t),t},tu=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},ru=function(A){return Promise.all([].slice.call(A.images,0).map(tu))},nu=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)}})},su=["all","d","content"],_r=function(A,e){for(var t=A.length-1;t>=0;t--){var r=A.item(t);su.indexOf(r)===-1&&e.style.setProperty(r,A.getPropertyValue(r))}return e},iu=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},au=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},ou=function(A){var e=A[0],t=A[1],r=A[2];e.scrollLeft=t,e.scrollTop=r},Bu=":before",cu=":after",an="___html2canvas___pseudoelement_before",on="___html2canvas___pseudoelement_after",_s=`{
1
+ "use strict";var wr=Object.defineProperty;var Uo=Object.getOwnPropertyDescriptor;var Fo=Object.getOwnPropertyNames;var po=Object.prototype.hasOwnProperty;var mo=(A,e)=>{for(var t in e)wr(A,t,{get:e[t],enumerable:!0})},vo=(A,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Fo(e))!po.call(A,n)&&n!==t&&wr(A,n,{get:()=>e[n],enumerable:!(r=Uo(e,n))||r.enumerable});return A};var Eo=A=>vo(wr({},"__esModule",{value:!0}),A);var vf={};mo(vf,{PAGE_COMPOSITOR_BUILD_CANARY:()=>Cn,PAGE_COMPOSITOR_CANVAS_ID:()=>Ar,SHADER_NAMES:()=>dr,init:()=>io,installPageSideCompositor:()=>er,isHtmlInCanvasCaptureSupported:()=>tt,isPageSideCompositingSupported:()=>dn});module.exports=Eo(vf);var _n="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);}",gA=`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
+ `,ue="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 fe=1920,ge=1080;function ot(A,e=fe,t=ge){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 at(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 Qr=null;function Cr(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 Rn(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,Cr(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 Qr||(Qr=Cr(A,_n,A.VERTEX_SHADER)),Rn(A,Qr,e)}function On(A,e,t){return Rn(A,Cr(A,e,A.VERTEX_SHADER),t)}var Mn=new WeakMap;function Ho(A,e){let t=Mn.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")},Mn.set(e,t),t)}function ct(A,e,t,r,n,s,i,o=fe,a=ge){let B=Ho(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,o,a),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 ne(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 we(A,e,t){A.bindTexture(A.TEXTURE_2D,e),A.texImage2D(A.TEXTURE_2D,0,A.RGBA,A.RGBA,A.UNSIGNED_BYTE,t)}var Gn={"domain-warp":{frag:gA+ue+"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:gA+ue+"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:gA+"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:gA+"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:gA+"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:gA+"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:gA+"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:gA+"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:gA+"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:gA+ue+"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:gA+ue+"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:gA+"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:gA+ue+"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:gA+"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.);}"}},dr=Object.keys(Gn);function lt(A){let e=Gn[A];if(!e)throw new Error(`[HyperShader] Unknown shader: "${A}". Available: ${dr.join(", ")}`);return e.frag}var Gr=function(A,e){return Gr=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])},Gr(A,e)};function LA(A,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");Gr(A,e);function t(){this.constructor=A}A.prototype=e===null?Object.create(e):(t.prototype=e.prototype,new t)}var Nr=function(){return Nr=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},Nr.apply(this,arguments)};function wA(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 o(l){try{B(r.next(l))}catch(u){i(u)}}function a(l){try{B(r.throw(l))}catch(u){i(u)}}function B(l){l.done?s(l.value):n(l.value).then(o,a)}B((r=r.apply(A,e||[])).next())})}function cA(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:o(0),throw:o(1),return:o(2)},typeof Symbol=="function"&&(i[Symbol.iterator]=function(){return this}),i;function o(B){return function(l){return a([B,l])}}function a(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 PA=(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 PA.fromClientRect(A,e.getBoundingClientRect())},yo=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 PA(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},rA=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},Nn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Io=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(xe=0;xe<Nn.length;xe++)Io[Nn.charCodeAt(xe)]=xe;var xe,Vn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Oe=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Te=0;Te<Vn.length;Te++)Oe[Vn.charCodeAt(Te)]=Te;var Te,bo=function(A){var e=A.length*.75,t=A.length,r,n=0,s,i,o,a;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)],o=Oe[A.charCodeAt(r+2)],a=Oe[A.charCodeAt(r+3)],l[n++]=s<<2|i>>4,l[n++]=(i&15)<<4|o>>2,l[n++]=(o&3)<<6|a&63;return B},xo=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},To=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,cn=11,hr=2,Lo=cn-ae,Gs=65536>>ae,So=1<<ae,Ur=So-1,Ko=1024>>ae,Do=Gs+Ko,_o=Do,Mo=32,Ro=_o+Mo,Oo=65536>>cn,Go=1<<Lo,No=Go-1,Pn=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},Vo=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},Po=function(A,e){var t=bo(A),r=Array.isArray(t)?To(t):new Uint32Array(t),n=Array.isArray(t)?xo(t):new Uint16Array(t),s=24,i=Pn(n,s/2,r[4]/2),o=r[5]===2?Pn(n,(s+r[4])/2):Vo(r,Math.ceil((s+r[4])/4));return new ko(r[0],r[1],r[2],r[3],i,o)},ko=(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&Ur),this.data[t];if(e<=65535)return t=this.index[Gs+(e-55296>>ae)],t=(t<<hr)+(e&Ur),this.data[t];if(e<this.highStart)return t=Ro-Oo+(e>>cn),t=this.index[t],t+=e>>ae&No,t=this.index[t],t=(t<<hr)+(e&Ur),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),kn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Xo=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Le=0;Le<kn.length;Le++)Xo[kn.charCodeAt(Le)]=Le;var Le,Wo="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==",Xn=50,Jo=1,Ns=2,Vs=3,Yo=4,Zo=5,Wn=7,Ps=8,Jn=9,ZA=10,Vr=11,Yn=12,Pr=13,qo=14,Ge=15,kr=16,ft=17,Se=18,jo=19,Zn=20,Xr=21,Ke=22,Fr=23,Qe=24,hA=25,Ne=26,Ve=27,Ce=28,zo=29,ie=30,$o=31,gt=32,wt=33,Wr=34,Jr=35,Yr=36,je=37,Zr=38,xt=39,Tt=40,pr=41,ks=42,Aa=43,ea=[9001,65288],Xs="!",N="\xD7",Qt="\xF7",qr=Po(Wo),GA=[ie,Yr],jr=[Jo,Ns,Vs,Zo],Ws=[ZA,Ps],qn=[Ve,Ne],ta=jr.concat(Ws),jn=[Zr,xt,Tt,Wr,Jr],ra=[Ge,Pr],na=function(A,e){e===void 0&&(e="strict");var t=[],r=[],n=[];return A.forEach(function(s,i){var o=qr.get(s);if(o>Xn?(n.push(!0),o-=Xn):n.push(!1),["normal","auto","loose"].indexOf(e)!==-1&&[8208,8211,12316,12448].indexOf(s)!==-1)return r.push(i),t.push(kr);if(o===Yo||o===Vr){if(i===0)return r.push(i),t.push(ie);var a=t[i-1];return ta.indexOf(a)===-1?(r.push(r[i-1]),t.push(a)):(r.push(i),t.push(ie))}if(r.push(i),o===$o)return t.push(e==="strict"?Xr:je);if(o===ks||o===zo)return t.push(ie);if(o===Aa)return s>=131072&&s<=196605||s>=196608&&s<=262141?t.push(je):t.push(ie);t.push(o)}),[r,t,n]},mr=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!==ZA)break}if(n===ZA)for(var s=t;s>0;){s--;var o=r[s];if(Array.isArray(A)?A.indexOf(o)!==-1:A===o)for(var a=t;a<=r.length;){a++;var i=r[a];if(i===e)return!0;if(i!==ZA)break}if(o!==ZA)break}return!1},zn=function(A,e){for(var t=A;t>=0;){var r=e[t];if(r===ZA)t--;else return r}return 0},sa=function(A,e,t,r,n){if(t[r]===0)return N;var s=r-1;if(Array.isArray(n)&&n[s]===!0)return N;var i=s-1,o=s+1,a=e[s],B=i>=0?e[i]:0,l=e[o];if(a===Ns&&l===Vs)return N;if(jr.indexOf(a)!==-1)return Xs;if(jr.indexOf(l)!==-1||Ws.indexOf(l)!==-1)return N;if(zn(s,e)===Ps)return Qt;if(qr.get(A[s])===Vr||(a===gt||a===wt)&&qr.get(A[o])===Vr||a===Wn||l===Wn||a===Jn||[ZA,Pr,Ge].indexOf(a)===-1&&l===Jn||[ft,Se,jo,Qe,Ce].indexOf(l)!==-1||zn(s,e)===Ke||mr(Fr,Ke,s,e)||mr([ft,Se],Xr,s,e)||mr(Yn,Yn,s,e))return N;if(a===ZA)return Qt;if(a===Fr||l===Fr)return N;if(l===kr||a===kr)return Qt;if([Pr,Ge,Xr].indexOf(l)!==-1||a===qo||B===Yr&&ra.indexOf(a)!==-1||a===Ce&&l===Yr||l===Zn||GA.indexOf(l)!==-1&&a===hA||GA.indexOf(a)!==-1&&l===hA||a===Ve&&[je,gt,wt].indexOf(l)!==-1||[je,gt,wt].indexOf(a)!==-1&&l===Ne||GA.indexOf(a)!==-1&&qn.indexOf(l)!==-1||qn.indexOf(a)!==-1&&GA.indexOf(l)!==-1||[Ve,Ne].indexOf(a)!==-1&&(l===hA||[Ke,Ge].indexOf(l)!==-1&&e[o+1]===hA)||[Ke,Ge].indexOf(a)!==-1&&l===hA||a===hA&&[hA,Ce,Qe].indexOf(l)!==-1)return N;if([hA,Ce,Qe,ft,Se].indexOf(l)!==-1)for(var u=s;u>=0;){var f=e[u];if(f===hA)return N;if([Ce,Qe].indexOf(f)!==-1)u--;else break}if([Ve,Ne].indexOf(l)!==-1)for(var u=[ft,Se].indexOf(a)!==-1?i:s;u>=0;){var f=e[u];if(f===hA)return N;if([Ce,Qe].indexOf(f)!==-1)u--;else break}if(Zr===a&&[Zr,xt,Wr,Jr].indexOf(l)!==-1||[xt,Wr].indexOf(a)!==-1&&[xt,Tt].indexOf(l)!==-1||[Tt,Jr].indexOf(a)!==-1&&l===Tt||jn.indexOf(a)!==-1&&[Zn,Ne].indexOf(l)!==-1||jn.indexOf(l)!==-1&&a===Ve||GA.indexOf(a)!==-1&&GA.indexOf(l)!==-1||a===Qe&&GA.indexOf(l)!==-1||GA.concat(hA).indexOf(a)!==-1&&l===Ke&&ea.indexOf(A[o])===-1||GA.concat(hA).indexOf(l)!==-1&&a===Se)return N;if(a===pr&&l===pr){for(var C=t[s],g=1;C>0&&(C--,e[C]===pr);)g++;if(g%2!==0)return N}return a===gt&&l===wt?N:Qt},ia=function(A,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var t=na(A,e.lineBreak),r=t[0],n=t[1],s=t[2];(e.wordBreak==="break-all"||e.wordBreak==="break-word")&&(n=n.map(function(o){return[hA,ie,ks].indexOf(o)!==-1?je:o}));var i=e.wordBreak==="keep-all"?s.map(function(o,a){return o&&A[a]>=19968&&A[a]<=40959}):void 0;return[r,n,i]},oa=(function(){function A(e,t,r,n){this.codePoints=e,this.required=t===Xs,this.start=r,this.end=n}return A.prototype.slice=function(){return rA.apply(void 0,this.codePoints.slice(this.start,this.end))},A})(),aa=function(A,e){var t=Xt(A),r=ia(t,e),n=r[0],s=r[1],i=r[2],o=t.length,a=0,B=0;return{next:function(){if(B>=o)return{done:!0,value:null};for(var l=N;B<o&&(l=sa(t,s,n,++B,i))===N;);if(l!==N||B===o){var u=new oa(t,l,a,B);return a=B,{value:u,done:!1}}return{done:!0,value:null}}}},Ba=1,ca=2,At=4,$n=8,Kt=10,As=47,We=92,la=9,ua=32,Ct=34,De=61,fa=35,ga=36,wa=37,dt=39,ht=40,_e=41,Qa=95,dA=45,Ca=33,da=60,ha=62,Ua=64,Fa=91,pa=93,ma=61,va=123,Ut=63,Ea=125,es=124,Ha=126,ya=128,ts=65533,vr=42,oe=43,Ia=44,ba=58,xa=59,ze=46,Ta=0,La=8,Sa=11,Ka=14,Da=31,_a=127,SA=-1,Js=48,Ys=97,Zs=101,Ma=102,Ra=117,Oa=122,qs=65,js=69,zs=70,Ga=85,Na=90,lA=function(A){return A>=Js&&A<=57},Va=function(A){return A>=55296&&A<=57343},de=function(A){return lA(A)||A>=qs&&A<=zs||A>=Ys&&A<=Ma},Pa=function(A){return A>=Ys&&A<=Oa},ka=function(A){return A>=qs&&A<=Na},Xa=function(A){return Pa(A)||ka(A)},Wa=function(A){return A>=ya},Ft=function(A){return A===Kt||A===la||A===ua},Dt=function(A){return Xa(A)||Wa(A)||A===Qa},rs=function(A){return Dt(A)||lA(A)||A===dA},Ja=function(A){return A>=Ta&&A<=La||A===Sa||A>=Ka&&A<=Da||A===_a},YA=function(A,e){return A!==We?!1:e!==Kt},pt=function(A,e,t){return A===dA?Dt(e)||YA(e,t):Dt(A)?!0:!!(A===We&&YA(A,e))},Er=function(A,e,t){return A===oe||A===dA?lA(e)?!0:e===ze&&lA(t):lA(A===ze?e:A)},Ya=function(A){var e=0,t=1;(A[e]===oe||A[e]===dA)&&(A[e]===dA&&(t=-1),e++);for(var r=[];lA(A[e]);)r.push(A[e++]);var n=r.length?parseInt(rA.apply(void 0,r),10):0;A[e]===ze&&e++;for(var s=[];lA(A[e]);)s.push(A[e++]);var i=s.length,o=i?parseInt(rA.apply(void 0,s),10):0;(A[e]===js||A[e]===Zs)&&e++;var a=1;(A[e]===oe||A[e]===dA)&&(A[e]===dA&&(a=-1),e++);for(var B=[];lA(A[e]);)B.push(A[e++]);var l=B.length?parseInt(rA.apply(void 0,B),10):0;return t*(n+o*Math.pow(10,-i))*Math.pow(10,a*l)},Za={type:2},qa={type:3},ja={type:4},za={type:13},$a={type:8},AB={type:21},eB={type:9},tB={type:10},rB={type:11},nB={type:12},sB={type:14},mt={type:23},iB={type:1},oB={type:25},aB={type:24},BB={type:26},cB={type:27},lB={type:28},uB={type:29},fB={type:31},zr={type:32},$s=(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!==zr;)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 fa:var t=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);if(rs(t)||YA(r,n)){var s=pt(t,r,n)?ca:Ba,i=this.consumeName();return{type:5,value:i,flags:s}}break;case ga:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),za;break;case dt:return this.consumeStringToken(dt);case ht:return Za;case _e:return qa;case vr:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),sB;break;case oe:if(Er(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case Ia:return ja;case dA:var o=e,a=this.peekCodePoint(0),B=this.peekCodePoint(1);if(Er(o,a,B))return this.reconsumeCodePoint(e),this.consumeNumericToken();if(pt(o,a,B))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();if(a===dA&&B===ha)return this.consumeCodePoint(),this.consumeCodePoint(),aB;break;case ze:if(Er(e,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(e),this.consumeNumericToken();break;case As:if(this.peekCodePoint(0)===vr)for(this.consumeCodePoint();;){var l=this.consumeCodePoint();if(l===vr&&(l=this.consumeCodePoint(),l===As))return this.consumeToken();if(l===SA)return this.consumeToken()}break;case ba:return BB;case xa:return cB;case da:if(this.peekCodePoint(0)===Ca&&this.peekCodePoint(1)===dA&&this.peekCodePoint(2)===dA)return this.consumeCodePoint(),this.consumeCodePoint(),oB;break;case Ua:var u=this.peekCodePoint(0),f=this.peekCodePoint(1),C=this.peekCodePoint(2);if(pt(u,f,C)){var i=this.consumeName();return{type:7,value:i}}break;case Fa:return lB;case We:if(YA(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),this.consumeIdentLikeToken();break;case pa:return uB;case ma:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),$a;break;case va:return rB;case Ea:return nB;case Ra:case Ga:var g=this.peekCodePoint(0),w=this.peekCodePoint(1);return g===oe&&(de(w)||w===Ut)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(e),this.consumeIdentLikeToken();case es:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),eB;if(this.peekCodePoint(0)===es)return this.consumeCodePoint(),AB;break;case Ha:if(this.peekCodePoint(0)===De)return this.consumeCodePoint(),tB;break;case SA:return zr}return Ft(e)?(this.consumeWhiteSpace(),fB):lA(e)?(this.reconsumeCodePoint(e),this.consumeNumericToken()):Dt(e)?(this.reconsumeCodePoint(e),this.consumeIdentLikeToken()):{type:6,value:rA(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();de(t)&&e.length<6;)e.push(t),t=this.consumeCodePoint();for(var r=!1;t===Ut&&e.length<6;)e.push(t),t=this.consumeCodePoint(),r=!0;if(r){var n=parseInt(rA.apply(void 0,e.map(function(a){return a===Ut?Js:a})),16),s=parseInt(rA.apply(void 0,e.map(function(a){return a===Ut?zs:a})),16);return{type:30,start:n,end:s}}var i=parseInt(rA.apply(void 0,e),16);if(this.peekCodePoint(0)===dA&&de(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();for(var o=[];de(t)&&o.length<6;)o.push(t),t=this.consumeCodePoint();var s=parseInt(rA.apply(void 0,o),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)===ht?(this.consumeCodePoint(),this.consumeUrlToken()):this.peekCodePoint(0)===ht?(this.consumeCodePoint(),{type:19,value:e}):{type:20,value:e}},A.prototype.consumeUrlToken=function(){var e=[];if(this.consumeWhiteSpace(),this.peekCodePoint(0)===SA)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)===SA||this.peekCodePoint(0)===_e)?(this.consumeCodePoint(),{type:22,value:r.value}):(this.consumeBadUrlRemnants(),mt)}for(;;){var n=this.consumeCodePoint();if(n===SA||n===_e)return{type:22,value:rA.apply(void 0,e)};if(Ft(n))return this.consumeWhiteSpace(),this.peekCodePoint(0)===SA||this.peekCodePoint(0)===_e?(this.consumeCodePoint(),{type:22,value:rA.apply(void 0,e)}):(this.consumeBadUrlRemnants(),mt);if(n===Ct||n===dt||n===ht||Ja(n))return this.consumeBadUrlRemnants(),mt;if(n===We)if(YA(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===SA)return;YA(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+=rA.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===SA||n===void 0||n===e)return t+=this.consumeStringSlice(r),{type:0,value:t};if(n===Kt)return this._value.splice(0,r),iB;if(n===We){var s=this._value[r+1];s!==SA&&s!==void 0&&(s===Kt?(t+=this.consumeStringSlice(r),r=-1,this._value.shift()):YA(n,s)&&(t+=this.consumeStringSlice(r),t+=rA(this.consumeEscapedCodePoint()),r=-1))}r++}while(!0)},A.prototype.consumeNumber=function(){var e=[],t=At,r=this.peekCodePoint(0);for((r===oe||r===dA)&&e.push(this.consumeCodePoint());lA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0);var n=this.peekCodePoint(1);if(r===ze&&lA(n))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=$n;lA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());r=this.peekCodePoint(0),n=this.peekCodePoint(1);var s=this.peekCodePoint(2);if((r===js||r===Zs)&&((n===oe||n===dA)&&lA(s)||lA(n)))for(e.push(this.consumeCodePoint(),this.consumeCodePoint()),t=$n;lA(this.peekCodePoint(0));)e.push(this.consumeCodePoint());return[Ya(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 o=this.consumeName();return{type:15,number:t,flags:r,unit:o}}return n===wa?(this.consumeCodePoint(),{type:16,number:t,flags:r}):{type:17,number:t,flags:r}},A.prototype.consumeEscapedCodePoint=function(){var e=this.consumeCodePoint();if(de(e)){for(var t=rA(e);de(this.peekCodePoint(0))&&t.length<6;)t+=rA(this.consumeCodePoint());Ft(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(t,16);return r===0||Va(r)||r>1114111?ts:r}return e===SA?ts:e},A.prototype.consumeName=function(){for(var e="";;){var t=this.consumeCodePoint();if(rs(t))e+=rA(t);else if(YA(t,this.peekCodePoint(0)))e+=rA(this.consumeEscapedCodePoint());else return this.reconsumeCodePoint(t),e}},A})(),Ai=(function(){function A(e){this._tokens=e}return A.create=function(e){var t=new $s;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||wB(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"?zr:e},A.prototype.reconsumeToken=function(e){this._tokens.unshift(e)},A})(),et=function(A){return A.type===15},ye=function(A){return A.type===17},Z=function(A){return A.type===20},gB=function(A){return A.type===0},$r=function(A,e){return Z(A)&&A.value===e},ei=function(A){return A.type!==31},He=function(A){return A.type!==31&&A.type!==4},KA=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},wB=function(A,e){return e===11&&A.type===12||e===28&&A.type===29?!0:e===2&&A.type===3},Ae=function(A){return A.type===17||A.type===15},nA=function(A){return A.type===16||Ae(A)},ti=function(A){return A.length>1?[A[0],A[1]]:[A[0]]},BA={type:17,number:0,flags:At},ln={type:16,number:50,flags:At},qA={type:16,number:100,flags:At},Pe=function(A,e,t){var r=A[0],n=A[1];return[z(r,e),z(typeof n<"u"?n:r,t)]},z=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},ri="deg",ni="grad",si="rad",ii="turn",Wt={name:"angle",parse:function(A,e){if(e.type===15)switch(e.unit){case ri:return Math.PI*e.number/180;case ni:return Math.PI/200*e.number;case si:return e.number;case ii:return Math.PI*2*e.number}throw new Error("Unsupported angle type")}},oi=function(A){return A.type===15&&(A.unit===ri||A.unit===ni||A.unit===si||A.unit===ii)},ai=function(A){var e=A.filter(Z).map(function(t){return t.value}).join(" ");switch(e){case"to bottom right":case"to right bottom":case"left top":case"top left":return[BA,BA];case"to top":case"bottom":return EA(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[BA,qA];case"to right":case"left":return EA(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[qA,qA];case"to bottom":case"top":return EA(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[qA,BA];case"to left":case"right":return EA(270)}return 0},EA=function(A){return Math.PI*A/180},zA={name:"color",parse:function(A,e){if(e.type===18){var t=QB[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 jA(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 jA(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 jA(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 jA(parseInt(r,16),parseInt(n,16),parseInt(s,16),parseInt(i,16)/255)}}if(e.type===20){var o=VA[e.value.toUpperCase()];if(typeof o<"u")return o}return VA.TRANSPARENT}},$A=function(A){return(255&A)===0},iA=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+")"},jA=function(A,e,t,r){return(A<<24|e<<16|t<<8|Math.round(r*255)<<0)>>>0},ns=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},ss=function(A,e){var t=e.filter(He);if(t.length===3){var r=t.map(ns),n=r[0],s=r[1],i=r[2];return jA(n,s,i,1)}if(t.length===4){var o=t.map(ns),n=o[0],s=o[1],i=o[2],a=o[3];return jA(n,s,i,a)}return 0};function Hr(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 is=function(A,e){var t=e.filter(He),r=t[0],n=t[1],s=t[2],i=t[3],o=(r.type===17?EA(r.number):Wt.parse(A,r))/(Math.PI*2),a=nA(n)?n.number/100:0,B=nA(s)?s.number/100:0,l=typeof i<"u"&&nA(i)?z(i,1):1;if(a===0)return jA(B*255,B*255,B*255,1);var u=B<=.5?B*(a+1):B+a-B*a,f=B*2-u,C=Hr(f,u,o+1/3),g=Hr(f,u,o),w=Hr(f,u,o-1/3);return jA(C*255,g*255,w*255,l)},QB={hsl:is,hsla:is,rgb:ss,rgba:ss},Je=function(A,e){return zA.parse(A,Ai.create(e).parseComponentValue())},VA={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(t){if(Z(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},dB={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Jt=function(A,e){var t=zA.parse(A,e[0]),r=e[1];return r&&nA(r)?{color:t,stop:r}:{color:t,stop:null}},os=function(A,e){var t=A[0],r=A[A.length-1];t.stop===null&&(t.stop=BA),r.stop===null&&(r.stop=qA);for(var n=[],s=0,i=0;i<A.length;i++){var o=A[i].stop;if(o!==null){var a=z(o,e);a>s?n.push(a):n.push(s),s=a}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],C=(l-f)/(u+1),g=1;g<=u;g++)n[B+g-1]=C*g;B=null}}return A.map(function(w,x){var F=w.color;return{color:F,stop:Math.max(Math.min(1,n[x]/e),0)}})},hB=function(A,e,t){var r=e/2,n=t/2,s=z(A[0],e)-r,i=n-z(A[1],t);return(Math.atan2(i,s)+Math.PI*2)%(Math.PI*2)},UB=function(A,e,t){var r=typeof A=="number"?A:hB(A,e,t),n=Math.abs(e*Math.sin(r))+Math.abs(t*Math.cos(r)),s=e/2,i=t/2,o=n/2,a=Math.sin(r-Math.PI/2)*o,B=Math.cos(r-Math.PI/2)*o;return[n,s-B,s+B,i-a,i+a]},TA=function(A,e){return Math.sqrt(A*A+e*e)},as=function(A,e,t,r,n){var s=[[0,0],[0,e],[A,0],[A,e]];return s.reduce(function(i,o){var a=o[0],B=o[1],l=TA(t-a,r-B);return(n?l<i.optimumDistance:l>i.optimumDistance)?{optimumCorner:o,optimumDistance:l}:i},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner},FB=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(TA(e,t),TA(e,t-n),TA(e-r,t),TA(e-r,t-n));else if(A.shape===1){var o=Math.min(Math.abs(t),Math.abs(t-n))/Math.min(Math.abs(e),Math.abs(e-r)),a=as(r,n,e,t,!0),B=a[0],l=a[1];s=TA(B-e,(l-t)/o),i=o*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(TA(e,t),TA(e,t-n),TA(e-r,t),TA(e-r,t-n));else if(A.shape===1){var o=Math.max(Math.abs(t),Math.abs(t-n))/Math.max(Math.abs(e),Math.abs(e-r)),u=as(r,n,e,t,!1),B=u[0],l=u[1];s=TA(B-e,(l-t)/o),i=o*s}break}return Array.isArray(A.size)&&(s=z(A.size[0],r),i=A.size.length===2?z(A.size[1],n):s),[s,i]},pB=function(A,e){var t=EA(180),r=[];return KA(e).forEach(function(n,s){if(s===0){var i=n[0];if(i.type===20&&i.value==="to"){t=ai(n);return}else if(oi(i)){t=Wt.parse(A,i);return}}var o=Jt(A,n);r.push(o)}),{angle:t,stops:r,type:1}},vt=function(A,e){var t=EA(180),r=[];return KA(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=ai(n);return}else if(oi(i)){t=(Wt.parse(A,i)+EA(270))%EA(360);return}}var o=Jt(A,n);r.push(o)}),{angle:t,stops:r,type:1}},mB=function(A,e){var t=EA(180),r=[],n=1,s=0,i=3,o=[];return KA(e).forEach(function(a,B){var l=a[0];if(B===0){if(Z(l)&&l.value==="linear"){n=1;return}else if(Z(l)&&l.value==="radial"){n=2;return}}if(l.type===18){if(l.name==="from"){var u=zA.parse(A,l.values[0]);r.push({stop:BA,color:u})}else if(l.name==="to"){var u=zA.parse(A,l.values[0]);r.push({stop:qA,color:u})}else if(l.name==="color-stop"){var f=l.values.filter(He);if(f.length===2){var u=zA.parse(A,f[1]),C=f[0];ye(C)&&r.push({stop:{type:16,number:C.number*100,flags:C.flags},color:u})}}}}),n===1?{angle:(t+EA(180))%EA(360),stops:r,type:n}:{size:i,shape:s,stops:r,position:o,type:n}},Bi="closest-side",ci="farthest-side",li="closest-corner",ui="farthest-corner",fi="circle",gi="ellipse",wi="cover",Qi="contain",vB=function(A,e){var t=0,r=3,n=[],s=[];return KA(e).forEach(function(i,o){var a=!0;if(o===0){var B=!1;a=i.reduce(function(u,f){if(B)if(Z(f))switch(f.value){case"center":return s.push(ln),u;case"top":case"left":return s.push(BA),u;case"right":case"bottom":return s.push(qA),u}else(nA(f)||Ae(f))&&s.push(f);else if(Z(f))switch(f.value){case fi:return t=0,!1;case gi:return t=1,!1;case"at":return B=!0,!1;case Bi:return r=0,!1;case wi:case ci:return r=1,!1;case Qi:case li:return r=2,!1;case ui:return r=3,!1}else if(Ae(f)||nA(f))return Array.isArray(r)||(r=[]),r.push(f),!1;return u},a)}if(a){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 KA(e).forEach(function(i,o){var a=!0;if(o===0?a=i.reduce(function(l,u){if(Z(u))switch(u.value){case"center":return s.push(ln),!1;case"top":case"left":return s.push(BA),!1;case"right":case"bottom":return s.push(qA),!1}else if(nA(u)||Ae(u))return s.push(u),!1;return l},a):o===1&&(a=i.reduce(function(l,u){if(Z(u))switch(u.value){case fi:return t=0,!1;case gi:return t=1,!1;case Qi:case Bi:return r=0,!1;case ci:return r=1,!1;case li:return r=2,!1;case wi:case ui:return r=3,!1}else if(Ae(u)||nA(u))return Array.isArray(r)||(r=[]),r.push(u),!1;return l},a)),a){var B=Jt(A,i);n.push(B)}}),{size:r,shape:t,stops:n,position:s,type:2}},EB=function(A){return A.type===1},HB=function(A){return A.type===2},un={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=Ci[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 yB(A){return!(A.type===20&&A.value==="none")&&(A.type!==18||!!Ci[A.name])}var Ci={"linear-gradient":pB,"-moz-linear-gradient":vt,"-ms-linear-gradient":vt,"-o-linear-gradient":vt,"-webkit-linear-gradient":vt,"radial-gradient":vB,"-moz-radial-gradient":Et,"-ms-radial-gradient":Et,"-o-radial-gradient":Et,"-webkit-radial-gradient":Et,"-webkit-gradient":mB},IB={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 He(r)&&yB(r)}).map(function(r){return un.parse(A,r)})}},bB={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,e){return e.map(function(t){if(Z(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},xB={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,e){return KA(e).map(function(t){return t.filter(nA)}).map(ti)}},TB={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,e){return KA(e).map(function(t){return t.filter(Z).map(function(r){return r.value}).join(" ")}).map(LB)}},LB=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}},Ee;(function(A){A.AUTO="auto",A.CONTAIN="contain",A.COVER="cover"})(Ee||(Ee={}));var SB={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(A,e){return KA(e).map(function(t){return t.filter(KB)})}},KB=function(A){return Z(A)||nA(A)},Yt=function(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},DB=Yt("top"),_B=Yt("right"),MB=Yt("bottom"),RB=Yt("left"),Zt=function(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(e,t){return ti(t.filter(nA))}}},OB=Zt("top-left"),GB=Zt("top-right"),NB=Zt("bottom-right"),VB=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}}},PB=qt("top"),kB=qt("right"),XB=qt("bottom"),WB=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}}},JB=jt("top"),YB=jt("right"),ZB=jt("bottom"),qB=jt("left"),jB={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},zB={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,e){return e==="rtl"?1:0}},$B={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).reduce(function(t,r){return t|Ac(r.value)},0)}},Ac=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},ec={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}},tc={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 rc={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(A,e){return e==="strict"?_t.STRICT:_t.NORMAL}},nc={name:"line-height",initialValue:"normal",prefix:!1,type:4},Bs=function(A,e){return Z(A)&&A.value==="normal"?1.2*e:A.type===17?e*A.number:nA(A)?z(A,e):e},sc={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,e){return e.type===20&&e.value==="none"?null:un.parse(A,e)}},ic={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,e){return e==="inside"?0:1}},An={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}},oc=zt("top"),ac=zt("right"),Bc=zt("bottom"),cc=zt("left"),lc={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).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}})}},uc={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"}},fc=$t("top"),gc=$t("right"),wc=$t("bottom"),Qc=$t("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}}},dc={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}},hc={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&$r(e[0],"none")?[]:KA(e).map(function(t){for(var r={color:VA.TRANSPARENT,offsetX:BA,offsetY:BA,blur:BA},n=0,s=0;s<t.length;s++){var i=t[s];Ae(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:r.blur=i,n++):r.color=zA.parse(A,i)}return r})}},Uc={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}},Fc={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=vc[e.name];if(typeof t>"u")throw new Error('Attempting to parse an unsupported transform function "'+e.name+'"');return t(e.values)}return null}},pc=function(A){var e=A.filter(function(t){return t.type===17}).map(function(t){return t.number});return e.length===6?e:null},mc=function(A){var e=A.filter(function(a){return a.type===17}).map(function(a){return a.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],o=e[13];return e[14],e[15],e.length===16?[t,r,n,s,i,o]:null},vc={matrix:pc,matrix3d:mc},cs={type:16,number:50,flags:At},Ec=[cs,cs],Hc={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,e){var t=e.filter(nA);return t.length!==2?Ec:[t[0],t[1]]}},yc={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 Ic={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}}},bc={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,e){if(e.type===20)return{auto:!0,order:0};if(ye(e))return{auto:!1,order:e.number};throw new Error("Invalid z-index number parsed")}},di={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")}},xc={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,e){return ye(e)?e.number:1}},Tc={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Lc={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,e){return e.filter(Z).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})}},Sc={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+"'"})}},Kc={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Dc={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,e){return ye(e)?e.number:Z(e)&&e.value==="bold"?700:400}},_c={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.filter(Z).map(function(t){return t.value})}},Mc={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"}}},sA=function(A,e){return(A&e)!==0},Rc={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}},Oc={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(ei),s=0;s<n.length;s++){var i=n[s],o=n[s+1];if(i.type===20){var a=o&&ye(o)?o.number:1;r.push({counter:i.value,increment:a})}}return r}},Gc={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,e){if(e.length===0)return[];for(var t=[],r=e.filter(ei),n=0;n<r.length;n++){var s=r[n],i=r[n+1];if(Z(s)&&s.value!=="none"){var o=i&&ye(i)?i.number:0;t.push({counter:s.value,reset:o})}}return t}},Nc={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(A,e){return e.filter(et).map(function(t){return di.parse(A,t)})}},Vc={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(gB);if(n.length%2!==0)return null;for(var s=0;s<n.length;s+=2){var i=n[s].value,o=n[s+1].value;r.push({open:i,close:o})}return r}},ls=function(A,e,t){if(!A)return"";var r=A[Math.min(e,A.length-1)];return r?t?r.open:r.close:""},Pc={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(A,e){return e.length===1&&$r(e[0],"none")?[]:KA(e).map(function(t){for(var r={color:255,offsetX:BA,offsetY:BA,blur:BA,spread:BA,inset:!1},n=0,s=0;s<t.length;s++){var i=t[s];$r(i,"inset")?r.inset=!0:Ae(i)?(n===0?r.offsetX=i:n===1?r.offsetY=i:n===2?r.blur=i:r.spread=i,n++):r.color=zA.parse(A,i)}return r})}},kc={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,e){var t=[0,1,2],r=[];return e.filter(Z).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}},Xc={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Wc={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,e){return et(e)?e.number:0}},Jc=(function(){function A(e,t){var r,n;this.animationDuration=H(e,Nc,t.animationDuration),this.backgroundClip=H(e,CB,t.backgroundClip),this.backgroundColor=H(e,dB,t.backgroundColor),this.backgroundImage=H(e,IB,t.backgroundImage),this.backgroundOrigin=H(e,bB,t.backgroundOrigin),this.backgroundPosition=H(e,xB,t.backgroundPosition),this.backgroundRepeat=H(e,TB,t.backgroundRepeat),this.backgroundSize=H(e,SB,t.backgroundSize),this.borderTopColor=H(e,DB,t.borderTopColor),this.borderRightColor=H(e,_B,t.borderRightColor),this.borderBottomColor=H(e,MB,t.borderBottomColor),this.borderLeftColor=H(e,RB,t.borderLeftColor),this.borderTopLeftRadius=H(e,OB,t.borderTopLeftRadius),this.borderTopRightRadius=H(e,GB,t.borderTopRightRadius),this.borderBottomRightRadius=H(e,NB,t.borderBottomRightRadius),this.borderBottomLeftRadius=H(e,VB,t.borderBottomLeftRadius),this.borderTopStyle=H(e,PB,t.borderTopStyle),this.borderRightStyle=H(e,kB,t.borderRightStyle),this.borderBottomStyle=H(e,XB,t.borderBottomStyle),this.borderLeftStyle=H(e,WB,t.borderLeftStyle),this.borderTopWidth=H(e,JB,t.borderTopWidth),this.borderRightWidth=H(e,YB,t.borderRightWidth),this.borderBottomWidth=H(e,ZB,t.borderBottomWidth),this.borderLeftWidth=H(e,qB,t.borderLeftWidth),this.boxShadow=H(e,Pc,t.boxShadow),this.color=H(e,jB,t.color),this.direction=H(e,zB,t.direction),this.display=H(e,$B,t.display),this.float=H(e,ec,t.cssFloat),this.fontFamily=H(e,Sc,t.fontFamily),this.fontSize=H(e,Kc,t.fontSize),this.fontStyle=H(e,Mc,t.fontStyle),this.fontVariant=H(e,_c,t.fontVariant),this.fontWeight=H(e,Dc,t.fontWeight),this.letterSpacing=H(e,tc,t.letterSpacing),this.lineBreak=H(e,rc,t.lineBreak),this.lineHeight=H(e,nc,t.lineHeight),this.listStyleImage=H(e,sc,t.listStyleImage),this.listStylePosition=H(e,ic,t.listStylePosition),this.listStyleType=H(e,An,t.listStyleType),this.marginTop=H(e,oc,t.marginTop),this.marginRight=H(e,ac,t.marginRight),this.marginBottom=H(e,Bc,t.marginBottom),this.marginLeft=H(e,cc,t.marginLeft),this.opacity=H(e,xc,t.opacity);var s=H(e,lc,t.overflow);this.overflowX=s[0],this.overflowY=s[s.length>1?1:0],this.overflowWrap=H(e,uc,t.overflowWrap),this.paddingTop=H(e,fc,t.paddingTop),this.paddingRight=H(e,gc,t.paddingRight),this.paddingBottom=H(e,wc,t.paddingBottom),this.paddingLeft=H(e,Qc,t.paddingLeft),this.paintOrder=H(e,kc,t.paintOrder),this.position=H(e,dc,t.position),this.textAlign=H(e,Cc,t.textAlign),this.textDecorationColor=H(e,Tc,(r=t.textDecorationColor)!==null&&r!==void 0?r:t.color),this.textDecorationLine=H(e,Lc,(n=t.textDecorationLine)!==null&&n!==void 0?n:t.textDecoration),this.textShadow=H(e,hc,t.textShadow),this.textTransform=H(e,Uc,t.textTransform),this.transform=H(e,Fc,t.transform),this.transformOrigin=H(e,Hc,t.transformOrigin),this.visibility=H(e,yc,t.visibility),this.webkitTextStrokeColor=H(e,Xc,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=H(e,Wc,t.webkitTextStrokeWidth),this.wordBreak=H(e,Ic,t.wordBreak),this.zIndex=H(e,bc,t.zIndex)}return A.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&this.visibility===0},A.prototype.isTransparent=function(){return $A(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 sA(this.display,4)||sA(this.display,33554432)||sA(this.display,268435456)||sA(this.display,536870912)||sA(this.display,67108864)||sA(this.display,134217728)},A})(),Yc=(function(){function A(e,t){this.content=H(e,Rc,t.content),this.quotes=H(e,Vc,t.quotes)}return A})(),us=(function(){function A(e,t){this.counterIncrement=H(e,Oc,t.counterIncrement),this.counterReset=H(e,Gc,t.counterReset)}return A})(),H=function(A,e,t){var r=new $s,n=t!==null&&typeof t<"u"?t.toString():e.initialValue;r.write(n);var s=new Ai(r.read());switch(e.type){case 2:var i=s.parseComponentValue();return e.parse(A,Z(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 zA.parse(A,s.parseComponentValue());case"image":return un.parse(A,s.parseComponentValue());case"length":var o=s.parseComponentValue();return Ae(o)?o:BA;case"length-percentage":var a=s.parseComponentValue();return nA(a)?a:BA;case"time":return di.parse(A,s.parseComponentValue())}break}},Zc="data-html2canvas-debug",qc=function(A){var e=A.getAttribute(Zc);switch(e){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},en=function(A,e){var t=qc(A);return t===1||e===t},DA=(function(){function A(e,t){if(this.context=e,this.textNodes=[],this.elements=[],this.flags=0,en(t,3))debugger;this.styles=new Jc(e,window.getComputedStyle(t,null)),nn(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),en(t,4)&&(this.flags|=16)}return A})(),jc="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA=",fs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ke=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Me=0;Me<fs.length;Me++)ke[fs.charCodeAt(Me)]=Me;var Me,zc=function(A){var e=A.length*.75,t=A.length,r,n=0,s,i,o,a;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)],o=ke[A.charCodeAt(r+2)],a=ke[A.charCodeAt(r+3)],l[n++]=s<<2|i>>4,l[n++]=(i&15)<<4|o>>2,l[n++]=(o&3)<<6|a&63;return B},$c=function(A){for(var e=A.length,t=[],r=0;r<e;r+=2)t.push(A[r+1]<<8|A[r]);return t},Al=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},Be=5,fn=11,yr=2,el=fn-Be,hi=65536>>Be,tl=1<<Be,Ir=tl-1,rl=1024>>Be,nl=hi+rl,sl=nl,il=32,ol=sl+il,al=65536>>fn,Bl=1<<el,cl=Bl-1,gs=function(A,e,t){return A.slice?A.slice(e,t):new Uint16Array(Array.prototype.slice.call(A,e,t))},ll=function(A,e,t){return A.slice?A.slice(e,t):new Uint32Array(Array.prototype.slice.call(A,e,t))},ul=function(A,e){var t=zc(A),r=Array.isArray(t)?Al(t):new Uint32Array(t),n=Array.isArray(t)?$c(t):new Uint16Array(t),s=24,i=gs(n,s/2,r[4]/2),o=r[5]===2?gs(n,(s+r[4])/2):ll(r,Math.ceil((s+r[4])/4));return new fl(r[0],r[1],r[2],r[3],i,o)},fl=(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>>Be],t=(t<<yr)+(e&Ir),this.data[t];if(e<=65535)return t=this.index[hi+(e-55296>>Be)],t=(t<<yr)+(e&Ir),this.data[t];if(e<this.highStart)return t=ol-al+(e>>fn),t=this.index[t],t+=e>>Be&cl,t=this.index[t],t=(t<<yr)+(e&Ir),this.data[t];if(e<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A})(),ws="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",gl=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(Re=0;Re<ws.length;Re++)gl[ws.charCodeAt(Re)]=Re;var Re,wl=1,br=2,xr=3,Qs=4,Cs=5,Ql=7,ds=8,Tr=9,Lr=10,hs=11,Us=12,Fs=13,ps=14,Sr=15,Cl=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},dl=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},hl=ul(jc),mA="\xD7",Kr="\xF7",Ul=function(A){return hl.get(A)},Fl=function(A,e,t){var r=t-2,n=e[r],s=e[t-1],i=e[t];if(s===br&&i===xr)return mA;if(s===br||s===xr||s===Qs||i===br||i===xr||i===Qs)return Kr;if(s===ds&&[ds,Tr,hs,Us].indexOf(i)!==-1||(s===hs||s===Tr)&&(i===Tr||i===Lr)||(s===Us||s===Lr)&&i===Lr||i===Fs||i===Cs||i===Ql||s===wl)return mA;if(s===Fs&&i===ps){for(;n===Cs;)n=e[--r];if(n===ps)return mA}if(s===Sr&&i===Sr){for(var o=0;n===Sr;)o++,n=e[--r];if(o%2===0)return mA}return Kr},pl=function(A){var e=Cl(A),t=e.length,r=0,n=0,s=e.map(Ul);return{next:function(){if(r>=t)return{done:!0,value:null};for(var i=mA;r<t&&(i=Fl(e,s,++r))===mA;);if(i!==mA||r===t){var o=dl.apply(null,e.slice(n,r));return n=r,{value:o,done:!1}}return{done:!0,value:null}}}},ml=function(A){for(var e=pl(A),t=[],r;!(r=e.next()).done;)r.value&&t.push(r.value.slice());return t},vl=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},El=function(A){var e=A.createElement("boundtest");e.style.width="50px",e.style.display="block",e.style.fontSize="12px",e.style.letterSpacing="0px",e.style.wordSpacing="0px",A.body.appendChild(e);var t=A.createRange();e.innerHTML=typeof"".repeat=="function"?"&#128104;".repeat(10):"";var r=e.firstChild,n=Xt(r.data).map(function(a){return rA(a)}),s=0,i={},o=n.every(function(a,B){t.setStart(r,s),t.setEnd(r,s+a.length);var l=t.getBoundingClientRect();s+=a.length;var u=l.x>i.x||l.y>i.y;return i=l,B===0?!0:u});return A.body.removeChild(e),o},Hl=function(){return typeof new Image().crossOrigin<"u"},yl=function(){return typeof new XMLHttpRequest().responseType=="string"},Il=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},ms=function(A){return A[0]===0&&A[1]===255&&A[2]===0&&A[3]===255},bl=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=tn(t,t,0,0,n);return r.fillStyle="red",r.fillRect(0,0,t,t),vs(i).then(function(o){r.drawImage(o,0,0);var a=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",ms(a)?vs(tn(t,t,0,0,B)):Promise.reject(!1)}).then(function(o){return r.drawImage(o,0,0),ms(r.getImageData(0,0,t,t).data)}).catch(function(){return!1})},tn=function(A,e,t,r,n){var s="http://www.w3.org/2000/svg",i=document.createElementNS(s,"svg"),o=document.createElementNS(s,"foreignObject");return i.setAttributeNS(null,"width",A.toString()),i.setAttributeNS(null,"height",e.toString()),o.setAttributeNS(null,"width","100%"),o.setAttributeNS(null,"height","100%"),o.setAttributeNS(null,"x",t.toString()),o.setAttributeNS(null,"y",r.toString()),o.setAttributeNS(null,"externalResourcesRequired","true"),i.appendChild(o),o.appendChild(n),i},vs=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))})},aA={get SUPPORT_RANGE_BOUNDS(){var A=vl(document);return Object.defineProperty(aA,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A=aA.SUPPORT_RANGE_BOUNDS&&El(document);return Object.defineProperty(aA,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){var A=Il(document);return Object.defineProperty(aA,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A=typeof Array.from=="function"&&typeof window.fetch=="function"?bl(document):Promise.resolve(!1);return Object.defineProperty(aA,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=Hl();return Object.defineProperty(aA,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A=yl();return Object.defineProperty(aA,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(aA,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!!(typeof Intl<"u"&&Intl.Segmenter);return Object.defineProperty(aA,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},Ze=(function(){function A(e,t){this.text=e,this.bounds=t}return A})(),xl=function(A,e,t,r){var n=Sl(e,t),s=[],i=0;return n.forEach(function(o){if(t.textDecorationLine.length||o.trim().length>0)if(aA.SUPPORT_RANGE_BOUNDS){var a=Es(r,i,o.length).getClientRects();if(a.length>1){var B=gn(o),l=0;B.forEach(function(f){s.push(new Ze(f,PA.fromDOMRectList(A,Es(r,l+i,f.length).getClientRects()))),l+=f.length})}else s.push(new Ze(o,PA.fromDOMRectList(A,a)))}else{var u=r.splitText(o.length);s.push(new Ze(o,Tl(A,r))),r=u}else aA.SUPPORT_RANGE_BOUNDS||(r=r.splitText(o.length));i+=o.length}),s},Tl=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 PA.EMPTY},Es=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},gn=function(A){if(aA.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 ml(A)},Ll=function(A,e){if(aA.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 Dl(A,e)},Sl=function(A,e){return e.letterSpacing!==0?gn(A):Ll(A,e)},Kl=[32,160,4961,65792,65793,4153,4241],Dl=function(A,e){for(var t=aa(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(),o=Xt(i),a="";o.forEach(function(B){Kl.indexOf(B)===-1?a+=rA(B):(a.length&&r.push(a),r.push(rA(B)),a="")}),a.length&&r.push(a)}};!(n=t.next()).done;)s();return r},_l=(function(){function A(e,t,r){this.text=Ml(t.data,r.textTransform),this.textBounds=xl(e,this.text,r,t)}return A})(),Ml=function(A,e){switch(e){case 1:return A.toLowerCase();case 3:return A.replace(Rl,Ol);case 2:return A.toUpperCase();default:return A}},Rl=/(^|\s|:|-|\(|\))([a-z])/g,Ol=function(A,e,t){return A.length>0?e+t.toUpperCase():A},Ui=(function(A){LA(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})(DA),Fi=(function(A){LA(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})(DA),pi=(function(A){LA(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})(DA),mi=(function(A){LA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(DA),rn=(function(A){LA(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})(DA),Gl=[{type:15,flags:0,unit:"px",number:3}],Nl=[{type:16,flags:0,number:50}],Vl=function(A){return A.width>A.height?new PA(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new PA(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A},Pl=function(A){var e=A.type===kl?new Array(A.value.length+1).join("\u2022"):A.value;return e.length===0?A.placeholder||"":e},Mt="checkbox",Rt="radio",kl="password",Hs=707406591,wn=(function(A){LA(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=Pl(r),(n.type===Mt||n.type===Rt)&&(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=Vl(n.bounds)),n.type){case Mt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Gl;break;case Rt:n.styles.borderTopRightRadius=n.styles.borderTopLeftRadius=n.styles.borderBottomRightRadius=n.styles.borderBottomLeftRadius=Nl;break}return n}return e})(DA),vi=(function(A){LA(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})(DA),Ei=(function(A){LA(e,A);function e(t,r){var n=A.call(this,t,r)||this;return n.value=r.value,n}return e})(DA),Hi=(function(A){LA(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=Ii(t,r.contentWindow.document.documentElement);var s=r.contentWindow.document.documentElement?Je(t,getComputedStyle(r.contentWindow.document.documentElement).backgroundColor):VA.TRANSPARENT,i=r.contentWindow.document.body?Je(t,getComputedStyle(r.contentWindow.document.body).backgroundColor):VA.TRANSPARENT;n.backgroundColor=$A(s)?$A(i)?n.styles.backgroundColor:i:s}}catch{}return n}return e})(DA),Xl=["OL","UL","MENU"],Lt=function(A,e,t,r){for(var n=e.firstChild,s=void 0;n;n=s)if(s=n.nextSibling,bi(n)&&n.data.trim().length>0)t.textNodes.push(new _l(A,n,t.styles));else if(ve(n))if(Si(n)&&n.assignedNodes)n.assignedNodes().forEach(function(o){return Lt(A,o,t,r)});else{var i=yi(A,n);i.styles.isVisible()&&(Wl(n,i,r)?i.flags|=4:Jl(i.styles)&&(i.flags|=2),Xl.indexOf(n.tagName)!==-1&&(i.flags|=8),t.elements.push(i),n.slot,n.shadowRoot?Lt(A,n.shadowRoot,i,r):!Ot(n)&&!xi(n)&&!Gt(n)&&Lt(A,n,i,r))}},yi=function(A,e){return sn(e)?new Ui(A,e):Ti(e)?new Fi(A,e):xi(e)?new pi(A,e):Yl(e)?new mi(A,e):Zl(e)?new rn(A,e):ql(e)?new wn(A,e):Gt(e)?new vi(A,e):Ot(e)?new Ei(A,e):Li(e)?new Hi(A,e):new DA(A,e)},Ii=function(A,e){var t=yi(A,e);return t.flags|=4,Lt(A,e,t,t),t},Wl=function(A,e,t){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||Qn(A)&&t.styles.isTransparent()},Jl=function(A){return A.isPositioned()||A.isFloating()},bi=function(A){return A.nodeType===Node.TEXT_NODE},ve=function(A){return A.nodeType===Node.ELEMENT_NODE},nn=function(A){return ve(A)&&typeof A.style<"u"&&!St(A)},St=function(A){return typeof A.className=="object"},Yl=function(A){return A.tagName==="LI"},Zl=function(A){return A.tagName==="OL"},ql=function(A){return A.tagName==="INPUT"},jl=function(A){return A.tagName==="HTML"},xi=function(A){return A.tagName==="svg"},Qn=function(A){return A.tagName==="BODY"},Ti=function(A){return A.tagName==="CANVAS"},ys=function(A){return A.tagName==="VIDEO"},sn=function(A){return A.tagName==="IMG"},Li=function(A){return A.tagName==="IFRAME"},Is=function(A){return A.tagName==="STYLE"},zl=function(A){return A.tagName==="SCRIPT"},Ot=function(A){return A.tagName==="TEXTAREA"},Gt=function(A){return A.tagName==="SELECT"},Si=function(A){return A.tagName==="SLOT"},bs=function(A){return A.tagName.indexOf("-")>0},$l=(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(o){var a=t.counters[o.counter];a&&o.increment!==0&&(s=!1,a.length||a.push(1),a[Math.max(0,a.length-1)]+=o.increment)});var i=[];return s&&n.forEach(function(o){var a=t.counters[o.counter];i.push(o.counter),a||(a=t.counters[o.counter]=[]),a.push(o.reset)}),i},A})(),xs={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"]},Ts={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"]},Au={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"]},eu={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"]},he=function(A,e,t,r,n,s){return A<e||A>t?$e(A,n,s.length>0):r.integers.reduce(function(i,o,a){for(;A>=o;)A-=o,i+=r.values[a];return i},"")+s},Ki=function(A,e,t,r){var n="";do t||A--,n=r(A)+n,A/=e;while(A*e>=e);return n},tA=function(A,e,t,r,n){var s=t-e+1;return(A<0?"-":"")+(Ki(Math.abs(A),s,r,function(i){return rA(Math.floor(i%s)+e)})+n)},se=function(A,e,t){t===void 0&&(t=". ");var r=e.length;return Ki(Math.abs(A),r,!1,function(n){return e[Math.floor(n%r)]})+t},pe=1,WA=2,JA=4,Xe=8,NA=function(A,e,t,r,n,s){if(A<-9999||A>9999)return $e(A,4,n.length>0);var i=Math.abs(A),o=n;if(i===0)return e[0]+o;for(var a=0;i>0&&a<=4;a++){var B=i%10;B===0&&sA(s,pe)&&o!==""?o=e[B]+o:B>1||B===1&&a===0||B===1&&a===1&&sA(s,WA)||B===1&&a===1&&sA(s,JA)&&A>100||B===1&&a>1&&sA(s,Xe)?o=e[B]+(a>0?t[a-1]:"")+o:B===1&&a>0&&(o=t[a-1]+o),i=Math.floor(i/10)}return(A<0?r:"")+o},Ls="\u5341\u767E\u5343\u842C",Ss="\u62FE\u4F70\u4EDF\u842C",Ks="\u30DE\u30A4\u30CA\u30B9",Dr="\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 o=tA(A,48,57,!0,r);return o.length<4?"0"+o:o;case 4:return se(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",n);case 6:return he(A,1,3999,xs,3,r).toLowerCase();case 7:return he(A,1,3999,xs,3,r);case 8:return tA(A,945,969,!1,r);case 9:return tA(A,97,122,!1,r);case 10:return tA(A,65,90,!1,r);case 11:return tA(A,1632,1641,!0,r);case 12:case 49:return he(A,1,9999,Ts,3,r);case 35:return he(A,1,9999,Ts,3,r).toLowerCase();case 13:return tA(A,2534,2543,!0,r);case 14:case 30:return tA(A,6112,6121,!0,r);case 15:return se(A,"\u5B50\u4E11\u5BC5\u536F\u8FB0\u5DF3\u5348\u672A\u7533\u9149\u620C\u4EA5",n);case 16:return se(A,"\u7532\u4E59\u4E19\u4E01\u620A\u5DF1\u5E9A\u8F9B\u58EC\u7678",n);case 17:case 48:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ls,"\u8CA0",n,WA|JA|Xe);case 47:return NA(A,"\u96F6\u58F9\u8CB3\u53C3\u8086\u4F0D\u9678\u67D2\u634C\u7396",Ss,"\u8CA0",n,pe|WA|JA|Xe);case 42:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D",Ls,"\u8D1F",n,WA|JA|Xe);case 41:return NA(A,"\u96F6\u58F9\u8D30\u53C1\u8086\u4F0D\u9646\u67D2\u634C\u7396",Ss,"\u8D1F",n,pe|WA|JA|Xe);case 26:return NA(A,"\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u4E07",Ks,n,0);case 25:return NA(A,"\u96F6\u58F1\u5F10\u53C2\u56DB\u4F0D\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343\u4E07",Ks,n,pe|WA|JA);case 31:return NA(A,"\uC601\uC77C\uC774\uC0BC\uC0AC\uC624\uC721\uCE60\uD314\uAD6C","\uC2ED\uBC31\uCC9C\uB9CC",Dr,s,pe|WA|JA);case 33:return NA(A,"\u96F6\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u5341\u767E\u5343\u842C",Dr,s,0);case 32:return NA(A,"\u96F6\u58F9\u8CB3\u53C3\u56DB\u4E94\u516D\u4E03\u516B\u4E5D","\u62FE\u767E\u5343",Dr,s,pe|WA|JA);case 18:return tA(A,2406,2415,!0,r);case 20:return he(A,1,19999,eu,3,r);case 21:return tA(A,2790,2799,!0,r);case 22:return tA(A,2662,2671,!0,r);case 22:return he(A,1,10999,Au,3,r);case 23:return se(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 se(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 tA(A,3302,3311,!0,r);case 28:return se(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 se(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 tA(A,3792,3801,!0,r);case 37:return tA(A,6160,6169,!0,r);case 38:return tA(A,4160,4169,!0,r);case 39:return tA(A,2918,2927,!0,r);case 40:return tA(A,1776,1785,!0,r);case 43:return tA(A,3046,3055,!0,r);case 44:return tA(A,3174,3183,!0,r);case 45:return tA(A,3664,3673,!0,r);case 46:return tA(A,3872,3881,!0,r);default:return tA(A,48,57,!0,r)}},Di="data-html2canvas-ignore",Ds=(function(){function A(e,t,r){if(this.context=e,this.options=r,this.scrolledElements=[],this.referenceElement=t,this.counters=new $l,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=tu(e,t);if(!n.contentWindow)return Promise.reject("Unable to find iframe window");var s=e.defaultView.pageXOffset,i=e.defaultView.pageYOffset,o=n.contentWindow,a=o.document,B=su(n).then(function(){return wA(r,void 0,void 0,function(){var l,u;return cA(this,function(f){switch(f.label){case 0:return this.scrolledElements.forEach(Bu),o&&(o.scrollTo(t.left,t.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(o.scrollY!==t.top||o.scrollX!==t.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(o.scrollX-t.left,o.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")]:a.fonts&&a.fonts.ready?[4,a.fonts.ready]:[3,2];case 1:f.sent(),f.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,nu(a)]:[3,4];case 3:f.sent(),f.label=4;case 4:return typeof l=="function"?[2,Promise.resolve().then(function(){return l(a,u)}).then(function(){return n})]:[2,n]}})})});return a.open(),a.write(ou(document.doctype)+"<html></html>"),au(this.referenceElement.ownerDocument,s,i),a.replaceChild(a.adoptNode(this.documentElement),a.documentElement),a.close(),B},A.prototype.createElementClone=function(e){if(en(e,2))debugger;if(Ti(e))return this.createCanvasClone(e);if(ys(e))return this.createVideoClone(e);if(Is(e))return this.createStyleClone(e);var t=e.cloneNode(!1);return sn(t)&&(sn(e)&&e.currentSrc&&e.currentSrc!==e.src&&(t.src=e.currentSrc,t.srcset=""),t.loading==="lazy"&&(t.loading="eager")),bs(t)?this.createCustomElementClone(t):t},A.prototype.createCustomElementClone=function(e){var t=document.createElement("html2canvascustomelement");return _r(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 o=(t=e.getContext("webgl2"))!==null&&t!==void 0?t:e.getContext("webgl");if(o){var a=o.getContextAttributes();a?.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){(!ve(t)||!zl(t)&&!t.hasAttribute(Di)&&(typeof this.options.ignoreElements!="function"||!this.options.ignoreElements(t)))&&(!this.options.copyStyles||!ve(t)||!Is(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(ve(s)&&Si(s)&&typeof s.assignedNodes=="function"){var i=s.assignedNodes();i.length&&i.forEach(function(o){return n.appendChildNode(t,o,r)})}else this.appendChildNode(t,s,r)},A.prototype.cloneNode=function(e,t){if(bi(e))return document.createTextNode(e.data);if(!e.ownerDocument)return e.cloneNode(!1);var r=e.ownerDocument.defaultView;if(r&&ve(e)&&(nn(e)||St(e))){var n=this.createElementClone(e);n.style.transitionProperty="none";var s=r.getComputedStyle(e),i=r.getComputedStyle(e,":before"),o=r.getComputedStyle(e,":after");this.referenceElement===e&&nn(n)&&(this.clonedReferenceElement=n),Qn(n)&&uu(n);var a=this.counters.parse(new us(this.context,s)),B=this.resolvePseudoContent(e,n,i,qe.BEFORE);bs(e)&&(t=!0),ys(e)||this.cloneChildNodes(e,n,t),B&&n.insertBefore(B,n.firstChild);var l=this.resolvePseudoContent(e,n,o,qe.AFTER);return l&&n.appendChild(l),this.counters.pop(a),(s&&(this.options.copyStyles||St(e))&&!Li(e)||t)&&_r(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,o=t.ownerDocument;if(!(!o||!i||i==="none"||i==="-moz-alt-content"||r.display==="none")){this.counters.parse(new us(this.context,r));var a=new Yc(this.context,r),B=o.createElement("html2canvaspseudoelement");_r(r,B),a.content.forEach(function(u){if(u.type===0)B.appendChild(o.createTextNode(u.value));else if(u.type===22){var f=o.createElement("img");f.src=u.value,f.style.opacity="1",B.appendChild(f)}else if(u.type===18){if(u.name==="attr"){var C=u.values.filter(Z);C.length&&B.appendChild(o.createTextNode(e.getAttribute(C[0].value)||""))}else if(u.name==="counter"){var g=u.values.filter(He),w=g[0],x=g[1];if(w&&Z(w)){var F=s.counters.getCounterValue(w.value),p=x&&Z(x)?An.parse(s.context,x.value):3;B.appendChild(o.createTextNode($e(F,p,!1)))}}else if(u.name==="counters"){var L=u.values.filter(He),w=L[0],m=L[1],x=L[2];if(w&&Z(w)){var I=s.counters.getCounterValues(w.value),h=x&&Z(x)?An.parse(s.context,x.value):3,y=m&&m.type===0?m.value:"",M=I.map(function(K){return $e(K,h,!1)}).join(y);B.appendChild(o.createTextNode(M))}}}else if(u.type===20)switch(u.value){case"open-quote":B.appendChild(o.createTextNode(ls(a.quotes,s.quoteDepth++,!0)));break;case"close-quote":B.appendChild(o.createTextNode(ls(a.quotes,--s.quoteDepth,!1)));break;default:B.appendChild(o.createTextNode(u.value))}}),B.className=on+" "+an;var l=n===qe.BEFORE?" "+on:" "+an;return St(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 tu=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(Di,"true"),A.body.appendChild(t),t},ru=function(A){return new Promise(function(e){if(A.complete){e();return}if(!A.src){e();return}A.onload=e,A.onerror=e})},nu=function(A){return Promise.all([].slice.call(A.images,0).map(ru))},su=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)}})},iu=["all","d","content"],_r=function(A,e){for(var t=A.length-1;t>=0;t--){var r=A.item(t);iu.indexOf(r)===-1&&e.style.setProperty(r,A.getPropertyValue(r))}return e},ou=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},au=function(A,e,t){A&&A.defaultView&&(e!==A.defaultView.pageXOffset||t!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(e,t)},Bu=function(A){var e=A[0],t=A[1],r=A[2];e.scrollLeft=t,e.scrollTop=r},cu=":before",lu=":after",on="___html2canvas___pseudoelement_before",an="___html2canvas___pseudoelement_after",_s=`{
3
3
  content: "" !important;
4
4
  display: none !important;
5
- }`,lu=function(A){uu(A,"."+an+Bu+_s+`
6
- .`+on+cu+_s)},uu=function(A,e){var t=A.ownerDocument;if(t){var r=t.createElement("style");r.textContent=e,A.appendChild(r)}},_i=(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})(),fu=(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)||Cu(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 fA(this,void 0,void 0,function(){var t,r,n,s,i=this;return BA(this,function(a){switch(a.label){case 0:return t=_i.isSameOrigin(e),r=!Mr(e)&&this._options.useCORS===!0&&aA.SUPPORT_CORS_IMAGES&&!t,n=!Mr(e)&&!t&&!Rr(e)&&typeof this._options.proxy=="string"&&aA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!Mr(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,(du(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=aA.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})(),gu=/^data:image\/svg\+xml/i,wu=/^data:image\/.*;base64,/i,Qu=/^data:image\/.*/i,Cu=function(A){return aA.SUPPORT_SVG_DRAWING||!Uu(A)},Mr=function(A){return Qu.test(A)},du=function(A){return wu.test(A)},Rr=function(A){return A.substr(0,4)==="blob"},Uu=function(A){return A.substr(-3).toLowerCase()==="svg"||gu.test(A)},v=(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})(),he=function(A,e,t){return new v(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=he(this.start,this.startControl,e),n=he(this.startControl,this.endControl,e),s=he(this.endControl,this.end,e),i=he(r,n,e),a=he(n,s,e),o=he(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})(),mA=function(A){return A.type===1},hu=(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],C=Pe(t.borderBottomLeftRadius,r.width,r.height),g=C[0],w=C[1],x=[];x.push((s+o)/r.width),x.push((g+u)/r.width),x.push((i+w)/r.height),x.push((B+f)/r.height);var F=Math.max.apply(Math,x);F>1&&(s/=F,i/=F,o/=F,B/=F,u/=F,f/=F,g/=F,w/=F);var p=r.width-o,L=r.height-f,m=r.width-u,I=r.height-w,U=t.borderTopWidth,y=t.borderRightWidth,M=t.borderBottomWidth,S=t.borderLeftWidth,Y=z(t.paddingTop,e.bounds.width),K=z(t.paddingRight,e.bounds.width),R=z(t.paddingBottom,e.bounds.width),_=z(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||i>0?$(r.left+S/3,r.top+U/3,s-S/3,i-U/3,J.TOP_LEFT):new v(r.left+S/3,r.top+U/3),this.topRightBorderDoubleOuterBox=s>0||i>0?$(r.left+p,r.top+U/3,o-y/3,B-U/3,J.TOP_RIGHT):new v(r.left+r.width-y/3,r.top+U/3),this.bottomRightBorderDoubleOuterBox=u>0||f>0?$(r.left+m,r.top+L,u-y/3,f-M/3,J.BOTTOM_RIGHT):new v(r.left+r.width-y/3,r.top+r.height-M/3),this.bottomLeftBorderDoubleOuterBox=g>0||w>0?$(r.left+S/3,r.top+I,g-S/3,w-M/3,J.BOTTOM_LEFT):new v(r.left+S/3,r.top+r.height-M/3),this.topLeftBorderDoubleInnerBox=s>0||i>0?$(r.left+S*2/3,r.top+U*2/3,s-S*2/3,i-U*2/3,J.TOP_LEFT):new v(r.left+S*2/3,r.top+U*2/3),this.topRightBorderDoubleInnerBox=s>0||i>0?$(r.left+p,r.top+U*2/3,o-y*2/3,B-U*2/3,J.TOP_RIGHT):new v(r.left+r.width-y*2/3,r.top+U*2/3),this.bottomRightBorderDoubleInnerBox=u>0||f>0?$(r.left+m,r.top+L,u-y*2/3,f-M*2/3,J.BOTTOM_RIGHT):new v(r.left+r.width-y*2/3,r.top+r.height-M*2/3),this.bottomLeftBorderDoubleInnerBox=g>0||w>0?$(r.left+S*2/3,r.top+I,g-S*2/3,w-M*2/3,J.BOTTOM_LEFT):new v(r.left+S*2/3,r.top+r.height-M*2/3),this.topLeftBorderStroke=s>0||i>0?$(r.left+S/2,r.top+U/2,s-S/2,i-U/2,J.TOP_LEFT):new v(r.left+S/2,r.top+U/2),this.topRightBorderStroke=s>0||i>0?$(r.left+p,r.top+U/2,o-y/2,B-U/2,J.TOP_RIGHT):new v(r.left+r.width-y/2,r.top+U/2),this.bottomRightBorderStroke=u>0||f>0?$(r.left+m,r.top+L,u-y/2,f-M/2,J.BOTTOM_RIGHT):new v(r.left+r.width-y/2,r.top+r.height-M/2),this.bottomLeftBorderStroke=g>0||w>0?$(r.left+S/2,r.top+I,g-S/2,w-M/2,J.BOTTOM_LEFT):new v(r.left+S/2,r.top+r.height-M/2),this.topLeftBorderBox=s>0||i>0?$(r.left,r.top,s,i,J.TOP_LEFT):new v(r.left,r.top),this.topRightBorderBox=o>0||B>0?$(r.left+p,r.top,o,B,J.TOP_RIGHT):new v(r.left+r.width,r.top),this.bottomRightBorderBox=u>0||f>0?$(r.left+m,r.top+L,u,f,J.BOTTOM_RIGHT):new v(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=g>0||w>0?$(r.left,r.top+I,g,w,J.BOTTOM_LEFT):new v(r.left,r.top+r.height),this.topLeftPaddingBox=s>0||i>0?$(r.left+S,r.top+U,Math.max(0,s-S),Math.max(0,i-U),J.TOP_LEFT):new v(r.left+S,r.top+U),this.topRightPaddingBox=o>0||B>0?$(r.left+Math.min(p,r.width-y),r.top+U,p>r.width+y?0:Math.max(0,o-y),Math.max(0,B-U),J.TOP_RIGHT):new v(r.left+r.width-y,r.top+U),this.bottomRightPaddingBox=u>0||f>0?$(r.left+Math.min(m,r.width-S),r.top+Math.min(L,r.height-M),Math.max(0,u-y),Math.max(0,f-M),J.BOTTOM_RIGHT):new v(r.left+r.width-y,r.top+r.height-M),this.bottomLeftPaddingBox=g>0||w>0?$(r.left+S,r.top+Math.min(I,r.height-M),Math.max(0,g-S),Math.max(0,w-M),J.BOTTOM_LEFT):new v(r.left+S,r.top+r.height-M),this.topLeftContentBox=s>0||i>0?$(r.left+S+_,r.top+U+Y,Math.max(0,s-(S+_)),Math.max(0,i-(U+Y)),J.TOP_LEFT):new v(r.left+S+_,r.top+U+Y),this.topRightContentBox=o>0||B>0?$(r.left+Math.min(p,r.width+S+_),r.top+U+Y,p>r.width+S+_?0:o-S+_,B-(U+Y),J.TOP_RIGHT):new v(r.left+r.width-(y+K),r.top+U+Y),this.bottomRightContentBox=u>0||f>0?$(r.left+Math.min(m,r.width-(S+_)),r.top+Math.min(L,r.height+U+Y),Math.max(0,u-(y+K)),f-(M+R),J.BOTTOM_RIGHT):new v(r.left+r.width-(y+K),r.top+r.height-(M+R)),this.bottomLeftContentBox=g>0||w>0?$(r.left+S+_,r.top+I,Math.max(0,g-(S+_)),w-(M+R),J.BOTTOM_LEFT):new v(r.left+S+_,r.top+r.height-(M+R))}return A})(),J;(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"})(J||(J={}));var $=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 J.TOP_LEFT:return new Ht(new v(A,B),new v(A,B-a),new v(o-i,e),new v(o,e));case J.TOP_RIGHT:return new Ht(new v(A,e),new v(A+i,e),new v(o,B-a),new v(o,B));case J.BOTTOM_RIGHT:return new Ht(new v(o,e),new v(o,e+a),new v(A+i,B),new v(A,B));case J.BOTTOM_LEFT:default:return new Ht(new v(o,B),new v(o-i,B),new v(A,e+a),new v(A,e))}},Nt=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},Fu=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},Vt=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},pu=(function(){function A(e,t,r){this.offsetX=e,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return A})(),yt=(function(){function A(e,t){this.path=e,this.target=t,this.type=1}return A})(),mu=(function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A})(),vu=function(A){return A.type===0},Mi=function(A){return A.type===1},Eu=function(A){return A.type===2},Ms=function(A,e){return A.length===e.length?A.some(function(t,r){return t===e[r]}):!1},Hu=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})},Ri=(function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A})(),Oi=(function(){function A(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new hu(this.container),this.container.styles.opacity<1&&this.effects.push(new mu(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 pu(r,n,s))}if(this.container.styles.overflowX!==0){var i=Nt(this.curves),a=Vt(this.curves);Ms(i,a)?this.effects.push(new yt(i,6)):(this.effects.push(new yt(i,2)),this.effects.push(new yt(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!Mi(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);Ms(i,a)||n.unshift(new yt(a,6))}}else n.unshift.apply(n,s);r=r.parent}return n.filter(function(o){return nA(o.target,e)})},A})(),Bn=function(A,e,t,r){A.container.elements.forEach(function(n){var s=nA(n.flags,4),i=nA(n.flags,2),a=new Oi(n,A);nA(n.styles.display,2048)&&r.push(a);var o=nA(n.flags,8)?[]:r;if(s||i){var B=s||n.styles.isPositioned()?t:e,l=new Ri(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 C=0;B.positiveZIndex.some(function(g,w){return u>=g.element.container.styles.zIndex.order?(C=w+1,!1):C>0}),B.positiveZIndex.splice(C,0,l)}else B.zeroOrAutoZIndexOrTransformedOrOpacity.push(l)}else n.styles.isFloating()?B.nonPositionedFloats.push(l):B.nonPositionedInlineLevel.push(l);Bn(a,l,s?l:t,o)}else n.styles.isInlineLevel()?e.inlineLevel.push(a):e.nonInlineLevel.push(a),Bn(a,e,t,o);nA(n.flags,8)&&Gi(n,o)})},Gi=function(A,e){for(var t=A instanceof rn?A.start:1,r=A instanceof rn?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof mi&&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}},yu=function(A){var e=new Oi(A,null),t=new Ri(e),r=[];return Bn(e,t,t,r),Gi(e.container,r),t},Rs=function(A,e){switch(e){case 0:return EA(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return EA(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return EA(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return EA(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Iu=function(A,e){switch(e){case 0:return EA(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return EA(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return EA(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return EA(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},bu=function(A,e){switch(e){case 0:return EA(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return EA(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return EA(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return EA(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},xu=function(A,e){switch(e){case 0:return It(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return It(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return It(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return It(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},It=function(A,e){var t=[];return mA(A)?t.push(A.subdivide(.5,!1)):t.push(A),mA(e)?t.push(e.subdivide(.5,!0)):t.push(e),t},EA=function(A,e,t,r){var n=[];return mA(A)?n.push(A.subdivide(.5,!1)):n.push(A),mA(t)?n.push(t.subdivide(.5,!0)):n.push(t),mA(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),mA(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Ni=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=z(e.paddingLeft,t.width),n=z(e.paddingRight,t.width),s=z(e.paddingTop,t.width),i=z(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))},Tu=function(A,e){return A===0?e.bounds:A===2?Pt(e):Ni(e)},Lu=function(A,e){return A===0?e.bounds:A===2?Pt(e):Ni(e)},Or=function(A,e,t){var r=Tu(me(A.styles.backgroundOrigin,e),A),n=Lu(me(A.styles.backgroundClip,e),A),s=Su(me(A.styles.backgroundSize,e),t,r),i=s[0],a=s[1],o=Pe(me(A.styles.backgroundPosition,e),r.width-i,r.height-a),B=Ku(me(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]},Fe=function(A){return Z(A)&&A.value===Ee.AUTO},bt=function(A){return typeof A=="number"},Su=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(tA(i)&&a&&tA(a))return[z(i,t.width),z(a,t.height)];var o=bt(s);if(Z(i)&&(i.value===Ee.CONTAIN||i.value===Ee.COVER)){if(bt(s)){var B=t.width/t.height;return B<s!=(i.value===Ee.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(Fe(i)&&(!a||Fe(a))){if(l&&u)return[r,n];if(!o&&!f)return[t.width,t.height];if(f&&o){var C=l?r:n*s,g=u?n:r/s;return[C,g]}var w=l?r:t.width,x=u?n:t.height;return[w,x]}if(o){var F=0,p=0;return tA(i)?F=z(i,t.width):tA(a)&&(p=z(a,t.height)),Fe(i)?F=p*s:(!a||Fe(a))&&(p=F/s),[F,p]}var L=null,m=null;if(tA(i)?L=z(i,t.width):a&&tA(a)&&(m=z(a,t.height)),L!==null&&(!a||Fe(a))&&(m=l&&u?L/r*n:t.height),m!==null&&Fe(i)&&(L=l&&u?m/n*r:t.width),L!==null&&m!==null)return[L,m];throw new Error("Unable to calculate background-size for element")},me=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 v(Math.round(r.left),Math.round(r.top+i)),new v(Math.round(r.left+r.width),Math.round(r.top+i)),new v(Math.round(r.left+r.width),Math.round(o+r.top+i)),new v(Math.round(r.left),Math.round(o+r.top+i))];case 3:return[new v(Math.round(r.left+s),Math.round(r.top)),new v(Math.round(r.left+s+a),Math.round(r.top)),new v(Math.round(r.left+s+a),Math.round(r.height+r.top)),new v(Math.round(r.left+s),Math.round(r.height+r.top))];case 1:return[new v(Math.round(r.left+s),Math.round(r.top+i)),new v(Math.round(r.left+s+a),Math.round(r.top+i)),new v(Math.round(r.left+s+a),Math.round(r.top+i+o)),new v(Math.round(r.left+s),Math.round(r.top+i+o))];default:return[new v(Math.round(n.left),Math.round(n.top)),new v(Math.round(n.left+n.width),Math.round(n.top)),new v(Math.round(n.left+n.width),Math.round(n.height+n.top)),new v(Math.round(n.left),Math.round(n.height+n.top))]}},Du="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Os="Hidden Text",_u=(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=Du,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(Os)),r.appendChild(s),r.appendChild(n);var a=n.offsetTop-s.offsetTop+2;r.removeChild(s),r.appendChild(this._document.createTextNode(Os)),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})(),Vi=(function(){function A(e,t){this.context=e,this.options=t}return A})(),Mu=1e4,Ru=(function(A){TA(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 _u(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(),Eu(t)&&(this.ctx.globalAlpha=t.opacity),vu(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)),Mi(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 fA(this,void 0,void 0,function(){var r;return BA(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 fA(this,void 0,void 0,function(){return BA(this,function(r){switch(r.label){case 0:if(nA(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=gn(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=Pu(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 fA(this,void 0,void 0,function(){var n,s,i,a,o,B,l,u,f=this;return BA(this,function(C){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 x=r.textShadow;x.length&&g.text.trim().length&&(x.slice(0).reverse().forEach(function(F){f.ctx.shadowColor=sA(F.color),f.ctx.shadowOffsetX=F.offsetX.number*f.options.scale,f.ctx.shadowOffsetY=F.offsetY.number*f.options.scale,f.ctx.shadowBlur=F.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(F){switch(F){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 fA(this,void 0,void 0,function(){var r,n,s,i,a,o,p,p,B,l,u,f,m,C,g,I,w,x,F,p,L,m,I;return BA(this,function(U){switch(U.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,s=r.styles,i=0,a=r.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(!(r instanceof hi))return[3,8];U.label=5;case 5:return U.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return p=U.sent(),this.renderReplacedElement(r,n,p),[3,8];case 7:return U.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof Fi&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof pi))return[3,12];U.label=9;case 9:return U.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return p=U.sent(),this.renderReplacedElement(r,n,p),[3,12];case 11:return U.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof Hi&&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=U.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),U.label=14;case 14:if(r instanceof wn&&(u=Math.min(r.bounds.width,r.bounds.height),r.type===Mt?r.checked&&(this.ctx.save(),this.path([new v(r.bounds.left+u*.39363,r.bounds.top+u*.79),new v(r.bounds.left+u*.16,r.bounds.top+u*.5549),new v(r.bounds.left+u*.27347,r.bounds.top+u*.44071),new v(r.bounds.left+u*.39694,r.bounds.top+u*.5649),new v(r.bounds.left+u*.72983,r.bounds.top+u*.23),new v(r.bounds.left+u*.84,r.bounds.top+u*.34085),new v(r.bounds.left+u*.39363,r.bounds.top+u*.79)]),this.ctx.fillStyle=sA(Hs),this.ctx.fill(),this.ctx.restore()):r.type===Rt&&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(Hs),this.ctx.fill(),this.ctx.restore())),Ou(r)&&r.value.length){switch(f=this.createFontStyle(s),m=f[0],C=f[1],g=this.fontMetrics.getMetrics(m,C).baseline,this.ctx.font=m,this.ctx.fillStyle=sA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Nu(r.styles.textAlign),I=Pt(r),w=0,r.styles.textAlign){case 1:w+=I.width/2;break;case 2:w+=I.width;break}x=I.add(w,0,0,-I.height/2+1),this.ctx.save(),this.path([new v(I.left,I.top),new v(I.left+I.width,I.top),new v(I.left+I.width,I.top+I.height),new v(I.left,I.top+I.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Ze(r.value,x),s.letterSpacing,g),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!nA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(F=r.styles.listStyleImage,F.type!==0)return[3,18];p=void 0,L=F.url,U.label=15;case 15:return U.trys.push([15,17,,18]),[4,this.context.cache.match(L)];case 16:return p=U.sent(),this.ctx.drawImage(p,r.bounds.left-(p.width+10),r.bounds.top),[3,18];case 17:return U.sent(),this.context.logger.error("Error loading list-style-image "+L),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(m=this.createFontStyle(s)[0],this.ctx.font=m,this.ctx.fillStyle=sA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",I=new PA(r.bounds.left,r.bounds.top+z(r.styles.paddingTop,r.bounds.width),r.bounds.width,Bs(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Ze(t.listValue,I),s.letterSpacing,Bs(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(t){return fA(this,void 0,void 0,function(){var r,n,F,s,i,F,a,o,F,B,l,F,u,f,F,C,g,F,w,x,F;return BA(this,function(p){switch(p.label){case 0:if(nA(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?(F=n[r],[4,this.renderStack(F)]):[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?(F=i[s],[4,this.renderNode(F)]):[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?(F=o[a],[4,this.renderStack(F)]):[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?(F=l[B],[4,this.renderStack(F)]):[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?(F=f[u],[4,this.renderNode(F)]):[3,22];case 20:p.sent(),p.label=21;case 21:return u++,[3,19];case 22:C=0,g=t.zeroOrAutoZIndexOrTransformedOrOpacity,p.label=23;case 23:return C<g.length?(F=g[C],[4,this.renderStack(F)]):[3,26];case 24:p.sent(),p.label=25;case 25:return C++,[3,23];case 26:w=0,x=t.positiveZIndex,p.label=27;case 27:return w<x.length?(F=x[w],[4,this.renderStack(F)]):[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=mA(n)?n.start:n;s===0?r.ctx.moveTo(i.x,i.y):r.ctx.lineTo(i.x,i.y),mA(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 fA(this,void 0,void 0,function(){var r,n,s,i,a,o;return BA(this,function(B){switch(B.label){case 0:r=t.styles.backgroundImage.length-1,n=function(l){var u,f,C,Y,k,G,_,O,M,g,Y,k,G,_,O,w,x,F,p,L,m,I,U,y,M,S,Y,K,R,_,O,q,k,G,rA,gA,UA,_A,MA,wA,HA,hA;return BA(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&&(C=Or(t,r,[u.width,u.height,u.width/u.height]),Y=C[0],k=C[1],G=C[2],_=C[3],O=C[4],M=s.ctx.createPattern(s.resizeImage(u,_,O),"repeat"),s.renderRepeat(Y,M,k,G)),[3,6];case 5:vB(l)?(g=Or(t,r,[null,null,null]),Y=g[0],k=g[1],G=g[2],_=g[3],O=g[4],w=UB(l.angle,_,O),x=w[0],F=w[1],p=w[2],L=w[3],m=w[4],I=document.createElement("canvas"),I.width=_,I.height=O,U=I.getContext("2d"),y=U.createLinearGradient(F,L,p,m),as(l.stops,x).forEach(function(ee){return y.addColorStop(ee.stop,sA(ee.color))}),U.fillStyle=y,U.fillRect(0,0,_,O),_>0&&O>0&&(M=s.ctx.createPattern(I,"repeat"),s.renderRepeat(Y,M,k,G))):EB(l)&&(S=Or(t,r,[null,null,null]),Y=S[0],K=S[1],R=S[2],_=S[3],O=S[4],q=l.position.length===0?[ln]:l.position,k=z(q[0],_),G=z(q[q.length-1],O),rA=hB(l,k,G,_,O),gA=rA[0],UA=rA[1],gA>0&&UA>0&&(_A=s.ctx.createRadialGradient(K+k,R+G,0,K+k,R+G,gA),as(l.stops,gA*2).forEach(function(ee){return _A.addColorStop(ee.stop,sA(ee.color))}),s.path(Y),s.ctx.fillStyle=_A,gA!==UA?(MA=t.bounds.left+.5*t.bounds.width,wA=t.bounds.top+.5*t.bounds.height,HA=UA/gA,hA=1/HA,s.ctx.save(),s.ctx.translate(MA,wA),s.ctx.transform(1,0,0,HA,0,0),s.ctx.translate(-MA,-wA),s.ctx.fillRect(K,hA*(R-wA)+wA,_,O*hA),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 fA(this,void 0,void 0,function(){return BA(this,function(s){return this.path(Rs(n,r)),this.ctx.fillStyle=sA(t),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(t,r,n,s){return fA(this,void 0,void 0,function(){var i,a;return BA(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=bu(s,n),this.path(a),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(t){return fA(this,void 0,void 0,function(){var r,n,s,i,a,o,B,l,u=this;return BA(this,function(f){switch(f.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!$A(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=Gu(me(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(i),this.ctx.clip(),$A(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(C){u.ctx.save();var g=Nt(t.curves),w=C.inset?0:Mu,x=Hu(g,-w+(C.inset?1:-1)*C.spread.number,(C.inset?1:-1)*C.spread.number,C.spread.number*(C.inset?-2:2),C.spread.number*(C.inset?-2:2));C.inset?(u.path(g),u.ctx.clip(),u.mask(x)):(u.mask(g),u.ctx.clip(),u.path(x)),u.ctx.shadowOffsetX=C.offsetX.number+w,u.ctx.shadowOffsetY=C.offsetY.number,u.ctx.shadowColor=sA(C.color),u.ctx.shadowBlur=C.blur.number,u.ctx.fillStyle=C.inset?sA(C.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&&!$A(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 fA(this,void 0,void 0,function(){var a,o,B,l,u,f,C,g,w,x,F,p,L,m,I,U,I,U;return BA(this,function(y){return this.ctx.save(),a=xu(s,n),o=Rs(s,n),i===2&&(this.path(o),this.ctx.clip()),mA(o[0])?(B=o[0].start.x,l=o[0].start.y):(B=o[0].x,l=o[0].y),mA(o[1])?(u=o[1].end.x,f=o[1].end.y):(u=o[1].x,f=o[1].y),n===0||n===2?C=Math.abs(B-u):C=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),x=!0,C<=g*2?x=!1:C<=g*2+w?(F=C/(2*g+w),g*=F,w*=F):(p=Math.floor((C+w)/(g+w)),L=(C-p*g)/(p-1),m=(C-(p+1)*g)/p,w=m<=0||Math.abs(w-L)<Math.abs(w-m)?L:m),x&&(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&&(mA(o[0])&&(I=o[3],U=o[0],this.ctx.beginPath(),this.formatPath([new v(I.end.x,I.end.y),new v(U.start.x,U.start.y)]),this.ctx.stroke()),mA(o[1])&&(I=o[1],U=o[2],this.ctx.beginPath(),this.formatPath([new v(I.end.x,I.end.y),new v(U.start.x,U.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(t){return fA(this,void 0,void 0,function(){var r;return BA(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=yu(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e})(Vi),Ou=function(A){return A instanceof Ei||A instanceof vi?!0:A instanceof wn&&A.type!==Rt&&A.type!==Mt},Gu=function(A,e){switch(A){case 0:return Nt(e);case 2:return Fu(e);default:return Vt(e)}},Nu=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},Vu=["-apple-system","system-ui"],Pu=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Vu.indexOf(e)===-1}):A},ku=(function(A){TA(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 fA(this,void 0,void 0,function(){var r,n;return BA(this,function(s){switch(s.label){case 0:return r=tn(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,Xu(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})(Vi),Xu=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))})},Wu=(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})(),Ju=(function(){function A(e,t){var r;this.windowBounds=t,this.instanceName="#"+A.instanceCount++,this.logger=new Wu({id:this.instanceName,enabled:e.logging}),this.cache=(r=e.cache)!==null&&r!==void 0?r:new fu(this,e)}return A.instanceCount=1,A})(),Yu=function(A,e){return e===void 0&&(e={}),Zu(A,e)};typeof window<"u"&&_i.setContext(window);var Zu=function(A,e){return fA(void 0,void 0,void 0,function(){var t,r,n,s,i,a,o,B,l,u,f,C,g,w,x,F,p,L,m,I,y,U,y,M,S,Y,K,R,_,O,q,k,G,rA,gA,UA,_A,MA,wA,HA;return BA(this,function(hA){switch(hA.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:(M=e.allowTaint)!==null&&M!==void 0?M:!1,imageTimeout:(S=e.imageTimeout)!==null&&S!==void 0?S:15e3,proxy:e.proxy,useCORS:(Y=e.useCORS)!==null&&Y!==void 0?Y:!1},s=Nr({logging:(K=e.logging)!==null&&K!==void 0?K:!0,cache:e.cache},n),i={windowWidth:(R=e.windowWidth)!==null&&R!==void 0?R:r.innerWidth,windowHeight:(_=e.windowHeight)!==null&&_!==void 0?_:r.innerHeight,scrollX:(O=e.scrollX)!==null&&O!==void 0?O:r.pageXOffset,scrollY:(q=e.scrollY)!==null&&q!==void 0?q:r.pageYOffset},a=new PA(i.scrollX,i.scrollY,i.windowWidth,i.windowHeight),o=new Ju(s,a),B=(k=e.foreignObjectRendering)!==null&&k!==void 0?k:!1,l={allowTaint:(G=e.allowTaint)!==null&&G!==void 0?G:!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 Ds(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 C=hA.sent(),g=Qn(f)||ql(f)?Ea(f.ownerDocument):kt(o,f),w=g.width,x=g.height,F=g.left,p=g.top,L=qu(o,f,e.backgroundColor),m={canvas:e.canvas,backgroundColor:L,scale:(gA=(rA=e.scale)!==null&&rA!==void 0?rA:r.devicePixelRatio)!==null&&gA!==void 0?gA:1,x:((UA=e.x)!==null&&UA!==void 0?UA:0)+F,y:((_A=e.y)!==null&&_A!==void 0?_A:0)+p,width:(MA=e.width)!==null&&MA!==void 0?MA:Math.ceil(w),height:(wA=e.height)!==null&&wA!==void 0?wA:Math.ceil(x)},B?(o.logger.debug("Document cloned, using foreign object rendering"),y=new ku(o,m),[4,y.render(f)]):[3,3];case 2:return I=hA.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+F+","+p+" with size "+w+"x"+x+" using computed rendering"),o.logger.debug("Starting DOM parsing"),U=Ii(o,f),L===U.styles.backgroundColor&&(U.styles.backgroundColor=VA.TRANSPARENT),o.logger.debug("Starting renderer for element at "+m.x+","+m.y+" with size "+m.width+"x"+m.height),y=new Ru(o,m),[4,y.render(U)];case 4:I=hA.sent(),hA.label=5;case 5:return(!((HA=e.removeContainer)!==null&&HA!==void 0)||HA)&&(Ds.destroy(C)||o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),o.logger.debug("Finished rendering"),[2,I]}})})},qu=function(A,e,t){var r=e.ownerDocument,n=r.documentElement?Je(A,getComputedStyle(r.documentElement).backgroundColor):VA.TRANSPARENT,s=r.body?Je(A,getComputedStyle(r.body).backgroundColor):VA.TRANSPARENT,i=typeof t=="string"?Je(A,t):t===null?VA.TRANSPARENT:4294967295;return e===r.documentElement?$A(n)?$A(s)?i:s:n:i},Pi=Yu;var ki=!1,ju=new Set(["AREA","BASE","BR","COL","EMBED","HR","IMG","INPUT","LINK","META","PARAM","SOURCE","TRACK","WBR"]);function zu(){if(ki)return;ki=!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 Wi(){zu()}function $u(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 Af(A){let e=A.ownerDocument.defaultView;e&&[A,...Array.from(A.querySelectorAll("*"))].forEach(t=>{if(ju.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 ef(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 Ji(A,e,t=fe,r=ge,n={}){return tt()&&!n.preferBrowserPaint?ef(A,e,t,r).catch(()=>Xi(A,e,t,r,n)):Xi(A,e,t,r,n)}function Xi(A,e,t,r,n={}){let s=i=>Pi(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&&Af(o),n.forceVisible&&$u(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",Cn="__hf_page_compositor_v1__";function dn(){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__=Cn,!dn())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 K of t)if(K.shader!==void 0&&!l.has(K.shader))try{l.set(K.shader,Bt(o,lt(K.shader)))}catch(R){console.warn(`[HyperShader] page-side compositor: failed to compile "${K.shader}":`,R)}let u=[];for(let K=0;K<t.length;K++){let R=t[K];if(!R||R.shader===void 0)continue;let _=e[K],O=e[K+1],q=l.get(R.shader);!_||!O||!q||u.push({time:R.time,duration:R.duration??i,shader:R.shader,fromSceneId:_,toSceneId:O,prog:q})}if(u.length===0)return a.remove(),!1;let f=ne(o),C=ne(o),g=document.createElement("canvas"),w=document.createElement("canvas");for(let K of[g,w])K.width=n,K.height=s,K.setAttribute("layoutsubtree",""),K.style.cssText="position:fixed;top:0;left:0;width:"+n+"px;height:"+s+"px;z-index:-9998;pointer-events:none;",document.body.appendChild(K);function x(K){for(let R of u)if(K>=R.time&&K<=R.time+R.duration)return R;return null}function F(K){let R=0;for(let _ of t)K>=_.time+(_.duration??i)&&(R+=1);return e[Math.min(R,e.length-1)]}let p=null,L=0,m=window;async function I(){let K=p;if(!K)return m.__hf_page_composite_pending=!1,!1;let R=document.getElementById(K.fromSceneId),_=document.getElementById(K.toSceneId);if(!(R instanceof HTMLElement)||!(_ instanceof HTMLElement))return m.__hf_page_composite_pending=!1,!1;for(;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);let O=R.cloneNode(!0),q=_.cloneNode(!0);g.appendChild(O),w.appendChild(q);for(let G of[O,q])G.style.opacity="1",G.style.visibility="visible",G.querySelectorAll("[data-start]").forEach(rA=>{rA.style.opacity="1",rA.style.visibility="visible"});let k=[];for(let G of[g,w])for(let rA of G.querySelectorAll("img"))rA.src&&rA.src.startsWith("data:")&&typeof rA.decode=="function"&&k.push(rA.decode().catch(()=>{}));return k.length>0&&await Promise.all(k),!0}function U(){let K=p;if(!K)return m.__hf_page_composite_pending=!1,!1;let R=g.firstElementChild,_=w.firstElementChild;if(!R||!_)return m.__hf_page_composite_pending=!1,!1;let O=g.getContext("2d"),q=w.getContext("2d");if(!O?.drawElementImage||!q?.drawElementImage)return m.__hf_page_composite_pending=!1,!1;try{O.fillStyle=A.bgColor,O.fillRect(0,0,n,s),O.drawElementImage(R,0,0,n,s),q.fillStyle=A.bgColor,q.fillRect(0,0,n,s),q.drawElementImage(_,0,0,n,s)}catch(k){return console.warn("[HyperShader] page-side compositor: drawElementImage failed:",k),m.__hf_page_composite_pending=!1,!1}we(o,f,g),we(o,C,w);try{ct(o,B,K.prog,f,C,L,r,n,s),a.style.display="block"}catch(k){console.warn("[HyperShader] page-side compositor: renderShader failed:",k),a.style.display="none"}return m.__hf_page_composite_pending=!1,!0}m.__hf_page_composite_resolve=U,m.__hf_page_composite_prepare=I;let y=window,M=()=>{if(!y.__hf)return;let K=y.__hf.seek;if(typeof K!="function")return;let R=_=>{let O=K.call(y.__hf,_),q=x(_);if(!q){for(a.style.display="none",m.__hf_page_composite_pending=!1;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);let k=F(_),G=k?document.getElementById(k):null;return G instanceof HTMLElement&&G.style.visibility==="hidden"&&(G.style.visibility="visible"),O}return p=q,L=q.duration===0?1:Math.min(1,Math.max(0,(_-q.time)/q.duration)),m.__hf_page_composite_pending=!0,O};y.__hf.seek=R},S=0,Y=window.setInterval(()=>{S+=1,y.__hf?.seek?(M(),window.clearInterval(Y)):S>200&&(window.clearInterval(Y),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,hn="power2.inOut",tf="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"],rf="hyper-shader-preview-cache",DA="frames",nf=1,sf="v1",Yi=2,Zi=1.25,af=1200;function of(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 ra(A){let[e,t,r]=of(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 ce(A,e,t){return Math.min(t,Math.max(e,A))}function Bf(A,e){return A===void 0?e:Number.isFinite(A)&&A>0?A:e}var cf="__hf_shader_capture_scale",lf="__hf_shader_loading";function na(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 uf(){let A=na("__HF_SHADER_CAPTURE_SCALE",cf),e=A===null?NaN:Number(A);return ce(Number.isFinite(e)&&e>0?e:1,.25,1)}function ff(){let A=na("__HF_SHADER_LOADING",lf)?.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 gf(A){let e=Array.from(A.querySelectorAll("style")).map(r=>r.textContent||"").join(`
5
+ }`,uu=function(A){fu(A,"."+on+cu+_s+`
6
+ .`+an+lu+_s)},fu=function(A,e){var t=A.ownerDocument;if(t){var r=t.createElement("style");r.textContent=e,A.appendChild(r)}},_i=(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})(),gu=(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)||du(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 wA(this,void 0,void 0,function(){var t,r,n,s,i=this;return cA(this,function(o){switch(o.label){case 0:return t=_i.isSameOrigin(e),r=!Mr(e)&&this._options.useCORS===!0&&aA.SUPPORT_CORS_IMAGES&&!t,n=!Mr(e)&&!t&&!Rr(e)&&typeof this._options.proxy=="string"&&aA.SUPPORT_CORS_XHR&&!r,!t&&this._options.allowTaint===!1&&!Mr(e)&&!Rr(e)&&!n&&!r?[2]:(s=e,n?[4,this.proxy(s)]:[3,2]);case 1:s=o.sent(),o.label=2;case 2:return this.context.logger.debug("Added image "+e.substring(0,256)),[4,new Promise(function(a,B){var l=new Image;l.onload=function(){return a(l)},l.onerror=B,(hu(s)||r)&&(l.crossOrigin="anonymous"),l.src=s,l.complete===!0&&setTimeout(function(){return a(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,o.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 o=aA.SUPPORT_RESPONSE_TYPE?"blob":"text",a=new XMLHttpRequest;a.onload=function(){if(a.status===200)if(o==="text")s(a.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(a.response)}else i("Failed to proxy resource "+n+" with status code "+a.status)},a.onerror=i;var B=r.indexOf("?")>-1?"&":"?";if(a.open("GET",""+r+B+"url="+encodeURIComponent(e)+"&responseType="+o),o!=="text"&&a instanceof XMLHttpRequest&&(a.responseType=o),t._options.imageTimeout){var l=t._options.imageTimeout;a.timeout=l,a.ontimeout=function(){return i("Timed out ("+l+"ms) proxying "+n)}}a.send()})},A})(),wu=/^data:image\/svg\+xml/i,Qu=/^data:image\/.*;base64,/i,Cu=/^data:image\/.*/i,du=function(A){return aA.SUPPORT_SVG_DRAWING||!Uu(A)},Mr=function(A){return Cu.test(A)},hu=function(A){return Qu.test(A)},Rr=function(A){return A.substr(0,4)==="blob"},Uu=function(A){return A.substr(-3).toLowerCase()==="svg"||wu.test(A)},v=(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 v(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),o=Ue(n,s,e),a=Ue(i,o,e);return t?new A(this.start,r,i,a):new A(a,o,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})(),vA=function(A){return A.type===1},Fu=(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],o=Pe(t.borderTopRightRadius,r.width,r.height),a=o[0],B=o[1],l=Pe(t.borderBottomRightRadius,r.width,r.height),u=l[0],f=l[1],C=Pe(t.borderBottomLeftRadius,r.width,r.height),g=C[0],w=C[1],x=[];x.push((s+a)/r.width),x.push((g+u)/r.width),x.push((i+w)/r.height),x.push((B+f)/r.height);var F=Math.max.apply(Math,x);F>1&&(s/=F,i/=F,a/=F,B/=F,u/=F,f/=F,g/=F,w/=F);var p=r.width-a,L=r.height-f,m=r.width-u,I=r.height-w,h=t.borderTopWidth,y=t.borderRightWidth,M=t.borderBottomWidth,S=t.borderLeftWidth,Y=z(t.paddingTop,e.bounds.width),K=z(t.paddingRight,e.bounds.width),R=z(t.paddingBottom,e.bounds.width),_=z(t.paddingLeft,e.bounds.width);this.topLeftBorderDoubleOuterBox=s>0||i>0?AA(r.left+S/3,r.top+h/3,s-S/3,i-h/3,J.TOP_LEFT):new v(r.left+S/3,r.top+h/3),this.topRightBorderDoubleOuterBox=s>0||i>0?AA(r.left+p,r.top+h/3,a-y/3,B-h/3,J.TOP_RIGHT):new v(r.left+r.width-y/3,r.top+h/3),this.bottomRightBorderDoubleOuterBox=u>0||f>0?AA(r.left+m,r.top+L,u-y/3,f-M/3,J.BOTTOM_RIGHT):new v(r.left+r.width-y/3,r.top+r.height-M/3),this.bottomLeftBorderDoubleOuterBox=g>0||w>0?AA(r.left+S/3,r.top+I,g-S/3,w-M/3,J.BOTTOM_LEFT):new v(r.left+S/3,r.top+r.height-M/3),this.topLeftBorderDoubleInnerBox=s>0||i>0?AA(r.left+S*2/3,r.top+h*2/3,s-S*2/3,i-h*2/3,J.TOP_LEFT):new v(r.left+S*2/3,r.top+h*2/3),this.topRightBorderDoubleInnerBox=s>0||i>0?AA(r.left+p,r.top+h*2/3,a-y*2/3,B-h*2/3,J.TOP_RIGHT):new v(r.left+r.width-y*2/3,r.top+h*2/3),this.bottomRightBorderDoubleInnerBox=u>0||f>0?AA(r.left+m,r.top+L,u-y*2/3,f-M*2/3,J.BOTTOM_RIGHT):new v(r.left+r.width-y*2/3,r.top+r.height-M*2/3),this.bottomLeftBorderDoubleInnerBox=g>0||w>0?AA(r.left+S*2/3,r.top+I,g-S*2/3,w-M*2/3,J.BOTTOM_LEFT):new v(r.left+S*2/3,r.top+r.height-M*2/3),this.topLeftBorderStroke=s>0||i>0?AA(r.left+S/2,r.top+h/2,s-S/2,i-h/2,J.TOP_LEFT):new v(r.left+S/2,r.top+h/2),this.topRightBorderStroke=s>0||i>0?AA(r.left+p,r.top+h/2,a-y/2,B-h/2,J.TOP_RIGHT):new v(r.left+r.width-y/2,r.top+h/2),this.bottomRightBorderStroke=u>0||f>0?AA(r.left+m,r.top+L,u-y/2,f-M/2,J.BOTTOM_RIGHT):new v(r.left+r.width-y/2,r.top+r.height-M/2),this.bottomLeftBorderStroke=g>0||w>0?AA(r.left+S/2,r.top+I,g-S/2,w-M/2,J.BOTTOM_LEFT):new v(r.left+S/2,r.top+r.height-M/2),this.topLeftBorderBox=s>0||i>0?AA(r.left,r.top,s,i,J.TOP_LEFT):new v(r.left,r.top),this.topRightBorderBox=a>0||B>0?AA(r.left+p,r.top,a,B,J.TOP_RIGHT):new v(r.left+r.width,r.top),this.bottomRightBorderBox=u>0||f>0?AA(r.left+m,r.top+L,u,f,J.BOTTOM_RIGHT):new v(r.left+r.width,r.top+r.height),this.bottomLeftBorderBox=g>0||w>0?AA(r.left,r.top+I,g,w,J.BOTTOM_LEFT):new v(r.left,r.top+r.height),this.topLeftPaddingBox=s>0||i>0?AA(r.left+S,r.top+h,Math.max(0,s-S),Math.max(0,i-h),J.TOP_LEFT):new v(r.left+S,r.top+h),this.topRightPaddingBox=a>0||B>0?AA(r.left+Math.min(p,r.width-y),r.top+h,p>r.width+y?0:Math.max(0,a-y),Math.max(0,B-h),J.TOP_RIGHT):new v(r.left+r.width-y,r.top+h),this.bottomRightPaddingBox=u>0||f>0?AA(r.left+Math.min(m,r.width-S),r.top+Math.min(L,r.height-M),Math.max(0,u-y),Math.max(0,f-M),J.BOTTOM_RIGHT):new v(r.left+r.width-y,r.top+r.height-M),this.bottomLeftPaddingBox=g>0||w>0?AA(r.left+S,r.top+Math.min(I,r.height-M),Math.max(0,g-S),Math.max(0,w-M),J.BOTTOM_LEFT):new v(r.left+S,r.top+r.height-M),this.topLeftContentBox=s>0||i>0?AA(r.left+S+_,r.top+h+Y,Math.max(0,s-(S+_)),Math.max(0,i-(h+Y)),J.TOP_LEFT):new v(r.left+S+_,r.top+h+Y),this.topRightContentBox=a>0||B>0?AA(r.left+Math.min(p,r.width+S+_),r.top+h+Y,p>r.width+S+_?0:a-S+_,B-(h+Y),J.TOP_RIGHT):new v(r.left+r.width-(y+K),r.top+h+Y),this.bottomRightContentBox=u>0||f>0?AA(r.left+Math.min(m,r.width-(S+_)),r.top+Math.min(L,r.height+h+Y),Math.max(0,u-(y+K)),f-(M+R),J.BOTTOM_RIGHT):new v(r.left+r.width-(y+K),r.top+r.height-(M+R)),this.bottomLeftContentBox=g>0||w>0?AA(r.left+S+_,r.top+I,Math.max(0,g-(S+_)),w-(M+R),J.BOTTOM_LEFT):new v(r.left+S+_,r.top+r.height-(M+R))}return A})(),J;(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"})(J||(J={}));var AA=function(A,e,t,r,n){var s=4*((Math.sqrt(2)-1)/3),i=t*s,o=r*s,a=A+t,B=e+r;switch(n){case J.TOP_LEFT:return new Ht(new v(A,B),new v(A,B-o),new v(a-i,e),new v(a,e));case J.TOP_RIGHT:return new Ht(new v(A,e),new v(A+i,e),new v(a,B-o),new v(a,B));case J.BOTTOM_RIGHT:return new Ht(new v(a,e),new v(a,e+o),new v(A+i,B),new v(A,B));case J.BOTTOM_LEFT:default:return new Ht(new v(a,B),new v(a-i,B),new v(A,e+o),new v(A,e))}},Nt=function(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]},pu=function(A){return[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox]},Vt=function(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]},mu=(function(){function A(e,t,r){this.offsetX=e,this.offsetY=t,this.matrix=r,this.type=0,this.target=6}return A})(),yt=(function(){function A(e,t){this.path=e,this.target=t,this.type=1}return A})(),vu=(function(){function A(e){this.opacity=e,this.type=2,this.target=6}return A})(),Eu=function(A){return A.type===0},Mi=function(A){return A.type===1},Hu=function(A){return A.type===2},Ms=function(A,e){return A.length===e.length?A.some(function(t,r){return t===e[r]}):!1},yu=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})},Ri=(function(){function A(e){this.element=e,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}return A})(),Oi=(function(){function A(e,t){if(this.container=e,this.parent=t,this.effects=[],this.curves=new Fu(this.container),this.container.styles.opacity<1&&this.effects.push(new vu(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 mu(r,n,s))}if(this.container.styles.overflowX!==0){var i=Nt(this.curves),o=Vt(this.curves);Ms(i,o)?this.effects.push(new yt(i,6)):(this.effects.push(new yt(i,2)),this.effects.push(new yt(o,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(a){return!Mi(a)});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),o=Vt(r.curves);Ms(i,o)||n.unshift(new yt(o,6))}}else n.unshift.apply(n,s);r=r.parent}return n.filter(function(a){return sA(a.target,e)})},A})(),Bn=function(A,e,t,r){A.container.elements.forEach(function(n){var s=sA(n.flags,4),i=sA(n.flags,2),o=new Oi(n,A);sA(n.styles.display,2048)&&r.push(o);var a=sA(n.flags,8)?[]:r;if(s||i){var B=s||n.styles.isPositioned()?t:e,l=new Ri(o);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 C=0;B.positiveZIndex.some(function(g,w){return u>=g.element.container.styles.zIndex.order?(C=w+1,!1):C>0}),B.positiveZIndex.splice(C,0,l)}else B.zeroOrAutoZIndexOrTransformedOrOpacity.push(l)}else n.styles.isFloating()?B.nonPositionedFloats.push(l):B.nonPositionedInlineLevel.push(l);Bn(o,l,s?l:t,a)}else n.styles.isInlineLevel()?e.inlineLevel.push(o):e.nonInlineLevel.push(o),Bn(o,e,t,a);sA(n.flags,8)&&Gi(n,a)})},Gi=function(A,e){for(var t=A instanceof rn?A.start:1,r=A instanceof rn?A.reversed:!1,n=0;n<e.length;n++){var s=e[n];s.container instanceof mi&&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}},Iu=function(A){var e=new Oi(A,null),t=new Ri(e),r=[];return Bn(e,t,t,r),Gi(e.container,r),t},Rs=function(A,e){switch(e){case 0:return HA(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return HA(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return HA(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return HA(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},bu=function(A,e){switch(e){case 0:return HA(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return HA(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return HA(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return HA(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}},xu=function(A,e){switch(e){case 0:return HA(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return HA(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return HA(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return HA(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}},Tu=function(A,e){switch(e){case 0:return It(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return It(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return It(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return It(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}},It=function(A,e){var t=[];return vA(A)?t.push(A.subdivide(.5,!1)):t.push(A),vA(e)?t.push(e.subdivide(.5,!0)):t.push(e),t},HA=function(A,e,t,r){var n=[];return vA(A)?n.push(A.subdivide(.5,!1)):n.push(A),vA(t)?n.push(t.subdivide(.5,!0)):n.push(t),vA(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),vA(e)?n.push(e.subdivide(.5,!1).reverse()):n.push(e),n},Ni=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=z(e.paddingLeft,t.width),n=z(e.paddingRight,t.width),s=z(e.paddingTop,t.width),i=z(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))},Lu=function(A,e){return A===0?e.bounds:A===2?Pt(e):Ni(e)},Su=function(A,e){return A===0?e.bounds:A===2?Pt(e):Ni(e)},Or=function(A,e,t){var r=Lu(me(A.styles.backgroundOrigin,e),A),n=Su(me(A.styles.backgroundClip,e),A),s=Ku(me(A.styles.backgroundSize,e),t,r),i=s[0],o=s[1],a=Pe(me(A.styles.backgroundPosition,e),r.width-i,r.height-o),B=Du(me(A.styles.backgroundRepeat,e),a,s,r,n),l=Math.round(r.left+a[0]),u=Math.round(r.top+a[1]);return[B,l,u,i,o]},Fe=function(A){return Z(A)&&A.value===Ee.AUTO},bt=function(A){return typeof A=="number"},Ku=function(A,e,t){var r=e[0],n=e[1],s=e[2],i=A[0],o=A[1];if(!i)return[0,0];if(nA(i)&&o&&nA(o))return[z(i,t.width),z(o,t.height)];var a=bt(s);if(Z(i)&&(i.value===Ee.CONTAIN||i.value===Ee.COVER)){if(bt(s)){var B=t.width/t.height;return B<s!=(i.value===Ee.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(Fe(i)&&(!o||Fe(o))){if(l&&u)return[r,n];if(!a&&!f)return[t.width,t.height];if(f&&a){var C=l?r:n*s,g=u?n:r/s;return[C,g]}var w=l?r:t.width,x=u?n:t.height;return[w,x]}if(a){var F=0,p=0;return nA(i)?F=z(i,t.width):nA(o)&&(p=z(o,t.height)),Fe(i)?F=p*s:(!o||Fe(o))&&(p=F/s),[F,p]}var L=null,m=null;if(nA(i)?L=z(i,t.width):o&&nA(o)&&(m=z(o,t.height)),L!==null&&(!o||Fe(o))&&(m=l&&u?L/r*n:t.height),m!==null&&Fe(i)&&(L=l&&u?m/n*r:t.width),L!==null&&m!==null)return[L,m];throw new Error("Unable to calculate background-size for element")},me=function(A,e){var t=A[e];return typeof t>"u"?A[0]:t},Du=function(A,e,t,r,n){var s=e[0],i=e[1],o=t[0],a=t[1];switch(A){case 2:return[new v(Math.round(r.left),Math.round(r.top+i)),new v(Math.round(r.left+r.width),Math.round(r.top+i)),new v(Math.round(r.left+r.width),Math.round(a+r.top+i)),new v(Math.round(r.left),Math.round(a+r.top+i))];case 3:return[new v(Math.round(r.left+s),Math.round(r.top)),new v(Math.round(r.left+s+o),Math.round(r.top)),new v(Math.round(r.left+s+o),Math.round(r.height+r.top)),new v(Math.round(r.left+s),Math.round(r.height+r.top))];case 1:return[new v(Math.round(r.left+s),Math.round(r.top+i)),new v(Math.round(r.left+s+o),Math.round(r.top+i)),new v(Math.round(r.left+s+o),Math.round(r.top+i+a)),new v(Math.round(r.left+s),Math.round(r.top+i+a))];default:return[new v(Math.round(n.left),Math.round(n.top)),new v(Math.round(n.left+n.width),Math.round(n.top)),new v(Math.round(n.left+n.width),Math.round(n.height+n.top)),new v(Math.round(n.left),Math.round(n.height+n.top))]}},_u="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Os="Hidden Text",Mu=(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=_u,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(Os)),r.appendChild(s),r.appendChild(n);var o=n.offsetTop-s.offsetTop+2;r.removeChild(s),r.appendChild(this._document.createTextNode(Os)),r.style.lineHeight="normal",n.style.verticalAlign="super";var a=n.offsetTop-r.offsetTop+2;return i.removeChild(r),{baseline:o,middle:a}},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})(),Vi=(function(){function A(e,t){this.context=e,this.options=t}return A})(),Ru=1e4,Ou=(function(A){LA(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 Mu(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(),Hu(t)&&(this.ctx.globalAlpha=t.opacity),Eu(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)),Mi(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 wA(this,void 0,void 0,function(){var r;return cA(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 wA(this,void 0,void 0,function(){return cA(this,function(r){switch(r.label){case 0:if(sA(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=gn(t.text);i.reduce(function(o,a){return s.ctx.fillText(a,o,t.bounds.top+n),o+s.ctx.measureText(a).width},t.bounds.left)}},e.prototype.createFontStyle=function(t){var r=t.fontVariant.filter(function(i){return i==="normal"||i==="small-caps"}).join(""),n=ku(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 wA(this,void 0,void 0,function(){var n,s,i,o,a,B,l,u,f=this;return cA(this,function(C){return n=this.createFontStyle(r),s=n[0],i=n[1],o=n[2],this.ctx.font=s,this.ctx.direction=r.direction===1?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",a=this.fontMetrics.getMetrics(i,o),B=a.baseline,l=a.middle,u=r.paintOrder,t.textBounds.forEach(function(g){u.forEach(function(w){switch(w){case 0:f.ctx.fillStyle=iA(r.color),f.renderTextWithLetterSpacing(g,r.letterSpacing,B);var x=r.textShadow;x.length&&g.text.trim().length&&(x.slice(0).reverse().forEach(function(F){f.ctx.shadowColor=iA(F.color),f.ctx.shadowOffsetX=F.offsetX.number*f.options.scale,f.ctx.shadowOffsetY=F.offsetY.number*f.options.scale,f.ctx.shadowBlur=F.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=iA(r.textDecorationColor||r.color),r.textDecorationLine.forEach(function(F){switch(F){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=iA(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 wA(this,void 0,void 0,function(){var r,n,s,i,o,a,p,p,B,l,u,f,m,C,g,I,w,x,F,p,L,m,I;return cA(this,function(h){switch(h.label){case 0:this.applyEffects(t.getEffects(4)),r=t.container,n=t.curves,s=r.styles,i=0,o=r.textNodes,h.label=1;case 1:return i<o.length?(a=o[i],[4,this.renderTextNode(a,s)]):[3,4];case 2:h.sent(),h.label=3;case 3:return i++,[3,1];case 4:if(!(r instanceof Ui))return[3,8];h.label=5;case 5:return h.trys.push([5,7,,8]),[4,this.context.cache.match(r.src)];case 6:return p=h.sent(),this.renderReplacedElement(r,n,p),[3,8];case 7:return h.sent(),this.context.logger.error("Error loading image "+r.src),[3,8];case 8:if(r instanceof Fi&&this.renderReplacedElement(r,n,r.canvas),!(r instanceof pi))return[3,12];h.label=9;case 9:return h.trys.push([9,11,,12]),[4,this.context.cache.match(r.svg)];case 10:return p=h.sent(),this.renderReplacedElement(r,n,p),[3,12];case 11:return h.sent(),this.context.logger.error("Error loading svg "+r.svg.substring(0,255)),[3,12];case 12:return r instanceof Hi&&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=h.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),h.label=14;case 14:if(r instanceof wn&&(u=Math.min(r.bounds.width,r.bounds.height),r.type===Mt?r.checked&&(this.ctx.save(),this.path([new v(r.bounds.left+u*.39363,r.bounds.top+u*.79),new v(r.bounds.left+u*.16,r.bounds.top+u*.5549),new v(r.bounds.left+u*.27347,r.bounds.top+u*.44071),new v(r.bounds.left+u*.39694,r.bounds.top+u*.5649),new v(r.bounds.left+u*.72983,r.bounds.top+u*.23),new v(r.bounds.left+u*.84,r.bounds.top+u*.34085),new v(r.bounds.left+u*.39363,r.bounds.top+u*.79)]),this.ctx.fillStyle=iA(Hs),this.ctx.fill(),this.ctx.restore()):r.type===Rt&&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=iA(Hs),this.ctx.fill(),this.ctx.restore())),Gu(r)&&r.value.length){switch(f=this.createFontStyle(s),m=f[0],C=f[1],g=this.fontMetrics.getMetrics(m,C).baseline,this.ctx.font=m,this.ctx.fillStyle=iA(s.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=Vu(r.styles.textAlign),I=Pt(r),w=0,r.styles.textAlign){case 1:w+=I.width/2;break;case 2:w+=I.width;break}x=I.add(w,0,0,-I.height/2+1),this.ctx.save(),this.path([new v(I.left,I.top),new v(I.left+I.width,I.top),new v(I.left+I.width,I.top+I.height),new v(I.left,I.top+I.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new Ze(r.value,x),s.letterSpacing,g),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!sA(r.styles.display,2048))return[3,20];if(r.styles.listStyleImage===null)return[3,19];if(F=r.styles.listStyleImage,F.type!==0)return[3,18];p=void 0,L=F.url,h.label=15;case 15:return h.trys.push([15,17,,18]),[4,this.context.cache.match(L)];case 16:return p=h.sent(),this.ctx.drawImage(p,r.bounds.left-(p.width+10),r.bounds.top),[3,18];case 17:return h.sent(),this.context.logger.error("Error loading list-style-image "+L),[3,18];case 18:return[3,20];case 19:t.listValue&&r.styles.listStyleType!==-1&&(m=this.createFontStyle(s)[0],this.ctx.font=m,this.ctx.fillStyle=iA(s.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",I=new PA(r.bounds.left,r.bounds.top+z(r.styles.paddingTop,r.bounds.width),r.bounds.width,Bs(s.lineHeight,s.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new Ze(t.listValue,I),s.letterSpacing,Bs(s.lineHeight,s.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),h.label=20;case 20:return[2]}})})},e.prototype.renderStackContent=function(t){return wA(this,void 0,void 0,function(){var r,n,F,s,i,F,o,a,F,B,l,F,u,f,F,C,g,F,w,x,F;return cA(this,function(p){switch(p.label){case 0:if(sA(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?(F=n[r],[4,this.renderStack(F)]):[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?(F=i[s],[4,this.renderNode(F)]):[3,10];case 8:p.sent(),p.label=9;case 9:return s++,[3,7];case 10:o=0,a=t.nonPositionedFloats,p.label=11;case 11:return o<a.length?(F=a[o],[4,this.renderStack(F)]):[3,14];case 12:p.sent(),p.label=13;case 13:return o++,[3,11];case 14:B=0,l=t.nonPositionedInlineLevel,p.label=15;case 15:return B<l.length?(F=l[B],[4,this.renderStack(F)]):[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?(F=f[u],[4,this.renderNode(F)]):[3,22];case 20:p.sent(),p.label=21;case 21:return u++,[3,19];case 22:C=0,g=t.zeroOrAutoZIndexOrTransformedOrOpacity,p.label=23;case 23:return C<g.length?(F=g[C],[4,this.renderStack(F)]):[3,26];case 24:p.sent(),p.label=25;case 25:return C++,[3,23];case 26:w=0,x=t.positiveZIndex,p.label=27;case 27:return w<x.length?(F=x[w],[4,this.renderStack(F)]):[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=vA(n)?n.start:n;s===0?r.ctx.moveTo(i.x,i.y):r.ctx.lineTo(i.x,i.y),vA(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,o=i.createElement("canvas");o.width=Math.max(1,r),o.height=Math.max(1,n);var a=o.getContext("2d");return a.drawImage(t,0,0,t.width,t.height,0,0,r,n),o},e.prototype.renderBackgroundImage=function(t){return wA(this,void 0,void 0,function(){var r,n,s,i,o,a;return cA(this,function(B){switch(B.label){case 0:r=t.styles.backgroundImage.length-1,n=function(l){var u,f,C,Y,k,P,_,O,M,g,Y,k,P,_,O,w,x,F,p,L,m,I,h,y,M,S,Y,K,R,_,O,q,k,P,uA,$,eA,UA,MA,QA,yA,FA;return cA(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&&(C=Or(t,r,[u.width,u.height,u.width/u.height]),Y=C[0],k=C[1],P=C[2],_=C[3],O=C[4],M=s.ctx.createPattern(s.resizeImage(u,_,O),"repeat"),s.renderRepeat(Y,M,k,P)),[3,6];case 5:EB(l)?(g=Or(t,r,[null,null,null]),Y=g[0],k=g[1],P=g[2],_=g[3],O=g[4],w=UB(l.angle,_,O),x=w[0],F=w[1],p=w[2],L=w[3],m=w[4],I=document.createElement("canvas"),I.width=_,I.height=O,h=I.getContext("2d"),y=h.createLinearGradient(F,L,p,m),os(l.stops,x).forEach(function(ee){return y.addColorStop(ee.stop,iA(ee.color))}),h.fillStyle=y,h.fillRect(0,0,_,O),_>0&&O>0&&(M=s.ctx.createPattern(I,"repeat"),s.renderRepeat(Y,M,k,P))):HB(l)&&(S=Or(t,r,[null,null,null]),Y=S[0],K=S[1],R=S[2],_=S[3],O=S[4],q=l.position.length===0?[ln]:l.position,k=z(q[0],_),P=z(q[q.length-1],O),uA=FB(l,k,P,_,O),$=uA[0],eA=uA[1],$>0&&eA>0&&(UA=s.ctx.createRadialGradient(K+k,R+P,0,K+k,R+P,$),os(l.stops,$*2).forEach(function(ee){return UA.addColorStop(ee.stop,iA(ee.color))}),s.path(Y),s.ctx.fillStyle=UA,$!==eA?(MA=t.bounds.left+.5*t.bounds.width,QA=t.bounds.top+.5*t.bounds.height,yA=eA/$,FA=1/yA,s.ctx.save(),s.ctx.translate(MA,QA),s.ctx.transform(1,0,0,yA,0,0),s.ctx.translate(-MA,-QA),s.ctx.fillRect(K,FA*(R-QA)+QA,_,O*FA),s.ctx.restore()):s.ctx.fill())),RA.label=6;case 6:return r--,[2]}})},s=this,i=0,o=t.styles.backgroundImage.slice(0).reverse(),B.label=1;case 1:return i<o.length?(a=o[i],[5,n(a)]):[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 wA(this,void 0,void 0,function(){return cA(this,function(s){return this.path(Rs(n,r)),this.ctx.fillStyle=iA(t),this.ctx.fill(),[2]})})},e.prototype.renderDoubleBorder=function(t,r,n,s){return wA(this,void 0,void 0,function(){var i,o;return cA(this,function(a){switch(a.label){case 0:return r<3?[4,this.renderSolidBorder(t,n,s)]:[3,2];case 1:return a.sent(),[2];case 2:return i=bu(s,n),this.path(i),this.ctx.fillStyle=iA(t),this.ctx.fill(),o=xu(s,n),this.path(o),this.ctx.fill(),[2]}})})},e.prototype.renderNodeBackgroundAndBorders=function(t){return wA(this,void 0,void 0,function(){var r,n,s,i,o,a,B,l,u=this;return cA(this,function(f){switch(f.label){case 0:return this.applyEffects(t.getEffects(2)),r=t.container.styles,n=!$A(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=Nu(me(r.backgroundClip,0),t.curves),n||r.boxShadow.length?(this.ctx.save(),this.path(i),this.ctx.clip(),$A(r.backgroundColor)||(this.ctx.fillStyle=iA(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(C){u.ctx.save();var g=Nt(t.curves),w=C.inset?0:Ru,x=yu(g,-w+(C.inset?1:-1)*C.spread.number,(C.inset?1:-1)*C.spread.number,C.spread.number*(C.inset?-2:2),C.spread.number*(C.inset?-2:2));C.inset?(u.path(g),u.ctx.clip(),u.mask(x)):(u.mask(g),u.ctx.clip(),u.path(x)),u.ctx.shadowOffsetX=C.offsetX.number+w,u.ctx.shadowOffsetY=C.offsetY.number,u.ctx.shadowColor=iA(C.color),u.ctx.shadowBlur=C.blur.number,u.ctx.fillStyle=C.inset?iA(C.color):"rgba(0,0,0,1)",u.ctx.fill(),u.ctx.restore()}),f.label=2;case 2:o=0,a=0,B=s,f.label=3;case 3:return a<B.length?(l=B[a],l.style!==0&&!$A(l.color)&&l.width>0?l.style!==2?[3,5]:[4,this.renderDashedDottedBorder(l.color,l.width,o,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,o,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,o,t.curves)];case 8:return f.sent(),[3,11];case 9:return[4,this.renderSolidBorder(l.color,o,t.curves)];case 10:f.sent(),f.label=11;case 11:o++,f.label=12;case 12:return a++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,r,n,s,i){return wA(this,void 0,void 0,function(){var o,a,B,l,u,f,C,g,w,x,F,p,L,m,I,h,I,h;return cA(this,function(y){return this.ctx.save(),o=Tu(s,n),a=Rs(s,n),i===2&&(this.path(a),this.ctx.clip()),vA(a[0])?(B=a[0].start.x,l=a[0].start.y):(B=a[0].x,l=a[0].y),vA(a[1])?(u=a[1].end.x,f=a[1].end.y):(u=a[1].x,f=a[1].y),n===0||n===2?C=Math.abs(B-u):C=Math.abs(l-f),this.ctx.beginPath(),i===3?this.formatPath(o):this.formatPath(a.slice(0,2)),g=r<3?r*3:r*2,w=r<3?r*2:r,i===3&&(g=r,w=r),x=!0,C<=g*2?x=!1:C<=g*2+w?(F=C/(2*g+w),g*=F,w*=F):(p=Math.floor((C+w)/(g+w)),L=(C-p*g)/(p-1),m=(C-(p+1)*g)/p,w=m<=0||Math.abs(w-L)<Math.abs(w-m)?L:m),x&&(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=iA(t),this.ctx.stroke(),this.ctx.setLineDash([]),i===2&&(vA(a[0])&&(I=a[3],h=a[0],this.ctx.beginPath(),this.formatPath([new v(I.end.x,I.end.y),new v(h.start.x,h.start.y)]),this.ctx.stroke()),vA(a[1])&&(I=a[1],h=a[2],this.ctx.beginPath(),this.formatPath([new v(I.end.x,I.end.y),new v(h.start.x,h.start.y)]),this.ctx.stroke())),this.ctx.restore(),[2]})})},e.prototype.render=function(t){return wA(this,void 0,void 0,function(){var r;return cA(this,function(n){switch(n.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=iA(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),r=Iu(t),[4,this.renderStack(r)];case 1:return n.sent(),this.applyEffects([]),[2,this.canvas]}})})},e})(Vi),Gu=function(A){return A instanceof Ei||A instanceof vi?!0:A instanceof wn&&A.type!==Rt&&A.type!==Mt},Nu=function(A,e){switch(A){case 0:return Nt(e);case 2:return pu(e);default:return Vt(e)}},Vu=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},Pu=["-apple-system","system-ui"],ku=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(e){return Pu.indexOf(e)===-1}):A},Xu=(function(A){LA(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 wA(this,void 0,void 0,function(){var r,n;return cA(this,function(s){switch(s.label){case 0:return r=tn(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,t),[4,Wu(r)];case 1:return n=s.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=iA(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})(Vi),Wu=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))})},Ju=(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})(),Yu=(function(){function A(e,t){var r;this.windowBounds=t,this.instanceName="#"+A.instanceCount++,this.logger=new Ju({id:this.instanceName,enabled:e.logging}),this.cache=(r=e.cache)!==null&&r!==void 0?r:new gu(this,e)}return A.instanceCount=1,A})(),Zu=function(A,e){return e===void 0&&(e={}),qu(A,e)};typeof window<"u"&&_i.setContext(window);var qu=function(A,e){return wA(void 0,void 0,void 0,function(){var t,r,n,s,i,o,a,B,l,u,f,C,g,w,x,F,p,L,m,I,y,h,y,M,S,Y,K,R,_,O,q,k,P,uA,$,eA,UA,MA,QA,yA;return cA(this,function(FA){switch(FA.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:(M=e.allowTaint)!==null&&M!==void 0?M:!1,imageTimeout:(S=e.imageTimeout)!==null&&S!==void 0?S:15e3,proxy:e.proxy,useCORS:(Y=e.useCORS)!==null&&Y!==void 0?Y:!1},s=Nr({logging:(K=e.logging)!==null&&K!==void 0?K:!0,cache:e.cache},n),i={windowWidth:(R=e.windowWidth)!==null&&R!==void 0?R:r.innerWidth,windowHeight:(_=e.windowHeight)!==null&&_!==void 0?_:r.innerHeight,scrollX:(O=e.scrollX)!==null&&O!==void 0?O:r.pageXOffset,scrollY:(q=e.scrollY)!==null&&q!==void 0?q:r.pageYOffset},o=new PA(i.scrollX,i.scrollY,i.windowWidth,i.windowHeight),a=new Yu(s,o),B=(k=e.foreignObjectRendering)!==null&&k!==void 0?k:!1,l={allowTaint:(P=e.allowTaint)!==null&&P!==void 0?P:!1,onclone:e.onclone,ignoreElements:e.ignoreElements,inlineImages:B,copyStyles:B},a.logger.debug("Starting document clone with size "+o.width+"x"+o.height+" scrolled to "+-o.left+","+-o.top),u=new Ds(a,A,l),f=u.clonedReferenceElement,f?[4,u.toIFrame(t,o)]:[2,Promise.reject("Unable to find element in cloned iframe")];case 1:return C=FA.sent(),g=Qn(f)||jl(f)?yo(f.ownerDocument):kt(a,f),w=g.width,x=g.height,F=g.left,p=g.top,L=ju(a,f,e.backgroundColor),m={canvas:e.canvas,backgroundColor:L,scale:($=(uA=e.scale)!==null&&uA!==void 0?uA:r.devicePixelRatio)!==null&&$!==void 0?$:1,x:((eA=e.x)!==null&&eA!==void 0?eA:0)+F,y:((UA=e.y)!==null&&UA!==void 0?UA:0)+p,width:(MA=e.width)!==null&&MA!==void 0?MA:Math.ceil(w),height:(QA=e.height)!==null&&QA!==void 0?QA:Math.ceil(x)},B?(a.logger.debug("Document cloned, using foreign object rendering"),y=new Xu(a,m),[4,y.render(f)]):[3,3];case 2:return I=FA.sent(),[3,5];case 3:return a.logger.debug("Document cloned, element located at "+F+","+p+" with size "+w+"x"+x+" using computed rendering"),a.logger.debug("Starting DOM parsing"),h=Ii(a,f),L===h.styles.backgroundColor&&(h.styles.backgroundColor=VA.TRANSPARENT),a.logger.debug("Starting renderer for element at "+m.x+","+m.y+" with size "+m.width+"x"+m.height),y=new Ou(a,m),[4,y.render(h)];case 4:I=FA.sent(),FA.label=5;case 5:return(!((yA=e.removeContainer)!==null&&yA!==void 0)||yA)&&(Ds.destroy(C)||a.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),a.logger.debug("Finished rendering"),[2,I]}})})},ju=function(A,e,t){var r=e.ownerDocument,n=r.documentElement?Je(A,getComputedStyle(r.documentElement).backgroundColor):VA.TRANSPARENT,s=r.body?Je(A,getComputedStyle(r.body).backgroundColor):VA.TRANSPARENT,i=typeof t=="string"?Je(A,t):t===null?VA.TRANSPARENT:4294967295;return e===r.documentElement?$A(n)?$A(s)?i:s:n:i},Pi=Zu;var ki=!1,zu=new Set(["AREA","BASE","BR","COL","EMBED","HR","IMG","INPUT","LINK","META","PARAM","SOURCE","TRACK","WBR"]);function $u(){if(ki)return;ki=!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 Wi(){$u()}function Af(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 ef(A){let e=A.ownerDocument.defaultView;e&&[A,...Array.from(A.querySelectorAll("*"))].forEach(t=>{if(zu.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 tf(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(a=>requestAnimationFrame(()=>requestAnimationFrame(()=>a())));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 o=document.createElement("canvas");return o.width=t,o.height=r,o.getContext("2d").drawImage(n,0,0),n.remove(),o}catch(s){throw n.remove(),s}}function Ji(A,e,t=fe,r=ge,n={}){return tt()&&!n.preferBrowserPaint?tf(A,e,t,r).catch(()=>Xi(A,e,t,r,n)):Xi(A,e,t,r,n)}function Xi(A,e,t,r,n={}){let s=i=>Pi(A,{width:t,height:r,scale:n.scale??1,backgroundColor:e,logging:!1,foreignObjectRendering:i,useCORS:!0,allowTaint:!0,onclone:o=>{if(!A.id)return;let a=o.getElementById(A.id);a instanceof HTMLElement&&ef(a),n.forceVisible&&Af(A,o)},ignoreElements:o=>o.tagName==="CANVAS"||o.hasAttribute("data-no-capture")});return n.preferBrowserPaint===!0?s(!0).catch(()=>s(!1)):s(!1)}var Ar="__hf-page-side-compositor",Cn="__hf_page_compositor_v1__";function Yi(A){return{left:`${A.left}px`,top:`${A.top}px`,width:`${A.width}px`,height:`${A.height}px`}}function dn(){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__=Cn,!dn())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,o=document.createElement("canvas");o.id=Ar,o.width=n,o.height=s,o.style.cssText="position:fixed;top:0;left:0;width:100%;height:100%;z-index:2147483646;pointer-events:none;display:none;",document.body.appendChild(o);let a=ot(o,n,s);if(!a)return console.warn("[HyperShader] page-side compositor: WebGL context unavailable."),o.remove(),!1;let B=at(a),l=new Map;for(let K of t)if(K.shader!==void 0&&!l.has(K.shader))try{l.set(K.shader,Bt(a,lt(K.shader)))}catch(R){console.warn(`[HyperShader] page-side compositor: failed to compile "${K.shader}":`,R)}let u=[];for(let K=0;K<t.length;K++){let R=t[K];if(!R||R.shader===void 0)continue;let _=e[K],O=e[K+1],q=l.get(R.shader);!_||!O||!q||u.push({time:R.time,duration:R.duration??i,shader:R.shader,fromSceneId:_,toSceneId:O,prog:q})}if(u.length===0)return o.remove(),!1;let f=ne(a),C=ne(a),g=document.createElement("canvas"),w=document.createElement("canvas");for(let K of[g,w])K.width=n,K.height=s,K.setAttribute("layoutsubtree",""),K.style.cssText="position:fixed;top:0;left:0;width:"+n+"px;height:"+s+"px;z-index:-9998;pointer-events:none;",document.body.appendChild(K);function x(K){for(let R of u)if(K>=R.time&&K<=R.time+R.duration)return R;return null}function F(K){let R=0;for(let _ of t)K>=_.time+(_.duration??i)&&(R+=1);return e[Math.min(R,e.length-1)]}let p=null,L=0,m=window;async function I(){let K=p;if(!K)return m.__hf_page_composite_pending=!1,!1;let R=document.getElementById(K.fromSceneId),_=document.getElementById(K.toSceneId);if(!(R instanceof HTMLElement)||!(_ instanceof HTMLElement))return m.__hf_page_composite_pending=!1,!1;let O=Yi(R.getBoundingClientRect()),q=Yi(_.getBoundingClientRect());for(;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);let k=R.cloneNode(!0),P=_.cloneNode(!0);g.appendChild(k),w.appendChild(P);for(let[$,eA]of[[k,O],[P,q]])$.style.opacity="1",$.style.visibility="visible",$.style.position="absolute",$.style.left=eA.left,$.style.top=eA.top,$.style.width=eA.width,$.style.height=eA.height,$.querySelectorAll("[data-start]").forEach(UA=>{UA.style.opacity="1",UA.style.visibility="visible"});let uA=[];for(let $ of[g,w])for(let eA of $.querySelectorAll("img"))eA.src&&eA.src.startsWith("data:")&&typeof eA.decode=="function"&&uA.push(eA.decode().catch(()=>{}));return uA.length>0&&await Promise.all(uA),!0}function h(){let K=p;if(!K)return m.__hf_page_composite_pending=!1,!1;let R=g.firstElementChild,_=w.firstElementChild;if(!R||!_)return m.__hf_page_composite_pending=!1,!1;let O=g.getContext("2d"),q=w.getContext("2d");if(!O?.drawElementImage||!q?.drawElementImage)return m.__hf_page_composite_pending=!1,!1;try{O.fillStyle=A.bgColor,O.fillRect(0,0,n,s),O.drawElementImage(R,0,0,n,s),q.fillStyle=A.bgColor,q.fillRect(0,0,n,s),q.drawElementImage(_,0,0,n,s)}catch(k){return console.warn("[HyperShader] page-side compositor: drawElementImage failed:",k),m.__hf_page_composite_pending=!1,!1}we(a,f,g),we(a,C,w);try{ct(a,B,K.prog,f,C,L,r,n,s),o.style.display="block"}catch(k){console.warn("[HyperShader] page-side compositor: renderShader failed:",k),o.style.display="none"}return m.__hf_page_composite_pending=!1,!0}m.__hf_page_composite_resolve=h,m.__hf_page_composite_prepare=I;let y=window,M=()=>{if(!y.__hf)return;let K=y.__hf.seek;if(typeof K!="function")return;let R=_=>{let O=K.call(y.__hf,_),q=x(_);if(!q){for(o.style.display="none",m.__hf_page_composite_pending=!1;g.firstChild;)g.removeChild(g.firstChild);for(;w.firstChild;)w.removeChild(w.firstChild);let k=F(_),P=k?document.getElementById(k):null;return P instanceof HTMLElement&&P.style.visibility==="hidden"&&(P.style.visibility="visible"),O}return p=q,L=q.duration===0?1:Math.min(1,Math.max(0,(_-q.time)/q.duration)),m.__hf_page_composite_pending=!0,O};y.__hf.seek=R},S=0,Y=window.setInterval(()=>{S+=1,y.__hf?.seek?(M(),window.clearInterval(Y)):S>200&&(window.clearInterval(Y),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,Un="power2.inOut",rf="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"],nf="hyper-shader-preview-cache",_A="frames",sf=1,of="v1",Zi=2,qi=1.25,af=1200;function Bf(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 no(A){let[e,t,r]=Bf(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 ce(A,e,t){return Math.min(t,Math.max(e,A))}function cf(A,e){return A===void 0?e:Number.isFinite(A)&&A>0?A:e}var lf="__hf_shader_capture_scale",uf="__hf_shader_loading";function so(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 ff(){let A=so("__HF_SHADER_CAPTURE_SCALE",lf),e=A===null?NaN:Number(A);return ce(Number.isFinite(e)&&e>0?e:1,.25,1)}function gf(){let A=so("__HF_SHADER_LOADING",uf)?.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 wf(A){let e=Array.from(A.querySelectorAll("style")).map(r=>r.textContent||"").join(`
7
7
  `),t=Array.from(A.querySelectorAll('link[rel~="stylesheet"]')).map(r=>`${r.href}:${r.getAttribute("integrity")||""}`).join(`
8
8
  `);return ir(`${e}
9
- ${t}`)}function wf(A){return A.includes("gsap.timeline")||A.includes("__timelines")||A.includes(".to(")||A.includes(".set(")?!A.includes("HyperShader")&&!A.includes("hyper-shader")&&!A.includes("hyperShader"):!1}function Qf(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")).filter(r=>{if(r.src)return!0;let n=r.textContent||"";return n.trim()?!wf(n):!1}).map(r=>`${[r.type,r.src,r.getAttribute("integrity")||"",r.getAttribute("crossorigin")||"",r.getAttribute("data-hyperframes-runtime")||""].join(":")}
9
+ ${t}`)}function Qf(A){return A.includes("gsap.timeline")||A.includes("__timelines")||A.includes(".to(")||A.includes(".set(")?!A.includes("HyperShader")&&!A.includes("hyper-shader")&&!A.includes("hyperShader"):!1}function Cf(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")).filter(r=>{if(r.src)return!0;let n=r.textContent||"";return n.trim()?!Qf(n):!1}).map(r=>`${[r.type,r.src,r.getAttribute("integrity")||"",r.getAttribute("crossorigin")||"",r.getAttribute("data-hyperframes-runtime")||""].join(":")}
11
11
  ${r.src?"":r.textContent||""}`).join(`
12
12
  `);return ir(`${e}
13
- ${t}`)}function qi(A){let e=document.getElementById(A);return e?ir(`${gf(document)}
14
- ${Qf(document)}
15
- ${Cf(e)}`):"missing"}function ji(A,e){for(let t of e)A.style.removeProperty(t);A.getAttribute("style")?.trim()===""&&A.removeAttribute("style")}function Cf(A){let e=A.cloneNode(!0);return ji(e,["opacity","visibility","pointer-events"]),e.querySelectorAll("[data-start]").forEach(t=>{ji(t,["visibility"])}),e.outerHTML}function rr(A,e,t){return`${A}:sample:${e}:${t}`}function df(){return typeof indexedDB>"u"?Promise.resolve(null):new Promise(A=>{let e=indexedDB.open(rf,nf);e.onupgradeneeded=()=>{let t=e.result;t.objectStoreNames.contains(DA)||t.createObjectStore(DA,{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 pn(){return rt=rt||df(),rt}async function Un(A){let e=await pn();return e?new Promise(t=>{try{let n=e.transaction(DA,"readonly").objectStore(DA).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 Uf(A){let e=await pn();return e?new Promise(t=>{try{let r=e.transaction(DA,"readwrite");r.oncomplete=()=>t(!0),r.onerror=()=>t(!1),r.objectStore(DA).put(A)}catch{sr(e),t(!1)}}):!1}function zi(A){return new Promise(e=>{try{A.toBlob(t=>e(t),"image/png")}catch{e(null)}})}async function hf(A,e,t=af){let r=await pn();if(!r)return;let n=await new Promise(w=>{try{let F=r.transaction(DA,"readonly").objectStore(DA).getAll();F.onerror=()=>w([]),F.onsuccess=()=>{let p=[];for(let L of F.result)if(L&&typeof L=="object"&&"key"in L&&typeof L.key=="string"){let m="updatedAt"in L&&typeof L.updatedAt=="number"?L.updatedAt:0;p.push({key:L.key,updatedAt:m})}w(p)}}catch{sr(r),w([])}}),s=`${A}:`,i=w=>{for(let x of e)if(w.startsWith(`${x}: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,x)=>x.updatedAt-w.updatedAt),f=Math.max(0,t-l),C=u.length>f?u.slice(f).map(w=>w.key):[],g=Array.from(new Set([...a,...C]));g.length!==0&&await new Promise(w=>{try{let x=r.transaction(DA,"readwrite");x.oncomplete=()=>w(),x.onerror=()=>w();let F=x.objectStore(DA);for(let p of g)F.delete(p)}catch{sr(r),w()}})}function $i(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 Aa(A){typeof ImageBitmap<"u"&&A instanceof ImageBitmap&&A.close()}function ea(A,e,t){let r=ne(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 ta(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 Ff(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=m=>{m.preventDefault(),m.stopPropagation()};for(let m of["selectstart","dragstart","pointerdown","mousedown","touchstart"])s.addEventListener(m,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 C=r.createElement("div");C.setAttribute("aria-hidden","true"),C.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 x=m=>{let I=r.createElement("div");I.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=r.createElement("span");U.textContent=m,U.style.cssText=["overflow:hidden","text-overflow:ellipsis","text-align:left","min-width:0"].join(";");let y=r.createElement("span");return y.style.cssText=["min-width:76px","text-align:right"].join(";"),I.appendChild(U),I.appendChild(y),w.appendChild(I),{row:I,label:U,value:y}},F=x("transition"),p=x("transition frame");C.appendChild(g),a.appendChild(o),a.appendChild(l),a.appendChild(f),a.appendChild(C),a.appendChild(w),s.appendChild(a),n.appendChild(s);let L=null;return{show:()=>{L&&(clearTimeout(L),L=null),s.style.display="grid",s.style.opacity="1",s.style.pointerEvents="auto"},update:m=>{let{progress:I,total:U}=m,y=U>0?ce(I/U,0,1):0,M=Math.min(tr.length-1,Math.floor(y*tr.length)),S=tr[M]??"Preparing scene transitions";u.textContent=S,g.style.transform=`scaleX(${y})`;let Y=m.currentTransition!==void 0&&m.transitionTotal!==void 0?`${m.currentTransition}/${m.transitionTotal}`:U>0?`${I}/${U}`:"",K=m.transitionFrame!==void 0&&m.transitionFrames!==void 0?`${m.transitionFrame}/${m.transitionFrames}`:"",R=m.phase==="cached"?"loading cached transition frames":m.phase==="finalizing"?"finalizing":"rendering transition frames";F.label.textContent=m.currentTransition!==void 0?"transition":"transition frames",F.value.textContent=Y,p.label.textContent=R,p.value.textContent=K,p.row.style.visibility=K?"visible":"hidden",s.setAttribute("aria-valuenow",String(Math.round(y*100)))},hide:()=>{L&&clearTimeout(L),s.style.display!=="none"&&(s.style.opacity="0",s.style.pointerEvents="none",L=setTimeout(()=>{s.style.display="none",s.style.opacity="1",s.style.pointerEvents="auto",L=null},240))}}}function sa(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 d of t){let h=document.getElementById(d);h?h.classList.contains("scene")||Q.push(d):c.push(d)}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,d)=>({time:Q.time,duration:Q.duration??nr,shader:Q.shader,ease:Q.ease??hn,fromScene:t[d]??"",toScene:t[d+1]??""})))}let n=A.accentColor?ra(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:fe,l=Number.isFinite(o)&&o>0?o:ge;if(typeof window<"u"&&!!window.__HF_VIRTUAL_TIME__)return pf(A,t,r,i,s);let f={active:!1,prog:null,progress:0,transitionIndex:-1},C=document.getElementById("gl-canvas");C||(C=document.createElement("canvas"),C.id="gl-canvas",C.style.cssText="position:absolute;top:0;left:0;z-index:100;pointer-events:none;display:none;",(s||document.body).appendChild(C)),C.width=B,C.height=l,C.style.width=`${B}px`,C.style.height=`${l}px`;let g=at(C,B,l);if(!g){console.warn("[HyperShader] WebGL unavailable \u2014 shader transitions disabled.");let c=A.timeline||gsap.timeline({paused:!0});return Fn(i,c,A.timeline),c}let w=ot(g),x=new Map;for(let c of r)if(c.shader!==void 0&&!x.has(c.shader))try{x.set(c.shader,Bt(g,lt(c.shader)))}catch(Q){console.error(`[HyperShader] Failed to compile "${c.shader}":`,Q)}let F=C,p=ce(Bf(A.previewCaptureFps,30),1,60),L=uf(),m=ff(),I=Math.max(1,Math.round(B*L)),U=Math.max(1,Math.round(l*L)),y=[],M=On(g,tf,["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("")),S={a:g.getUniformLocation(M,"u_a"),b:g.getUniformLocation(M,"u_b"),mix:g.getUniformLocation(M,"u_mix"),pos:g.getAttribLocation(M,"a_pos")},Y=ea(g,I,U),K=ea(g,I,U),R=ta(g,Y),_=ta(g,K),O=null,q=()=>m!=="internal"?null:(O=O||Ff(s,B,l),O),k=!1,G=!1,rA=0,gA=0,UA=new WeakMap,_A=()=>{gA=performance.now()+120},MA=c=>{UA.has(c)||UA.set(c,c.style.pointerEvents)},wA=(c,Q,d)=>{MA(c),_A(),c.style.opacity=d,c.style.visibility=Q?"visible":"hidden",c.style.pointerEvents=Q?UA.get(c)??"":"none"},HA=(c,Q,d,h)=>{t.forEach(b=>{let T=document.getElementById(b);T&&(b===c?wA(T,!0,d):b===Q?wA(T,!0,h):wA(T,!1,"0"))})},hA=c=>{c.width=0,c.height=0},RA=c=>Ji(c,e,B,l,{forceVisible:!0,scale:L}),ee=()=>new Promise(c=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>c())})}),mn=c=>!!(c?.fromTex&&c.toTex),ia=(c,Q)=>{if(c.frames.length===0)return null;let d=ce(Q,0,1)*(c.frames.length-1),h=Math.floor(d),b=Math.ceil(d),T=c.frames[h]??c.frames[c.frames.length-1],P=c.frames[b]??T;return!mn(T)||!mn(P)?null:{a:T,b:P,mix:d-h}},vn=(c,Q,d,h)=>{g.bindFramebuffer(g.FRAMEBUFFER,c),g.viewport(0,0,I,U),g.useProgram(M),g.activeTexture(g.TEXTURE0),g.bindTexture(g.TEXTURE_2D,Q),g.uniform1i(S.a,0),g.activeTexture(g.TEXTURE1),g.bindTexture(g.TEXTURE_2D,d),g.uniform1i(S.b,1),g.uniform1f(S.mix,h),g.bindBuffer(g.ARRAY_BUFFER,w),g.enableVertexAttribArray(S.pos),g.vertexAttribPointer(S.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)},En=c=>{Sn(c).then(Q=>{if(!Q)return;let d=W.time();d>=c.time&&d<c.time+c.duration&&te()})},aa=c=>{let Q=0;for(let d=0;d<y.length;d+=1){let h=y[d];h&&c>=h.time+h.duration&&(Q=d+1)}return ce(Q,0,t.length-1)},Hn=c=>{let Q=aa(c);t.forEach((d,h)=>{let b=document.getElementById(d);if(!b)return;let T=h===Q;wA(b,T,T?"1":"0")})},yn=(c,Q)=>{let d=document.getElementById(c.fromId),h=document.getElementById(c.toId);if(!d||!h)return;let b=Q*Q*(3-2*Q);F.style.display="none",HA(c.fromId,c.toId,String(1-b),String(b))},te=()=>{if(G)return;let c=W.time(),Q=y.find(P=>!P.fallback&&P.ready&&!P.dirty&&!P.textureReady&&c>=P.time-Zi&&c<P.time+P.duration);Q&&En(Q);let d=y.findIndex(P=>c>=P.time&&c<P.time+P.duration);if(d<0){f.active=!1,f.transitionIndex=-1,F.style.display="none",Hn(c);return}let h=y[d];if(!h||h.dirty||!h.ready){F.style.display="none";return}if(h.fallback||h.prog===null){f.active=!0,f.transitionIndex=d,f.prog=null,f.progress=ce((c-h.time)/h.duration,0,1),yn(h,f.progress);return}if(!h.textureReady){En(h),F.style.display="none";return}let b=h.prog;f.active=!0,f.transitionIndex=d,f.prog=b,f.progress=ce((c-h.time)/h.duration,0,1),ur(h);let T=ia(h,f.progress);if(!T){F.style.display="none";return}HA(h.fromId,h.toId,"1","1"),vn(R,T.a.fromTex,T.b.fromTex,T.mix),vn(_,T.a.toTex,T.b.toTex,T.mix),F.style.display="block",ct(g,w,b,Y,K,f.progress,n,B,l)},W;if(A.timeline){W=A.timeline;let c=Number(s?.getAttribute("data-duration")||"40");W.to({t:0},{t:1,duration:c,ease:"none",onUpdate:te},0)}else W=gsap.timeline({paused:!0,onUpdate:te});let ar=W.play.bind(W),or=W.pause.bind(W),nt=W.time.bind(W),In=typeof W.seek=="function"?W.seek.bind(W):null,OA=()=>{let c=nt();return typeof c=="number"&&Number.isFinite(c)?c:0},QA=OA(),st=c=>{typeof c=="number"&&Number.isFinite(c)&&(QA=c)},it=(c,Q)=>{let d=c[0];return typeof d=="number"&&Number.isFinite(d)?d:Q},oa=(c,Q)=>{let d=nt(c,Q);return typeof d=="number"?W:d},yA=c=>{rA+=1;try{return c()}finally{rA-=1,gA=performance.now()+120}},IA=!1,kA=[],re=!1;W.play=((...c)=>{st(c[0]);let Q=it(c,QA);if(!Ie()||!ca(Q))return re=!1,IA=!0,kA=c,Dn(),W;let d=yA(()=>ar(...c));return QA=OA(),d}),W.pause=((...c)=>{if(IA=!1,kA=[],st(c[0]),G)return re=!0,W;let Q=yA(()=>or(...c));return QA=OA(),c.length>0&&te(),Q}),W.time=((...c)=>{if(c.length===0)return G||(QA=OA()),QA;if(st(c[0]),G)return W;let Q=yA(()=>nt(...c));return G||(QA=OA()),te(),Q}),In&&(W.seek=((...c)=>{if(st(c[0]),G)return W;let Q=yA(()=>In(...c));return G||(QA=OA()),te(),Q})),Wi(),C.style.display="none";for(let c=0;c<r.length;c++){let Q=r[c],d=t[c],h=t[c+1];if(!d||!h)continue;let b=Q.shader!==void 0,T=b?x.get(Q.shader)??null:null,P=!b||T===null;b&&T===null&&console.warn(`[HyperShader] Shader "${Q.shader}" failed to compile \u2014 falling back to CSS crossfade.`);let X=P?null:T,E=Q.duration??nr,D=Q.ease??hn,j=Q.time,N=y.length;y.push({index:N,time:j,duration:E,fromId:d,toId:h,prog:X,frames:[],cacheKey:"",dirty:!P,ready:P,fallback:P,persisted:P,textureReady:!1,texturePromise:null,textureGeneration:0,textureAccess:0}),W.call(()=>{yA(()=>{let lA=document.getElementById(d),XA=document.getElementById(h);if(!lA||!XA)return;f.prog=X,f.transitionIndex=N,f.progress=0,f.active=!0;let bA=y[N];if(bA?.fallback){yn(bA,0);return}F.style.display=!G&&bA?.ready&&!bA.dirty&&bA.textureReady?"block":"none",HA(d,h,"1","1")})},null,j);let iA={p:0};W.to(iA,{p:1,duration:E,ease:D,onUpdate:()=>{f.progress=iA.p}},j),W.call(()=>{yA(()=>{f.active=!1,f.transitionIndex=-1,F.style.display="none",Hn(j+E)})},null,j+E)}let Ba=c=>Math.max(2,Math.ceil(c.duration*p)+1),Ie=()=>y.every(c=>c.ready&&!c.dirty),bn=c=>{let Q=[],d=new Set,h=T=>{d.has(T.index)||T.fallback||T.dirty||!T.ready||(Q.push(T),d.add(T.index))};for(let T of y)c>=T.time&&c<T.time+T.duration&&h(T);let b=y.find(T=>T.time>=c);b&&h(b);for(let T of y)T.time>=c&&T.time-c<=Zi&&h(T);return Q.slice(0,Yi)},ca=c=>bn(c).every(Q=>Q.textureReady),xn=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=>c.prog===null,lr=c=>{if(Br(c),c.texturePromise=null,c.frames=[],c.lastError=void 0,cr(c)){c.ready=!0,c.fallback=!0,c.persisted=!0,c.textureReady=!1;return}c.ready=!1,c.fallback=!1,c.persisted=!1,c.textureReady=!1},ur=c=>{xn+=1,c.textureAccess=xn},la=c=>{let Q=y.filter(d=>d!==c&&d.textureReady).sort((d,h)=>d.textureAccess-h.textureAccess);for(;Q.length>=Yi;){let d=Q.shift();if(!d)break;Br(d)}},ua=(c,Q)=>{let d=[sf,i,c.index,c.fromId,qi(c.fromId),c.toId,qi(c.toId),r[c.index]?.shader||"unknown",c.time,c.duration,Q,p,L,I,U,B,l].join("|");return`${i}:${c.index}:${ir(d)}`},FA=c=>{let Q=window;Q.__hf=Q.__hf||{},Q.__hf.shaderTransitions=Q.__hf.shaderTransitions||{};let h={...Q.__hf.shaderTransitions[i]||{ready:!1,progress:0,total:0,dirtyTransitions:y.length,captureScale:L,textureWidth:I,textureHeight:U,fps:p,loading:!0},...c};if(h.dirtyTransitions=y.filter(b=>b.dirty||!b.ready).length,Q.__hf.shaderTransitions[i]=h,window.parent?.postMessage({source:"hf-preview",type:"shader-transition-state",compositionId:i,state:h},"*"),h.loading){let b=q();b?.show(),b?.update({progress:h.progress,total:h.total,currentTransition:h.currentTransition,transitionTotal:h.transitionTotal,transitionFrame:h.transitionFrame,transitionFrames:h.transitionFrames,phase:h.phase})}h.ready?O?.hide():h.loading||O?.hide()},Tn=()=>G||rA>0||performance.now()<gA||!W.paused(),Ln=c=>{if(c.size===0)return;let Q=!1;for(let d of y)!c.has(d.fromId)&&!c.has(d.toId)||cr(d)||(lr(d),d.dirty=!0,d.cacheKey="",Q=!0);Q&&(k=Ie(),FA({ready:k,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)}})))},fa=()=>{let c=t.map(h=>document.getElementById(h)).filter(h=>h instanceof HTMLElement),Q=[];for(let h of c){let b=new MutationObserver(T=>{if(Tn())return;let P=new Set;for(let X of T){let E=X.target instanceof Element?X.target:X.target.parentElement;if(E)for(let D of c)(D===E||D.contains(E))&&P.add(D.id)}Ln(P)});b.observe(h,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(b)}let d=new MutationObserver(()=>{Tn()||Ln(new Set(t))});return d.observe(document.head,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(d),Q},ga=async(c,Q,d)=>{let h=[];for(let b=0;b<Q;b+=1){let[T,P]=await Promise.all([Un(rr(c.cacheKey,b,"from")),Un(rr(c.cacheKey,b,"to"))]);if(!T||!P){for(let X of h)g.deleteTexture(X.fromTex),g.deleteTexture(X.toTex);return!1}h.push({sampleIndex:b,fromBlob:T.blob,toBlob:P.blob,fromTex:null,toTex:null}),d(b+1)}return c.frames=h,c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=!0,c.textureReady=!1,!0},Sn=c=>{if(c.fallback||c.dirty||!c.ready)return Promise.resolve(!1);if(c.textureReady)return ur(c),Promise.resolve(!0);if(c.texturePromise)return c.texturePromise;let Q=c.textureGeneration,d=c.frames,h=[],b=()=>c.textureGeneration!==Q||c.dirty||c.frames!==d,T=()=>{let E=new Set;for(let D of h)E.has(D)||(g.deleteTexture(D),E.add(D));for(let D of d)D.fromTex&&!E.has(D.fromTex)&&(g.deleteTexture(D.fromTex),E.add(D.fromTex)),D.toTex&&!E.has(D.toTex)&&(g.deleteTexture(D.toTex),E.add(D.toTex)),D.fromTex=null,D.toTex=null},P=async(E,D)=>{let j=D==="from"?E.fromBlob:E.toBlob;if(j)return j;let N=await Un(rr(c.cacheKey,E.sampleIndex,D));if(N?.blob)return N.blob;throw new Error("[HyperShader] Cached transition snapshot blob is unavailable")},X=Promise.resolve(!1);return X=(async()=>{for(let E of d){if(b())return T(),!1;if(!E.fromTex){let D=await P(E,"from");if(b())return T(),!1;let j=await $i(D),N=ne(g);h.push(N);try{if(we(g,N,j),b())return T(),!1;E.fromTex=N}finally{Aa(j)}}if(!E.toTex){let D=await P(E,"to");if(b())return T(),!1;let j=await $i(D),N=ne(g);h.push(N);try{if(we(g,N,j),b())return T(),!1;E.toTex=N}finally{Aa(j)}}c.persisted&&(E.fromBlob=null,E.toBlob=null)}return b()?(T(),!1):(c.textureReady=d.every(E=>!!(E.fromTex&&E.toTex)),c.textureReady&&(ur(c),la(c)),c.textureReady)})().catch(E=>(T(),b()||(Br(c),c.fallback=!0,c.ready=!0,c.dirty=!1,c.lastError=E instanceof Error?E.message:String(E),FA({ready:Ie(),loading:!1,error:c.lastError})),!1)).finally(()=>{c.texturePromise===X&&(c.texturePromise=null)}),c.texturePromise=X,X},fr=async c=>{for(let Q of bn(c))await Sn(Q)},Kn=async(c,Q,d,h)=>h?Uf({key:rr(c.cacheKey,Q,d),blob:h,width:I,height:U,updatedAt:c.index*1e6+Q*2+(d==="to"?1:0)}):!1,wa=async(c,Q,d)=>{lr(c);let h=!0;for(let b=0;b<Q;b+=1){let T=b/(Q-1);yA(()=>{nt(c.time+c.duration*T,!1)}),await ee();let P=document.getElementById(c.fromId),X=document.getElementById(c.toId);if(!P||!X)continue;let[E,D]=await Promise.all([RA(P),RA(X)]),[j,N]=await Promise.all([zi(E),zi(D)]);if(hA(E),hA(D),!j||!N)throw new Error("[HyperShader] Failed to encode transition snapshot");c.frames.push({sampleIndex:b,fromBlob:j,toBlob:N,fromTex:null,toTex:null}),(await Promise.all([Kn(c,b,"from",j),Kn(c,b,"to",N)])).every(Boolean)||(h=!1,c.lastError="[HyperShader] Failed to persist one or more transition snapshots"),d(b+1)}c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=h,c.textureReady=!1},le=null,Dn=()=>le||(le=(async()=>{let c=y.filter(E=>!cr(E)&&(E.dirty||!E.ready)),Q=c.map(E=>({cache:E,sampleCount:Ba(E)}));for(let E of Q)E.cache.cacheKey=ua(E.cache,E.sampleCount);let d=Q.reduce((E,D)=>E+D.sampleCount,0),h=Q[0],b=!1;if(FA({ready:!1,progress:0,total:d,currentTransition:h?1:void 0,transitionTotal:Q.length||void 0,transitionFrame:h?0:void 0,transitionFrames:h?.sampleCount,phase:h?"cached":void 0,loading:b}),c.length===0){if(k=!0,FA({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 E=kA,D=it(E,QA);await fr(D),IA&&(IA=!1,kA=[],re=!1,yA(()=>ar(...E)),QA=OA())}le=null;return}QA=OA();let T=W.paused(),P=t.map(E=>{let D=document.getElementById(E);return{scene:D,opacity:D?.style.opacity??"",visibility:D?.style.visibility??"",pointerEvents:D?.style.pointerEvents??""}});G=!0,F.style.display="none",or();let X=0;try{for(let D=0;D<Q.length;D+=1){let j=Q[D];if(!j)continue;let{cache:N,sampleCount:iA}=j,lA=D+1,XA=X;lr(N);try{FA({ready:!1,progress:XA,total:d,currentTransition:lA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:iA,phase:"cached",loading:b}),await ga(N,iA,be=>{X=XA+be,FA({ready:!1,progress:X,total:d,currentTransition:lA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:iA,phase:"cached",loading:b})})||(X=XA,b=!0,FA({ready:!1,progress:X,total:d,currentTransition:lA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:iA,phase:"capturing",loading:!0}),await wa(N,iA,be=>{X=XA+be,FA({ready:!1,progress:X,total:d,currentTransition:lA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:iA,phase:"capturing",loading:!0})}),!N.persisted&&N.lastError&&FA({ready:!1,loading:b,error:N.lastError}))}catch(bA){X=XA+iA,N.fallback=!0,N.ready=!0,N.dirty=!1,N.lastError=bA instanceof Error?bA.message:String(bA),console.warn("[HyperShader] Transition capture failed; using CSS fallback:",bA),FA({ready:!1,progress:X,total:d,currentTransition:lA,transitionTotal:Q.length,transitionFrame:iA,transitionFrames:iA,phase:"finalizing",loading:b,error:N.lastError})}X=XA+iA}hf(i,new Set(y.map(D=>D.cacheKey).filter(Boolean))),k=Ie();let E=Q[Q.length-1];FA({ready:k,progress:X,total:d,currentTransition:Q.length,transitionTotal:Q.length,transitionFrame:E?.sampleCount,transitionFrames:E?.sampleCount,phase:"finalizing",loading:!1})}catch(E){console.warn("[HyperShader] Pre-capture failed, keeping DOM fallback visible:",E),k=Ie(),FA({ready:k,progress:X,total:d,phase:"finalizing",loading:!1,error:E instanceof Error?E.message:String(E)})}finally{let E=QA,D=(IA||!T)&&!re,j=IA?kA:[],N=it(j,E),iA=null;D&&(await fr(N),iA=N),D=(IA||!T)&&!re,j=IA?kA:[],N=it(j,E),D&&N!==iA&&await fr(N),G=!1,f.active=!1,f.transitionIndex=-1,F.style.display="none",yA(()=>{oa(E,!1)}),QA=E;for(let lA of P)lA.scene&&(lA.scene.style.opacity=lA.opacity,lA.scene.style.visibility=lA.visibility,lA.scene.style.pointerEvents=lA.pointerEvents);te(),window.dispatchEvent(new CustomEvent("hyperShader:ready",{detail:{compositionId:i,progress:X,total:d}})),le=null,D?(IA=!1,kA=[],re=!1,yA(()=>ar(...j)),QA=OA()):(IA=!1,kA=[],re=!1,or())}})(),le),Qa=fa();window.addEventListener("beforeunload",()=>{for(let c of Qa)c.disconnect()},{once:!0});let Ca=Promise.resolve().then(()=>Dn()),gr=window;return gr.__hf=gr.__hf||{},gr.__hf.shaderTransitionsReady=Ca,window.__hfSuppressSceneMutations=c=>yA(c),Fn(i,W,A.timeline),W}function Fn(A,e,t){if(!t){let r=window;r.__timelines=r.__timelines||{},r.__timelines[A]=e}}function pf(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.ease??hn,C=o.time;o.shader===void 0?(s.fromTo(`#${l}`,{opacity:0},{opacity:1,duration:u,ease:f},C),s.fromTo(`#${B}`,{opacity:1},{opacity:0,duration:u,ease:f},C)):(s.set(`#${l}`,{opacity:1},C),s.set(`#${B}`,{opacity:0},C+u))}if(typeof window<"u"&&!!window.__HF_PAGE_SIDE_COMPOSITING__){let a=A.bgColor??"#000",o=A.accentColor?ra(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 Fn(r,s,A.timeline),s}0&&(module.exports={PAGE_COMPOSITOR_BUILD_CANARY,PAGE_COMPOSITOR_CANVAS_ID,SHADER_NAMES,init,installPageSideCompositor,isHtmlInCanvasCaptureSupported,isPageSideCompositingSupported});
13
+ ${t}`)}function ji(A){let e=document.getElementById(A);return e?ir(`${wf(document)}
14
+ ${Cf(document)}
15
+ ${df(e)}`):"missing"}function zi(A,e){for(let t of e)A.style.removeProperty(t);A.getAttribute("style")?.trim()===""&&A.removeAttribute("style")}function df(A){let e=A.cloneNode(!0);return zi(e,["opacity","visibility","pointer-events"]),e.querySelectorAll("[data-start]").forEach(t=>{zi(t,["visibility"])}),e.outerHTML}function rr(A,e,t){return`${A}:sample:${e}:${t}`}function hf(){return typeof indexedDB>"u"?Promise.resolve(null):new Promise(A=>{let e=indexedDB.open(nf,sf);e.onupgradeneeded=()=>{let t=e.result;t.objectStoreNames.contains(_A)||t.createObjectStore(_A,{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 pn(){return rt=rt||hf(),rt}async function hn(A){let e=await pn();return e?new Promise(t=>{try{let n=e.transaction(_A,"readonly").objectStore(_A).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 Uf(A){let e=await pn();return e?new Promise(t=>{try{let r=e.transaction(_A,"readwrite");r.oncomplete=()=>t(!0),r.onerror=()=>t(!1),r.objectStore(_A).put(A)}catch{sr(e),t(!1)}}):!1}function $i(A){return new Promise(e=>{try{A.toBlob(t=>e(t),"image/png")}catch{e(null)}})}async function Ff(A,e,t=af){let r=await pn();if(!r)return;let n=await new Promise(w=>{try{let F=r.transaction(_A,"readonly").objectStore(_A).getAll();F.onerror=()=>w([]),F.onsuccess=()=>{let p=[];for(let L of F.result)if(L&&typeof L=="object"&&"key"in L&&typeof L.key=="string"){let m="updatedAt"in L&&typeof L.updatedAt=="number"?L.updatedAt:0;p.push({key:L.key,updatedAt:m})}w(p)}}catch{sr(r),w([])}}),s=`${A}:`,i=w=>{for(let x of e)if(w.startsWith(`${x}:sample:`))return!0;return!1},o=n.filter(w=>w.key.startsWith(s)&&!i(w.key)).map(w=>w.key),a=new Set(o),B=n.filter(w=>!a.has(w.key)),l=B.filter(w=>i(w.key)).length,u=B.filter(w=>!i(w.key)).sort((w,x)=>x.updatedAt-w.updatedAt),f=Math.max(0,t-l),C=u.length>f?u.slice(f).map(w=>w.key):[],g=Array.from(new Set([...o,...C]));g.length!==0&&await new Promise(w=>{try{let x=r.transaction(_A,"readwrite");x.oncomplete=()=>w(),x.onerror=()=>w();let F=x.objectStore(_A);for(let p of g)F.delete(p)}catch{sr(r),w()}})}function Ao(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 eo(A){typeof ImageBitmap<"u"&&A instanceof ImageBitmap&&A.close()}function to(A,e,t){let r=ne(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 ro(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 pf(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=m=>{m.preventDefault(),m.stopPropagation()};for(let m of["selectstart","dragstart","pointerdown","mousedown","touchstart"])s.addEventListener(m,i,{capture:!0});let o=r.createElement("div");o.setAttribute("draggable","false"),o.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 a=r.createElement("div");a.setAttribute("data-hf-loader-mark-frame",""),a.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(";"),a.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=a.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 C=r.createElement("div");C.setAttribute("aria-hidden","true"),C.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 x=m=>{let I=r.createElement("div");I.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 h=r.createElement("span");h.textContent=m,h.style.cssText=["overflow:hidden","text-overflow:ellipsis","text-align:left","min-width:0"].join(";");let y=r.createElement("span");return y.style.cssText=["min-width:76px","text-align:right"].join(";"),I.appendChild(h),I.appendChild(y),w.appendChild(I),{row:I,label:h,value:y}},F=x("transition"),p=x("transition frame");C.appendChild(g),o.appendChild(a),o.appendChild(l),o.appendChild(f),o.appendChild(C),o.appendChild(w),s.appendChild(o),n.appendChild(s);let L=null;return{show:()=>{L&&(clearTimeout(L),L=null),s.style.display="grid",s.style.opacity="1",s.style.pointerEvents="auto"},update:m=>{let{progress:I,total:h}=m,y=h>0?ce(I/h,0,1):0,M=Math.min(tr.length-1,Math.floor(y*tr.length)),S=tr[M]??"Preparing scene transitions";u.textContent=S,g.style.transform=`scaleX(${y})`;let Y=m.currentTransition!==void 0&&m.transitionTotal!==void 0?`${m.currentTransition}/${m.transitionTotal}`:h>0?`${I}/${h}`:"",K=m.transitionFrame!==void 0&&m.transitionFrames!==void 0?`${m.transitionFrame}/${m.transitionFrames}`:"",R=m.phase==="cached"?"loading cached transition frames":m.phase==="finalizing"?"finalizing":"rendering transition frames";F.label.textContent=m.currentTransition!==void 0?"transition":"transition frames",F.value.textContent=Y,p.label.textContent=R,p.value.textContent=K,p.row.style.visibility=K?"visible":"hidden",s.setAttribute("aria-valuenow",String(Math.round(y*100)))},hide:()=>{L&&clearTimeout(L),s.style.display!=="none"&&(s.style.opacity="0",s.style.pointerEvents="none",L=setTimeout(()=>{s.style.display="none",s.style.opacity="1",s.style.pointerEvents="auto",L=null},240))}}}function io(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 d of t){let U=document.getElementById(d);U?U.classList.contains("scene")||Q.push(d):c.push(d)}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,d)=>({time:Q.time,duration:Q.duration??nr,shader:Q.shader,ease:Q.ease??Un,fromScene:t[d]??"",toScene:t[d+1]??""})))}let n=A.accentColor?no(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",o=Number(s?.getAttribute("data-width")),a=Number(s?.getAttribute("data-height")),B=Number.isFinite(o)&&o>0?o:fe,l=Number.isFinite(a)&&a>0?a:ge;if(typeof window<"u"&&!!window.__HF_VIRTUAL_TIME__)return mf(A,t,r,i,s);let f={active:!1,prog:null,progress:0,transitionIndex:-1},C=document.getElementById("gl-canvas");C||(C=document.createElement("canvas"),C.id="gl-canvas",C.style.cssText="position:absolute;top:0;left:0;z-index:100;pointer-events:none;display:none;",(s||document.body).appendChild(C)),C.width=B,C.height=l,C.style.width=`${B}px`,C.style.height=`${l}px`;let g=ot(C,B,l);if(!g){console.warn("[HyperShader] WebGL unavailable \u2014 shader transitions disabled.");let c=A.timeline||gsap.timeline({paused:!0});return Fn(i,c,A.timeline),c}let w=at(g),x=new Map;for(let c of r)if(c.shader!==void 0&&!x.has(c.shader))try{x.set(c.shader,Bt(g,lt(c.shader)))}catch(Q){console.error(`[HyperShader] Failed to compile "${c.shader}":`,Q)}let F=C,p=ce(cf(A.previewCaptureFps,30),1,60),L=ff(),m=gf(),I=Math.max(1,Math.round(B*L)),h=Math.max(1,Math.round(l*L)),y=[],M=On(g,rf,["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("")),S={a:g.getUniformLocation(M,"u_a"),b:g.getUniformLocation(M,"u_b"),mix:g.getUniformLocation(M,"u_mix"),pos:g.getAttribLocation(M,"a_pos")},Y=to(g,I,h),K=to(g,I,h),R=ro(g,Y),_=ro(g,K),O=null,q=()=>m!=="internal"?null:(O=O||pf(s,B,l),O),k=!1,P=!1,uA=0,$=0,eA=new WeakMap,UA=()=>{$=performance.now()+120},MA=c=>{eA.has(c)||eA.set(c,c.style.pointerEvents)},QA=(c,Q,d)=>{MA(c),UA(),c.style.opacity=d,c.style.visibility=Q?"visible":"hidden",c.style.pointerEvents=Q?eA.get(c)??"":"none"},yA=(c,Q,d,U)=>{t.forEach(b=>{let T=document.getElementById(b);T&&(b===c?QA(T,!0,d):b===Q?QA(T,!0,U):QA(T,!1,"0"))})},FA=c=>{c.width=0,c.height=0},RA=c=>Ji(c,e,B,l,{forceVisible:!0,scale:L}),ee=()=>new Promise(c=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>c())})}),mn=c=>!!(c?.fromTex&&c.toTex),oo=(c,Q)=>{if(c.frames.length===0)return null;let d=ce(Q,0,1)*(c.frames.length-1),U=Math.floor(d),b=Math.ceil(d),T=c.frames[U]??c.frames[c.frames.length-1],V=c.frames[b]??T;return!mn(T)||!mn(V)?null:{a:T,b:V,mix:d-U}},vn=(c,Q,d,U)=>{g.bindFramebuffer(g.FRAMEBUFFER,c),g.viewport(0,0,I,h),g.useProgram(M),g.activeTexture(g.TEXTURE0),g.bindTexture(g.TEXTURE_2D,Q),g.uniform1i(S.a,0),g.activeTexture(g.TEXTURE1),g.bindTexture(g.TEXTURE_2D,d),g.uniform1i(S.b,1),g.uniform1f(S.mix,U),g.bindBuffer(g.ARRAY_BUFFER,w),g.enableVertexAttribArray(S.pos),g.vertexAttribPointer(S.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)},En=c=>{Sn(c).then(Q=>{if(!Q)return;let d=W.time();d>=c.time&&d<c.time+c.duration&&te()})},ao=c=>{let Q=0;for(let d=0;d<y.length;d+=1){let U=y[d];U&&c>=U.time+U.duration&&(Q=d+1)}return ce(Q,0,t.length-1)},Hn=c=>{let Q=ao(c);t.forEach((d,U)=>{let b=document.getElementById(d);if(!b)return;let T=U===Q;QA(b,T,T?"1":"0")})},yn=(c,Q)=>{let d=document.getElementById(c.fromId),U=document.getElementById(c.toId);if(!d||!U)return;let b=Q*Q*(3-2*Q);F.style.display="none",yA(c.fromId,c.toId,String(1-b),String(b))},te=()=>{if(P)return;let c=W.time(),Q=y.find(V=>!V.fallback&&V.ready&&!V.dirty&&!V.textureReady&&c>=V.time-qi&&c<V.time+V.duration);Q&&En(Q);let d=y.findIndex(V=>c>=V.time&&c<V.time+V.duration);if(d<0){f.active=!1,f.transitionIndex=-1,F.style.display="none",Hn(c);return}let U=y[d];if(!U||U.dirty||!U.ready){F.style.display="none";return}if(U.fallback||U.prog===null){f.active=!0,f.transitionIndex=d,f.prog=null,f.progress=ce((c-U.time)/U.duration,0,1),yn(U,f.progress);return}if(!U.textureReady){En(U),F.style.display="none";return}let b=U.prog;f.active=!0,f.transitionIndex=d,f.prog=b,f.progress=ce((c-U.time)/U.duration,0,1),ur(U);let T=oo(U,f.progress);if(!T){F.style.display="none";return}yA(U.fromId,U.toId,"1","1"),vn(R,T.a.fromTex,T.b.fromTex,T.mix),vn(_,T.a.toTex,T.b.toTex,T.mix),F.style.display="block",ct(g,w,b,Y,K,f.progress,n,B,l)},W;if(A.timeline){W=A.timeline;let c=Number(s?.getAttribute("data-duration")||"40");W.to({t:0},{t:1,duration:c,ease:"none",onUpdate:te},0)}else W=gsap.timeline({paused:!0,onUpdate:te});let or=W.play.bind(W),ar=W.pause.bind(W),nt=W.time.bind(W),In=typeof W.seek=="function"?W.seek.bind(W):null,OA=()=>{let c=nt();return typeof c=="number"&&Number.isFinite(c)?c:0},CA=OA(),st=c=>{typeof c=="number"&&Number.isFinite(c)&&(CA=c)},it=(c,Q)=>{let d=c[0];return typeof d=="number"&&Number.isFinite(d)?d:Q},Bo=(c,Q)=>{let d=nt(c,Q);return typeof d=="number"?W:d},IA=c=>{uA+=1;try{return c()}finally{uA-=1,$=performance.now()+120}},bA=!1,kA=[],re=!1;W.play=((...c)=>{st(c[0]);let Q=it(c,CA);if(!Ie()||!lo(Q))return re=!1,bA=!0,kA=c,Dn(),W;let d=IA(()=>or(...c));return CA=OA(),d}),W.pause=((...c)=>{if(bA=!1,kA=[],st(c[0]),P)return re=!0,W;let Q=IA(()=>ar(...c));return CA=OA(),c.length>0&&te(),Q}),W.time=((...c)=>{if(c.length===0)return P||(CA=OA()),CA;if(st(c[0]),P)return W;let Q=IA(()=>nt(...c));return P||(CA=OA()),te(),Q}),In&&(W.seek=((...c)=>{if(st(c[0]),P)return W;let Q=IA(()=>In(...c));return P||(CA=OA()),te(),Q})),Wi(),C.style.display="none";for(let c=0;c<r.length;c++){let Q=r[c],d=t[c],U=t[c+1];if(!d||!U)continue;let b=Q.shader!==void 0,T=b?x.get(Q.shader)??null:null,V=!b||T===null;b&&T===null&&console.warn(`[HyperShader] Shader "${Q.shader}" failed to compile \u2014 falling back to CSS crossfade.`);let X=V?null:T,E=Q.duration??nr,D=Q.ease??Un,j=Q.time,G=y.length;y.push({index:G,time:j,duration:E,fromId:d,toId:U,prog:X,frames:[],cacheKey:"",dirty:!V,ready:V,fallback:V,persisted:V,textureReady:!1,texturePromise:null,textureGeneration:0,textureAccess:0}),W.call(()=>{IA(()=>{let fA=document.getElementById(d),XA=document.getElementById(U);if(!fA||!XA)return;f.prog=X,f.transitionIndex=G,f.progress=0,f.active=!0;let xA=y[G];if(xA?.fallback){yn(xA,0);return}F.style.display=!P&&xA?.ready&&!xA.dirty&&xA.textureReady?"block":"none",yA(d,U,"1","1")})},null,j);let oA={p:0};W.to(oA,{p:1,duration:E,ease:D,onUpdate:()=>{f.progress=oA.p}},j),W.call(()=>{IA(()=>{f.active=!1,f.transitionIndex=-1,F.style.display="none",Hn(j+E)})},null,j+E)}let co=c=>Math.max(2,Math.ceil(c.duration*p)+1),Ie=()=>y.every(c=>c.ready&&!c.dirty),bn=c=>{let Q=[],d=new Set,U=T=>{d.has(T.index)||T.fallback||T.dirty||!T.ready||(Q.push(T),d.add(T.index))};for(let T of y)c>=T.time&&c<T.time+T.duration&&U(T);let b=y.find(T=>T.time>=c);b&&U(b);for(let T of y)T.time>=c&&T.time-c<=qi&&U(T);return Q.slice(0,Zi)},lo=c=>bn(c).every(Q=>Q.textureReady),xn=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=>c.prog===null,lr=c=>{if(Br(c),c.texturePromise=null,c.frames=[],c.lastError=void 0,cr(c)){c.ready=!0,c.fallback=!0,c.persisted=!0,c.textureReady=!1;return}c.ready=!1,c.fallback=!1,c.persisted=!1,c.textureReady=!1},ur=c=>{xn+=1,c.textureAccess=xn},uo=c=>{let Q=y.filter(d=>d!==c&&d.textureReady).sort((d,U)=>d.textureAccess-U.textureAccess);for(;Q.length>=Zi;){let d=Q.shift();if(!d)break;Br(d)}},fo=(c,Q)=>{let d=[of,i,c.index,c.fromId,ji(c.fromId),c.toId,ji(c.toId),r[c.index]?.shader||"unknown",c.time,c.duration,Q,p,L,I,h,B,l].join("|");return`${i}:${c.index}:${ir(d)}`},pA=c=>{let Q=window;Q.__hf=Q.__hf||{},Q.__hf.shaderTransitions=Q.__hf.shaderTransitions||{};let U={...Q.__hf.shaderTransitions[i]||{ready:!1,progress:0,total:0,dirtyTransitions:y.length,captureScale:L,textureWidth:I,textureHeight:h,fps:p,loading:!0},...c};if(U.dirtyTransitions=y.filter(b=>b.dirty||!b.ready).length,Q.__hf.shaderTransitions[i]=U,window.parent?.postMessage({source:"hf-preview",type:"shader-transition-state",compositionId:i,state:U},"*"),U.loading){let b=q();b?.show(),b?.update({progress:U.progress,total:U.total,currentTransition:U.currentTransition,transitionTotal:U.transitionTotal,transitionFrame:U.transitionFrame,transitionFrames:U.transitionFrames,phase:U.phase})}U.ready?O?.hide():U.loading||O?.hide()},Tn=()=>P||uA>0||performance.now()<$||!W.paused(),Ln=c=>{if(c.size===0)return;let Q=!1;for(let d of y)!c.has(d.fromId)&&!c.has(d.toId)||cr(d)||(lr(d),d.dirty=!0,d.cacheKey="",Q=!0);Q&&(k=Ie(),pA({ready:k,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)}})))},go=()=>{let c=t.map(U=>document.getElementById(U)).filter(U=>U instanceof HTMLElement),Q=[];for(let U of c){let b=new MutationObserver(T=>{if(Tn())return;let V=new Set;for(let X of T){let E=X.target instanceof Element?X.target:X.target.parentElement;if(E)for(let D of c)(D===E||D.contains(E))&&V.add(D.id)}Ln(V)});b.observe(U,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(b)}let d=new MutationObserver(()=>{Tn()||Ln(new Set(t))});return d.observe(document.head,{attributes:!0,characterData:!0,childList:!0,subtree:!0}),Q.push(d),Q},wo=async(c,Q,d)=>{let U=[];for(let b=0;b<Q;b+=1){let[T,V]=await Promise.all([hn(rr(c.cacheKey,b,"from")),hn(rr(c.cacheKey,b,"to"))]);if(!T||!V){for(let X of U)g.deleteTexture(X.fromTex),g.deleteTexture(X.toTex);return!1}U.push({sampleIndex:b,fromBlob:T.blob,toBlob:V.blob,fromTex:null,toTex:null}),d(b+1)}return c.frames=U,c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=!0,c.textureReady=!1,!0},Sn=c=>{if(c.fallback||c.dirty||!c.ready)return Promise.resolve(!1);if(c.textureReady)return ur(c),Promise.resolve(!0);if(c.texturePromise)return c.texturePromise;let Q=c.textureGeneration,d=c.frames,U=[],b=()=>c.textureGeneration!==Q||c.dirty||c.frames!==d,T=()=>{let E=new Set;for(let D of U)E.has(D)||(g.deleteTexture(D),E.add(D));for(let D of d)D.fromTex&&!E.has(D.fromTex)&&(g.deleteTexture(D.fromTex),E.add(D.fromTex)),D.toTex&&!E.has(D.toTex)&&(g.deleteTexture(D.toTex),E.add(D.toTex)),D.fromTex=null,D.toTex=null},V=async(E,D)=>{let j=D==="from"?E.fromBlob:E.toBlob;if(j)return j;let G=await hn(rr(c.cacheKey,E.sampleIndex,D));if(G?.blob)return G.blob;throw new Error("[HyperShader] Cached transition snapshot blob is unavailable")},X=Promise.resolve(!1);return X=(async()=>{for(let E of d){if(b())return T(),!1;if(!E.fromTex){let D=await V(E,"from");if(b())return T(),!1;let j=await Ao(D),G=ne(g);U.push(G);try{if(we(g,G,j),b())return T(),!1;E.fromTex=G}finally{eo(j)}}if(!E.toTex){let D=await V(E,"to");if(b())return T(),!1;let j=await Ao(D),G=ne(g);U.push(G);try{if(we(g,G,j),b())return T(),!1;E.toTex=G}finally{eo(j)}}c.persisted&&(E.fromBlob=null,E.toBlob=null)}return b()?(T(),!1):(c.textureReady=d.every(E=>!!(E.fromTex&&E.toTex)),c.textureReady&&(ur(c),uo(c)),c.textureReady)})().catch(E=>(T(),b()||(Br(c),c.fallback=!0,c.ready=!0,c.dirty=!1,c.lastError=E instanceof Error?E.message:String(E),pA({ready:Ie(),loading:!1,error:c.lastError})),!1)).finally(()=>{c.texturePromise===X&&(c.texturePromise=null)}),c.texturePromise=X,X},fr=async c=>{for(let Q of bn(c))await Sn(Q)},Kn=async(c,Q,d,U)=>U?Uf({key:rr(c.cacheKey,Q,d),blob:U,width:I,height:h,updatedAt:c.index*1e6+Q*2+(d==="to"?1:0)}):!1,Qo=async(c,Q,d)=>{lr(c);let U=!0;for(let b=0;b<Q;b+=1){let T=b/(Q-1);IA(()=>{nt(c.time+c.duration*T,!1)}),await ee();let V=document.getElementById(c.fromId),X=document.getElementById(c.toId);if(!V||!X)continue;let[E,D]=await Promise.all([RA(V),RA(X)]),[j,G]=await Promise.all([$i(E),$i(D)]);if(FA(E),FA(D),!j||!G)throw new Error("[HyperShader] Failed to encode transition snapshot");c.frames.push({sampleIndex:b,fromBlob:j,toBlob:G,fromTex:null,toTex:null}),(await Promise.all([Kn(c,b,"from",j),Kn(c,b,"to",G)])).every(Boolean)||(U=!1,c.lastError="[HyperShader] Failed to persist one or more transition snapshots"),d(b+1)}c.ready=!0,c.dirty=!1,c.fallback=!1,c.persisted=U,c.textureReady=!1},le=null,Dn=()=>le||(le=(async()=>{let c=y.filter(E=>!cr(E)&&(E.dirty||!E.ready)),Q=c.map(E=>({cache:E,sampleCount:co(E)}));for(let E of Q)E.cache.cacheKey=fo(E.cache,E.sampleCount);let d=Q.reduce((E,D)=>E+D.sampleCount,0),U=Q[0],b=!1;if(pA({ready:!1,progress:0,total:d,currentTransition:U?1:void 0,transitionTotal:Q.length||void 0,transitionFrame:U?0:void 0,transitionFrames:U?.sampleCount,phase:U?"cached":void 0,loading:b}),c.length===0){if(k=!0,pA({ready:!0,progress:0,total:0,currentTransition:void 0,transitionTotal:void 0,transitionFrame:void 0,transitionFrames:void 0,phase:void 0,loading:!1}),bA){let E=kA,D=it(E,CA);await fr(D),bA&&(bA=!1,kA=[],re=!1,IA(()=>or(...E)),CA=OA())}le=null;return}CA=OA();let T=W.paused(),V=t.map(E=>{let D=document.getElementById(E);return{scene:D,opacity:D?.style.opacity??"",visibility:D?.style.visibility??"",pointerEvents:D?.style.pointerEvents??""}});P=!0,F.style.display="none",ar();let X=0;try{for(let D=0;D<Q.length;D+=1){let j=Q[D];if(!j)continue;let{cache:G,sampleCount:oA}=j,fA=D+1,XA=X;lr(G);try{pA({ready:!1,progress:XA,total:d,currentTransition:fA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:oA,phase:"cached",loading:b}),await wo(G,oA,be=>{X=XA+be,pA({ready:!1,progress:X,total:d,currentTransition:fA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:oA,phase:"cached",loading:b})})||(X=XA,b=!0,pA({ready:!1,progress:X,total:d,currentTransition:fA,transitionTotal:Q.length,transitionFrame:0,transitionFrames:oA,phase:"capturing",loading:!0}),await Qo(G,oA,be=>{X=XA+be,pA({ready:!1,progress:X,total:d,currentTransition:fA,transitionTotal:Q.length,transitionFrame:be,transitionFrames:oA,phase:"capturing",loading:!0})}),!G.persisted&&G.lastError&&pA({ready:!1,loading:b,error:G.lastError}))}catch(xA){X=XA+oA,G.fallback=!0,G.ready=!0,G.dirty=!1,G.lastError=xA instanceof Error?xA.message:String(xA),console.warn("[HyperShader] Transition capture failed; using CSS fallback:",xA),pA({ready:!1,progress:X,total:d,currentTransition:fA,transitionTotal:Q.length,transitionFrame:oA,transitionFrames:oA,phase:"finalizing",loading:b,error:G.lastError})}X=XA+oA}Ff(i,new Set(y.map(D=>D.cacheKey).filter(Boolean))),k=Ie();let E=Q[Q.length-1];pA({ready:k,progress:X,total:d,currentTransition:Q.length,transitionTotal:Q.length,transitionFrame:E?.sampleCount,transitionFrames:E?.sampleCount,phase:"finalizing",loading:!1})}catch(E){console.warn("[HyperShader] Pre-capture failed, keeping DOM fallback visible:",E),k=Ie(),pA({ready:k,progress:X,total:d,phase:"finalizing",loading:!1,error:E instanceof Error?E.message:String(E)})}finally{let E=CA,D=(bA||!T)&&!re,j=bA?kA:[],G=it(j,E),oA=null;D&&(await fr(G),oA=G),D=(bA||!T)&&!re,j=bA?kA:[],G=it(j,E),D&&G!==oA&&await fr(G),P=!1,f.active=!1,f.transitionIndex=-1,F.style.display="none",IA(()=>{Bo(E,!1)}),CA=E;for(let fA of V)fA.scene&&(fA.scene.style.opacity=fA.opacity,fA.scene.style.visibility=fA.visibility,fA.scene.style.pointerEvents=fA.pointerEvents);te(),window.dispatchEvent(new CustomEvent("hyperShader:ready",{detail:{compositionId:i,progress:X,total:d}})),le=null,D?(bA=!1,kA=[],re=!1,IA(()=>or(...j)),CA=OA()):(bA=!1,kA=[],re=!1,ar())}})(),le),Co=go();window.addEventListener("beforeunload",()=>{for(let c of Co)c.disconnect()},{once:!0});let ho=Promise.resolve().then(()=>Dn()),gr=window;return gr.__hf=gr.__hf||{},gr.__hf.shaderTransitionsReady=ho,window.__hfSuppressSceneMutations=c=>IA(c),Fn(i,W,A.timeline),W}function Fn(A,e,t){if(!t){let r=window;r.__timelines=r.__timelines||{},r.__timelines[A]=e}}function mf(A,e,t,r,n){let s=A.timeline||gsap.timeline({paused:!0});if(A.timeline){let o=Number(n?.getAttribute("data-duration")||"40");s.to({t:0},{t:1,duration:o,ease:"none"},0)}for(let o=1;o<e.length;o++){let a=e[o];a&&s.set(`#${a}`,{opacity:0},0)}for(let o=0;o<t.length;o++){let a=t[o],B=e[o],l=e[o+1];if(!B||!l)continue;let u=a.duration??nr,f=a.ease??Un,C=a.time;a.shader===void 0?(s.fromTo(`#${l}`,{opacity:0},{opacity:1,duration:u,ease:f},C),s.fromTo(`#${B}`,{opacity:1},{opacity:0,duration:u,ease:f},C)):(s.set(`#${l}`,{opacity:1},C),s.set(`#${B}`,{opacity:0},C+u))}if(typeof window<"u"&&!!window.__HF_PAGE_SIDE_COMPOSITING__){let o=A.bgColor??"#000",a=A.accentColor?no(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:o,accentColors:a,width:u,height:f,defaultDuration:nr})}return Fn(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: