varX=i(312),K=i(625),J=i(626);t.Buffer=r,t.SlowBuffer=g,t.INSPECT_MAX_BYTES=50,r.TYPED_ARRAY_SUPPORT=void0!==e.TYPED_ARRAY_SUPPORT?e.TYPED_ARRAY_SUPPORT:function(){try{vare=newUint8Array(1);returne.__proto__={__proto__:Uint8Array.prototype,foo:function(){return42}},42===e.foo()&&"function"==typeofe.subarray&&0===e.subarray(1,1).byteLength}catch(e){return!1}}(),t.kMaxLength=o(),r.poolSize=8192,r._augment=function(e){returne.__proto__=r.prototype,e},r.from=function(e,t,i){returna(null,e,t,i)},r.TYPED_ARRAY_SUPPORT&&(r.prototype.__proto__=Uint8Array.prototype,r.__proto__=Uint8Array,"undefined"!=typeofSymbol&&Symbol.species&&r[Symbol.species]===r&&Object.defineProperty(r,Symbol.species,{value:null,configurable:!0})),r.alloc=function(e,t,i){returns(null,e,t,i)},r.allocUnsafe=function(e){returnc(null,e)},r.allocUnsafeSlow=function(e){returnc(null,e)},r.isBuffer=function(e){return!(null==e||!e._isBuffer)},r.compare=function(e,t){if(!r.isBuffer(e)||!r.isBuffer(t))thrownewTypeError("Arguments must be Buffers");if(e===t)return0;for(vari=e.length,o=t.length,n=0,a=Math.min(i,o);n<a;++n)if(e[n]!==t[n]){i=e[n],o=t[n];break}returni<o?-1:o<i?1:0},r.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},r.concat=function(e,t){if(!J(e))thrownewTypeError('"list" argument must be an Array of Buffers');if(0===e.length)returnr.alloc(0);vari;if(void0===t)for(t=0,i=0;i<e.length;++i)t+=e[i].length;varo=r.allocUnsafe(t),n=0;for(i=0;i<e.length;++i){vara=e[i];if(!r.isBuffer(a))thrownewTypeError('"list" argument must be an Array of Buffers');a.copy(o,n),n+=a.length}returno},r.byteLength=m,r.prototype._isBuffer=!0,r.prototype.swap16=function(){vare=this.length;if(e%2!=0)thrownewRangeError("Buffer size must be a multiple of 16-bits");for(vart=0;t<e;t+=2)b(this,t,t+1);returnthis},r.prototype.swap32=function(){vare=this.length;if(e%4!=0)thrownewRangeError("Buffer size must be a multiple of 32-bits");for(vart=0;t<e;t+=4)b(this,t,t+3),b(this,t+1,t+2);returnthis},r.prototype.swap64=function(){vare=this.length;if(e%8!=0)thrownewRangeError("Buffer size must be a multiple of 64-bits");for(vart=0;t<e;t+=8)b(this,t,t+7),b(this,t+1,t+6),b(this,t+2,t+5),b(this,t+3,t+4);returnthis},r.prototype.toString=function(){vare=0|this.length;return0===e?"":0===arguments.length?T(this,0,e):v.apply(this,arguments)},r.prototype.equals=function(e){if(!r.isBuffer(e))thrownewTypeError("Argument must be a Buffer");returnthis===e||0===r.compare(this,e)},r.prototype.inspect=function(){vare="",i=t.INSPECT_MAX_BYTES;returnthis.length>0&&(e=this.toString("hex",0,i).match(/.{2}/g).join(" "),this.length>i&&(e+=" ... ")),"<Buffer "+e+">"},r.prototype.compare=function(e,t,i,o,n){if(!r.isBuffer(e))thrownewTypeError("Argument must be a Buffer");if(void0===t&&(t=0),void0===i&&(i=e?e.length:0),void0===o&&(o=0),void0===n&&(n=this.length),t<0||i>e.length||o<0||n>this.length)thrownewRangeError("out of range index");if(o>=n&&t>=i)return0;if(o>=n)return-1;if(t>=i)return1;if(t>>>=0,i>>>=0,o>>>=0,n>>>=0,this===e)return0;for(vara=n-o,l=i-t,s=Math.min(a,l),c=this.slice(o,n),u=e.slice(t,i),d=0;d<s;++d)if(c[d]!==u[d]){a=c[d],l=u[d];break}returna<l?-1:l<a?1:0},r.prototype.includes=function(e,t,i){return-1!==this.indexOf(e,t,i)},r.prototype.indexOf=function(e,t,i){returnx(this,e,t,i,!0)},r.prototype.lastIndexOf=function(e,t,i){returnx(this,e,t,i,!1)},r.prototype.write=function(e,t,i,o){if(void0===t)o="utf8",i=this.length,t=0;elseif(void0===i&&"string"==typeoft)o=t,i=this.length,t=0;else{if(!isFinite(t))thrownewError("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(i)?(i|=0,void0===o&&(o="utf8")):(o=i,i=void0)}varn=this.length-t;if((void0===i||i>n)&&(i=n),e.length>0&&(i<0||t<0)||t>this.length)thrownewRangeError("Attempt to write outside buffer bounds");o||(o="utf8");for(varr=!1;;)switch(o){case"hex":returny(this,e,t,i);case"utf8