Newer
Older
TriliumScripts / PerPageCrypto / SimpleCrypto.min.js
/**
 * MIT License
 * 
 * Copyright (c) 2017 Danang Galuh Tegar Prasetyo
 * -------------------------------------
 */


var t,e;t=window,e=function(){return i={},n.m=r=[function(t,e,r){var i;t.exports=(i=i||function(f){var r=Object.create||function(t){var e;return i.prototype=t,e=new i,i.prototype=null,e};function i(){}var t={},e=t.lib={},n=e.Base={extend:function(t){var e=r(this);return t&&e.mixIn(t),e.hasOwnProperty("init")&&this.init!==e.init||(e.init=function(){e.$super.init.apply(this,arguments)}),(e.init.prototype=e).$super=this,e},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}},l=e.WordArray=n.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:4*t.length},toString:function(t){return(t||s).stringify(this)},concat:function(t){var e=this.words,r=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var o=0;o<n;o++){var s=r[o>>>2]>>>24-o%4*8&255;e[i+o>>>2]|=s<<24-(i+o)%4*8}else for(o=0;o<n;o+=4)e[i+o>>>2]=r[o>>>2];return this.sigBytes+=n,this},clamp:function(){var t=this.words,e=this.sigBytes;t[e>>>2]&=4294967295<<32-e%4*8,t.length=f.ceil(e/4)},clone:function(){var t=n.clone.call(this);return t.words=this.words.slice(0),t},random:function(t){for(var e=[],r=0;r<t;r+=4){var i=function(e){var e=e,r=987654321,i=4294967295;return function(){var t=((r=36969*(65535&r)+(r>>16)&i)<<16)+(e=18e3*(65535&e)+(e>>16)&i)&i;return t/=4294967296,(t+=.5)*(.5<f.random()?1:-1)}}(4294967296*(n||f.random())),n=987654071*i();e.push(4294967296*i()|0)}return new l.init(e,t)}}),o=t.enc={},s=o.Hex={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++){var o=e[n>>>2]>>>24-n%4*8&255;i.push((o>>>4).toString(16)),i.push((15&o).toString(16))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i+=2)r[i>>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new l.init(r,e/2)}},a=o.Latin1={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++){var o=e[n>>>2]>>>24-n%4*8&255;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i++)r[i>>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new l.init(r,e)}},c=o.Utf8={stringify:function(t){try{return decodeURIComponent(escape(a.stringify(t)))}catch(e){throw new Error("Malformed UTF-8 data")}},parse:function(t){return a.parse(unescape(encodeURIComponent(t)))}},h=e.BufferedBlockAlgorithm=n.extend({reset:function(){this._data=new l.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=c.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(t){var e=this._data,r=e.words,i=e.sigBytes,n=this.blockSize,o=i/(4*n),s=(o=t?f.ceil(o):f.max((0|o)-this._minBufferSize,0))*n,a=f.min(4*s,i);if(s){for(var c=0;c<s;c+=n)this._doProcessBlock(r,c);var h=r.splice(0,s);e.sigBytes-=a}return new l.init(h,a)},clone:function(){var t=n.clone.call(this);return t._data=this._data.clone(),t},_minBufferSize:0}),u=(e.Hasher=h.extend({cfg:n.extend(),init:function(t){this.cfg=this.cfg.extend(t),this.reset()},reset:function(){h.reset.call(this),this._doReset()},update:function(t){return this._append(t),this._process(),this},finalize:function(t){return t&&this._append(t),this._doFinalize()},blockSize:16,_createHelper:function(r){return function(t,e){return new r.init(e).finalize(t)}},_createHmacHelper:function(r){return function(t,e){return new u.HMAC.init(r,e).finalize(t)}}}),t.algo={});return t}(Math),i)},function(t,e,r){var S;t.exports=(S=r(0),r(2),void(S.lib.Cipher||function(){var t=S,e=t.lib,r=e.Base,c=e.WordArray,i=e.BufferedBlockAlgorithm,n=t.enc,o=(n.Utf8,n.Base64),s=t.algo.EvpKDF,a=e.Cipher=i.extend({cfg:r.extend(),createEncryptor:function(t,e){return this.create(this._ENC_XFORM_MODE,t,e)},createDecryptor:function(t,e){return this.create(this._DEC_XFORM_MODE,t,e)},init:function(t,e,r){this.cfg=this.cfg.extend(r),this._xformMode=t,this._key=e,this.reset()},reset:function(){i.reset.call(this),this._doReset()},process:function(t){return this._append(t),this._process()},finalize:function(t){return t&&this._append(t),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(i){return{encrypt:function(t,e,r){return h(e).encrypt(i,t,e,r)},decrypt:function(t,e,r){return h(e).decrypt(i,t,e,r)}}}});function h(t){return"string"==typeof t?w:g}e.StreamCipher=a.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var f,l=t.mode={},u=e.BlockCipherMode=r.extend({createEncryptor:function(t,e){return this.Encryptor.create(t,e)},createDecryptor:function(t,e){return this.Decryptor.create(t,e)},init:function(t,e){this._cipher=t,this._iv=e}}),d=l.CBC=((f=u.extend()).Encryptor=f.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize;p.call(this,t,e,i),r.encryptBlock(t,e),this._prevBlock=t.slice(e,e+i)}}),f.Decryptor=f.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=t.slice(e,e+i);r.decryptBlock(t,e),p.call(this,t,e,i),this._prevBlock=n}}),f);function p(t,e,r){var i,n=this._iv;n?(i=n,this._iv=void 0):i=this._prevBlock;for(var o=0;o<r;o++)t[e+o]^=i[o]}var v=(t.pad={}).Pkcs7={pad:function(t,e){for(var r=4*e,i=r-t.sigBytes%r,n=i<<24|i<<16|i<<8|i,o=[],s=0;s<i;s+=4)o.push(n);var a=c.create(o,i);t.concat(a)},unpad:function(t){var e=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=e}},_=(e.BlockCipher=a.extend({cfg:a.cfg.extend({mode:d,padding:v}),reset:function(){a.reset.call(this);var t,e=this.cfg,r=e.iv,i=e.mode;this._xformMode==this._ENC_XFORM_MODE?t=i.createEncryptor:(t=i.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==t?this._mode.init(this,r&&r.words):(this._mode=t.call(i,this,r&&r.words),this._mode.__creator=t)},_doProcessBlock:function(t,e){this._mode.processBlock(t,e)},_doFinalize:function(){var t,e=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(e.pad(this._data,this.blockSize),t=this._process(!0)):(t=this._process(!0),e.unpad(t)),t},blockSize:4}),e.CipherParams=r.extend({init:function(t){this.mixIn(t)},toString:function(t){return(t||this.formatter).stringify(this)}})),y=(t.format={}).OpenSSL={stringify:function(t){var e=t.ciphertext,r=t.salt;return(r?c.create([1398893684,1701076831]).concat(r).concat(e):e).toString(o)},parse:function(t){var e,r=o.parse(t),i=r.words;return 1398893684==i[0]&&1701076831==i[1]&&(e=c.create(i.slice(2,4)),i.splice(0,4),r.sigBytes-=16),_.create({ciphertext:r,salt:e})}},g=e.SerializableCipher=r.extend({cfg:r.extend({format:y}),encrypt:function(t,e,r,i){i=this.cfg.extend(i);var n=t.createEncryptor(r,i),o=n.finalize(e),s=n.cfg;return _.create({ciphertext:o,key:r,iv:s.iv,algorithm:t,mode:s.mode,padding:s.padding,blockSize:t.blockSize,formatter:i.format})},decrypt:function(t,e,r,i){return i=this.cfg.extend(i),e=this._parse(e,i.format),t.createDecryptor(r,i).finalize(e.ciphertext)},_parse:function(t,e){return"string"==typeof t?e.parse(t,this):t}}),B=(t.kdf={}).OpenSSL={execute:function(t,e,r,i){i=i||c.random(8);var n=s.create({keySize:e+r}).compute(t,i),o=c.create(n.words.slice(e),4*r);return n.sigBytes=4*e,_.create({key:n,iv:o,salt:i})}},w=e.PasswordBasedCipher=g.extend({cfg:g.cfg.extend({kdf:B}),encrypt:function(t,e,r,i){var n=(i=this.cfg.extend(i)).kdf.execute(r,t.keySize,t.ivSize);i.iv=n.iv;var o=g.encrypt.call(this,t,e,n.key,i);return o.mixIn(n),o},decrypt:function(t,e,r,i){i=this.cfg.extend(i),e=this._parse(e,i.format);var n=i.kdf.execute(r,t.keySize,t.ivSize,e.salt);return i.iv=n.iv,g.decrypt.call(this,t,e,n.key,i)}})}()))},function(t,e,r){var s;t.exports=(s=r(0),r(6),r(7),function(){var t=s,e=t.lib,r=e.Base,f=e.WordArray,i=t.algo,n=i.MD5,o=i.EvpKDF=r.extend({cfg:r.extend({keySize:4,hasher:n,iterations:1}),init:function(t){this.cfg=this.cfg.extend(t)},compute:function(t,e){for(var r=this.cfg,i=r.hasher.create(),n=f.create(),o=n.words,s=r.keySize,a=r.iterations;o.length<s;){c&&i.update(c);var c=i.update(t).finalize(e);i.reset();for(var h=1;h<a;h++)c=i.finalize(c),i.reset();n.concat(c)}return n.sigBytes=4*s,n}});t.EvpKDF=function(t,e,r){return o.create(r).compute(t,e)}}(),s.EvpKDF)},function(t,e,r){var i;t.exports=(i=r(0),function(){var c=i.lib.WordArray;i.enc.Base64={stringify:function(t){var e=t.words,r=t.sigBytes,i=this._map;t.clamp();for(var n=[],o=0;o<r;o+=3)for(var s=(e[o>>>2]>>>24-o%4*8&255)<<16|(e[o+1>>>2]>>>24-(o+1)%4*8&255)<<8|e[o+2>>>2]>>>24-(o+2)%4*8&255,a=0;a<4&&o+.75*a<r;a++)n.push(i.charAt(s>>>6*(3-a)&63));var c=i.charAt(64);if(c)for(;n.length%4;)n.push(c);return n.join("")},parse:function(t){var e=t.length,r=this._map,i=this._reverseMap;if(!i){i=this._reverseMap=[];for(var n=0;n<r.length;n++)i[r.charCodeAt(n)]=n}var o,s=r.charAt(64);return!s||-1!==(o=t.indexOf(s))&&(e=o),function(t,e,r){for(var i,n,o=[],s=0,a=0;a<e;a++){a%4&&(i=r[t.charCodeAt(a-1)]<<a%4*2,n=r[t.charCodeAt(a)]>>>6-a%4*2,o[s>>>2]|=(i|n)<<24-s%4*8,s++)}return c.create(o,s)}(t,e,i)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}}(),i.enc.Base64)},function(t,e,r){var s;t.exports=(s=r(0),function(f){var t=s,e=t.lib,r=e.WordArray,i=e.Hasher,n=t.algo,H=[];!function(){for(var t=0;t<64;t++)H[t]=4294967296*f.abs(f.sin(t+1))|0}();var o=n.MD5=i.extend({_doReset:function(){this._hash=new r.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(t,e){for(var r=0;r<16;r++){var i=e+r,n=t[i];t[i]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}var o=this._hash.words,s=t[e+0],a=t[e+1],c=t[e+2],h=t[e+3],f=t[e+4],l=t[e+5],u=t[e+6],d=t[e+7],p=t[e+8],v=t[e+9],_=t[e+10],y=t[e+11],g=t[e+12],B=t[e+13],w=t[e+14],S=t[e+15],k=A(k=o[0],b=o[1],m=o[2],x=o[3],s,7,H[0]),x=A(x,k,b,m,a,12,H[1]),m=A(m,x,k,b,c,17,H[2]),b=A(b,m,x,k,h,22,H[3]);k=A(k,b,m,x,f,7,H[4]),x=A(x,k,b,m,l,12,H[5]),m=A(m,x,k,b,u,17,H[6]),b=A(b,m,x,k,d,22,H[7]),k=A(k,b,m,x,p,7,H[8]),x=A(x,k,b,m,v,12,H[9]),m=A(m,x,k,b,_,17,H[10]),b=A(b,m,x,k,y,22,H[11]),k=A(k,b,m,x,g,7,H[12]),x=A(x,k,b,m,B,12,H[13]),m=A(m,x,k,b,w,17,H[14]),k=C(k,b=A(b,m,x,k,S,22,H[15]),m,x,a,5,H[16]),x=C(x,k,b,m,u,9,H[17]),m=C(m,x,k,b,y,14,H[18]),b=C(b,m,x,k,s,20,H[19]),k=C(k,b,m,x,l,5,H[20]),x=C(x,k,b,m,_,9,H[21]),m=C(m,x,k,b,S,14,H[22]),b=C(b,m,x,k,f,20,H[23]),k=C(k,b,m,x,v,5,H[24]),x=C(x,k,b,m,w,9,H[25]),m=C(m,x,k,b,h,14,H[26]),b=C(b,m,x,k,p,20,H[27]),k=C(k,b,m,x,B,5,H[28]),x=C(x,k,b,m,c,9,H[29]),m=C(m,x,k,b,d,14,H[30]),k=z(k,b=C(b,m,x,k,g,20,H[31]),m,x,l,4,H[32]),x=z(x,k,b,m,p,11,H[33]),m=z(m,x,k,b,y,16,H[34]),b=z(b,m,x,k,w,23,H[35]),k=z(k,b,m,x,a,4,H[36]),x=z(x,k,b,m,f,11,H[37]),m=z(m,x,k,b,d,16,H[38]),b=z(b,m,x,k,_,23,H[39]),k=z(k,b,m,x,B,4,H[40]),x=z(x,k,b,m,s,11,H[41]),m=z(m,x,k,b,h,16,H[42]),b=z(b,m,x,k,u,23,H[43]),k=z(k,b,m,x,v,4,H[44]),x=z(x,k,b,m,g,11,H[45]),m=z(m,x,k,b,S,16,H[46]),k=E(k,b=z(b,m,x,k,c,23,H[47]),m,x,s,6,H[48]),x=E(x,k,b,m,d,10,H[49]),m=E(m,x,k,b,w,15,H[50]),b=E(b,m,x,k,l,21,H[51]),k=E(k,b,m,x,g,6,H[52]),x=E(x,k,b,m,h,10,H[53]),m=E(m,x,k,b,_,15,H[54]),b=E(b,m,x,k,a,21,H[55]),k=E(k,b,m,x,p,6,H[56]),x=E(x,k,b,m,S,10,H[57]),m=E(m,x,k,b,u,15,H[58]),b=E(b,m,x,k,B,21,H[59]),k=E(k,b,m,x,f,6,H[60]),x=E(x,k,b,m,y,10,H[61]),m=E(m,x,k,b,c,15,H[62]),b=E(b,m,x,k,v,21,H[63]),o[0]=o[0]+k|0,o[1]=o[1]+b|0,o[2]=o[2]+m|0,o[3]=o[3]+x|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;e[i>>>5]|=128<<24-i%32;var n=f.floor(r/4294967296),o=r;e[15+(64+i>>>9<<4)]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8),e[14+(64+i>>>9<<4)]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),t.sigBytes=4*(e.length+1),this._process();for(var s=this._hash,a=s.words,c=0;c<4;c++){var h=a[c];a[c]=16711935&(h<<8|h>>>24)|4278255360&(h<<24|h>>>8)}return s},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});function A(t,e,r,i,n,o,s){var a=t+(e&r|~e&i)+n+s;return(a<<o|a>>>32-o)+e}function C(t,e,r,i,n,o,s){var a=t+(e&i|r&~i)+n+s;return(a<<o|a>>>32-o)+e}function z(t,e,r,i,n,o,s){var a=t+(e^r^i)+n+s;return(a<<o|a>>>32-o)+e}function E(t,e,r,i,n,o,s){var a=t+(r^(e|~i))+n+s;return(a<<o|a>>>32-o)+e}t.MD5=i._createHelper(o),t.HmacMD5=i._createHmacHelper(o)}(Math),s.MD5)},function(t,e,r){var i;t.exports=(i=r(0),function(){var t=i.lib,n=t.Base,o=t.WordArray,e=i.x64={};e.Word=n.extend({init:function(t,e){this.high=t,this.low=e}}),e.WordArray=n.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:8*t.length},toX32:function(){for(var t=this.words,e=t.length,r=[],i=0;i<e;i++){var n=t[i];r.push(n.high),r.push(n.low)}return o.create(r,this.sigBytes)},clone:function(){for(var t=n.clone.call(this),e=t.words=this.words.slice(0),r=e.length,i=0;i<r;i++)e[i]=e[i].clone();return t}})}(),i)},function(t,e,r){var s;t.exports=(s=r(0),function(){var t=s,e=t.lib,r=e.WordArray,i=e.Hasher,n=t.algo,l=[],o=n.SHA1=i.extend({_doReset:function(){this._hash=new r.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,e){for(var r,i=this._hash.words,n=i[0],o=i[1],s=i[2],a=i[3],c=i[4],h=0;h<80;h++){h<16?l[h]=0|t[e+h]:(r=l[h-3]^l[h-8]^l[h-14]^l[h-16],l[h]=r<<1|r>>>31);var f=(n<<5|n>>>27)+c+l[h];f+=h<20?1518500249+(o&s|~o&a):h<40?1859775393+(o^s^a):h<60?(o&s|o&a|s&a)-1894007588:(o^s^a)-899497514,c=a,a=s,s=o<<30|o>>>2,o=n,n=f}i[0]=i[0]+n|0,i[1]=i[1]+o|0,i[2]=i[2]+s|0,i[3]=i[3]+a|0,i[4]=i[4]+c|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=Math.floor(r/4294967296),e[15+(64+i>>>9<<4)]=r,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});t.SHA1=i._createHelper(o),t.HmacSHA1=i._createHmacHelper(o)}(),s.SHA1)},function(t,e,r){var i;t.exports=(i=r(0),void function(){var t=i.lib.Base,h=i.enc.Utf8;i.algo.HMAC=t.extend({init:function(t,e){t=this._hasher=new t.init,"string"==typeof e&&(e=h.parse(e));var r=t.blockSize,i=4*r;e.sigBytes>i&&(e=t.finalize(e)),e.clamp();for(var n=this._oKey=e.clone(),o=this._iKey=e.clone(),s=n.words,a=o.words,c=0;c<r;c++)s[c]^=1549556828,a[c]^=909522486;n.sigBytes=o.sigBytes=i,this.reset()},reset:function(){var t=this._hasher;t.reset(),t.update(this._iKey)},update:function(t){return this._hasher.update(t),this},finalize:function(t){var e=this._hasher,r=e.finalize(t);return e.reset(),e.finalize(this._oKey.clone().concat(r))}})}())},function(t,e,r){var c;t.exports=(c=r(0),function(n){var t=c,e=t.lib,r=e.WordArray,i=e.Hasher,o=t.algo,s=[],B=[];!function(){function t(t){return 4294967296*(t-(0|t))|0}for(var e=2,r=0;r<64;)!function(t){for(var e=n.sqrt(t),r=2;r<=e;r++)if(!(t%r))return;return 1}(e)||(r<8&&(s[r]=t(n.pow(e,.5))),B[r]=t(n.pow(e,1/3)),r++),e++}();var w=[],a=o.SHA256=i.extend({_doReset:function(){this._hash=new r.init(s.slice(0))},_doProcessBlock:function(t,e){for(var r,i,n,o,s=this._hash.words,a=s[0],c=s[1],h=s[2],f=s[3],l=s[4],u=s[5],d=s[6],p=s[7],v=0;v<64;v++){v<16?w[v]=0|t[e+v]:(i=((r=w[v-15])<<25|r>>>7)^(r<<14|r>>>18)^r>>>3,o=((n=w[v-2])<<15|n>>>17)^(n<<13|n>>>19)^n>>>10,w[v]=i+w[v-7]+o+w[v-16]);var _=a&c^a&h^c&h,y=(a<<30|a>>>2)^(a<<19|a>>>13)^(a<<10|a>>>22),g=p+((l<<26|l>>>6)^(l<<21|l>>>11)^(l<<7|l>>>25))+(l&u^~l&d)+B[v]+w[v],p=d,d=u,u=l,l=f+g|0,f=h,h=c,c=a,a=g+(y+_)|0}s[0]=s[0]+a|0,s[1]=s[1]+c|0,s[2]=s[2]+h|0,s[3]=s[3]+f|0,s[4]=s[4]+l|0,s[5]=s[5]+u|0,s[6]=s[6]+d|0,s[7]=s[7]+p|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=n.floor(r/4294967296),e[15+(64+i>>>9<<4)]=r,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});t.SHA256=i._createHelper(a),t.HmacSHA256=i._createHmacHelper(a)}(Math),c.SHA256)},function(t,e,r){var c;t.exports=(c=r(0),r(5),function(){var t=c,e=t.lib.Hasher,r=t.x64,i=r.Word,n=r.WordArray,o=t.algo;function s(){return i.create.apply(i,arguments)}var wt=[s(1116352408,3609767458),s(1899447441,602891725),s(3049323471,3964484399),s(3921009573,2173295548),s(961987163,4081628472),s(1508970993,3053834265),s(2453635748,2937671579),s(2870763221,3664609560),s(3624381080,2734883394),s(310598401,1164996542),s(607225278,1323610764),s(1426881987,3590304994),s(1925078388,4068182383),s(2162078206,991336113),s(2614888103,633803317),s(3248222580,3479774868),s(3835390401,2666613458),s(4022224774,944711139),s(264347078,2341262773),s(604807628,2007800933),s(770255983,1495990901),s(1249150122,1856431235),s(1555081692,3175218132),s(1996064986,2198950837),s(2554220882,3999719339),s(2821834349,766784016),s(2952996808,2566594879),s(3210313671,3203337956),s(3336571891,1034457026),s(3584528711,2466948901),s(113926993,3758326383),s(338241895,168717936),s(666307205,1188179964),s(773529912,1546045734),s(1294757372,1522805485),s(1396182291,2643833823),s(1695183700,2343527390),s(1986661051,1014477480),s(2177026350,1206759142),s(2456956037,344077627),s(2730485921,1290863460),s(2820302411,3158454273),s(3259730800,3505952657),s(3345764771,106217008),s(3516065817,3606008344),s(3600352804,1432725776),s(4094571909,1467031594),s(275423344,851169720),s(430227734,3100823752),s(506948616,1363258195),s(659060556,3750685593),s(883997877,3785050280),s(958139571,3318307427),s(1322822218,3812723403),s(1537002063,2003034995),s(1747873779,3602036899),s(1955562222,1575990012),s(2024104815,1125592928),s(2227730452,2716904306),s(2361852424,442776044),s(2428436474,593698344),s(2756734187,3733110249),s(3204031479,2999351573),s(3329325298,3815920427),s(3391569614,3928383900),s(3515267271,566280711),s(3940187606,3454069534),s(4118630271,4000239992),s(116418474,1914138554),s(174292421,2731055270),s(289380356,3203993006),s(460393269,320620315),s(685471733,587496836),s(852142971,1086792851),s(1017036298,365543100),s(1126000580,2618297676),s(1288033470,3409855158),s(1501505948,4234509866),s(1607167915,987167468),s(1816402316,1246189591)],St=[];!function(){for(var t=0;t<80;t++)St[t]=s()}();var a=o.SHA512=e.extend({_doReset:function(){this._hash=new n.init([new i.init(1779033703,4089235720),new i.init(3144134277,2227873595),new i.init(1013904242,4271175723),new i.init(2773480762,1595750129),new i.init(1359893119,2917565137),new i.init(2600822924,725511199),new i.init(528734635,4215389547),new i.init(1541459225,327033209)])},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],o=r[2],s=r[3],a=r[4],c=r[5],h=r[6],f=r[7],l=i.high,u=i.low,d=n.high,p=n.low,v=o.high,_=o.low,y=s.high,g=s.low,B=a.high,w=a.low,S=c.high,k=c.low,x=h.high,m=h.low,b=f.high,H=f.low,A=l,C=u,z=d,E=p,D=v,R=_,M=y,P=g,O=B,F=w,j=S,W=k,I=x,K=m,U=b,L=H,X=0;X<80;X++){var T,N,Z,G,J,$,q,Y,Q,V,tt,et,rt,it,nt,ot=St[X];X<16?(nt=ot.high=0|t[e+2*X],it=ot.low=0|t[e+2*X+1]):(G=((N=(T=St[X-15]).high)>>>1|(Z=T.low)<<31)^(N>>>8|Z<<24)^N>>>7,J=(Z>>>1|N<<31)^(Z>>>8|N<<24)^(Z>>>7|N<<25),Q=((q=($=St[X-2]).high)>>>19|(Y=$.low)<<13)^(q<<3|Y>>>29)^q>>>6,V=(Y>>>19|q<<13)^(Y<<3|q>>>29)^(Y>>>6|q<<26),nt=(nt=(nt=G+(tt=St[X-7]).high+((it=J+tt.low)>>>0<J>>>0?1:0))+Q+((it+=V)>>>0<V>>>0?1:0))+(et=St[X-16]).high+((it+=rt=et.low)>>>0<rt>>>0?1:0),ot.high=nt,ot.low=it);var st=O&j^~O&I,at=F&W^~F&K,ct=A&z^A&D^z&D,ht=C&E^C&R^E&R,ft=(A>>>28|C<<4)^(A<<30|C>>>2)^(A<<25|C>>>7),lt=(C>>>28|A<<4)^(C<<30|A>>>2)^(C<<25|A>>>7),ut=(O>>>14|F<<18)^(O>>>18|F<<14)^(O<<23|F>>>9),dt=(F>>>14|O<<18)^(F>>>18|O<<14)^(F<<23|O>>>9),pt=wt[X],vt=pt.high,_t=pt.low,yt=L+dt,gt=U+ut+(yt>>>0<L>>>0?1:0),Bt=lt+ht,U=I,L=K,I=j,K=W,j=O,W=F,O=M+(gt=(gt=(gt=gt+st+((yt+=at)>>>0<at>>>0?1:0))+vt+((yt+=_t)>>>0<_t>>>0?1:0))+nt+((yt+=it)>>>0<it>>>0?1:0))+((F=P+yt|0)>>>0<P>>>0?1:0)|0,M=D,P=R,D=z,R=E,z=A,E=C,A=gt+(ft+ct+(Bt>>>0<lt>>>0?1:0))+((C=yt+Bt|0)>>>0<yt>>>0?1:0)|0}u=i.low=u+C,i.high=l+A+(u>>>0<C>>>0?1:0),p=n.low=p+E,n.high=d+z+(p>>>0<E>>>0?1:0),_=o.low=_+R,o.high=v+D+(_>>>0<R>>>0?1:0),g=s.low=g+P,s.high=y+M+(g>>>0<P>>>0?1:0),w=a.low=w+F,a.high=B+O+(w>>>0<F>>>0?1:0),k=c.low=k+W,c.high=S+j+(k>>>0<W>>>0?1:0),m=h.low=m+K,h.high=x+I+(m>>>0<K>>>0?1:0),H=f.low=H+L,f.high=b+U+(H>>>0<L>>>0?1:0)},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[30+(128+i>>>10<<5)]=Math.floor(r/4294967296),e[31+(128+i>>>10<<5)]=r,t.sigBytes=4*e.length,this._process(),this._hash.toX32()},clone:function(){var t=e.clone.call(this);return t._hash=this._hash.clone(),t},blockSize:32});t.SHA512=e._createHelper(a),t.HmacSHA512=e._createHmacHelper(a)}(),c.SHA512)},function(t,e,r){"use strict";var i=this&&this.__assign||function(){return(i=Object.assign||function(t){for(var e,r=1,i=arguments.length;r<i;r++)for(var n in e=arguments[r])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t}).apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.SimpleCrypto=void 0;var a=r(11),n=(c.sanitiseData=function(t){if(null==t)throw new Error("There is no data provided. Process halted.");var e="object"==typeof t?JSON.stringify(t):"string"==typeof t||"number"==typeof t||"boolean"==typeof t?t.toString():null;if(null===e)throw new Error("Invalid data type. Only object, string, number and boolean data types are allowed.");return e},c.transform=function(t){if("true"===t.toLowerCase()||"false"===t.toLowerCase())return"true"===t.toLowerCase();try{return JSON.parse(t)}catch(e){return/^-?[\d.]+(?:e-?\d+)?$/.test(t)&&!isNaN(parseFloat(t))?parseFloat(t):t}},Object.defineProperty(c,"encoders",{get:function(){return i({Default:a.enc.Utf8},a.enc)},enumerable:!1,configurable:!0}),c.generateRandom=function(t,e){void 0===t&&(t=128),void 0===e&&(e=!1);var r=a.lib.WordArray.random(t/8);return e?r:r.toString()},c.generateRandomString=function(t){return void 0===t&&(t=128),c.generateRandom(t,!1)},c.generateRandomWordArray=function(t){return void 0===t&&(t=128),c.generateRandom(t,!0)},c.prototype._decrypt=function(){if(this._dataBuffer.length<=64)throw new Error("Invalid cipher text. Decryption halted.");var t=a.enc.Hex.parse(this._dataBuffer.substr(0,32)),e=a.enc.Hex.parse(this._dataBuffer.substr(32,32)),r=this._dataBuffer.substring(64,this._dataBuffer.length-64),i=a.PBKDF2(this._secret.toString(),t,{keySize:this._keySize/32,iterations:this._iterations}),n=this._dataBuffer.substring(this._dataBuffer.length-64),o=this._dataBuffer.substring(0,this._dataBuffer.length-64);if(n!=a.HmacSHA256(o,i).toString())throw new Error("Invalid encrypted text received. Decryption halted.");var s=a.AES.decrypt(r,i,{iv:e,padding:a.pad.Pkcs7,mode:a.mode.CBC});return c.transform(s.toString(c.encoders.Default))},c.prototype._encrypt=function(){var t=c.generateRandom(128,!0),e=c.generateRandom(128,!0),r=a.PBKDF2(this._secret.toString(),t,{keySize:this._keySize/32,iterations:this._iterations}),i=a.AES.encrypt(this._dataBuffer,r,{iv:e,padding:a.pad.Pkcs7,mode:a.mode.CBC}),n=t.toString()+e.toString()+i.toString();return n+a.HmacSHA256(n,r).toString()},c.prototype.decrypt=function(t,e,r){var i=this,n=function(t){"boolean"!=typeof t&&i.setEncoder(t)};try{return void 0!==t&&this.update(t),void 0!==e&&n(e),void 0!==r&&n(r),this._decrypt()}catch(o){throw o}},c.prototype.encrypt=function(t){try{return void 0!==t&&this.update(t),this._encrypt()}catch(e){throw e}},c.prototype.decryptObject=function(t){return this.update(t).decrypt()},c.prototype.encryptObject=function(t){return this.update(t).encrypt()},c.prototype.append=function(t){try{return this._dataBuffer=this._dataBuffer+c.sanitiseData(t),this}catch(e){throw e}},c.prototype.update=function(t){try{return this._dataBuffer=c.sanitiseData(t),this}catch(e){throw e}},c.prototype.setEncoder=function(t){return this._encoder=t,this},c.prototype.setSecret=function(t){return this._secret=a.SHA3("string"==typeof t?t:t.toString()),this},c);function c(t){if(void 0===t)throw new Error("SimpleCrypto object MUST BE initialised with a SECRET KEY.");this._dataBuffer="",this._encoder=a.enc.Utf8,this._secret=a.SHA3("string"==typeof t?t:t.toString()),this._keySize=256,this._iterations=100}e.SimpleCrypto=n,e["default"]=n},function(t,e,r){var i;t.exports=(i=r(0),r(5),r(12),r(13),r(3),r(4),r(6),r(8),r(14),r(9),r(15),r(16),r(17),r(7),r(18),r(2),r(1),r(19),r(20),r(21),r(22),r(23),r(24),r(25),r(26),r(27),r(28),r(29),r(30),r(31),r(32),r(33),r(34),i)},function(t,e,r){var i;t.exports=(i=r(0),function(){var t,n;"function"==typeof ArrayBuffer&&(t=i.lib.WordArray,n=t.init,(t.init=function(t){if(t instanceof ArrayBuffer&&(t=new Uint8Array(t)),(t instanceof Int8Array||"undefined"!=typeof Uint8ClampedArray&&t instanceof Uint8ClampedArray||t instanceof Int16Array||t instanceof Uint16Array||t instanceof Int32Array||t instanceof Uint32Array||t instanceof Float32Array||t instanceof Float64Array)&&(t=new Uint8Array(t.buffer,t.byteOffset,t.byteLength)),t instanceof Uint8Array){for(var e=t.byteLength,r=[],i=0;i<e;i++)r[i>>>2]|=t[i]<<24-i%4*8;n.call(this,r,e)}else n.apply(this,arguments)}).prototype=t)}(),i.lib.WordArray)},function(t,e,r){var i;t.exports=(i=r(0),function(){var n=i.lib.WordArray,t=i.enc;function s(t){return t<<8&4278255360|t>>>8&16711935}t.Utf16=t.Utf16BE={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n+=2){var o=e[n>>>2]>>>16-n%4*8&65535;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i++)r[i>>>1]|=t.charCodeAt(i)<<16-i%2*16;return n.create(r,2*e)}},t.Utf16LE={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n+=2){var o=s(e[n>>>2]>>>16-n%4*8&65535);i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i++)r[i>>>1]|=s(t.charCodeAt(i)<<16-i%2*16);return n.create(r,2*e)}}}(),i.enc.Utf16)},function(t,e,r){var o;t.exports=(o=r(0),r(8),function(){var t=o,e=t.lib.WordArray,r=t.algo,i=r.SHA256,n=r.SHA224=i.extend({_doReset:function(){this._hash=new e.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var t=i._doFinalize.call(this);return t.sigBytes-=4,t}});t.SHA224=i._createHelper(n),t.HmacSHA224=i._createHmacHelper(n)}(),o.SHA224)},function(t,e,r){var a;t.exports=(a=r(0),r(5),r(9),function(){var t=a,e=t.x64,r=e.Word,i=e.WordArray,n=t.algo,o=n.SHA512,s=n.SHA384=o.extend({_doReset:function(){this._hash=new i.init([new r.init(3418070365,3238371032),new r.init(1654270250,914150663),new r.init(2438529370,812702999),new r.init(355462360,4144912697),new r.init(1731405415,4290775857),new r.init(2394180231,1750603025),new r.init(3675008525,1694076839),new r.init(1203062813,3204075428)])},_doFinalize:function(){var t=o._doFinalize.call(this);return t.sigBytes-=16,t}});t.SHA384=o._createHelper(s),t.HmacSHA384=o._createHmacHelper(s)}(),a.SHA384)},function(t,e,r){var o;t.exports=(o=r(0),r(5),function(u){var t=o,e=t.lib,d=e.WordArray,i=e.Hasher,f=t.x64.Word,r=t.algo,z=[],E=[],D=[];!function(){for(var t=1,e=0,r=0;r<24;r++){z[t+5*e]=(r+1)*(r+2)/2%64;var i=(2*t+3*e)%5;t=e%5,e=i}for(t=0;t<5;t++)for(e=0;e<5;e++)E[t+5*e]=e+(2*t+3*e)%5*5;for(var n=1,o=0;o<24;o++){for(var s,a=0,c=0,h=0;h<7;h++)1&n&&((s=(1<<h)-1)<32?c^=1<<s:a^=1<<s-32),128&n?n=n<<1^113:n<<=1;D[o]=f.create(a,c)}}();var R=[];!function(){for(var t=0;t<25;t++)R[t]=f.create()}();var n=r.SHA3=i.extend({cfg:i.cfg.extend({outputLength:512}),_doReset:function(){for(var t=this._state=[],e=0;e<25;e++)t[e]=new f.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(t,e){for(var r=this._state,i=this.blockSize/2,n=0;n<i;n++){var o=16711935&((o=t[e+2*n])<<8|o>>>24)|4278255360&(o<<24|o>>>8),s=16711935&((s=t[e+2*n+1])<<8|s>>>24)|4278255360&(s<<24|s>>>8);(m=r[n]).high^=s,m.low^=o}for(var a=0;a<24;a++){for(var c=0;c<5;c++){for(var h=0,f=0,l=0;l<5;l++)h^=(m=r[c+5*l]).high,f^=m.low;var u=R[c];u.high=h,u.low=f}for(c=0;c<5;c++)for(var d=R[(c+4)%5],p=R[(c+1)%5],v=p.high,_=p.low,h=d.high^(v<<1|_>>>31),f=d.low^(_<<1|v>>>31),l=0;l<5;l++)(m=r[c+5*l]).high^=h,m.low^=f;for(var y=1;y<25;y++){var g=(m=r[y]).high,B=m.low,w=z[y];f=w<32?(h=g<<w|B>>>32-w,B<<w|g>>>32-w):(h=B<<w-32|g>>>64-w,g<<w-32|B>>>64-w);var S=R[E[y]];S.high=h,S.low=f}var k=R[0],x=r[0];for(k.high=x.high,k.low=x.low,c=0;c<5;c++)for(l=0;l<5;l++){var m=r[y=c+5*l],b=R[y],H=R[(c+1)%5+5*l],A=R[(c+2)%5+5*l];m.high=b.high^~H.high&A.high,m.low=b.low^~H.low&A.low}var m=r[0],C=D[a];m.high^=C.high,m.low^=C.low}},_doFinalize:function(){var t=this._data,e=t.words,r=(this._nDataBytes,8*t.sigBytes),i=32*this.blockSize;e[r>>>5]|=1<<24-r%32,e[(u.ceil((1+r)/i)*i>>>5)-1]|=128,t.sigBytes=4*e.length,this._process();for(var n=this._state,o=this.cfg.outputLength/8,s=o/8,a=[],c=0;c<s;c++){var h=n[c],f=16711935&((f=h.high)<<8|f>>>24)|4278255360&(f<<24|f>>>8),l=16711935&((l=h.low)<<8|l>>>24)|4278255360&(l<<24|l>>>8);a.push(l),a.push(f)}return new d.init(a,o)},clone:function(){for(var t=i.clone.call(this),e=t._state=this._state.slice(0),r=0;r<25;r++)e[r]=e[r].clone();return t}});t.SHA3=i._createHelper(n),t.HmacSHA3=i._createHmacHelper(n)}(Math),o.SHA3)},function(t,e,r){var s;t.exports=(s=r(0),function(){var t=s,e=t.lib,r=e.WordArray,i=e.Hasher,n=t.algo,x=r.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),m=r.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),b=r.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),H=r.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),A=r.create([0,1518500249,1859775393,2400959708,2840853838]),C=r.create([1352829926,1548603684,1836072691,2053994217,0]),o=n.RIPEMD160=i.extend({_doReset:function(){this._hash=r.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,e){for(var r=0;r<16;r++){var i=e+r,n=t[i];t[i]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}for(var o,s,a,c,h,f,l=this._hash.words,u=A.words,d=C.words,p=x.words,v=m.words,_=b.words,y=H.words,g=o=l[0],B=s=l[1],w=a=l[2],S=c=l[3],k=h=l[4],r=0;r<80;r+=1)f=o+t[e+p[r]]|0,f+=r<16?(s^a^c)+u[0]:r<32?z(s,a,c)+u[1]:r<48?((s|~a)^c)+u[2]:r<64?E(s,a,c)+u[3]:(s^(a|~c))+u[4],f=(f=D(f|=0,_[r]))+h|0,o=h,h=c,c=D(a,10),a=s,s=f,f=g+t[e+v[r]]|0,f+=r<16?(B^(w|~S))+d[0]:r<32?E(B,w,S)+d[1]:r<48?((B|~w)^S)+d[2]:r<64?z(B,w,S)+d[3]:(B^w^S)+d[4],f=(f=D(f|=0,y[r]))+k|0,g=k,k=S,S=D(w,10),w=B,B=f;f=l[1]+a+S|0,l[1]=l[2]+c+k|0,l[2]=l[3]+h+g|0,l[3]=l[4]+o+B|0,l[4]=l[0]+s+w|0,l[0]=f},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=16711935&(r<<8|r>>>24)|4278255360&(r<<24|r>>>8),t.sigBytes=4*(e.length+1),this._process();for(var n=this._hash,o=n.words,s=0;s<5;s++){var a=o[s];o[s]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8)}return n},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});function z(t,e,r){return t&e|~t&r}function E(t,e,r){return t&r|e&~r}function D(t,e){return t<<e|t>>>32-e}t.RIPEMD160=i._createHelper(o),t.HmacRIPEMD160=i._createHmacHelper(o)}(Math),s.RIPEMD160)},function(t,e,r){var s;t.exports=(s=r(0),r(6),r(7),function(){var t=s,e=t.lib,r=e.Base,y=e.WordArray,i=t.algo,n=i.SHA1,g=i.HMAC,o=i.PBKDF2=r.extend({cfg:r.extend({keySize:4,hasher:n,iterations:1}),init:function(t){this.cfg=this.cfg.extend(t)},compute:function(t,e){for(var r=this.cfg,i=g.create(r.hasher,t),n=y.create(),o=y.create([1]),s=n.words,a=o.words,c=r.keySize,h=r.iterations;s.length<c;){var f=i.update(e).finalize(o);i.reset();for(var l=f.words,u=l.length,d=f,p=1;p<h;p++){d=i.finalize(d),i.reset();for(var v=d.words,_=0;_<u;_++)l[_]^=v[_]}n.concat(f),a[0]++}return n.sigBytes=4*c,n}});t.PBKDF2=function(t,e,r){return o.create(r).compute(t,e)}}(),s.PBKDF2)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.mode.CFB=function(){var t=i.lib.BlockCipherMode.extend();function o(t,e,r,i){var n,o=this._iv;o?(n=o.slice(0),this._iv=undefined):n=this._prevBlock,i.encryptBlock(n,0);for(var s=0;s<r;s++)t[e+s]^=n[s]}return t.Encryptor=t.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize;o.call(this,t,e,i,r),this._prevBlock=t.slice(e,e+i)}}),t.Decryptor=t.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=t.slice(e,e+i);o.call(this,t,e,i,r),this._prevBlock=n}}),t}(),i.mode.CFB)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.mode.CTR=function(){var t=i.lib.BlockCipherMode.extend(),e=t.Encryptor=t.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=this._iv,o=this._counter;n&&(o=this._counter=n.slice(0),this._iv=undefined);var s=o.slice(0);r.encryptBlock(s,0),o[i-1]=o[i-1]+1|0;for(var a=0;a<i;a++)t[e+a]^=s[a]}});return t.Decryptor=e,t}(),i.mode.CTR)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.mode.CTRGladman=function(){var t=i.lib.BlockCipherMode.extend();function h(t){var e,r,i;return 255==(t>>24&255)?(r=t>>8&255,i=255&t,255==(e=t>>16&255)?(e=0,255===r?(r=0,255===i?i=0:++i):++r):++e,t=0,t+=e<<16,t+=r<<8,t+=i):t+=1<<24,t}var e=t.Encryptor=t.extend({processBlock:function(t,e){var r,i=this._cipher,n=i.blockSize,o=this._iv,s=this._counter;o&&(s=this._counter=o.slice(0),this._iv=undefined),0===((r=s)[0]=h(r[0]))&&(r[1]=h(r[1]));var a=s.slice(0);i.encryptBlock(a,0);for(var c=0;c<n;c++)t[e+c]^=a[c]}});return t.Decryptor=e,t}(),i.mode.CTRGladman)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.mode.OFB=function(){var t=i.lib.BlockCipherMode.extend(),e=t.Encryptor=t.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=this._iv,o=this._keystream;n&&(o=this._keystream=n.slice(0),this._iv=undefined),r.encryptBlock(o,0);for(var s=0;s<i;s++)t[e+s]^=o[s]}});return t.Decryptor=e,t}(),i.mode.OFB)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.mode.ECB=function(){var t=i.lib.BlockCipherMode.extend();return t.Encryptor=t.extend({processBlock:function(t,e){this._cipher.encryptBlock(t,e)}}),t.Decryptor=t.extend({processBlock:function(t,e){this._cipher.decryptBlock(t,e)}}),t}(),i.mode.ECB)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.pad.AnsiX923={pad:function(t,e){var r=t.sigBytes,i=4*e,n=i-r%i,o=r+n-1;t.clamp(),t.words[o>>>2]|=n<<24-o%4*8,t.sigBytes+=n},unpad:function(t){var e=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=e}},i.pad.Ansix923)},function(t,e,r){var n;t.exports=(n=r(0),r(1),n.pad.Iso10126={pad:function(t,e){var r=4*e,i=r-t.sigBytes%r;t.concat(n.lib.WordArray.random(i-1)).concat(n.lib.WordArray.create([i<<24],1))},unpad:function(t){var e=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=e}},n.pad.Iso10126)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.pad.Iso97971={pad:function(t,e){t.concat(i.lib.WordArray.create([2147483648],1)),i.pad.ZeroPadding.pad(t,e)},unpad:function(t){i.pad.ZeroPadding.unpad(t),t.sigBytes--}},i.pad.Iso97971)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.pad.ZeroPadding={pad:function(t,e){var r=4*e;t.clamp(),t.sigBytes+=r-(t.sigBytes%r||r)},unpad:function(t){for(var e=t.words,r=t.sigBytes-1;!(e[r>>>2]>>>24-r%4*8&255);)r--;t.sigBytes=r+1}},i.pad.ZeroPadding)},function(t,e,r){var i;t.exports=(i=r(0),r(1),i.pad.NoPadding={pad:function(){},unpad:function(){}},i.pad.NoPadding)},function(t,e,r){var n;t.exports=(n=r(0),r(1),function(){var r=n.lib.CipherParams,i=n.enc.Hex;n.format.Hex={stringify:function(t){return t.ciphertext.toString(i)},parse:function(t){var e=i.parse(t);return r.create({ciphertext:e})}}}(),n.format.Hex)},function(t,e,r){var n;t.exports=(n=r(0),r(3),r(4),r(2),r(1),function(){var t=n,e=t.lib.BlockCipher,r=t.algo,h=[],f=[],l=[],u=[],d=[],p=[],v=[],_=[],y=[],g=[];!function(){for(var t=[],e=0;e<256;e++)t[e]=e<128?e<<1:e<<1^283;for(var r=0,i=0,e=0;e<256;e++){var n=(n=i^i<<1^i<<2^i<<3^i<<4)>>>8^255&n^99;h[r]=n;var o=t[f[n]=r],s=t[o],a=t[s],c=257*t[n]^16843008*n;l[r]=c<<24|c>>>8,u[r]=c<<16|c>>>16,d[r]=c<<8|c>>>24,p[r]=c,c=16843009*a^65537*s^257*o^16843008*r,v[n]=c<<24|c>>>8,_[n]=c<<16|c>>>16,y[n]=c<<8|c>>>24,g[n]=c,r?(r=o^t[t[t[a^o]]],i^=t[t[i]]):r=i=1}}();var B=[0,1,2,4,8,16,32,64,128,27,54],i=r.AES=e.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var t=this._keyPriorReset=this._key,e=t.words,r=t.sigBytes/4,i=4*(1+(this._nRounds=6+r)),n=this._keySchedule=[],o=0;o<i;o++)o<r?n[o]=e[o]:(c=n[o-1],o%r?6<r&&o%r==4&&(c=h[c>>>24]<<24|h[c>>>16&255]<<16|h[c>>>8&255]<<8|h[255&c]):(c=h[(c=c<<8|c>>>24)>>>24]<<24|h[c>>>16&255]<<16|h[c>>>8&255]<<8|h[255&c],c^=B[o/r|0]<<24),n[o]=n[o-r]^c);for(var s=this._invKeySchedule=[],a=0;a<i;a++){var c,o=i-a;c=a%4?n[o]:n[o-4],s[a]=a<4||o<=4?c:v[h[c>>>24]]^_[h[c>>>16&255]]^y[h[c>>>8&255]]^g[h[255&c]]}}},encryptBlock:function(t,e){this._doCryptBlock(t,e,this._keySchedule,l,u,d,p,h)},decryptBlock:function(t,e){var r=t[e+1];t[e+1]=t[e+3],t[e+3]=r,this._doCryptBlock(t,e,this._invKeySchedule,v,_,y,g,f),r=t[e+1],t[e+1]=t[e+3],t[e+3]=r},_doCryptBlock:function(t,e,r,i,n,o,s,a){for(var c=this._nRounds,h=t[e]^r[0],f=t[e+1]^r[1],l=t[e+2]^r[2],u=t[e+3]^r[3],d=4,p=1;p<c;p++)var v=i[h>>>24]^n[f>>>16&255]^o[l>>>8&255]^s[255&u]^r[d++],_=i[f>>>24]^n[l>>>16&255]^o[u>>>8&255]^s[255&h]^r[d++],y=i[l>>>24]^n[u>>>16&255]^o[h>>>8&255]^s[255&f]^r[d++],g=i[u>>>24]^n[h>>>16&255]^o[f>>>8&255]^s[255&l]^r[d++],h=v,f=_,l=y,u=g;v=(a[h>>>24]<<24|a[f>>>16&255]<<16|a[l>>>8&255]<<8|a[255&u])^r[d++],_=(a[f>>>24]<<24|a[l>>>16&255]<<16|a[u>>>8&255]<<8|a[255&h])^r[d++],y=(a[l>>>24]<<24|a[u>>>16&255]<<16|a[h>>>8&255]<<8|a[255&f])^r[d++],g=(a[u>>>24]<<24|a[h>>>16&255]<<16|a[f>>>8&255]<<8|a[255&l])^r[d++],t[e]=v,t[e+1]=_,t[e+2]=y,t[e+3]=g},keySize:8});t.AES=e._createHelper(i)}(),n.AES)},function(t,e,r){var a;t.exports=(a=r(0),r(3),r(4),r(2),r(1),function(){var t=a,e=t.lib,r=e.WordArray,i=e.BlockCipher,n=t.algo,h=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],f=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],l=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],u=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],d=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],o=n.DES=i.extend({_doReset:function(){for(var t=this._key.words,e=[],r=0;r<56;r++){var i=h[r]-1;e[r]=t[i>>>5]>>>31-i%32&1}for(var n=this._subKeys=[],o=0;o<16;o++){for(var s=n[o]=[],a=l[o],r=0;r<24;r++)s[r/6|0]|=e[(f[r]-1+a)%28]<<31-r%6,s[4+(r/6|0)]|=e[28+(f[r+24]-1+a)%28]<<31-r%6;for(s[0]=s[0]<<1|s[0]>>>31,r=1;r<7;r++)s[r]=s[r]>>>4*(r-1)+3;s[7]=s[7]<<5|s[7]>>>27}for(var c=this._invSubKeys=[],r=0;r<16;r++)c[r]=n[15-r]},encryptBlock:function(t,e){this._doCryptBlock(t,e,this._subKeys)},decryptBlock:function(t,e){this._doCryptBlock(t,e,this._invSubKeys)},_doCryptBlock:function(t,e,r){this._lBlock=t[e],this._rBlock=t[e+1],p.call(this,4,252645135),p.call(this,16,65535),v.call(this,2,858993459),v.call(this,8,16711935),p.call(this,1,1431655765);for(var i=0;i<16;i++){for(var n=r[i],o=this._lBlock,s=this._rBlock,a=0,c=0;c<8;c++)a|=u[c][((s^n[c])&d[c])>>>0];this._lBlock=s,this._rBlock=o^a}var h=this._lBlock;this._lBlock=this._rBlock,this._rBlock=h,p.call(this,1,1431655765),v.call(this,8,16711935),v.call(this,2,858993459),p.call(this,16,65535),p.call(this,4,252645135),t[e]=this._lBlock,t[e+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function p(t,e){var r=(this._lBlock>>>t^this._rBlock)&e;this._rBlock^=r,this._lBlock^=r<<t}function v(t,e){var r=(this._rBlock>>>t^this._lBlock)&e;this._lBlock^=r,this._rBlock^=r<<t}t.DES=i._createHelper(o);var s=n.TripleDES=i.extend({_doReset:function(){var t=this._key.words;this._des1=o.createEncryptor(r.create(t.slice(0,2))),this._des2=o.createEncryptor(r.create(t.slice(2,4))),this._des3=o.createEncryptor(r.create(t.slice(4,6)))},encryptBlock:function(t,e){this._des1.encryptBlock(t,e),this._des2.decryptBlock(t,e),this._des3.encryptBlock(t,e)},decryptBlock:function(t,e){this._des3.decryptBlock(t,e),this._des2.encryptBlock(t,e),this._des1.decryptBlock(t,e)},keySize:6,ivSize:2,blockSize:2});t.TripleDES=i._createHelper(s)}(),a.TripleDES)},function(t,e,r){var s;t.exports=(s=r(0),r(3),r(4),r(2),r(1),function(){var t=s,e=t.lib.StreamCipher,r=t.algo,i=r.RC4=e.extend({_doReset:function(){for(var t=this._key,e=t.words,r=t.sigBytes,i=this._S=[],n=0;n<256;n++)i[n]=n;for(var n=0,o=0;n<256;n++){var s=n%r,a=e[s>>>2]>>>24-s%4*8&255,o=(o+i[n]+a)%256,c=i[n];i[n]=i[o],i[o]=c}this._i=this._j=0},_doProcessBlock:function(t,e){t[e]^=n.call(this)},keySize:8,ivSize:0});function n(){for(var t=this._S,e=this._i,r=this._j,i=0,n=0;n<4;n++){r=(r+t[e=(e+1)%256])%256;var o=t[e];t[e]=t[r],t[r]=o,i|=t[(t[e]+t[r])%256]<<24-8*n}return this._i=e,this._j=r,i}t.RC4=e._createHelper(i);var o=r.RC4Drop=i.extend({cfg:i.cfg.extend({drop:192}),_doReset:function(){i._doReset.call(this);for(var t=this.cfg.drop;0<t;t--)n.call(this)}});t.RC4Drop=e._createHelper(o)}(),s.RC4)},function(t,e,r){var o;t.exports=(o=r(0),r(3),r(4),r(2),r(1),function(){var t=o,e=t.lib.StreamCipher,r=t.algo,n=[],c=[],h=[],i=r.Rabbit=e.extend({_doReset:function(){for(var t=this._key.words,e=this.cfg.iv,r=0;r<4;r++)t[r]=16711935&(t[r]<<8|t[r]>>>24)|4278255360&(t[r]<<24|t[r]>>>8);for(var i=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],n=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]],r=this._b=0;r<4;r++)u.call(this);for(r=0;r<8;r++)n[r]^=i[r+4&7];if(e){var o=e.words,s=o[0],a=o[1],c=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),f=c>>>16|4294901760&h,l=h<<16|65535&c;for(n[0]^=c,n[1]^=f,n[2]^=h,n[3]^=l,n[4]^=c,n[5]^=f,n[6]^=h,n[7]^=l,r=0;r<4;r++)u.call(this)}},_doProcessBlock:function(t,e){var r=this._X;u.call(this),n[0]=r[0]^r[5]>>>16^r[3]<<16,n[1]=r[2]^r[7]>>>16^r[5]<<16,n[2]=r[4]^r[1]>>>16^r[7]<<16,n[3]=r[6]^r[3]>>>16^r[1]<<16;for(var i=0;i<4;i++)n[i]=16711935&(n[i]<<8|n[i]>>>24)|4278255360&(n[i]<<24|n[i]>>>8),t[e+i]^=n[i]},blockSize:4,ivSize:2});function u(){for(var t=this._X,e=this._C,r=0;r<8;r++)c[r]=e[r];for(e[0]=e[0]+1295307597+this._b|0,e[1]=e[1]+3545052371+(e[0]>>>0<c[0]>>>0?1:0)|0,e[2]=e[2]+886263092+(e[1]>>>0<c[1]>>>0?1:0)|0,e[3]=e[3]+1295307597+(e[2]>>>0<c[2]>>>0?1:0)|0,e[4]=e[4]+3545052371+(e[3]>>>0<c[3]>>>0?1:0)|0,e[5]=e[5]+886263092+(e[4]>>>0<c[4]>>>0?1:0)|0,e[6]=e[6]+1295307597+(e[5]>>>0<c[5]>>>0?1:0)|0,e[7]=e[7]+3545052371+(e[6]>>>0<c[6]>>>0?1:0)|0,this._b=e[7]>>>0<c[7]>>>0?1:0,r=0;r<8;r++){var i=t[r]+e[r],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,a=((4294901760&i)*i|0)+((65535&i)*i|0);h[r]=s^a}t[0]=h[0]+(h[7]<<16|h[7]>>>16)+(h[6]<<16|h[6]>>>16)|0,t[1]=h[1]+(h[0]<<8|h[0]>>>24)+h[7]|0,t[2]=h[2]+(h[1]<<16|h[1]>>>16)+(h[0]<<16|h[0]>>>16)|0,t[3]=h[3]+(h[2]<<8|h[2]>>>24)+h[1]|0,t[4]=h[4]+(h[3]<<16|h[3]>>>16)+(h[2]<<16|h[2]>>>16)|0,t[5]=h[5]+(h[4]<<8|h[4]>>>24)+h[3]|0,t[6]=h[6]+(h[5]<<16|h[5]>>>16)+(h[4]<<16|h[4]>>>16)|0,t[7]=h[7]+(h[6]<<8|h[6]>>>24)+h[5]|0}t.Rabbit=e._createHelper(i)}(),o.Rabbit)},function(t,e,r){var o;t.exports=(o=r(0),r(3),r(4),r(2),r(1),function(){var t=o,e=t.lib.StreamCipher,r=t.algo,n=[],c=[],h=[],i=r.RabbitLegacy=e.extend({_doReset:function(){for(var t=this._key.words,e=this.cfg.iv,r=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],i=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]],n=this._b=0;n<4;n++)u.call(this);for(n=0;n<8;n++)i[n]^=r[n+4&7];if(e){var o=e.words,s=o[0],a=o[1],c=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),f=c>>>16|4294901760&h,l=h<<16|65535&c;for(i[0]^=c,i[1]^=f,i[2]^=h,i[3]^=l,i[4]^=c,i[5]^=f,i[6]^=h,i[7]^=l,n=0;n<4;n++)u.call(this)}},_doProcessBlock:function(t,e){var r=this._X;u.call(this),n[0]=r[0]^r[5]>>>16^r[3]<<16,n[1]=r[2]^r[7]>>>16^r[5]<<16,n[2]=r[4]^r[1]>>>16^r[7]<<16,n[3]=r[6]^r[3]>>>16^r[1]<<16;for(var i=0;i<4;i++)n[i]=16711935&(n[i]<<8|n[i]>>>24)|4278255360&(n[i]<<24|n[i]>>>8),t[e+i]^=n[i]},blockSize:4,ivSize:2});function u(){for(var t=this._X,e=this._C,r=0;r<8;r++)c[r]=e[r];for(e[0]=e[0]+1295307597+this._b|0,e[1]=e[1]+3545052371+(e[0]>>>0<c[0]>>>0?1:0)|0,e[2]=e[2]+886263092+(e[1]>>>0<c[1]>>>0?1:0)|0,e[3]=e[3]+1295307597+(e[2]>>>0<c[2]>>>0?1:0)|0,e[4]=e[4]+3545052371+(e[3]>>>0<c[3]>>>0?1:0)|0,e[5]=e[5]+886263092+(e[4]>>>0<c[4]>>>0?1:0)|0,e[6]=e[6]+1295307597+(e[5]>>>0<c[5]>>>0?1:0)|0,e[7]=e[7]+3545052371+(e[6]>>>0<c[6]>>>0?1:0)|0,this._b=e[7]>>>0<c[7]>>>0?1:0,r=0;r<8;r++){var i=t[r]+e[r],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,a=((4294901760&i)*i|0)+((65535&i)*i|0);h[r]=s^a}t[0]=h[0]+(h[7]<<16|h[7]>>>16)+(h[6]<<16|h[6]>>>16)|0,t[1]=h[1]+(h[0]<<8|h[0]>>>24)+h[7]|0,t[2]=h[2]+(h[1]<<16|h[1]>>>16)+(h[0]<<16|h[0]>>>16)|0,t[3]=h[3]+(h[2]<<8|h[2]>>>24)+h[1]|0,t[4]=h[4]+(h[3]<<16|h[3]>>>16)+(h[2]<<16|h[2]>>>16)|0,t[5]=h[5]+(h[4]<<8|h[4]>>>24)+h[3]|0,t[6]=h[6]+(h[5]<<16|h[5]>>>16)+(h[4]<<16|h[4]>>>16)|0,t[7]=h[7]+(h[6]<<8|h[6]>>>24)+h[5]|0}t.RabbitLegacy=e._createHelper(i)}(),o.RabbitLegacy)}],n.c=i,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=10).SimpleCrypto;function n(t){if(i[t])return i[t].exports;var e=i[t]={i:t,l:!1,exports:{}};return r[t].call(e.exports,e,e.exports,n),e.l=!0,e.exports}var r,i},"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.SimpleCrypto=e():t.SimpleCrypto=e();