@multisynq/client
Version:
Real-time multiplayer framework for web applications
5 lines (4 loc) • 293 kB
JavaScript
// (C) 2025 Croquet Labs
// Multisynq Client v1.1.0
// Built on 2025-07-24T16:47:32.495Z
var Fp=Object.create;var At=Object.defineProperty;var Pp=Object.getOwnPropertyDescriptor;var Lp=Object.getOwnPropertyNames;var Bp=Object.getPrototypeOf,Hp=Object.prototype.hasOwnProperty;var p=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),Up=(r,e)=>{for(var t in e)At(r,t,{get:e[t],enumerable:!0})},_s=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Lp(e))!Hp.call(r,s)&&s!==t&&At(r,s,{get:()=>e[s],enumerable:!(i=Pp(e,s))||i.enumerable});return r};var P=(r,e,t)=>(t=r!=null?Fp(Bp(r)):{},_s(e||!r||!r.__esModule?At(t,"default",{value:r,enumerable:!0}):t,r)),zp=r=>_s(At({},"__esModule",{value:!0}),r);var se=p((It,Ss)=>{(function(r,e){typeof It=="object"?Ss.exports=It=e():typeof define=="function"&&define.amd?define([],e):r.CryptoJS=e()})(It,function(){var r=r||function(e,t){var i;if(typeof window<"u"&&window.crypto&&(i=window.crypto),typeof self<"u"&&self.crypto&&(i=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(i=globalThis.crypto),!i&&typeof window<"u"&&window.msCrypto&&(i=window.msCrypto),!i&&typeof global<"u"&&global.crypto&&(i=global.crypto),!i&&typeof require=="function")try{i=require("crypto")}catch{}var s=function(){if(i){if(typeof i.getRandomValues=="function")try{return i.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof i.randomBytes=="function")try{return i.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},n=Object.create||function(){function v(){}return function(m){var A;return v.prototype=m,A=new v,v.prototype=null,A}}(),o={},a=o.lib={},l=a.Base=function(){return{extend:function(v){var m=n(this);return v&&m.mixIn(v),(!m.hasOwnProperty("init")||this.init===m.init)&&(m.init=function(){m.$super.init.apply(this,arguments)}),m.init.prototype=m,m.$super=this,m},create:function(){var v=this.extend();return v.init.apply(v,arguments),v},init:function(){},mixIn:function(v){for(var m in v)v.hasOwnProperty(m)&&(this[m]=v[m]);v.hasOwnProperty("toString")&&(this.toString=v.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),c=a.WordArray=l.extend({init:function(v,m){v=this.words=v||[],m!=t?this.sigBytes=m:this.sigBytes=v.length*4},toString:function(v){return(v||u).stringify(this)},concat:function(v){var m=this.words,A=v.words,w=this.sigBytes,R=v.sigBytes;if(this.clamp(),w%4)for(var M=0;M<R;M++){var F=A[M>>>2]>>>24-M%4*8&255;m[w+M>>>2]|=F<<24-(w+M)%4*8}else for(var N=0;N<R;N+=4)m[w+N>>>2]=A[N>>>2];return this.sigBytes+=R,this},clamp:function(){var v=this.words,m=this.sigBytes;v[m>>>2]&=4294967295<<32-m%4*8,v.length=e.ceil(m/4)},clone:function(){var v=l.clone.call(this);return v.words=this.words.slice(0),v},random:function(v){for(var m=[],A=0;A<v;A+=4)m.push(s());return new c.init(m,v)}}),h=o.enc={},u=h.Hex={stringify:function(v){for(var m=v.words,A=v.sigBytes,w=[],R=0;R<A;R++){var M=m[R>>>2]>>>24-R%4*8&255;w.push((M>>>4).toString(16)),w.push((M&15).toString(16))}return w.join("")},parse:function(v){for(var m=v.length,A=[],w=0;w<m;w+=2)A[w>>>3]|=parseInt(v.substr(w,2),16)<<24-w%8*4;return new c.init(A,m/2)}},d=h.Latin1={stringify:function(v){for(var m=v.words,A=v.sigBytes,w=[],R=0;R<A;R++){var M=m[R>>>2]>>>24-R%4*8&255;w.push(String.fromCharCode(M))}return w.join("")},parse:function(v){for(var m=v.length,A=[],w=0;w<m;w++)A[w>>>2]|=(v.charCodeAt(w)&255)<<24-w%4*8;return new c.init(A,m)}},f=h.Utf8={stringify:function(v){try{return decodeURIComponent(escape(d.stringify(v)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(v){return d.parse(unescape(encodeURIComponent(v)))}},g=a.BufferedBlockAlgorithm=l.extend({reset:function(){this._data=new c.init,this._nDataBytes=0},_append:function(v){typeof v=="string"&&(v=f.parse(v)),this._data.concat(v),this._nDataBytes+=v.sigBytes},_process:function(v){var m,A=this._data,w=A.words,R=A.sigBytes,M=this.blockSize,F=M*4,N=R/F;v?N=e.ceil(N):N=e.max((N|0)-this._minBufferSize,0);var q=N*M,H=e.min(q*4,R);if(q){for(var _=0;_<q;_+=M)this._doProcessBlock(w,_);m=w.splice(0,q),A.sigBytes-=H}return new c.init(m,H)},clone:function(){var v=l.clone.call(this);return v._data=this._data.clone(),v},_minBufferSize:0}),y=a.Hasher=g.extend({cfg:l.extend(),init:function(v){this.cfg=this.cfg.extend(v),this.reset()},reset:function(){g.reset.call(this),this._doReset()},update:function(v){return this._append(v),this._process(),this},finalize:function(v){v&&this._append(v);var m=this._doFinalize();return m},blockSize:512/32,_createHelper:function(v){return function(m,A){return new v.init(A).finalize(m)}},_createHmacHelper:function(v){return function(m,A){return new S.HMAC.init(v,A).finalize(m)}}}),S=o.algo={};return o}(Math);return r})});var Tt=p(($t,Es)=>{(function(r,e){typeof $t=="object"?Es.exports=$t=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})($t,function(r){return function(){if(typeof ArrayBuffer=="function"){var e=r,t=e.lib,i=t.WordArray,s=i.init,n=i.init=function(o){if(o instanceof ArrayBuffer&&(o=new Uint8Array(o)),(o instanceof Int8Array||typeof Uint8ClampedArray<"u"&&o instanceof Uint8ClampedArray||o instanceof Int16Array||o instanceof Uint16Array||o instanceof Int32Array||o instanceof Uint32Array||o instanceof Float32Array||o instanceof Float64Array)&&(o=new Uint8Array(o.buffer,o.byteOffset,o.byteLength)),o instanceof Uint8Array){for(var a=o.byteLength,l=[],c=0;c<a;c++)l[c>>>2]|=o[c]<<24-c%4*8;s.call(this,l,a)}else s.apply(this,arguments)};n.prototype=i}}(),r.lib.WordArray})});var it=p((Ct,As)=>{(function(r,e){typeof Ct=="object"?As.exports=Ct=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Ct,function(r){return function(e){var t=r,i=t.lib,s=i.WordArray,n=i.Hasher,o=t.algo,a=[],l=[];(function(){function u(y){for(var S=e.sqrt(y),v=2;v<=S;v++)if(!(y%v))return!1;return!0}function d(y){return(y-(y|0))*4294967296|0}for(var f=2,g=0;g<64;)u(f)&&(g<8&&(a[g]=d(e.pow(f,1/2))),l[g]=d(e.pow(f,1/3)),g++),f++})();var c=[],h=o.SHA256=n.extend({_doReset:function(){this._hash=new s.init(a.slice(0))},_doProcessBlock:function(u,d){for(var f=this._hash.words,g=f[0],y=f[1],S=f[2],v=f[3],m=f[4],A=f[5],w=f[6],R=f[7],M=0;M<64;M++){if(M<16)c[M]=u[d+M]|0;else{var F=c[M-15],N=(F<<25|F>>>7)^(F<<14|F>>>18)^F>>>3,q=c[M-2],H=(q<<15|q>>>17)^(q<<13|q>>>19)^q>>>10;c[M]=N+c[M-7]+H+c[M-16]}var _=m&A^~m&w,$=g&y^g&S^y&S,D=(g<<30|g>>>2)^(g<<19|g>>>13)^(g<<10|g>>>22),I=(m<<26|m>>>6)^(m<<21|m>>>11)^(m<<7|m>>>25),B=R+I+_+l[M]+c[M],z=D+$;R=w,w=A,A=m,m=v+B|0,v=S,S=y,y=g,g=B+z|0}f[0]=f[0]+g|0,f[1]=f[1]+y|0,f[2]=f[2]+S|0,f[3]=f[3]+v|0,f[4]=f[4]+m|0,f[5]=f[5]+A|0,f[6]=f[6]+w|0,f[7]=f[7]+R|0},_doFinalize:function(){var u=this._data,d=u.words,f=this._nDataBytes*8,g=u.sigBytes*8;return d[g>>>5]|=128<<24-g%32,d[(g+64>>>9<<4)+14]=e.floor(f/4294967296),d[(g+64>>>9<<4)+15]=f,u.sigBytes=d.length*4,this._process(),this._hash},clone:function(){var u=n.clone.call(this);return u._hash=this._hash.clone(),u}});t.SHA256=n._createHelper(h),t.HmacSHA256=n._createHmacHelper(h)}(Math),r.SHA256})});var Us=p((QS,Hs)=>{"use strict";function s0(r){return r!==r}Hs.exports=s0});var J=p((e6,zs)=>{"use strict";var n0=Us();zs.exports=n0});var js=p((t6,Ws)=>{"use strict";var o0=Math.sqrt;Ws.exports=o0});var st=p((r6,Vs)=>{"use strict";var a0=js();Vs.exports=a0});var Nt=p((i6,Gs)=>{"use strict";var c0=.7853981633974483;Gs.exports=c0});var Zs=p((s6,Ks)=>{"use strict";function l0(r){var e,t,i;return r===0?.16666666666666713:(r<0?e=-r:e=r,e<=1?(t=-8.198089802484825+r*(19.562619833175948+r*(-16.262479672107002+r*(5.444622390564711+r*(-.6019598008014124+r*.004253011369004428)))),i=-49.18853881490881+r*(139.51056146574857+r*(-147.1791292232726+r*(70.49610280856842+r*(-14.740913729888538+r*1))))):(r=1/r,t=.004253011369004428+r*(-.6019598008014124+r*(5.444622390564711+r*(-16.262479672107002+r*(19.562619833175948+r*-8.198089802484825)))),i=1+r*(-14.740913729888538+r*(70.49610280856842+r*(-147.1791292232726+r*(139.51056146574857+r*-49.18853881490881))))),t/i)}Ks.exports=l0});var Ys=p((n6,Xs)=>{"use strict";function h0(r){var e,t,i;return r===0?.08333333333333809:(r<0?e=-r:e=r,e<=1?(t=28.536655482610616+r*(-25.56901049652825+r*(6.968710824104713+r*(-.5634242780008963+r*.002967721961301243))),i=342.43986579130785+r*(-383.8770957603691+r*(147.0656354026815+r*(-21.947795316429207+r*1)))):(r=1/r,t=.002967721961301243+r*(-.5634242780008963+r*(6.968710824104713+r*(-25.56901049652825+r*28.536655482610616))),i=1+r*(-21.947795316429207+r*(147.0656354026815+r*(-383.8770957603691+r*342.43986579130785)))),t/i)}Xs.exports=h0});var en=p((o6,Qs)=>{"use strict";var u0=J(),f0=st(),Js=Nt(),d0=Zs(),p0=Ys(),v0=6123233995736766e-32;function g0(r){var e,t,i,s,n;if(u0(r))return NaN;if(r>0?i=r:(e=!0,i=-r),i>1)return NaN;if(i>.625)t=1-i,s=t*p0(t),t=f0(t+t),n=Js-t,t=t*s-v0,n-=t,n+=Js;else{if(i<1e-8)return r;t=i*i,n=t*d0(t),n=i*n+i}return e?-n:n}Qs.exports=g0});var qr=p((a6,tn)=>{"use strict";var m0=en();tn.exports=m0});var on=p((c6,nn)=>{"use strict";var y0=J(),rn=qr(),_0=st(),sn=Nt(),w0=6123233995736766e-32;function b0(r){var e;return y0(r)?NaN:r<-1||r>1?NaN:r>.5?2*rn(_0(.5-.5*r)):(e=sn-rn(r),e+=w0,e+=sn,e)}nn.exports=b0});var cn=p((l6,an)=>{"use strict";var S0=on();an.exports=S0});var hn=p((h6,ln)=>{"use strict";function E0(){return typeof Symbol=="function"&&typeof Symbol("foo")=="symbol"}ln.exports=E0});var fn=p((u6,un)=>{"use strict";var A0=hn();un.exports=A0});var pn=p((f6,dn)=>{"use strict";var I0=fn(),$0=I0();function T0(){return $0&&typeof Symbol.toStringTag=="symbol"}dn.exports=T0});var gn=p((d6,vn)=>{"use strict";var C0=pn();vn.exports=C0});var Rr=p((p6,mn)=>{"use strict";var O0=Object.prototype.toString;mn.exports=O0});var _n=p((v6,yn)=>{"use strict";var k0=Rr();function N0(r){return k0.call(r)}yn.exports=N0});var bn=p((g6,wn)=>{"use strict";var x0=Object.prototype.hasOwnProperty;function M0(r,e){return r==null?!1:x0.call(r,e)}wn.exports=M0});var En=p((m6,Sn)=>{"use strict";var D0=bn();Sn.exports=D0});var In=p((y6,An)=>{"use strict";var q0=typeof Symbol=="function"?Symbol:void 0;An.exports=q0});var Tn=p((_6,$n)=>{"use strict";var R0=In();$n.exports=R0});var kn=p((w6,On)=>{"use strict";var Cn=Tn(),F0=typeof Cn=="function"?Cn.toStringTag:"";On.exports=F0});var xn=p((b6,Nn)=>{"use strict";var P0=En(),nt=kn(),Fr=Rr();function L0(r){var e,t,i;if(r==null)return Fr.call(r);t=r[nt],e=P0(r,nt);try{r[nt]=void 0}catch{return Fr.call(r)}return i=Fr.call(r),e?r[nt]=t:delete r[nt],i}Nn.exports=L0});var ot=p((S6,Mn)=>{"use strict";var B0=gn(),H0=_n(),U0=xn(),Pr;B0()?Pr=U0:Pr=H0;Mn.exports=Pr});var qn=p((E6,Dn)=>{"use strict";var z0=ot(),W0=typeof Uint32Array=="function";function j0(r){return W0&&r instanceof Uint32Array||z0(r)==="[object Uint32Array]"}Dn.exports=j0});var Fn=p((A6,Rn)=>{"use strict";var V0=qn();Rn.exports=V0});var Ln=p((I6,Pn)=>{"use strict";var G0=4294967295;Pn.exports=G0});var Hn=p(($6,Bn)=>{"use strict";var K0=typeof Uint32Array=="function"?Uint32Array:null;Bn.exports=K0});var Wn=p((T6,zn)=>{"use strict";var Z0=Fn(),Lr=Ln(),Un=Hn();function X0(){var r,e;if(typeof Un!="function")return!1;try{e=[1,3.14,-3.14,Lr+1,Lr+2],e=new Un(e),r=Z0(e)&&e[0]===1&&e[1]===3&&e[2]===Lr-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}zn.exports=X0});var Vn=p((C6,jn)=>{"use strict";var Y0=Wn();jn.exports=Y0});var Kn=p((O6,Gn)=>{"use strict";var J0=typeof Uint32Array=="function"?Uint32Array:void 0;Gn.exports=J0});var Xn=p((k6,Zn)=>{"use strict";function Q0(){throw new Error("not implemented")}Zn.exports=Q0});var De=p((N6,Yn)=>{"use strict";var ev=Vn(),tv=Kn(),rv=Xn(),Br;ev()?Br=tv:Br=rv;Yn.exports=Br});var Qn=p((x6,Jn)=>{"use strict";var iv=ot(),sv=typeof Float64Array=="function";function nv(r){return sv&&r instanceof Float64Array||iv(r)==="[object Float64Array]"}Jn.exports=nv});var to=p((M6,eo)=>{"use strict";var ov=Qn();eo.exports=ov});var io=p((D6,ro)=>{"use strict";var av=typeof Float64Array=="function"?Float64Array:null;ro.exports=av});var oo=p((q6,no)=>{"use strict";var cv=to(),so=io();function lv(){var r,e;if(typeof so!="function")return!1;try{e=new so([1,3.14,-3.14,NaN]),r=cv(e)&&e[0]===1&&e[1]===3.14&&e[2]===-3.14&&e[3]!==e[3]}catch{r=!1}return r}no.exports=lv});var co=p((R6,ao)=>{"use strict";var hv=oo();ao.exports=hv});var ho=p((F6,lo)=>{"use strict";var uv=typeof Float64Array=="function"?Float64Array:void 0;lo.exports=uv});var fo=p((P6,uo)=>{"use strict";function fv(){throw new Error("not implemented")}uo.exports=fv});var qe=p((L6,po)=>{"use strict";var dv=co(),pv=ho(),vv=fo(),Hr;dv()?Hr=pv:Hr=vv;po.exports=Hr});var go=p((B6,vo)=>{"use strict";var gv=ot(),mv=typeof Uint8Array=="function";function yv(r){return mv&&r instanceof Uint8Array||gv(r)==="[object Uint8Array]"}vo.exports=yv});var yo=p((H6,mo)=>{"use strict";var _v=go();mo.exports=_v});var wo=p((U6,_o)=>{"use strict";var wv=255;_o.exports=wv});var So=p((z6,bo)=>{"use strict";var bv=typeof Uint8Array=="function"?Uint8Array:null;bo.exports=bv});var Io=p((W6,Ao)=>{"use strict";var Sv=yo(),Ur=wo(),Eo=So();function Ev(){var r,e;if(typeof Eo!="function")return!1;try{e=[1,3.14,-3.14,Ur+1,Ur+2],e=new Eo(e),r=Sv(e)&&e[0]===1&&e[1]===3&&e[2]===Ur-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}Ao.exports=Ev});var To=p((j6,$o)=>{"use strict";var Av=Io();$o.exports=Av});var Oo=p((V6,Co)=>{"use strict";var Iv=typeof Uint8Array=="function"?Uint8Array:void 0;Co.exports=Iv});var No=p((G6,ko)=>{"use strict";function $v(){throw new Error("not implemented")}ko.exports=$v});var Mo=p((K6,xo)=>{"use strict";var Tv=To(),Cv=Oo(),Ov=No(),zr;Tv()?zr=Cv:zr=Ov;xo.exports=zr});var qo=p((Z6,Do)=>{"use strict";var kv=ot(),Nv=typeof Uint16Array=="function";function xv(r){return Nv&&r instanceof Uint16Array||kv(r)==="[object Uint16Array]"}Do.exports=xv});var Fo=p((X6,Ro)=>{"use strict";var Mv=qo();Ro.exports=Mv});var Lo=p((Y6,Po)=>{"use strict";var Dv=65535;Po.exports=Dv});var Ho=p((J6,Bo)=>{"use strict";var qv=typeof Uint16Array=="function"?Uint16Array:null;Bo.exports=qv});var Wo=p((Q6,zo)=>{"use strict";var Rv=Fo(),Wr=Lo(),Uo=Ho();function Fv(){var r,e;if(typeof Uo!="function")return!1;try{e=[1,3.14,-3.14,Wr+1,Wr+2],e=new Uo(e),r=Rv(e)&&e[0]===1&&e[1]===3&&e[2]===Wr-2&&e[3]===0&&e[4]===1}catch{r=!1}return r}zo.exports=Fv});var Vo=p((e4,jo)=>{"use strict";var Pv=Wo();jo.exports=Pv});var Ko=p((t4,Go)=>{"use strict";var Lv=typeof Uint16Array=="function"?Uint16Array:void 0;Go.exports=Lv});var Xo=p((r4,Zo)=>{"use strict";function Bv(){throw new Error("not implemented")}Zo.exports=Bv});var Jo=p((i4,Yo)=>{"use strict";var Hv=Vo(),Uv=Ko(),zv=Xo(),jr;Hv()?jr=Uv:jr=zv;Yo.exports=jr});var ea=p((s4,Qo)=>{"use strict";var Wv=Mo(),jv=Jo(),Vv={uint16:jv,uint8:Wv};Qo.exports=Vv});var sa=p((n4,ia)=>{"use strict";var ta=ea(),ra;function Gv(){var r,e;return r=new ta.uint16(1),r[0]=4660,e=new ta.uint8(r.buffer),e[0]===52}ra=Gv();ia.exports=ra});var Re=p((o4,na)=>{"use strict";var Kv=sa();na.exports=Kv});var aa=p((a4,oa)=>{"use strict";var Zv=Re(),Vr;Zv===!0?Vr=1:Vr=0;oa.exports=Vr});var ha=p((c4,la)=>{"use strict";var Xv=De(),Yv=qe(),Jv=aa(),ca=new Yv(1),Qv=new Xv(ca.buffer);function eg(r){return ca[0]=r,Qv[Jv]}la.exports=eg});var ee=p((l4,ua)=>{"use strict";var tg=ha();ua.exports=tg});var da=p((h4,fa)=>{"use strict";var rg=Re(),Gr;rg===!0?Gr=1:Gr=0;fa.exports=Gr});var va=p((u4,pa)=>{"use strict";var ig=De(),sg=qe(),ng=da(),Kr=new sg(1),og=new ig(Kr.buffer);function ag(r,e){return Kr[0]=r,og[ng]=e>>>0,Kr[0]}pa.exports=ag});var Fe=p((f4,ga)=>{"use strict";var cg=va();ga.exports=cg});var de=p((d4,ma)=>{"use strict";var lg=Number.POSITIVE_INFINITY;ma.exports=lg});var _a=p((p4,ya)=>{"use strict";ya.exports=Number});var ba=p((v4,wa)=>{"use strict";var hg=_a();wa.exports=hg});var ce=p((g4,Sa)=>{"use strict";var ug=ba(),fg=ug.NEGATIVE_INFINITY;Sa.exports=fg});var Ie=p((m4,Ea)=>{"use strict";var dg=1023;Ea.exports=dg});var Ia=p((y4,Aa)=>{"use strict";function pg(r){return r===0?.6666666666666735:.6666666666666735+r*(.3999999999940942+r*(.2857142874366239+r*(.22222198432149784+r*(.1818357216161805+r*(.15313837699209373+r*.14798198605116586)))))}Aa.exports=pg});var ka=p((_4,Oa)=>{"use strict";var vg=J(),$a=ee(),Ta=Fe(),gg=de(),mg=ce(),Ca=Ie(),yg=Ia(),Zr=.6931471803691238,Xr=19082149292705877e-26,_g=.41421356237309503,wg=-.2928932188134525,bg=1862645149230957e-24,Sg=5551115123125783e-32,Eg=9007199254740992,Ag=.6666666666666666;function Ig(r){var e,t,i,s,n,o,a,l,c,h;if(r<-1||vg(r))return NaN;if(r===-1)return mg;if(r===gg||r===0)return r;if(r<0?i=-r:i=r,h=1,i<_g){if(i<bg)return i<Sg?r:r-r*r*.5;r>wg&&(h=0,s=r,t=1)}return h!==0&&(i<Eg?(c=1+r,t=$a(c),h=(t>>20)-Ca,h>0?n=1-(c-r):n=r-(c-1),n/=c):(c=r,t=$a(c),h=(t>>20)-Ca,n=0),t&=1048575,t<434334?c=Ta(c,t|1072693248):(h+=1,c=Ta(c,t|1071644672),t=1048576-t>>2),s=c-1),e=.5*s*s,t===0?s===0?(n+=h*Xr,h*Zr+n):(l=e*(1-Ag*s),h*Zr-(l-(h*Xr+n)-s)):(o=s/(2+s),a=o*o,l=a*yg(a),h===0?s-(e-o*(e+l)):h*Zr-(e-(o*(e+l)+(h*Xr+n))-s))}Oa.exports=Ig});var at=p((w4,Na)=>{"use strict";var $g=ka();Na.exports=$g});var xt=p((b4,xa)=>{"use strict";var Tg=.6931471805599453;xa.exports=Tg});var Da=p((S4,Ma)=>{"use strict";function Cg(r){return r===0?.3999999999940942:.3999999999940942+r*(.22222198432149784+r*.15313837699209373)}Ma.exports=Cg});var Ra=p((E4,qa)=>{"use strict";function Og(r){return r===0?.6666666666666735:.6666666666666735+r*(.2857142874366239+r*(.1818357216161805+r*.14798198605116586))}qa.exports=Og});var Ba=p((A4,La)=>{"use strict";var Fa=ee(),kg=Fe(),Ng=J(),xg=Ie(),Mg=ce(),Dg=Da(),qg=Ra(),Mt=.6931471803691238,Dt=19082149292705877e-26,Rg=0x40000000000000,Fg=.3333333333333333,Pa=1048575,Pg=2146435072,Lg=1048576,Bg=1072693248;function Hg(r){var e,t,i,s,n,o,a,l,c,h,u,d;return r===0?Mg:Ng(r)||r<0?NaN:(t=Fa(r),n=0,t<Lg&&(n-=54,r*=Rg,t=Fa(r)),t>=Pg?r+r:(n+=(t>>20)-xg|0,t&=Pa,l=t+614244&1048576|0,r=kg(r,t|l^Bg),n+=l>>20|0,a=r-1,(Pa&2+t)<3?a===0?n===0?0:n*Mt+n*Dt:(o=a*a*(.5-Fg*a),n===0?a-o:n*Mt-(o-n*Dt-a)):(h=a/(2+a),d=h*h,l=t-398458|0,u=d*d,c=440401-t|0,s=u*Dg(u),i=d*qg(u),l|=c,o=i+s,l>0?(e=.5*a*a,n===0?a-(e-h*(e+o)):n*Mt-(e-(h*(e+o)+n*Dt)-a)):n===0?a-h*(a-o):n*Mt-(h*(a-o)-n*Dt-a))))}La.exports=Hg});var qt=p((I4,Ha)=>{"use strict";var Ug=Ba();Ha.exports=Ug});var ja=p(($4,Wa)=>{"use strict";var zg=J(),Wg=at(),Ua=st(),jg=xt(),za=qt(),Vg=1<<28;function Gg(r){var e;return zg(r)||r<1?NaN:r===1?0:r>=Vg?za(r)+jg:r>2?za(2*r-1/(r+Ua(r*r-1))):(e=r-1,Wg(e+Ua(2*e+e*e)))}Wa.exports=Gg});var Ga=p((T4,Va)=>{"use strict";var Kg=ja();Va.exports=Kg});var Za=p((C4,Ka)=>{"use strict";var Zg=de(),Xg=ce();function Yg(r){return r===Zg||r===Xg}Ka.exports=Yg});var je=p((O4,Xa)=>{"use strict";var Jg=Za();Xa.exports=Jg});var ec=p((k4,Qa)=>{"use strict";var Qg=je(),em=J(),tm=at(),Ya=st(),rm=xt(),Ja=qt(),im=1/(1<<28),sm=1<<28;function nm(r){var e,t,i;return em(r)||Qg(r)?r:(r<0&&(r=-r,e=!0),r<im?i=r:r>sm?i=Ja(r)+rm:r>2?i=Ja(2*r+1/(Ya(r*r+1)+r)):(t=r*r,i=tm(r+t/(1+Ya(1+t)))),e?-i:i)}Qa.exports=nm});var rc=p((N4,tc)=>{"use strict";var om=ec();tc.exports=om});var sc=p((x4,ic)=>{"use strict";var am=1.5707963267948966;ic.exports=am});var oc=p((M4,nc)=>{"use strict";function cm(r){return r===0?-64.85021904942025:-64.85021904942025+r*(-122.88666844901361+r*(-75.00855792314705+r*(-16.157537187333652+r*-.8750608600031904)))}nc.exports=cm});var cc=p((D4,ac)=>{"use strict";function lm(r){return r===0?194.5506571482614:194.5506571482614+r*(485.3903996359137+r*(432.88106049129027+r*(165.02700983169885+r*(24.858464901423062+r*1))))}ac.exports=lm});var uc=p((q4,hc)=>{"use strict";var hm=J(),um=de(),Yr=sc(),fm=Nt(),dm=ce(),pm=oc(),vm=cc(),lc=6123233995736766e-32,gm=2.414213562373095;function mm(r){var e,t,i,s;return hm(r)||r===0?r:r===um?Yr:r===dm?-Yr:(r<0&&(t=!0,r=-r),e=0,r>gm?(i=Yr,e=1,r=-(1/r)):r<=.66?i=0:(i=fm,e=2,r=(r-1)/(r+1)),s=r*r,s=s*pm(s)/vm(s),s=r*s+r,e===2?s+=.5*lc:e===1&&(s+=lc),i+=s,t?-i:i)}hc.exports=mm});var Jr=p((R4,fc)=>{"use strict";var ym=uc();fc.exports=ym});var vc=p((F4,pc)=>{"use strict";var _m=J(),dc=at(),wm=de(),bm=ce(),Sm=1/(1<<28);function Em(r){var e,t;return _m(r)||r<-1||r>1?NaN:r===1?wm:r===-1?bm:(r<0&&(e=!0,r=-r),r<Sm?e?-r:r:(r<.5?(t=r+r,t=.5*dc(t+t*r/(1-r))):t=.5*dc((r+r)/(1-r)),e?-t:t))}pc.exports=Em});var mc=p((P4,gc)=>{"use strict";var Am=vc();gc.exports=Am});var Qr=p((L4,yc)=>{"use strict";var Im=2147483648;yc.exports=Im});var ve=p((B4,_c)=>{"use strict";var $m=2147483647;_c.exports=$m});var bc=p((H4,wc)=>{"use strict";var Tm=typeof Object.defineProperty=="function"?Object.defineProperty:null;wc.exports=Tm});var Ec=p((U4,Sc)=>{"use strict";var Cm=bc();function Om(){try{return Cm({},"x",{}),!0}catch{return!1}}Sc.exports=Om});var Ic=p((z4,Ac)=>{"use strict";var km=Object.defineProperty;Ac.exports=km});var ei=p((W4,$c)=>{"use strict";function Nm(r){return typeof r=="number"}$c.exports=Nm});var ti=p((j4,Cc)=>{"use strict";function xm(r){return r[0]==="-"}function Tc(r){var e="",t;for(t=0;t<r;t++)e+="0";return e}function Mm(r,e,t){var i=!1,s=e-r.length;return s<0||(xm(r)&&(i=!0,r=r.substr(1)),r=t?r+Tc(s):Tc(s)+r,i&&(r="-"+r)),r}Cc.exports=Mm});var xc=p((V4,Nc)=>{"use strict";var Dm=ei(),Oc=ti(),qm=String.prototype.toLowerCase,kc=String.prototype.toUpperCase;function Rm(r){var e,t,i;switch(r.specifier){case"b":e=2;break;case"o":e=8;break;case"x":case"X":e=16;break;case"d":case"i":case"u":default:e=10;break}if(t=r.arg,i=parseInt(t,10),!isFinite(i)){if(!Dm(t))throw new Error("invalid integer. Value: "+t);i=0}return i<0&&(r.specifier==="u"||e!==10)&&(i=4294967295+i+1),i<0?(t=(-i).toString(e),r.precision&&(t=Oc(t,r.precision,r.padRight)),t="-"+t):(t=i.toString(e),!i&&!r.precision?t="":r.precision&&(t=Oc(t,r.precision,r.padRight)),r.sign&&(t=r.sign+t)),e===16&&(r.alternate&&(t="0x"+t),t=r.specifier===kc.call(r.specifier)?kc.call(t):qm.call(t)),e===8&&r.alternate&&t.charAt(0)!=="0"&&(t="0"+t),t}Nc.exports=Rm});var Dc=p((G4,Mc)=>{"use strict";function Fm(r){return typeof r=="string"}Mc.exports=Fm});var Fc=p((K4,Rc)=>{"use strict";var Pm=ei(),Lm=Math.abs,Bm=String.prototype.toLowerCase,qc=String.prototype.toUpperCase,Pe=String.prototype.replace,Hm=/e\+(\d)$/,Um=/e-(\d)$/,zm=/^(\d+)$/,Wm=/^(\d+)e/,jm=/\.0$/,Vm=/\.0*e/,Gm=/(\..*[^0])0*e/;function Km(r){var e,t,i=parseFloat(r.arg);if(!isFinite(i)){if(!Pm(r.arg))throw new Error("invalid floating-point number. Value: "+t);i=r.arg}switch(r.specifier){case"e":case"E":t=i.toExponential(r.precision);break;case"f":case"F":t=i.toFixed(r.precision);break;case"g":case"G":Lm(i)<1e-4?(e=r.precision,e>0&&(e-=1),t=i.toExponential(e)):t=i.toPrecision(r.precision),r.alternate||(t=Pe.call(t,Gm,"$1e"),t=Pe.call(t,Vm,"e"),t=Pe.call(t,jm,""));break;default:throw new Error("invalid double notation. Value: "+r.specifier)}return t=Pe.call(t,Hm,"e+0$1"),t=Pe.call(t,Um,"e-0$1"),r.alternate&&(t=Pe.call(t,zm,"$1."),t=Pe.call(t,Wm,"$1.e")),i>=0&&r.sign&&(t=r.sign+t),t=r.specifier===qc.call(r.specifier)?qc.call(t):Bm.call(t),t}Rc.exports=Km});var Bc=p((Z4,Lc)=>{"use strict";function Pc(r){var e="",t;for(t=0;t<r;t++)e+=" ";return e}function Zm(r,e,t){var i=e-r.length;return i<0||(r=t?r+Pc(i):Pc(i)+r),r}Lc.exports=Zm});var Uc=p((X4,Hc)=>{"use strict";var Xm=xc(),Ym=Dc(),Jm=Fc(),Qm=Bc(),ey=ti(),ty=String.fromCharCode,ry=Array.isArray;function Rt(r){return r!==r}function iy(r){var e={};return e.specifier=r.specifier,e.precision=r.precision===void 0?1:r.precision,e.width=r.width,e.flags=r.flags||"",e.mapping=r.mapping,e}function sy(r){var e,t,i,s,n,o,a,l,c;if(!ry(r))throw new TypeError("invalid argument. First argument must be an array. Value: `"+r+"`.");for(o="",a=1,l=0;l<r.length;l++)if(i=r[l],Ym(i))o+=i;else{if(e=i.precision!==void 0,i=iy(i),!i.specifier)throw new TypeError("invalid argument. Token is missing `specifier` property. Index: `"+l+"`. Value: `"+i+"`.");for(i.mapping&&(a=i.mapping),t=i.flags,c=0;c<t.length;c++)switch(s=t.charAt(c),s){case" ":i.sign=" ";break;case"+":i.sign="+";break;case"-":i.padRight=!0,i.padZeros=!1;break;case"0":i.padZeros=t.indexOf("-")<0;break;case"#":i.alternate=!0;break;default:throw new Error("invalid flag: "+s)}if(i.width==="*"){if(i.width=parseInt(arguments[a],10),a+=1,Rt(i.width))throw new TypeError("the argument for * width at position "+a+" is not a number. Value: `"+i.width+"`.");i.width<0&&(i.padRight=!0,i.width=-i.width)}if(e&&i.precision==="*"){if(i.precision=parseInt(arguments[a],10),a+=1,Rt(i.precision))throw new TypeError("the argument for * precision at position "+a+" is not a number. Value: `"+i.precision+"`.");i.precision<0&&(i.precision=1,e=!1)}switch(i.arg=arguments[a],i.specifier){case"b":case"o":case"x":case"X":case"d":case"i":case"u":e&&(i.padZeros=!1),i.arg=Xm(i);break;case"s":i.maxWidth=e?i.precision:-1,i.arg=String(i.arg);break;case"c":if(!Rt(i.arg)){if(n=parseInt(i.arg,10),n<0||n>127)throw new Error("invalid character code. Value: "+i.arg);i.arg=Rt(n)?String(i.arg):ty(n)}break;case"e":case"E":case"f":case"F":case"g":case"G":e||(i.precision=6),i.arg=Jm(i);break;default:throw new Error("invalid specifier: "+i.specifier)}i.maxWidth>=0&&i.arg.length>i.maxWidth&&(i.arg=i.arg.substring(0,i.maxWidth)),i.padZeros?i.arg=ey(i.arg,i.width||i.precision,i.padRight):i.width&&(i.arg=Qm(i.arg,i.width,i.padRight)),o+=i.arg||"",a+=1}return o}Hc.exports=sy});var Wc=p((Y4,zc)=>{"use strict";var ny=Uc();zc.exports=ny});var Vc=p((J4,jc)=>{"use strict";var Ft=/%(?:([1-9]\d*)\$)?([0 +\-#]*)(\*|\d+)?(?:(\.)(\*|\d+)?)?[hlL]?([%A-Za-z])/g;function oy(r){var e={mapping:r[1]?parseInt(r[1],10):void 0,flags:r[2],width:r[3],precision:r[5],specifier:r[6]};return r[4]==="."&&r[5]===void 0&&(e.precision="1"),e}function ay(r){var e,t,i,s;for(t=[],s=0,i=Ft.exec(r);i;)e=r.slice(s,Ft.lastIndex-i[0].length),e.length&&t.push(e),t.push(oy(i)),s=Ft.lastIndex,i=Ft.exec(r);return e=r.slice(s),e.length&&t.push(e),t}jc.exports=ay});var Kc=p((Q4,Gc)=>{"use strict";var cy=Vc();Gc.exports=cy});var Xc=p((e3,Zc)=>{"use strict";function ly(r){return typeof r=="string"}Zc.exports=ly});var Qc=p((t3,Jc)=>{"use strict";var hy=Wc(),uy=Kc(),fy=Xc();function Yc(r){var e,t;if(!fy(r))throw new TypeError(Yc("invalid argument. First argument must be a string. Value: `%s`.",r));for(e=[uy(r)],t=1;t<arguments.length;t++)e.push(arguments[t]);return hy.apply(null,e)}Jc.exports=Yc});var tl=p((r3,el)=>{"use strict";var dy=Qc();el.exports=dy});var al=p((i3,ol)=>{"use strict";var rl=tl(),Ve=Object.prototype,il=Ve.toString,sl=Ve.__defineGetter__,nl=Ve.__defineSetter__,py=Ve.__lookupGetter__,vy=Ve.__lookupSetter__;function gy(r,e,t){var i,s,n,o;if(typeof r!="object"||r===null||il.call(r)==="[object Array]")throw new TypeError(rl("invalid argument. First argument must be an object. Value: `%s`.",r));if(typeof t!="object"||t===null||il.call(t)==="[object Array]")throw new TypeError(rl("invalid argument. Property descriptor must be an object. Value: `%s`.",t));if(s="value"in t,s&&(py.call(r,e)||vy.call(r,e)?(i=r.__proto__,r.__proto__=Ve,delete r[e],r[e]=t.value,r.__proto__=i):r[e]=t.value),n="get"in t,o="set"in t,s&&(n||o))throw new Error("invalid argument. Cannot specify one or more accessors and a value or writable attribute in the property descriptor.");return n&&sl&&sl.call(r,e,t.get),o&&nl&&nl.call(r,e,t.set),r}ol.exports=gy});var ll=p((s3,cl)=>{"use strict";var my=Ec(),yy=Ic(),_y=al(),ri;my()?ri=yy:ri=_y;cl.exports=ri});var ul=p((n3,hl)=>{"use strict";var wy=ll();function by(r,e,t){wy(r,e,{configurable:!1,enumerable:!1,writable:!1,value:t})}hl.exports=by});var ii=p((o3,fl)=>{"use strict";var Sy=ul();fl.exports=Sy});var vl=p((a3,pl)=>{"use strict";var Ey=Re(),dl,si,ni;Ey===!0?(si=1,ni=0):(si=0,ni=1);dl={HIGH:si,LOW:ni};pl.exports=dl});var oi=p((c3,_l)=>{"use strict";var Ay=De(),Iy=qe(),ml=vl(),yl=new Iy(1),gl=new Ay(yl.buffer),$y=ml.HIGH,Ty=ml.LOW;function Cy(r,e,t,i){return yl[0]=r,e[i]=gl[$y],e[i+t]=gl[Ty],e}_l.exports=Cy});var bl=p((l3,wl)=>{"use strict";var Oy=oi();function ky(r){return Oy(r,[0,0],1,0)}wl.exports=ky});var Ge=p((h3,El)=>{"use strict";var Ny=ii(),Sl=bl(),xy=oi();Ny(Sl,"assign",xy);El.exports=Sl});var $l=p((u3,Il)=>{"use strict";var My=Re(),Al,ai,ci;My===!0?(ai=1,ci=0):(ai=0,ci=1);Al={HIGH:ai,LOW:ci};Il.exports=Al});var Nl=p((f3,kl)=>{"use strict";var Dy=De(),qy=qe(),Cl=$l(),Ol=new qy(1),Tl=new Dy(Ol.buffer),Ry=Cl.HIGH,Fy=Cl.LOW;function Py(r,e){return Tl[Ry]=r,Tl[Fy]=e,Ol[0]}kl.exports=Py});var Ke=p((d3,xl)=>{"use strict";var Ly=Nl();xl.exports=Ly});var Dl=p((p3,Ml)=>{"use strict";var By=Qr(),Hy=ve(),Uy=Ge(),zy=ee(),Wy=Ke(),li=[0,0];function jy(r,e){var t,i;return Uy.assign(r,li,1,0),t=li[0],t&=Hy,i=zy(e),i&=By,t|=i,Wy(t,li[1])}Ml.exports=jy});var hi=p((v3,ql)=>{"use strict";var Vy=Dl();ql.exports=Vy});var Fl=p((g3,Rl)=>{"use strict";var Gy=ee();function Ky(r){var e=Gy(r);return!!(e>>>31)}Rl.exports=Ky});var Ll=p((m3,Pl)=>{"use strict";var Zy=Fl();Pl.exports=Zy});var Hl=p((y3,Bl)=>{"use strict";var Xy=3.141592653589793;Bl.exports=Xy});var Wl=p((_3,zl)=>{"use strict";var Pt=je(),$e=hi(),Yy=Ll(),Ul=J(),Jy=Jr(),Qy=de(),Te=Hl();function e1(r,e){var t;return Ul(e)||Ul(r)?NaN:Pt(e)?e===Qy?Pt(r)?$e(Te/4,r):$e(0,r):Pt(r)?$e(3*Te/4,r):$e(Te,r):Pt(r)?$e(Te/2,r):r===0?e>=0&&!Yy(e)?$e(0,r):$e(Te,r):e===0?$e(Te/2,r):(t=Jy(r/e),e<0?t<=0?t+Te:t-Te:t)}zl.exports=e1});var Vl=p((w3,jl)=>{"use strict";var t1=Wl();jl.exports=t1});var ui=p((b3,Gl)=>{"use strict";var r1=22250738585072014e-324;Gl.exports=r1});var Zl=p((S3,Kl)=>{"use strict";function i1(r){return r===0?1.87595182427177:1.87595182427177+r*(-1.8849797954337717+r*(1.6214297201053545+r*(-.758397934778766+r*.14599619288661245)))}Kl.exports=i1});var Ql=p((E3,Jl)=>{"use strict";var s1=ui(),n1=Qr(),Xl=ve(),di=ee(),o1=Fe(),a1=je(),Yl=Ke(),c1=Ge(),l1=J(),h1=Zl(),u1=4294967295,f1=3221225472,d1=0x40000000000000,fi=2147483648,p1=1,v1=715094163,g1=696219795,m1=di(s1),Le=[0,0];function y1(r){var e,t,i,s,n,o,a;return r===0||l1(r)||a1(r)?r:(t=di(r)>>>0,e=(t&n1)>>>0,t&=Xl,t<m1?(o=d1*r,i=(di(o)&Xl)>>>0,i=(i/3>>>0)+g1>>>0,o=Yl(e|i,0)):(o=0,i=(t/3>>>0)+v1>>>0,o=o1(o,e|i)),s=o*o*(o/r),o*=h1(s),c1.assign(o,Le,1,0),Le[1]&fi?(Le[0]+=p1,Le[1]&=~fi):Le[1]|=fi,o=Yl(Le[0]&u1,Le[1]&f1),n=o*o,s=r/n,a=o+o,s=(s-o)/(a+s),o+=o*s,o)}Jl.exports=y1});var th=p((A3,eh)=>{"use strict";var _1=Ql();eh.exports=_1});var ih=p((I3,rh)=>{"use strict";function w1(r){return r===0?.0416666666666666:.0416666666666666+r*(-.001388888888887411+r*2480158728947673e-20)}rh.exports=w1});var nh=p(($3,sh)=>{"use strict";function b1(r){return r===0?-27557314351390663e-23:-27557314351390663e-23+r*(2087572321298175e-24+r*-11359647557788195e-27)}sh.exports=b1});var ah=p((T3,oh)=>{"use strict";var S1=ih(),E1=nh();function A1(r,e){var t,i,s,n;return n=r*r,s=n*n,i=n*S1(n),i+=s*s*E1(n),t=.5*n,s=1-t,s+(1-s-t+(n*i-r*e))}oh.exports=A1});var pi=p((C3,ch)=>{"use strict";var I1=ah();ch.exports=I1});var uh=p((O3,hh)=>{"use strict";var lh=-.16666666666666632,$1=.00833333333332249,T1=-.0001984126982985795,C1=27557313707070068e-22,O1=-25050760253406863e-24,k1=158969099521155e-24;function N1(r,e){var t,i,s,n;return n=r*r,s=n*n,t=$1+n*(T1+n*C1)+n*s*(O1+n*k1),i=n*r,e===0?r+i*(lh+n*t):r-(n*(.5*e-i*t)-e-i*lh)}hh.exports=N1});var vi=p((k3,fh)=>{"use strict";var x1=uh();fh.exports=x1});var Ze=p((N3,dh)=>{"use strict";var M1=2146435072;dh.exports=M1});var Lt=p((x3,ph)=>{"use strict";var D1=1048575;ph.exports=D1});var gh=p((M3,vh)=>{"use strict";var q1=Re(),gi;q1===!0?gi=0:gi=1;vh.exports=gi});var _h=p((D3,yh)=>{"use strict";var R1=De(),F1=qe(),P1=gh(),mh=new F1(1),L1=new R1(mh.buffer);function B1(r){return mh[0]=r,L1[P1]}yh.exports=B1});var bh=p((q3,wh)=>{"use strict";var H1=_h();wh.exports=H1});var Eh=p((R3,Sh)=>{"use strict";var U1=Math.floor;Sh.exports=U1});var mi=p((F3,Ah)=>{"use strict";var z1=Eh();Ah.exports=z1});var $h=p((P3,Ih)=>{"use strict";var W1=1023;Ih.exports=W1});var Ch=p((L3,Th)=>{"use strict";var j1=-1023;Th.exports=j1});var kh=p((B3,Oh)=>{"use strict";var V1=-1074;Oh.exports=V1});var xh=p((H3,Nh)=>{"use strict";function G1(r){return Math.abs(r)}Nh.exports=G1});var Bt=p((U3,Mh)=>{"use strict";var K1=xh();Mh.exports=K1});var yi=p((z3,Dh)=>{"use strict";var Z1=ui(),X1=je(),Y1=J(),J1=Bt(),Q1=4503599627370496;function e_(r,e,t,i){return Y1(r)||X1(r)?(e[i]=r,e[i+t]=0,e):r!==0&&J1(r)<Z1?(e[i]=r*Q1,e[i+t]=-52,e):(e[i]=r,e[i+t]=0,e)}Dh.exports=e_});var Rh=p((W3,qh)=>{"use strict";var t_=yi();function r_(r){return t_(r,[0,0],1,0)}qh.exports=r_});var Lh=p((j3,Ph)=>{"use strict";var i_=ii(),Fh=Rh(),s_=yi();i_(Fh,"assign",s_);Ph.exports=Fh});var Hh=p((V3,Bh)=>{"use strict";var n_=ee(),o_=Ze(),a_=Ie();function c_(r){var e=n_(r);return e=(e&o_)>>>20,e-a_|0}Bh.exports=c_});var zh=p((G3,Uh)=>{"use strict";var l_=Hh();Uh.exports=l_});var jh=p((K3,Wh)=>{"use strict";var h_=de(),u_=ce(),f_=Ie(),d_=$h(),p_=Ch(),v_=kh(),g_=J(),m_=je(),y_=hi(),__=Lh().assign,w_=zh(),b_=Ge(),S_=Ke(),E_=2220446049250313e-31,A_=2148532223,_i=[0,0],wi=[0,0];function I_(r,e){var t,i;return e===0||r===0||g_(r)||m_(r)?r:(__(r,_i,1,0),r=_i[0],e+=_i[1],e+=w_(r),e<v_?y_(0,r):e>d_?r<0?u_:h_:(e<=p_?(e+=52,i=E_):i=1,b_.assign(r,wi,1,0),t=wi[0],t&=A_,t|=e+f_<<20,i*S_(t,wi[1])))}Wh.exports=I_});var bi=p((Z3,Vh)=>{"use strict";var $_=jh();Vh.exports=$_});var Kh=p((X3,Gh)=>{"use strict";function T_(r,e){var t,i;for(t=[],i=0;i<e;i++)t.push(r);return t}Gh.exports=T_});var Xh=p((Y3,Zh)=>{"use strict";var C_=Kh();Zh.exports=C_});var Jh=p((J3,Yh)=>{"use strict";var O_=Xh();function k_(r){return O_(0,r)}Yh.exports=k_});var eu=p((Q3,Qh)=>{"use strict";var N_=Jh();Qh.exports=N_});var nu=p((eE,su)=>{"use strict";var x_=mi(),Ht=bi(),Wt=eu(),ru=[10680707,7228996,1387004,2578385,16069853,12639074,9804092,4427841,16666979,11263675,12935607,2387514,4345298,14681673,3074569,13734428,16653803,1880361,10960616,8533493,3062596,8710556,7349940,6258241,3772886,3769171,3798172,8675211,12450088,3874808,9961438,366607,15675153,9132554,7151469,3571407,2607881,12013382,4155038,6285869,7677882,13102053,15825725,473591,9065106,15363067,6271263,9264392,5636912,4652155,7056368,13614112,10155062,1944035,9527646,15080200,6658437,6231200,6832269,16767104,5075751,3212806,1398474,7579849,6349435,12618859],M_=[1.570796251296997,7549789415861596e-23,5390302529957765e-30,3282003415807913e-37,1270655753080676e-44,12293330898111133e-52,27337005381646456e-60,21674168387780482e-67],Si=16777216,Ei=5960464477539063e-23,Ut=Wt(20),tu=Wt(20),zt=Wt(20),Q=Wt(20);function iu(r,e,t,i,s,n,o,a,l){var c,h,u,d,f,g,y,S,v;for(d=n,v=i[t],S=t,f=0;S>0;f++)h=Ei*v|0,Q[f]=v-Si*h|0,v=i[S-1]+h,S-=1;if(v=Ht(v,s),v-=8*x_(v*.125),y=v|0,v-=y,u=0,s>0?(f=Q[t-1]>>24-s,y+=f,Q[t-1]-=f<<24-s,u=Q[t-1]>>23-s):s===0?u=Q[t-1]>>23:v>=.5&&(u=2),u>0){for(y+=1,c=0,f=0;f<t;f++)S=Q[f],c===0?S!==0&&(c=1,Q[f]=16777216-S):Q[f]=16777215-S;if(s>0)switch(s){case 1:Q[t-1]&=8388607;break;case 2:Q[t-1]&=4194303;break}u===2&&(v=1-v,c!==0&&(v-=Ht(1,s)))}if(v===0){for(S=0,f=t-1;f>=n;f--)S|=Q[f];if(S===0){for(g=1;Q[n-g]===0;g++);for(f=t+1;f<=t+g;f++){for(l[a+f]=ru[o+f],h=0,S=0;S<=a;S++)h+=r[S]*l[a+(f-S)];i[f]=h}return t+=g,iu(r,e,t,i,s,n,o,a,l)}for(t-=1,s-=24;Q[t]===0;)t-=1,s-=24}else v=Ht(v,-s),v>=Si?(h=Ei*v|0,Q[t]=v-Si*h|0,t+=1,s+=24,Q[t]=h):Q[t]=v|0;for(h=Ht(1,s),f=t;f>=0;f--)i[f]=h*Q[f],h*=Ei;for(f=t;f>=0;f--){for(h=0,g=0;g<=d&&g<=t-f;g++)h+=M_[g]*i[f+g];zt[t-f]=h}for(h=0,f=t;f>=0;f--)h+=zt[f];for(u===0?e[0]=h:e[0]=-h,h=zt[0]-h,f=1;f<=t;f++)h+=zt[f];return u===0?e[1]=h:e[1]=-h,y&7}function D_(r,e,t,i){var s,n,o,a,l,c,h,u,d;for(n=4,a=i-1,o=(t-3)/24|0,o<0&&(o=0),c=t-24*(o+1),u=o-a,d=a+n,h=0;h<=d;h++)u<0?Ut[h]=0:Ut[h]=ru[u],u+=1;for(h=0;h<=n;h++){for(s=0,u=0;u<=a;u++)s+=r[u]*Ut[a+(h-u)];tu[h]=s}return l=n,iu(r,e,l,tu,c,n,o,a,Ut)}su.exports=D_});var au=p((tE,ou)=>{"use strict";var q_=Math.round;ou.exports=q_});var lu=p((rE,cu)=>{"use strict";var R_=au();cu.exports=R_});var du=p((iE,fu)=>{"use strict";var F_=lu(),hu=ee(),P_=.6366197723675814,L_=1.5707963267341256,B_=6077100506506192e-26,H_=6077100506303966e-26,U_=20222662487959506e-37,z_=20222662487111665e-37,W_=84784276603689e-45,uu=2047;function j_(r,e,t){var i,s,n,o,a,l,c;return s=F_(r*P_),o=r-s*L_,a=s*B_,c=e>>20|0,t[0]=o-a,i=hu(t[0]),l=c-(i>>20&uu),l>16&&(n=o,a=s*H_,o=n-a,a=s*U_-(n-o-a),t[0]=o-a,i=hu(t[0]),l=c-(i>>20&uu),l>49&&(n=o,a=s*z_,o=n-a,a=s*W_-(n-o-a),t[0]=o-a)),t[1]=o-t[0]-a,s}fu.exports=j_});var vu=p((sE,pu)=>{"use strict";var V_=ve(),G_=Ze(),K_=Lt(),Z_=ee(),X_=bh(),Y_=Ke(),J_=nu(),jt=du(),Q_=0,ew=16777216,Ce=1.5707963267341256,Be=6077100506506192e-26,Vt=2*Be,Gt=3*Be,Kt=4*Be,tw=598523,rw=1072243195,iw=1073928572,sw=1074752122,nw=1074977148,ow=1075183036,aw=1075388923,cw=1075594811,lw=1094263291,ct=[0,0,0],lt=[0,0];function hw(r,e){var t,i,s,n,o,a,l,c;if(s=Z_(r),n=s&V_|0,n<=rw)return e[0]=r,e[1]=0,0;if(n<=sw)return(n&K_)===tw?jt(r,n,e):n<=iw?r>0?(c=r-Ce,e[0]=c-Be,e[1]=c-e[0]-Be,1):(c=r+Ce,e[0]=c+Be,e[1]=c-e[0]+Be,-1):r>0?(c=r-2*Ce,e[0]=c-Vt,e[1]=c-e[0]-Vt,2):(c=r+2*Ce,e[0]=c+Vt,e[1]=c-e[0]+Vt,-2);if(n<=cw)return n<=ow?n===nw?jt(r,n,e):r>0?(c=r-3*Ce,e[0]=c-Gt,e[1]=c-e[0]-Gt,3):(c=r+3*Ce,e[0]=c+Gt,e[1]=c-e[0]+Gt,-3):n===aw?jt(r,n,e):r>0?(c=r-4*Ce,e[0]=c-Kt,e[1]=c-e[0]-Kt,4):(c=r+4*Ce,e[0]=c+Kt,e[1]=c-e[0]+Kt,-4);if(n<lw)return jt(r,n,e);if(n>=G_)return e[0]=NaN,e[1]=NaN,0;for(t=X_(r),i=(n>>20)-1046,c=Y_(n-(i<<20|0),t),a=0;a<2;a++)ct[a]=c|0,c=(c-ct[a])*ew;for(ct[2]=c,o=3;ct[o-1]===Q_;)o-=1;return l=J_(ct,lt,i,o,1),r<0?(e[0]=-lt[0],e[1]=-lt[1],-l):(e[0]=lt[0],e[1]=lt[1],l)}pu.exports=hw});var Zt=p((nE,gu)=>{"use strict";var uw=vu();gu.exports=uw});var _u=p((oE,yu)=>{"use strict";var fw=ee(),Ai=pi(),mu=vi(),dw=Zt(),pw=ve(),vw=Ze(),ge=[0,0],gw=1072243195,mw=1044381696;function yw(r){var e,t;if(e=fw(r),e&=pw,e<=gw)return e<mw?1:Ai(r,0);if(e>=vw)return NaN;switch(t=dw(r,ge),t&3){case 0:return Ai(ge[0],ge[1]);case 1:return-mu(ge[0],ge[1]);case 2:return-Ai(ge[0],ge[1]);default:return mu(ge[0],ge[1])}}yu.exports=yw});var bu=p((aE,wu)=>{"use strict";var _w=_u();wu.exports=_w});var Eu=p((cE,Su)=>{"use strict";var ww=Math.ceil;Su.exports=ww});var Iu=p((lE,Au)=>{"use strict";var bw=Eu();Au.exports=bw});var Tu=p((hE,$u)=>{"use strict";var Sw=mi(),Ew=Iu();function Aw(r){return r<0?Ew(r):Sw(r)}$u.exports=Aw});var Ou=p((uE,Cu)=>{"use strict";var Iw=Tu();Cu.exports=Iw});var Nu=p((fE,ku)=>{"use strict";function $w(r){return r===0?.16666666666666602:.16666666666666602+r*(-.0027777777777015593+r*(6613756321437934e-20+r*(-16533902205465252e-22+r*41381367970572385e-24)))}ku.exports=$w});var Mu=p((dE,xu)=>{"use strict";var Tw=bi(),Cw=Nu();function Ow(r,e,t){var i,s,n,o;return i=r-e,s=i*i,n=i-s*Cw(s),o=1-(e-i*n/(2-n)-r),Tw(o,t)}xu.exports=Ow});var Lu=p((pE,Pu)=>{"use strict";var kw=J(),Du=Ou(),Nw=ce(),qu=de(),xw=Mu(),Mw=.6931471803691238,Dw=19082149292705877e-26,Ru=1.4426950408889634,qw=709.782712893384,Rw=-745.1332191019411,Fu=1/(1<<28),Fw=-Fu;function Pw(r){var e,t,i;return kw(r)||r===qu?r:r===Nw?0:r>qw?qu:r<Rw?0:r>Fw&&r<Fu?1+r:(r<0?i=Du(Ru*r-.5):i=Du(Ru*r+.5),e=r-i*Mw,t=i*Dw,xw(e,t,i))}Pu.exports=Pw});var ht=p((vE,Bu)=>{"use strict";var Lw=Lu();Bu.exports=Lw});var Uu=p((gE,Hu)=>{"use strict";var Bw=J(),Ii=ht();function Hw(r){return Bw(r)?r:(r<0&&(r=-r),r>21?Ii(r)/2:(Ii(r)+Ii(-r))/2)}Hu.exports=Hw});var Wu=p((mE,zu)=>{"use strict";var Uw=Uu();zu.exports=Uw});var Vu=p((yE,ju)=>{"use strict";var zw=.34657359027997264;ju.exports=zw});var Ku=p((_E,Gu)=>{"use strict";function Ww(r){return r===0?-.03333333333333313:-.03333333333333313+r*(.0015873015872548146+r*(-793650757867488e-19+r*(4008217827329362e-21+r*-20109921818362437e-23)))}Gu.exports=Ww});var ef=p((wE,Qu)=>{"use strict";var jw=J(),Zu=ee(),$i=Fe(),Vw=Ke(),Xu=de(),Gw=ce(),Yu=Ie(),Kw=Vu(),Zw=Ku(),Xw=709.782712893384,Ti=.6931471803691238,Ci=19082149292705877e-26,Ju=1.4426950408889634,Yw=38.816242111356935,Jw=1.0397207708399179;function Qw(r){var e,t,i,s,n,o,a,l,c,h,u,d,f;if(r===Xu||jw(r))return r;if(r===Gw)return-1;if(r===0)return r;if(r<0?(i=!0,l=-r):(i=!1,l=r),l>=Yw){if(i)return-1;if(l>=Xw)return Xu}if(o=Zu(l)|0,l>Kw)l<Jw?i?(s=r+Ti,n=-Ci,f=-1):(s=r-Ti,n=Ci,f=1):(i?f=Ju*r-.5:f=Ju*r+.5,f|=0,u=f,s=r-u*Ti,n=u*Ci),r=s-n,h=s-r-n;else{if(o<1016070144)return r;f=0}return e=.5*r,c=r*e,a=1+c*Zw(c),u=3-a*e,d=c*((a-u)/(6-r*u)),f===0?r-(r*d-c):(t=Vw(Yu+f<<20,0),d=r*(d-h)-h,d-=c,f===-1?.5*(r-d)-.5:f===1?r<-.25?-2*(d-(r+.5)):1+2*(r-d):f<=-2||f>56?(l=1-(d-r),f===1024?(s=Zu(l)+(f<<20)|0,l=$i(l,s)):l*=t,l-1):(u=1,f<20?(s=1072693248-(2097152>>f)|0,u=$i(u,s),l=u-(d-r)):(s=Yu-f<<20|0,u=$i(u,s),l=r-(d+u),l+=1),l*=t,l))}Qu.exports=Qw});var rf=p((bE,tf)=>{"use strict";var e2=ef();tf.exports=e2});var nf=p((SE,sf)=>{"use strict";var t2=Re(),Oi;t2===!0?Oi=0:Oi=1;sf.exports=Oi});var af=p((EE,of)=>{"use strict";var r2=De(),i2=qe(),s2=nf(),ki=new i2(1),n2=new r2(ki.buffer);function o2(r,e){return ki[0]=r,n2[s2]=e>>>0,ki[0]}of.exports=o2});var Xt=p((AE,cf)=>{"use strict";var a2=af();cf.exports=a2});var hf=p((IE,lf)=>{"use strict";function c2(r){return r===0?.3999999999940942:.3999999999940942+r*(.22222198432149784+r*.15313837699209373)}lf.exports=c2});var ff=p(($E,uf)=>{"use strict";function l2(r){return r===0?.6666666666666735:.6666666666666735+r*(.2857142874366239+r*(.1818357216161805+r*.14798198605116586))}uf.exports=l2});var pf=p((TE,df)=>{"use strict";var h2=hf(),u2=ff();function f2(r){var e,t,i,s,n,o,a;return s=r/(2+r),n=s*s,a=n*n,t=a*h2(a),i=n*u2(a),o=i+t,e=.5*r*r,s*(e+o)}df.exports=f2});var Ni=p((CE,vf)=>{"use strict";var d2=pf();vf.exports=d2});var wf=p((OE,_f)=>{"use strict";var p2=ee(),v2=Fe(),g2=Xt(),m2=Ge(),y2=ve(),_2=Lt(),w2=J(),b2=Ie(),S2=ce(),E2=Ni(),A2=0x40000000000000,gf=.4342944818781689,I2=25082946711645275e-27,$2=.30102999566361177,T2=3694239077158931e-28,C2=2146435072,mf=1048576,yf=1072693248,xi=[0,0];function O2(r){var e,t,i,s,n,o,a,l,c,h,u,d,f,g;if(w2(r)||r<0)return NaN;if(m2.assign(r,xi,1,0),o=xi[0],a=xi[1],g=0,o<mf){if((o&y2|a)===0)return S2;g-=54,r*=A2,o=p2(r)}return o>=C2?r+r:o===yf&&a===0?0:(g+=(o>>20)-b2|0,o&=_2,f=o+614244&mf|0,r=v2(r,o|f^yf),g+=f>>20|0,d=g,c=r-1,i=.5*c*c,h=E2(c),s=c-i,s=g2(s,0),n=c-s-i+h,e=s*gf,l=d*$2,t=d*T2+(n+s)*I2+n*gf,u=l+e,t+=l-u+e,e=u,t+e)}_f.exports=O2});var Sf=p((kE,bf)=>{"use strict";var k2=wf();bf.exports=k2});var Tf=p((NE,$f)=>{"use strict";var N2=ee(),x2=Fe(),M2=Xt(),D2=Ge(),q2=J(),R2=ve(),F2=Lt(),P2=Ie(),L2=ce(),B2=Ni(),H2=0x40000000000000,Ef=1.4426950407214463,U2=16751713164886512e-26,z2=2146435072,Af=1048576,If=1072693248,Mi=[0,0];function W2(r){var e,t,i,s,n,o,a,l,c,h,u,d,f;if(q2(r)||r<0)return NaN;if(D2.assign(r,Mi,1,0),s=Mi[0],n=Mi[1],f=0,s<Af){if((s&R2|n)===0)return L2;f-=54,r*=H2,s=N2(r)}return s>=z2?r+r:s===If&&n===0?0:(f+=(s>>20)-P2|0,s&=F2,d=s+614244&Af|0,r=x2(r,s|d^If),f+=d>>20|0,u=f,l=r-1,i=.5*l*l,c=B2(l),o=l-i,o=M2(o,0),a=l-o-i+c,e=o*Ef,t=(a+o)*U2+a*Ef,h=u+e,t+=u-h+e,e=h,t+e)}$f.exports=W2});var Of=p((xE,Cf)=>{"use strict";var j2=Tf();Cf.exports=j2});var xf=p((ME,Nf)=>{"use strict";var V2=ve(),G2=Ze(),K2=ee(),kf=pi(),Di=vi(),Z2=Zt(),X2=1072243195,Y2=1045430272,me=[0,0];function J2(r){var e,t;if(e=K2(r),e&=V2,e<=X2)return e<Y2?r:Di(r,0);if(e>=G2)return NaN;switch(t=Z2(r,me),t&3){case 0:return Di(me[0],me[1]);case 1:return kf(me[0],me[1]);case 2:return-Di(me[0],me[1]);default:return-kf(me[0],me[1])}}Nf.exports=J2});var Df=p((DE,Mf)=>{"use strict";var Q2=xf();Mf.exports=Q2});var Rf=p((qE,qf)=>{"use strict";function eb(r){var e,t,i;return r===0?.16666666666666666:(r<0?e=-r:e=r,e<=1?(t=-351754.9648081514+r*(-11561.443576500522+r*(-163.72585752598383+r*-.789474443963537)),i=-2.1105297888489086e6+r*(36157.827983443196+r*(-277.7110814206028+r*1))):(r=1/r,t=-.789474443963537+r*(-163.72585752598383+r*(-11561.443576500522+r*-351754.9648081514)),i=1+r*(-277.7110814206028+r*(36157.827983443196+r*-2.1105297888489086e6))),t/i)}qf.exports=eb});var Bf=p((RE,Lf)=>{"use strict";var tb=de(),rb=ce(),ib=Bt(),Ff=ht(),qi=xt(),sb=Rf(),Pf=709.782712893384,nb=-708.3964185322641,ob=Pf+qi,ab=nb-qi,cb=Pf-qi;function lb(r){var e;return r===0?r:r>ob||r<ab?r>0?tb:rb:(e=ib(r),e>1?e>=cb?(e=Ff(.5*e),e*=.5*e,r<0&&(e=-e),e):(e=Ff(e),e=.5*e-.5/e,r<0&&(e=-e),e):(e*=e,r+r*e*sb(e)))}Lf.exports=lb});var Uf=p((FE,Hf)=>{"use strict";var hb=Bf();Hf.exports=hb});var Wf=p((PE,zf)=>{"use strict";function ub(r){return r===0?.13333333333320124:.13333333333320124+r*(.021869488294859542+r*(.0035920791075913124+r*(.0005880412408202641+r*(7817944429395571e-20+r*-18558637485527546e-21))))}zf.exports=ub});var Vf=p((LE,jf)=>{"use strict";function fb(r){return r===0?.05396825397622605:.05396825397622605+r*(.0088632398235993+r*(.0014562094543252903+r*(.0002464631348184699+r*(7140724913826082e-20+r*2590730518636337e-20))))}jf.exports=fb});var Zf=p((BE,Kf)=>{"use strict";var db=ee(),Gf=Xt(),pb=Wf(),vb=Vf(),gb=.7853981633974483,mb=3061616997868383e-32,yb=.3333333333333341,_b=2147483647;function wb(r,e,t){var i,s,n,o,a,l,c,h,u;return i=db(r),s=i&_b|0,s>=1072010280&&(r<0&&(r=-r,e=-e),u=gb-r,h=mb-e,r=u+h,e=0),u=r*r,h=u*u,o=pb(h),c=u*vb(h),a=u*r,o=e+u*(a*(o+c)+e),o+=yb*a,h=r+o,s>=1072010280?(c=t,(1-(i>>30&2))*(c-2*(r-(h*h/(h+c)-o)))):t===1?h:(u=Gf(h,0),c=o-(u-r),n=-1/h,l=Gf(n,0),a=1+l*u,l+n*(a+l*c))}Kf.exports=wb});var Yf=p((HE,Xf)=>{"use strict";var bb=Zf();Xf.exports=bb});var ed=p((UE,Qf)=>{"use strict";var Sb=ee(),Jf=Yf(),Eb=Zt(),Ab=ve(),Ib=Ze(),Ri=[0,0],$b=1072243195,Tb=1044381696;function Cb(r){var e,t;return e=Sb(r),e&=Ab,e<=$b?e<Tb?r:Jf(r,0,1):e>=Ib?NaN:(t=Eb(r,Ri),Jf(Ri[0],Ri[1],1-((t&1)<<1)))}Qf.exports=Cb});var rd=p((zE,td)=>{"use strict";var Ob=ed();td.exports=Ob});var sd=p((WE,id)=>{"use strict";function kb(r){var e,t,i;return r===0?-.3333333333333332:(r<0?e=-r:e=r,e<=1?(t=-1614.6876844170845+r*(-99.28772310019185+r*(-.9643991794250523+r*0)),i=4844.063053251255+r*(2235.4883906010045+r*(112.81167849163293+r*1))):(r=1/r,t=0+r*(-.9643991794250523+r*(-99.28772310019185+r*-1614.6876844170845)),i=1+r*(112.81167849163293+r*(2235.4883906010045+r*4844.063053251255))),t/i)}id.exports=kb});var od=p((jE,nd)=>{"use strict";var Nb=Bt(),xb=ht(),Mb=sd(),Db=88.02969193111305;function qb(r){var e,t;if(t=Nb(r),t>.5*Db)return r<0?-1:1;if(t>=.625)e=xb(2*t),t=1-2/(e+1),r<0&&(t=-t);else{if(r===0)return r;e=r*r,t=r+r*e*Mb(e)}return t}nd.exports=qb});var cd=p((VE,ad)=>{"use strict";var Rb=od();ad.exports=Rb});var Jt=p((Yt,Md)=>{(function(r,e){typeof Yt=="object"?Md.exports=Yt=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Yt,function(r){return function(){var e=r,t=e.lib,i=t.WordArray,s=e.enc,n=s.Base64={stringify:function(a){var l=a.words,c=a.sigBytes,h=this._map;a.clamp();for(var u=[],d=0;d<c;d+=3)for(var f=l[d>>>2]>>>24-d%4*8&255,g=l[d+1>>>2]>>>24-(d+1)%4*8&255,y=l[d+2>>>2]>>>24-(d+2)%4*8&255,S=f<<16|g<<8|y,v=0;v<4&&d+v*.75<c;v++)u.push(h.charAt(S>>>6*(3-v)&63));var m=h.charAt(64);if(m)for(;u.length%4;)u.push(m);return u.join("")},parse:function(a){var l=a.length,c=this._map,h=this._reverseMap;if(!h){h=this._reverseMap=[];for(var u=0;u<c.length;u++)h[c.charCodeAt(u)]=u}var d=c.charAt(64);if(d){var f=a.indexOf(d);f!==-1&&(l=f)}return o(a,l,h)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function o(a,l,c){for(var h=[],u=0,d=0;d<l;d++)if(d%4){var f=c[a.charCodeAt(d-1)]<<d%4*2,g=c[a.charCodeAt(d)]>>>6-d%4*2,y=f|g;h[u>>>2]|=y<<24-u%4*8,u++}return i.create(h,u)}}(),r.enc.Base64})});var qd=p((Qt,Dd)=>{(function(r,e){typeof Qt=="object"?Dd.exports=Qt=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(Qt,function(r){return r.enc.Utf8})});var tr=p((er,Rd)=>{(function(r,e){typeof er=="object"?Rd.exports=er=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(er,function(r){(function(){var e=r,t=e.lib,i=t.Base,s=e.enc,n=s.Utf8,o=e.algo,a=o.HMAC=i.extend({init:function(l,c){l=this._hasher=new l.init,typeof c=="string"&&(c=n.parse(c));var h=l.blockSize,u=h*4;c.sigBytes>u&&(c=l.finalize(c)),c.clamp();for(var d=this._oKey=c.clone(),f=this._iKey=c.clone(),g=d.words,y=f.words,S=0;S<h;S++)g[S]^=1549556828,y[S]^=909522486;d.sigBytes=f.sigBytes=u,this.reset()},reset:function(){var l=this._hasher;l.reset(),l.update(this._iKey)},update:function(l){return this._hasher.update(l),this},finalize:function(l){var c=this._hasher,h=c.finalize(l);c.reset();var u=c.finalize(this._oKey.clone().concat(h));return u}})})()})});var Pd=p((rr,Fd)=>{(function(r,e,t){typeof rr=="object"?Fd.exports=rr=e(se(),it(),tr()):typeof define=="function"&&define.amd?define(["./core","./sha256","./hmac"],e):e(r.CryptoJS)})(rr,function(r){return function(){var e=r,t=e.lib,i=t.Base,s=t.WordArray,n=e.algo,o=n.SHA256,a=n.HMAC,l=n.PBKDF2=i.extend({cfg:i.extend({keySize:128/32,hasher:o,iterations:25e4}),init:function(c){this.cfg=this.cfg.extend(c)},compute:function(c,h){for(var u=this.cfg,d=a.create(u.hasher,c),f=s.create(),g=s.create([1]),y=f.words,S=g.words,v=u.keySize,m=u.iterations;y.length<v;){var A=d.update(h).finalize(g);d.reset();for(var w=A.words,R=w.length,M=A,F=1;F<m;F++){M=d.finalize(M),d.reset();for(var N=M.words,q=0;q<R;q++)w[q]^=N[q]}f.concat(A),S[0]++}return f.sigBytes=v*4,f}});e.PBKDF2=function(c,h,u){return l.create(u).compute(c,h)}}(),r.PBKDF2})});var Bd=p((ir,Ld)=>{(function(r,e){typeof ir=="object"?Ld.exports=ir=e(se()):typeof define=="function"&&define.amd?define(["./core"],e):e(r.CryptoJS)})(ir,function(r){return function(e){var t=r,i=t.lib,s=i.WordArray,n=i.Hasher,o=t.algo,a=[];(function(){for(var f=0;f<64;f++)a[f]=e.abs(e.sin(f+1))*4294967296|0})();var l=o.MD5=n.extend({_doReset:function(){this._hash=new s.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(f,g){for(var y=0;y<16;y++){var S=g+y,v=f[S];f[S]=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360}var m=this._hash.words,A=f[g+0],w=f[g+1],R=f[g+2],M=f[g+3],F=f[g+4],N=f[g+5],q=f[g+6],H=f[g+7],_=f[g+8],$=f[g+9],D=f[g+10],I=f[g+11],B=f[g+12],z=f[g+13],G=f[g+14],ie=f[g+15],T=m[0],C=m[1],O=m[2],k=m[3];T=c(T,C,O,k,A,7,a[0]),k=c(k,T,C,O,w,12,a[1]),O=c(O,k,T,C,R,17,a[2]),C=c(C,O,k,T,M,22,a[3]),T=c(T,C,O,k,F,7,a[4]),k=c(k,T,C,O,N,12,a[5]),O=c(O,k,T,C,q,17,a[6]),C=c(C,O,k,T,H,22,a[7]),T=c(T,C,O,k,_,7,a[8]),k=c(k,T,C,O,$,12,a[9]),O=c(O,k,T,C,D,17,a[10]),C=c(C,O,k,T,I,22,a[11]),T=c(T,C,O,k,B,7,a[12]),k=c(k,T,C,O,z,12,a[13]),O=c(O,k,T,C,G,17,a[14]),C=c(C,O,k,T,ie,22,a[15]),T=h(T,C,O,k,w,5,a[16]),k=h(k,T,C,O,q,9,a[17]),O=h(O,k,T,C,I,14,a[18]),C=h(C,O,k,T,A,20,a[19]),T=h(T,C,O,k,N,5,a[20]),k=h(k,T,C,O,D,9,a[21]),O=h(O,k,T,C,ie,14,a[22]),C=h(C,O,k,T,F,20,a[23]),T=h(T