@libp2p/identify 2.1.0-21cf7bc56 → 2.1.0-6573cb8b0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.min.js +3 -3
- package/package.json +8 -8
package/dist/index.min.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
(function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.Libp2PIdentify = factory()}(typeof self !== 'undefined' ? self : this, function () {
|
|
2
|
-
"use strict";var Libp2PIdentify=(()=>{var ou=Object.create;var ln=Object.defineProperty;var iu=Object.getOwnPropertyDescriptor;var au=Object.getOwnPropertyNames;var cu=Object.getPrototypeOf,lu=Object.prototype.hasOwnProperty;var Ki=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),de=(r,e)=>{for(var t in e)ln(r,t,{get:e[t],enumerable:!0})},qi=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of au(e))!lu.call(r,s)&&s!==t&&ln(r,s,{get:()=>e[s],enumerable:!(n=iu(e,s))||n.enumerable});return r};var $i=(r,e,t)=>(t=r!=null?ou(cu(r)):{},qi(e||!r||!r.__esModule?ln(t,"default",{value:r,enumerable:!0}):t,r)),uu=r=>qi(ln({},"__esModule",{value:!0}),r);var Ga=Ki(wr=>{"use strict";var Fh="[object ArrayBuffer]",xt=class r{static isArrayBuffer(e){return Object.prototype.toString.call(e)===Fh}static toArrayBuffer(e){return this.isArrayBuffer(e)?e:e.byteLength===e.buffer.byteLength||e.byteOffset===0&&e.byteLength===e.buffer.byteLength?e.buffer:this.toUint8Array(e.buffer).slice(e.byteOffset,e.byteOffset+e.byteLength).buffer}static toUint8Array(e){return this.toView(e,Uint8Array)}static toView(e,t){if(e.constructor===t)return e;if(this.isArrayBuffer(e))return new t(e);if(this.isArrayBufferView(e))return new t(e.buffer,e.byteOffset,e.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(e){return this.isArrayBufferView(e)||this.isArrayBuffer(e)}static isArrayBufferView(e){return ArrayBuffer.isView(e)||e&&this.isArrayBuffer(e.buffer)}static isEqual(e,t){let n=r.toUint8Array(e),s=r.toUint8Array(t);if(n.length!==s.byteLength)return!1;for(let o=0;o<n.length;o++)if(n[o]!==s[o])return!1;return!0}static concat(...e){let t;Array.isArray(e[0])&&!(e[1]instanceof Function)||Array.isArray(e[0])&&e[1]instanceof Function?t=e[0]:e[e.length-1]instanceof Function?t=e.slice(0,e.length-1):t=e;let n=0;for(let i of t)n+=i.byteLength;let s=new Uint8Array(n),o=0;for(let i of t){let a=this.toUint8Array(i);s.set(a,o),o+=a.length}return e[e.length-1]instanceof Function?this.toView(s,e[e.length-1]):s.buffer}},Go="string",Kh=/^[0-9a-f]+$/i,qh=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,$h=/^[a-zA-Z0-9-_]+$/,Tn=class{static fromString(e){let t=unescape(encodeURIComponent(e)),n=new Uint8Array(t.length);for(let s=0;s<t.length;s++)n[s]=t.charCodeAt(s);return n.buffer}static toString(e){let t=xt.toUint8Array(e),n="";for(let o=0;o<t.length;o++)n+=String.fromCharCode(t[o]);return decodeURIComponent(escape(n))}},De=class{static toString(e,t=!1){let n=xt.toArrayBuffer(e),s=new DataView(n),o="";for(let i=0;i<n.byteLength;i+=2){let a=s.getUint16(i,t);o+=String.fromCharCode(a)}return o}static fromString(e,t=!1){let n=new ArrayBuffer(e.length*2),s=new DataView(n);for(let o=0;o<e.length;o++)s.setUint16(o*2,e.charCodeAt(o),t);return n}},_n=class r{static isHex(e){return typeof e===Go&&Kh.test(e)}static isBase64(e){return typeof e===Go&&qh.test(e)}static isBase64Url(e){return typeof e===Go&&$h.test(e)}static ToString(e,t="utf8"){let n=xt.toUint8Array(e);switch(t.toLowerCase()){case"utf8":return this.ToUtf8String(n);case"binary":return this.ToBinary(n);case"hex":return this.ToHex(n);case"base64":return this.ToBase64(n);case"base64url":return this.ToBase64Url(n);case"utf16le":return De.toString(n,!0);case"utf16":case"utf16be":return De.toString(n);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromString(e,t="utf8"){if(!e)return new ArrayBuffer(0);switch(t.toLowerCase()){case"utf8":return this.FromUtf8String(e);case"binary":return this.FromBinary(e);case"hex":return this.FromHex(e);case"base64":return this.FromBase64(e);case"base64url":return this.FromBase64Url(e);case"utf16le":return De.fromString(e,!0);case"utf16":case"utf16be":return De.fromString(e);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToBase64(e){let t=xt.toUint8Array(e);if(typeof btoa<"u"){let n=this.ToString(t,"binary");return btoa(n)}else return Buffer.from(t).toString("base64")}static FromBase64(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64(t))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(t)):new Uint8Array(Buffer.from(t,"base64")).buffer}static FromBase64Url(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64Url(t))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(t.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(e){return this.ToBase64(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.FromBinary(e);case"utf8":return Tn.fromString(e);case"utf16":case"utf16be":return De.fromString(e);case"utf16le":case"usc2":return De.fromString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.ToBinary(e);case"utf8":return Tn.toString(e);case"utf16":case"utf16be":return De.toString(e);case"utf16le":case"usc2":return De.toString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromBinary(e){let t=e.length,n=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);return n.buffer}static ToBinary(e){let t=xt.toUint8Array(e),n="";for(let s=0;s<t.length;s++)n+=String.fromCharCode(t[s]);return n}static ToHex(e){let t=xt.toUint8Array(e),n="",s=t.length;for(let o=0;o<s;o++){let i=t[o];i<16&&(n+="0"),n+=i.toString(16)}return n}static FromHex(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isHex(t))throw new TypeError("Argument 'hexString' is not HEX encoded");t.length%2&&(t=`0${t}`);let n=new Uint8Array(t.length/2);for(let s=0;s<t.length;s=s+2){let o=t.slice(s,s+2);n[s/2]=parseInt(o,16)}return n.buffer}static ToUtf16String(e,t=!1){return De.toString(e,t)}static FromUtf16String(e,t=!1){return De.fromString(e,t)}static Base64Padding(e){let t=4-e.length%4;if(t<4)for(let n=0;n<t;n++)e+="=";return e}static formatString(e){return e?.replace(/[\n\r\t ]/g,"")||""}};_n.DEFAULT_UTF8_ENCODING="utf8";function Gh(r,...e){let t=arguments[0];for(let n=1;n<arguments.length;n++){let s=arguments[n];for(let o in s)t[o]=s[o]}return t}function zh(...r){let e=r.map(s=>s.byteLength).reduce((s,o)=>s+o),t=new Uint8Array(e),n=0;return r.map(s=>new Uint8Array(s)).forEach(s=>{for(let o of s)t[n++]=o}),t.buffer}function jh(r,e){if(!(r&&e)||r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<r.byteLength;s++)if(t[s]!==n[s])return!1;return!0}wr.BufferSourceConverter=xt;wr.Convert=_n;wr.assign=Gh;wr.combine=zh;wr.isEqual=jh});var Ll=Ki((Fw,Cl)=>{function Zd(){return!!(typeof window<"u"&&typeof window.process=="object"&&window.process.type==="renderer"||typeof process<"u"&&typeof process.versions=="object"&&process.versions.electron||typeof navigator=="object"&&typeof navigator.userAgent=="string"&&navigator.userAgent.indexOf("Electron")>=0)}Cl.exports=Zd});var cp={};de(cp,{identify:()=>ip,identifyPush:()=>ap});var Hs=Symbol.for("@libp2p/peer-id");var C=class extends Error{code;props;constructor(e,t,n){super(e),this.code=t,this.name=n?.name??"CodeError",this.props=n??{}}};var Lr=(r,...e)=>{try{[...e]}catch{}};var un=Symbol.for("@libp2p/service-capabilities"),dp=Symbol.for("@libp2p/service-dependencies");var qo={};de(qo,{Ed25519PrivateKey:()=>Jt,Ed25519PublicKey:()=>Kr,generateKeyPair:()=>Dh,generateKeyPairFromSeed:()=>$a,unmarshalEd25519PrivateKey:()=>Vh,unmarshalEd25519PublicKey:()=>Oh});var Gs={};de(Gs,{base58btc:()=>oe,base58flickr:()=>mu});var Op=new Uint8Array(0);function Gi(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ut(r){if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")}function zi(r){return new TextEncoder().encode(r)}function ji(r){return new TextDecoder().decode(r)}function fu(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var s=0;s<r.length;s++){var o=r.charAt(s),i=o.charCodeAt(0);if(t[i]!==255)throw new TypeError(o+" is ambiguous");t[i]=s}var a=r.length,c=r.charAt(0),f=Math.log(a)/Math.log(256),u=Math.log(256)/Math.log(a);function l(p){if(p instanceof Uint8Array||(ArrayBuffer.isView(p)?p=new Uint8Array(p.buffer,p.byteOffset,p.byteLength):Array.isArray(p)&&(p=Uint8Array.from(p))),!(p instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(p.length===0)return"";for(var h=0,g=0,b=0,B=p.length;b!==B&&p[b]===0;)b++,h++;for(var w=(B-b)*u+1>>>0,T=new Uint8Array(w);b!==B;){for(var x=p[b],A=0,N=w-1;(x!==0||A<g)&&N!==-1;N--,A++)x+=256*T[N]>>>0,T[N]=x%a>>>0,x=x/a>>>0;if(x!==0)throw new Error("Non-zero carry");g=A,b++}for(var R=w-g;R!==w&&T[R]===0;)R++;for(var W=c.repeat(h);R<w;++R)W+=r.charAt(T[R]);return W}function d(p){if(typeof p!="string")throw new TypeError("Expected String");if(p.length===0)return new Uint8Array;var h=0;if(p[h]!==" "){for(var g=0,b=0;p[h]===c;)g++,h++;for(var B=(p.length-h)*f+1>>>0,w=new Uint8Array(B);p[h];){var T=t[p.charCodeAt(h)];if(T===255)return;for(var x=0,A=B-1;(T!==0||x<b)&&A!==-1;A--,x++)T+=a*w[A]>>>0,w[A]=T%256>>>0,T=T/256>>>0;if(T!==0)throw new Error("Non-zero carry");b=x,h++}if(p[h]!==" "){for(var N=B-b;N!==B&&w[N]===0;)N++;for(var R=new Uint8Array(g+(B-N)),W=g;N!==B;)R[W++]=w[N++];return R}}}function y(p){var h=d(p);if(h)return h;throw new Error(`Non-${e} character`)}return{encode:l,decodeUnsafe:d,decode:y}}var hu=fu,du=hu,Yi=du;var Fs=class{name;prefix;baseEncode;constructor(e,t,n){this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},Ks=class{name;prefix;baseDecode;prefixCodePoint;constructor(e,t,n){if(this.name=e,this.prefix=t,t.codePointAt(0)===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=t.codePointAt(0),this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return Zi(this,e)}},qs=class{decoders;constructor(e){this.decoders=e}or(e){return Zi(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n!=null)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function Zi(r,e){return new qs({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}var $s=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(e,t,n,s){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=s,this.encoder=new Fs(e,t,n),this.decoder=new Ks(e,t,s)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}};function rr({name:r,prefix:e,encode:t,decode:n}){return new $s(r,e,t,n)}function kt({name:r,prefix:e,alphabet:t}){let{encode:n,decode:s}=Yi(t,r);return rr({prefix:e,name:r,encode:n,decode:o=>ut(s(o))})}function pu(r,e,t,n){let s={};for(let u=0;u<e.length;++u)s[e[u]]=u;let o=r.length;for(;r[o-1]==="=";)--o;let i=new Uint8Array(o*t/8|0),a=0,c=0,f=0;for(let u=0;u<o;++u){let l=s[r[u]];if(l===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|l,a+=t,a>=8&&(a-=8,i[f++]=255&c>>a)}if(a>=t||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return i}function gu(r,e,t){let n=e[e.length-1]==="=",s=(1<<t)-1,o="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>t;)i-=t,o+=e[s&a>>i];if(i!==0&&(o+=e[s&a<<t-i]),n)for(;o.length*t&7;)o+="=";return o}function re({name:r,prefix:e,bitsPerChar:t,alphabet:n}){return rr({prefix:e,name:r,encode(s){return gu(s,n,t)},decode(s){return pu(s,n,t,r)}})}var oe=kt({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),mu=kt({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var js={};de(js,{identity:()=>ft});var yu=Qi,Ji=128,bu=127,wu=~bu,xu=Math.pow(2,31);function Qi(r,e,t){e=e||[],t=t||0;for(var n=t;r>=xu;)e[t++]=r&255|Ji,r/=128;for(;r&wu;)e[t++]=r&255|Ji,r>>>=7;return e[t]=r|0,Qi.bytes=t-n+1,e}var vu=zs,Eu=128,Xi=127;function zs(r,n){var t=0,n=n||0,s=0,o=n,i,a=r.length;do{if(o>=a)throw zs.bytes=0,new RangeError("Could not decode varint");i=r[o++],t+=s<28?(i&Xi)<<s:(i&Xi)*Math.pow(2,s),s+=7}while(i>=Eu);return zs.bytes=o-n,t}var Bu=Math.pow(2,7),Au=Math.pow(2,14),Iu=Math.pow(2,21),Su=Math.pow(2,28),ku=Math.pow(2,35),Nu=Math.pow(2,42),Ru=Math.pow(2,49),Tu=Math.pow(2,56),_u=Math.pow(2,63),Cu=function(r){return r<Bu?1:r<Au?2:r<Iu?3:r<Su?4:r<ku?5:r<Nu?6:r<Ru?7:r<Tu?8:r<_u?9:10},Lu={encode:yu,decode:vu,encodingLength:Cu},Uu=Lu,Ur=Uu;function Pr(r,e=0){return[Ur.decode(r,e),Ur.decode.bytes]}function nr(r,e,t=0){return Ur.encode(r,e,t),e}function sr(r){return Ur.encodingLength(r)}function Qe(r,e){let t=e.byteLength,n=sr(r),s=n+sr(t),o=new Uint8Array(s+t);return nr(r,o,0),nr(t,o,n),o.set(e,s),new or(r,t,e,o)}function $t(r){let e=ut(r),[t,n]=Pr(e),[s,o]=Pr(e.subarray(n)),i=e.subarray(n+o);if(i.byteLength!==s)throw new Error("Incorrect length");return new or(t,s,i,e)}function ea(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&Gi(r.bytes,t.bytes)}}var or=class{code;size;digest;bytes;constructor(e,t,n,s){this.code=e,this.size=t,this.digest=n,this.bytes=s}};var ta=0,Pu="identity",ra=ut;function Vu(r){return Qe(ta,ra(r))}var ft={code:ta,name:Pu,encode:ra,digest:Vu};var Zs={};de(Zs,{sha256:()=>be,sha512:()=>Ou});function Ys({name:r,code:e,encode:t}){return new Ws(r,e,t)}var Ws=class{name;code;encode;constructor(e,t,n){this.name=e,this.code=t,this.encode=n}digest(e){if(e instanceof Uint8Array){let t=this.encode(e);return t instanceof Uint8Array?Qe(this.code,t):t.then(n=>Qe(this.code,n))}else throw Error("Unknown type, must be binary type")}};function sa(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var be=Ys({name:"sha2-256",code:18,encode:sa("SHA-256")}),Ou=Ys({name:"sha2-512",code:19,encode:sa("SHA-512")});function pe(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ht(r=0){return new Uint8Array(r)}function Re(r=0){return new Uint8Array(r)}function Se(r,e){e==null&&(e=r.reduce((s,o)=>s+o.length,0));let t=Re(e),n=0;for(let s of r)t.set(s,n),n+=s.length;return t}var Js={};de(Js,{base10:()=>Du});var Du=kt({prefix:"9",name:"base10",alphabet:"0123456789"});var Xs={};de(Xs,{base16:()=>Mu,base16upper:()=>Hu});var Mu=re({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Hu=re({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var Qs={};de(Qs,{base2:()=>Fu});var Fu=re({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var eo={};de(eo,{base256emoji:()=>zu});var oa=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),Ku=oa.reduce((r,e,t)=>(r[t]=e,r),[]),qu=oa.reduce((r,e,t)=>(r[e.codePointAt(0)]=t,r),[]);function $u(r){return r.reduce((e,t)=>(e+=Ku[t],e),"")}function Gu(r){let e=[];for(let t of r){let n=qu[t.codePointAt(0)];if(n===void 0)throw new Error(`Non-base256emoji character: ${t}`);e.push(n)}return new Uint8Array(e)}var zu=rr({prefix:"\u{1F680}",name:"base256emoji",encode:$u,decode:Gu});var to={};de(to,{base32:()=>dt,base32hex:()=>Zu,base32hexpad:()=>Xu,base32hexpadupper:()=>Qu,base32hexupper:()=>Ju,base32pad:()=>Wu,base32padupper:()=>Yu,base32upper:()=>ju,base32z:()=>ef});var dt=re({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),ju=re({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Wu=re({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Yu=re({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Zu=re({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Ju=re({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Xu=re({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),Qu=re({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),ef=re({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var ro={};de(ro,{base36:()=>tf,base36upper:()=>rf});var tf=kt({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),rf=kt({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var oo={};de(oo,{base64:()=>no,base64pad:()=>nf,base64url:()=>so,base64urlpad:()=>sf});var no=re({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),nf=re({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),so=re({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),sf=re({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var io={};de(io,{base8:()=>of});var of=re({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var ao={};de(ao,{identity:()=>af});var af=rr({prefix:"\0",name:"identity",encode:r=>ji(r),decode:r=>zi(r)});var f0=new TextEncoder,h0=new TextDecoder;function ia(r,e){let{bytes:t,version:n}=r;switch(n){case 0:return ff(t,co(r),e??oe.encoder);default:return hf(t,co(r),e??dt.encoder)}}var aa=new WeakMap;function co(r){let e=aa.get(r);if(e==null){let t=new Map;return aa.set(r,t),t}return e}var Pe=class r{code;version;multihash;bytes;"/";constructor(e,t,n,s){this.code=t,this.version=e,this.multihash=n,this.bytes=s,this["/"]=s}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==Vr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==df)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(t)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:e,digest:t}=this.multihash,n=Qe(e,t);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(e){return r.equals(this,e)}static equals(e,t){let n=t;return n!=null&&e.code===n.code&&e.version===n.version&&ea(e.multihash,n.multihash)}toString(e){return ia(this,e)}toJSON(){return{"/":ia(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof r)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:s,multihash:o,bytes:i}=t;return new r(n,s,o,i??ca(n,s,o.bytes))}else if(t[pf]===!0){let{version:n,multihash:s,code:o}=t,i=$t(s);return r.create(n,o,i)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==Vr)throw new Error(`Version 0 CID must use dag-pb (code: ${Vr}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let s=ca(e,t,n.bytes);return new r(e,t,n,s)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,Vr,e)}static createV1(e,t){return r.create(1,e,t)}static decode(e){let[t,n]=r.decodeFirst(e);if(n.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=r.inspectBytes(e),n=t.size-t.multihashSize,s=ut(e.subarray(n,n+t.multihashSize));if(s.byteLength!==t.multihashSize)throw new Error("Incorrect length");let o=s.subarray(t.multihashSize-t.digestSize),i=new or(t.multihashCode,t.digestSize,o,s);return[t.version===0?r.createV0(i):r.createV1(t.codec,i),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[l,d]=Pr(e.subarray(t));return t+=d,l},s=n(),o=Vr;if(s===18?(s=0,t=0):o=n(),s!==0&&s!==1)throw new RangeError(`Invalid CID version ${s}`);let i=t,a=n(),c=n(),f=t+c,u=f-i;return{version:s,codec:o,multihashCode:a,digestSize:c,multihashSize:u,size:f}}static parse(e,t){let[n,s]=uf(e,t),o=r.decode(s);if(o.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return co(o).set(n,e),o}};function uf(r,e){switch(r[0]){case"Q":{let t=e??oe;return[oe.prefix,t.decode(`${oe.prefix}${r}`)]}case oe.prefix:{let t=e??oe;return[oe.prefix,t.decode(r)]}case dt.prefix:{let t=e??dt;return[dt.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}}function ff(r,e,t){let{prefix:n}=t;if(n!==oe.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let s=e.get(n);if(s==null){let o=t.encode(r).slice(1);return e.set(n,o),o}else return s}function hf(r,e,t){let{prefix:n}=t,s=e.get(n);if(s==null){let o=t.encode(r);return e.set(n,o),o}else return s}var Vr=112,df=18;function ca(r,e,t){let n=sr(r),s=n+sr(e),o=new Uint8Array(s+t.byteLength);return nr(r,o,0),nr(e,o,n),o.set(t,s),o}var pf=Symbol.for("@ipld/js-cid/CID");var Nt={...ao,...Qs,...io,...Js,...Xs,...to,...ro,...Gs,...oo,...eo},N0={...Zs,...js};function ua(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var la=ua("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),lo=ua("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=Re(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),gf={utf8:la,"utf-8":la,hex:Nt.base16,latin1:lo,ascii:lo,binary:lo,...Nt},hn=gf;function M(r,e="utf8"){let t=hn[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}function Ve(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function ir(r){if(!Number.isSafeInteger(r)||r<0)throw new Error(`positive integer expected, not ${r}`)}function mf(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function ar(r,...e){if(!mf(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error(`Uint8Array expected of length ${e}, not of length=${r.length}`)}function dn(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");ir(r.outputLen),ir(r.blockLen)}function cr(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function fa(r,e){ar(r);let t=e.outputLen;if(r.length<t)throw new Error(`digestInto() expects output buffer of length at least ${t}`)}var pn=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;var ur=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),Fe=(r,e)=>r<<32-e|r>>>e;var K0=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;var yf=async()=>{};async function ha(r,e,t){let n=Date.now();for(let s=0;s<r;s++){t(s);let o=Date.now()-n;o>=0&&o<e||(await yf(),n+=o)}}function da(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function Rt(r){return typeof r=="string"&&(r=da(r)),ar(r),r}function uo(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];ar(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let o=r[n];t.set(o,s),s+=o.length}return t}var lr=class{clone(){return this._cloneInto()}},bf={}.toString;function pa(r,e){if(e!==void 0&&bf.call(e)!=="[object Object]")throw new Error("Options should be object or undefined");return Object.assign(r,e)}function gn(r){let e=n=>r().update(Rt(n)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function fr(r=32){if(pn&&typeof pn.getRandomValues=="function")return pn.getRandomValues(new Uint8Array(r));throw new Error("crypto.getRandomValues must be defined")}function wf(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let s=BigInt(32),o=BigInt(4294967295),i=Number(t>>s&o),a=Number(t&o),c=n?4:0,f=n?0:4;r.setUint32(e+c,i,n),r.setUint32(e+f,a,n)}var ga=(r,e,t)=>r&e^~r&t,ma=(r,e,t)=>r&e^r&t^e&t,hr=class extends lr{constructor(e,t,n,s){super(),this.blockLen=e,this.outputLen=t,this.padOffset=n,this.isLE=s,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=ur(this.buffer)}update(e){cr(this);let{view:t,buffer:n,blockLen:s}=this;e=Rt(e);let o=e.length;for(let i=0;i<o;){let a=Math.min(s-this.pos,o-i);if(a===s){let c=ur(e);for(;s<=o-i;i+=s)this.process(c,i);continue}n.set(e.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===s&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){cr(this),fa(e,this),this.finished=!0;let{buffer:t,view:n,blockLen:s,isLE:o}=this,{pos:i}=this;t[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>s-i&&(this.process(n,0),i=0);for(let l=i;l<s;l++)t[l]=0;wf(n,s-8,BigInt(this.length*8),o),this.process(n,0);let a=ur(e),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let f=c/4,u=this.get();if(f>u.length)throw new Error("_sha2: outputLen bigger than state");for(let l=0;l<f;l++)a.setUint32(4*l,u[l],o)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let n=e.slice(0,t);return this.destroy(),n}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:n,length:s,finished:o,destroyed:i,pos:a}=this;return e.length=s,e.pos=a,e.finished=o,e.destroyed=i,s%t&&e.buffer.set(n),e}};var mn=BigInt(4294967295),fo=BigInt(32);function ya(r,e=!1){return e?{h:Number(r&mn),l:Number(r>>fo&mn)}:{h:Number(r>>fo&mn)|0,l:Number(r&mn)|0}}function xf(r,e=!1){let t=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let s=0;s<r.length;s++){let{h:o,l:i}=ya(r[s],e);[t[s],n[s]]=[o,i]}return[t,n]}var vf=(r,e)=>BigInt(r>>>0)<<fo|BigInt(e>>>0),Ef=(r,e,t)=>r>>>t,Bf=(r,e,t)=>r<<32-t|e>>>t,Af=(r,e,t)=>r>>>t|e<<32-t,If=(r,e,t)=>r<<32-t|e>>>t,Sf=(r,e,t)=>r<<64-t|e>>>t-32,kf=(r,e,t)=>r>>>t-32|e<<64-t,Nf=(r,e)=>e,Rf=(r,e)=>r,Tf=(r,e,t)=>r<<t|e>>>32-t,_f=(r,e,t)=>e<<t|r>>>32-t,Cf=(r,e,t)=>e<<t-32|r>>>64-t,Lf=(r,e,t)=>r<<t-32|e>>>64-t;function Uf(r,e,t,n){let s=(e>>>0)+(n>>>0);return{h:r+t+(s/2**32|0)|0,l:s|0}}var Pf=(r,e,t)=>(r>>>0)+(e>>>0)+(t>>>0),Vf=(r,e,t,n)=>e+t+n+(r/2**32|0)|0,Of=(r,e,t,n)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0),Df=(r,e,t,n,s)=>e+t+n+s+(r/2**32|0)|0,Mf=(r,e,t,n,s)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0)+(s>>>0),Hf=(r,e,t,n,s,o)=>e+t+n+s+o+(r/2**32|0)|0;var Ff={fromBig:ya,split:xf,toBig:vf,shrSH:Ef,shrSL:Bf,rotrSH:Af,rotrSL:If,rotrBH:Sf,rotrBL:kf,rotr32H:Nf,rotr32L:Rf,rotlSH:Tf,rotlSL:_f,rotlBH:Cf,rotlBL:Lf,add:Uf,add3L:Pf,add3H:Vf,add4L:Of,add4H:Df,add5H:Hf,add5L:Mf},U=Ff;var[Kf,qf]=U.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(r=>BigInt(r))),Tt=new Uint32Array(80),_t=new Uint32Array(80),ho=class extends hr{constructor(){super(128,64,16,!1),this.Ah=1779033703,this.Al=-205731576,this.Bh=-1150833019,this.Bl=-2067093701,this.Ch=1013904242,this.Cl=-23791573,this.Dh=-1521486534,this.Dl=1595750129,this.Eh=1359893119,this.El=-1377402159,this.Fh=-1694144372,this.Fl=725511199,this.Gh=528734635,this.Gl=-79577749,this.Hh=1541459225,this.Hl=327033209}get(){let{Ah:e,Al:t,Bh:n,Bl:s,Ch:o,Cl:i,Dh:a,Dl:c,Eh:f,El:u,Fh:l,Fl:d,Gh:y,Gl:p,Hh:h,Hl:g}=this;return[e,t,n,s,o,i,a,c,f,u,l,d,y,p,h,g]}set(e,t,n,s,o,i,a,c,f,u,l,d,y,p,h,g){this.Ah=e|0,this.Al=t|0,this.Bh=n|0,this.Bl=s|0,this.Ch=o|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=f|0,this.El=u|0,this.Fh=l|0,this.Fl=d|0,this.Gh=y|0,this.Gl=p|0,this.Hh=h|0,this.Hl=g|0}process(e,t){for(let w=0;w<16;w++,t+=4)Tt[w]=e.getUint32(t),_t[w]=e.getUint32(t+=4);for(let w=16;w<80;w++){let T=Tt[w-15]|0,x=_t[w-15]|0,A=U.rotrSH(T,x,1)^U.rotrSH(T,x,8)^U.shrSH(T,x,7),N=U.rotrSL(T,x,1)^U.rotrSL(T,x,8)^U.shrSL(T,x,7),R=Tt[w-2]|0,W=_t[w-2]|0,q=U.rotrSH(R,W,19)^U.rotrBH(R,W,61)^U.shrSH(R,W,6),P=U.rotrSL(R,W,19)^U.rotrBL(R,W,61)^U.shrSL(R,W,6),ae=U.add4L(N,P,_t[w-7],_t[w-16]),se=U.add4H(ae,A,q,Tt[w-7],Tt[w-16]);Tt[w]=se|0,_t[w]=ae|0}let{Ah:n,Al:s,Bh:o,Bl:i,Ch:a,Cl:c,Dh:f,Dl:u,Eh:l,El:d,Fh:y,Fl:p,Gh:h,Gl:g,Hh:b,Hl:B}=this;for(let w=0;w<80;w++){let T=U.rotrSH(l,d,14)^U.rotrSH(l,d,18)^U.rotrBH(l,d,41),x=U.rotrSL(l,d,14)^U.rotrSL(l,d,18)^U.rotrBL(l,d,41),A=l&y^~l&h,N=d&p^~d&g,R=U.add5L(B,x,N,qf[w],_t[w]),W=U.add5H(R,b,T,A,Kf[w],Tt[w]),q=R|0,P=U.rotrSH(n,s,28)^U.rotrBH(n,s,34)^U.rotrBH(n,s,39),ae=U.rotrSL(n,s,28)^U.rotrBL(n,s,34)^U.rotrBL(n,s,39),se=n&o^n&a^o&a,Ue=s&i^s&c^i&c;b=h|0,B=g|0,h=y|0,g=p|0,y=l|0,p=d|0,{h:l,l:d}=U.add(f|0,u|0,W|0,q|0),f=a|0,u=c|0,a=o|0,c=i|0,o=n|0,i=s|0;let v=U.add3L(q,ae,Ue);n=U.add3H(v,W,P,se),s=v|0}({h:n,l:s}=U.add(this.Ah|0,this.Al|0,n|0,s|0)),{h:o,l:i}=U.add(this.Bh|0,this.Bl|0,o|0,i|0),{h:a,l:c}=U.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:f,l:u}=U.add(this.Dh|0,this.Dl|0,f|0,u|0),{h:l,l:d}=U.add(this.Eh|0,this.El|0,l|0,d|0),{h:y,l:p}=U.add(this.Fh|0,this.Fl|0,y|0,p|0),{h,l:g}=U.add(this.Gh|0,this.Gl|0,h|0,g|0),{h:b,l:B}=U.add(this.Hh|0,this.Hl|0,b|0,B|0),this.set(n,s,o,i,a,c,f,u,l,d,y,p,h,g,b,B)}roundClean(){Tt.fill(0),_t.fill(0)}destroy(){this.buffer.fill(0),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}};var Or=gn(()=>new ho);var bn={};de(bn,{abytes:()=>dr,bitGet:()=>Zf,bitLen:()=>Yf,bitMask:()=>Dr,bitSet:()=>Jf,bytesToHex:()=>gt,bytesToNumberBE:()=>mt,bytesToNumberLE:()=>Lt,concatBytes:()=>yt,createHmacDrbg:()=>mo,ensureBytes:()=>ne,equalBytes:()=>jf,hexToBytes:()=>zt,hexToNumber:()=>go,isBytes:()=>Ct,numberToBytesBE:()=>Ut,numberToBytesLE:()=>jt,numberToHexUnpadded:()=>va,numberToVarBytesBE:()=>zf,utf8ToBytes:()=>Wf,validateObject:()=>et});var xa=BigInt(0),yn=BigInt(1),$f=BigInt(2);function Ct(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function dr(r){if(!Ct(r))throw new Error("Uint8Array expected")}var Gf=Array.from({length:256},(r,e)=>e.toString(16).padStart(2,"0"));function gt(r){dr(r);let e="";for(let t=0;t<r.length;t++)e+=Gf[r[t]];return e}function va(r){let e=r.toString(16);return e.length&1?`0${e}`:e}function go(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return BigInt(r===""?"0":`0x${r}`)}var pt={_0:48,_9:57,_A:65,_F:70,_a:97,_f:102};function ba(r){if(r>=pt._0&&r<=pt._9)return r-pt._0;if(r>=pt._A&&r<=pt._F)return r-(pt._A-10);if(r>=pt._a&&r<=pt._f)return r-(pt._a-10)}function zt(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let e=r.length,t=e/2;if(e%2)throw new Error("padded hex string expected, got unpadded hex of length "+e);let n=new Uint8Array(t);for(let s=0,o=0;s<t;s++,o+=2){let i=ba(r.charCodeAt(o)),a=ba(r.charCodeAt(o+1));if(i===void 0||a===void 0){let c=r[o]+r[o+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+o)}n[s]=i*16+a}return n}function mt(r){return go(gt(r))}function Lt(r){return dr(r),go(gt(Uint8Array.from(r).reverse()))}function Ut(r,e){return zt(r.toString(16).padStart(e*2,"0"))}function jt(r,e){return Ut(r,e).reverse()}function zf(r){return zt(va(r))}function ne(r,e,t){let n;if(typeof e=="string")try{n=zt(e)}catch(o){throw new Error(`${r} must be valid hex string, got "${e}". Cause: ${o}`)}else if(Ct(e))n=Uint8Array.from(e);else throw new Error(`${r} must be hex string or Uint8Array`);let s=n.length;if(typeof t=="number"&&s!==t)throw new Error(`${r} expected ${t} bytes, got ${s}`);return n}function yt(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];dr(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let o=r[n];t.set(o,s),s+=o.length}return t}function jf(r,e){if(r.length!==e.length)return!1;let t=0;for(let n=0;n<r.length;n++)t|=r[n]^e[n];return t===0}function Wf(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function Yf(r){let e;for(e=0;r>xa;r>>=yn,e+=1);return e}function Zf(r,e){return r>>BigInt(e)&yn}function Jf(r,e,t){return r|(t?yn:xa)<<BigInt(e)}var Dr=r=>($f<<BigInt(r-1))-yn,po=r=>new Uint8Array(r),wa=r=>Uint8Array.from(r);function mo(r,e,t){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof e!="number"||e<2)throw new Error("qByteLen must be a number");if(typeof t!="function")throw new Error("hmacFn must be a function");let n=po(r),s=po(r),o=0,i=()=>{n.fill(1),s.fill(0),o=0},a=(...l)=>t(s,n,...l),c=(l=po())=>{s=a(wa([0]),l),n=a(),l.length!==0&&(s=a(wa([1]),l),n=a())},f=()=>{if(o++>=1e3)throw new Error("drbg: tried 1000 values");let l=0,d=[];for(;l<e;){n=a();let y=n.slice();d.push(y),l+=n.length}return yt(...d)};return(l,d)=>{i(),c(l);let y;for(;!(y=d(f()));)c();return i(),y}}var Xf={bigint:r=>typeof r=="bigint",function:r=>typeof r=="function",boolean:r=>typeof r=="boolean",string:r=>typeof r=="string",stringOrUint8Array:r=>typeof r=="string"||Ct(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,e)=>e.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function et(r,e,t={}){let n=(s,o,i)=>{let a=Xf[o];if(typeof a!="function")throw new Error(`Invalid validator "${o}", expected function`);let c=r[s];if(!(i&&c===void 0)&&!a(c,r))throw new Error(`Invalid param ${String(s)}=${c} (${typeof c}), expected ${o}`)};for(let[s,o]of Object.entries(e))n(s,o,!1);for(let[s,o]of Object.entries(t))n(s,o,!0);return r}var fe=BigInt(0),X=BigInt(1),Wt=BigInt(2),Qf=BigInt(3),yo=BigInt(4),Ea=BigInt(5),Ba=BigInt(8),eh=BigInt(9),th=BigInt(16);function Z(r,e){let t=r%e;return t>=fe?t:e+t}function rh(r,e,t){if(t<=fe||e<fe)throw new Error("Expected power/modulo > 0");if(t===X)return fe;let n=X;for(;e>fe;)e&X&&(n=n*r%t),r=r*r%t,e>>=X;return n}function Q(r,e,t){let n=r;for(;e-- >fe;)n*=n,n%=t;return n}function wn(r,e){if(r===fe||e<=fe)throw new Error(`invert: expected positive integers, got n=${r} mod=${e}`);let t=Z(r,e),n=e,s=fe,o=X,i=X,a=fe;for(;t!==fe;){let f=n/t,u=n%t,l=s-i*f,d=o-a*f;n=t,t=u,s=i,o=a,i=l,a=d}if(n!==X)throw new Error("invert: does not exist");return Z(s,e)}function nh(r){let e=(r-X)/Wt,t,n,s;for(t=r-X,n=0;t%Wt===fe;t/=Wt,n++);for(s=Wt;s<r&&rh(s,e,r)!==r-X;s++);if(n===1){let i=(r+X)/yo;return function(c,f){let u=c.pow(f,i);if(!c.eql(c.sqr(u),f))throw new Error("Cannot find square root");return u}}let o=(t+X)/Wt;return function(a,c){if(a.pow(c,e)===a.neg(a.ONE))throw new Error("Cannot find square root");let f=n,u=a.pow(a.mul(a.ONE,s),t),l=a.pow(c,o),d=a.pow(c,t);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let y=1;for(let h=a.sqr(d);y<f&&!a.eql(h,a.ONE);y++)h=a.sqr(h);let p=a.pow(u,X<<BigInt(f-y-1));u=a.sqr(p),l=a.mul(l,p),d=a.mul(d,u),f=y}return l}}function sh(r){if(r%yo===Qf){let e=(r+X)/yo;return function(n,s){let o=n.pow(s,e);if(!n.eql(n.sqr(o),s))throw new Error("Cannot find square root");return o}}if(r%Ba===Ea){let e=(r-Ea)/Ba;return function(n,s){let o=n.mul(s,Wt),i=n.pow(o,e),a=n.mul(s,i),c=n.mul(n.mul(a,Wt),i),f=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(f),s))throw new Error("Cannot find square root");return f}}return r%th,nh(r)}var Aa=(r,e)=>(Z(r,e)&X)===X,oh=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function bo(r){let e={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},t=oh.reduce((n,s)=>(n[s]="function",n),e);return et(r,t)}function ih(r,e,t){if(t<fe)throw new Error("Expected power > 0");if(t===fe)return r.ONE;if(t===X)return e;let n=r.ONE,s=e;for(;t>fe;)t&X&&(n=r.mul(n,s)),s=r.sqr(s),t>>=X;return n}function ah(r,e){let t=new Array(e.length),n=e.reduce((o,i,a)=>r.is0(i)?o:(t[a]=o,r.mul(o,i)),r.ONE),s=r.inv(n);return e.reduceRight((o,i,a)=>r.is0(i)?o:(t[a]=r.mul(o,t[a]),r.mul(o,i)),s),t}function wo(r,e){let t=e!==void 0?e:r.toString(2).length,n=Math.ceil(t/8);return{nBitLength:t,nByteLength:n}}function xn(r,e,t=!1,n={}){if(r<=fe)throw new Error(`Expected Field ORDER > 0, got ${r}`);let{nBitLength:s,nByteLength:o}=wo(r,e);if(o>2048)throw new Error("Field lengths over 2048 bytes are not supported");let i=sh(r),a=Object.freeze({ORDER:r,BITS:s,BYTES:o,MASK:Dr(s),ZERO:fe,ONE:X,create:c=>Z(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error(`Invalid field element: expected bigint, got ${typeof c}`);return fe<=c&&c<r},is0:c=>c===fe,isOdd:c=>(c&X)===X,neg:c=>Z(-c,r),eql:(c,f)=>c===f,sqr:c=>Z(c*c,r),add:(c,f)=>Z(c+f,r),sub:(c,f)=>Z(c-f,r),mul:(c,f)=>Z(c*f,r),pow:(c,f)=>ih(a,c,f),div:(c,f)=>Z(c*wn(f,r),r),sqrN:c=>c*c,addN:(c,f)=>c+f,subN:(c,f)=>c-f,mulN:(c,f)=>c*f,inv:c=>wn(c,r),sqrt:n.sqrt||(c=>i(a,c)),invertBatch:c=>ah(a,c),cmov:(c,f,u)=>u?f:c,toBytes:c=>t?jt(c,o):Ut(c,o),fromBytes:c=>{if(c.length!==o)throw new Error(`Fp.fromBytes: expected ${o}, got ${c.length}`);return t?Lt(c):mt(c)}});return Object.freeze(a)}function Ia(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let e=r.toString(2).length;return Math.ceil(e/8)}function xo(r){let e=Ia(r);return e+Math.ceil(e/2)}function Sa(r,e,t=!1){let n=r.length,s=Ia(e),o=xo(e);if(n<16||n<o||n>1024)throw new Error(`expected ${o}-1024 bytes of input, got ${n}`);let i=t?mt(r):Lt(r),a=Z(i,e-X)+X;return t?jt(a,s):Ut(a,s)}var lh=BigInt(0),vo=BigInt(1);function vn(r,e){let t=(s,o)=>{let i=o.negate();return s?i:o},n=s=>{let o=Math.ceil(e/s)+1,i=2**(s-1);return{windows:o,windowSize:i}};return{constTimeNegate:t,unsafeLadder(s,o){let i=r.ZERO,a=s;for(;o>lh;)o&vo&&(i=i.add(a)),a=a.double(),o>>=vo;return i},precomputeWindow(s,o){let{windows:i,windowSize:a}=n(o),c=[],f=s,u=f;for(let l=0;l<i;l++){u=f,c.push(u);for(let d=1;d<a;d++)u=u.add(f),c.push(u);f=u.double()}return c},wNAF(s,o,i){let{windows:a,windowSize:c}=n(s),f=r.ZERO,u=r.BASE,l=BigInt(2**s-1),d=2**s,y=BigInt(s);for(let p=0;p<a;p++){let h=p*c,g=Number(i&l);i>>=y,g>c&&(g-=d,i+=vo);let b=h,B=h+Math.abs(g)-1,w=p%2!==0,T=g<0;g===0?u=u.add(t(w,o[b])):f=f.add(t(T,o[B]))}return{p:f,f:u}},wNAFCached(s,o,i,a){let c=s._WINDOW_SIZE||1,f=o.get(s);return f||(f=this.precomputeWindow(s,c),c!==1&&o.set(s,a(f))),this.wNAF(c,f,i)}}}function Mr(r){return bo(r.Fp),et(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...wo(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Ke=BigInt(0),Ce=BigInt(1),En=BigInt(2),uh=BigInt(8),fh={zip215:!0};function hh(r){let e=Mr(r);return et(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...e})}function ka(r){let e=hh(r),{Fp:t,n,prehash:s,hash:o,randomBytes:i,nByteLength:a,h:c}=e,f=En<<BigInt(a*8)-Ce,u=t.create,l=e.uvRatio||((E,m)=>{try{return{isValid:!0,value:t.sqrt(E*t.inv(m))}}catch{return{isValid:!1,value:Ke}}}),d=e.adjustScalarBytes||(E=>E),y=e.domain||((E,m,S)=>{if(m.length||S)throw new Error("Contexts/pre-hash are not supported");return E}),p=E=>typeof E=="bigint"&&Ke<E,h=(E,m)=>p(E)&&p(m)&&E<m,g=E=>E===Ke||h(E,f);function b(E,m){if(h(E,m))return E;throw new Error(`Expected valid scalar < ${m}, got ${typeof E} ${E}`)}function B(E){return E===Ke?E:b(E,n)}let w=new Map;function T(E){if(!(E instanceof x))throw new Error("ExtendedPoint expected")}class x{constructor(m,S,_,L){if(this.ex=m,this.ey=S,this.ez=_,this.et=L,!g(m))throw new Error("x required");if(!g(S))throw new Error("y required");if(!g(_))throw new Error("z required");if(!g(L))throw new Error("t required")}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(m){if(m instanceof x)throw new Error("extended point not allowed");let{x:S,y:_}=m||{};if(!g(S)||!g(_))throw new Error("invalid affine point");return new x(S,_,Ce,u(S*_))}static normalizeZ(m){let S=t.invertBatch(m.map(_=>_.ez));return m.map((_,L)=>_.toAffine(S[L])).map(x.fromAffine)}_setWindowSize(m){this._WINDOW_SIZE=m,w.delete(this)}assertValidity(){let{a:m,d:S}=e;if(this.is0())throw new Error("bad point: ZERO");let{ex:_,ey:L,ez:O,et:D}=this,G=u(_*_),K=u(L*L),$=u(O*O),ce=u($*$),te=u(G*m),me=u($*u(te+K)),ye=u(ce+u(S*u(G*K)));if(me!==ye)throw new Error("bad point: equation left != right (1)");let ue=u(_*L),ve=u(O*D);if(ue!==ve)throw new Error("bad point: equation left != right (2)")}equals(m){T(m);let{ex:S,ey:_,ez:L}=this,{ex:O,ey:D,ez:G}=m,K=u(S*G),$=u(O*L),ce=u(_*G),te=u(D*L);return K===$&&ce===te}is0(){return this.equals(x.ZERO)}negate(){return new x(u(-this.ex),this.ey,this.ez,u(-this.et))}double(){let{a:m}=e,{ex:S,ey:_,ez:L}=this,O=u(S*S),D=u(_*_),G=u(En*u(L*L)),K=u(m*O),$=S+_,ce=u(u($*$)-O-D),te=K+D,me=te-G,ye=K-D,ue=u(ce*me),ve=u(te*ye),lt=u(ce*ye),qt=u(me*te);return new x(ue,ve,qt,lt)}add(m){T(m);let{a:S,d:_}=e,{ex:L,ey:O,ez:D,et:G}=this,{ex:K,ey:$,ez:ce,et:te}=m;if(S===BigInt(-1)){let Pi=u((O-L)*($+K)),Vi=u((O+L)*($-K)),Ms=u(Vi-Pi);if(Ms===Ke)return this.double();let Oi=u(D*En*te),Di=u(G*En*ce),Mi=Di+Oi,Hi=Vi+Pi,Fi=Di-Oi,tu=u(Mi*Ms),ru=u(Hi*Fi),nu=u(Mi*Fi),su=u(Ms*Hi);return new x(tu,ru,su,nu)}let me=u(L*K),ye=u(O*$),ue=u(G*_*te),ve=u(D*ce),lt=u((L+O)*(K+$)-me-ye),qt=ve-ue,Cr=ve+ue,Ui=u(ye-S*me),Jl=u(lt*qt),Xl=u(Cr*Ui),Ql=u(lt*Ui),eu=u(qt*Cr);return new x(Jl,Xl,eu,Ql)}subtract(m){return this.add(m.negate())}wNAF(m){return R.wNAFCached(this,w,m,x.normalizeZ)}multiply(m){let{p:S,f:_}=this.wNAF(b(m,n));return x.normalizeZ([S,_])[0]}multiplyUnsafe(m){let S=B(m);return S===Ke?N:this.equals(N)||S===Ce?this:this.equals(A)?this.wNAF(S).p:R.unsafeLadder(this,S)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return R.unsafeLadder(this,n).is0()}toAffine(m){let{ex:S,ey:_,ez:L}=this,O=this.is0();m==null&&(m=O?uh:t.inv(L));let D=u(S*m),G=u(_*m),K=u(L*m);if(O)return{x:Ke,y:Ce};if(K!==Ce)throw new Error("invZ was invalid");return{x:D,y:G}}clearCofactor(){let{h:m}=e;return m===Ce?this:this.multiplyUnsafe(m)}static fromHex(m,S=!1){let{d:_,a:L}=e,O=t.BYTES;m=ne("pointHex",m,O);let D=m.slice(),G=m[O-1];D[O-1]=G&-129;let K=Lt(D);K===Ke||(S?b(K,f):b(K,t.ORDER));let $=u(K*K),ce=u($-Ce),te=u(_*$-L),{isValid:me,value:ye}=l(ce,te);if(!me)throw new Error("Point.fromHex: invalid y coordinate");let ue=(ye&Ce)===Ce,ve=(G&128)!==0;if(!S&&ye===Ke&&ve)throw new Error("Point.fromHex: x=0 and x_0=1");return ve!==ue&&(ye=u(-ye)),x.fromAffine({x:ye,y:K})}static fromPrivateKey(m){return P(m).point}toRawBytes(){let{x:m,y:S}=this.toAffine(),_=jt(S,t.BYTES);return _[_.length-1]|=m&Ce?128:0,_}toHex(){return gt(this.toRawBytes())}}x.BASE=new x(e.Gx,e.Gy,Ce,u(e.Gx*e.Gy)),x.ZERO=new x(Ke,Ce,Ce,Ke);let{BASE:A,ZERO:N}=x,R=vn(x,a*8);function W(E){return Z(E,n)}function q(E){return W(Lt(E))}function P(E){let m=a;E=ne("private key",E,m);let S=ne("hashed private key",o(E),2*m),_=d(S.slice(0,m)),L=S.slice(m,2*m),O=q(_),D=A.multiply(O),G=D.toRawBytes();return{head:_,prefix:L,scalar:O,point:D,pointBytes:G}}function ae(E){return P(E).pointBytes}function se(E=new Uint8Array,...m){let S=yt(...m);return q(o(y(S,ne("context",E),!!s)))}function Ue(E,m,S={}){E=ne("message",E),s&&(E=s(E));let{prefix:_,scalar:L,pointBytes:O}=P(m),D=se(S.context,_,E),G=A.multiply(D).toRawBytes(),K=se(S.context,G,O,E),$=W(D+K*L);B($);let ce=yt(G,jt($,t.BYTES));return ne("result",ce,a*2)}let v=fh;function k(E,m,S,_=v){let{context:L,zip215:O}=_,D=t.BYTES;E=ne("signature",E,2*D),m=ne("message",m),s&&(m=s(m));let G=Lt(E.slice(D,2*D)),K,$,ce;try{K=x.fromHex(S,O),$=x.fromHex(E.slice(0,D),O),ce=A.multiplyUnsafe(G)}catch{return!1}if(!O&&K.isSmallOrder())return!1;let te=se(L,$.toRawBytes(),K.toRawBytes(),m);return $.add(K.multiplyUnsafe(te)).subtract(ce).clearCofactor().equals(x.ZERO)}return A._setWindowSize(8),{CURVE:e,getPublicKey:ae,sign:Ue,verify:k,ExtendedPoint:x,utils:{getExtendedPublicKey:P,randomPrivateKey:()=>i(t.BYTES),precompute(E=8,m=x.BASE){return m._setWindowSize(E),m.multiply(BigInt(3)),m}}}}var Eo=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),Na=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),fg=BigInt(0),dh=BigInt(1),Ra=BigInt(2),hg=BigInt(3),ph=BigInt(5),gh=BigInt(8);function mh(r){let e=BigInt(10),t=BigInt(20),n=BigInt(40),s=BigInt(80),o=Eo,a=r*r%o*r%o,c=Q(a,Ra,o)*a%o,f=Q(c,dh,o)*r%o,u=Q(f,ph,o)*f%o,l=Q(u,e,o)*u%o,d=Q(l,t,o)*l%o,y=Q(d,n,o)*d%o,p=Q(y,s,o)*y%o,h=Q(p,s,o)*y%o,g=Q(h,e,o)*u%o;return{pow_p_5_8:Q(g,Ra,o)*r%o,b2:a}}function yh(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function bh(r,e){let t=Eo,n=Z(e*e*e,t),s=Z(n*n*e,t),o=mh(r*s).pow_p_5_8,i=Z(r*n*o,t),a=Z(e*i*i,t),c=i,f=Z(i*Na,t),u=a===r,l=a===Z(-r,t),d=a===Z(-r*Na,t);return u&&(i=c),(l||d)&&(i=f),Aa(i,t)&&(i=Z(-i,t)),{isValid:u||l,value:i}}var wh=xn(Eo,void 0,!0),xh={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:wh,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:gh,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Or,randomBytes:fr,adjustScalarBytes:yh,uvRatio:bh},pr=ka(xh);var gr=32,bt=64,Bn=32;function Ta(){let r=pr.utils.randomPrivateKey(),e=pr.getPublicKey(r);return{privateKey:Ua(r,e),publicKey:e}}function _a(r){if(r.length!==Bn)throw new TypeError('"seed" must be 32 bytes in length.');if(!(r instanceof Uint8Array))throw new TypeError('"seed" must be a node.js Buffer, or Uint8Array.');let e=r,t=pr.getPublicKey(e);return{privateKey:Ua(e,t),publicKey:t}}function Ca(r,e){let t=r.subarray(0,Bn);return pr.sign(e instanceof Uint8Array?e:e.subarray(),t)}function La(r,e,t){return pr.verify(e,t instanceof Uint8Array?t:t.subarray(),r)}function Ua(r,e){let t=new Uint8Array(bt);for(let n=0;n<Bn;n++)t[n]=r[n],t[Bn+n]=e[n];return t}var ke={get(r=globalThis){let e=r.crypto;if(e==null||e.subtle==null)throw Object.assign(new Error("Missing Web Crypto API. The most likely cause of this error is that this page is being accessed from an insecure context (i.e. not HTTPS). For more information and possible resolutions see https://github.com/libp2p/js-libp2p/blob/main/packages/crypto/README.md#web-crypto-api"),{code:"ERR_MISSING_WEB_CRYPTO"});return e}};var Bo={alg:"A128GCM",ext:!0,k:"scm9jmO_4BJAgdwWGVulLg",key_ops:["encrypt","decrypt"],kty:"oct"};function Pa(r){let e=r?.algorithm??"AES-GCM",t=r?.keyLength??16,n=r?.nonceLength??12,s=r?.digest??"SHA-256",o=r?.saltLength??16,i=r?.iterations??32767,a=ke.get();t*=8;async function c(l,d){let y=a.getRandomValues(new Uint8Array(o)),p=a.getRandomValues(new Uint8Array(n)),h={name:e,iv:p};typeof d=="string"&&(d=M(d));let g;if(d.length===0){g=await a.subtle.importKey("jwk",Bo,{name:"AES-GCM"},!0,["encrypt"]);try{let B={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},w=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);g=await a.subtle.deriveKey(B,w,{name:e,length:t},!0,["encrypt"])}catch{g=await a.subtle.importKey("jwk",Bo,{name:"AES-GCM"},!0,["encrypt"])}}else{let B={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},w=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);g=await a.subtle.deriveKey(B,w,{name:e,length:t},!0,["encrypt"])}let b=await a.subtle.encrypt(h,g,l);return Se([y,h.iv,new Uint8Array(b)])}async function f(l,d){let y=l.subarray(0,o),p=l.subarray(o,o+n),h=l.subarray(o+n),g={name:e,iv:p};typeof d=="string"&&(d=M(d));let b;if(d.length===0)try{let w={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},T=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);b=await a.subtle.deriveKey(w,T,{name:e,length:t},!0,["decrypt"])}catch{b=await a.subtle.importKey("jwk",Bo,{name:"AES-GCM"},!0,["decrypt"])}else{let w={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},T=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);b=await a.subtle.deriveKey(w,T,{name:e,length:t},!0,["decrypt"])}let B=await a.subtle.decrypt(g,b,h);return new Uint8Array(B)}return{encrypt:c,decrypt:f}}async function mr(r,e){let n=await Pa().encrypt(r,e);return no.encode(n)}var Bh=Math.pow(2,7),Ah=Math.pow(2,14),Ih=Math.pow(2,21),Ao=Math.pow(2,28),Io=Math.pow(2,35),So=Math.pow(2,42),ko=Math.pow(2,49),Y=128,Ee=127;function Be(r){if(r<Bh)return 1;if(r<Ah)return 2;if(r<Ih)return 3;if(r<Ao)return 4;if(r<Io)return 5;if(r<So)return 6;if(r<ko)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function No(r,e,t=0){switch(Be(r)){case 8:e[t++]=r&255|Y,r/=128;case 7:e[t++]=r&255|Y,r/=128;case 6:e[t++]=r&255|Y,r/=128;case 5:e[t++]=r&255|Y,r/=128;case 4:e[t++]=r&255|Y,r>>>=7;case 3:e[t++]=r&255|Y,r>>>=7;case 2:e[t++]=r&255|Y,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function Sh(r,e,t=0){switch(Be(r)){case 8:e.set(t++,r&255|Y),r/=128;case 7:e.set(t++,r&255|Y),r/=128;case 6:e.set(t++,r&255|Y),r/=128;case 5:e.set(t++,r&255|Y),r/=128;case 4:e.set(t++,r&255|Y),r>>>=7;case 3:e.set(t++,r&255|Y),r>>>=7;case 2:e.set(t++,r&255|Y),r>>>=7;case 1:{e.set(t++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return e}function Ro(r,e){let t=r[e],n=0;if(n+=t&Ee,t<Y||(t=r[e+1],n+=(t&Ee)<<7,t<Y)||(t=r[e+2],n+=(t&Ee)<<14,t<Y)||(t=r[e+3],n+=(t&Ee)<<21,t<Y)||(t=r[e+4],n+=(t&Ee)*Ao,t<Y)||(t=r[e+5],n+=(t&Ee)*Io,t<Y)||(t=r[e+6],n+=(t&Ee)*So,t<Y)||(t=r[e+7],n+=(t&Ee)*ko,t<Y))return n;throw new RangeError("Could not decode varint")}function kh(r,e){let t=r.get(e),n=0;if(n+=t&Ee,t<Y||(t=r.get(e+1),n+=(t&Ee)<<7,t<Y)||(t=r.get(e+2),n+=(t&Ee)<<14,t<Y)||(t=r.get(e+3),n+=(t&Ee)<<21,t<Y)||(t=r.get(e+4),n+=(t&Ee)*Ao,t<Y)||(t=r.get(e+5),n+=(t&Ee)*Io,t<Y)||(t=r.get(e+6),n+=(t&Ee)*So,t<Y)||(t=r.get(e+7),n+=(t&Ee)*ko,t<Y))return n;throw new RangeError("Could not decode varint")}function Oe(r,e,t=0){return e==null&&(e=Re(Be(r))),e instanceof Uint8Array?No(r,e,t):Sh(r,e,t)}function wt(r,e=0){return r instanceof Uint8Array?Ro(r,e):kh(r,e)}var To=new Float32Array([-0]),Pt=new Uint8Array(To.buffer);function Va(r,e,t){To[0]=r,e[t]=Pt[0],e[t+1]=Pt[1],e[t+2]=Pt[2],e[t+3]=Pt[3]}function Oa(r,e){return Pt[0]=r[e],Pt[1]=r[e+1],Pt[2]=r[e+2],Pt[3]=r[e+3],To[0]}var _o=new Float64Array([-0]),Ae=new Uint8Array(_o.buffer);function Da(r,e,t){_o[0]=r,e[t]=Ae[0],e[t+1]=Ae[1],e[t+2]=Ae[2],e[t+3]=Ae[3],e[t+4]=Ae[4],e[t+5]=Ae[5],e[t+6]=Ae[6],e[t+7]=Ae[7]}function Ma(r,e){return Ae[0]=r[e],Ae[1]=r[e+1],Ae[2]=r[e+2],Ae[3]=r[e+3],Ae[4]=r[e+4],Ae[5]=r[e+5],Ae[6]=r[e+6],Ae[7]=r[e+7],_o[0]}var Nh=BigInt(Number.MAX_SAFE_INTEGER),Rh=BigInt(Number.MIN_SAFE_INTEGER),Le=class r{lo;hi;constructor(e,t){this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(BigInt(t)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}static fromBigInt(e){if(e===0n)return Yt;if(e<Nh&&e>Rh)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,s=e-(n<<32n);return t&&(n=~n|0n,s=~s|0n,++s>Ha&&(s=0n,++n>Ha&&(n=0n))),new r(Number(s),Number(n))}static fromNumber(e){if(e===0)return Yt;let t=e<0;t&&(e=-e);let n=e>>>0,s=(e-n)/4294967296>>>0;return t&&(s=~s>>>0,n=~n>>>0,++n>4294967295&&(n=0,++s>4294967295&&(s=0))),new r(n,s)}static from(e){return typeof e=="number"?r.fromNumber(e):typeof e=="bigint"?r.fromBigInt(e):typeof e=="string"?r.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new r(e.low>>>0,e.high>>>0):Yt}},Yt=new Le(0,0);Yt.toBigInt=function(){return 0n};Yt.zzEncode=Yt.zzDecode=function(){return this};Yt.length=function(){return 1};var Ha=4294967296n;function Fa(r){let e=0,t=0;for(let n=0;n<r.length;++n)t=r.charCodeAt(n),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,e+=4):e+=3;return e}function Ka(r,e,t){if(t-e<1)return"";let s,o=[],i=0,a;for(;e<t;)a=r[e++],a<128?o[i++]=a:a>191&&a<224?o[i++]=(a&31)<<6|r[e++]&63:a>239&&a<365?(a=((a&7)<<18|(r[e++]&63)<<12|(r[e++]&63)<<6|r[e++]&63)-65536,o[i++]=55296+(a>>10),o[i++]=56320+(a&1023)):o[i++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,i>8191&&((s??(s=[])).push(String.fromCharCode.apply(String,o)),i=0);return s!=null?(i>0&&s.push(String.fromCharCode.apply(String,o.slice(0,i))),s.join("")):String.fromCharCode.apply(String,o.slice(0,i))}function Co(r,e,t){let n=t,s,o;for(let i=0;i<r.length;++i)s=r.charCodeAt(i),s<128?e[t++]=s:s<2048?(e[t++]=s>>6|192,e[t++]=s&63|128):(s&64512)===55296&&((o=r.charCodeAt(i+1))&64512)===56320?(s=65536+((s&1023)<<10)+(o&1023),++i,e[t++]=s>>18|240,e[t++]=s>>12&63|128,e[t++]=s>>6&63|128,e[t++]=s&63|128):(e[t++]=s>>12|224,e[t++]=s>>6&63|128,e[t++]=s&63|128);return t-n}function qe(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function In(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}var Lo=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(e){this.buf=e,this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,qe(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw qe(this,4);return In(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw qe(this,4);return In(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw qe(this,4);let e=Oa(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw qe(this,4);let e=Ma(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw qe(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return Ka(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw qe(this,e);this.pos+=e}else do if(this.pos>=this.len)throw qe(this);while(this.buf[this.pos++]&128);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new Le(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw qe(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw qe(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw qe(this,8);let e=In(this.buf,this.pos+=4),t=In(this.buf,this.pos+=4);return new Le(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=Ro(this.buf,this.pos);return this.pos+=Be(e),e}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}};function Uo(r){return new Lo(r instanceof Uint8Array?r:r.subarray())}function $e(r,e,t){let n=Uo(r);return e.decode(n,void 0,t)}function Po(r){let e=r??8192,t=e>>>1,n,s=e;return function(i){if(i<1||i>t)return Re(i);s+i>e&&(n=Re(e),s=0);let a=n.subarray(s,s+=i);return s&7&&(s=(s|7)+1),a}}var Zt=class{fn;len;next;val;constructor(e,t,n){this.fn=e,this.len=t,this.next=void 0,this.val=n}};function Vo(){}var Do=class{head;tail;len;next;constructor(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},Th=Po();function _h(r){return globalThis.Buffer!=null?Re(r):Th(r)}var Fr=class{len;head;tail;states;constructor(){this.len=0,this.head=new Zt(Vo,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new Zt(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new Mo((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push(Sn,10,Le.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=Le.fromBigInt(e);return this._push(Sn,t.length(),t)}uint64Number(e){return this._push(No,Be(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=Le.fromBigInt(e).zzEncode();return this._push(Sn,t.length(),t)}sint64Number(e){let t=Le.fromNumber(e).zzEncode();return this._push(Sn,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(Oo,1,e?1:0)}fixed32(e){return this._push(Hr,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=Le.fromBigInt(e);return this._push(Hr,4,t.lo)._push(Hr,4,t.hi)}fixed64Number(e){let t=Le.fromNumber(e);return this._push(Hr,4,t.lo)._push(Hr,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Va,4,e)}double(e){return this._push(Da,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(Oo,1,0):this.uint32(t)._push(Lh,t,e)}string(e){let t=Fa(e);return t!==0?this.uint32(t)._push(Co,t,e):this._push(Oo,1,0)}fork(){return this.states=new Do(this),this.head=this.tail=new Zt(Vo,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new Zt(Vo,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=e.next,this.tail=t,this.len+=n),this}finish(){let e=this.head.next,t=_h(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};function Oo(r,e,t){e[t]=r&255}function Ch(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}var Mo=class extends Zt{next;constructor(e,t){super(Ch,e,t),this.next=void 0}};function Sn(r,e,t){for(;r.hi!==0;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}function Hr(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function Lh(r,e,t){e.set(r,t)}globalThis.Buffer!=null&&(Fr.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(Uh,e,r),this},Fr.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(Ph,e,r),this});function Uh(r,e,t){e.set(r,t)}function Ph(r,e,t){r.length<40?Co(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(M(r),t)}function Ho(){return new Fr}function Ge(r,e){let t=Ho();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var yr;(function(r){r[r.VARINT=0]="VARINT",r[r.BIT64=1]="BIT64",r[r.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",r[r.START_GROUP=3]="START_GROUP",r[r.END_GROUP=4]="END_GROUP",r[r.BIT32=5]="BIT32"})(yr||(yr={}));function kn(r,e,t,n){return{name:r,type:e,encode:t,decode:n}}function Fo(r){function e(s){if(r[s.toString()]==null)throw new Error("Invalid enum value");return r[s]}let t=function(o,i){let a=e(o);i.int32(a)},n=function(o){let i=o.int32();return e(i)};return kn("enum",yr.VARINT,t,n)}function ze(r,e){return kn("message",yr.LENGTH_DELIMITED,r,e)}var ee;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.Secp256k1="Secp256k1"})(ee||(ee={}));var Ko;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.Secp256k1=2]="Secp256k1"})(Ko||(Ko={}));(function(r){r.codec=()=>Fo(Ko)})(ee||(ee={}));var tt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),ee.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.Type=ee.codec().decode(t);break;case 2:s.Data=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(tt||(tt={}));var rt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),ee.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.Type=ee.codec().decode(t);break;case 2:s.Data=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(rt||(rt={}));var Kr=class{_key;constructor(e){this._key=br(e,gr)}verify(e,t){return La(this._key,t,e)}marshal(){return this._key}get bytes(){return tt.encode({Type:ee.Ed25519,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Ve(e)?e.then(({bytes:t})=>t):e.bytes}},Jt=class{_key;_publicKey;constructor(e,t){this._key=br(e,bt),this._publicKey=br(t,gr)}sign(e){return Ca(this._key,e)}get public(){return new Kr(this._publicKey)}marshal(){return this._key}get bytes(){return rt.encode({Type:ee.Ed25519,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}async hash(){let e=be.digest(this.bytes),t;return Ve(e)?{bytes:t}=await e:t=e.bytes,t}async id(){let e=ft.digest(this.public.bytes);return oe.encode(e.bytes).substring(1)}async export(e,t="libp2p-key"){if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};function Vh(r){if(r.length>bt){r=br(r,bt+gr);let n=r.subarray(0,bt),s=r.subarray(bt,r.length);return new Jt(n,s)}r=br(r,bt);let e=r.subarray(0,bt),t=r.subarray(gr);return new Jt(e,t)}function Oh(r){return r=br(r,gr),new Kr(r)}async function Dh(){let{privateKey:r,publicKey:e}=Ta();return new Jt(r,e)}async function $a(r){let{privateKey:e,publicKey:t}=_a(r);return new Jt(e,t)}function br(r,e){if(r=Uint8Array.from(r??[]),r.length!==e)throw new C(`Key must be a Uint8Array of length ${e}, got ${r.length}`,"ERR_INVALID_KEY_TYPE");return r}function H(r,e="utf8"){let t=hn[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.encoder.encode(r).substring(1)}var Qo={};de(Qo,{MAX_RSA_KEY_SIZE:()=>en,RsaPrivateKey:()=>Br,RsaPublicKey:()=>Qr,fromJwk:()=>fd,generateKeyPair:()=>hd,unmarshalRsaPrivateKey:()=>Jo,unmarshalRsaPublicKey:()=>ud});function Xt(r){if(isNaN(r)||r<=0)throw new C("random bytes length must be a Number bigger than 0","ERR_INVALID_LENGTH");return fr(r)}var Mt={};de(Mt,{exportToPem:()=>od,importFromPem:()=>id,jwkToPkcs1:()=>td,jwkToPkix:()=>nd,pkcs1ToJwk:()=>ed,pkixToJwk:()=>rd});var Rn=class extends lr{constructor(e,t){super(),this.finished=!1,this.destroyed=!1,dn(e);let n=Rt(t);if(this.iHash=e.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;let s=this.blockLen,o=new Uint8Array(s);o.set(n.length>s?e.create().update(n).digest():n);for(let i=0;i<o.length;i++)o[i]^=54;this.iHash.update(o),this.oHash=e.create();for(let i=0;i<o.length;i++)o[i]^=106;this.oHash.update(o),o.fill(0)}update(e){return cr(this),this.iHash.update(e),this}digestInto(e){cr(this),ar(e,this.outputLen),this.finished=!0,this.iHash.digestInto(e),this.oHash.update(e),this.oHash.digestInto(e),this.destroy()}digest(){let e=new Uint8Array(this.oHash.outputLen);return this.digestInto(e),e}_cloneInto(e){e||(e=Object.create(Object.getPrototypeOf(this),{}));let{oHash:t,iHash:n,finished:s,destroyed:o,blockLen:i,outputLen:a}=this;return e=e,e.finished=s,e.destroyed=o,e.blockLen=i,e.outputLen=a,e.oHash=t._cloneInto(e.oHash),e.iHash=n._cloneInto(e.iHash),e}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},qr=(r,e,t)=>new Rn(r,e).update(t).digest();qr.create=(r,e)=>new Rn(r,e);function Mh(r,e,t,n){dn(r);let s=pa({dkLen:32,asyncTick:10},n),{c:o,dkLen:i,asyncTick:a}=s;if(ir(o),ir(i),ir(a),o<1)throw new Error("PBKDF2: iterations (c) should be >= 1");let c=Rt(e),f=Rt(t),u=new Uint8Array(i),l=qr.create(r,c),d=l._cloneInto().update(f);return{c:o,dkLen:i,asyncTick:a,DK:u,PRF:l,PRFSalt:d}}function Hh(r,e,t,n,s){return r.destroy(),e.destroy(),n&&n.destroy(),s.fill(0),t}async function $o(r,e,t,n){let{c:s,dkLen:o,asyncTick:i,DK:a,PRF:c,PRFSalt:f}=Mh(r,e,t,n),u,l=new Uint8Array(4),d=ur(l),y=new Uint8Array(c.outputLen);for(let p=1,h=0;h<o;p++,h+=c.outputLen){let g=a.subarray(h,h+c.outputLen);d.setInt32(0,p,!1),(u=f._cloneInto(u)).update(l).digestInto(y),g.set(y.subarray(0,g.length)),await ha(s-1,i,()=>{c._cloneInto(u).update(y).digestInto(y);for(let b=0;b<g.length;b++)g[b]^=y[b]})}return Hh(c,f,a,u,y)}var F=$i(Ga());function Qt(r,e){let t=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)t+=r[r.length-1-n]*Math.pow(2,e*n);return t}function Vt(r,e,t=-1){let n=t,s=r,o=0,i=Math.pow(2,e);for(let a=1;a<8;a++){if(r<i){let c;if(n<0)c=new ArrayBuffer(a),o=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),o=n}let f=new Uint8Array(c);for(let u=a-1;u>=0;u--){let l=Math.pow(2,u*e);f[o-u-1]=Math.floor(s/l),s-=f[o-u-1]*l}return c}i*=Math.pow(2,e)}return new ArrayBuffer(0)}function Cn(...r){let e=0,t=0;for(let o of r)e+=o.length;let n=new ArrayBuffer(e),s=new Uint8Array(n);for(let o of r)s.set(o,t),t+=o.length;return s}function zo(){let r=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){let a=r[0]===255&&r[1]&128,c=r[0]===0&&(r[1]&128)===0;(a||c)&&this.warnings.push("Needlessly long format")}let e=new ArrayBuffer(this.valueHex.byteLength),t=new Uint8Array(e);for(let a=0;a<this.valueHex.byteLength;a++)t[a]=0;t[0]=r[0]&128;let n=Qt(t,8),s=new ArrayBuffer(this.valueHex.byteLength),o=new Uint8Array(s);for(let a=0;a<this.valueHex.byteLength;a++)o[a]=r[a];return o[0]&=127,Qt(o,8)-n}function za(r){let e=r<0?r*-1:r,t=128;for(let n=1;n<8;n++){if(e<=t){if(r<0){let i=t-e,a=Vt(i,8,n),c=new Uint8Array(a);return c[0]|=128,a}let s=Vt(e,8,n),o=new Uint8Array(s);if(o[0]&128){let i=s.slice(0),a=new Uint8Array(i);s=new ArrayBuffer(s.byteLength+1),o=new Uint8Array(s);for(let c=0;c<i.byteLength;c++)o[c+1]=a[c];o[0]=0}return s}t*=Math.pow(2,8)}return new ArrayBuffer(0)}function ja(r,e){if(r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<t.length;s++)if(t[s]!==n[s])return!1;return!0}function Te(r,e){let t=r.toString(10);if(e<t.length)return"";let n=e-t.length,s=new Array(n);for(let i=0;i<n;i++)s[i]="0";return s.join("").concat(t)}var xm=Math.log(2);function Ln(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function jo(r){let e=0,t=0;for(let s=0;s<r.length;s++){let o=r[s];e+=o.byteLength}let n=new Uint8Array(e);for(let s=0;s<r.length;s++){let o=r[s];n.set(new Uint8Array(o),t),t+=o.byteLength}return n.buffer}function At(r,e,t,n){return e instanceof Uint8Array?e.byteLength?t<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):e.byteLength-t-n<0?(r.error="End of input reached before message was fully decoded (inconsistent offset and length values)",!1):!0:(r.error="Wrong parameter: inputBuffer has zero length",!1):(r.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}var Gr=class{constructor(){this.items=[]}write(e){this.items.push(e)}final(){return jo(this.items)}},$r=[new Uint8Array([1])],Wa="0123456789";var vr="",We=new ArrayBuffer(0),Wo=new Uint8Array(0),zr="EndOfContent",Za="OCTET STRING",Ja="BIT STRING";function It(r){var e;return e=class extends r{constructor(...n){var s;super(...n);let o=n[0]||{};this.isHexOnly=(s=o.isHexOnly)!==null&&s!==void 0?s:!1,this.valueHexView=o.valueHex?F.BufferSourceConverter.toUint8Array(o.valueHex):Wo}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,s,o){let i=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!At(this,i,s,o))return-1;let a=s+o;return this.valueHexView=i.subarray(s,a),this.valueHexView.length?(this.blockLength=o,a):(this.warnings.push("Zero buffer length"),s)}toBER(n=!1){return this.isHexOnly?n?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",We)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:F.Convert.ToHex(this.valueHexView)}}},e.NAME="hexBlock",e}var vt=class{constructor({blockLength:e=0,error:t=vr,warnings:n=[],valueBeforeDecode:s=Wo}={}){this.blockLength=e,this.error=t,this.warnings=n,this.valueBeforeDecodeView=F.BufferSourceConverter.toUint8Array(s)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(e){this.valueBeforeDecodeView=new Uint8Array(e)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:F.Convert.ToHex(this.valueBeforeDecodeView)}}};vt.NAME="baseBlock";var Ie=class extends vt{fromBER(e,t,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(e,t){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Ie.NAME="valueBlock";var Un=class extends It(vt){constructor({idBlock:e={}}={}){var t,n,s,o;super(),e?(this.isHexOnly=(t=e.isHexOnly)!==null&&t!==void 0?t:!1,this.valueHexView=e.valueHex?F.BufferSourceConverter.toUint8Array(e.valueHex):Wo,this.tagClass=(n=e.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(s=e.tagNumber)!==null&&s!==void 0?s:-1,this.isConstructed=(o=e.isConstructed)!==null&&o!==void 0?o:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(e=!1){let t=0;switch(this.tagClass){case 1:t|=0;break;case 2:t|=64;break;case 3:t|=128;break;case 4:t|=192;break;default:return this.error="Unknown tag class",We}if(this.isConstructed&&(t|=32),this.tagNumber<31&&!this.isHexOnly){let s=new Uint8Array(1);if(!e){let o=this.tagNumber;o&=31,t|=o,s[0]=t}return s.buffer}if(!this.isHexOnly){let s=Vt(this.tagNumber,7),o=new Uint8Array(s),i=s.byteLength,a=new Uint8Array(i+1);if(a[0]=t|31,!e){for(let c=0;c<i-1;c++)a[c+1]=o[c]|128;a[i]=o[i-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=t|31,!e){let s=this.valueHexView;for(let o=0;o<s.length-1;o++)n[o+1]=s[o]|128;n[this.valueHexView.byteLength]=s[s.length-1]}return n.buffer}fromBER(e,t,n){let s=F.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let o=s.subarray(t,t+n);if(o.length===0)return this.error="Zero buffer length",-1;switch(o[0]&192){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=(o[0]&32)===32,this.isHexOnly=!1;let a=o[0]&31;if(a!==31)this.tagNumber=a,this.blockLength=1;else{let c=1,f=this.valueHexView=new Uint8Array(255),u=255;for(;o[c]&128;){if(f[c-1]=o[c]&127,c++,c>=o.length)return this.error="End of input reached before message was fully decoded",-1;if(c===u){u+=255;let d=new Uint8Array(u);for(let y=0;y<f.length;y++)d[y]=f[y];f=this.valueHexView=new Uint8Array(u)}}this.blockLength=c+1,f[c-1]=o[c]&127;let l=new Uint8Array(c);for(let d=0;d<c;d++)l[d]=f[d];f=this.valueHexView=new Uint8Array(c),f.set(l),this.blockLength<=9?this.tagNumber=Qt(f,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(this.tagClass===1&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return t+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Un.NAME="identificationBlock";var Pn=class extends vt{constructor({lenBlock:e={}}={}){var t,n,s;super(),this.isIndefiniteForm=(t=e.isIndefiniteForm)!==null&&t!==void 0?t:!1,this.longFormUsed=(n=e.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(s=e.length)!==null&&s!==void 0?s:0}fromBER(e,t,n){let s=F.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let o=s.subarray(t,t+n);if(o.length===0)return this.error="Zero buffer length",-1;if(o[0]===255)return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=o[0]===128,this.isIndefiniteForm)return this.blockLength=1,t+this.blockLength;if(this.longFormUsed=!!(o[0]&128),this.longFormUsed===!1)return this.length=o[0],this.blockLength=1,t+this.blockLength;let i=o[0]&127;if(i>8)return this.error="Too big integer",-1;if(i+1>o.length)return this.error="End of input reached before message was fully decoded",-1;let a=t+1,c=s.subarray(a,a+i);return c[i-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=Qt(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=i+1,t+this.blockLength}toBER(e=!1){let t,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=128),t;if(this.longFormUsed){let s=Vt(this.length,8);if(s.byteLength>127)return this.error="Too big length",We;if(t=new ArrayBuffer(s.byteLength+1),e)return t;let o=new Uint8Array(s);n=new Uint8Array(t),n[0]=s.byteLength|128;for(let i=0;i<s.byteLength;i++)n[i+1]=o[i];return t}return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=this.length),t}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Pn.NAME="lengthBlock";var I={},we=class extends vt{constructor({name:e=vr,optional:t=!1,primitiveSchema:n,...s}={},o){super(s),this.name=e,this.optional=t,n&&(this.primitiveSchema=n),this.idBlock=new Un(s),this.lenBlock=new Pn(s),this.valueBlock=o?new o(s):new Ie(s)}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}toBER(e,t){let n=t||new Gr;t||Xa(this);let s=this.idBlock.toBER(e);if(n.write(s),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(e,n),n.write(new ArrayBuffer(2));else{let o=this.valueBlock.toBER(e);this.lenBlock.length=o.byteLength;let i=this.lenBlock.toBER(e);n.write(i),n.write(o)}return t?We:n.final()}toJSON(){let e={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(e.primitiveSchema=this.primitiveSchema.toJSON()),e}toString(e="ascii"){return e==="ascii"?this.onAsciiEncoding():F.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${F.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(e){if(this===e)return!0;if(!(e instanceof this.constructor))return!1;let t=this.toBER(),n=e.toBER();return ja(t,n)}};we.NAME="BaseBlock";function Xa(r){if(r instanceof I.Constructed)for(let e of r.valueBlock.value)Xa(e)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var Vn=class extends we{constructor({value:e=vr,...t}={},n){super(t,n),e&&this.fromString(e)}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};Vn.NAME="BaseStringBlock";var On=class extends It(Ie){constructor({isHexOnly:e=!0,...t}={}){super(t),this.isHexOnly=e}};On.NAME="PrimitiveValueBlock";var Qa,Dn=class extends we{constructor(e={}){super(e,On),this.idBlock.isConstructed=!1}};Qa=Dn;I.Primitive=Qa;Dn.NAME="PRIMITIVE";function Yh(r,e){if(r instanceof e)return r;let t=new e;return t.idBlock=r.idBlock,t.lenBlock=r.lenBlock,t.warnings=r.warnings,t.valueBeforeDecodeView=r.valueBeforeDecodeView,t}function ys(r,e=0,t=r.length){let n=e,s=new we({},Ie),o=new vt;if(!At(o,r,e,t))return s.error=o.error,{offset:-1,result:s};if(!r.subarray(e,e+t).length)return s.error="Zero buffer length",{offset:-1,result:s};let a=s.idBlock.fromBER(r,e,t);if(s.idBlock.warnings.length&&s.warnings.concat(s.idBlock.warnings),a===-1)return s.error=s.idBlock.error,{offset:-1,result:s};if(e=a,t-=s.idBlock.blockLength,a=s.lenBlock.fromBER(r,e,t),s.lenBlock.warnings.length&&s.warnings.concat(s.lenBlock.warnings),a===-1)return s.error=s.lenBlock.error,{offset:-1,result:s};if(e=a,t-=s.lenBlock.blockLength,!s.idBlock.isConstructed&&s.lenBlock.isIndefiniteForm)return s.error="Indefinite length form used for primitive encoding form",{offset:-1,result:s};let c=we;switch(s.idBlock.tagClass){case 1:if(s.idBlock.tagNumber>=37&&s.idBlock.isHexOnly===!1)return s.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:s};switch(s.idBlock.tagNumber){case 0:if(s.idBlock.isConstructed&&s.lenBlock.length>0)return s.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:s};c=I.EndOfContent;break;case 1:c=I.Boolean;break;case 2:c=I.Integer;break;case 3:c=I.BitString;break;case 4:c=I.OctetString;break;case 5:c=I.Null;break;case 6:c=I.ObjectIdentifier;break;case 10:c=I.Enumerated;break;case 12:c=I.Utf8String;break;case 13:c=I.RelativeObjectIdentifier;break;case 14:c=I.TIME;break;case 15:return s.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:s};case 16:c=I.Sequence;break;case 17:c=I.Set;break;case 18:c=I.NumericString;break;case 19:c=I.PrintableString;break;case 20:c=I.TeletexString;break;case 21:c=I.VideotexString;break;case 22:c=I.IA5String;break;case 23:c=I.UTCTime;break;case 24:c=I.GeneralizedTime;break;case 25:c=I.GraphicString;break;case 26:c=I.VisibleString;break;case 27:c=I.GeneralString;break;case 28:c=I.UniversalString;break;case 29:c=I.CharacterString;break;case 30:c=I.BmpString;break;case 31:c=I.DATE;break;case 32:c=I.TimeOfDay;break;case 33:c=I.DateTime;break;case 34:c=I.Duration;break;default:{let f=s.idBlock.isConstructed?new I.Constructed:new I.Primitive;f.idBlock=s.idBlock,f.lenBlock=s.lenBlock,f.warnings=s.warnings,s=f}}break;case 2:case 3:case 4:default:c=s.idBlock.isConstructed?I.Constructed:I.Primitive}return s=Yh(s,c),a=s.fromBER(r,e,s.lenBlock.isIndefiniteForm?t:s.lenBlock.length),s.valueBeforeDecodeView=r.subarray(n,n+s.blockLength),{offset:a,result:s}}function Er(r){if(!r.byteLength){let e=new we({},Ie);return e.error="Input buffer has zero length",{offset:-1,result:e}}return ys(F.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function Zh(r,e){return r?1:e}var nt=class extends Ie{constructor({value:e=[],isIndefiniteForm:t=!1,...n}={}){super(n),this.value=e,this.isIndefiniteForm=t}fromBER(e,t,n){let s=F.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;if(this.valueBeforeDecodeView=s.subarray(t,t+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),t;let o=t;for(;Zh(this.isIndefiniteForm,n)>0;){let i=ys(s,o,n);if(i.offset===-1)return this.error=i.result.error,this.warnings.concat(i.result.warnings),-1;if(o=i.offset,this.blockLength+=i.result.blockLength,n-=i.result.blockLength,this.value.push(i.result),this.isIndefiniteForm&&i.result.constructor.NAME===zr)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===zr?this.value.pop():this.warnings.push("No EndOfContent block encoded")),o}toBER(e,t){let n=t||new Gr;for(let s=0;s<this.value.length;s++)this.value[s].toBER(e,n);return t?We:n.final()}toJSON(){let e={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let t of this.value)e.value.push(t.toJSON());return e}};nt.NAME="ConstructedValueBlock";var ec,Ot=class extends we{constructor(e={}){super(e,nt),this.idBlock.isConstructed=!0}fromBER(e,t,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}onAsciiEncoding(){let e=[];for(let n of this.valueBlock.value)e.push(n.toString("ascii").split(`
|
|
2
|
+
"use strict";var Libp2PIdentify=(()=>{var ru=Object.create;var ln=Object.defineProperty;var nu=Object.getOwnPropertyDescriptor;var su=Object.getOwnPropertyNames;var ou=Object.getPrototypeOf,iu=Object.prototype.hasOwnProperty;var Mi=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),de=(r,e)=>{for(var t in e)ln(r,t,{get:e[t],enumerable:!0})},Hi=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of su(e))!iu.call(r,s)&&s!==t&&ln(r,s,{get:()=>e[s],enumerable:!(n=nu(e,s))||n.enumerable});return r};var Fi=(r,e,t)=>(t=r!=null?ru(ou(r)):{},Hi(e||!r||!r.__esModule?ln(t,"default",{value:r,enumerable:!0}):t,r)),au=r=>Hi(ln({},"__esModule",{value:!0}),r);var qa=Mi(wr=>{"use strict";var Dh="[object ArrayBuffer]",wt=class r{static isArrayBuffer(e){return Object.prototype.toString.call(e)===Dh}static toArrayBuffer(e){return this.isArrayBuffer(e)?e:e.byteLength===e.buffer.byteLength||e.byteOffset===0&&e.byteLength===e.buffer.byteLength?e.buffer:this.toUint8Array(e.buffer).slice(e.byteOffset,e.byteOffset+e.byteLength).buffer}static toUint8Array(e){return this.toView(e,Uint8Array)}static toView(e,t){if(e.constructor===t)return e;if(this.isArrayBuffer(e))return new t(e);if(this.isArrayBufferView(e))return new t(e.buffer,e.byteOffset,e.byteLength);throw new TypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView)'")}static isBufferSource(e){return this.isArrayBufferView(e)||this.isArrayBuffer(e)}static isArrayBufferView(e){return ArrayBuffer.isView(e)||e&&this.isArrayBuffer(e.buffer)}static isEqual(e,t){let n=r.toUint8Array(e),s=r.toUint8Array(t);if(n.length!==s.byteLength)return!1;for(let o=0;o<n.length;o++)if(n[o]!==s[o])return!1;return!0}static concat(...e){let t;Array.isArray(e[0])&&!(e[1]instanceof Function)||Array.isArray(e[0])&&e[1]instanceof Function?t=e[0]:e[e.length-1]instanceof Function?t=e.slice(0,e.length-1):t=e;let n=0;for(let i of t)n+=i.byteLength;let s=new Uint8Array(n),o=0;for(let i of t){let a=this.toUint8Array(i);s.set(a,o),o+=a.length}return e[e.length-1]instanceof Function?this.toView(s,e[e.length-1]):s.buffer}},$o="string",Mh=/^[0-9a-f]+$/i,Hh=/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/,Fh=/^[a-zA-Z0-9-_]+$/,Tn=class{static fromString(e){let t=unescape(encodeURIComponent(e)),n=new Uint8Array(t.length);for(let s=0;s<t.length;s++)n[s]=t.charCodeAt(s);return n.buffer}static toString(e){let t=wt.toUint8Array(e),n="";for(let o=0;o<t.length;o++)n+=String.fromCharCode(t[o]);return decodeURIComponent(escape(n))}},Oe=class{static toString(e,t=!1){let n=wt.toArrayBuffer(e),s=new DataView(n),o="";for(let i=0;i<n.byteLength;i+=2){let a=s.getUint16(i,t);o+=String.fromCharCode(a)}return o}static fromString(e,t=!1){let n=new ArrayBuffer(e.length*2),s=new DataView(n);for(let o=0;o<e.length;o++)s.setUint16(o*2,e.charCodeAt(o),t);return n}},_n=class r{static isHex(e){return typeof e===$o&&Mh.test(e)}static isBase64(e){return typeof e===$o&&Hh.test(e)}static isBase64Url(e){return typeof e===$o&&Fh.test(e)}static ToString(e,t="utf8"){let n=wt.toUint8Array(e);switch(t.toLowerCase()){case"utf8":return this.ToUtf8String(n);case"binary":return this.ToBinary(n);case"hex":return this.ToHex(n);case"base64":return this.ToBase64(n);case"base64url":return this.ToBase64Url(n);case"utf16le":return Oe.toString(n,!0);case"utf16":case"utf16be":return Oe.toString(n);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromString(e,t="utf8"){if(!e)return new ArrayBuffer(0);switch(t.toLowerCase()){case"utf8":return this.FromUtf8String(e);case"binary":return this.FromBinary(e);case"hex":return this.FromHex(e);case"base64":return this.FromBase64(e);case"base64url":return this.FromBase64Url(e);case"utf16le":return Oe.fromString(e,!0);case"utf16":case"utf16be":return Oe.fromString(e);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToBase64(e){let t=wt.toUint8Array(e);if(typeof btoa<"u"){let n=this.ToString(t,"binary");return btoa(n)}else return Buffer.from(t).toString("base64")}static FromBase64(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64(t))throw new TypeError("Argument 'base64Text' is not Base64 encoded");return typeof atob<"u"?this.FromBinary(atob(t)):new Uint8Array(Buffer.from(t,"base64")).buffer}static FromBase64Url(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isBase64Url(t))throw new TypeError("Argument 'base64url' is not Base64Url encoded");return this.FromBase64(this.Base64Padding(t.replace(/\-/g,"+").replace(/\_/g,"/")))}static ToBase64Url(e){return this.ToBase64(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/\=/g,"")}static FromUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.FromBinary(e);case"utf8":return Tn.fromString(e);case"utf16":case"utf16be":return Oe.fromString(e);case"utf16le":case"usc2":return Oe.fromString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static ToUtf8String(e,t=r.DEFAULT_UTF8_ENCODING){switch(t){case"ascii":return this.ToBinary(e);case"utf8":return Tn.toString(e);case"utf16":case"utf16be":return Oe.toString(e);case"utf16le":case"usc2":return Oe.toString(e,!0);default:throw new Error(`Unknown type of encoding '${t}'`)}}static FromBinary(e){let t=e.length,n=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);return n.buffer}static ToBinary(e){let t=wt.toUint8Array(e),n="";for(let s=0;s<t.length;s++)n+=String.fromCharCode(t[s]);return n}static ToHex(e){let t=wt.toUint8Array(e),n="",s=t.length;for(let o=0;o<s;o++){let i=t[o];i<16&&(n+="0"),n+=i.toString(16)}return n}static FromHex(e){let t=this.formatString(e);if(!t)return new ArrayBuffer(0);if(!r.isHex(t))throw new TypeError("Argument 'hexString' is not HEX encoded");t.length%2&&(t=`0${t}`);let n=new Uint8Array(t.length/2);for(let s=0;s<t.length;s=s+2){let o=t.slice(s,s+2);n[s/2]=parseInt(o,16)}return n.buffer}static ToUtf16String(e,t=!1){return Oe.toString(e,t)}static FromUtf16String(e,t=!1){return Oe.fromString(e,t)}static Base64Padding(e){let t=4-e.length%4;if(t<4)for(let n=0;n<t;n++)e+="=";return e}static formatString(e){return e?.replace(/[\n\r\t ]/g,"")||""}};_n.DEFAULT_UTF8_ENCODING="utf8";function Kh(r,...e){let t=arguments[0];for(let n=1;n<arguments.length;n++){let s=arguments[n];for(let o in s)t[o]=s[o]}return t}function qh(...r){let e=r.map(s=>s.byteLength).reduce((s,o)=>s+o),t=new Uint8Array(e),n=0;return r.map(s=>new Uint8Array(s)).forEach(s=>{for(let o of s)t[n++]=o}),t.buffer}function $h(r,e){if(!(r&&e)||r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<r.byteLength;s++)if(t[s]!==n[s])return!1;return!0}wr.BufferSourceConverter=wt;wr.Convert=_n;wr.assign=Kh;wr.combine=qh;wr.isEqual=$h});var Tl=Mi((Ow,Rl)=>{function Wd(){return!!(typeof window<"u"&&typeof window.process=="object"&&window.process.type==="renderer"||typeof process<"u"&&typeof process.versions=="object"&&process.versions.electron||typeof navigator=="object"&&typeof navigator.userAgent=="string"&&navigator.userAgent.indexOf("Electron")>=0)}Rl.exports=Wd});var ip={};de(ip,{identify:()=>sp,identifyPush:()=>op});var Ki=Symbol.for("@libp2p/peer-id");var C=class extends Error{code;props;constructor(e,t,n){super(e),this.code=t,this.name=n?.name??"CodeError",this.props=n??{}}};var Lr=(r,...e)=>{try{[...e]}catch{}};var un=Symbol.for("@libp2p/service-capabilities"),fp=Symbol.for("@libp2p/service-dependencies");var Ko={};de(Ko,{Ed25519PrivateKey:()=>Jt,Ed25519PublicKey:()=>Kr,generateKeyPair:()=>Ph,generateKeyPairFromSeed:()=>Ka,unmarshalEd25519PrivateKey:()=>Lh,unmarshalEd25519PublicKey:()=>Uh});var $s={};de($s,{base58btc:()=>oe,base58flickr:()=>du});var Pp=new Uint8Array(0);function qi(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ut(r){if(r instanceof Uint8Array&&r.constructor.name==="Uint8Array")return r;if(r instanceof ArrayBuffer)return new Uint8Array(r);if(ArrayBuffer.isView(r))return new Uint8Array(r.buffer,r.byteOffset,r.byteLength);throw new Error("Unknown type, must be binary type")}function $i(r){return new TextEncoder().encode(r)}function Gi(r){return new TextDecoder().decode(r)}function cu(r,e){if(r.length>=255)throw new TypeError("Alphabet too long");for(var t=new Uint8Array(256),n=0;n<t.length;n++)t[n]=255;for(var s=0;s<r.length;s++){var o=r.charAt(s),i=o.charCodeAt(0);if(t[i]!==255)throw new TypeError(o+" is ambiguous");t[i]=s}var a=r.length,c=r.charAt(0),f=Math.log(a)/Math.log(256),u=Math.log(256)/Math.log(a);function l(p){if(p instanceof Uint8Array||(ArrayBuffer.isView(p)?p=new Uint8Array(p.buffer,p.byteOffset,p.byteLength):Array.isArray(p)&&(p=Uint8Array.from(p))),!(p instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(p.length===0)return"";for(var h=0,g=0,b=0,B=p.length;b!==B&&p[b]===0;)b++,h++;for(var w=(B-b)*u+1>>>0,T=new Uint8Array(w);b!==B;){for(var x=p[b],A=0,N=w-1;(x!==0||A<g)&&N!==-1;N--,A++)x+=256*T[N]>>>0,T[N]=x%a>>>0,x=x/a>>>0;if(x!==0)throw new Error("Non-zero carry");g=A,b++}for(var R=w-g;R!==w&&T[R]===0;)R++;for(var W=c.repeat(h);R<w;++R)W+=r.charAt(T[R]);return W}function d(p){if(typeof p!="string")throw new TypeError("Expected String");if(p.length===0)return new Uint8Array;var h=0;if(p[h]!==" "){for(var g=0,b=0;p[h]===c;)g++,h++;for(var B=(p.length-h)*f+1>>>0,w=new Uint8Array(B);p[h];){var T=t[p.charCodeAt(h)];if(T===255)return;for(var x=0,A=B-1;(T!==0||x<b)&&A!==-1;A--,x++)T+=a*w[A]>>>0,w[A]=T%256>>>0,T=T/256>>>0;if(T!==0)throw new Error("Non-zero carry");b=x,h++}if(p[h]!==" "){for(var N=B-b;N!==B&&w[N]===0;)N++;for(var R=new Uint8Array(g+(B-N)),W=g;N!==B;)R[W++]=w[N++];return R}}}function y(p){var h=d(p);if(h)return h;throw new Error(`Non-${e} character`)}return{encode:l,decodeUnsafe:d,decode:y}}var lu=cu,uu=lu,ji=uu;var Hs=class{name;prefix;baseEncode;constructor(e,t,n){this.name=e,this.prefix=t,this.baseEncode=n}encode(e){if(e instanceof Uint8Array)return`${this.prefix}${this.baseEncode(e)}`;throw Error("Unknown type, must be binary type")}},Fs=class{name;prefix;baseDecode;prefixCodePoint;constructor(e,t,n){if(this.name=e,this.prefix=t,t.codePointAt(0)===void 0)throw new Error("Invalid prefix character");this.prefixCodePoint=t.codePointAt(0),this.baseDecode=n}decode(e){if(typeof e=="string"){if(e.codePointAt(0)!==this.prefixCodePoint)throw Error(`Unable to decode multibase string ${JSON.stringify(e)}, ${this.name} decoder only supports inputs prefixed with ${this.prefix}`);return this.baseDecode(e.slice(this.prefix.length))}else throw Error("Can only multibase decode strings")}or(e){return Wi(this,e)}},Ks=class{decoders;constructor(e){this.decoders=e}or(e){return Wi(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n!=null)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}};function Wi(r,e){return new Ks({...r.decoders??{[r.prefix]:r},...e.decoders??{[e.prefix]:e}})}var qs=class{name;prefix;baseEncode;baseDecode;encoder;decoder;constructor(e,t,n,s){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=s,this.encoder=new Hs(e,t,n),this.decoder=new Fs(e,t,s)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}};function rr({name:r,prefix:e,encode:t,decode:n}){return new qs(r,e,t,n)}function St({name:r,prefix:e,alphabet:t}){let{encode:n,decode:s}=ji(t,r);return rr({prefix:e,name:r,encode:n,decode:o=>ut(s(o))})}function fu(r,e,t,n){let s={};for(let u=0;u<e.length;++u)s[e[u]]=u;let o=r.length;for(;r[o-1]==="=";)--o;let i=new Uint8Array(o*t/8|0),a=0,c=0,f=0;for(let u=0;u<o;++u){let l=s[r[u]];if(l===void 0)throw new SyntaxError(`Non-${n} character`);c=c<<t|l,a+=t,a>=8&&(a-=8,i[f++]=255&c>>a)}if(a>=t||255&c<<8-a)throw new SyntaxError("Unexpected end of data");return i}function hu(r,e,t){let n=e[e.length-1]==="=",s=(1<<t)-1,o="",i=0,a=0;for(let c=0;c<r.length;++c)for(a=a<<8|r[c],i+=8;i>t;)i-=t,o+=e[s&a>>i];if(i!==0&&(o+=e[s&a<<t-i]),n)for(;o.length*t&7;)o+="=";return o}function re({name:r,prefix:e,bitsPerChar:t,alphabet:n}){return rr({prefix:e,name:r,encode(s){return hu(s,n,t)},decode(s){return fu(s,n,t,r)}})}var oe=St({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),du=St({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var zs={};de(zs,{identity:()=>kt});var pu=Ji,Yi=128,gu=127,mu=~gu,yu=Math.pow(2,31);function Ji(r,e,t){e=e||[],t=t||0;for(var n=t;r>=yu;)e[t++]=r&255|Yi,r/=128;for(;rμ)e[t++]=r&255|Yi,r>>>=7;return e[t]=r|0,Ji.bytes=t-n+1,e}var bu=Gs,wu=128,Zi=127;function Gs(r,n){var t=0,n=n||0,s=0,o=n,i,a=r.length;do{if(o>=a)throw Gs.bytes=0,new RangeError("Could not decode varint");i=r[o++],t+=s<28?(i&Zi)<<s:(i&Zi)*Math.pow(2,s),s+=7}while(i>=wu);return Gs.bytes=o-n,t}var xu=Math.pow(2,7),vu=Math.pow(2,14),Eu=Math.pow(2,21),Bu=Math.pow(2,28),Au=Math.pow(2,35),Iu=Math.pow(2,42),Su=Math.pow(2,49),ku=Math.pow(2,56),Nu=Math.pow(2,63),Ru=function(r){return r<xu?1:r<vu?2:r<Eu?3:r<Bu?4:r<Au?5:r<Iu?6:r<Su?7:r<ku?8:r<Nu?9:10},Tu={encode:pu,decode:bu,encodingLength:Ru},_u=Tu,Ur=_u;function Pr(r,e=0){return[Ur.decode(r,e),Ur.decode.bytes]}function nr(r,e,t=0){return Ur.encode(r,e,t),e}function sr(r){return Ur.encodingLength(r)}function Qe(r,e){let t=e.byteLength,n=sr(r),s=n+sr(t),o=new Uint8Array(s+t);return nr(r,o,0),nr(t,o,n),o.set(e,s),new or(r,t,e,o)}function $t(r){let e=ut(r),[t,n]=Pr(e),[s,o]=Pr(e.subarray(n)),i=e.subarray(n+o);if(i.byteLength!==s)throw new Error("Incorrect length");return new or(t,s,i,e)}function Xi(r,e){if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&qi(r.bytes,t.bytes)}}var or=class{code;size;digest;bytes;constructor(e,t,n,s){this.code=e,this.size=t,this.digest=n,this.bytes=s}};var Qi=0,Cu="identity",ea=ut;function Lu(r){return Qe(Qi,ea(r))}var kt={code:Qi,name:Cu,encode:ea,digest:Lu};var Ys={};de(Ys,{sha256:()=>be,sha512:()=>Uu});function Ws({name:r,code:e,encode:t}){return new js(r,e,t)}var js=class{name;code;encode;constructor(e,t,n){this.name=e,this.code=t,this.encode=n}digest(e){if(e instanceof Uint8Array){let t=this.encode(e);return t instanceof Uint8Array?Qe(this.code,t):t.then(n=>Qe(this.code,n))}else throw Error("Unknown type, must be binary type")}};function ra(r){return async e=>new Uint8Array(await crypto.subtle.digest(r,e))}var be=Ws({name:"sha2-256",code:18,encode:ra("SHA-256")}),Uu=Ws({name:"sha2-512",code:19,encode:ra("SHA-512")});function pe(r,e){if(r===e)return!0;if(r.byteLength!==e.byteLength)return!1;for(let t=0;t<r.byteLength;t++)if(r[t]!==e[t])return!1;return!0}function ft(r=0){return new Uint8Array(r)}function Re(r=0){return new Uint8Array(r)}function Se(r,e){e==null&&(e=r.reduce((s,o)=>s+o.length,0));let t=Re(e),n=0;for(let s of r)t.set(s,n),n+=s.length;return t}var Zs={};de(Zs,{base10:()=>Pu});var Pu=St({prefix:"9",name:"base10",alphabet:"0123456789"});var Js={};de(Js,{base16:()=>Vu,base16upper:()=>Ou});var Vu=re({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Ou=re({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var Xs={};de(Xs,{base2:()=>Du});var Du=re({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var Qs={};de(Qs,{base256emoji:()=>qu});var na=Array.from("\u{1F680}\u{1FA90}\u2604\u{1F6F0}\u{1F30C}\u{1F311}\u{1F312}\u{1F313}\u{1F314}\u{1F315}\u{1F316}\u{1F317}\u{1F318}\u{1F30D}\u{1F30F}\u{1F30E}\u{1F409}\u2600\u{1F4BB}\u{1F5A5}\u{1F4BE}\u{1F4BF}\u{1F602}\u2764\u{1F60D}\u{1F923}\u{1F60A}\u{1F64F}\u{1F495}\u{1F62D}\u{1F618}\u{1F44D}\u{1F605}\u{1F44F}\u{1F601}\u{1F525}\u{1F970}\u{1F494}\u{1F496}\u{1F499}\u{1F622}\u{1F914}\u{1F606}\u{1F644}\u{1F4AA}\u{1F609}\u263A\u{1F44C}\u{1F917}\u{1F49C}\u{1F614}\u{1F60E}\u{1F607}\u{1F339}\u{1F926}\u{1F389}\u{1F49E}\u270C\u2728\u{1F937}\u{1F631}\u{1F60C}\u{1F338}\u{1F64C}\u{1F60B}\u{1F497}\u{1F49A}\u{1F60F}\u{1F49B}\u{1F642}\u{1F493}\u{1F929}\u{1F604}\u{1F600}\u{1F5A4}\u{1F603}\u{1F4AF}\u{1F648}\u{1F447}\u{1F3B6}\u{1F612}\u{1F92D}\u2763\u{1F61C}\u{1F48B}\u{1F440}\u{1F62A}\u{1F611}\u{1F4A5}\u{1F64B}\u{1F61E}\u{1F629}\u{1F621}\u{1F92A}\u{1F44A}\u{1F973}\u{1F625}\u{1F924}\u{1F449}\u{1F483}\u{1F633}\u270B\u{1F61A}\u{1F61D}\u{1F634}\u{1F31F}\u{1F62C}\u{1F643}\u{1F340}\u{1F337}\u{1F63B}\u{1F613}\u2B50\u2705\u{1F97A}\u{1F308}\u{1F608}\u{1F918}\u{1F4A6}\u2714\u{1F623}\u{1F3C3}\u{1F490}\u2639\u{1F38A}\u{1F498}\u{1F620}\u261D\u{1F615}\u{1F33A}\u{1F382}\u{1F33B}\u{1F610}\u{1F595}\u{1F49D}\u{1F64A}\u{1F639}\u{1F5E3}\u{1F4AB}\u{1F480}\u{1F451}\u{1F3B5}\u{1F91E}\u{1F61B}\u{1F534}\u{1F624}\u{1F33C}\u{1F62B}\u26BD\u{1F919}\u2615\u{1F3C6}\u{1F92B}\u{1F448}\u{1F62E}\u{1F646}\u{1F37B}\u{1F343}\u{1F436}\u{1F481}\u{1F632}\u{1F33F}\u{1F9E1}\u{1F381}\u26A1\u{1F31E}\u{1F388}\u274C\u270A\u{1F44B}\u{1F630}\u{1F928}\u{1F636}\u{1F91D}\u{1F6B6}\u{1F4B0}\u{1F353}\u{1F4A2}\u{1F91F}\u{1F641}\u{1F6A8}\u{1F4A8}\u{1F92C}\u2708\u{1F380}\u{1F37A}\u{1F913}\u{1F619}\u{1F49F}\u{1F331}\u{1F616}\u{1F476}\u{1F974}\u25B6\u27A1\u2753\u{1F48E}\u{1F4B8}\u2B07\u{1F628}\u{1F31A}\u{1F98B}\u{1F637}\u{1F57A}\u26A0\u{1F645}\u{1F61F}\u{1F635}\u{1F44E}\u{1F932}\u{1F920}\u{1F927}\u{1F4CC}\u{1F535}\u{1F485}\u{1F9D0}\u{1F43E}\u{1F352}\u{1F617}\u{1F911}\u{1F30A}\u{1F92F}\u{1F437}\u260E\u{1F4A7}\u{1F62F}\u{1F486}\u{1F446}\u{1F3A4}\u{1F647}\u{1F351}\u2744\u{1F334}\u{1F4A3}\u{1F438}\u{1F48C}\u{1F4CD}\u{1F940}\u{1F922}\u{1F445}\u{1F4A1}\u{1F4A9}\u{1F450}\u{1F4F8}\u{1F47B}\u{1F910}\u{1F92E}\u{1F3BC}\u{1F975}\u{1F6A9}\u{1F34E}\u{1F34A}\u{1F47C}\u{1F48D}\u{1F4E3}\u{1F942}"),Mu=na.reduce((r,e,t)=>(r[t]=e,r),[]),Hu=na.reduce((r,e,t)=>(r[e.codePointAt(0)]=t,r),[]);function Fu(r){return r.reduce((e,t)=>(e+=Mu[t],e),"")}function Ku(r){let e=[];for(let t of r){let n=Hu[t.codePointAt(0)];if(n===void 0)throw new Error(`Non-base256emoji character: ${t}`);e.push(n)}return new Uint8Array(e)}var qu=rr({prefix:"\u{1F680}",name:"base256emoji",encode:Fu,decode:Ku});var eo={};de(eo,{base32:()=>ht,base32hex:()=>ju,base32hexpad:()=>Yu,base32hexpadupper:()=>Zu,base32hexupper:()=>Wu,base32pad:()=>Gu,base32padupper:()=>zu,base32upper:()=>$u,base32z:()=>Ju});var ht=re({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),$u=re({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Gu=re({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),zu=re({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),ju=re({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Wu=re({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Yu=re({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),Zu=re({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),Ju=re({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var to={};de(to,{base36:()=>Xu,base36upper:()=>Qu});var Xu=St({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Qu=St({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var so={};de(so,{base64:()=>ro,base64pad:()=>ef,base64url:()=>no,base64urlpad:()=>tf});var ro=re({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),ef=re({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),no=re({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),tf=re({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var oo={};de(oo,{base8:()=>rf});var rf=re({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var io={};de(io,{identity:()=>nf});var nf=rr({prefix:"\0",name:"identity",encode:r=>Gi(r),decode:r=>$i(r)});var l0=new TextEncoder,u0=new TextDecoder;function sa(r,e){let{bytes:t,version:n}=r;switch(n){case 0:return cf(t,ao(r),e??oe.encoder);default:return lf(t,ao(r),e??ht.encoder)}}var oa=new WeakMap;function ao(r){let e=oa.get(r);if(e==null){let t=new Map;return oa.set(r,t),t}return e}var He=class r{code;version;multihash;bytes;"/";constructor(e,t,n,s){this.code=t,this.version=e,this.multihash=n,this.bytes=s,this["/"]=s}get asCID(){return this}get byteOffset(){return this.bytes.byteOffset}get byteLength(){return this.bytes.byteLength}toV0(){switch(this.version){case 0:return this;case 1:{let{code:e,multihash:t}=this;if(e!==Vr)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==uf)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return r.createV0(t)}default:throw Error(`Can not convert CID version ${this.version} to version 0. This is a bug please report`)}}toV1(){switch(this.version){case 0:{let{code:e,digest:t}=this.multihash,n=Qe(e,t);return r.createV1(this.code,n)}case 1:return this;default:throw Error(`Can not convert CID version ${this.version} to version 1. This is a bug please report`)}}equals(e){return r.equals(this,e)}static equals(e,t){let n=t;return n!=null&&e.code===n.code&&e.version===n.version&&Xi(e.multihash,n.multihash)}toString(e){return sa(this,e)}toJSON(){return{"/":sa(this)}}link(){return this}[Symbol.toStringTag]="CID";[Symbol.for("nodejs.util.inspect.custom")](){return`CID(${this.toString()})`}static asCID(e){if(e==null)return null;let t=e;if(t instanceof r)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:s,multihash:o,bytes:i}=t;return new r(n,s,o,i??ia(n,s,o.bytes))}else if(t[ff]===!0){let{version:n,multihash:s,code:o}=t,i=$t(s);return r.create(n,o,i)}else return null}static create(e,t,n){if(typeof t!="number")throw new Error("String codecs are no longer supported");if(!(n.bytes instanceof Uint8Array))throw new Error("Invalid digest");switch(e){case 0:{if(t!==Vr)throw new Error(`Version 0 CID must use dag-pb (code: ${Vr}) block encoding`);return new r(e,t,n,n.bytes)}case 1:{let s=ia(e,t,n.bytes);return new r(e,t,n,s)}default:throw new Error("Invalid version")}}static createV0(e){return r.create(0,Vr,e)}static createV1(e,t){return r.create(1,e,t)}static decode(e){let[t,n]=r.decodeFirst(e);if(n.length!==0)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=r.inspectBytes(e),n=t.size-t.multihashSize,s=ut(e.subarray(n,n+t.multihashSize));if(s.byteLength!==t.multihashSize)throw new Error("Incorrect length");let o=s.subarray(t.multihashSize-t.digestSize),i=new or(t.multihashCode,t.digestSize,o,s);return[t.version===0?r.createV0(i):r.createV1(t.codec,i),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[l,d]=Pr(e.subarray(t));return t+=d,l},s=n(),o=Vr;if(s===18?(s=0,t=0):o=n(),s!==0&&s!==1)throw new RangeError(`Invalid CID version ${s}`);let i=t,a=n(),c=n(),f=t+c,u=f-i;return{version:s,codec:o,multihashCode:a,digestSize:c,multihashSize:u,size:f}}static parse(e,t){let[n,s]=af(e,t),o=r.decode(s);if(o.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return ao(o).set(n,e),o}};function af(r,e){switch(r[0]){case"Q":{let t=e??oe;return[oe.prefix,t.decode(`${oe.prefix}${r}`)]}case oe.prefix:{let t=e??oe;return[oe.prefix,t.decode(r)]}case ht.prefix:{let t=e??ht;return[ht.prefix,t.decode(r)]}default:{if(e==null)throw Error("To parse non base32 or base58btc encoded CID multibase decoder must be provided");return[r[0],e.decode(r)]}}}function cf(r,e,t){let{prefix:n}=t;if(n!==oe.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let s=e.get(n);if(s==null){let o=t.encode(r).slice(1);return e.set(n,o),o}else return s}function lf(r,e,t){let{prefix:n}=t,s=e.get(n);if(s==null){let o=t.encode(r);return e.set(n,o),o}else return s}var Vr=112,uf=18;function ia(r,e,t){let n=sr(r),s=n+sr(e),o=new Uint8Array(s+t.byteLength);return nr(r,o,0),nr(e,o,n),o.set(t,s),o}var ff=Symbol.for("@ipld/js-cid/CID");var Nt={...io,...Xs,...oo,...Zs,...Js,...eo,...to,...$s,...so,...Qs},S0={...Ys,...zs};function ca(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var aa=ca("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),co=ca("ascii","a",r=>{let e="a";for(let t=0;t<r.length;t++)e+=String.fromCharCode(r[t]);return e},r=>{r=r.substring(1);let e=Re(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),hf={utf8:aa,"utf-8":aa,hex:Nt.base16,latin1:co,ascii:co,binary:co,...Nt},hn=hf;function F(r,e="utf8"){let t=hn[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.decoder.decode(`${t.prefix}${r}`)}function Pe(r){return r==null?!1:typeof r.then=="function"&&typeof r.catch=="function"&&typeof r.finally=="function"}function ir(r){if(!Number.isSafeInteger(r)||r<0)throw new Error(`positive integer expected, not ${r}`)}function df(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function ar(r,...e){if(!df(r))throw new Error("Uint8Array expected");if(e.length>0&&!e.includes(r.length))throw new Error(`Uint8Array expected of length ${e}, not of length=${r.length}`)}function dn(r){if(typeof r!="function"||typeof r.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");ir(r.outputLen),ir(r.blockLen)}function cr(r,e=!0){if(r.destroyed)throw new Error("Hash instance has been destroyed");if(e&&r.finished)throw new Error("Hash#digest() has already been called")}function la(r,e){ar(r);let t=e.outputLen;if(r.length<t)throw new Error(`digestInto() expects output buffer of length at least ${t}`)}var pn=typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0;var ur=r=>new DataView(r.buffer,r.byteOffset,r.byteLength),Fe=(r,e)=>r<<32-e|r>>>e;var H0=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;var pf=async()=>{};async function ua(r,e,t){let n=Date.now();for(let s=0;s<r;s++){t(s);let o=Date.now()-n;o>=0&&o<e||(await pf(),n+=o)}}function fa(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function Rt(r){return typeof r=="string"&&(r=fa(r)),ar(r),r}function lo(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];ar(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let o=r[n];t.set(o,s),s+=o.length}return t}var lr=class{clone(){return this._cloneInto()}},gf={}.toString;function ha(r,e){if(e!==void 0&&gf.call(e)!=="[object Object]")throw new Error("Options should be object or undefined");return Object.assign(r,e)}function gn(r){let e=n=>r().update(Rt(n)).digest(),t=r();return e.outputLen=t.outputLen,e.blockLen=t.blockLen,e.create=()=>r(),e}function fr(r=32){if(pn&&typeof pn.getRandomValues=="function")return pn.getRandomValues(new Uint8Array(r));throw new Error("crypto.getRandomValues must be defined")}function mf(r,e,t,n){if(typeof r.setBigUint64=="function")return r.setBigUint64(e,t,n);let s=BigInt(32),o=BigInt(4294967295),i=Number(t>>s&o),a=Number(t&o),c=n?4:0,f=n?0:4;r.setUint32(e+c,i,n),r.setUint32(e+f,a,n)}var da=(r,e,t)=>r&e^~r&t,pa=(r,e,t)=>r&e^r&t^e&t,hr=class extends lr{constructor(e,t,n,s){super(),this.blockLen=e,this.outputLen=t,this.padOffset=n,this.isLE=s,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(e),this.view=ur(this.buffer)}update(e){cr(this);let{view:t,buffer:n,blockLen:s}=this;e=Rt(e);let o=e.length;for(let i=0;i<o;){let a=Math.min(s-this.pos,o-i);if(a===s){let c=ur(e);for(;s<=o-i;i+=s)this.process(c,i);continue}n.set(e.subarray(i,i+a),this.pos),this.pos+=a,i+=a,this.pos===s&&(this.process(t,0),this.pos=0)}return this.length+=e.length,this.roundClean(),this}digestInto(e){cr(this),la(e,this),this.finished=!0;let{buffer:t,view:n,blockLen:s,isLE:o}=this,{pos:i}=this;t[i++]=128,this.buffer.subarray(i).fill(0),this.padOffset>s-i&&(this.process(n,0),i=0);for(let l=i;l<s;l++)t[l]=0;mf(n,s-8,BigInt(this.length*8),o),this.process(n,0);let a=ur(e),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");let f=c/4,u=this.get();if(f>u.length)throw new Error("_sha2: outputLen bigger than state");for(let l=0;l<f;l++)a.setUint32(4*l,u[l],o)}digest(){let{buffer:e,outputLen:t}=this;this.digestInto(e);let n=e.slice(0,t);return this.destroy(),n}_cloneInto(e){e||(e=new this.constructor),e.set(...this.get());let{blockLen:t,buffer:n,length:s,finished:o,destroyed:i,pos:a}=this;return e.length=s,e.pos=a,e.finished=o,e.destroyed=i,s%t&&e.buffer.set(n),e}};var mn=BigInt(4294967295),uo=BigInt(32);function ga(r,e=!1){return e?{h:Number(r&mn),l:Number(r>>uo&mn)}:{h:Number(r>>uo&mn)|0,l:Number(r&mn)|0}}function yf(r,e=!1){let t=new Uint32Array(r.length),n=new Uint32Array(r.length);for(let s=0;s<r.length;s++){let{h:o,l:i}=ga(r[s],e);[t[s],n[s]]=[o,i]}return[t,n]}var bf=(r,e)=>BigInt(r>>>0)<<uo|BigInt(e>>>0),wf=(r,e,t)=>r>>>t,xf=(r,e,t)=>r<<32-t|e>>>t,vf=(r,e,t)=>r>>>t|e<<32-t,Ef=(r,e,t)=>r<<32-t|e>>>t,Bf=(r,e,t)=>r<<64-t|e>>>t-32,Af=(r,e,t)=>r>>>t-32|e<<64-t,If=(r,e)=>e,Sf=(r,e)=>r,kf=(r,e,t)=>r<<t|e>>>32-t,Nf=(r,e,t)=>e<<t|r>>>32-t,Rf=(r,e,t)=>e<<t-32|r>>>64-t,Tf=(r,e,t)=>r<<t-32|e>>>64-t;function _f(r,e,t,n){let s=(e>>>0)+(n>>>0);return{h:r+t+(s/2**32|0)|0,l:s|0}}var Cf=(r,e,t)=>(r>>>0)+(e>>>0)+(t>>>0),Lf=(r,e,t,n)=>e+t+n+(r/2**32|0)|0,Uf=(r,e,t,n)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0),Pf=(r,e,t,n,s)=>e+t+n+s+(r/2**32|0)|0,Vf=(r,e,t,n,s)=>(r>>>0)+(e>>>0)+(t>>>0)+(n>>>0)+(s>>>0),Of=(r,e,t,n,s,o)=>e+t+n+s+o+(r/2**32|0)|0;var Df={fromBig:ga,split:yf,toBig:bf,shrSH:wf,shrSL:xf,rotrSH:vf,rotrSL:Ef,rotrBH:Bf,rotrBL:Af,rotr32H:If,rotr32L:Sf,rotlSH:kf,rotlSL:Nf,rotlBH:Rf,rotlBL:Tf,add:_f,add3L:Cf,add3H:Lf,add4L:Uf,add4H:Pf,add5H:Of,add5L:Vf},U=Df;var[Mf,Hf]=U.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(r=>BigInt(r))),Tt=new Uint32Array(80),_t=new Uint32Array(80),fo=class extends hr{constructor(){super(128,64,16,!1),this.Ah=1779033703,this.Al=-205731576,this.Bh=-1150833019,this.Bl=-2067093701,this.Ch=1013904242,this.Cl=-23791573,this.Dh=-1521486534,this.Dl=1595750129,this.Eh=1359893119,this.El=-1377402159,this.Fh=-1694144372,this.Fl=725511199,this.Gh=528734635,this.Gl=-79577749,this.Hh=1541459225,this.Hl=327033209}get(){let{Ah:e,Al:t,Bh:n,Bl:s,Ch:o,Cl:i,Dh:a,Dl:c,Eh:f,El:u,Fh:l,Fl:d,Gh:y,Gl:p,Hh:h,Hl:g}=this;return[e,t,n,s,o,i,a,c,f,u,l,d,y,p,h,g]}set(e,t,n,s,o,i,a,c,f,u,l,d,y,p,h,g){this.Ah=e|0,this.Al=t|0,this.Bh=n|0,this.Bl=s|0,this.Ch=o|0,this.Cl=i|0,this.Dh=a|0,this.Dl=c|0,this.Eh=f|0,this.El=u|0,this.Fh=l|0,this.Fl=d|0,this.Gh=y|0,this.Gl=p|0,this.Hh=h|0,this.Hl=g|0}process(e,t){for(let w=0;w<16;w++,t+=4)Tt[w]=e.getUint32(t),_t[w]=e.getUint32(t+=4);for(let w=16;w<80;w++){let T=Tt[w-15]|0,x=_t[w-15]|0,A=U.rotrSH(T,x,1)^U.rotrSH(T,x,8)^U.shrSH(T,x,7),N=U.rotrSL(T,x,1)^U.rotrSL(T,x,8)^U.shrSL(T,x,7),R=Tt[w-2]|0,W=_t[w-2]|0,q=U.rotrSH(R,W,19)^U.rotrBH(R,W,61)^U.shrSH(R,W,6),P=U.rotrSL(R,W,19)^U.rotrBL(R,W,61)^U.shrSL(R,W,6),ae=U.add4L(N,P,_t[w-7],_t[w-16]),se=U.add4H(ae,A,q,Tt[w-7],Tt[w-16]);Tt[w]=se|0,_t[w]=ae|0}let{Ah:n,Al:s,Bh:o,Bl:i,Ch:a,Cl:c,Dh:f,Dl:u,Eh:l,El:d,Fh:y,Fl:p,Gh:h,Gl:g,Hh:b,Hl:B}=this;for(let w=0;w<80;w++){let T=U.rotrSH(l,d,14)^U.rotrSH(l,d,18)^U.rotrBH(l,d,41),x=U.rotrSL(l,d,14)^U.rotrSL(l,d,18)^U.rotrBL(l,d,41),A=l&y^~l&h,N=d&p^~d&g,R=U.add5L(B,x,N,Hf[w],_t[w]),W=U.add5H(R,b,T,A,Mf[w],Tt[w]),q=R|0,P=U.rotrSH(n,s,28)^U.rotrBH(n,s,34)^U.rotrBH(n,s,39),ae=U.rotrSL(n,s,28)^U.rotrBL(n,s,34)^U.rotrBL(n,s,39),se=n&o^n&a^o&a,Ue=s&i^s&c^i&c;b=h|0,B=g|0,h=y|0,g=p|0,y=l|0,p=d|0,{h:l,l:d}=U.add(f|0,u|0,W|0,q|0),f=a|0,u=c|0,a=o|0,c=i|0,o=n|0,i=s|0;let v=U.add3L(q,ae,Ue);n=U.add3H(v,W,P,se),s=v|0}({h:n,l:s}=U.add(this.Ah|0,this.Al|0,n|0,s|0)),{h:o,l:i}=U.add(this.Bh|0,this.Bl|0,o|0,i|0),{h:a,l:c}=U.add(this.Ch|0,this.Cl|0,a|0,c|0),{h:f,l:u}=U.add(this.Dh|0,this.Dl|0,f|0,u|0),{h:l,l:d}=U.add(this.Eh|0,this.El|0,l|0,d|0),{h:y,l:p}=U.add(this.Fh|0,this.Fl|0,y|0,p|0),{h,l:g}=U.add(this.Gh|0,this.Gl|0,h|0,g|0),{h:b,l:B}=U.add(this.Hh|0,this.Hl|0,b|0,B|0),this.set(n,s,o,i,a,c,f,u,l,d,y,p,h,g,b,B)}roundClean(){Tt.fill(0),_t.fill(0)}destroy(){this.buffer.fill(0),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}};var Or=gn(()=>new fo);var bn={};de(bn,{abytes:()=>dr,bitGet:()=>jf,bitLen:()=>zf,bitMask:()=>Dr,bitSet:()=>Wf,bytesToHex:()=>pt,bytesToNumberBE:()=>gt,bytesToNumberLE:()=>Lt,concatBytes:()=>mt,createHmacDrbg:()=>go,ensureBytes:()=>ne,equalBytes:()=>$f,hexToBytes:()=>zt,hexToNumber:()=>po,isBytes:()=>Ct,numberToBytesBE:()=>Ut,numberToBytesLE:()=>jt,numberToHexUnpadded:()=>wa,numberToVarBytesBE:()=>qf,utf8ToBytes:()=>Gf,validateObject:()=>et});var ba=BigInt(0),yn=BigInt(1),Ff=BigInt(2);function Ct(r){return r instanceof Uint8Array||r!=null&&typeof r=="object"&&r.constructor.name==="Uint8Array"}function dr(r){if(!Ct(r))throw new Error("Uint8Array expected")}var Kf=Array.from({length:256},(r,e)=>e.toString(16).padStart(2,"0"));function pt(r){dr(r);let e="";for(let t=0;t<r.length;t++)e+=Kf[r[t]];return e}function wa(r){let e=r.toString(16);return e.length&1?`0${e}`:e}function po(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);return BigInt(r===""?"0":`0x${r}`)}var dt={_0:48,_9:57,_A:65,_F:70,_a:97,_f:102};function ma(r){if(r>=dt._0&&r<=dt._9)return r-dt._0;if(r>=dt._A&&r<=dt._F)return r-(dt._A-10);if(r>=dt._a&&r<=dt._f)return r-(dt._a-10)}function zt(r){if(typeof r!="string")throw new Error("hex string expected, got "+typeof r);let e=r.length,t=e/2;if(e%2)throw new Error("padded hex string expected, got unpadded hex of length "+e);let n=new Uint8Array(t);for(let s=0,o=0;s<t;s++,o+=2){let i=ma(r.charCodeAt(o)),a=ma(r.charCodeAt(o+1));if(i===void 0||a===void 0){let c=r[o]+r[o+1];throw new Error('hex string expected, got non-hex character "'+c+'" at index '+o)}n[s]=i*16+a}return n}function gt(r){return po(pt(r))}function Lt(r){return dr(r),po(pt(Uint8Array.from(r).reverse()))}function Ut(r,e){return zt(r.toString(16).padStart(e*2,"0"))}function jt(r,e){return Ut(r,e).reverse()}function qf(r){return zt(wa(r))}function ne(r,e,t){let n;if(typeof e=="string")try{n=zt(e)}catch(o){throw new Error(`${r} must be valid hex string, got "${e}". Cause: ${o}`)}else if(Ct(e))n=Uint8Array.from(e);else throw new Error(`${r} must be hex string or Uint8Array`);let s=n.length;if(typeof t=="number"&&s!==t)throw new Error(`${r} expected ${t} bytes, got ${s}`);return n}function mt(...r){let e=0;for(let n=0;n<r.length;n++){let s=r[n];dr(s),e+=s.length}let t=new Uint8Array(e);for(let n=0,s=0;n<r.length;n++){let o=r[n];t.set(o,s),s+=o.length}return t}function $f(r,e){if(r.length!==e.length)return!1;let t=0;for(let n=0;n<r.length;n++)t|=r[n]^e[n];return t===0}function Gf(r){if(typeof r!="string")throw new Error(`utf8ToBytes expected string, got ${typeof r}`);return new Uint8Array(new TextEncoder().encode(r))}function zf(r){let e;for(e=0;r>ba;r>>=yn,e+=1);return e}function jf(r,e){return r>>BigInt(e)&yn}function Wf(r,e,t){return r|(t?yn:ba)<<BigInt(e)}var Dr=r=>(Ff<<BigInt(r-1))-yn,ho=r=>new Uint8Array(r),ya=r=>Uint8Array.from(r);function go(r,e,t){if(typeof r!="number"||r<2)throw new Error("hashLen must be a number");if(typeof e!="number"||e<2)throw new Error("qByteLen must be a number");if(typeof t!="function")throw new Error("hmacFn must be a function");let n=ho(r),s=ho(r),o=0,i=()=>{n.fill(1),s.fill(0),o=0},a=(...l)=>t(s,n,...l),c=(l=ho())=>{s=a(ya([0]),l),n=a(),l.length!==0&&(s=a(ya([1]),l),n=a())},f=()=>{if(o++>=1e3)throw new Error("drbg: tried 1000 values");let l=0,d=[];for(;l<e;){n=a();let y=n.slice();d.push(y),l+=n.length}return mt(...d)};return(l,d)=>{i(),c(l);let y;for(;!(y=d(f()));)c();return i(),y}}var Yf={bigint:r=>typeof r=="bigint",function:r=>typeof r=="function",boolean:r=>typeof r=="boolean",string:r=>typeof r=="string",stringOrUint8Array:r=>typeof r=="string"||Ct(r),isSafeInteger:r=>Number.isSafeInteger(r),array:r=>Array.isArray(r),field:(r,e)=>e.Fp.isValid(r),hash:r=>typeof r=="function"&&Number.isSafeInteger(r.outputLen)};function et(r,e,t={}){let n=(s,o,i)=>{let a=Yf[o];if(typeof a!="function")throw new Error(`Invalid validator "${o}", expected function`);let c=r[s];if(!(i&&c===void 0)&&!a(c,r))throw new Error(`Invalid param ${String(s)}=${c} (${typeof c}), expected ${o}`)};for(let[s,o]of Object.entries(e))n(s,o,!1);for(let[s,o]of Object.entries(t))n(s,o,!0);return r}var fe=BigInt(0),X=BigInt(1),Wt=BigInt(2),Zf=BigInt(3),mo=BigInt(4),xa=BigInt(5),va=BigInt(8),Jf=BigInt(9),Xf=BigInt(16);function Z(r,e){let t=r%e;return t>=fe?t:e+t}function Qf(r,e,t){if(t<=fe||e<fe)throw new Error("Expected power/modulo > 0");if(t===X)return fe;let n=X;for(;e>fe;)e&X&&(n=n*r%t),r=r*r%t,e>>=X;return n}function Q(r,e,t){let n=r;for(;e-- >fe;)n*=n,n%=t;return n}function wn(r,e){if(r===fe||e<=fe)throw new Error(`invert: expected positive integers, got n=${r} mod=${e}`);let t=Z(r,e),n=e,s=fe,o=X,i=X,a=fe;for(;t!==fe;){let f=n/t,u=n%t,l=s-i*f,d=o-a*f;n=t,t=u,s=i,o=a,i=l,a=d}if(n!==X)throw new Error("invert: does not exist");return Z(s,e)}function eh(r){let e=(r-X)/Wt,t,n,s;for(t=r-X,n=0;t%Wt===fe;t/=Wt,n++);for(s=Wt;s<r&&Qf(s,e,r)!==r-X;s++);if(n===1){let i=(r+X)/mo;return function(c,f){let u=c.pow(f,i);if(!c.eql(c.sqr(u),f))throw new Error("Cannot find square root");return u}}let o=(t+X)/Wt;return function(a,c){if(a.pow(c,e)===a.neg(a.ONE))throw new Error("Cannot find square root");let f=n,u=a.pow(a.mul(a.ONE,s),t),l=a.pow(c,o),d=a.pow(c,t);for(;!a.eql(d,a.ONE);){if(a.eql(d,a.ZERO))return a.ZERO;let y=1;for(let h=a.sqr(d);y<f&&!a.eql(h,a.ONE);y++)h=a.sqr(h);let p=a.pow(u,X<<BigInt(f-y-1));u=a.sqr(p),l=a.mul(l,p),d=a.mul(d,u),f=y}return l}}function th(r){if(r%mo===Zf){let e=(r+X)/mo;return function(n,s){let o=n.pow(s,e);if(!n.eql(n.sqr(o),s))throw new Error("Cannot find square root");return o}}if(r%va===xa){let e=(r-xa)/va;return function(n,s){let o=n.mul(s,Wt),i=n.pow(o,e),a=n.mul(s,i),c=n.mul(n.mul(a,Wt),i),f=n.mul(a,n.sub(c,n.ONE));if(!n.eql(n.sqr(f),s))throw new Error("Cannot find square root");return f}}return r%Xf,eh(r)}var Ea=(r,e)=>(Z(r,e)&X)===X,rh=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function yo(r){let e={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},t=rh.reduce((n,s)=>(n[s]="function",n),e);return et(r,t)}function nh(r,e,t){if(t<fe)throw new Error("Expected power > 0");if(t===fe)return r.ONE;if(t===X)return e;let n=r.ONE,s=e;for(;t>fe;)t&X&&(n=r.mul(n,s)),s=r.sqr(s),t>>=X;return n}function sh(r,e){let t=new Array(e.length),n=e.reduce((o,i,a)=>r.is0(i)?o:(t[a]=o,r.mul(o,i)),r.ONE),s=r.inv(n);return e.reduceRight((o,i,a)=>r.is0(i)?o:(t[a]=r.mul(o,t[a]),r.mul(o,i)),s),t}function bo(r,e){let t=e!==void 0?e:r.toString(2).length,n=Math.ceil(t/8);return{nBitLength:t,nByteLength:n}}function xn(r,e,t=!1,n={}){if(r<=fe)throw new Error(`Expected Field ORDER > 0, got ${r}`);let{nBitLength:s,nByteLength:o}=bo(r,e);if(o>2048)throw new Error("Field lengths over 2048 bytes are not supported");let i=th(r),a=Object.freeze({ORDER:r,BITS:s,BYTES:o,MASK:Dr(s),ZERO:fe,ONE:X,create:c=>Z(c,r),isValid:c=>{if(typeof c!="bigint")throw new Error(`Invalid field element: expected bigint, got ${typeof c}`);return fe<=c&&c<r},is0:c=>c===fe,isOdd:c=>(c&X)===X,neg:c=>Z(-c,r),eql:(c,f)=>c===f,sqr:c=>Z(c*c,r),add:(c,f)=>Z(c+f,r),sub:(c,f)=>Z(c-f,r),mul:(c,f)=>Z(c*f,r),pow:(c,f)=>nh(a,c,f),div:(c,f)=>Z(c*wn(f,r),r),sqrN:c=>c*c,addN:(c,f)=>c+f,subN:(c,f)=>c-f,mulN:(c,f)=>c*f,inv:c=>wn(c,r),sqrt:n.sqrt||(c=>i(a,c)),invertBatch:c=>sh(a,c),cmov:(c,f,u)=>u?f:c,toBytes:c=>t?jt(c,o):Ut(c,o),fromBytes:c=>{if(c.length!==o)throw new Error(`Fp.fromBytes: expected ${o}, got ${c.length}`);return t?Lt(c):gt(c)}});return Object.freeze(a)}function Ba(r){if(typeof r!="bigint")throw new Error("field order must be bigint");let e=r.toString(2).length;return Math.ceil(e/8)}function wo(r){let e=Ba(r);return e+Math.ceil(e/2)}function Aa(r,e,t=!1){let n=r.length,s=Ba(e),o=wo(e);if(n<16||n<o||n>1024)throw new Error(`expected ${o}-1024 bytes of input, got ${n}`);let i=t?gt(r):Lt(r),a=Z(i,e-X)+X;return t?jt(a,s):Ut(a,s)}var ih=BigInt(0),xo=BigInt(1);function vn(r,e){let t=(s,o)=>{let i=o.negate();return s?i:o},n=s=>{let o=Math.ceil(e/s)+1,i=2**(s-1);return{windows:o,windowSize:i}};return{constTimeNegate:t,unsafeLadder(s,o){let i=r.ZERO,a=s;for(;o>ih;)o&xo&&(i=i.add(a)),a=a.double(),o>>=xo;return i},precomputeWindow(s,o){let{windows:i,windowSize:a}=n(o),c=[],f=s,u=f;for(let l=0;l<i;l++){u=f,c.push(u);for(let d=1;d<a;d++)u=u.add(f),c.push(u);f=u.double()}return c},wNAF(s,o,i){let{windows:a,windowSize:c}=n(s),f=r.ZERO,u=r.BASE,l=BigInt(2**s-1),d=2**s,y=BigInt(s);for(let p=0;p<a;p++){let h=p*c,g=Number(i&l);i>>=y,g>c&&(g-=d,i+=xo);let b=h,B=h+Math.abs(g)-1,w=p%2!==0,T=g<0;g===0?u=u.add(t(w,o[b])):f=f.add(t(T,o[B]))}return{p:f,f:u}},wNAFCached(s,o,i,a){let c=s._WINDOW_SIZE||1,f=o.get(s);return f||(f=this.precomputeWindow(s,c),c!==1&&o.set(s,a(f))),this.wNAF(c,f,i)}}}function Mr(r){return yo(r.Fp),et(r,{n:"bigint",h:"bigint",Gx:"field",Gy:"field"},{nBitLength:"isSafeInteger",nByteLength:"isSafeInteger"}),Object.freeze({...bo(r.n,r.nBitLength),...r,p:r.Fp.ORDER})}var Ke=BigInt(0),Ce=BigInt(1),En=BigInt(2),ah=BigInt(8),ch={zip215:!0};function lh(r){let e=Mr(r);return et(r,{hash:"function",a:"bigint",d:"bigint",randomBytes:"function"},{adjustScalarBytes:"function",domain:"function",uvRatio:"function",mapToCurve:"function"}),Object.freeze({...e})}function Ia(r){let e=lh(r),{Fp:t,n,prehash:s,hash:o,randomBytes:i,nByteLength:a,h:c}=e,f=En<<BigInt(a*8)-Ce,u=t.create,l=e.uvRatio||((E,m)=>{try{return{isValid:!0,value:t.sqrt(E*t.inv(m))}}catch{return{isValid:!1,value:Ke}}}),d=e.adjustScalarBytes||(E=>E),y=e.domain||((E,m,S)=>{if(m.length||S)throw new Error("Contexts/pre-hash are not supported");return E}),p=E=>typeof E=="bigint"&&Ke<E,h=(E,m)=>p(E)&&p(m)&&E<m,g=E=>E===Ke||h(E,f);function b(E,m){if(h(E,m))return E;throw new Error(`Expected valid scalar < ${m}, got ${typeof E} ${E}`)}function B(E){return E===Ke?E:b(E,n)}let w=new Map;function T(E){if(!(E instanceof x))throw new Error("ExtendedPoint expected")}class x{constructor(m,S,_,L){if(this.ex=m,this.ey=S,this.ez=_,this.et=L,!g(m))throw new Error("x required");if(!g(S))throw new Error("y required");if(!g(_))throw new Error("z required");if(!g(L))throw new Error("t required")}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static fromAffine(m){if(m instanceof x)throw new Error("extended point not allowed");let{x:S,y:_}=m||{};if(!g(S)||!g(_))throw new Error("invalid affine point");return new x(S,_,Ce,u(S*_))}static normalizeZ(m){let S=t.invertBatch(m.map(_=>_.ez));return m.map((_,L)=>_.toAffine(S[L])).map(x.fromAffine)}_setWindowSize(m){this._WINDOW_SIZE=m,w.delete(this)}assertValidity(){let{a:m,d:S}=e;if(this.is0())throw new Error("bad point: ZERO");let{ex:_,ey:L,ez:O,et:D}=this,G=u(_*_),H=u(L*L),$=u(O*O),ce=u($*$),te=u(G*m),me=u($*u(te+H)),ye=u(ce+u(S*u(G*H)));if(me!==ye)throw new Error("bad point: equation left != right (1)");let ue=u(_*L),ve=u(O*D);if(ue!==ve)throw new Error("bad point: equation left != right (2)")}equals(m){T(m);let{ex:S,ey:_,ez:L}=this,{ex:O,ey:D,ez:G}=m,H=u(S*G),$=u(O*L),ce=u(_*G),te=u(D*L);return H===$&&ce===te}is0(){return this.equals(x.ZERO)}negate(){return new x(u(-this.ex),this.ey,this.ez,u(-this.et))}double(){let{a:m}=e,{ex:S,ey:_,ez:L}=this,O=u(S*S),D=u(_*_),G=u(En*u(L*L)),H=u(m*O),$=S+_,ce=u(u($*$)-O-D),te=H+D,me=te-G,ye=H-D,ue=u(ce*me),ve=u(te*ye),lt=u(ce*ye),qt=u(me*te);return new x(ue,ve,qt,lt)}add(m){T(m);let{a:S,d:_}=e,{ex:L,ey:O,ez:D,et:G}=this,{ex:H,ey:$,ez:ce,et:te}=m;if(S===BigInt(-1)){let Ci=u((O-L)*($+H)),Li=u((O+L)*($-H)),Ms=u(Li-Ci);if(Ms===Ke)return this.double();let Ui=u(D*En*te),Pi=u(G*En*ce),Vi=Pi+Ui,Oi=Li+Ci,Di=Pi-Ui,Xl=u(Vi*Ms),Ql=u(Oi*Di),eu=u(Vi*Di),tu=u(Ms*Oi);return new x(Xl,Ql,tu,eu)}let me=u(L*H),ye=u(O*$),ue=u(G*_*te),ve=u(D*ce),lt=u((L+O)*(H+$)-me-ye),qt=ve-ue,Cr=ve+ue,_i=u(ye-S*me),Wl=u(lt*qt),Yl=u(Cr*_i),Zl=u(lt*_i),Jl=u(qt*Cr);return new x(Wl,Yl,Jl,Zl)}subtract(m){return this.add(m.negate())}wNAF(m){return R.wNAFCached(this,w,m,x.normalizeZ)}multiply(m){let{p:S,f:_}=this.wNAF(b(m,n));return x.normalizeZ([S,_])[0]}multiplyUnsafe(m){let S=B(m);return S===Ke?N:this.equals(N)||S===Ce?this:this.equals(A)?this.wNAF(S).p:R.unsafeLadder(this,S)}isSmallOrder(){return this.multiplyUnsafe(c).is0()}isTorsionFree(){return R.unsafeLadder(this,n).is0()}toAffine(m){let{ex:S,ey:_,ez:L}=this,O=this.is0();m==null&&(m=O?ah:t.inv(L));let D=u(S*m),G=u(_*m),H=u(L*m);if(O)return{x:Ke,y:Ce};if(H!==Ce)throw new Error("invZ was invalid");return{x:D,y:G}}clearCofactor(){let{h:m}=e;return m===Ce?this:this.multiplyUnsafe(m)}static fromHex(m,S=!1){let{d:_,a:L}=e,O=t.BYTES;m=ne("pointHex",m,O);let D=m.slice(),G=m[O-1];D[O-1]=G&-129;let H=Lt(D);H===Ke||(S?b(H,f):b(H,t.ORDER));let $=u(H*H),ce=u($-Ce),te=u(_*$-L),{isValid:me,value:ye}=l(ce,te);if(!me)throw new Error("Point.fromHex: invalid y coordinate");let ue=(ye&Ce)===Ce,ve=(G&128)!==0;if(!S&&ye===Ke&&ve)throw new Error("Point.fromHex: x=0 and x_0=1");return ve!==ue&&(ye=u(-ye)),x.fromAffine({x:ye,y:H})}static fromPrivateKey(m){return P(m).point}toRawBytes(){let{x:m,y:S}=this.toAffine(),_=jt(S,t.BYTES);return _[_.length-1]|=m&Ce?128:0,_}toHex(){return pt(this.toRawBytes())}}x.BASE=new x(e.Gx,e.Gy,Ce,u(e.Gx*e.Gy)),x.ZERO=new x(Ke,Ce,Ce,Ke);let{BASE:A,ZERO:N}=x,R=vn(x,a*8);function W(E){return Z(E,n)}function q(E){return W(Lt(E))}function P(E){let m=a;E=ne("private key",E,m);let S=ne("hashed private key",o(E),2*m),_=d(S.slice(0,m)),L=S.slice(m,2*m),O=q(_),D=A.multiply(O),G=D.toRawBytes();return{head:_,prefix:L,scalar:O,point:D,pointBytes:G}}function ae(E){return P(E).pointBytes}function se(E=new Uint8Array,...m){let S=mt(...m);return q(o(y(S,ne("context",E),!!s)))}function Ue(E,m,S={}){E=ne("message",E),s&&(E=s(E));let{prefix:_,scalar:L,pointBytes:O}=P(m),D=se(S.context,_,E),G=A.multiply(D).toRawBytes(),H=se(S.context,G,O,E),$=W(D+H*L);B($);let ce=mt(G,jt($,t.BYTES));return ne("result",ce,a*2)}let v=ch;function k(E,m,S,_=v){let{context:L,zip215:O}=_,D=t.BYTES;E=ne("signature",E,2*D),m=ne("message",m),s&&(m=s(m));let G=Lt(E.slice(D,2*D)),H,$,ce;try{H=x.fromHex(S,O),$=x.fromHex(E.slice(0,D),O),ce=A.multiplyUnsafe(G)}catch{return!1}if(!O&&H.isSmallOrder())return!1;let te=se(L,$.toRawBytes(),H.toRawBytes(),m);return $.add(H.multiplyUnsafe(te)).subtract(ce).clearCofactor().equals(x.ZERO)}return A._setWindowSize(8),{CURVE:e,getPublicKey:ae,sign:Ue,verify:k,ExtendedPoint:x,utils:{getExtendedPublicKey:P,randomPrivateKey:()=>i(t.BYTES),precompute(E=8,m=x.BASE){return m._setWindowSize(E),m.multiply(BigInt(3)),m}}}}var vo=BigInt("57896044618658097711785492504343953926634992332820282019728792003956564819949"),Sa=BigInt("19681161376707505956807079304988542015446066515923890162744021073123829784752"),lg=BigInt(0),uh=BigInt(1),ka=BigInt(2),ug=BigInt(3),fh=BigInt(5),hh=BigInt(8);function dh(r){let e=BigInt(10),t=BigInt(20),n=BigInt(40),s=BigInt(80),o=vo,a=r*r%o*r%o,c=Q(a,ka,o)*a%o,f=Q(c,uh,o)*r%o,u=Q(f,fh,o)*f%o,l=Q(u,e,o)*u%o,d=Q(l,t,o)*l%o,y=Q(d,n,o)*d%o,p=Q(y,s,o)*y%o,h=Q(p,s,o)*y%o,g=Q(h,e,o)*u%o;return{pow_p_5_8:Q(g,ka,o)*r%o,b2:a}}function ph(r){return r[0]&=248,r[31]&=127,r[31]|=64,r}function gh(r,e){let t=vo,n=Z(e*e*e,t),s=Z(n*n*e,t),o=dh(r*s).pow_p_5_8,i=Z(r*n*o,t),a=Z(e*i*i,t),c=i,f=Z(i*Sa,t),u=a===r,l=a===Z(-r,t),d=a===Z(-r*Sa,t);return u&&(i=c),(l||d)&&(i=f),Ea(i,t)&&(i=Z(-i,t)),{isValid:u||l,value:i}}var mh=xn(vo,void 0,!0),yh={a:BigInt(-1),d:BigInt("37095705934669439343138083508754565189542113879843219016388785533085940283555"),Fp:mh,n:BigInt("7237005577332262213973186563042994240857116359379907606001950938285454250989"),h:hh,Gx:BigInt("15112221349535400772501151409588531511454012693041857206046113283949847762202"),Gy:BigInt("46316835694926478169428394003475163141307993866256225615783033603165251855960"),hash:Or,randomBytes:fr,adjustScalarBytes:ph,uvRatio:gh},pr=Ia(yh);var gr=32,yt=64,Bn=32;function Na(){let r=pr.utils.randomPrivateKey(),e=pr.getPublicKey(r);return{privateKey:Ca(r,e),publicKey:e}}function Ra(r){if(r.length!==Bn)throw new TypeError('"seed" must be 32 bytes in length.');if(!(r instanceof Uint8Array))throw new TypeError('"seed" must be a node.js Buffer, or Uint8Array.');let e=r,t=pr.getPublicKey(e);return{privateKey:Ca(e,t),publicKey:t}}function Ta(r,e){let t=r.subarray(0,Bn);return pr.sign(e instanceof Uint8Array?e:e.subarray(),t)}function _a(r,e,t){return pr.verify(e,t instanceof Uint8Array?t:t.subarray(),r)}function Ca(r,e){let t=new Uint8Array(yt);for(let n=0;n<Bn;n++)t[n]=r[n],t[Bn+n]=e[n];return t}var ke={get(r=globalThis){let e=r.crypto;if(e==null||e.subtle==null)throw Object.assign(new Error("Missing Web Crypto API. The most likely cause of this error is that this page is being accessed from an insecure context (i.e. not HTTPS). For more information and possible resolutions see https://github.com/libp2p/js-libp2p/blob/main/packages/crypto/README.md#web-crypto-api"),{code:"ERR_MISSING_WEB_CRYPTO"});return e}};var Eo={alg:"A128GCM",ext:!0,k:"scm9jmO_4BJAgdwWGVulLg",key_ops:["encrypt","decrypt"],kty:"oct"};function La(r){let e=r?.algorithm??"AES-GCM",t=r?.keyLength??16,n=r?.nonceLength??12,s=r?.digest??"SHA-256",o=r?.saltLength??16,i=r?.iterations??32767,a=ke.get();t*=8;async function c(l,d){let y=a.getRandomValues(new Uint8Array(o)),p=a.getRandomValues(new Uint8Array(n)),h={name:e,iv:p};typeof d=="string"&&(d=F(d));let g;if(d.length===0){g=await a.subtle.importKey("jwk",Eo,{name:"AES-GCM"},!0,["encrypt"]);try{let B={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},w=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);g=await a.subtle.deriveKey(B,w,{name:e,length:t},!0,["encrypt"])}catch{g=await a.subtle.importKey("jwk",Eo,{name:"AES-GCM"},!0,["encrypt"])}}else{let B={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},w=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);g=await a.subtle.deriveKey(B,w,{name:e,length:t},!0,["encrypt"])}let b=await a.subtle.encrypt(h,g,l);return Se([y,h.iv,new Uint8Array(b)])}async function f(l,d){let y=l.subarray(0,o),p=l.subarray(o,o+n),h=l.subarray(o+n),g={name:e,iv:p};typeof d=="string"&&(d=F(d));let b;if(d.length===0)try{let w={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},T=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);b=await a.subtle.deriveKey(w,T,{name:e,length:t},!0,["decrypt"])}catch{b=await a.subtle.importKey("jwk",Eo,{name:"AES-GCM"},!0,["decrypt"])}else{let w={name:"PBKDF2",salt:y,iterations:i,hash:{name:s}},T=await a.subtle.importKey("raw",d,{name:"PBKDF2"},!1,["deriveKey"]);b=await a.subtle.deriveKey(w,T,{name:e,length:t},!0,["decrypt"])}let B=await a.subtle.decrypt(g,b,h);return new Uint8Array(B)}return{encrypt:c,decrypt:f}}async function mr(r,e){let n=await La().encrypt(r,e);return ro.encode(n)}var xh=Math.pow(2,7),vh=Math.pow(2,14),Eh=Math.pow(2,21),Bo=Math.pow(2,28),Ao=Math.pow(2,35),Io=Math.pow(2,42),So=Math.pow(2,49),Y=128,Ee=127;function Be(r){if(r<xh)return 1;if(r<vh)return 2;if(r<Eh)return 3;if(r<Bo)return 4;if(r<Ao)return 5;if(r<Io)return 6;if(r<So)return 7;if(Number.MAX_SAFE_INTEGER!=null&&r>Number.MAX_SAFE_INTEGER)throw new RangeError("Could not encode varint");return 8}function ko(r,e,t=0){switch(Be(r)){case 8:e[t++]=r&255|Y,r/=128;case 7:e[t++]=r&255|Y,r/=128;case 6:e[t++]=r&255|Y,r/=128;case 5:e[t++]=r&255|Y,r/=128;case 4:e[t++]=r&255|Y,r>>>=7;case 3:e[t++]=r&255|Y,r>>>=7;case 2:e[t++]=r&255|Y,r>>>=7;case 1:{e[t++]=r&255,r>>>=7;break}default:throw new Error("unreachable")}return e}function Bh(r,e,t=0){switch(Be(r)){case 8:e.set(t++,r&255|Y),r/=128;case 7:e.set(t++,r&255|Y),r/=128;case 6:e.set(t++,r&255|Y),r/=128;case 5:e.set(t++,r&255|Y),r/=128;case 4:e.set(t++,r&255|Y),r>>>=7;case 3:e.set(t++,r&255|Y),r>>>=7;case 2:e.set(t++,r&255|Y),r>>>=7;case 1:{e.set(t++,r&255),r>>>=7;break}default:throw new Error("unreachable")}return e}function No(r,e){let t=r[e],n=0;if(n+=t&Ee,t<Y||(t=r[e+1],n+=(t&Ee)<<7,t<Y)||(t=r[e+2],n+=(t&Ee)<<14,t<Y)||(t=r[e+3],n+=(t&Ee)<<21,t<Y)||(t=r[e+4],n+=(t&Ee)*Bo,t<Y)||(t=r[e+5],n+=(t&Ee)*Ao,t<Y)||(t=r[e+6],n+=(t&Ee)*Io,t<Y)||(t=r[e+7],n+=(t&Ee)*So,t<Y))return n;throw new RangeError("Could not decode varint")}function Ah(r,e){let t=r.get(e),n=0;if(n+=t&Ee,t<Y||(t=r.get(e+1),n+=(t&Ee)<<7,t<Y)||(t=r.get(e+2),n+=(t&Ee)<<14,t<Y)||(t=r.get(e+3),n+=(t&Ee)<<21,t<Y)||(t=r.get(e+4),n+=(t&Ee)*Bo,t<Y)||(t=r.get(e+5),n+=(t&Ee)*Ao,t<Y)||(t=r.get(e+6),n+=(t&Ee)*Io,t<Y)||(t=r.get(e+7),n+=(t&Ee)*So,t<Y))return n;throw new RangeError("Could not decode varint")}function Ve(r,e,t=0){return e==null&&(e=Re(Be(r))),e instanceof Uint8Array?ko(r,e,t):Bh(r,e,t)}function bt(r,e=0){return r instanceof Uint8Array?No(r,e):Ah(r,e)}var Ro=new Float32Array([-0]),Pt=new Uint8Array(Ro.buffer);function Ua(r,e,t){Ro[0]=r,e[t]=Pt[0],e[t+1]=Pt[1],e[t+2]=Pt[2],e[t+3]=Pt[3]}function Pa(r,e){return Pt[0]=r[e],Pt[1]=r[e+1],Pt[2]=r[e+2],Pt[3]=r[e+3],Ro[0]}var To=new Float64Array([-0]),Ae=new Uint8Array(To.buffer);function Va(r,e,t){To[0]=r,e[t]=Ae[0],e[t+1]=Ae[1],e[t+2]=Ae[2],e[t+3]=Ae[3],e[t+4]=Ae[4],e[t+5]=Ae[5],e[t+6]=Ae[6],e[t+7]=Ae[7]}function Oa(r,e){return Ae[0]=r[e],Ae[1]=r[e+1],Ae[2]=r[e+2],Ae[3]=r[e+3],Ae[4]=r[e+4],Ae[5]=r[e+5],Ae[6]=r[e+6],Ae[7]=r[e+7],To[0]}var Ih=BigInt(Number.MAX_SAFE_INTEGER),Sh=BigInt(Number.MIN_SAFE_INTEGER),Le=class r{lo;hi;constructor(e,t){this.lo=e|0,this.hi=t|0}toNumber(e=!1){if(!e&&this.hi>>>31>0){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296}toBigInt(e=!1){if(e)return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n);if(this.hi>>>31){let t=~this.lo+1>>>0,n=~this.hi>>>0;return t===0&&(n=n+1>>>0),-(BigInt(t)+(BigInt(n)<<32n))}return BigInt(this.lo>>>0)+(BigInt(this.hi>>>0)<<32n)}toString(e=!1){return this.toBigInt(e).toString()}zzEncode(){let e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this}zzDecode(){let e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this}length(){let e=this.lo,t=(this.lo>>>28|this.hi<<4)>>>0,n=this.hi>>>24;return n===0?t===0?e<16384?e<128?1:2:e<2097152?3:4:t<16384?t<128?5:6:t<2097152?7:8:n<128?9:10}static fromBigInt(e){if(e===0n)return Yt;if(e<Ih&&e>Sh)return this.fromNumber(Number(e));let t=e<0n;t&&(e=-e);let n=e>>32n,s=e-(n<<32n);return t&&(n=~n|0n,s=~s|0n,++s>Da&&(s=0n,++n>Da&&(n=0n))),new r(Number(s),Number(n))}static fromNumber(e){if(e===0)return Yt;let t=e<0;t&&(e=-e);let n=e>>>0,s=(e-n)/4294967296>>>0;return t&&(s=~s>>>0,n=~n>>>0,++n>4294967295&&(n=0,++s>4294967295&&(s=0))),new r(n,s)}static from(e){return typeof e=="number"?r.fromNumber(e):typeof e=="bigint"?r.fromBigInt(e):typeof e=="string"?r.fromBigInt(BigInt(e)):e.low!=null||e.high!=null?new r(e.low>>>0,e.high>>>0):Yt}},Yt=new Le(0,0);Yt.toBigInt=function(){return 0n};Yt.zzEncode=Yt.zzDecode=function(){return this};Yt.length=function(){return 1};var Da=4294967296n;function Ma(r){let e=0,t=0;for(let n=0;n<r.length;++n)t=r.charCodeAt(n),t<128?e+=1:t<2048?e+=2:(t&64512)===55296&&(r.charCodeAt(n+1)&64512)===56320?(++n,e+=4):e+=3;return e}function Ha(r,e,t){if(t-e<1)return"";let s,o=[],i=0,a;for(;e<t;)a=r[e++],a<128?o[i++]=a:a>191&&a<224?o[i++]=(a&31)<<6|r[e++]&63:a>239&&a<365?(a=((a&7)<<18|(r[e++]&63)<<12|(r[e++]&63)<<6|r[e++]&63)-65536,o[i++]=55296+(a>>10),o[i++]=56320+(a&1023)):o[i++]=(a&15)<<12|(r[e++]&63)<<6|r[e++]&63,i>8191&&((s??(s=[])).push(String.fromCharCode.apply(String,o)),i=0);return s!=null?(i>0&&s.push(String.fromCharCode.apply(String,o.slice(0,i))),s.join("")):String.fromCharCode.apply(String,o.slice(0,i))}function _o(r,e,t){let n=t,s,o;for(let i=0;i<r.length;++i)s=r.charCodeAt(i),s<128?e[t++]=s:s<2048?(e[t++]=s>>6|192,e[t++]=s&63|128):(s&64512)===55296&&((o=r.charCodeAt(i+1))&64512)===56320?(s=65536+((s&1023)<<10)+(o&1023),++i,e[t++]=s>>18|240,e[t++]=s>>12&63|128,e[t++]=s>>6&63|128,e[t++]=s&63|128):(e[t++]=s>>12|224,e[t++]=s>>6&63|128,e[t++]=s&63|128);return t-n}function qe(r,e){return RangeError(`index out of range: ${r.pos} + ${e??1} > ${r.len}`)}function In(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}var Co=class{buf;pos;len;_slice=Uint8Array.prototype.subarray;constructor(e){this.buf=e,this.pos=0,this.len=e.length}uint32(){let e=4294967295;if(e=(this.buf[this.pos]&127)>>>0,this.buf[this.pos++]<128||(e=(e|(this.buf[this.pos]&127)<<7)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<14)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&127)<<21)>>>0,this.buf[this.pos++]<128)||(e=(e|(this.buf[this.pos]&15)<<28)>>>0,this.buf[this.pos++]<128))return e;if((this.pos+=5)>this.len)throw this.pos=this.len,qe(this,10);return e}int32(){return this.uint32()|0}sint32(){let e=this.uint32();return e>>>1^-(e&1)|0}bool(){return this.uint32()!==0}fixed32(){if(this.pos+4>this.len)throw qe(this,4);return In(this.buf,this.pos+=4)}sfixed32(){if(this.pos+4>this.len)throw qe(this,4);return In(this.buf,this.pos+=4)|0}float(){if(this.pos+4>this.len)throw qe(this,4);let e=Pa(this.buf,this.pos);return this.pos+=4,e}double(){if(this.pos+8>this.len)throw qe(this,4);let e=Oa(this.buf,this.pos);return this.pos+=8,e}bytes(){let e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw qe(this,e);return this.pos+=e,t===n?new Uint8Array(0):this.buf.subarray(t,n)}string(){let e=this.bytes();return Ha(e,0,e.length)}skip(e){if(typeof e=="number"){if(this.pos+e>this.len)throw qe(this,e);this.pos+=e}else do if(this.pos>=this.len)throw qe(this);while(this.buf[this.pos++]&128);return this}skipType(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(e=this.uint32()&7)!==4;)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error(`invalid wire type ${e} at offset ${this.pos}`)}return this}readLongVarint(){let e=new Le(0,0),t=0;if(this.len-this.pos>4){for(;t<4;++t)if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(this.buf[this.pos]&127)<<28)>>>0,e.hi=(e.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return e;t=0}else{for(;t<3;++t){if(this.pos>=this.len)throw qe(this);if(e.lo=(e.lo|(this.buf[this.pos]&127)<<t*7)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(this.buf[this.pos++]&127)<<t*7)>>>0,e}if(this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw qe(this);if(e.hi=(e.hi|(this.buf[this.pos]&127)<<t*7+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}readFixed64(){if(this.pos+8>this.len)throw qe(this,8);let e=In(this.buf,this.pos+=4),t=In(this.buf,this.pos+=4);return new Le(e,t)}int64(){return this.readLongVarint().toBigInt()}int64Number(){return this.readLongVarint().toNumber()}int64String(){return this.readLongVarint().toString()}uint64(){return this.readLongVarint().toBigInt(!0)}uint64Number(){let e=No(this.buf,this.pos);return this.pos+=Be(e),e}uint64String(){return this.readLongVarint().toString(!0)}sint64(){return this.readLongVarint().zzDecode().toBigInt()}sint64Number(){return this.readLongVarint().zzDecode().toNumber()}sint64String(){return this.readLongVarint().zzDecode().toString()}fixed64(){return this.readFixed64().toBigInt()}fixed64Number(){return this.readFixed64().toNumber()}fixed64String(){return this.readFixed64().toString()}sfixed64(){return this.readFixed64().toBigInt()}sfixed64Number(){return this.readFixed64().toNumber()}sfixed64String(){return this.readFixed64().toString()}};function Lo(r){return new Co(r instanceof Uint8Array?r:r.subarray())}function $e(r,e,t){let n=Lo(r);return e.decode(n,void 0,t)}function Uo(r){let e=r??8192,t=e>>>1,n,s=e;return function(i){if(i<1||i>t)return Re(i);s+i>e&&(n=Re(e),s=0);let a=n.subarray(s,s+=i);return s&7&&(s=(s|7)+1),a}}var Zt=class{fn;len;next;val;constructor(e,t,n){this.fn=e,this.len=t,this.next=void 0,this.val=n}};function Po(){}var Oo=class{head;tail;len;next;constructor(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}},kh=Uo();function Nh(r){return globalThis.Buffer!=null?Re(r):kh(r)}var Fr=class{len;head;tail;states;constructor(){this.len=0,this.head=new Zt(Po,0,0),this.tail=this.head,this.states=null}_push(e,t,n){return this.tail=this.tail.next=new Zt(e,t,n),this.len+=t,this}uint32(e){return this.len+=(this.tail=this.tail.next=new Do((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this}int32(e){return e<0?this._push(Sn,10,Le.fromNumber(e)):this.uint32(e)}sint32(e){return this.uint32((e<<1^e>>31)>>>0)}uint64(e){let t=Le.fromBigInt(e);return this._push(Sn,t.length(),t)}uint64Number(e){return this._push(ko,Be(e),e)}uint64String(e){return this.uint64(BigInt(e))}int64(e){return this.uint64(e)}int64Number(e){return this.uint64Number(e)}int64String(e){return this.uint64String(e)}sint64(e){let t=Le.fromBigInt(e).zzEncode();return this._push(Sn,t.length(),t)}sint64Number(e){let t=Le.fromNumber(e).zzEncode();return this._push(Sn,t.length(),t)}sint64String(e){return this.sint64(BigInt(e))}bool(e){return this._push(Vo,1,e?1:0)}fixed32(e){return this._push(Hr,4,e>>>0)}sfixed32(e){return this.fixed32(e)}fixed64(e){let t=Le.fromBigInt(e);return this._push(Hr,4,t.lo)._push(Hr,4,t.hi)}fixed64Number(e){let t=Le.fromNumber(e);return this._push(Hr,4,t.lo)._push(Hr,4,t.hi)}fixed64String(e){return this.fixed64(BigInt(e))}sfixed64(e){return this.fixed64(e)}sfixed64Number(e){return this.fixed64Number(e)}sfixed64String(e){return this.fixed64String(e)}float(e){return this._push(Ua,4,e)}double(e){return this._push(Va,8,e)}bytes(e){let t=e.length>>>0;return t===0?this._push(Vo,1,0):this.uint32(t)._push(Th,t,e)}string(e){let t=Ma(e);return t!==0?this.uint32(t)._push(_o,t,e):this._push(Vo,1,0)}fork(){return this.states=new Oo(this),this.head=this.tail=new Zt(Po,0,0),this.len=0,this}reset(){return this.states!=null?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new Zt(Po,0,0),this.len=0),this}ldelim(){let e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n!==0&&(this.tail.next=e.next,this.tail=t,this.len+=n),this}finish(){let e=this.head.next,t=Nh(this.len),n=0;for(;e!=null;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t}};function Vo(r,e,t){e[t]=r&255}function Rh(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}var Do=class extends Zt{next;constructor(e,t){super(Rh,e,t),this.next=void 0}};function Sn(r,e,t){for(;r.hi!==0;)e[t++]=r.lo&127|128,r.lo=(r.lo>>>7|r.hi<<25)>>>0,r.hi>>>=7;for(;r.lo>127;)e[t++]=r.lo&127|128,r.lo=r.lo>>>7;e[t++]=r.lo}function Hr(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}function Th(r,e,t){e.set(r,t)}globalThis.Buffer!=null&&(Fr.prototype.bytes=function(r){let e=r.length>>>0;return this.uint32(e),e>0&&this._push(_h,e,r),this},Fr.prototype.string=function(r){let e=globalThis.Buffer.byteLength(r);return this.uint32(e),e>0&&this._push(Ch,e,r),this});function _h(r,e,t){e.set(r,t)}function Ch(r,e,t){r.length<40?_o(r,e,t):e.utf8Write!=null?e.utf8Write(r,t):e.set(F(r),t)}function Mo(){return new Fr}function Ge(r,e){let t=Mo();return e.encode(r,t,{lengthDelimited:!1}),t.finish()}var yr;(function(r){r[r.VARINT=0]="VARINT",r[r.BIT64=1]="BIT64",r[r.LENGTH_DELIMITED=2]="LENGTH_DELIMITED",r[r.START_GROUP=3]="START_GROUP",r[r.END_GROUP=4]="END_GROUP",r[r.BIT32=5]="BIT32"})(yr||(yr={}));function kn(r,e,t,n){return{name:r,type:e,encode:t,decode:n}}function Ho(r){function e(s){if(r[s.toString()]==null)throw new Error("Invalid enum value");return r[s]}let t=function(o,i){let a=e(o);i.int32(a)},n=function(o){let i=o.int32();return e(i)};return kn("enum",yr.VARINT,t,n)}function ze(r,e){return kn("message",yr.LENGTH_DELIMITED,r,e)}var ee;(function(r){r.RSA="RSA",r.Ed25519="Ed25519",r.Secp256k1="Secp256k1"})(ee||(ee={}));var Fo;(function(r){r[r.RSA=0]="RSA",r[r.Ed25519=1]="Ed25519",r[r.Secp256k1=2]="Secp256k1"})(Fo||(Fo={}));(function(r){r.codec=()=>Ho(Fo)})(ee||(ee={}));var tt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),ee.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.Type=ee.codec().decode(t);break;case 2:s.Data=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(tt||(tt={}));var rt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.Type!=null&&(n.uint32(8),ee.codec().encode(t.Type,n)),t.Data!=null&&(n.uint32(18),n.bytes(t.Data)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.Type=ee.codec().decode(t);break;case 2:s.Data=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(rt||(rt={}));var Kr=class{_key;constructor(e){this._key=br(e,gr)}verify(e,t){return _a(this._key,t,e)}marshal(){return this._key}get bytes(){return tt.encode({Type:ee.Ed25519,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Pe(e)?e.then(({bytes:t})=>t):e.bytes}},Jt=class{_key;_publicKey;constructor(e,t){this._key=br(e,yt),this._publicKey=br(t,gr)}sign(e){return Ta(this._key,e)}get public(){return new Kr(this._publicKey)}marshal(){return this._key}get bytes(){return rt.encode({Type:ee.Ed25519,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}async hash(){let e=be.digest(this.bytes),t;return Pe(e)?{bytes:t}=await e:t=e.bytes,t}async id(){let e=kt.digest(this.public.bytes);return oe.encode(e.bytes).substring(1)}async export(e,t="libp2p-key"){if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};function Lh(r){if(r.length>yt){r=br(r,yt+gr);let n=r.subarray(0,yt),s=r.subarray(yt,r.length);return new Jt(n,s)}r=br(r,yt);let e=r.subarray(0,yt),t=r.subarray(gr);return new Jt(e,t)}function Uh(r){return r=br(r,gr),new Kr(r)}async function Ph(){let{privateKey:r,publicKey:e}=Na();return new Jt(r,e)}async function Ka(r){let{privateKey:e,publicKey:t}=Ra(r);return new Jt(e,t)}function br(r,e){if(r=Uint8Array.from(r??[]),r.length!==e)throw new C(`Key must be a Uint8Array of length ${e}, got ${r.length}`,"ERR_INVALID_KEY_TYPE");return r}function K(r,e="utf8"){let t=hn[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return t.encoder.encode(r).substring(1)}var Xo={};de(Xo,{MAX_RSA_KEY_SIZE:()=>en,RsaPrivateKey:()=>Br,RsaPublicKey:()=>Qr,fromJwk:()=>cd,generateKeyPair:()=>ld,unmarshalRsaPrivateKey:()=>Zo,unmarshalRsaPublicKey:()=>ad});function Xt(r){if(isNaN(r)||r<=0)throw new C("random bytes length must be a Number bigger than 0","ERR_INVALID_LENGTH");return fr(r)}var Mt={};de(Mt,{exportToPem:()=>rd,importFromPem:()=>nd,jwkToPkcs1:()=>Xh,jwkToPkix:()=>ed,pkcs1ToJwk:()=>Jh,pkixToJwk:()=>Qh});var Rn=class extends lr{constructor(e,t){super(),this.finished=!1,this.destroyed=!1,dn(e);let n=Rt(t);if(this.iHash=e.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;let s=this.blockLen,o=new Uint8Array(s);o.set(n.length>s?e.create().update(n).digest():n);for(let i=0;i<o.length;i++)o[i]^=54;this.iHash.update(o),this.oHash=e.create();for(let i=0;i<o.length;i++)o[i]^=106;this.oHash.update(o),o.fill(0)}update(e){return cr(this),this.iHash.update(e),this}digestInto(e){cr(this),ar(e,this.outputLen),this.finished=!0,this.iHash.digestInto(e),this.oHash.update(e),this.oHash.digestInto(e),this.destroy()}digest(){let e=new Uint8Array(this.oHash.outputLen);return this.digestInto(e),e}_cloneInto(e){e||(e=Object.create(Object.getPrototypeOf(this),{}));let{oHash:t,iHash:n,finished:s,destroyed:o,blockLen:i,outputLen:a}=this;return e=e,e.finished=s,e.destroyed=o,e.blockLen=i,e.outputLen=a,e.oHash=t._cloneInto(e.oHash),e.iHash=n._cloneInto(e.iHash),e}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}},qr=(r,e,t)=>new Rn(r,e).update(t).digest();qr.create=(r,e)=>new Rn(r,e);function Vh(r,e,t,n){dn(r);let s=ha({dkLen:32,asyncTick:10},n),{c:o,dkLen:i,asyncTick:a}=s;if(ir(o),ir(i),ir(a),o<1)throw new Error("PBKDF2: iterations (c) should be >= 1");let c=Rt(e),f=Rt(t),u=new Uint8Array(i),l=qr.create(r,c),d=l._cloneInto().update(f);return{c:o,dkLen:i,asyncTick:a,DK:u,PRF:l,PRFSalt:d}}function Oh(r,e,t,n,s){return r.destroy(),e.destroy(),n&&n.destroy(),s.fill(0),t}async function qo(r,e,t,n){let{c:s,dkLen:o,asyncTick:i,DK:a,PRF:c,PRFSalt:f}=Vh(r,e,t,n),u,l=new Uint8Array(4),d=ur(l),y=new Uint8Array(c.outputLen);for(let p=1,h=0;h<o;p++,h+=c.outputLen){let g=a.subarray(h,h+c.outputLen);d.setInt32(0,p,!1),(u=f._cloneInto(u)).update(l).digestInto(y),g.set(y.subarray(0,g.length)),await ua(s-1,i,()=>{c._cloneInto(u).update(y).digestInto(y);for(let b=0;b<g.length;b++)g[b]^=y[b]})}return Oh(c,f,a,u,y)}var M=Fi(qa());function Qt(r,e){let t=0;if(r.length===1)return r[0];for(let n=r.length-1;n>=0;n--)t+=r[r.length-1-n]*Math.pow(2,e*n);return t}function Vt(r,e,t=-1){let n=t,s=r,o=0,i=Math.pow(2,e);for(let a=1;a<8;a++){if(r<i){let c;if(n<0)c=new ArrayBuffer(a),o=a;else{if(n<a)return new ArrayBuffer(0);c=new ArrayBuffer(n),o=n}let f=new Uint8Array(c);for(let u=a-1;u>=0;u--){let l=Math.pow(2,u*e);f[o-u-1]=Math.floor(s/l),s-=f[o-u-1]*l}return c}i*=Math.pow(2,e)}return new ArrayBuffer(0)}function Cn(...r){let e=0,t=0;for(let o of r)e+=o.length;let n=new ArrayBuffer(e),s=new Uint8Array(n);for(let o of r)s.set(o,t),t+=o.length;return s}function Go(){let r=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){let a=r[0]===255&&r[1]&128,c=r[0]===0&&(r[1]&128)===0;(a||c)&&this.warnings.push("Needlessly long format")}let e=new ArrayBuffer(this.valueHex.byteLength),t=new Uint8Array(e);for(let a=0;a<this.valueHex.byteLength;a++)t[a]=0;t[0]=r[0]&128;let n=Qt(t,8),s=new ArrayBuffer(this.valueHex.byteLength),o=new Uint8Array(s);for(let a=0;a<this.valueHex.byteLength;a++)o[a]=r[a];return o[0]&=127,Qt(o,8)-n}function $a(r){let e=r<0?r*-1:r,t=128;for(let n=1;n<8;n++){if(e<=t){if(r<0){let i=t-e,a=Vt(i,8,n),c=new Uint8Array(a);return c[0]|=128,a}let s=Vt(e,8,n),o=new Uint8Array(s);if(o[0]&128){let i=s.slice(0),a=new Uint8Array(i);s=new ArrayBuffer(s.byteLength+1),o=new Uint8Array(s);for(let c=0;c<i.byteLength;c++)o[c+1]=a[c];o[0]=0}return s}t*=Math.pow(2,8)}return new ArrayBuffer(0)}function Ga(r,e){if(r.byteLength!==e.byteLength)return!1;let t=new Uint8Array(r),n=new Uint8Array(e);for(let s=0;s<t.length;s++)if(t[s]!==n[s])return!1;return!0}function Te(r,e){let t=r.toString(10);if(e<t.length)return"";let n=e-t.length,s=new Array(n);for(let i=0;i<n;i++)s[i]="0";return s.join("").concat(t)}var bm=Math.log(2);function Ln(){if(typeof BigInt>"u")throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function zo(r){let e=0,t=0;for(let s=0;s<r.length;s++){let o=r[s];e+=o.byteLength}let n=new Uint8Array(e);for(let s=0;s<r.length;s++){let o=r[s];n.set(new Uint8Array(o),t),t+=o.byteLength}return n.buffer}function Bt(r,e,t,n){return e instanceof Uint8Array?e.byteLength?t<0?(r.error="Wrong parameter: inputOffset less than zero",!1):n<0?(r.error="Wrong parameter: inputLength less than zero",!1):e.byteLength-t-n<0?(r.error="End of input reached before message was fully decoded (inconsistent offset and length values)",!1):!0:(r.error="Wrong parameter: inputBuffer has zero length",!1):(r.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}var Gr=class{constructor(){this.items=[]}write(e){this.items.push(e)}final(){return zo(this.items)}},$r=[new Uint8Array([1])],za="0123456789";var vr="",We=new ArrayBuffer(0),jo=new Uint8Array(0),zr="EndOfContent",Wa="OCTET STRING",Ya="BIT STRING";function At(r){var e;return e=class extends r{constructor(...n){var s;super(...n);let o=n[0]||{};this.isHexOnly=(s=o.isHexOnly)!==null&&s!==void 0?s:!1,this.valueHexView=o.valueHex?M.BufferSourceConverter.toUint8Array(o.valueHex):jo}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(n){this.valueHexView=new Uint8Array(n)}fromBER(n,s,o){let i=n instanceof ArrayBuffer?new Uint8Array(n):n;if(!Bt(this,i,s,o))return-1;let a=s+o;return this.valueHexView=i.subarray(s,a),this.valueHexView.length?(this.blockLength=o,a):(this.warnings.push("Zero buffer length"),s)}toBER(n=!1){return this.isHexOnly?n?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",We)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:M.Convert.ToHex(this.valueHexView)}}},e.NAME="hexBlock",e}var xt=class{constructor({blockLength:e=0,error:t=vr,warnings:n=[],valueBeforeDecode:s=jo}={}){this.blockLength=e,this.error=t,this.warnings=n,this.valueBeforeDecodeView=M.BufferSourceConverter.toUint8Array(s)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(e){this.valueBeforeDecodeView=new Uint8Array(e)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:M.Convert.ToHex(this.valueBeforeDecodeView)}}};xt.NAME="baseBlock";var Ie=class extends xt{fromBER(e,t,n){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(e,t){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}};Ie.NAME="valueBlock";var Un=class extends At(xt){constructor({idBlock:e={}}={}){var t,n,s,o;super(),e?(this.isHexOnly=(t=e.isHexOnly)!==null&&t!==void 0?t:!1,this.valueHexView=e.valueHex?M.BufferSourceConverter.toUint8Array(e.valueHex):jo,this.tagClass=(n=e.tagClass)!==null&&n!==void 0?n:-1,this.tagNumber=(s=e.tagNumber)!==null&&s!==void 0?s:-1,this.isConstructed=(o=e.isConstructed)!==null&&o!==void 0?o:!1):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(e=!1){let t=0;switch(this.tagClass){case 1:t|=0;break;case 2:t|=64;break;case 3:t|=128;break;case 4:t|=192;break;default:return this.error="Unknown tag class",We}if(this.isConstructed&&(t|=32),this.tagNumber<31&&!this.isHexOnly){let s=new Uint8Array(1);if(!e){let o=this.tagNumber;o&=31,t|=o,s[0]=t}return s.buffer}if(!this.isHexOnly){let s=Vt(this.tagNumber,7),o=new Uint8Array(s),i=s.byteLength,a=new Uint8Array(i+1);if(a[0]=t|31,!e){for(let c=0;c<i-1;c++)a[c+1]=o[c]|128;a[i]=o[i-1]}return a.buffer}let n=new Uint8Array(this.valueHexView.byteLength+1);if(n[0]=t|31,!e){let s=this.valueHexView;for(let o=0;o<s.length-1;o++)n[o+1]=s[o]|128;n[this.valueHexView.byteLength]=s[s.length-1]}return n.buffer}fromBER(e,t,n){let s=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,s,t,n))return-1;let o=s.subarray(t,t+n);if(o.length===0)return this.error="Zero buffer length",-1;switch(o[0]&192){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=(o[0]&32)===32,this.isHexOnly=!1;let a=o[0]&31;if(a!==31)this.tagNumber=a,this.blockLength=1;else{let c=1,f=this.valueHexView=new Uint8Array(255),u=255;for(;o[c]&128;){if(f[c-1]=o[c]&127,c++,c>=o.length)return this.error="End of input reached before message was fully decoded",-1;if(c===u){u+=255;let d=new Uint8Array(u);for(let y=0;y<f.length;y++)d[y]=f[y];f=this.valueHexView=new Uint8Array(u)}}this.blockLength=c+1,f[c-1]=o[c]&127;let l=new Uint8Array(c);for(let d=0;d<c;d++)l[d]=f[d];f=this.valueHexView=new Uint8Array(c),f.set(l),this.blockLength<=9?this.tagNumber=Qt(f,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(this.tagClass===1&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return t+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}};Un.NAME="identificationBlock";var Pn=class extends xt{constructor({lenBlock:e={}}={}){var t,n,s;super(),this.isIndefiniteForm=(t=e.isIndefiniteForm)!==null&&t!==void 0?t:!1,this.longFormUsed=(n=e.longFormUsed)!==null&&n!==void 0?n:!1,this.length=(s=e.length)!==null&&s!==void 0?s:0}fromBER(e,t,n){let s=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,s,t,n))return-1;let o=s.subarray(t,t+n);if(o.length===0)return this.error="Zero buffer length",-1;if(o[0]===255)return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=o[0]===128,this.isIndefiniteForm)return this.blockLength=1,t+this.blockLength;if(this.longFormUsed=!!(o[0]&128),this.longFormUsed===!1)return this.length=o[0],this.blockLength=1,t+this.blockLength;let i=o[0]&127;if(i>8)return this.error="Too big integer",-1;if(i+1>o.length)return this.error="End of input reached before message was fully decoded",-1;let a=t+1,c=s.subarray(a,a+i);return c[i-1]===0&&this.warnings.push("Needlessly long encoded length"),this.length=Qt(c,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=i+1,t+this.blockLength}toBER(e=!1){let t,n;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=128),t;if(this.longFormUsed){let s=Vt(this.length,8);if(s.byteLength>127)return this.error="Too big length",We;if(t=new ArrayBuffer(s.byteLength+1),e)return t;let o=new Uint8Array(s);n=new Uint8Array(t),n[0]=s.byteLength|128;for(let i=0;i<s.byteLength;i++)n[i+1]=o[i];return t}return t=new ArrayBuffer(1),e===!1&&(n=new Uint8Array(t),n[0]=this.length),t}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}};Pn.NAME="lengthBlock";var I={},we=class extends xt{constructor({name:e=vr,optional:t=!1,primitiveSchema:n,...s}={},o){super(s),this.name=e,this.optional=t,n&&(this.primitiveSchema=n),this.idBlock=new Un(s),this.lenBlock=new Pn(s),this.valueBlock=o?new o(s):new Ie(s)}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}toBER(e,t){let n=t||new Gr;t||Za(this);let s=this.idBlock.toBER(e);if(n.write(s),this.lenBlock.isIndefiniteForm)n.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(e,n),n.write(new ArrayBuffer(2));else{let o=this.valueBlock.toBER(e);this.lenBlock.length=o.byteLength;let i=this.lenBlock.toBER(e);n.write(i),n.write(o)}return t?We:n.final()}toJSON(){let e={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(e.primitiveSchema=this.primitiveSchema.toJSON()),e}toString(e="ascii"){return e==="ascii"?this.onAsciiEncoding():M.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${M.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(e){if(this===e)return!0;if(!(e instanceof this.constructor))return!1;let t=this.toBER(),n=e.toBER();return Ga(t,n)}};we.NAME="BaseBlock";function Za(r){if(r instanceof I.Constructed)for(let e of r.valueBlock.value)Za(e)&&(r.lenBlock.isIndefiniteForm=!0);return!!r.lenBlock.isIndefiniteForm}var Vn=class extends we{constructor({value:e=vr,...t}={},n){super(t,n),e&&this.fromString(e)}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}fromBER(e,t,n){let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}};Vn.NAME="BaseStringBlock";var On=class extends At(Ie){constructor({isHexOnly:e=!0,...t}={}){super(t),this.isHexOnly=e}};On.NAME="PrimitiveValueBlock";var Ja,Dn=class extends we{constructor(e={}){super(e,On),this.idBlock.isConstructed=!1}};Ja=Dn;I.Primitive=Ja;Dn.NAME="PRIMITIVE";function zh(r,e){if(r instanceof e)return r;let t=new e;return t.idBlock=r.idBlock,t.lenBlock=r.lenBlock,t.warnings=r.warnings,t.valueBeforeDecodeView=r.valueBeforeDecodeView,t}function ys(r,e=0,t=r.length){let n=e,s=new we({},Ie),o=new xt;if(!Bt(o,r,e,t))return s.error=o.error,{offset:-1,result:s};if(!r.subarray(e,e+t).length)return s.error="Zero buffer length",{offset:-1,result:s};let a=s.idBlock.fromBER(r,e,t);if(s.idBlock.warnings.length&&s.warnings.concat(s.idBlock.warnings),a===-1)return s.error=s.idBlock.error,{offset:-1,result:s};if(e=a,t-=s.idBlock.blockLength,a=s.lenBlock.fromBER(r,e,t),s.lenBlock.warnings.length&&s.warnings.concat(s.lenBlock.warnings),a===-1)return s.error=s.lenBlock.error,{offset:-1,result:s};if(e=a,t-=s.lenBlock.blockLength,!s.idBlock.isConstructed&&s.lenBlock.isIndefiniteForm)return s.error="Indefinite length form used for primitive encoding form",{offset:-1,result:s};let c=we;switch(s.idBlock.tagClass){case 1:if(s.idBlock.tagNumber>=37&&s.idBlock.isHexOnly===!1)return s.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:s};switch(s.idBlock.tagNumber){case 0:if(s.idBlock.isConstructed&&s.lenBlock.length>0)return s.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:s};c=I.EndOfContent;break;case 1:c=I.Boolean;break;case 2:c=I.Integer;break;case 3:c=I.BitString;break;case 4:c=I.OctetString;break;case 5:c=I.Null;break;case 6:c=I.ObjectIdentifier;break;case 10:c=I.Enumerated;break;case 12:c=I.Utf8String;break;case 13:c=I.RelativeObjectIdentifier;break;case 14:c=I.TIME;break;case 15:return s.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:s};case 16:c=I.Sequence;break;case 17:c=I.Set;break;case 18:c=I.NumericString;break;case 19:c=I.PrintableString;break;case 20:c=I.TeletexString;break;case 21:c=I.VideotexString;break;case 22:c=I.IA5String;break;case 23:c=I.UTCTime;break;case 24:c=I.GeneralizedTime;break;case 25:c=I.GraphicString;break;case 26:c=I.VisibleString;break;case 27:c=I.GeneralString;break;case 28:c=I.UniversalString;break;case 29:c=I.CharacterString;break;case 30:c=I.BmpString;break;case 31:c=I.DATE;break;case 32:c=I.TimeOfDay;break;case 33:c=I.DateTime;break;case 34:c=I.Duration;break;default:{let f=s.idBlock.isConstructed?new I.Constructed:new I.Primitive;f.idBlock=s.idBlock,f.lenBlock=s.lenBlock,f.warnings=s.warnings,s=f}}break;case 2:case 3:case 4:default:c=s.idBlock.isConstructed?I.Constructed:I.Primitive}return s=zh(s,c),a=s.fromBER(r,e,s.lenBlock.isIndefiniteForm?t:s.lenBlock.length),s.valueBeforeDecodeView=r.subarray(n,n+s.blockLength),{offset:a,result:s}}function Er(r){if(!r.byteLength){let e=new we({},Ie);return e.error="Input buffer has zero length",{offset:-1,result:e}}return ys(M.BufferSourceConverter.toUint8Array(r).slice(),0,r.byteLength)}function jh(r,e){return r?1:e}var nt=class extends Ie{constructor({value:e=[],isIndefiniteForm:t=!1,...n}={}){super(n),this.value=e,this.isIndefiniteForm=t}fromBER(e,t,n){let s=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,s,t,n))return-1;if(this.valueBeforeDecodeView=s.subarray(t,t+n),this.valueBeforeDecodeView.length===0)return this.warnings.push("Zero buffer length"),t;let o=t;for(;jh(this.isIndefiniteForm,n)>0;){let i=ys(s,o,n);if(i.offset===-1)return this.error=i.result.error,this.warnings.concat(i.result.warnings),-1;if(o=i.offset,this.blockLength+=i.result.blockLength,n-=i.result.blockLength,this.value.push(i.result),this.isIndefiniteForm&&i.result.constructor.NAME===zr)break}return this.isIndefiniteForm&&(this.value[this.value.length-1].constructor.NAME===zr?this.value.pop():this.warnings.push("No EndOfContent block encoded")),o}toBER(e,t){let n=t||new Gr;for(let s=0;s<this.value.length;s++)this.value[s].toBER(e,n);return t?We:n.final()}toJSON(){let e={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(let t of this.value)e.value.push(t.toJSON());return e}};nt.NAME="ConstructedValueBlock";var Xa,Ot=class extends we{constructor(e={}){super(e,nt),this.idBlock.isConstructed=!0}fromBER(e,t,n){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;let s=this.valueBlock.fromBER(e,t,this.lenBlock.isIndefiniteForm?n:this.lenBlock.length);return s===-1?(this.error=this.valueBlock.error,s):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),s)}onAsciiEncoding(){let e=[];for(let n of this.valueBlock.value)e.push(n.toString("ascii").split(`
|
|
3
3
|
`).map(s=>` ${s}`).join(`
|
|
4
4
|
`));let t=this.idBlock.tagClass===3?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return e.length?`${t} :
|
|
5
5
|
${e.join(`
|
|
6
|
-
`)}`:`${t} :`}};ec=Ot;I.Constructed=ec;Ot.NAME="CONSTRUCTED";var Mn=class extends Ie{fromBER(e,t,n){return t}toBER(e){return We}};Mn.override="EndOfContentValueBlock";var tc,Hn=class extends we{constructor(e={}){super(e,Mn),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};tc=Hn;I.EndOfContent=tc;Hn.NAME=zr;var rc,Dt=class extends we{constructor(e={}){super(e,Ie),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(e,t,n){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=n,t+n>e.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):t+n}toBER(e,t){let n=new ArrayBuffer(2);if(!e){let s=new Uint8Array(n);s[0]=5,s[1]=0}return t&&t.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};rc=Dt;I.Null=rc;Dt.NAME="NULL";var Fn=class extends It(Ie){constructor({value:e,...t}={}){super(t),t.valueHex?this.valueHexView=F.BufferSourceConverter.toUint8Array(t.valueHex):this.valueHexView=new Uint8Array(1),e&&(this.value=e)}get value(){for(let e of this.valueHexView)if(e>0)return!0;return!1}set value(e){this.valueHexView[0]=e?255:0}fromBER(e,t,n){let s=F.BufferSourceConverter.toUint8Array(e);return At(this,s,t,n)?(this.valueHexView=s.subarray(t,t+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,zo.call(this),this.blockLength=n,t+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};Fn.NAME="BooleanValueBlock";var nc,Kn=class extends we{constructor(e={}){super(e,Fn),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};nc=Kn;I.Boolean=nc;Kn.NAME="BOOLEAN";var qn=class extends It(nt){constructor({isConstructed:e=!1,...t}={}){super(t),this.isConstructed=e}fromBER(e,t,n){let s=0;if(this.isConstructed){if(this.isHexOnly=!1,s=nt.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let o=0;o<this.value.length;o++){let i=this.value[o].constructor.NAME;if(i===zr){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(i!==Za)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,s=super.fromBER(e,t,n),this.blockLength=n;return s}toBER(e,t){return this.isConstructed?nt.prototype.toBER.call(this,e,t):e?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};qn.NAME="OctetStringValueBlock";var sc,Et=class r extends we{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,o;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((o=n.value)===null||o===void 0)&&o.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},qn),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(e,t,n){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,n===0)return this.idBlock.error.length===0&&(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length===0&&(this.blockLength+=this.lenBlock.blockLength),t;if(!this.valueBlock.isConstructed){let o=(e instanceof ArrayBuffer?new Uint8Array(e):e).subarray(t,t+n);try{if(o.byteLength){let i=ys(o,0,o.byteLength);i.offset!==-1&&i.offset===n&&(this.valueBlock.value=[i.result])}}catch{}}return super.fromBER(e,t,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Ot.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${F.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;let e=[];for(let t of this.valueBlock.value)t instanceof r&&e.push(t.valueBlock.valueHexView);return F.BufferSourceConverter.concat(e)}};sc=Et;I.OctetString=sc;Et.NAME=Za;var $n=class extends It(nt){constructor({unusedBits:e=0,isConstructed:t=!1,...n}={}){super(n),this.unusedBits=e,this.isConstructed=t,this.blockLength=this.valueHexView.byteLength}fromBER(e,t,n){if(!n)return t;let s=-1;if(this.isConstructed){if(s=nt.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let a of this.value){let c=a.constructor.NAME;if(c===zr){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==Ja)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let f=a.valueBlock;if(this.unusedBits>0&&f.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=f.unusedBits}return s}let o=F.BufferSourceConverter.toUint8Array(e);if(!At(this,o,t,n))return-1;let i=o.subarray(t,t+n);if(this.unusedBits=i[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=i.subarray(1);try{if(a.byteLength){let c=ys(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=i.subarray(1),this.blockLength=i.length,t+n}toBER(e,t){if(this.isConstructed)return nt.prototype.toBER.call(this,e,t);if(e)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return We;let n=new Uint8Array(this.valueHexView.length+1);return n[0]=this.unusedBits,n.set(this.valueHexView,1),n.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}};$n.NAME="BitStringValueBlock";var oc,xr=class extends we{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,o;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((o=n.value)===null||o===void 0)&&o.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},$n),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(e,t,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(e,t,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Ot.prototype.onAsciiEncoding.call(this);{let e=[],t=this.valueBlock.valueHexView;for(let s of t)e.push(s.toString(2).padStart(8,"0"));let n=e.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};oc=xr;I.BitString=oc;xr.NAME=Ja;var ic;function Jh(r,e){let t=new Uint8Array([0]),n=new Uint8Array(r),s=new Uint8Array(e),o=n.slice(0),i=o.length-1,a=s.slice(0),c=a.length-1,f=0,u=c<i?i:c,l=0;for(let d=u;d>=0;d--,l++){switch(!0){case l<a.length:f=o[i-l]+a[c-l]+t[0];break;default:f=o[i-l]+t[0]}switch(t[0]=f/10,!0){case l>=o.length:o=Cn(new Uint8Array([f%10]),o);break;default:o[i-l]=f%10}}return t[0]>0&&(o=Cn(t,o)),o}function Ya(r){if(r>=$r.length)for(let e=$r.length;e<=r;e++){let t=new Uint8Array([0]),n=$r[e-1].slice(0);for(let s=n.length-1;s>=0;s--){let o=new Uint8Array([(n[s]<<1)+t[0]]);t[0]=o[0]/10,n[s]=o[0]%10}t[0]>0&&(n=Cn(t,n)),$r.push(n)}return $r[r]}function Xh(r,e){let t=0,n=new Uint8Array(r),s=new Uint8Array(e),o=n.slice(0),i=o.length-1,a=s.slice(0),c=a.length-1,f,u=0;for(let l=c;l>=0;l--,u++)switch(f=o[i-u]-a[c-u]-t,!0){case f<0:t=1,o[i-u]=f+10;break;default:t=0,o[i-u]=f}if(t>0)for(let l=i-c+1;l>=0;l--,u++)if(f=o[i-u]-t,f<0)t=1,o[i-u]=f+10;else{t=0,o[i-u]=f;break}return o.slice()}var jr=class extends It(Ie){constructor({value:e,...t}={}){super(t),this._valueDec=0,t.valueHex&&this.setValueHex(),e!==void 0&&(this.valueDec=e)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=zo.call(this)))}set valueDec(e){this._valueDec=e,this.isHexOnly=!1,this.valueHexView=new Uint8Array(za(e))}get valueDec(){return this._valueDec}fromDER(e,t,n,s=0){let o=this.fromBER(e,t,n);if(o===-1)return o;let i=this.valueHexView;return i[0]===0&&i[1]&128?this.valueHexView=i.subarray(1):s!==0&&i.length<s&&(s-i.length>1&&(s=i.length+1),this.valueHexView=i.subarray(s-i.length)),o}toDER(e=!1){let t=this.valueHexView;switch(!0){case(t[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(t,1),this.valueHexView=n}break;case(t[0]===0&&(t[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(e)}fromBER(e,t,n){let s=super.fromBER(e,t,n);return s===-1||this.setValueHex(),s}toBER(e){return e?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let e=this.valueHexView.length*8-1,t=new Uint8Array(this.valueHexView.length*8/3),n=0,s,o=this.valueHexView,i="",a=!1;for(let c=o.byteLength-1;c>=0;c--){s=o[c];for(let f=0;f<8;f++){if((s&1)===1)switch(n){case e:t=Xh(Ya(n),t),i="-";break;default:t=Jh(t,Ya(n))}n++,s>>=1}}for(let c=0;c<t.length;c++)t[c]&&(a=!0),a&&(i+=Wa.charAt(t[c]));return a===!1&&(i+=Wa.charAt(0)),i}};ic=jr;jr.NAME="IntegerValueBlock";Object.defineProperty(ic.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var ac,le=class r extends we{constructor(e={}){super(e,jr),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Ln(),BigInt(this.valueBlock.toString())}static fromBigInt(e){Ln();let t=BigInt(e),n=new Gr,s=t.toString(16).replace(/^-/,""),o=new Uint8Array(F.Convert.FromHex(s));if(t<0){let a=new Uint8Array(o.length+(o[0]&128?1:0));a[0]|=128;let f=BigInt(`0x${F.Convert.ToHex(a)}`)+t,u=F.BufferSourceConverter.toUint8Array(F.Convert.FromHex(f.toString(16)));u[0]|=128,n.write(u)}else o[0]&128&&n.write(new Uint8Array([0])),n.write(o);return new r({valueHex:n.final()})}convertToDER(){let e=new r({valueHex:this.valueBlock.valueHexView});return e.valueBlock.toDER(),e}convertFromDER(){return new r({valueHex:this.valueBlock.valueHexView[0]===0?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}};ac=le;I.Integer=ac;le.NAME="INTEGER";var cc,Gn=class extends le{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};cc=Gn;I.Enumerated=cc;Gn.NAME="ENUMERATED";var Wr=class extends It(Ie){constructor({valueDec:e=-1,isFirstSid:t=!1,...n}={}){super(n),this.valueDec=e,this.isFirstSid=t}fromBER(e,t,n){if(!n)return t;let s=F.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let o=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=o[a]&127,this.blockLength++,!!(o[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,o[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=Qt(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}set valueBigInt(e){Ln();let t=BigInt(e).toString(2);for(;t.length%7;)t="0"+t;let n=new Uint8Array(t.length/7);for(let s=0;s<n.length;s++)n[s]=parseInt(t.slice(s*7,s*7+7),2)+(s+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,o=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)o[i]=s[i]|128;return o[this.blockLength-1]=s[this.blockLength-1],o.buffer}let t=Vt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",We;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),o=t.byteLength-1;for(let i=0;i<o;i++)n[i]=s[i]|128;n[o]=s[o]}return n}toString(){let e="";if(this.isHexOnly)e=F.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};Wr.NAME="sidBlock";var zn=class extends Ie{constructor({value:e=vr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let o=new Wr;if(s=o.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=o.error,s;this.value.length===0&&(o.isFirstSid=!0),this.blockLength+=o.blockLength,n-=o.blockLength,this.value.push(o)}return s}toBER(e){let t=[];for(let n=0;n<this.value.length;n++){let s=this.value[n].toBER(e);if(s.byteLength===0)return this.error=this.value[n].error,We;t.push(s)}return jo(t)}fromString(e){this.value=[];let t=0,n=0,s="",o=!1;do if(n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1,o){let i=this.value[0],a=0;switch(i.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(s,10);if(isNaN(c))return;i.valueDec=c+a,o=!1}else{let i=new Wr;if(s>Number.MAX_SAFE_INTEGER){Ln();let a=BigInt(s);i.valueBigInt=a}else if(i.valueDec=parseInt(s,10),isNaN(i.valueDec))return;this.value.length||(i.isFirstSid=!0,o=!0),this.value.push(i)}while(n!==-1)}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t?(s=`{${s}}`,this.value[n].isFirstSid?e=`2.{${s} - 80}`:e+=s):e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};zn.NAME="ObjectIdentifierValueBlock";var lc,je=class extends we{constructor(e={}){super(e,zn),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};lc=je;I.ObjectIdentifier=lc;je.NAME="OBJECT IDENTIFIER";var Yr=class extends It(vt){constructor({valueDec:e=0,...t}={}){super(t),this.valueDec=e}fromBER(e,t,n){if(n===0)return t;let s=F.BufferSourceConverter.toUint8Array(e);if(!At(this,s,t,n))return-1;let o=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=o[a]&127,this.blockLength++,!!(o[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,o[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=Qt(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,o=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)o[i]=s[i]|128;return o[this.blockLength-1]=s[this.blockLength-1],o.buffer}let t=Vt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",We;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),o=t.byteLength-1;for(let i=0;i<o;i++)n[i]=s[i]|128;n[o]=s[o]}return n.buffer}toString(){let e="";return this.isHexOnly?e=F.Convert.ToHex(this.valueHexView):e=this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};Yr.NAME="relativeSidBlock";var jn=class extends Ie{constructor({value:e=vr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let o=new Yr;if(s=o.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=o.error,s;this.blockLength+=o.blockLength,n-=o.blockLength,this.value.push(o)}return s}toBER(e,t){let n=[];for(let s=0;s<this.value.length;s++){let o=this.value[s].toBER(e);if(o.byteLength===0)return this.error=this.value[s].error,We;n.push(o)}return jo(n)}fromString(e){this.value=[];let t=0,n=0,s="";do{n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1;let o=new Yr;if(o.valueDec=parseInt(s,10),isNaN(o.valueDec))return!0;this.value.push(o)}while(n!==-1);return!0}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t&&(s=`{${s}}`),e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};jn.NAME="RelativeObjectIdentifierValueBlock";var uc,Wn=class extends we{constructor(e={}){super(e,jn),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};uc=Wn;I.RelativeObjectIdentifier=uc;Wn.NAME="RelativeObjectIdentifier";var fc,ge=class extends Ot{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};fc=ge;I.Sequence=fc;ge.NAME="SEQUENCE";var hc,Yn=class extends Ot{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};hc=Yn;I.Set=hc;Yn.NAME="SET";var Zn=class extends It(Ie){constructor({...e}={}){super(e),this.isHexOnly=!0,this.value=vr}toJSON(){return{...super.toJSON(),value:this.value}}};Zn.NAME="StringValueBlock";var Jn=class extends Zn{};Jn.NAME="SimpleStringValueBlock";var Ne=class extends Vn{constructor({...e}={}){super(e,Jn)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,F.BufferSourceConverter.toUint8Array(e))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);this.valueBlock.value=e}};Ne.NAME="SIMPLE STRING";var Xn=class extends Ne{fromBuffer(e){this.valueBlock.valueHexView=F.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=F.Convert.ToUtf8String(e)}catch(t){this.warnings.push(`Error during "decodeURIComponent": ${t}, using raw string`),this.valueBlock.value=F.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(F.Convert.FromUtf8String(e)),this.valueBlock.value=e}};Xn.NAME="Utf8StringValueBlock";var dc,Bt=class extends Xn{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};dc=Bt;I.Utf8String=dc;Bt.NAME="UTF8String";var Qn=class extends Ne{fromBuffer(e){this.valueBlock.value=F.Convert.ToUtf16String(e),this.valueBlock.valueHexView=F.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(F.Convert.FromUtf16String(e))}};Qn.NAME="BmpStringValueBlock";var pc,es=class extends Qn{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};pc=es;I.BmpString=pc;es.NAME="BMPString";var ts=class extends Ne{fromBuffer(e){let t=ArrayBuffer.isView(e)?e.slice().buffer:e.slice(0),n=new Uint8Array(t);for(let s=0;s<n.length;s+=4)n[s]=n[s+3],n[s+1]=n[s+2],n[s+2]=0,n[s+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(t))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t*4);for(let s=0;s<t;s++){let o=Vt(e.charCodeAt(s),8),i=new Uint8Array(o);if(i.length>4)continue;let a=4-i.length;for(let c=i.length-1;c>=0;c--)n[s*4+c+a]=i[c]}this.valueBlock.value=e}};ts.NAME="UniversalStringValueBlock";var gc,rs=class extends ts{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};gc=rs;I.UniversalString=gc;rs.NAME="UniversalString";var mc,ns=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};mc=ns;I.NumericString=mc;ns.NAME="NumericString";var yc,ss=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};yc=ss;I.PrintableString=yc;ss.NAME="PrintableString";var bc,os=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};bc=os;I.TeletexString=bc;os.NAME="TeletexString";var wc,is=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};wc=is;I.VideotexString=wc;is.NAME="VideotexString";var xc,as=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};xc=as;I.IA5String=xc;as.NAME="IA5String";var vc,cs=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};vc=cs;I.GraphicString=vc;cs.NAME="GraphicString";var Ec,Zr=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};Ec=Zr;I.VisibleString=Ec;Zr.NAME="VisibleString";var Bc,ls=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};Bc=ls;I.GeneralString=Bc;ls.NAME="GeneralString";var Ac,us=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};Ac=us;I.CharacterString=Ac;us.NAME="CharacterString";var Ic,Jr=class extends Zr{constructor({value:e,valueDate:t,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,e){this.fromString(e),this.valueBlock.valueHexView=new Uint8Array(e.length);for(let s=0;s<e.length;s++)this.valueBlock.valueHexView[s]=e.charCodeAt(s)}t&&(this.fromDate(t),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,F.BufferSourceConverter.toUint8Array(e)))}toBuffer(){let e=this.toString(),t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let s=0;s<e.length;s++)n[s]=e.charCodeAt(s);return t}fromDate(e){this.year=e.getUTCFullYear(),this.month=e.getUTCMonth()+1,this.day=e.getUTCDate(),this.hour=e.getUTCHours(),this.minute=e.getUTCMinutes(),this.second=e.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(e){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(e);if(n===null){this.error="Wrong input string for conversion";return}let s=parseInt(n[1],10);s>=50?this.year=1900+s:this.year=2e3+s,this.month=parseInt(n[2],10),this.day=parseInt(n[3],10),this.hour=parseInt(n[4],10),this.minute=parseInt(n[5],10),this.second=parseInt(n[6],10)}toString(e="iso"){if(e==="iso"){let t=new Array(7);return t[0]=Te(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=Te(this.month,2),t[2]=Te(this.day,2),t[3]=Te(this.hour,2),t[4]=Te(this.minute,2),t[5]=Te(this.second,2),t[6]="Z",t.join("")}return super.toString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}};Ic=Jr;I.UTCTime=Ic;Jr.NAME="UTCTime";var Sc,fs=class extends Jr{constructor(e={}){var t;super(e),(t=this.millisecond)!==null&&t!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(e){super.fromDate(e),this.millisecond=e.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(e){let t=!1,n="",s="",o=0,i,a=0,c=0;if(e[e.length-1]==="Z")n=e.substring(0,e.length-1),t=!0;else{let l=new Number(e[e.length-1]);if(isNaN(l.valueOf()))throw new Error("Wrong input string for conversion");n=e}if(t){if(n.indexOf("+")!==-1)throw new Error("Wrong input string for conversion");if(n.indexOf("-")!==-1)throw new Error("Wrong input string for conversion")}else{let l=1,d=n.indexOf("+"),y="";if(d===-1&&(d=n.indexOf("-"),l=-1),d!==-1){if(y=n.substring(d+1),n=n.substring(0,d),y.length!==2&&y.length!==4)throw new Error("Wrong input string for conversion");let p=parseInt(y.substring(0,2),10);if(isNaN(p.valueOf()))throw new Error("Wrong input string for conversion");if(a=l*p,y.length===4){if(p=parseInt(y.substring(2,4),10),isNaN(p.valueOf()))throw new Error("Wrong input string for conversion");c=l*p}}}let f=n.indexOf(".");if(f===-1&&(f=n.indexOf(",")),f!==-1){let l=new Number(`0${n.substring(f)}`);if(isNaN(l.valueOf()))throw new Error("Wrong input string for conversion");o=l.valueOf(),s=n.substring(0,f)}else s=n;switch(!0){case s.length===8:if(i=/(\d{4})(\d{2})(\d{2})/ig,f!==-1)throw new Error("Wrong input string for conversion");break;case s.length===10:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=60*o;this.minute=Math.floor(l),l=60*(l-this.minute),this.second=Math.floor(l),l=1e3*(l-this.second),this.millisecond=Math.floor(l)}break;case s.length===12:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=60*o;this.second=Math.floor(l),l=1e3*(l-this.second),this.millisecond=Math.floor(l)}break;case s.length===14:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=1e3*o;this.millisecond=Math.floor(l)}break;default:throw new Error("Wrong input string for conversion")}let u=i.exec(s);if(u===null)throw new Error("Wrong input string for conversion");for(let l=1;l<u.length;l++)switch(l){case 1:this.year=parseInt(u[l],10);break;case 2:this.month=parseInt(u[l],10);break;case 3:this.day=parseInt(u[l],10);break;case 4:this.hour=parseInt(u[l],10)+a;break;case 5:this.minute=parseInt(u[l],10)+c;break;case 6:this.second=parseInt(u[l],10);break;default:throw new Error("Wrong input string for conversion")}if(t===!1){let l=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=l.getUTCFullYear(),this.month=l.getUTCMonth(),this.day=l.getUTCDay(),this.hour=l.getUTCHours(),this.minute=l.getUTCMinutes(),this.second=l.getUTCSeconds(),this.millisecond=l.getUTCMilliseconds()}}toString(e="iso"){if(e==="iso"){let t=[];return t.push(Te(this.year,4)),t.push(Te(this.month,2)),t.push(Te(this.day,2)),t.push(Te(this.hour,2)),t.push(Te(this.minute,2)),t.push(Te(this.second,2)),this.millisecond!==0&&(t.push("."),t.push(Te(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(e)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Sc=fs;I.GeneralizedTime=Sc;fs.NAME="GeneralizedTime";var kc,hs=class extends Bt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};kc=hs;I.DATE=kc;hs.NAME="DATE";var Nc,ds=class extends Bt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};Nc=ds;I.TimeOfDay=Nc;ds.NAME="TimeOfDay";var Rc,ps=class extends Bt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};Rc=ps;I.DateTime=Rc;ps.NAME="DateTime";var Tc,gs=class extends Bt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Tc=gs;I.Duration=Tc;gs.NAME="Duration";var _c,ms=class extends Bt{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};_c=ms;I.TIME=_c;ms.NAME="TIME";function ed(r){let{result:e}=Er(r),t=e.valueBlock.value;return{n:H(st(t[1].toBigInt()),"base64url"),e:H(st(t[2].toBigInt()),"base64url"),d:H(st(t[3].toBigInt()),"base64url"),p:H(st(t[4].toBigInt()),"base64url"),q:H(st(t[5].toBigInt()),"base64url"),dp:H(st(t[6].toBigInt()),"base64url"),dq:H(st(t[7].toBigInt()),"base64url"),qi:H(st(t[8].toBigInt()),"base64url"),kty:"RSA",alg:"RS256"}}function td(r){if(r.n==null||r.e==null||r.d==null||r.p==null||r.q==null||r.dp==null||r.dq==null||r.qi==null)throw new C("JWK was missing components","ERR_INVALID_PARAMETERS");let t=new ge({value:[new le({value:0}),le.fromBigInt(ot(M(r.n,"base64url"))),le.fromBigInt(ot(M(r.e,"base64url"))),le.fromBigInt(ot(M(r.d,"base64url"))),le.fromBigInt(ot(M(r.p,"base64url"))),le.fromBigInt(ot(M(r.q,"base64url"))),le.fromBigInt(ot(M(r.dp,"base64url"))),le.fromBigInt(ot(M(r.dq,"base64url"))),le.fromBigInt(ot(M(r.qi,"base64url")))]}).toBER();return new Uint8Array(t,0,t.byteLength)}function rd(r){let{result:e}=Er(r),t=e.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:H(st(t[0].toBigInt()),"base64url"),e:H(st(t[1].toBigInt()),"base64url")}}function nd(r){if(r.n==null||r.e==null)throw new C("JWK was missing components","ERR_INVALID_PARAMETERS");let t=new ge({value:[new ge({value:[new je({value:"1.2.840.113549.1.1.1"}),new Dt]}),new xr({valueHex:new ge({value:[le.fromBigInt(ot(M(r.n,"base64url"))),le.fromBigInt(ot(M(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(t,0,t.byteLength)}function st(r){let e=r.toString(16);e.length%2>0&&(e=`0${e}`);let t=e.length/2,n=new Uint8Array(t),s=0,o=0;for(;s<t;)n[s]=parseInt(e.slice(o,o+2),16),s+=1,o+=2;return n}function ot(r){let e=[];return r.forEach(function(t){let n=t.toString(16);n.length%2>0&&(n=`0${n}`),e.push(n)}),BigInt("0x"+e.join(""))}var sd=16,Yo=32,Zo=1e4;async function od(r,e){let t=ke.get(),s=new ge({value:[new le({value:0}),new ge({value:[new je({value:"1.2.840.113549.1.1.1"}),new Dt]}),new Et({valueHex:r.marshal()})]}).toBER(),o=new Uint8Array(s,0,s.byteLength),i=Xt(sd),a=await $o(Or,e,i,{c:Zo,dkLen:Yo}),c=Xt(16),f=await t.subtle.importKey("raw",a,"AES-CBC",!1,["encrypt"]),u=await t.subtle.encrypt({name:"AES-CBC",iv:c},f,o),l=new ge({value:[new Et({valueHex:i}),new le({value:Zo}),new le({value:Yo}),new ge({value:[new je({value:"1.2.840.113549.2.11"}),new Dt]})]}),d=new ge({value:[new je({value:"1.2.840.113549.1.5.13"}),new ge({value:[new ge({value:[new je({value:"1.2.840.113549.1.5.12"}),l]}),new ge({value:[new je({value:"2.16.840.1.101.3.4.1.42"}),new Et({valueHex:c})]})]})]}),p=new ge({value:[d,new Et({valueHex:u})]}).toBER(),h=new Uint8Array(p,0,p.byteLength);return["-----BEGIN ENCRYPTED PRIVATE KEY-----",...H(h,"base64pad").split(/(.{64})/).filter(Boolean),"-----END ENCRYPTED PRIVATE KEY-----"].join(`
|
|
7
|
-
`)}async function id(r,e){let t=ke.get(),n;if(r.includes("-----BEGIN ENCRYPTED PRIVATE KEY-----")){let s=M(r.replace("-----BEGIN ENCRYPTED PRIVATE KEY-----","").replace("-----END ENCRYPTED PRIVATE KEY-----","").replace(/\n/g,"").trim(),"base64pad"),{result:o}=Er(s),{iv:i,salt:a,iterations:c,keySize:f,cipherText:u}=ad(o),l=await $o(Or,e,a,{c,dkLen:f}),d=await t.subtle.importKey("raw",l,"AES-CBC",!1,["decrypt"]),y=Xr(await t.subtle.decrypt({name:"AES-CBC",iv:i},d,u)),{result:p}=Er(y);n=Cc(p)}else if(r.includes("-----BEGIN PRIVATE KEY-----")){let s=M(r.replace("-----BEGIN PRIVATE KEY-----","").replace("-----END PRIVATE KEY-----","").replace(/\n/g,"").trim(),"base64pad"),{result:o}=Er(s);n=Cc(o)}else throw new C("Could not parse private key from PEM data","ERR_INVALID_PARAMETERS");return Jo(n)}function ad(r){let e=r.valueBlock.value[0];if(e.valueBlock.value[0].toString()!=="OBJECT IDENTIFIER : 1.2.840.113549.1.5.13")throw new C("Only pkcs5PBES2 encrypted private keys are supported","ERR_INVALID_PARAMS");let n=e.valueBlock.value[1].valueBlock.value[0];if(n.valueBlock.value[0].toString()!=="OBJECT IDENTIFIER : 1.2.840.113549.1.5.12")throw new C("Only pkcs5PBKDF2 key derivation functions are supported","ERR_INVALID_PARAMS");let o=n.valueBlock.value[1],i=Xr(o.valueBlock.value[0].getValue()),a=Zo,c=Yo;if(o.valueBlock.value.length===3)a=Number(o.valueBlock.value[1].toBigInt()),c=Number(o.valueBlock.value[2].toBigInt());else if(o.valueBlock.value.length===2)throw new C("Could not derive key size and iterations from PEM file - please use @libp2p/rsa to re-import your key","ERR_INVALID_PARAMS");let f=e.valueBlock.value[1].valueBlock.value[1],u=f.valueBlock.value[0].toString();if(u!=="OBJECT IDENTIFIER : 1.2.840.113549.3.7"){if(u!=="OBJECT IDENTIFIER : 1.3.14.3.2.7"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.2"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.22"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.42")throw new C("Only AES-CBC encryption schemes are supported","ERR_INVALID_PARAMS")}}}}let l=Xr(f.valueBlock.value[1].getValue());return{cipherText:Xr(r.valueBlock.value[1].getValue()),salt:i,iterations:a,keySize:c,iv:l}}function Cc(r){return Xr(r.valueBlock.value[2].getValue())}function Xr(r){return new Uint8Array(r,0,r.byteLength)}async function Lc(r){let e=await ke.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),t=await Vc(e);return{privateKey:t[0],publicKey:t[1]}}async function Xo(r){let t=[await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!0,["sign"]),await cd(r)],n=await Vc({privateKey:t[0],publicKey:t[1]});return{privateKey:n[0],publicKey:n[1]}}async function Uc(r,e){let t=await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await ke.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},t,e instanceof Uint8Array?e:e.subarray());return new Uint8Array(n,0,n.byteLength)}async function Pc(r,e,t){let n=await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return ke.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,e,t instanceof Uint8Array?t:t.subarray())}async function Vc(r){if(r.privateKey==null||r.publicKey==null)throw new C("Private and public key are required","ERR_INVALID_PARAMETERS");return Promise.all([ke.get().subtle.exportKey("jwk",r.privateKey),ke.get().subtle.exportKey("jwk",r.publicKey)])}async function cd(r){return ke.get().subtle.importKey("jwk",{kty:r.kty,n:r.n,e:r.e},{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!0,["verify"])}function bs(r){if(r.kty!=="RSA")throw new C("invalid key type","ERR_INVALID_KEY_TYPE");if(r.n==null)throw new C("invalid key modulus","ERR_INVALID_KEY_MODULUS");return M(r.n,"base64url").length*8}var en=8192,Qr=class{_key;constructor(e){this._key=e}verify(e,t){return Pc(this._key,t,e)}marshal(){return Mt.jwkToPkix(this._key)}get bytes(){return tt.encode({Type:ee.RSA,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Ve(e)?e.then(({bytes:t})=>t):e.bytes}},Br=class{_key;_publicKey;constructor(e,t){this._key=e,this._publicKey=t}genSecret(){return Xt(16)}sign(e){return Uc(this._key,e)}get public(){if(this._publicKey==null)throw new C("public key not provided","ERR_PUBKEY_NOT_PROVIDED");return new Qr(this._publicKey)}marshal(){return Mt.jwkToPkcs1(this._key)}get bytes(){return rt.encode({Type:ee.RSA,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Ve(e)?e.then(({bytes:t})=>t):e.bytes}async id(){let e=await this.public.hash();return H(e,"base58btc")}async export(e,t="pkcs-8"){if(t==="pkcs-8")return Mt.exportToPem(this,e);if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};async function Jo(r){let e=Mt.pkcs1ToJwk(r);if(bs(e)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let t=await Xo(e);return new Br(t.privateKey,t.publicKey)}function ud(r){let e=Mt.pkixToJwk(r);if(bs(e)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");return new Qr(e)}async function fd(r){if(bs(r)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let e=await Xo(r);return new Br(e.privateKey,e.publicKey)}async function hd(r){if(r>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let e=await Lc(r);return new Br(e.privateKey,e.publicKey)}var si={};de(si,{Secp256k1PrivateKey:()=>rn,Secp256k1PublicKey:()=>tn,generateKeyPair:()=>Id,unmarshalSecp256k1PrivateKey:()=>Bd,unmarshalSecp256k1PublicKey:()=>Ad});var dd=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),Ht=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Ft=new Uint32Array(64),ei=class extends hr{constructor(){super(64,32,8,!1),this.A=Ht[0]|0,this.B=Ht[1]|0,this.C=Ht[2]|0,this.D=Ht[3]|0,this.E=Ht[4]|0,this.F=Ht[5]|0,this.G=Ht[6]|0,this.H=Ht[7]|0}get(){let{A:e,B:t,C:n,D:s,E:o,F:i,G:a,H:c}=this;return[e,t,n,s,o,i,a,c]}set(e,t,n,s,o,i,a,c){this.A=e|0,this.B=t|0,this.C=n|0,this.D=s|0,this.E=o|0,this.F=i|0,this.G=a|0,this.H=c|0}process(e,t){for(let l=0;l<16;l++,t+=4)Ft[l]=e.getUint32(t,!1);for(let l=16;l<64;l++){let d=Ft[l-15],y=Ft[l-2],p=Fe(d,7)^Fe(d,18)^d>>>3,h=Fe(y,17)^Fe(y,19)^y>>>10;Ft[l]=h+Ft[l-7]+p+Ft[l-16]|0}let{A:n,B:s,C:o,D:i,E:a,F:c,G:f,H:u}=this;for(let l=0;l<64;l++){let d=Fe(a,6)^Fe(a,11)^Fe(a,25),y=u+d+ga(a,c,f)+dd[l]+Ft[l]|0,h=(Fe(n,2)^Fe(n,13)^Fe(n,22))+ma(n,s,o)|0;u=f,f=c,c=a,a=i+y|0,i=o,o=s,s=n,n=y+h|0}n=n+this.A|0,s=s+this.B|0,o=o+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,f=f+this.G|0,u=u+this.H|0,this.set(n,s,o,i,a,c,f,u)}roundClean(){Ft.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var Oc=gn(()=>new ei);function pd(r){let e=Mr(r);et(e,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:t,Fp:n,a:s}=e;if(t){if(!n.eql(s,n.ZERO))throw new Error("Endomorphism can only be defined for Koblitz curves that have a=0");if(typeof t!="object"||typeof t.beta!="bigint"||typeof t.splitScalar!="function")throw new Error("Expected endomorphism with beta: bigint and splitScalar: function")}return Object.freeze({...e})}var{bytesToNumberBE:gd,hexToBytes:md}=bn,er={Err:class extends Error{constructor(e=""){super(e)}},_parseInt(r){let{Err:e}=er;if(r.length<2||r[0]!==2)throw new e("Invalid signature integer tag");let t=r[1],n=r.subarray(2,t+2);if(!t||n.length!==t)throw new e("Invalid signature integer: wrong length");if(n[0]&128)throw new e("Invalid signature integer: negative");if(n[0]===0&&!(n[1]&128))throw new e("Invalid signature integer: unnecessary leading zero");return{d:gd(n),l:r.subarray(t+2)}},toSig(r){let{Err:e}=er,t=typeof r=="string"?md(r):r;dr(t);let n=t.length;if(n<2||t[0]!=48)throw new e("Invalid signature tag");if(t[1]!==n-2)throw new e("Invalid signature: incorrect length");let{d:s,l:o}=er._parseInt(t.subarray(2)),{d:i,l:a}=er._parseInt(o);if(a.length)throw new e("Invalid signature: left bytes after parsing");return{r:s,s:i}},hexFromSig(r){let e=f=>Number.parseInt(f[0],16)&8?"00"+f:f,t=f=>{let u=f.toString(16);return u.length&1?`0${u}`:u},n=e(t(r.s)),s=e(t(r.r)),o=n.length/2,i=s.length/2,a=t(o),c=t(i);return`30${t(i+o+4)}02${c}${s}02${a}${n}`}},St=BigInt(0),Me=BigInt(1),zm=BigInt(2),Dc=BigInt(3),jm=BigInt(4);function yd(r){let e=pd(r),{Fp:t}=e,n=e.toBytes||((p,h,g)=>{let b=h.toAffine();return yt(Uint8Array.from([4]),t.toBytes(b.x),t.toBytes(b.y))}),s=e.fromBytes||(p=>{let h=p.subarray(1),g=t.fromBytes(h.subarray(0,t.BYTES)),b=t.fromBytes(h.subarray(t.BYTES,2*t.BYTES));return{x:g,y:b}});function o(p){let{a:h,b:g}=e,b=t.sqr(p),B=t.mul(b,p);return t.add(t.add(B,t.mul(p,h)),g)}if(!t.eql(t.sqr(e.Gy),o(e.Gx)))throw new Error("bad generator point: equation left != right");function i(p){return typeof p=="bigint"&&St<p&&p<e.n}function a(p){if(!i(p))throw new Error("Expected valid bigint: 0 < bigint < curve.n")}function c(p){let{allowedPrivateKeyLengths:h,nByteLength:g,wrapPrivateKey:b,n:B}=e;if(h&&typeof p!="bigint"){if(Ct(p)&&(p=gt(p)),typeof p!="string"||!h.includes(p.length))throw new Error("Invalid key");p=p.padStart(g*2,"0")}let w;try{w=typeof p=="bigint"?p:mt(ne("private key",p,g))}catch{throw new Error(`private key must be ${g} bytes, hex or bigint, not ${typeof p}`)}return b&&(w=Z(w,B)),a(w),w}let f=new Map;function u(p){if(!(p instanceof l))throw new Error("ProjectivePoint expected")}class l{constructor(h,g,b){if(this.px=h,this.py=g,this.pz=b,h==null||!t.isValid(h))throw new Error("x required");if(g==null||!t.isValid(g))throw new Error("y required");if(b==null||!t.isValid(b))throw new Error("z required")}static fromAffine(h){let{x:g,y:b}=h||{};if(!h||!t.isValid(g)||!t.isValid(b))throw new Error("invalid affine point");if(h instanceof l)throw new Error("projective point not allowed");let B=w=>t.eql(w,t.ZERO);return B(g)&&B(b)?l.ZERO:new l(g,b,t.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(h){let g=t.invertBatch(h.map(b=>b.pz));return h.map((b,B)=>b.toAffine(g[B])).map(l.fromAffine)}static fromHex(h){let g=l.fromAffine(s(ne("pointHex",h)));return g.assertValidity(),g}static fromPrivateKey(h){return l.BASE.multiply(c(h))}_setWindowSize(h){this._WINDOW_SIZE=h,f.delete(this)}assertValidity(){if(this.is0()){if(e.allowInfinityPoint&&!t.is0(this.py))return;throw new Error("bad point: ZERO")}let{x:h,y:g}=this.toAffine();if(!t.isValid(h)||!t.isValid(g))throw new Error("bad point: x or y not FE");let b=t.sqr(g),B=o(h);if(!t.eql(b,B))throw new Error("bad point: equation left != right");if(!this.isTorsionFree())throw new Error("bad point: not in prime-order subgroup")}hasEvenY(){let{y:h}=this.toAffine();if(t.isOdd)return!t.isOdd(h);throw new Error("Field doesn't support isOdd")}equals(h){u(h);let{px:g,py:b,pz:B}=this,{px:w,py:T,pz:x}=h,A=t.eql(t.mul(g,x),t.mul(w,B)),N=t.eql(t.mul(b,x),t.mul(T,B));return A&&N}negate(){return new l(this.px,t.neg(this.py),this.pz)}double(){let{a:h,b:g}=e,b=t.mul(g,Dc),{px:B,py:w,pz:T}=this,x=t.ZERO,A=t.ZERO,N=t.ZERO,R=t.mul(B,B),W=t.mul(w,w),q=t.mul(T,T),P=t.mul(B,w);return P=t.add(P,P),N=t.mul(B,T),N=t.add(N,N),x=t.mul(h,N),A=t.mul(b,q),A=t.add(x,A),x=t.sub(W,A),A=t.add(W,A),A=t.mul(x,A),x=t.mul(P,x),N=t.mul(b,N),q=t.mul(h,q),P=t.sub(R,q),P=t.mul(h,P),P=t.add(P,N),N=t.add(R,R),R=t.add(N,R),R=t.add(R,q),R=t.mul(R,P),A=t.add(A,R),q=t.mul(w,T),q=t.add(q,q),R=t.mul(q,P),x=t.sub(x,R),N=t.mul(q,W),N=t.add(N,N),N=t.add(N,N),new l(x,A,N)}add(h){u(h);let{px:g,py:b,pz:B}=this,{px:w,py:T,pz:x}=h,A=t.ZERO,N=t.ZERO,R=t.ZERO,W=e.a,q=t.mul(e.b,Dc),P=t.mul(g,w),ae=t.mul(b,T),se=t.mul(B,x),Ue=t.add(g,b),v=t.add(w,T);Ue=t.mul(Ue,v),v=t.add(P,ae),Ue=t.sub(Ue,v),v=t.add(g,B);let k=t.add(w,x);return v=t.mul(v,k),k=t.add(P,se),v=t.sub(v,k),k=t.add(b,B),A=t.add(T,x),k=t.mul(k,A),A=t.add(ae,se),k=t.sub(k,A),R=t.mul(W,v),A=t.mul(q,se),R=t.add(A,R),A=t.sub(ae,R),R=t.add(ae,R),N=t.mul(A,R),ae=t.add(P,P),ae=t.add(ae,P),se=t.mul(W,se),v=t.mul(q,v),ae=t.add(ae,se),se=t.sub(P,se),se=t.mul(W,se),v=t.add(v,se),P=t.mul(ae,v),N=t.add(N,P),P=t.mul(k,v),A=t.mul(Ue,A),A=t.sub(A,P),P=t.mul(Ue,ae),R=t.mul(k,R),R=t.add(R,P),new l(A,N,R)}subtract(h){return this.add(h.negate())}is0(){return this.equals(l.ZERO)}wNAF(h){return y.wNAFCached(this,f,h,g=>{let b=t.invertBatch(g.map(B=>B.pz));return g.map((B,w)=>B.toAffine(b[w])).map(l.fromAffine)})}multiplyUnsafe(h){let g=l.ZERO;if(h===St)return g;if(a(h),h===Me)return this;let{endo:b}=e;if(!b)return y.unsafeLadder(this,h);let{k1neg:B,k1:w,k2neg:T,k2:x}=b.splitScalar(h),A=g,N=g,R=this;for(;w>St||x>St;)w&Me&&(A=A.add(R)),x&Me&&(N=N.add(R)),R=R.double(),w>>=Me,x>>=Me;return B&&(A=A.negate()),T&&(N=N.negate()),N=new l(t.mul(N.px,b.beta),N.py,N.pz),A.add(N)}multiply(h){a(h);let g=h,b,B,{endo:w}=e;if(w){let{k1neg:T,k1:x,k2neg:A,k2:N}=w.splitScalar(g),{p:R,f:W}=this.wNAF(x),{p:q,f:P}=this.wNAF(N);R=y.constTimeNegate(T,R),q=y.constTimeNegate(A,q),q=new l(t.mul(q.px,w.beta),q.py,q.pz),b=R.add(q),B=W.add(P)}else{let{p:T,f:x}=this.wNAF(g);b=T,B=x}return l.normalizeZ([b,B])[0]}multiplyAndAddUnsafe(h,g,b){let B=l.BASE,w=(x,A)=>A===St||A===Me||!x.equals(B)?x.multiplyUnsafe(A):x.multiply(A),T=w(this,g).add(w(h,b));return T.is0()?void 0:T}toAffine(h){let{px:g,py:b,pz:B}=this,w=this.is0();h==null&&(h=w?t.ONE:t.inv(B));let T=t.mul(g,h),x=t.mul(b,h),A=t.mul(B,h);if(w)return{x:t.ZERO,y:t.ZERO};if(!t.eql(A,t.ONE))throw new Error("invZ was invalid");return{x:T,y:x}}isTorsionFree(){let{h,isTorsionFree:g}=e;if(h===Me)return!0;if(g)return g(l,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h,clearCofactor:g}=e;return h===Me?this:g?g(l,this):this.multiplyUnsafe(e.h)}toRawBytes(h=!0){return this.assertValidity(),n(l,this,h)}toHex(h=!0){return gt(this.toRawBytes(h))}}l.BASE=new l(e.Gx,e.Gy,t.ONE),l.ZERO=new l(t.ZERO,t.ONE,t.ZERO);let d=e.nBitLength,y=vn(l,e.endo?Math.ceil(d/2):d);return{CURVE:e,ProjectivePoint:l,normPrivateKeyToScalar:c,weierstrassEquation:o,isWithinCurveOrder:i}}function bd(r){let e=Mr(r);return et(e,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...e})}function Mc(r){let e=bd(r),{Fp:t,n}=e,s=t.BYTES+1,o=2*t.BYTES+1;function i(v){return St<v&&v<t.ORDER}function a(v){return Z(v,n)}function c(v){return wn(v,n)}let{ProjectivePoint:f,normPrivateKeyToScalar:u,weierstrassEquation:l,isWithinCurveOrder:d}=yd({...e,toBytes(v,k,V){let E=k.toAffine(),m=t.toBytes(E.x),S=yt;return V?S(Uint8Array.from([k.hasEvenY()?2:3]),m):S(Uint8Array.from([4]),m,t.toBytes(E.y))},fromBytes(v){let k=v.length,V=v[0],E=v.subarray(1);if(k===s&&(V===2||V===3)){let m=mt(E);if(!i(m))throw new Error("Point is not on curve");let S=l(m),_;try{_=t.sqrt(S)}catch(D){let G=D instanceof Error?": "+D.message:"";throw new Error("Point is not on curve"+G)}let L=(_&Me)===Me;return(V&1)===1!==L&&(_=t.neg(_)),{x:m,y:_}}else if(k===o&&V===4){let m=t.fromBytes(E.subarray(0,t.BYTES)),S=t.fromBytes(E.subarray(t.BYTES,2*t.BYTES));return{x:m,y:S}}else throw new Error(`Point of length ${k} was invalid. Expected ${s} compressed bytes or ${o} uncompressed bytes`)}}),y=v=>gt(Ut(v,e.nByteLength));function p(v){let k=n>>Me;return v>k}function h(v){return p(v)?a(-v):v}let g=(v,k,V)=>mt(v.slice(k,V));class b{constructor(k,V,E){this.r=k,this.s=V,this.recovery=E,this.assertValidity()}static fromCompact(k){let V=e.nByteLength;return k=ne("compactSignature",k,V*2),new b(g(k,0,V),g(k,V,2*V))}static fromDER(k){let{r:V,s:E}=er.toSig(ne("DER",k));return new b(V,E)}assertValidity(){if(!d(this.r))throw new Error("r must be 0 < r < CURVE.n");if(!d(this.s))throw new Error("s must be 0 < s < CURVE.n")}addRecoveryBit(k){return new b(this.r,this.s,k)}recoverPublicKey(k){let{r:V,s:E,recovery:m}=this,S=N(ne("msgHash",k));if(m==null||![0,1,2,3].includes(m))throw new Error("recovery id invalid");let _=m===2||m===3?V+e.n:V;if(_>=t.ORDER)throw new Error("recovery id 2 or 3 invalid");let L=m&1?"03":"02",O=f.fromHex(L+y(_)),D=c(_),G=a(-S*D),K=a(E*D),$=f.BASE.multiplyAndAddUnsafe(O,G,K);if(!$)throw new Error("point at infinify");return $.assertValidity(),$}hasHighS(){return p(this.s)}normalizeS(){return this.hasHighS()?new b(this.r,a(-this.s),this.recovery):this}toDERRawBytes(){return zt(this.toDERHex())}toDERHex(){return er.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return zt(this.toCompactHex())}toCompactHex(){return y(this.r)+y(this.s)}}let B={isValidPrivateKey(v){try{return u(v),!0}catch{return!1}},normPrivateKeyToScalar:u,randomPrivateKey:()=>{let v=xo(e.n);return Sa(e.randomBytes(v),e.n)},precompute(v=8,k=f.BASE){return k._setWindowSize(v),k.multiply(BigInt(3)),k}};function w(v,k=!0){return f.fromPrivateKey(v).toRawBytes(k)}function T(v){let k=Ct(v),V=typeof v=="string",E=(k||V)&&v.length;return k?E===s||E===o:V?E===2*s||E===2*o:v instanceof f}function x(v,k,V=!0){if(T(v))throw new Error("first arg must be private key");if(!T(k))throw new Error("second arg must be public key");return f.fromHex(k).multiply(u(v)).toRawBytes(V)}let A=e.bits2int||function(v){let k=mt(v),V=v.length*8-e.nBitLength;return V>0?k>>BigInt(V):k},N=e.bits2int_modN||function(v){return a(A(v))},R=Dr(e.nBitLength);function W(v){if(typeof v!="bigint")throw new Error("bigint expected");if(!(St<=v&&v<R))throw new Error(`bigint expected < 2^${e.nBitLength}`);return Ut(v,e.nByteLength)}function q(v,k,V=P){if(["recovered","canonical"].some(te=>te in V))throw new Error("sign() legacy options not supported");let{hash:E,randomBytes:m}=e,{lowS:S,prehash:_,extraEntropy:L}=V;S==null&&(S=!0),v=ne("msgHash",v),_&&(v=ne("prehashed msgHash",E(v)));let O=N(v),D=u(k),G=[W(D),W(O)];if(L!=null&&L!==!1){let te=L===!0?m(t.BYTES):L;G.push(ne("extraEntropy",te))}let K=yt(...G),$=O;function ce(te){let me=A(te);if(!d(me))return;let ye=c(me),ue=f.BASE.multiply(me).toAffine(),ve=a(ue.x);if(ve===St)return;let lt=a(ye*a($+ve*D));if(lt===St)return;let qt=(ue.x===ve?0:2)|Number(ue.y&Me),Cr=lt;return S&&p(lt)&&(Cr=h(lt),qt^=1),new b(ve,Cr,qt)}return{seed:K,k2sig:ce}}let P={lowS:e.lowS,prehash:!1},ae={lowS:e.lowS,prehash:!1};function se(v,k,V=P){let{seed:E,k2sig:m}=q(v,k,V),S=e;return mo(S.hash.outputLen,S.nByteLength,S.hmac)(E,m)}f.BASE._setWindowSize(8);function Ue(v,k,V,E=ae){let m=v;if(k=ne("msgHash",k),V=ne("publicKey",V),"strict"in E)throw new Error("options.strict was renamed to lowS");let{lowS:S,prehash:_}=E,L,O;try{if(typeof m=="string"||Ct(m))try{L=b.fromDER(m)}catch(ue){if(!(ue instanceof er.Err))throw ue;L=b.fromCompact(m)}else if(typeof m=="object"&&typeof m.r=="bigint"&&typeof m.s=="bigint"){let{r:ue,s:ve}=m;L=new b(ue,ve)}else throw new Error("PARSE");O=f.fromHex(V)}catch(ue){if(ue.message==="PARSE")throw new Error("signature must be Signature instance, Uint8Array or hex string");return!1}if(S&&L.hasHighS())return!1;_&&(k=e.hash(k));let{r:D,s:G}=L,K=N(k),$=c(G),ce=a(K*$),te=a(D*$),me=f.BASE.multiplyAndAddUnsafe(O,ce,te)?.toAffine();return me?a(me.x)===D:!1}return{CURVE:e,getPublicKey:w,getSharedSecret:x,sign:se,verify:Ue,ProjectivePoint:f,Signature:b,utils:B}}function wd(r){return{hash:r,hmac:(e,...t)=>qr(r,e,uo(...t)),randomBytes:fr}}function Hc(r,e){let t=n=>Mc({...r,...wd(n)});return Object.freeze({...t(e),create:t})}var qc=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),Fc=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),xd=BigInt(1),ti=BigInt(2),Kc=(r,e)=>(r+e/ti)/e;function vd(r){let e=qc,t=BigInt(3),n=BigInt(6),s=BigInt(11),o=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),f=r*r*r%e,u=f*f*r%e,l=Q(u,t,e)*u%e,d=Q(l,t,e)*u%e,y=Q(d,ti,e)*f%e,p=Q(y,s,e)*y%e,h=Q(p,o,e)*p%e,g=Q(h,a,e)*h%e,b=Q(g,c,e)*g%e,B=Q(b,a,e)*h%e,w=Q(B,t,e)*u%e,T=Q(w,i,e)*p%e,x=Q(T,n,e)*f%e,A=Q(x,ti,e);if(!ri.eql(ri.sqr(A),r))throw new Error("Cannot find square root");return A}var ri=xn(qc,void 0,void 0,{sqrt:vd}),Ye=Hc({a:BigInt(0),b:BigInt(7),Fp:ri,n:Fc,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let e=Fc,t=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-xd*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),s=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),o=t,i=BigInt("0x100000000000000000000000000000000"),a=Kc(o*r,e),c=Kc(-n*r,e),f=Z(r-a*t-c*s,e),u=Z(-a*n-c*o,e),l=f>i,d=u>i;if(l&&(f=e-f),d&&(u=e-u),f>i||u>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:l,k1:f,k2neg:d,k2:u}}}},Oc),ry=BigInt(0);var ny=Ye.ProjectivePoint;function $c(){return Ye.utils.randomPrivateKey()}function Gc(r,e){let t=be.digest(e instanceof Uint8Array?e:e.subarray());if(Ve(t))return t.then(({digest:n})=>Ye.sign(n,r).toDERRawBytes()).catch(n=>{throw new C(String(n),"ERR_INVALID_INPUT")});try{return Ye.sign(t.digest,r).toDERRawBytes()}catch(n){throw new C(String(n),"ERR_INVALID_INPUT")}}function zc(r,e,t){let n=be.digest(t instanceof Uint8Array?t:t.subarray());if(Ve(n))return n.then(({digest:s})=>Ye.verify(e,s,r)).catch(s=>{throw new C(String(s),"ERR_INVALID_INPUT")});try{return Ye.verify(e,n.digest,r)}catch(s){throw new C(String(s),"ERR_INVALID_INPUT")}}function jc(r){return Ye.ProjectivePoint.fromHex(r).toRawBytes(!0)}function Wc(r){try{Ye.getPublicKey(r,!0)}catch(e){throw new C(String(e),"ERR_INVALID_PRIVATE_KEY")}}function ni(r){try{Ye.ProjectivePoint.fromHex(r)}catch(e){throw new C(String(e),"ERR_INVALID_PUBLIC_KEY")}}function Yc(r){try{return Ye.getPublicKey(r,!0)}catch(e){throw new C(String(e),"ERR_INVALID_PRIVATE_KEY")}}var tn=class{_key;constructor(e){ni(e),this._key=e}verify(e,t){return zc(this._key,t,e)}marshal(){return jc(this._key)}get bytes(){return tt.encode({Type:ee.Secp256k1,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}async hash(){let e=be.digest(this.bytes),t;return Ve(e)?{bytes:t}=await e:t=e.bytes,t}},rn=class{_key;_publicKey;constructor(e,t){this._key=e,this._publicKey=t??Yc(e),Wc(this._key),ni(this._publicKey)}sign(e){return Gc(this._key,e)}get public(){return new tn(this._publicKey)}marshal(){return this._key}get bytes(){return rt.encode({Type:ee.Secp256k1,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Ve(e)?e.then(({bytes:t})=>t):e.bytes}async id(){let e=await this.public.hash();return H(e,"base58btc")}async export(e,t="libp2p-key"){if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};function Bd(r){return new rn(r)}function Ad(r){return new tn(r)}async function Id(){let r=$c();return new rn(r)}var tr={rsa:Qo,ed25519:qo,secp256k1:si};function Zc(r){let e=Object.keys(tr).join(" / ");return new C(`invalid or unsupported key type ${r}. Must be ${e}`,"ERR_UNSUPPORTED_KEY_TYPE")}function Jc(r){let e=tt.decode(r),t=e.Data??new Uint8Array;switch(e.Type){case ee.RSA:return tr.rsa.unmarshalRsaPublicKey(t);case ee.Ed25519:return tr.ed25519.unmarshalEd25519PublicKey(t);case ee.Secp256k1:return tr.secp256k1.unmarshalSecp256k1PublicKey(t);default:throw Zc(e.Type??"unknown")}}async function Xc(r){let e=rt.decode(r),t=e.Data??new Uint8Array;switch(e.Type){case ee.RSA:return tr.rsa.unmarshalRsaPrivateKey(t);case ee.Ed25519:return tr.ed25519.unmarshalEd25519PrivateKey(t);case ee.Secp256k1:return tr.secp256k1.unmarshalSecp256k1PrivateKey(t);default:throw Zc(e.Type??"RSA")}}var el=Symbol.for("nodejs.util.inspect.custom"),Qc=Object.values(Nt).map(r=>r.decoder).reduce((r,e)=>r.or(e),Nt.identity.decoder),tl=114,ai=36,ci=37,nn=class{type;multihash;privateKey;publicKey;string;constructor(e){this.type=e.type,this.multihash=e.multihash,this.privateKey=e.privateKey,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Hs]=!0;toString(){return this.string==null&&(this.string=oe.encode(this.multihash.bytes).slice(1)),this.string}toCID(){return Pe.createV1(tl,this.multihash)}toBytes(){return this.multihash.bytes}toJSON(){return this.toString()}equals(e){if(e==null)return!1;if(e instanceof Uint8Array)return pe(this.multihash.bytes,e);if(typeof e=="string")return Sd(e).equals(this);if(e?.multihash?.bytes!=null)return pe(this.multihash.bytes,e.multihash.bytes);throw new Error("not valid Id")}[el](){return`PeerId(${this.toString()})`}},Ar=class extends nn{type="RSA";publicKey;constructor(e){super({...e,type:"RSA"}),this.publicKey=e.publicKey}},Ir=class extends nn{type="Ed25519";publicKey;constructor(e){super({...e,type:"Ed25519"}),this.publicKey=e.multihash.digest}},Sr=class extends nn{type="secp256k1";publicKey;constructor(e){super({...e,type:"secp256k1"}),this.publicKey=e.multihash.digest}},oi=2336,ii=class{type="url";multihash;privateKey;publicKey;url;constructor(e){this.url=e.toString(),this.multihash=ft.digest(M(this.url))}[el](){return`PeerId(${this.url})`}[Hs]=!0;toString(){return this.toCID().toString()}toCID(){return Pe.createV1(oi,this.multihash)}toBytes(){return this.toCID().bytes}equals(e){return e==null?!1:(e instanceof Uint8Array&&(e=H(e)),e.toString()===this.toString())}};function Sd(r,e){if(e=e??Qc,r.charAt(0)==="1"||r.charAt(0)==="Q"){let t=$t(oe.decode(`z${r}`));return r.startsWith("12D")?new Ir({multihash:t}):r.startsWith("16U")?new Sr({multihash:t}):new Ar({multihash:t})}return li(Qc.decode(r))}function li(r){try{let e=$t(r);if(e.code===ft.code){if(e.digest.length===ai)return new Ir({multihash:e});if(e.digest.length===ci)return new Sr({multihash:e})}if(e.code===be.code)return new Ar({multihash:e})}catch{return kd(Pe.decode(r))}throw new Error("Supplied PeerID CID is invalid")}function kd(r){if(r==null||r.multihash==null||r.version==null||r.version===1&&r.code!==tl&&r.code!==oi)throw new Error("Supplied PeerID CID is invalid");if(r.code===oi){let t=H(r.multihash.digest);return new ii(new URL(t))}let e=r.multihash;if(e.code===be.code)return new Ar({multihash:r.multihash});if(e.code===ft.code){if(e.digest.length===ai)return new Ir({multihash:r.multihash});if(e.digest.length===ci)return new Sr({multihash:r.multihash})}throw new Error("Supplied PeerID CID is invalid")}async function kr(r,e){return r.length===ai?new Ir({multihash:Qe(ft.code,r),privateKey:e}):r.length===ci?new Sr({multihash:Qe(ft.code,r),privateKey:e}):new Ar({multihash:await be.digest(r),publicKey:r,privateKey:e})}var nl=Symbol.for("@achingbrain/uint8arraylist");function rl(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let s=t+n.byteLength;if(e<s)return{buf:n,index:e-t};t=s}throw new RangeError("index is out of bounds")}function ws(r){return!!r?.[nl]}var Ze=class r{bufs;length;[nl]=!0;constructor(...e){this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if(ws(n))t+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if(ws(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=rl(this.bufs,e);return t.buf[t.index]}set(e,t){let n=rl(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if(ws(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:s}=this._subList(e,t);return Se(n,s)}subarray(e,t){let{bufs:n,length:s}=this._subList(e,t);return n.length===1?n[0]:Se(n,s)}sublist(e,t){let{bufs:n,length:s}=this._subList(e,t),o=new r;return o.length=s,o.bufs=[...n],o}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:this.bufs,length:this.length};let n=[],s=0;for(let o=0;o<this.bufs.length;o++){let i=this.bufs[o],a=s,c=a+i.byteLength;if(s=c,e>=c)continue;let f=e>=a&&e<c,u=t>a&&t<=c;if(f&&u){if(e===a&&t===c){n.push(i);break}let l=e-a;n.push(i.subarray(l,l+(t-e)));break}if(f){if(e===0){n.push(i);continue}n.push(i.subarray(e-a));continue}if(u){if(t===c){n.push(i);break}n.push(i.subarray(0,t-a));break}n.push(i)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!ws(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let s=n.byteLength;if(s===0)throw new TypeError("search must be at least 1 byte long");let o=256,i=new Int32Array(o);for(let l=0;l<o;l++)i[l]=-1;for(let l=0;l<s;l++)i[n[l]]=l;let a=i,c=this.byteLength-n.byteLength,f=n.byteLength-1,u;for(let l=t;l<=c;l+=u){u=0;for(let d=f;d>=0;d--){let y=this.get(l+d);if(n[d]!==y){u=Math.max(1,d-a[y]);break}}if(u===0)return l}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=Re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let s=ht(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt16(0,t,n),this.write(s,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let s=ht(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt32(0,t,n),this.write(s,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let s=ht(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigInt64(0,t,n),this.write(s,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=Re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let s=ht(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint16(0,t,n),this.write(s,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let s=ht(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint32(0,t,n),this.write(s,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let s=ht(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigUint64(0,t,n),this.write(s,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let s=ht(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat32(0,t,n),this.write(s,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let s=ht(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat64(0,t,n),this.write(s,e)}equals(e){if(e==null||!(e instanceof r)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!pe(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new r;return n.bufs=e,t==null&&(t=e.reduce((s,o)=>s+o.byteLength,0)),n.length=t,n}};var sl={ERR_SIGNATURE_NOT_VALID:"ERR_SIGNATURE_NOT_VALID"};var sn;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&t.payload.byteLength>0&&(n.uint32(26),n.bytes(t.payload)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={publicKey:new Uint8Array(0),payloadType:new Uint8Array(0),payload:new Uint8Array(0),signature:new Uint8Array(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.publicKey=t.bytes();break;case 2:s.payloadType=t.bytes();break;case 3:s.payload=t.bytes();break;case 5:s.signature=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(sn||(sn={}));var it=class r{static createFromProtobuf=async e=>{let t=sn.decode(e),n=await kr(t.publicKey);return new r({peerId:n,payloadType:t.payloadType,payload:t.payload,signature:t.signature})};static seal=async(e,t)=>{if(t.privateKey==null)throw new Error("Missing private key");let n=e.domain,s=e.codec,o=e.marshal(),i=ol(n,s,o),c=await(await Xc(t.privateKey)).sign(i.subarray());return new r({peerId:t,payloadType:s,payload:o,signature:c})};static openAndCertify=async(e,t)=>{let n=await r.createFromProtobuf(e);if(!await n.validate(t))throw new C("envelope signature is not valid for the given domain",sl.ERR_SIGNATURE_NOT_VALID);return n};peerId;payloadType;payload;signature;marshaled;constructor(e){let{peerId:t,payloadType:n,payload:s,signature:o}=e;this.peerId=t,this.payloadType=n,this.payload=s,this.signature=o}marshal(){if(this.peerId.publicKey==null)throw new Error("Missing public key");return this.marshaled==null&&(this.marshaled=sn.encode({publicKey:this.peerId.publicKey,payloadType:this.payloadType,payload:this.payload.subarray(),signature:this.signature})),this.marshaled}equals(e){return pe(this.marshal(),e.marshal())}async validate(e){let t=ol(e,this.payloadType,this.payload);if(this.peerId.publicKey==null)throw new Error("Missing public key");return Jc(this.peerId.publicKey).verify(t.subarray(),this.signature)}},ol=(r,e,t)=>{let n=M(r),s=Oe(n.byteLength),o=Oe(e.length),i=Oe(t.length);return new Ze(s,n,o,e,i,t)};function il(r,e){let t=(n,s)=>n.toString().localeCompare(s.toString());return r.length!==e.length?!1:(e.sort(t),r.sort(t).every((n,s)=>e[s].equals(n)))}var xs=class{index=0;input="";new(e){return this.index=0,this.input=e,this}readAtomically(e){let t=this.index,n=e();return n===void 0&&(this.index=t),n}parseWith(e){let t=e();if(this.index===this.input.length)return t}peekChar(){if(!(this.index>=this.input.length))return this.input[this.index]}readChar(){if(!(this.index>=this.input.length))return this.input[this.index++]}readGivenChar(e){return this.readAtomically(()=>{let t=this.readChar();if(t===e)return t})}readSeparator(e,t,n){return this.readAtomically(()=>{if(!(t>0&&this.readGivenChar(e)===void 0))return n()})}readNumber(e,t,n,s){return this.readAtomically(()=>{let o=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",f=2**(8*s)-1;for(;;){let u=this.readAtomically(()=>{let l=this.readChar();if(l===void 0)return;let d=Number.parseInt(l,e);if(!Number.isNaN(d))return d});if(u===void 0)break;if(o*=e,o+=u,o>f||(i+=1,t!==void 0&&i>t))return}if(i!==0)return!n&&c&&i>1?void 0:o})}readIPv4Addr(){return this.readAtomically(()=>{let e=new Uint8Array(4);for(let t=0;t<e.length;t++){let n=this.readSeparator(".",t,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;e[t]=n}return e})}readIPv6Addr(){let e=t=>{for(let n=0;n<t.length/2;n++){let s=n*2;if(n<t.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return t[s]=i[0],t[s+1]=i[1],t[s+2]=i[2],t[s+3]=i[3],[s+4,!0]}let o=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(o===void 0)return[s,!1];t[s]=o>>8,t[s+1]=o&255}return[t.length,!1]};return this.readAtomically(()=>{let t=new Uint8Array(16),[n,s]=e(t);if(n===16)return t;if(s||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let o=new Uint8Array(14),i=16-(n+2),[a]=e(o.subarray(0,i));return t.set(o.subarray(0,a),16-a),t})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var al=45,Nd=15,Nr=new xs;function ui(r){if(!(r.length>Nd))return Nr.new(r).parseWith(()=>Nr.readIPv4Addr())}function fi(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>al))return Nr.new(r).parseWith(()=>Nr.readIPv6Addr())}function vs(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>al))return Nr.new(r).parseWith(()=>Nr.readIPAddr())}var Qy=parseInt("0xFFFF",16),eb=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function Es(r){return!!ui(r)}function Bs(r){return!!fi(r)}function As(r){return!!vs(r)}var ul=Es,Ld=Bs,hi=function(r){let e=0;if(r=r.toString().trim(),ul(r)){let t=new Uint8Array(e+4);return r.split(/\./g).forEach(n=>{t[e++]=parseInt(n,10)&255}),t}if(Ld(r)){let t=r.split(":",8),n;for(n=0;n<t.length;n++){let o=ul(t[n]),i;o&&(i=hi(t[n]),t[n]=H(i.slice(0,2),"base16")),i!=null&&++n<8&&t.splice(n,0,H(i.slice(2,4),"base16"))}if(t[0]==="")for(;t.length<8;)t.unshift("0");else if(t[t.length-1]==="")for(;t.length<8;)t.push("0");else if(t.length<8){for(n=0;n<t.length&&t[n]!=="";n++);let o=[n,1];for(n=9-t.length;n>0;n--)o.push("0");t.splice.apply(t,o)}let s=new Uint8Array(e+16);for(n=0;n<t.length;n++){let o=parseInt(t[n],16);s[e++]=o>>8&255,s[e++]=o&255}return s}throw new Error("invalid ip address")},fl=function(r,e=0,t){e=~~e,t=t??r.length-e;let n=new DataView(r.buffer);if(t===4){let s=[];for(let o=0;o<t;o++)s.push(r[e+o]);return s.join(".")}if(t===16){let s=[];for(let o=0;o<t;o+=2)s.push(n.getUint16(e+o).toString(16));return s.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var Rr={},di={},Pd=[[4,32,"ip4"],[6,16,"tcp"],[33,16,"dccp"],[41,128,"ip6"],[42,-1,"ip6zone"],[43,8,"ipcidr"],[53,-1,"dns",!0],[54,-1,"dns4",!0],[55,-1,"dns6",!0],[56,-1,"dnsaddr",!0],[132,16,"sctp"],[273,16,"udp"],[275,0,"p2p-webrtc-star"],[276,0,"p2p-webrtc-direct"],[277,0,"p2p-stardust"],[280,0,"webrtc-direct"],[281,0,"webrtc"],[290,0,"p2p-circuit"],[301,0,"udt"],[302,0,"utp"],[400,-1,"unix",!1,!0],[421,-1,"ipfs"],[421,-1,"p2p"],[443,0,"https"],[444,96,"onion"],[445,296,"onion3"],[446,-1,"garlic64"],[448,0,"tls"],[449,-1,"sni"],[460,0,"quic"],[461,0,"quic-v1"],[465,0,"webtransport"],[466,-1,"certhash"],[477,0,"ws"],[478,0,"wss"],[479,0,"p2p-websocket-star"],[480,0,"http"],[481,-1,"http-path"],[777,-1,"memory"]];Pd.forEach(r=>{let e=Vd(...r);di[e.code]=e,Rr[e.name]=e});function Vd(r,e,t,n,s){return{code:r,size:e,name:t,resolvable:!!n,path:!!s}}function z(r){if(typeof r=="number"){if(di[r]!=null)return di[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(Rr[r]!=null)return Rr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Ob=z("ip4"),Db=z("ip6"),Mb=z("ipcidr");function yi(r,e){switch(z(r).code){case 4:case 41:return Dd(e);case 42:return mi(e);case 6:case 273:case 33:case 132:return pl(e).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return mi(e);case 421:return Kd(e);case 444:return dl(e);case 445:return dl(e);case 466:return Fd(e);case 481:return globalThis.encodeURIComponent(mi(e));default:return H(e,"base16")}}function bi(r,e){switch(z(r).code){case 4:return hl(e);case 41:return hl(e);case 42:return gi(e);case 6:case 273:case 33:case 132:return wi(parseInt(e,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return gi(e);case 421:return Md(e);case 444:return qd(e);case 445:return $d(e);case 466:return Hd(e);case 481:return gi(globalThis.decodeURIComponent(e));default:return M(e,"base16")}}var pi=Object.values(Nt).map(r=>r.decoder),Od=function(){let r=pi[0].or(pi[1]);return pi.slice(2).forEach(e=>r=r.or(e)),r}();function hl(r){if(!As(r))throw new Error("invalid ip address");return hi(r)}function Dd(r){let e=fl(r,0,r.length);if(e==null)throw new Error("ipBuff is required");if(!As(e))throw new Error("invalid ip address");return e}function wi(r){let e=new ArrayBuffer(2);return new DataView(e).setUint16(0,r),new Uint8Array(e)}function pl(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function gi(r){let e=M(r),t=Uint8Array.from(Oe(e.length));return Se([t,e],t.length+e.length)}function mi(r){let e=wt(r);if(r=r.slice(Be(e)),r.length!==e)throw new Error("inconsistent lengths");return H(r)}function Md(r){let e;r[0]==="Q"||r[0]==="1"?e=$t(oe.decode(`z${r}`)).bytes:e=Pe.parse(r).multihash.bytes;let t=Uint8Array.from(Oe(e.length));return Se([t,e],t.length+e.length)}function Hd(r){let e=Od.decode(r),t=Uint8Array.from(Oe(e.length));return Se([t,e],t.length+e.length)}function Fd(r){let e=wt(r),t=r.slice(Be(e));if(t.length!==e)throw new Error("inconsistent lengths");return"u"+H(t,"base64url")}function Kd(r){let e=wt(r),t=r.slice(Be(e));if(t.length!==e)throw new Error("inconsistent lengths");return H(t,"base58btc")}function qd(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==16)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion address.`);let t=dt.decode("b"+e[0]),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=wi(n);return Se([t,s],t.length+s.length)}function $d(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==56)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion3 address.`);let t=dt.decode(`b${e[0]}`),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=wi(n);return Se([t,s],t.length+s.length)}function dl(r){let e=r.slice(0,r.length-2),t=r.slice(r.length-2),n=H(e,"base32"),s=pl(t);return`${n}:${s}`}function gl(r){r=xi(r);let e=[],t=[],n=null,s=r.split("/").slice(1);if(s.length===1&&s[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let o=0;o<s.length;o++){let i=s[o],a=z(i);if(a.size===0){e.push([a.code]),t.push([a.code]);continue}if(o++,o>=s.length)throw yl("invalid address: "+r);if(a.path===!0){n=xi(s.slice(o).join("/")),e.push([a.code,bi(a.code,n)]),t.push([a.code,n]);break}let c=bi(a.code,s[o]);e.push([a.code,c]),t.push([a.code,yi(a.code,c)])}return{string:ml(t),bytes:Ei(e),tuples:e,stringTuples:t,path:n}}function vi(r){let e=[],t=[],n=null,s=0;for(;s<r.length;){let o=wt(r,s),i=Be(o),a=z(o),c=Gd(a,r.slice(s+i));if(c===0){e.push([o]),t.push([o]),s+=i;continue}let f=r.slice(s+i,s+i+c);if(s+=c+i,s>r.length)throw yl("Invalid address Uint8Array: "+H(r,"base16"));e.push([o,f]);let u=yi(o,f);if(t.push([o,u]),a.path===!0){n=u;break}}return{bytes:Uint8Array.from(r),string:ml(t),tuples:e,stringTuples:t,path:n}}function ml(r){let e=[];return r.map(t=>{let n=z(t[0]);return e.push(n.name),t.length>1&&t[1]!=null&&e.push(t[1]),null}),xi(e.join("/"))}function Ei(r){return Se(r.map(e=>{let t=z(e[0]),n=Uint8Array.from(Oe(t.code));return e.length>1&&e[1]!=null&&(n=Se([n,e[1]])),n}))}function Gd(r,e){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let t=wt(e instanceof Uint8Array?e:Uint8Array.from(e));return t+Be(t)}}function xi(r){return"/"+r.trim().split("/").filter(e=>e).join("/")}function yl(r){return new Error("Error parsing address: "+r)}var zd=Symbol.for("nodejs.util.inspect.custom"),Bi=Symbol.for("@multiformats/js-multiaddr/multiaddr"),jd=[z("dns").code,z("dns4").code,z("dns6").code,z("dnsaddr").code],Is=class r{bytes;#t;#e;#r;#n;[Bi]=!0;constructor(e){e==null&&(e="");let t;if(e instanceof Uint8Array)t=vi(e);else if(typeof e=="string"){if(e.length>0&&e.charAt(0)!=="/")throw new Error(`multiaddr "${e}" must start with a "/"`);t=gl(e)}else if(wl(e))t=vi(e.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=t.bytes,this.#t=t.string,this.#e=t.tuples,this.#r=t.stringTuples,this.#n=t.path}toString(){return this.#t}toJSON(){return this.toString()}toOptions(){let e,t,n,s,o="",i=z("tcp"),a=z("udp"),c=z("ip4"),f=z("ip6"),u=z("dns6"),l=z("ip6zone");for(let[y,p]of this.stringTuples())y===l.code&&(o=`%${p??""}`),jd.includes(y)&&(t=i.name,s=443,n=`${p??""}${o}`,e=y===u.code?6:4),(y===i.code||y===a.code)&&(t=z(y).name,s=parseInt(p??"")),(y===c.code||y===f.code)&&(t=z(y).name,n=`${p??""}${o}`,e=y===f.code?6:4);if(e==null||t==null||n==null||s==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:e,host:n,transport:t,port:s}}protos(){return this.#e.map(([e])=>Object.assign({},z(e)))}protoCodes(){return this.#e.map(([e])=>e)}protoNames(){return this.#e.map(([e])=>z(e).name)}tuples(){return this.#e}stringTuples(){return this.#r}encapsulate(e){return e=new r(e),new r(this.toString()+e.toString())}decapsulate(e){let t=e.toString(),n=this.toString(),s=n.lastIndexOf(t);if(s<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${e.toString()}`);return new r(n.slice(0,s))}decapsulateCode(e){let t=this.tuples();for(let n=t.length-1;n>=0;n--)if(t[n][0]===e)return new r(Ei(t.slice(0,n)));return this}getPeerId(){try{let e=[];this.stringTuples().forEach(([n,s])=>{n===Rr.p2p.code&&e.push([n,s]),n===Rr["p2p-circuit"].code&&(e=[])});let t=e.pop();if(t?.[1]!=null){let n=t[1];return n[0]==="Q"||n[0]==="1"?H(oe.decode(`z${n}`),"base58btc"):H(Pe.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(e){return pe(this.bytes,e.bytes)}async resolve(e){let t=this.protos().find(o=>o.resolvable);if(t==null)return[this];let n=bl.get(t.name);if(n==null)throw new C(`no available resolver for ${t.name}`,"ERR_NO_AVAILABLE_RESOLVER");return(await n(this,e)).map(o=>at(o))}nodeAddress(){let e=this.toOptions();if(e.transport!=="tcp"&&e.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${e.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:e.family,address:e.host,port:e.port}}isThinWaistAddress(e){let t=(e??this).protos();return!(t.length!==2||t[0].code!==4&&t[0].code!==41||t[1].code!==6&&t[1].code!==273)}[zd](){return`Multiaddr(${this.#t})`}};var bl=new Map;function wl(r){return!!r?.[Bi]}function at(r){return new Is(r)}var xl="libp2p-peer-record",vl=Uint8Array.from([3,1]);var on;(function(r){let e;(function(n){let s;n.codec=()=>(s==null&&(s=ze((o,i,a={})=>{a.lengthDelimited!==!1&&i.fork(),o.multiaddr!=null&&o.multiaddr.byteLength>0&&(i.uint32(10),i.bytes(o.multiaddr)),a.lengthDelimited!==!1&&i.ldelim()},(o,i)=>{let a={multiaddr:new Uint8Array(0)},c=i==null?o.len:o.pos+i;for(;o.pos<c;){let f=o.uint32();switch(f>>>3){case 1:a.multiaddr=o.bytes();break;default:o.skipType(f&7);break}}return a})),s),n.encode=o=>Ge(o,n.codec()),n.decode=o=>$e(o,n.codec())})(e=r.AddressInfo||(r.AddressInfo={}));let t;r.codec=()=>(t==null&&(t=ze((n,s,o={})=>{if(o.lengthDelimited!==!1&&s.fork(),n.peerId!=null&&n.peerId.byteLength>0&&(s.uint32(10),s.bytes(n.peerId)),n.seq!=null&&n.seq!==0n&&(s.uint32(16),s.uint64(n.seq)),n.addresses!=null)for(let i of n.addresses)s.uint32(26),r.AddressInfo.codec().encode(i,s);o.lengthDelimited!==!1&&s.ldelim()},(n,s)=>{let o={peerId:new Uint8Array(0),seq:0n,addresses:[]},i=s==null?n.len:n.pos+s;for(;n.pos<i;){let a=n.uint32();switch(a>>>3){case 1:o.peerId=n.bytes();break;case 2:o.seq=n.uint64();break;case 3:o.addresses.push(r.AddressInfo.codec().decode(n,n.uint32()));break;default:n.skipType(a&7);break}}return o})),t),r.encode=n=>Ge(n,r.codec()),r.decode=n=>$e(n,r.codec())})(on||(on={}));var Je=class r{static createFromProtobuf=e=>{let t=on.decode(e),n=li(t.peerId),s=(t.addresses??[]).map(i=>at(i.multiaddr)),o=t.seq;return new r({peerId:n,multiaddrs:s,seqNumber:o})};static DOMAIN=xl;static CODEC=vl;peerId;multiaddrs;seqNumber;domain=r.DOMAIN;codec=r.CODEC;marshaled;constructor(e){let{peerId:t,multiaddrs:n,seqNumber:s}=e;this.peerId=t,this.multiaddrs=n??[],this.seqNumber=s??BigInt(Date.now())}marshal(){return this.marshaled==null&&(this.marshaled=on.encode({peerId:this.peerId.toBytes(),seq:BigInt(this.seqNumber),addresses:this.multiaddrs.map(e=>({multiaddr:e.bytes}))})),this.marshaled}equals(e){return!(!(e instanceof r)||!this.peerId.equals(e.peerId)||this.seqNumber!==e.seqNumber||!il(this.multiaddrs,e.multiaddrs))}};function Wd(r){return r[Symbol.asyncIterator]!=null}function Yd(r){if(Wd(r))return(async()=>{for await(let e of r);})();for(let e of r);}var El=Yd;function Xe(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var Ss=globalThis.CustomEvent??Event;async function*Ai(r,e={}){let t=e.concurrency??1/0;t<1&&(t=1/0);let n=e.ordered==null?!1:e.ordered,s=new EventTarget,o=[],i=Xe(),a=Xe(),c=!1,f,u=!1;s.addEventListener("task-complete",()=>{a.resolve()}),Promise.resolve().then(async()=>{try{for await(let p of r){if(o.length===t&&(i=Xe(),await i.promise),u)break;let h={done:!1};o.push(h),p().then(g=>{h.done=!0,h.ok=!0,h.value=g,s.dispatchEvent(new Ss("task-complete"))},g=>{h.done=!0,h.err=g,s.dispatchEvent(new Ss("task-complete"))})}c=!0,s.dispatchEvent(new Ss("task-complete"))}catch(p){f=p,s.dispatchEvent(new Ss("task-complete"))}});function l(){return n?o[0]?.done:!!o.find(p=>p.done)}function*d(){for(;o.length>0&&o[0].done;){let p=o[0];if(o.shift(),p.ok)yield p.value;else throw u=!0,i.resolve(),p.err;i.resolve()}}function*y(){for(;l();)for(let p=0;p<o.length;p++)if(o[p].done){let h=o[p];if(o.splice(p,1),p--,h.ok)yield h.value;else throw u=!0,i.resolve(),h.err;i.resolve()}}for(;;){if(l()||(a=Xe(),await a.promise),f!=null)throw f;if(n?yield*d():yield*y(),c&&o.length===0)break}}var ks=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=t??"ABORT_ERR"}};async function Bl(r,e,t){if(e==null)return r;if(e.aborted)return Promise.reject(new ks(t?.errorMessage,t?.errorCode));let n,s=new ks(t?.errorMessage,t?.errorCode);try{return await Promise.race([r,new Promise((o,i)=>{n=()=>{i(s)},e.addEventListener("abort",n)})])}finally{n!=null&&e.removeEventListener("abort",n)}}var Ii=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=Xe(),this.haveNext=Xe()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=Xe(),e}async throw(e){return this.ended=!0,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return await this._push(void 0),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=Xe(),await Bl(this.readNext.promise,t?.signal,t)}};function Al(){return new Ii}var Ns=class extends Error{code;constructor(e,t){super(e),this.code=t}},Si=class extends Ns{type;constructor(e){super(e,"ABORT_ERR"),this.type="aborted"}};function Il(r,e){let t=Al();r.sink(t).catch(async i=>{await t.end(i)}),r.sink=async i=>{for await(let a of i)await t.push(a);await t.end()};let n=r.source;r.source[Symbol.iterator]!=null?n=r.source[Symbol.iterator]():r.source[Symbol.asyncIterator]!=null&&(n=r.source[Symbol.asyncIterator]());let s=new Ze;return{read:async(i,a)=>{a?.signal?.throwIfAborted();let c,f=new Promise((u,l)=>{c=()=>{l(new Si("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(i==null){let{done:l,value:d}=await Promise.race([n.next(),f]);return l===!0?new Ze:d}for(;s.byteLength<i;){let{value:l,done:d}=await Promise.race([n.next(),f]);if(d===!0)throw new Ns("unexpected end of input","ERR_UNEXPECTED_EOF");s.append(l)}let u=s.sublist(0,i);return s.consume(i),u}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(i,a)=>{a?.signal?.throwIfAborted(),i instanceof Uint8Array?await t.push(i,a):await t.push(i.subarray(),a)},unwrap:()=>{if(s.byteLength>0){let i=r.source;r.source=async function*(){e?.yieldBytes===!1?yield s:yield*s,yield*i}()}return r}}}var Rs=class extends Error{code;constructor(e,t){super(e),this.code=t}};function Sl(r,e={}){let t=Il(r,e);e.maxDataLength!=null&&e.maxLengthLength==null&&(e.maxLengthLength=Be(e.maxDataLength));let n=e?.lengthDecoder??wt,s=e?.lengthEncoder??Oe;return{read:async i=>{let a=-1,c=new Ze;for(;;){c.append(await t.read(1,i));try{a=n(c)}catch(f){if(f instanceof RangeError)continue;throw f}if(e?.maxLengthLength!=null&&c.byteLength>e.maxLengthLength)throw new Rs("message length length too long","ERR_MSG_LENGTH_TOO_LONG");if(a>-1)break}if(e?.maxDataLength!=null&&a>e.maxDataLength)throw new Rs("message length too long","ERR_MSG_DATA_TOO_LONG");return t.read(a,i)},write:async(i,a)=>{await t.write(new Ze(s(i.byteLength),i),a)},writeV:async(i,a)=>{let c=new Ze(...i.flatMap(f=>[s(f.byteLength),f]));await t.write(c,a)},unwrap:()=>t.unwrap()}}function Tr(r,e){let t=Sl(r,e),n={read:async(s,o)=>{let i=await t.read(o);return s.decode(i)},write:async(s,o,i)=>{await t.write(o.encode(s),i)},writeV:async(s,o,i)=>{await t.writeV(s.map(a=>o.encode(a)),i)},pb:s=>({read:async o=>n.read(s,o),write:async(o,i)=>n.write(o,s,i),writeV:async(o,i)=>n.writeV(o,s,i),unwrap:()=>n}),unwrap:()=>t.unwrap()};return n}var kl="0.1.0",Nl="id",Rl="id/push",Tl="1.0.0",_l="1.0.0";var Kt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{if(s.lengthDelimited!==!1&&n.fork(),t.protocolVersion!=null&&(n.uint32(42),n.string(t.protocolVersion)),t.agentVersion!=null&&(n.uint32(50),n.string(t.agentVersion)),t.publicKey!=null&&(n.uint32(10),n.bytes(t.publicKey)),t.listenAddrs!=null)for(let o of t.listenAddrs)n.uint32(18),n.bytes(o);if(t.observedAddr!=null&&(n.uint32(34),n.bytes(t.observedAddr)),t.protocols!=null)for(let o of t.protocols)n.uint32(26),n.string(o);t.signedPeerRecord!=null&&(n.uint32(66),n.bytes(t.signedPeerRecord)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={listenAddrs:[],protocols:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 5:s.protocolVersion=t.string();break;case 6:s.agentVersion=t.string();break;case 1:s.publicKey=t.bytes();break;case 2:s.listenAddrs.push(t.bytes());break;case 4:s.observedAddr=t.bytes();break;case 3:s.protocols.push(t.string());break;case 8:s.signedPeerRecord=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(Kt||(Kt={}));var Ul=$i(Ll(),1),ki=typeof window=="object"&&typeof document=="object"&&document.nodeType===9,Ts=(0,Ul.default)(),Pl=ki&&!Ts,Vl=Ts&&!ki,Ol=Ts&&ki,Dl=typeof globalThis.process<"u"&&typeof globalThis.process.release<"u"&&globalThis.process.release.name==="node"&&!Ts,Ml=typeof importScripts=="function"&&typeof self<"u"&&typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,Kw=typeof globalThis.process<"u"&&typeof globalThis.process.env<"u"&&globalThis.process.env["NODE"+"_"+"ENV"]==="test",Hl=typeof navigator<"u"&&navigator.product==="ReactNative";var _e={protocolPrefix:"ipfs",timeout:5e3,maxInboundStreams:1,maxOutboundStreams:1,maxObservedAddresses:10,maxMessageSize:8192,runOnConnectionOpen:!0,runOnSelfUpdate:!0,runOnTransientConnection:!0,concurrency:32};function Fl(r){if(r!=null&&r.length>0)try{return at(r)}catch{}}function Qd(r,e){return e!=null||(e=`${r.name}/${r.version}`,Dl||Vl?e+=` UserAgent=${globalThis.process.version}`:(Pl||Ml||Ol||Hl)&&(e+=` UserAgent=${globalThis.navigator.userAgent}`)),e}async function _s(r,e,t,n,s){if(t("received identify from %p",n.remotePeer),s==null)throw new C("message was null or undefined","ERR_INVALID_MESSAGE");let o={};if(s.listenAddrs.length>0&&(o.addresses=s.listenAddrs.map(c=>({isCertified:!1,multiaddr:at(c)}))),s.protocols.length>0&&(o.protocols=s.protocols),s.publicKey!=null&&(o.publicKey=s.publicKey,!(await kr(s.publicKey)).equals(n.remotePeer)))throw new C("public key did not match remote PeerId","ERR_INVALID_PUBLIC_KEY");let i;if(s.signedPeerRecord!=null){t("received signedPeerRecord from %p",n.remotePeer);let c=s.signedPeerRecord,f=await it.openAndCertify(c,Je.DOMAIN),u=Je.createFromProtobuf(f.payload);if(!u.peerId.equals(f.peerId))throw new C("signing key does not match PeerId in the PeerRecord","ERR_INVALID_SIGNING_KEY");if(!n.remotePeer.equals(u.peerId))throw new C("signing key does not match remote PeerId","ERR_INVALID_PEER_RECORD_KEY");let l;try{l=await r.get(u.peerId)}catch(d){if(d.code!=="ERR_NOT_FOUND")throw d}if(l!=null&&(o.metadata=l.metadata,l.peerRecordEnvelope!=null)){let d=await it.createFromProtobuf(l.peerRecordEnvelope),y=Je.createFromProtobuf(d.payload);y.seqNumber>=u.seqNumber&&(t("sequence number was lower or equal to existing sequence number - stored: %d received: %d",y.seqNumber,u.seqNumber),u=y,c=l.peerRecordEnvelope)}o.peerRecordEnvelope=c,o.addresses=u.multiaddrs.map(d=>({isCertified:!0,multiaddr:d})),i={seq:u.seqNumber,addresses:u.multiaddrs}}else t("%p did not send a signed peer record",n.remotePeer);if(t("patching %p with",n.remotePeer,o),await r.patch(n.remotePeer,o),s.agentVersion!=null||s.protocolVersion!=null){let c={};s.agentVersion!=null&&(c.AgentVersion=M(s.agentVersion)),s.protocolVersion!=null&&(c.ProtocolVersion=M(s.protocolVersion)),t("merging %p metadata",n.remotePeer,c),await r.merge(n.remotePeer,{metadata:c})}let a={peerId:n.remotePeer,protocolVersion:s.protocolVersion,agentVersion:s.agentVersion,publicKey:s.publicKey,listenAddrs:s.listenAddrs.map(c=>at(c)),observedAddr:s.observedAddr==null?void 0:at(s.observedAddr),protocols:s.protocols,signedPeerRecord:i,connection:n};return e.safeDispatchEvent("peer:identify",{detail:a}),a}var _r=class{host;protocol;started;timeout;peerId;peerStore;registrar;addressManager;maxInboundStreams;maxOutboundStreams;maxMessageSize;maxObservedAddresses;events;runOnTransientConnection;log;constructor(e,t){this.protocol=t.protocol,this.started=!1,this.peerId=e.peerId,this.peerStore=e.peerStore,this.registrar=e.registrar,this.addressManager=e.addressManager,this.events=e.events,this.log=t.log,this.timeout=t.timeout??_e.timeout,this.maxInboundStreams=t.maxInboundStreams??_e.maxInboundStreams,this.maxOutboundStreams=t.maxOutboundStreams??_e.maxOutboundStreams,this.maxMessageSize=t.maxMessageSize??_e.maxMessageSize,this.maxObservedAddresses=t.maxObservedAddresses??_e.maxObservedAddresses,this.runOnTransientConnection=t.runOnTransientConnection??_e.runOnTransientConnection,this.host={protocolVersion:`${t.protocolPrefix??_e.protocolPrefix}/${kl}`,agentVersion:Qd(e.nodeInfo,t.agentVersion)}}isStarted(){return this.started}async start(){this.started||(await this.peerStore.merge(this.peerId,{metadata:{AgentVersion:M(this.host.agentVersion),ProtocolVersion:M(this.host.protocolVersion)}}),await this.registrar.handle(this.protocol,e=>{this.handleProtocol(e).catch(t=>{this.log.error(t)})},{maxInboundStreams:this.maxInboundStreams,maxOutboundStreams:this.maxOutboundStreams,runOnTransientConnection:this.runOnTransientConnection}),this.started=!0)}async stop(){await this.registrar.unhandle(this.protocol),this.started=!1}};var Cs=class extends _r{connectionManager;concurrency;constructor(e,t={}){super(e,{...t,protocol:`/${t.protocolPrefix??_e.protocolPrefix}/${Rl}/${_l}`,log:e.logger.forComponent("libp2p:identify-push")}),this.connectionManager=e.connectionManager,this.concurrency=t.concurrency??_e.concurrency,(t.runOnSelfUpdate??_e.runOnSelfUpdate)&&e.events.addEventListener("self:peer:update",n=>{this.push().catch(s=>{this.log.error(s)})})}[un]=["@libp2p/identify-push"];async push(){if(!this.isStarted())return;let e=this.addressManager.getAddresses().map(u=>u.decapsulateCode(z("p2p").code)),t=new Je({peerId:this.peerId,multiaddrs:e}),n=await it.seal(t,this.peerId),s=this.registrar.getProtocols(),o=await this.peerStore.get(this.peerId),i=H(o.metadata.get("AgentVersion")??M(this.host.agentVersion)),a=H(o.metadata.get("ProtocolVersion")??M(this.host.protocolVersion)),c=this;async function*f(){for(let u of c.connectionManager.getConnections())(await c.peerStore.get(u.remotePeer)).protocols.includes(c.protocol)&&(yield async()=>{let d,y=AbortSignal.timeout(c.timeout);Lr(1/0,y);try{d=await u.newStream(c.protocol,{signal:y,runOnTransientConnection:c.runOnTransientConnection}),await Tr(d,{maxDataLength:c.maxMessageSize}).pb(Kt).write({listenAddrs:e.map(h=>h.bytes),signedPeerRecord:n.marshal(),protocols:s,agentVersion:i,protocolVersion:a},{signal:y}),await d.close({signal:y})}catch(p){c.log.error("could not push identify update to peer",p),d?.abort(p)}})}await El(Ai(f(),{concurrency:this.concurrency}))}async handleProtocol(e){let{connection:t,stream:n}=e;try{if(this.peerId.equals(t.remotePeer))throw new Error("received push from ourselves?");let s={signal:AbortSignal.timeout(this.timeout)},i=await Tr(n,{maxDataLength:this.maxMessageSize}).pb(Kt).read(s);await n.close(s),await _s(this.peerStore,this.events,this.log,t,i)}catch(s){this.log.error("received invalid message",s),n.abort(s);return}this.log("handled push from %p",t.remotePeer)}};var ep=r=>r.toString().split("/").slice(1),an=r=>({match:e=>e.length<1?!1:r(e[0])?e.slice(1):!1,pattern:"fn"}),j=r=>({match:e=>an(t=>t===r).match(e),pattern:r}),Ps=()=>({match:r=>an(e=>typeof e=="string").match(r),pattern:"{string}"}),Vs=()=>({match:r=>an(e=>!isNaN(parseInt(e))).match(r),pattern:"{number}"}),xe=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{oe.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Ls=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{so.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),he=r=>({match:e=>{let t=r.match(e);return t===!1?e:t},pattern:`optional(${r.pattern})`}),He=(...r)=>({match:e=>{let t;for(let n of r){let s=n.match(e);s!==!1&&(t==null||s.length<t.length)&&(t=s)}return t??!1},pattern:`or(${r.map(e=>e.pattern).join(", ")})`}),J=(...r)=>({match:e=>{for(let t of r){let n=t.match(e);if(n===!1)return!1;e=n}return e},pattern:`and(${r.map(e=>e.pattern).join(", ")})`});function ie(...r){function e(s){let o=ep(s);for(let i of r){let a=i.match(o);if(a===!1)return!1;o=a}return o}function t(s){return e(s)!==!1}function n(s){let o=e(s);return o===!1?!1:o.length===0}return{matches:t,exactMatch:n}}var Ri=J(j("dns4"),Ps()),Ti=J(j("dns6"),Ps()),_i=J(j("dnsaddr"),Ps()),Kl=J(j("dns"),Ps()),px=ie(Ri),gx=ie(Ti),mx=ie(_i),yx=ie(He(Kl,_i,Ri,Ti)),ql=J(j("ip4"),an(Es)),$l=J(j("ip6"),an(Bs)),Gl=He(ql,$l),ct=He(Gl,Kl,Ri,Ti,_i),zl=ie(ct),bx=ie(ql),wx=ie($l),xx=ie(Gl),Ci=J(ct,j("tcp"),Vs()),cn=J(ct,j("udp"),Vs()),vx=ie(Ci),Ex=ie(cn),Li=J(cn,j("quic")),Os=J(cn,j("quic-v1")),tp=He(Li,Os),Bx=ie(Li),Ax=ie(Os),Ni=He(ct,Ci,cn,Li,Os),jl=He(J(Ni,j("ws"),he(xe()))),Ix=ie(jl),Wl=He(J(Ni,j("wss"),he(xe())),J(Ni,j("tls"),j("ws"),he(xe()))),Sx=ie(Wl),Yl=J(cn,j("webrtc-direct"),he(Ls()),he(Ls()),he(xe())),kx=ie(Yl),Zl=J(Os,j("webtransport"),he(Ls()),he(Ls()),he(xe())),Nx=ie(Zl),Us=He(jl,Wl,J(Ci,he(xe())),J(tp,he(xe())),J(ct,he(xe())),Yl,Zl,xe()),Rx=ie(Us),rp=J(Us,j("p2p-circuit"),xe()),Tx=ie(rp),np=He(J(Us,j("p2p-circuit"),j("webrtc"),he(xe())),J(Us,j("webrtc"),he(xe())),j("webrtc")),_x=ie(np),sp=He(J(ct,j("tcp"),Vs(),j("http"),he(xe())),J(ct,j("http"),he(xe()))),Cx=ie(sp),op=He(J(ct,j("tcp"),He(J(j("443"),j("http")),J(Vs(),j("https"))),he(xe())),J(ct,j("tls"),j("http"),he(xe())),J(ct,j("https"),he(xe()))),Lx=ie(op);var Ds=class extends _r{constructor(e,t={}){super(e,{...t,protocol:`/${t.protocolPrefix??_e.protocolPrefix}/${Nl}/${Tl}`,log:e.logger.forComponent("libp2p:identify")}),(t.runOnConnectionOpen??_e.runOnConnectionOpen)&&e.events.addEventListener("connection:open",n=>{let s=n.detail;this.identify(s).catch(o=>{this.log.error("error during identify trigged by connection:open",o)})})}[un]=["@libp2p/identify"];async _identify(e,t={}){let n;if(t.signal==null){let s=AbortSignal.timeout(this.timeout);Lr(1/0,s),t={...t,signal:s}}try{n=await e.newStream(this.protocol,{...t,runOnTransientConnection:this.runOnTransientConnection});let o=await Tr(n,{maxDataLength:this.maxMessageSize}).pb(Kt).read(t);return await n.close(t),o}catch(s){throw this.log.error("error while reading identify message",s),n?.abort(s),s}}async identify(e,t={}){let n=await this._identify(e,t),{publicKey:s,protocols:o,observedAddr:i}=n;if(s==null)throw new C("public key was missing from identify message","ERR_MISSING_PUBLIC_KEY");let a=await kr(s);if(!e.remotePeer.equals(a))throw new C("identified peer does not match the expected peer","ERR_INVALID_PEER");if(this.peerId.equals(a))throw new C("identified peer is our own peer id?","ERR_INVALID_PEER");let c=Fl(i);return this.log("identify completed for peer %p and protocols %o",a,o),this.log("our observed address is %a",c),c!=null&&this.addressManager.getObservedAddrs().length<(this.maxObservedAddresses??1/0)&&(this.log("storing our observed address %a",c),this.addressManager.addObservedAddr(c)),_s(this.peerStore,this.events,this.log,e,n)}async handleProtocol(e){let{connection:t,stream:n}=e,s=AbortSignal.timeout(this.timeout);Lr(1/0,s);try{let o=this.peerId.publicKey??new Uint8Array(0),i=await this.peerStore.get(this.peerId),a=this.addressManager.getAddresses().map(l=>l.decapsulateCode(z("p2p").code)),c=i.peerRecordEnvelope;if(a.length>0&&c==null){let l=new Je({peerId:this.peerId,multiaddrs:a});c=(await it.seal(l,this.peerId)).marshal().subarray()}let f=t.remoteAddr.bytes;zl.matches(t.remoteAddr)||(f=void 0),await Tr(n).pb(Kt).write({protocolVersion:this.host.protocolVersion,agentVersion:this.host.agentVersion,publicKey:o,listenAddrs:a.map(l=>l.bytes),signedPeerRecord:c,observedAddr:f,protocols:i.protocols},{signal:s}),await n.close({signal:s})}catch(o){this.log.error("could not respond to identify request",o),n.abort(o)}}};function ip(r={}){return e=>new Ds(e,r)}function ap(r={}){return e=>new Cs(e,r)}return uu(cp);})();
|
|
6
|
+
`)}`:`${t} :`}};Xa=Ot;I.Constructed=Xa;Ot.NAME="CONSTRUCTED";var Mn=class extends Ie{fromBER(e,t,n){return t}toBER(e){return We}};Mn.override="EndOfContentValueBlock";var Qa,Hn=class extends we{constructor(e={}){super(e,Mn),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}};Qa=Hn;I.EndOfContent=Qa;Hn.NAME=zr;var ec,Dt=class extends we{constructor(e={}){super(e,Ie),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(e,t,n){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=n,t+n>e.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):t+n}toBER(e,t){let n=new ArrayBuffer(2);if(!e){let s=new Uint8Array(n);s[0]=5,s[1]=0}return t&&t.write(n),n}onAsciiEncoding(){return`${this.constructor.NAME}`}};ec=Dt;I.Null=ec;Dt.NAME="NULL";var Fn=class extends At(Ie){constructor({value:e,...t}={}){super(t),t.valueHex?this.valueHexView=M.BufferSourceConverter.toUint8Array(t.valueHex):this.valueHexView=new Uint8Array(1),e&&(this.value=e)}get value(){for(let e of this.valueHexView)if(e>0)return!0;return!1}set value(e){this.valueHexView[0]=e?255:0}fromBER(e,t,n){let s=M.BufferSourceConverter.toUint8Array(e);return Bt(this,s,t,n)?(this.valueHexView=s.subarray(t,t+n),n>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,Go.call(this),this.blockLength=n,t+n):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}};Fn.NAME="BooleanValueBlock";var tc,Kn=class extends we{constructor(e={}){super(e,Fn),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(e){this.valueBlock.value=e}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}};tc=Kn;I.Boolean=tc;Kn.NAME="BOOLEAN";var qn=class extends At(nt){constructor({isConstructed:e=!1,...t}={}){super(t),this.isConstructed=e}fromBER(e,t,n){let s=0;if(this.isConstructed){if(this.isHexOnly=!1,s=nt.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let o=0;o<this.value.length;o++){let i=this.value[o].constructor.NAME;if(i===zr){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if(i!==Wa)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,s=super.fromBER(e,t,n),this.blockLength=n;return s}toBER(e,t){return this.isConstructed?nt.prototype.toBER.call(this,e,t):e?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}};qn.NAME="OctetStringValueBlock";var rc,vt=class r extends we{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,o;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((o=n.value)===null||o===void 0)&&o.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},qn),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(e,t,n){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,n===0)return this.idBlock.error.length===0&&(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length===0&&(this.blockLength+=this.lenBlock.blockLength),t;if(!this.valueBlock.isConstructed){let o=(e instanceof ArrayBuffer?new Uint8Array(e):e).subarray(t,t+n);try{if(o.byteLength){let i=ys(o,0,o.byteLength);i.offset!==-1&&i.offset===n&&(this.valueBlock.value=[i.result])}}catch{}}return super.fromBER(e,t,n)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?Ot.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${M.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;let e=[];for(let t of this.valueBlock.value)t instanceof r&&e.push(t.valueBlock.valueHexView);return M.BufferSourceConverter.concat(e)}};rc=vt;I.OctetString=rc;vt.NAME=Wa;var $n=class extends At(nt){constructor({unusedBits:e=0,isConstructed:t=!1,...n}={}){super(n),this.unusedBits=e,this.isConstructed=t,this.blockLength=this.valueHexView.byteLength}fromBER(e,t,n){if(!n)return t;let s=-1;if(this.isConstructed){if(s=nt.prototype.fromBER.call(this,e,t,n),s===-1)return s;for(let a of this.value){let c=a.constructor.NAME;if(c===zr){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if(c!==Ya)return this.error="BIT STRING may consists of BIT STRINGs only",-1;let f=a.valueBlock;if(this.unusedBits>0&&f.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=f.unusedBits}return s}let o=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,o,t,n))return-1;let i=o.subarray(t,t+n);if(this.unusedBits=i[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){let a=i.subarray(1);try{if(a.byteLength){let c=ys(a,0,a.byteLength);c.offset!==-1&&c.offset===n-1&&(this.value=[c.result])}}catch{}}return this.valueHexView=i.subarray(1),this.blockLength=i.length,t+n}toBER(e,t){if(this.isConstructed)return nt.prototype.toBER.call(this,e,t);if(e)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return We;let n=new Uint8Array(this.valueHexView.length+1);return n[0]=this.unusedBits,n.set(this.valueHexView,1),n.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}};$n.NAME="BitStringValueBlock";var nc,xr=class extends we{constructor({idBlock:e={},lenBlock:t={},...n}={}){var s,o;(s=n.isConstructed)!==null&&s!==void 0||(n.isConstructed=!!(!((o=n.value)===null||o===void 0)&&o.length)),super({idBlock:{isConstructed:n.isConstructed,...e},lenBlock:{...t,isIndefiniteForm:!!n.isIndefiniteForm},...n},$n),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(e,t,n){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(e,t,n)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return Ot.prototype.onAsciiEncoding.call(this);{let e=[],t=this.valueBlock.valueHexView;for(let s of t)e.push(s.toString(2).padStart(8,"0"));let n=e.join("");return`${this.constructor.NAME} : ${n.substring(0,n.length-this.valueBlock.unusedBits)}`}}};nc=xr;I.BitString=nc;xr.NAME=Ya;var sc;function Wh(r,e){let t=new Uint8Array([0]),n=new Uint8Array(r),s=new Uint8Array(e),o=n.slice(0),i=o.length-1,a=s.slice(0),c=a.length-1,f=0,u=c<i?i:c,l=0;for(let d=u;d>=0;d--,l++){switch(!0){case l<a.length:f=o[i-l]+a[c-l]+t[0];break;default:f=o[i-l]+t[0]}switch(t[0]=f/10,!0){case l>=o.length:o=Cn(new Uint8Array([f%10]),o);break;default:o[i-l]=f%10}}return t[0]>0&&(o=Cn(t,o)),o}function ja(r){if(r>=$r.length)for(let e=$r.length;e<=r;e++){let t=new Uint8Array([0]),n=$r[e-1].slice(0);for(let s=n.length-1;s>=0;s--){let o=new Uint8Array([(n[s]<<1)+t[0]]);t[0]=o[0]/10,n[s]=o[0]%10}t[0]>0&&(n=Cn(t,n)),$r.push(n)}return $r[r]}function Yh(r,e){let t=0,n=new Uint8Array(r),s=new Uint8Array(e),o=n.slice(0),i=o.length-1,a=s.slice(0),c=a.length-1,f,u=0;for(let l=c;l>=0;l--,u++)switch(f=o[i-u]-a[c-u]-t,!0){case f<0:t=1,o[i-u]=f+10;break;default:t=0,o[i-u]=f}if(t>0)for(let l=i-c+1;l>=0;l--,u++)if(f=o[i-u]-t,f<0)t=1,o[i-u]=f+10;else{t=0,o[i-u]=f;break}return o.slice()}var jr=class extends At(Ie){constructor({value:e,...t}={}){super(t),this._valueDec=0,t.valueHex&&this.setValueHex(),e!==void 0&&(this.valueDec=e)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=Go.call(this)))}set valueDec(e){this._valueDec=e,this.isHexOnly=!1,this.valueHexView=new Uint8Array($a(e))}get valueDec(){return this._valueDec}fromDER(e,t,n,s=0){let o=this.fromBER(e,t,n);if(o===-1)return o;let i=this.valueHexView;return i[0]===0&&i[1]&128?this.valueHexView=i.subarray(1):s!==0&&i.length<s&&(s-i.length>1&&(s=i.length+1),this.valueHexView=i.subarray(s-i.length)),o}toDER(e=!1){let t=this.valueHexView;switch(!0){case(t[0]&128)!==0:{let n=new Uint8Array(this.valueHexView.length+1);n[0]=0,n.set(t,1),this.valueHexView=n}break;case(t[0]===0&&(t[1]&128)===0):this.valueHexView=this.valueHexView.subarray(1);break}return this.toBER(e)}fromBER(e,t,n){let s=super.fromBER(e,t,n);return s===-1||this.setValueHex(),s}toBER(e){return e?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){let e=this.valueHexView.length*8-1,t=new Uint8Array(this.valueHexView.length*8/3),n=0,s,o=this.valueHexView,i="",a=!1;for(let c=o.byteLength-1;c>=0;c--){s=o[c];for(let f=0;f<8;f++){if((s&1)===1)switch(n){case e:t=Yh(ja(n),t),i="-";break;default:t=Wh(t,ja(n))}n++,s>>=1}}for(let c=0;c<t.length;c++)t[c]&&(a=!0),a&&(i+=za.charAt(t[c]));return a===!1&&(i+=za.charAt(0)),i}};sc=jr;jr.NAME="IntegerValueBlock";Object.defineProperty(sc.prototype,"valueHex",{set:function(r){this.valueHexView=new Uint8Array(r),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});var oc,le=class r extends we{constructor(e={}){super(e,jr),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return Ln(),BigInt(this.valueBlock.toString())}static fromBigInt(e){Ln();let t=BigInt(e),n=new Gr,s=t.toString(16).replace(/^-/,""),o=new Uint8Array(M.Convert.FromHex(s));if(t<0){let a=new Uint8Array(o.length+(o[0]&128?1:0));a[0]|=128;let f=BigInt(`0x${M.Convert.ToHex(a)}`)+t,u=M.BufferSourceConverter.toUint8Array(M.Convert.FromHex(f.toString(16)));u[0]|=128,n.write(u)}else o[0]&128&&n.write(new Uint8Array([0])),n.write(o);return new r({valueHex:n.final()})}convertToDER(){let e=new r({valueHex:this.valueBlock.valueHexView});return e.valueBlock.toDER(),e}convertFromDER(){return new r({valueHex:this.valueBlock.valueHexView[0]===0?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}};oc=le;I.Integer=oc;le.NAME="INTEGER";var ic,Gn=class extends le{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}};ic=Gn;I.Enumerated=ic;Gn.NAME="ENUMERATED";var Wr=class extends At(Ie){constructor({valueDec:e=-1,isFirstSid:t=!1,...n}={}){super(n),this.valueDec=e,this.isFirstSid=t}fromBER(e,t,n){if(!n)return t;let s=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,s,t,n))return-1;let o=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=o[a]&127,this.blockLength++,!!(o[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,o[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=Qt(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}set valueBigInt(e){Ln();let t=BigInt(e).toString(2);for(;t.length%7;)t="0"+t;let n=new Uint8Array(t.length/7);for(let s=0;s<n.length;s++)n[s]=parseInt(t.slice(s*7,s*7+7),2)+(s+1<n.length?128:0);this.fromBER(n.buffer,0,n.length)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,o=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)o[i]=s[i]|128;return o[this.blockLength-1]=s[this.blockLength-1],o.buffer}let t=Vt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",We;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),o=t.byteLength-1;for(let i=0;i<o;i++)n[i]=s[i]|128;n[o]=s[o]}return n}toString(){let e="";if(this.isHexOnly)e=M.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}};Wr.NAME="sidBlock";var zn=class extends Ie{constructor({value:e=vr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let o=new Wr;if(s=o.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=o.error,s;this.value.length===0&&(o.isFirstSid=!0),this.blockLength+=o.blockLength,n-=o.blockLength,this.value.push(o)}return s}toBER(e){let t=[];for(let n=0;n<this.value.length;n++){let s=this.value[n].toBER(e);if(s.byteLength===0)return this.error=this.value[n].error,We;t.push(s)}return zo(t)}fromString(e){this.value=[];let t=0,n=0,s="",o=!1;do if(n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1,o){let i=this.value[0],a=0;switch(i.valueDec){case 0:break;case 1:a=40;break;case 2:a=80;break;default:this.value=[];return}let c=parseInt(s,10);if(isNaN(c))return;i.valueDec=c+a,o=!1}else{let i=new Wr;if(s>Number.MAX_SAFE_INTEGER){Ln();let a=BigInt(s);i.valueBigInt=a}else if(i.valueDec=parseInt(s,10),isNaN(i.valueDec))return;this.value.length||(i.isFirstSid=!0,o=!0),this.value.push(i)}while(n!==-1)}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t?(s=`{${s}}`,this.value[n].isFirstSid?e=`2.{${s} - 80}`:e+=s):e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};zn.NAME="ObjectIdentifierValueBlock";var ac,je=class extends we{constructor(e={}){super(e,zn),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};ac=je;I.ObjectIdentifier=ac;je.NAME="OBJECT IDENTIFIER";var Yr=class extends At(xt){constructor({valueDec:e=0,...t}={}){super(t),this.valueDec=e}fromBER(e,t,n){if(n===0)return t;let s=M.BufferSourceConverter.toUint8Array(e);if(!Bt(this,s,t,n))return-1;let o=s.subarray(t,t+n);this.valueHexView=new Uint8Array(n);for(let a=0;a<n&&(this.valueHexView[a]=o[a]&127,this.blockLength++,!!(o[a]&128));a++);let i=new Uint8Array(this.blockLength);for(let a=0;a<this.blockLength;a++)i[a]=this.valueHexView[a];return this.valueHexView=i,o[this.blockLength-1]&128?(this.error="End of input reached before message was fully decoded",-1):(this.valueHexView[0]===0&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=Qt(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),t+this.blockLength)}toBER(e){if(this.isHexOnly){if(e)return new ArrayBuffer(this.valueHexView.byteLength);let s=this.valueHexView,o=new Uint8Array(this.blockLength);for(let i=0;i<this.blockLength-1;i++)o[i]=s[i]|128;return o[this.blockLength-1]=s[this.blockLength-1],o.buffer}let t=Vt(this.valueDec,7);if(t.byteLength===0)return this.error="Error during encoding SID value",We;let n=new Uint8Array(t.byteLength);if(!e){let s=new Uint8Array(t),o=t.byteLength-1;for(let i=0;i<o;i++)n[i]=s[i]|128;n[o]=s[o]}return n.buffer}toString(){let e="";return this.isHexOnly?e=M.Convert.ToHex(this.valueHexView):e=this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}};Yr.NAME="relativeSidBlock";var jn=class extends Ie{constructor({value:e=vr,...t}={}){super(t),this.value=[],e&&this.fromString(e)}fromBER(e,t,n){let s=t;for(;n>0;){let o=new Yr;if(s=o.fromBER(e,s,n),s===-1)return this.blockLength=0,this.error=o.error,s;this.blockLength+=o.blockLength,n-=o.blockLength,this.value.push(o)}return s}toBER(e,t){let n=[];for(let s=0;s<this.value.length;s++){let o=this.value[s].toBER(e);if(o.byteLength===0)return this.error=this.value[s].error,We;n.push(o)}return zo(n)}fromString(e){this.value=[];let t=0,n=0,s="";do{n=e.indexOf(".",t),n===-1?s=e.substring(t):s=e.substring(t,n),t=n+1;let o=new Yr;if(o.valueDec=parseInt(s,10),isNaN(o.valueDec))return!0;this.value.push(o)}while(n!==-1);return!0}toString(){let e="",t=!1;for(let n=0;n<this.value.length;n++){t=this.value[n].isHexOnly;let s=this.value[n].toString();n!==0&&(e=`${e}.`),t&&(s=`{${s}}`),e+=s}return e}toJSON(){let e={...super.toJSON(),value:this.toString(),sidArray:[]};for(let t=0;t<this.value.length;t++)e.sidArray.push(this.value[t].toJSON());return e}};jn.NAME="RelativeObjectIdentifierValueBlock";var cc,Wn=class extends we{constructor(e={}){super(e,jn),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(e){this.valueBlock.fromString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}};cc=Wn;I.RelativeObjectIdentifier=cc;Wn.NAME="RelativeObjectIdentifier";var lc,ge=class extends Ot{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}};lc=ge;I.Sequence=lc;ge.NAME="SEQUENCE";var uc,Yn=class extends Ot{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}};uc=Yn;I.Set=uc;Yn.NAME="SET";var Zn=class extends At(Ie){constructor({...e}={}){super(e),this.isHexOnly=!0,this.value=vr}toJSON(){return{...super.toJSON(),value:this.value}}};Zn.NAME="StringValueBlock";var Jn=class extends Zn{};Jn.NAME="SimpleStringValueBlock";var Ne=class extends Vn{constructor({...e}={}){super(e,Jn)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,M.BufferSourceConverter.toUint8Array(e))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t);for(let s=0;s<t;s++)n[s]=e.charCodeAt(s);this.valueBlock.value=e}};Ne.NAME="SIMPLE STRING";var Xn=class extends Ne{fromBuffer(e){this.valueBlock.valueHexView=M.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=M.Convert.ToUtf8String(e)}catch(t){this.warnings.push(`Error during "decodeURIComponent": ${t}, using raw string`),this.valueBlock.value=M.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(M.Convert.FromUtf8String(e)),this.valueBlock.value=e}};Xn.NAME="Utf8StringValueBlock";var fc,Et=class extends Xn{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}};fc=Et;I.Utf8String=fc;Et.NAME="UTF8String";var Qn=class extends Ne{fromBuffer(e){this.valueBlock.value=M.Convert.ToUtf16String(e),this.valueBlock.valueHexView=M.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(M.Convert.FromUtf16String(e))}};Qn.NAME="BmpStringValueBlock";var hc,es=class extends Qn{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}};hc=es;I.BmpString=hc;es.NAME="BMPString";var ts=class extends Ne{fromBuffer(e){let t=ArrayBuffer.isView(e)?e.slice().buffer:e.slice(0),n=new Uint8Array(t);for(let s=0;s<n.length;s+=4)n[s]=n[s+3],n[s+1]=n[s+2],n[s+2]=0,n[s+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(t))}fromString(e){let t=e.length,n=this.valueBlock.valueHexView=new Uint8Array(t*4);for(let s=0;s<t;s++){let o=Vt(e.charCodeAt(s),8),i=new Uint8Array(o);if(i.length>4)continue;let a=4-i.length;for(let c=i.length-1;c>=0;c--)n[s*4+c+a]=i[c]}this.valueBlock.value=e}};ts.NAME="UniversalStringValueBlock";var dc,rs=class extends ts{constructor({...e}={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}};dc=rs;I.UniversalString=dc;rs.NAME="UniversalString";var pc,ns=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}};pc=ns;I.NumericString=pc;ns.NAME="NumericString";var gc,ss=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}};gc=ss;I.PrintableString=gc;ss.NAME="PrintableString";var mc,os=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}};mc=os;I.TeletexString=mc;os.NAME="TeletexString";var yc,is=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}};yc=is;I.VideotexString=yc;is.NAME="VideotexString";var bc,as=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}};bc=as;I.IA5String=bc;as.NAME="IA5String";var wc,cs=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}};wc=cs;I.GraphicString=wc;cs.NAME="GraphicString";var xc,Zr=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}};xc=Zr;I.VisibleString=xc;Zr.NAME="VisibleString";var vc,ls=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}};vc=ls;I.GeneralString=vc;ls.NAME="GeneralString";var Ec,us=class extends Ne{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}};Ec=us;I.CharacterString=Ec;us.NAME="CharacterString";var Bc,Jr=class extends Zr{constructor({value:e,valueDate:t,...n}={}){if(super(n),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,e){this.fromString(e),this.valueBlock.valueHexView=new Uint8Array(e.length);for(let s=0;s<e.length;s++)this.valueBlock.valueHexView[s]=e.charCodeAt(s)}t&&(this.fromDate(t),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,M.BufferSourceConverter.toUint8Array(e)))}toBuffer(){let e=this.toString(),t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let s=0;s<e.length;s++)n[s]=e.charCodeAt(s);return t}fromDate(e){this.year=e.getUTCFullYear(),this.month=e.getUTCMonth()+1,this.day=e.getUTCDate(),this.hour=e.getUTCHours(),this.minute=e.getUTCMinutes(),this.second=e.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(e){let n=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/ig.exec(e);if(n===null){this.error="Wrong input string for conversion";return}let s=parseInt(n[1],10);s>=50?this.year=1900+s:this.year=2e3+s,this.month=parseInt(n[2],10),this.day=parseInt(n[3],10),this.hour=parseInt(n[4],10),this.minute=parseInt(n[5],10),this.second=parseInt(n[6],10)}toString(e="iso"){if(e==="iso"){let t=new Array(7);return t[0]=Te(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=Te(this.month,2),t[2]=Te(this.day,2),t[3]=Te(this.hour,2),t[4]=Te(this.minute,2),t[5]=Te(this.second,2),t[6]="Z",t.join("")}return super.toString(e)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}};Bc=Jr;I.UTCTime=Bc;Jr.NAME="UTCTime";var Ac,fs=class extends Jr{constructor(e={}){var t;super(e),(t=this.millisecond)!==null&&t!==void 0||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(e){super.fromDate(e),this.millisecond=e.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(e){let t=!1,n="",s="",o=0,i,a=0,c=0;if(e[e.length-1]==="Z")n=e.substring(0,e.length-1),t=!0;else{let l=new Number(e[e.length-1]);if(isNaN(l.valueOf()))throw new Error("Wrong input string for conversion");n=e}if(t){if(n.indexOf("+")!==-1)throw new Error("Wrong input string for conversion");if(n.indexOf("-")!==-1)throw new Error("Wrong input string for conversion")}else{let l=1,d=n.indexOf("+"),y="";if(d===-1&&(d=n.indexOf("-"),l=-1),d!==-1){if(y=n.substring(d+1),n=n.substring(0,d),y.length!==2&&y.length!==4)throw new Error("Wrong input string for conversion");let p=parseInt(y.substring(0,2),10);if(isNaN(p.valueOf()))throw new Error("Wrong input string for conversion");if(a=l*p,y.length===4){if(p=parseInt(y.substring(2,4),10),isNaN(p.valueOf()))throw new Error("Wrong input string for conversion");c=l*p}}}let f=n.indexOf(".");if(f===-1&&(f=n.indexOf(",")),f!==-1){let l=new Number(`0${n.substring(f)}`);if(isNaN(l.valueOf()))throw new Error("Wrong input string for conversion");o=l.valueOf(),s=n.substring(0,f)}else s=n;switch(!0){case s.length===8:if(i=/(\d{4})(\d{2})(\d{2})/ig,f!==-1)throw new Error("Wrong input string for conversion");break;case s.length===10:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=60*o;this.minute=Math.floor(l),l=60*(l-this.minute),this.second=Math.floor(l),l=1e3*(l-this.second),this.millisecond=Math.floor(l)}break;case s.length===12:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=60*o;this.second=Math.floor(l),l=1e3*(l-this.second),this.millisecond=Math.floor(l)}break;case s.length===14:if(i=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/ig,f!==-1){let l=1e3*o;this.millisecond=Math.floor(l)}break;default:throw new Error("Wrong input string for conversion")}let u=i.exec(s);if(u===null)throw new Error("Wrong input string for conversion");for(let l=1;l<u.length;l++)switch(l){case 1:this.year=parseInt(u[l],10);break;case 2:this.month=parseInt(u[l],10);break;case 3:this.day=parseInt(u[l],10);break;case 4:this.hour=parseInt(u[l],10)+a;break;case 5:this.minute=parseInt(u[l],10)+c;break;case 6:this.second=parseInt(u[l],10);break;default:throw new Error("Wrong input string for conversion")}if(t===!1){let l=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=l.getUTCFullYear(),this.month=l.getUTCMonth(),this.day=l.getUTCDay(),this.hour=l.getUTCHours(),this.minute=l.getUTCMinutes(),this.second=l.getUTCSeconds(),this.millisecond=l.getUTCMilliseconds()}}toString(e="iso"){if(e==="iso"){let t=[];return t.push(Te(this.year,4)),t.push(Te(this.month,2)),t.push(Te(this.day,2)),t.push(Te(this.hour,2)),t.push(Te(this.minute,2)),t.push(Te(this.second,2)),this.millisecond!==0&&(t.push("."),t.push(Te(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(e)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}};Ac=fs;I.GeneralizedTime=Ac;fs.NAME="GeneralizedTime";var Ic,hs=class extends Et{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}};Ic=hs;I.DATE=Ic;hs.NAME="DATE";var Sc,ds=class extends Et{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}};Sc=ds;I.TimeOfDay=Sc;ds.NAME="TimeOfDay";var kc,ps=class extends Et{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}};kc=ps;I.DateTime=kc;ps.NAME="DateTime";var Nc,gs=class extends Et{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}};Nc=gs;I.Duration=Nc;gs.NAME="Duration";var Rc,ms=class extends Et{constructor(e={}){super(e),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}};Rc=ms;I.TIME=Rc;ms.NAME="TIME";function Jh(r){let{result:e}=Er(r),t=e.valueBlock.value;return{n:K(st(t[1].toBigInt()),"base64url"),e:K(st(t[2].toBigInt()),"base64url"),d:K(st(t[3].toBigInt()),"base64url"),p:K(st(t[4].toBigInt()),"base64url"),q:K(st(t[5].toBigInt()),"base64url"),dp:K(st(t[6].toBigInt()),"base64url"),dq:K(st(t[7].toBigInt()),"base64url"),qi:K(st(t[8].toBigInt()),"base64url"),kty:"RSA",alg:"RS256"}}function Xh(r){if(r.n==null||r.e==null||r.d==null||r.p==null||r.q==null||r.dp==null||r.dq==null||r.qi==null)throw new C("JWK was missing components","ERR_INVALID_PARAMETERS");let t=new ge({value:[new le({value:0}),le.fromBigInt(ot(F(r.n,"base64url"))),le.fromBigInt(ot(F(r.e,"base64url"))),le.fromBigInt(ot(F(r.d,"base64url"))),le.fromBigInt(ot(F(r.p,"base64url"))),le.fromBigInt(ot(F(r.q,"base64url"))),le.fromBigInt(ot(F(r.dp,"base64url"))),le.fromBigInt(ot(F(r.dq,"base64url"))),le.fromBigInt(ot(F(r.qi,"base64url")))]}).toBER();return new Uint8Array(t,0,t.byteLength)}function Qh(r){let{result:e}=Er(r),t=e.valueBlock.value[1].valueBlock.value[0].valueBlock.value;return{kty:"RSA",n:K(st(t[0].toBigInt()),"base64url"),e:K(st(t[1].toBigInt()),"base64url")}}function ed(r){if(r.n==null||r.e==null)throw new C("JWK was missing components","ERR_INVALID_PARAMETERS");let t=new ge({value:[new ge({value:[new je({value:"1.2.840.113549.1.1.1"}),new Dt]}),new xr({valueHex:new ge({value:[le.fromBigInt(ot(F(r.n,"base64url"))),le.fromBigInt(ot(F(r.e,"base64url")))]}).toBER()})]}).toBER();return new Uint8Array(t,0,t.byteLength)}function st(r){let e=r.toString(16);e.length%2>0&&(e=`0${e}`);let t=e.length/2,n=new Uint8Array(t),s=0,o=0;for(;s<t;)n[s]=parseInt(e.slice(o,o+2),16),s+=1,o+=2;return n}function ot(r){let e=[];return r.forEach(function(t){let n=t.toString(16);n.length%2>0&&(n=`0${n}`),e.push(n)}),BigInt("0x"+e.join(""))}var td=16,Wo=32,Yo=1e4;async function rd(r,e){let t=ke.get(),s=new ge({value:[new le({value:0}),new ge({value:[new je({value:"1.2.840.113549.1.1.1"}),new Dt]}),new vt({valueHex:r.marshal()})]}).toBER(),o=new Uint8Array(s,0,s.byteLength),i=Xt(td),a=await qo(Or,e,i,{c:Yo,dkLen:Wo}),c=Xt(16),f=await t.subtle.importKey("raw",a,"AES-CBC",!1,["encrypt"]),u=await t.subtle.encrypt({name:"AES-CBC",iv:c},f,o),l=new ge({value:[new vt({valueHex:i}),new le({value:Yo}),new le({value:Wo}),new ge({value:[new je({value:"1.2.840.113549.2.11"}),new Dt]})]}),d=new ge({value:[new je({value:"1.2.840.113549.1.5.13"}),new ge({value:[new ge({value:[new je({value:"1.2.840.113549.1.5.12"}),l]}),new ge({value:[new je({value:"2.16.840.1.101.3.4.1.42"}),new vt({valueHex:c})]})]})]}),p=new ge({value:[d,new vt({valueHex:u})]}).toBER(),h=new Uint8Array(p,0,p.byteLength);return["-----BEGIN ENCRYPTED PRIVATE KEY-----",...K(h,"base64pad").split(/(.{64})/).filter(Boolean),"-----END ENCRYPTED PRIVATE KEY-----"].join(`
|
|
7
|
+
`)}async function nd(r,e){let t=ke.get(),n;if(r.includes("-----BEGIN ENCRYPTED PRIVATE KEY-----")){let s=F(r.replace("-----BEGIN ENCRYPTED PRIVATE KEY-----","").replace("-----END ENCRYPTED PRIVATE KEY-----","").replace(/\n/g,"").trim(),"base64pad"),{result:o}=Er(s),{iv:i,salt:a,iterations:c,keySize:f,cipherText:u}=sd(o),l=await qo(Or,e,a,{c,dkLen:f}),d=await t.subtle.importKey("raw",l,"AES-CBC",!1,["decrypt"]),y=Xr(await t.subtle.decrypt({name:"AES-CBC",iv:i},d,u)),{result:p}=Er(y);n=Tc(p)}else if(r.includes("-----BEGIN PRIVATE KEY-----")){let s=F(r.replace("-----BEGIN PRIVATE KEY-----","").replace("-----END PRIVATE KEY-----","").replace(/\n/g,"").trim(),"base64pad"),{result:o}=Er(s);n=Tc(o)}else throw new C("Could not parse private key from PEM data","ERR_INVALID_PARAMETERS");return Zo(n)}function sd(r){let e=r.valueBlock.value[0];if(e.valueBlock.value[0].toString()!=="OBJECT IDENTIFIER : 1.2.840.113549.1.5.13")throw new C("Only pkcs5PBES2 encrypted private keys are supported","ERR_INVALID_PARAMS");let n=e.valueBlock.value[1].valueBlock.value[0];if(n.valueBlock.value[0].toString()!=="OBJECT IDENTIFIER : 1.2.840.113549.1.5.12")throw new C("Only pkcs5PBKDF2 key derivation functions are supported","ERR_INVALID_PARAMS");let o=n.valueBlock.value[1],i=Xr(o.valueBlock.value[0].getValue()),a=Yo,c=Wo;if(o.valueBlock.value.length===3)a=Number(o.valueBlock.value[1].toBigInt()),c=Number(o.valueBlock.value[2].toBigInt());else if(o.valueBlock.value.length===2)throw new C("Could not derive key size and iterations from PEM file - please use @libp2p/rsa to re-import your key","ERR_INVALID_PARAMS");let f=e.valueBlock.value[1].valueBlock.value[1],u=f.valueBlock.value[0].toString();if(u!=="OBJECT IDENTIFIER : 1.2.840.113549.3.7"){if(u!=="OBJECT IDENTIFIER : 1.3.14.3.2.7"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.2"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.22"){if(u!=="OBJECT IDENTIFIER : 2.16.840.1.101.3.4.1.42")throw new C("Only AES-CBC encryption schemes are supported","ERR_INVALID_PARAMS")}}}}let l=Xr(f.valueBlock.value[1].getValue());return{cipherText:Xr(r.valueBlock.value[1].getValue()),salt:i,iterations:a,keySize:c,iv:l}}function Tc(r){return Xr(r.valueBlock.value[2].getValue())}function Xr(r){return new Uint8Array(r,0,r.byteLength)}async function _c(r){let e=await ke.get().subtle.generateKey({name:"RSASSA-PKCS1-v1_5",modulusLength:r,publicExponent:new Uint8Array([1,0,1]),hash:{name:"SHA-256"}},!0,["sign","verify"]),t=await Uc(e);return{privateKey:t[0],publicKey:t[1]}}async function Jo(r){let t=[await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!0,["sign"]),await od(r)],n=await Uc({privateKey:t[0],publicKey:t[1]});return{privateKey:n[0],publicKey:n[1]}}async function Cc(r,e){let t=await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["sign"]),n=await ke.get().subtle.sign({name:"RSASSA-PKCS1-v1_5"},t,e instanceof Uint8Array?e:e.subarray());return new Uint8Array(n,0,n.byteLength)}async function Lc(r,e,t){let n=await ke.get().subtle.importKey("jwk",r,{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!1,["verify"]);return ke.get().subtle.verify({name:"RSASSA-PKCS1-v1_5"},n,e,t instanceof Uint8Array?t:t.subarray())}async function Uc(r){if(r.privateKey==null||r.publicKey==null)throw new C("Private and public key are required","ERR_INVALID_PARAMETERS");return Promise.all([ke.get().subtle.exportKey("jwk",r.privateKey),ke.get().subtle.exportKey("jwk",r.publicKey)])}async function od(r){return ke.get().subtle.importKey("jwk",{kty:r.kty,n:r.n,e:r.e},{name:"RSASSA-PKCS1-v1_5",hash:{name:"SHA-256"}},!0,["verify"])}function bs(r){if(r.kty!=="RSA")throw new C("invalid key type","ERR_INVALID_KEY_TYPE");if(r.n==null)throw new C("invalid key modulus","ERR_INVALID_KEY_MODULUS");return F(r.n,"base64url").length*8}var en=8192,Qr=class{_key;constructor(e){this._key=e}verify(e,t){return Lc(this._key,t,e)}marshal(){return Mt.jwkToPkix(this._key)}get bytes(){return tt.encode({Type:ee.RSA,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Pe(e)?e.then(({bytes:t})=>t):e.bytes}},Br=class{_key;_publicKey;constructor(e,t){this._key=e,this._publicKey=t}genSecret(){return Xt(16)}sign(e){return Cc(this._key,e)}get public(){if(this._publicKey==null)throw new C("public key not provided","ERR_PUBKEY_NOT_PROVIDED");return new Qr(this._publicKey)}marshal(){return Mt.jwkToPkcs1(this._key)}get bytes(){return rt.encode({Type:ee.RSA,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Pe(e)?e.then(({bytes:t})=>t):e.bytes}async id(){let e=await this.public.hash();return K(e,"base58btc")}async export(e,t="pkcs-8"){if(t==="pkcs-8")return Mt.exportToPem(this,e);if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};async function Zo(r){let e=Mt.pkcs1ToJwk(r);if(bs(e)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let t=await Jo(e);return new Br(t.privateKey,t.publicKey)}function ad(r){let e=Mt.pkixToJwk(r);if(bs(e)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");return new Qr(e)}async function cd(r){if(bs(r)>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let e=await Jo(r);return new Br(e.privateKey,e.publicKey)}async function ld(r){if(r>en)throw new C("key size is too large","ERR_KEY_SIZE_TOO_LARGE");let e=await _c(r);return new Br(e.privateKey,e.publicKey)}var ni={};de(ni,{Secp256k1PrivateKey:()=>rn,Secp256k1PublicKey:()=>tn,generateKeyPair:()=>Ed,unmarshalSecp256k1PrivateKey:()=>xd,unmarshalSecp256k1PublicKey:()=>vd});var ud=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),Ht=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),Ft=new Uint32Array(64),Qo=class extends hr{constructor(){super(64,32,8,!1),this.A=Ht[0]|0,this.B=Ht[1]|0,this.C=Ht[2]|0,this.D=Ht[3]|0,this.E=Ht[4]|0,this.F=Ht[5]|0,this.G=Ht[6]|0,this.H=Ht[7]|0}get(){let{A:e,B:t,C:n,D:s,E:o,F:i,G:a,H:c}=this;return[e,t,n,s,o,i,a,c]}set(e,t,n,s,o,i,a,c){this.A=e|0,this.B=t|0,this.C=n|0,this.D=s|0,this.E=o|0,this.F=i|0,this.G=a|0,this.H=c|0}process(e,t){for(let l=0;l<16;l++,t+=4)Ft[l]=e.getUint32(t,!1);for(let l=16;l<64;l++){let d=Ft[l-15],y=Ft[l-2],p=Fe(d,7)^Fe(d,18)^d>>>3,h=Fe(y,17)^Fe(y,19)^y>>>10;Ft[l]=h+Ft[l-7]+p+Ft[l-16]|0}let{A:n,B:s,C:o,D:i,E:a,F:c,G:f,H:u}=this;for(let l=0;l<64;l++){let d=Fe(a,6)^Fe(a,11)^Fe(a,25),y=u+d+da(a,c,f)+ud[l]+Ft[l]|0,h=(Fe(n,2)^Fe(n,13)^Fe(n,22))+pa(n,s,o)|0;u=f,f=c,c=a,a=i+y|0,i=o,o=s,s=n,n=y+h|0}n=n+this.A|0,s=s+this.B|0,o=o+this.C|0,i=i+this.D|0,a=a+this.E|0,c=c+this.F|0,f=f+this.G|0,u=u+this.H|0,this.set(n,s,o,i,a,c,f,u)}roundClean(){Ft.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}};var Pc=gn(()=>new Qo);function fd(r){let e=Mr(r);et(e,{a:"field",b:"field"},{allowedPrivateKeyLengths:"array",wrapPrivateKey:"boolean",isTorsionFree:"function",clearCofactor:"function",allowInfinityPoint:"boolean",fromBytes:"function",toBytes:"function"});let{endo:t,Fp:n,a:s}=e;if(t){if(!n.eql(s,n.ZERO))throw new Error("Endomorphism can only be defined for Koblitz curves that have a=0");if(typeof t!="object"||typeof t.beta!="bigint"||typeof t.splitScalar!="function")throw new Error("Expected endomorphism with beta: bigint and splitScalar: function")}return Object.freeze({...e})}var{bytesToNumberBE:hd,hexToBytes:dd}=bn,er={Err:class extends Error{constructor(e=""){super(e)}},_parseInt(r){let{Err:e}=er;if(r.length<2||r[0]!==2)throw new e("Invalid signature integer tag");let t=r[1],n=r.subarray(2,t+2);if(!t||n.length!==t)throw new e("Invalid signature integer: wrong length");if(n[0]&128)throw new e("Invalid signature integer: negative");if(n[0]===0&&!(n[1]&128))throw new e("Invalid signature integer: unnecessary leading zero");return{d:hd(n),l:r.subarray(t+2)}},toSig(r){let{Err:e}=er,t=typeof r=="string"?dd(r):r;dr(t);let n=t.length;if(n<2||t[0]!=48)throw new e("Invalid signature tag");if(t[1]!==n-2)throw new e("Invalid signature: incorrect length");let{d:s,l:o}=er._parseInt(t.subarray(2)),{d:i,l:a}=er._parseInt(o);if(a.length)throw new e("Invalid signature: left bytes after parsing");return{r:s,s:i}},hexFromSig(r){let e=f=>Number.parseInt(f[0],16)&8?"00"+f:f,t=f=>{let u=f.toString(16);return u.length&1?`0${u}`:u},n=e(t(r.s)),s=e(t(r.r)),o=n.length/2,i=s.length/2,a=t(o),c=t(i);return`30${t(i+o+4)}02${c}${s}02${a}${n}`}},It=BigInt(0),De=BigInt(1),$m=BigInt(2),Vc=BigInt(3),Gm=BigInt(4);function pd(r){let e=fd(r),{Fp:t}=e,n=e.toBytes||((p,h,g)=>{let b=h.toAffine();return mt(Uint8Array.from([4]),t.toBytes(b.x),t.toBytes(b.y))}),s=e.fromBytes||(p=>{let h=p.subarray(1),g=t.fromBytes(h.subarray(0,t.BYTES)),b=t.fromBytes(h.subarray(t.BYTES,2*t.BYTES));return{x:g,y:b}});function o(p){let{a:h,b:g}=e,b=t.sqr(p),B=t.mul(b,p);return t.add(t.add(B,t.mul(p,h)),g)}if(!t.eql(t.sqr(e.Gy),o(e.Gx)))throw new Error("bad generator point: equation left != right");function i(p){return typeof p=="bigint"&&It<p&&p<e.n}function a(p){if(!i(p))throw new Error("Expected valid bigint: 0 < bigint < curve.n")}function c(p){let{allowedPrivateKeyLengths:h,nByteLength:g,wrapPrivateKey:b,n:B}=e;if(h&&typeof p!="bigint"){if(Ct(p)&&(p=pt(p)),typeof p!="string"||!h.includes(p.length))throw new Error("Invalid key");p=p.padStart(g*2,"0")}let w;try{w=typeof p=="bigint"?p:gt(ne("private key",p,g))}catch{throw new Error(`private key must be ${g} bytes, hex or bigint, not ${typeof p}`)}return b&&(w=Z(w,B)),a(w),w}let f=new Map;function u(p){if(!(p instanceof l))throw new Error("ProjectivePoint expected")}class l{constructor(h,g,b){if(this.px=h,this.py=g,this.pz=b,h==null||!t.isValid(h))throw new Error("x required");if(g==null||!t.isValid(g))throw new Error("y required");if(b==null||!t.isValid(b))throw new Error("z required")}static fromAffine(h){let{x:g,y:b}=h||{};if(!h||!t.isValid(g)||!t.isValid(b))throw new Error("invalid affine point");if(h instanceof l)throw new Error("projective point not allowed");let B=w=>t.eql(w,t.ZERO);return B(g)&&B(b)?l.ZERO:new l(g,b,t.ONE)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}static normalizeZ(h){let g=t.invertBatch(h.map(b=>b.pz));return h.map((b,B)=>b.toAffine(g[B])).map(l.fromAffine)}static fromHex(h){let g=l.fromAffine(s(ne("pointHex",h)));return g.assertValidity(),g}static fromPrivateKey(h){return l.BASE.multiply(c(h))}_setWindowSize(h){this._WINDOW_SIZE=h,f.delete(this)}assertValidity(){if(this.is0()){if(e.allowInfinityPoint&&!t.is0(this.py))return;throw new Error("bad point: ZERO")}let{x:h,y:g}=this.toAffine();if(!t.isValid(h)||!t.isValid(g))throw new Error("bad point: x or y not FE");let b=t.sqr(g),B=o(h);if(!t.eql(b,B))throw new Error("bad point: equation left != right");if(!this.isTorsionFree())throw new Error("bad point: not in prime-order subgroup")}hasEvenY(){let{y:h}=this.toAffine();if(t.isOdd)return!t.isOdd(h);throw new Error("Field doesn't support isOdd")}equals(h){u(h);let{px:g,py:b,pz:B}=this,{px:w,py:T,pz:x}=h,A=t.eql(t.mul(g,x),t.mul(w,B)),N=t.eql(t.mul(b,x),t.mul(T,B));return A&&N}negate(){return new l(this.px,t.neg(this.py),this.pz)}double(){let{a:h,b:g}=e,b=t.mul(g,Vc),{px:B,py:w,pz:T}=this,x=t.ZERO,A=t.ZERO,N=t.ZERO,R=t.mul(B,B),W=t.mul(w,w),q=t.mul(T,T),P=t.mul(B,w);return P=t.add(P,P),N=t.mul(B,T),N=t.add(N,N),x=t.mul(h,N),A=t.mul(b,q),A=t.add(x,A),x=t.sub(W,A),A=t.add(W,A),A=t.mul(x,A),x=t.mul(P,x),N=t.mul(b,N),q=t.mul(h,q),P=t.sub(R,q),P=t.mul(h,P),P=t.add(P,N),N=t.add(R,R),R=t.add(N,R),R=t.add(R,q),R=t.mul(R,P),A=t.add(A,R),q=t.mul(w,T),q=t.add(q,q),R=t.mul(q,P),x=t.sub(x,R),N=t.mul(q,W),N=t.add(N,N),N=t.add(N,N),new l(x,A,N)}add(h){u(h);let{px:g,py:b,pz:B}=this,{px:w,py:T,pz:x}=h,A=t.ZERO,N=t.ZERO,R=t.ZERO,W=e.a,q=t.mul(e.b,Vc),P=t.mul(g,w),ae=t.mul(b,T),se=t.mul(B,x),Ue=t.add(g,b),v=t.add(w,T);Ue=t.mul(Ue,v),v=t.add(P,ae),Ue=t.sub(Ue,v),v=t.add(g,B);let k=t.add(w,x);return v=t.mul(v,k),k=t.add(P,se),v=t.sub(v,k),k=t.add(b,B),A=t.add(T,x),k=t.mul(k,A),A=t.add(ae,se),k=t.sub(k,A),R=t.mul(W,v),A=t.mul(q,se),R=t.add(A,R),A=t.sub(ae,R),R=t.add(ae,R),N=t.mul(A,R),ae=t.add(P,P),ae=t.add(ae,P),se=t.mul(W,se),v=t.mul(q,v),ae=t.add(ae,se),se=t.sub(P,se),se=t.mul(W,se),v=t.add(v,se),P=t.mul(ae,v),N=t.add(N,P),P=t.mul(k,v),A=t.mul(Ue,A),A=t.sub(A,P),P=t.mul(Ue,ae),R=t.mul(k,R),R=t.add(R,P),new l(A,N,R)}subtract(h){return this.add(h.negate())}is0(){return this.equals(l.ZERO)}wNAF(h){return y.wNAFCached(this,f,h,g=>{let b=t.invertBatch(g.map(B=>B.pz));return g.map((B,w)=>B.toAffine(b[w])).map(l.fromAffine)})}multiplyUnsafe(h){let g=l.ZERO;if(h===It)return g;if(a(h),h===De)return this;let{endo:b}=e;if(!b)return y.unsafeLadder(this,h);let{k1neg:B,k1:w,k2neg:T,k2:x}=b.splitScalar(h),A=g,N=g,R=this;for(;w>It||x>It;)w&De&&(A=A.add(R)),x&De&&(N=N.add(R)),R=R.double(),w>>=De,x>>=De;return B&&(A=A.negate()),T&&(N=N.negate()),N=new l(t.mul(N.px,b.beta),N.py,N.pz),A.add(N)}multiply(h){a(h);let g=h,b,B,{endo:w}=e;if(w){let{k1neg:T,k1:x,k2neg:A,k2:N}=w.splitScalar(g),{p:R,f:W}=this.wNAF(x),{p:q,f:P}=this.wNAF(N);R=y.constTimeNegate(T,R),q=y.constTimeNegate(A,q),q=new l(t.mul(q.px,w.beta),q.py,q.pz),b=R.add(q),B=W.add(P)}else{let{p:T,f:x}=this.wNAF(g);b=T,B=x}return l.normalizeZ([b,B])[0]}multiplyAndAddUnsafe(h,g,b){let B=l.BASE,w=(x,A)=>A===It||A===De||!x.equals(B)?x.multiplyUnsafe(A):x.multiply(A),T=w(this,g).add(w(h,b));return T.is0()?void 0:T}toAffine(h){let{px:g,py:b,pz:B}=this,w=this.is0();h==null&&(h=w?t.ONE:t.inv(B));let T=t.mul(g,h),x=t.mul(b,h),A=t.mul(B,h);if(w)return{x:t.ZERO,y:t.ZERO};if(!t.eql(A,t.ONE))throw new Error("invZ was invalid");return{x:T,y:x}}isTorsionFree(){let{h,isTorsionFree:g}=e;if(h===De)return!0;if(g)return g(l,this);throw new Error("isTorsionFree() has not been declared for the elliptic curve")}clearCofactor(){let{h,clearCofactor:g}=e;return h===De?this:g?g(l,this):this.multiplyUnsafe(e.h)}toRawBytes(h=!0){return this.assertValidity(),n(l,this,h)}toHex(h=!0){return pt(this.toRawBytes(h))}}l.BASE=new l(e.Gx,e.Gy,t.ONE),l.ZERO=new l(t.ZERO,t.ONE,t.ZERO);let d=e.nBitLength,y=vn(l,e.endo?Math.ceil(d/2):d);return{CURVE:e,ProjectivePoint:l,normPrivateKeyToScalar:c,weierstrassEquation:o,isWithinCurveOrder:i}}function gd(r){let e=Mr(r);return et(e,{hash:"hash",hmac:"function",randomBytes:"function"},{bits2int:"function",bits2int_modN:"function",lowS:"boolean"}),Object.freeze({lowS:!0,...e})}function Oc(r){let e=gd(r),{Fp:t,n}=e,s=t.BYTES+1,o=2*t.BYTES+1;function i(v){return It<v&&v<t.ORDER}function a(v){return Z(v,n)}function c(v){return wn(v,n)}let{ProjectivePoint:f,normPrivateKeyToScalar:u,weierstrassEquation:l,isWithinCurveOrder:d}=pd({...e,toBytes(v,k,V){let E=k.toAffine(),m=t.toBytes(E.x),S=mt;return V?S(Uint8Array.from([k.hasEvenY()?2:3]),m):S(Uint8Array.from([4]),m,t.toBytes(E.y))},fromBytes(v){let k=v.length,V=v[0],E=v.subarray(1);if(k===s&&(V===2||V===3)){let m=gt(E);if(!i(m))throw new Error("Point is not on curve");let S=l(m),_;try{_=t.sqrt(S)}catch(D){let G=D instanceof Error?": "+D.message:"";throw new Error("Point is not on curve"+G)}let L=(_&De)===De;return(V&1)===1!==L&&(_=t.neg(_)),{x:m,y:_}}else if(k===o&&V===4){let m=t.fromBytes(E.subarray(0,t.BYTES)),S=t.fromBytes(E.subarray(t.BYTES,2*t.BYTES));return{x:m,y:S}}else throw new Error(`Point of length ${k} was invalid. Expected ${s} compressed bytes or ${o} uncompressed bytes`)}}),y=v=>pt(Ut(v,e.nByteLength));function p(v){let k=n>>De;return v>k}function h(v){return p(v)?a(-v):v}let g=(v,k,V)=>gt(v.slice(k,V));class b{constructor(k,V,E){this.r=k,this.s=V,this.recovery=E,this.assertValidity()}static fromCompact(k){let V=e.nByteLength;return k=ne("compactSignature",k,V*2),new b(g(k,0,V),g(k,V,2*V))}static fromDER(k){let{r:V,s:E}=er.toSig(ne("DER",k));return new b(V,E)}assertValidity(){if(!d(this.r))throw new Error("r must be 0 < r < CURVE.n");if(!d(this.s))throw new Error("s must be 0 < s < CURVE.n")}addRecoveryBit(k){return new b(this.r,this.s,k)}recoverPublicKey(k){let{r:V,s:E,recovery:m}=this,S=N(ne("msgHash",k));if(m==null||![0,1,2,3].includes(m))throw new Error("recovery id invalid");let _=m===2||m===3?V+e.n:V;if(_>=t.ORDER)throw new Error("recovery id 2 or 3 invalid");let L=m&1?"03":"02",O=f.fromHex(L+y(_)),D=c(_),G=a(-S*D),H=a(E*D),$=f.BASE.multiplyAndAddUnsafe(O,G,H);if(!$)throw new Error("point at infinify");return $.assertValidity(),$}hasHighS(){return p(this.s)}normalizeS(){return this.hasHighS()?new b(this.r,a(-this.s),this.recovery):this}toDERRawBytes(){return zt(this.toDERHex())}toDERHex(){return er.hexFromSig({r:this.r,s:this.s})}toCompactRawBytes(){return zt(this.toCompactHex())}toCompactHex(){return y(this.r)+y(this.s)}}let B={isValidPrivateKey(v){try{return u(v),!0}catch{return!1}},normPrivateKeyToScalar:u,randomPrivateKey:()=>{let v=wo(e.n);return Aa(e.randomBytes(v),e.n)},precompute(v=8,k=f.BASE){return k._setWindowSize(v),k.multiply(BigInt(3)),k}};function w(v,k=!0){return f.fromPrivateKey(v).toRawBytes(k)}function T(v){let k=Ct(v),V=typeof v=="string",E=(k||V)&&v.length;return k?E===s||E===o:V?E===2*s||E===2*o:v instanceof f}function x(v,k,V=!0){if(T(v))throw new Error("first arg must be private key");if(!T(k))throw new Error("second arg must be public key");return f.fromHex(k).multiply(u(v)).toRawBytes(V)}let A=e.bits2int||function(v){let k=gt(v),V=v.length*8-e.nBitLength;return V>0?k>>BigInt(V):k},N=e.bits2int_modN||function(v){return a(A(v))},R=Dr(e.nBitLength);function W(v){if(typeof v!="bigint")throw new Error("bigint expected");if(!(It<=v&&v<R))throw new Error(`bigint expected < 2^${e.nBitLength}`);return Ut(v,e.nByteLength)}function q(v,k,V=P){if(["recovered","canonical"].some(te=>te in V))throw new Error("sign() legacy options not supported");let{hash:E,randomBytes:m}=e,{lowS:S,prehash:_,extraEntropy:L}=V;S==null&&(S=!0),v=ne("msgHash",v),_&&(v=ne("prehashed msgHash",E(v)));let O=N(v),D=u(k),G=[W(D),W(O)];if(L!=null&&L!==!1){let te=L===!0?m(t.BYTES):L;G.push(ne("extraEntropy",te))}let H=mt(...G),$=O;function ce(te){let me=A(te);if(!d(me))return;let ye=c(me),ue=f.BASE.multiply(me).toAffine(),ve=a(ue.x);if(ve===It)return;let lt=a(ye*a($+ve*D));if(lt===It)return;let qt=(ue.x===ve?0:2)|Number(ue.y&De),Cr=lt;return S&&p(lt)&&(Cr=h(lt),qt^=1),new b(ve,Cr,qt)}return{seed:H,k2sig:ce}}let P={lowS:e.lowS,prehash:!1},ae={lowS:e.lowS,prehash:!1};function se(v,k,V=P){let{seed:E,k2sig:m}=q(v,k,V),S=e;return go(S.hash.outputLen,S.nByteLength,S.hmac)(E,m)}f.BASE._setWindowSize(8);function Ue(v,k,V,E=ae){let m=v;if(k=ne("msgHash",k),V=ne("publicKey",V),"strict"in E)throw new Error("options.strict was renamed to lowS");let{lowS:S,prehash:_}=E,L,O;try{if(typeof m=="string"||Ct(m))try{L=b.fromDER(m)}catch(ue){if(!(ue instanceof er.Err))throw ue;L=b.fromCompact(m)}else if(typeof m=="object"&&typeof m.r=="bigint"&&typeof m.s=="bigint"){let{r:ue,s:ve}=m;L=new b(ue,ve)}else throw new Error("PARSE");O=f.fromHex(V)}catch(ue){if(ue.message==="PARSE")throw new Error("signature must be Signature instance, Uint8Array or hex string");return!1}if(S&&L.hasHighS())return!1;_&&(k=e.hash(k));let{r:D,s:G}=L,H=N(k),$=c(G),ce=a(H*$),te=a(D*$),me=f.BASE.multiplyAndAddUnsafe(O,ce,te)?.toAffine();return me?a(me.x)===D:!1}return{CURVE:e,getPublicKey:w,getSharedSecret:x,sign:se,verify:Ue,ProjectivePoint:f,Signature:b,utils:B}}function md(r){return{hash:r,hmac:(e,...t)=>qr(r,e,lo(...t)),randomBytes:fr}}function Dc(r,e){let t=n=>Oc({...r,...md(n)});return Object.freeze({...t(e),create:t})}var Fc=BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),Mc=BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"),yd=BigInt(1),ei=BigInt(2),Hc=(r,e)=>(r+e/ei)/e;function bd(r){let e=Fc,t=BigInt(3),n=BigInt(6),s=BigInt(11),o=BigInt(22),i=BigInt(23),a=BigInt(44),c=BigInt(88),f=r*r*r%e,u=f*f*r%e,l=Q(u,t,e)*u%e,d=Q(l,t,e)*u%e,y=Q(d,ei,e)*f%e,p=Q(y,s,e)*y%e,h=Q(p,o,e)*p%e,g=Q(h,a,e)*h%e,b=Q(g,c,e)*g%e,B=Q(b,a,e)*h%e,w=Q(B,t,e)*u%e,T=Q(w,i,e)*p%e,x=Q(T,n,e)*f%e,A=Q(x,ei,e);if(!ti.eql(ti.sqr(A),r))throw new Error("Cannot find square root");return A}var ti=xn(Fc,void 0,void 0,{sqrt:bd}),Ye=Dc({a:BigInt(0),b:BigInt(7),Fp:ti,n:Mc,Gx:BigInt("55066263022277343669578718895168534326250603453777594175500187360389116729240"),Gy:BigInt("32670510020758816978083085130507043184471273380659243275938904335757337482424"),h:BigInt(1),lowS:!0,endo:{beta:BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),splitScalar:r=>{let e=Mc,t=BigInt("0x3086d221a7d46bcde86c90e49284eb15"),n=-yd*BigInt("0xe4437ed6010e88286f547fa90abfe4c3"),s=BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),o=t,i=BigInt("0x100000000000000000000000000000000"),a=Hc(o*r,e),c=Hc(-n*r,e),f=Z(r-a*t-c*s,e),u=Z(-a*n-c*o,e),l=f>i,d=u>i;if(l&&(f=e-f),d&&(u=e-u),f>i||u>i)throw new Error("splitScalar: Endomorphism failed, k="+r);return{k1neg:l,k1:f,k2neg:d,k2:u}}}},Pc),ey=BigInt(0);var ty=Ye.ProjectivePoint;function Kc(){return Ye.utils.randomPrivateKey()}function qc(r,e){let t=be.digest(e instanceof Uint8Array?e:e.subarray());if(Pe(t))return t.then(({digest:n})=>Ye.sign(n,r).toDERRawBytes()).catch(n=>{throw new C(String(n),"ERR_INVALID_INPUT")});try{return Ye.sign(t.digest,r).toDERRawBytes()}catch(n){throw new C(String(n),"ERR_INVALID_INPUT")}}function $c(r,e,t){let n=be.digest(t instanceof Uint8Array?t:t.subarray());if(Pe(n))return n.then(({digest:s})=>Ye.verify(e,s,r)).catch(s=>{throw new C(String(s),"ERR_INVALID_INPUT")});try{return Ye.verify(e,n.digest,r)}catch(s){throw new C(String(s),"ERR_INVALID_INPUT")}}function Gc(r){return Ye.ProjectivePoint.fromHex(r).toRawBytes(!0)}function zc(r){try{Ye.getPublicKey(r,!0)}catch(e){throw new C(String(e),"ERR_INVALID_PRIVATE_KEY")}}function ri(r){try{Ye.ProjectivePoint.fromHex(r)}catch(e){throw new C(String(e),"ERR_INVALID_PUBLIC_KEY")}}function jc(r){try{return Ye.getPublicKey(r,!0)}catch(e){throw new C(String(e),"ERR_INVALID_PRIVATE_KEY")}}var tn=class{_key;constructor(e){ri(e),this._key=e}verify(e,t){return $c(this._key,t,e)}marshal(){return Gc(this._key)}get bytes(){return tt.encode({Type:ee.Secp256k1,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}async hash(){let e=be.digest(this.bytes),t;return Pe(e)?{bytes:t}=await e:t=e.bytes,t}},rn=class{_key;_publicKey;constructor(e,t){this._key=e,this._publicKey=t??jc(e),zc(this._key),ri(this._publicKey)}sign(e){return qc(this._key,e)}get public(){return new tn(this._publicKey)}marshal(){return this._key}get bytes(){return rt.encode({Type:ee.Secp256k1,Data:this.marshal()}).subarray()}equals(e){return pe(this.bytes,e.bytes)}hash(){let e=be.digest(this.bytes);return Pe(e)?e.then(({bytes:t})=>t):e.bytes}async id(){let e=await this.public.hash();return K(e,"base58btc")}async export(e,t="libp2p-key"){if(t==="libp2p-key")return mr(this.bytes,e);throw new C(`export format '${t}' is not supported`,"ERR_INVALID_EXPORT_FORMAT")}};function xd(r){return new rn(r)}function vd(r){return new tn(r)}async function Ed(){let r=Kc();return new rn(r)}var tr={rsa:Xo,ed25519:Ko,secp256k1:ni};function Wc(r){let e=Object.keys(tr).join(" / ");return new C(`invalid or unsupported key type ${r}. Must be ${e}`,"ERR_UNSUPPORTED_KEY_TYPE")}function Yc(r){let e=tt.decode(r),t=e.Data??new Uint8Array;switch(e.Type){case ee.RSA:return tr.rsa.unmarshalRsaPublicKey(t);case ee.Ed25519:return tr.ed25519.unmarshalEd25519PublicKey(t);case ee.Secp256k1:return tr.secp256k1.unmarshalSecp256k1PublicKey(t);default:throw Wc(e.Type??"unknown")}}async function Zc(r){let e=rt.decode(r),t=e.Data??new Uint8Array;switch(e.Type){case ee.RSA:return tr.rsa.unmarshalRsaPrivateKey(t);case ee.Ed25519:return tr.ed25519.unmarshalEd25519PrivateKey(t);case ee.Secp256k1:return tr.secp256k1.unmarshalSecp256k1PrivateKey(t);default:throw Wc(e.Type??"RSA")}}var Bd=Symbol.for("nodejs.util.inspect.custom"),Jc=Object.values(Nt).map(r=>r.decoder).reduce((r,e)=>r.or(e),Nt.identity.decoder),Xc=114,si=36,oi=37,nn=class{type;multihash;privateKey;publicKey;string;constructor(e){this.type=e.type,this.multihash=e.multihash,this.privateKey=e.privateKey,Object.defineProperty(this,"string",{enumerable:!1,writable:!0})}get[Symbol.toStringTag](){return`PeerId(${this.toString()})`}[Ki]=!0;toString(){return this.string==null&&(this.string=oe.encode(this.multihash.bytes).slice(1)),this.string}toCID(){return He.createV1(Xc,this.multihash)}toBytes(){return this.multihash.bytes}toJSON(){return this.toString()}equals(e){if(e==null)return!1;if(e instanceof Uint8Array)return pe(this.multihash.bytes,e);if(typeof e=="string")return Ad(e).equals(this);if(e?.multihash?.bytes!=null)return pe(this.multihash.bytes,e.multihash.bytes);throw new Error("not valid Id")}[Bd](){return`PeerId(${this.toString()})`}},Ar=class extends nn{type="RSA";publicKey;constructor(e){super({...e,type:"RSA"}),this.publicKey=e.publicKey}},Ir=class extends nn{type="Ed25519";publicKey;constructor(e){super({...e,type:"Ed25519"}),this.publicKey=e.multihash.digest}},Sr=class extends nn{type="secp256k1";publicKey;constructor(e){super({...e,type:"secp256k1"}),this.publicKey=e.multihash.digest}};function Ad(r,e){if(e=e??Jc,r.charAt(0)==="1"||r.charAt(0)==="Q"){let t=$t(oe.decode(`z${r}`));return r.startsWith("12D")?new Ir({multihash:t}):r.startsWith("16U")?new Sr({multihash:t}):new Ar({multihash:t})}return ii(Jc.decode(r))}function ii(r){try{let e=$t(r);if(e.code===kt.code){if(e.digest.length===si)return new Ir({multihash:e});if(e.digest.length===oi)return new Sr({multihash:e})}if(e.code===be.code)return new Ar({multihash:e})}catch{return Id(He.decode(r))}throw new Error("Supplied PeerID CID is invalid")}function Id(r){if(r==null||r.multihash==null||r.version==null||r.version===1&&r.code!==Xc)throw new Error("Supplied PeerID CID is invalid");let e=r.multihash;if(e.code===be.code)return new Ar({multihash:r.multihash});if(e.code===kt.code){if(e.digest.length===si)return new Ir({multihash:r.multihash});if(e.digest.length===oi)return new Sr({multihash:r.multihash})}throw new Error("Supplied PeerID CID is invalid")}async function kr(r,e){return r.length===si?new Ir({multihash:Qe(kt.code,r),privateKey:e}):r.length===oi?new Sr({multihash:Qe(kt.code,r),privateKey:e}):new Ar({multihash:await be.digest(r),publicKey:r,privateKey:e})}var el=Symbol.for("@achingbrain/uint8arraylist");function Qc(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let s=t+n.byteLength;if(e<s)return{buf:n,index:e-t};t=s}throw new RangeError("index is out of bounds")}function ws(r){return!!r?.[el]}var Ze=class r{bufs;length;[el]=!0;constructor(...e){this.bufs=[],this.length=0,e.length>0&&this.appendAll(e)}*[Symbol.iterator](){yield*this.bufs}get byteLength(){return this.length}append(...e){this.appendAll(e)}appendAll(e){let t=0;for(let n of e)if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.push(n);else if(ws(n))t+=n.byteLength,this.bufs.push(...n.bufs);else throw new Error("Could not append value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}prepend(...e){this.prependAll(e)}prependAll(e){let t=0;for(let n of e.reverse())if(n instanceof Uint8Array)t+=n.byteLength,this.bufs.unshift(n);else if(ws(n))t+=n.byteLength,this.bufs.unshift(...n.bufs);else throw new Error("Could not prepend value, must be an Uint8Array or a Uint8ArrayList");this.length+=t}get(e){let t=Qc(this.bufs,e);return t.buf[t.index]}set(e,t){let n=Qc(this.bufs,e);n.buf[n.index]=t}write(e,t=0){if(e instanceof Uint8Array)for(let n=0;n<e.length;n++)this.set(t+n,e[n]);else if(ws(e))for(let n=0;n<e.length;n++)this.set(t+n,e.get(n));else throw new Error("Could not write value, must be an Uint8Array or a Uint8ArrayList")}consume(e){if(e=Math.trunc(e),!(Number.isNaN(e)||e<=0)){if(e===this.byteLength){this.bufs=[],this.length=0;return}for(;this.bufs.length>0;)if(e>=this.bufs[0].byteLength)e-=this.bufs[0].byteLength,this.length-=this.bufs[0].byteLength,this.bufs.shift();else{this.bufs[0]=this.bufs[0].subarray(e),this.length-=e;break}}}slice(e,t){let{bufs:n,length:s}=this._subList(e,t);return Se(n,s)}subarray(e,t){let{bufs:n,length:s}=this._subList(e,t);return n.length===1?n[0]:Se(n,s)}sublist(e,t){let{bufs:n,length:s}=this._subList(e,t),o=new r;return o.length=s,o.bufs=[...n],o}_subList(e,t){if(e=e??0,t=t??this.length,e<0&&(e=this.length+e),t<0&&(t=this.length+t),e<0||t>this.length)throw new RangeError("index is out of bounds");if(e===t)return{bufs:[],length:0};if(e===0&&t===this.length)return{bufs:this.bufs,length:this.length};let n=[],s=0;for(let o=0;o<this.bufs.length;o++){let i=this.bufs[o],a=s,c=a+i.byteLength;if(s=c,e>=c)continue;let f=e>=a&&e<c,u=t>a&&t<=c;if(f&&u){if(e===a&&t===c){n.push(i);break}let l=e-a;n.push(i.subarray(l,l+(t-e)));break}if(f){if(e===0){n.push(i);continue}n.push(i.subarray(e-a));continue}if(u){if(t===c){n.push(i);break}n.push(i.subarray(0,t-a));break}n.push(i)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!ws(e)&&!(e instanceof Uint8Array))throw new TypeError('The "value" argument must be a Uint8ArrayList or Uint8Array');let n=e instanceof Uint8Array?e:e.subarray();if(t=Number(t??0),isNaN(t)&&(t=0),t<0&&(t=this.length+t),t<0&&(t=0),e.length===0)return t>this.length?this.length:t;let s=n.byteLength;if(s===0)throw new TypeError("search must be at least 1 byte long");let o=256,i=new Int32Array(o);for(let l=0;l<o;l++)i[l]=-1;for(let l=0;l<s;l++)i[n[l]]=l;let a=i,c=this.byteLength-n.byteLength,f=n.byteLength-1,u;for(let l=t;l<=c;l+=u){u=0;for(let d=f;d>=0;d--){let y=this.get(l+d);if(n[d]!==y){u=Math.max(1,d-a[y]);break}}if(u===0)return l}return-1}getInt8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getInt8(0)}setInt8(e,t){let n=Re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setInt8(0,t),this.write(n,e)}getInt16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt16(0,t)}setInt16(e,t,n){let s=ft(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt16(0,t,n),this.write(s,e)}getInt32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getInt32(0,t)}setInt32(e,t,n){let s=ft(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setInt32(0,t,n),this.write(s,e)}getBigInt64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigInt64(0,t)}setBigInt64(e,t,n){let s=ft(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigInt64(0,t,n),this.write(s,e)}getUint8(e){let t=this.subarray(e,e+1);return new DataView(t.buffer,t.byteOffset,t.byteLength).getUint8(0)}setUint8(e,t){let n=Re(1);new DataView(n.buffer,n.byteOffset,n.byteLength).setUint8(0,t),this.write(n,e)}getUint16(e,t){let n=this.subarray(e,e+2);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint16(0,t)}setUint16(e,t,n){let s=ft(2);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint16(0,t,n),this.write(s,e)}getUint32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getUint32(0,t)}setUint32(e,t,n){let s=ft(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setUint32(0,t,n),this.write(s,e)}getBigUint64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getBigUint64(0,t)}setBigUint64(e,t,n){let s=ft(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setBigUint64(0,t,n),this.write(s,e)}getFloat32(e,t){let n=this.subarray(e,e+4);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat32(0,t)}setFloat32(e,t,n){let s=ft(4);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat32(0,t,n),this.write(s,e)}getFloat64(e,t){let n=this.subarray(e,e+8);return new DataView(n.buffer,n.byteOffset,n.byteLength).getFloat64(0,t)}setFloat64(e,t,n){let s=ft(8);new DataView(s.buffer,s.byteOffset,s.byteLength).setFloat64(0,t,n),this.write(s,e)}equals(e){if(e==null||!(e instanceof r)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!pe(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new r;return n.bufs=e,t==null&&(t=e.reduce((s,o)=>s+o.byteLength,0)),n.length=t,n}};var tl={ERR_SIGNATURE_NOT_VALID:"ERR_SIGNATURE_NOT_VALID"};var sn;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{s.lengthDelimited!==!1&&n.fork(),t.publicKey!=null&&t.publicKey.byteLength>0&&(n.uint32(10),n.bytes(t.publicKey)),t.payloadType!=null&&t.payloadType.byteLength>0&&(n.uint32(18),n.bytes(t.payloadType)),t.payload!=null&&t.payload.byteLength>0&&(n.uint32(26),n.bytes(t.payload)),t.signature!=null&&t.signature.byteLength>0&&(n.uint32(42),n.bytes(t.signature)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={publicKey:new Uint8Array(0),payloadType:new Uint8Array(0),payload:new Uint8Array(0),signature:new Uint8Array(0)},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 1:s.publicKey=t.bytes();break;case 2:s.payloadType=t.bytes();break;case 3:s.payload=t.bytes();break;case 5:s.signature=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(sn||(sn={}));var it=class r{static createFromProtobuf=async e=>{let t=sn.decode(e),n=await kr(t.publicKey);return new r({peerId:n,payloadType:t.payloadType,payload:t.payload,signature:t.signature})};static seal=async(e,t)=>{if(t.privateKey==null)throw new Error("Missing private key");let n=e.domain,s=e.codec,o=e.marshal(),i=rl(n,s,o),c=await(await Zc(t.privateKey)).sign(i.subarray());return new r({peerId:t,payloadType:s,payload:o,signature:c})};static openAndCertify=async(e,t)=>{let n=await r.createFromProtobuf(e);if(!await n.validate(t))throw new C("envelope signature is not valid for the given domain",tl.ERR_SIGNATURE_NOT_VALID);return n};peerId;payloadType;payload;signature;marshaled;constructor(e){let{peerId:t,payloadType:n,payload:s,signature:o}=e;this.peerId=t,this.payloadType=n,this.payload=s,this.signature=o}marshal(){if(this.peerId.publicKey==null)throw new Error("Missing public key");return this.marshaled==null&&(this.marshaled=sn.encode({publicKey:this.peerId.publicKey,payloadType:this.payloadType,payload:this.payload.subarray(),signature:this.signature})),this.marshaled}equals(e){return pe(this.marshal(),e.marshal())}async validate(e){let t=rl(e,this.payloadType,this.payload);if(this.peerId.publicKey==null)throw new Error("Missing public key");return Yc(this.peerId.publicKey).verify(t.subarray(),this.signature)}},rl=(r,e,t)=>{let n=F(r),s=Ve(n.byteLength),o=Ve(e.length),i=Ve(t.length);return new Ze(s,n,o,e,i,t)};function nl(r,e){let t=(n,s)=>n.toString().localeCompare(s.toString());return r.length!==e.length?!1:(e.sort(t),r.sort(t).every((n,s)=>e[s].equals(n)))}var xs=class{index=0;input="";new(e){return this.index=0,this.input=e,this}readAtomically(e){let t=this.index,n=e();return n===void 0&&(this.index=t),n}parseWith(e){let t=e();if(this.index===this.input.length)return t}peekChar(){if(!(this.index>=this.input.length))return this.input[this.index]}readChar(){if(!(this.index>=this.input.length))return this.input[this.index++]}readGivenChar(e){return this.readAtomically(()=>{let t=this.readChar();if(t===e)return t})}readSeparator(e,t,n){return this.readAtomically(()=>{if(!(t>0&&this.readGivenChar(e)===void 0))return n()})}readNumber(e,t,n,s){return this.readAtomically(()=>{let o=0,i=0,a=this.peekChar();if(a===void 0)return;let c=a==="0",f=2**(8*s)-1;for(;;){let u=this.readAtomically(()=>{let l=this.readChar();if(l===void 0)return;let d=Number.parseInt(l,e);if(!Number.isNaN(d))return d});if(u===void 0)break;if(o*=e,o+=u,o>f||(i+=1,t!==void 0&&i>t))return}if(i!==0)return!n&&c&&i>1?void 0:o})}readIPv4Addr(){return this.readAtomically(()=>{let e=new Uint8Array(4);for(let t=0;t<e.length;t++){let n=this.readSeparator(".",t,()=>this.readNumber(10,3,!1,1));if(n===void 0)return;e[t]=n}return e})}readIPv6Addr(){let e=t=>{for(let n=0;n<t.length/2;n++){let s=n*2;if(n<t.length-3){let i=this.readSeparator(":",n,()=>this.readIPv4Addr());if(i!==void 0)return t[s]=i[0],t[s+1]=i[1],t[s+2]=i[2],t[s+3]=i[3],[s+4,!0]}let o=this.readSeparator(":",n,()=>this.readNumber(16,4,!0,2));if(o===void 0)return[s,!1];t[s]=o>>8,t[s+1]=o&255}return[t.length,!1]};return this.readAtomically(()=>{let t=new Uint8Array(16),[n,s]=e(t);if(n===16)return t;if(s||this.readGivenChar(":")===void 0||this.readGivenChar(":")===void 0)return;let o=new Uint8Array(14),i=16-(n+2),[a]=e(o.subarray(0,i));return t.set(o.subarray(0,a),16-a),t})}readIPAddr(){return this.readIPv4Addr()??this.readIPv6Addr()}};var sl=45,Sd=15,Nr=new xs;function ai(r){if(!(r.length>Sd))return Nr.new(r).parseWith(()=>Nr.readIPv4Addr())}function ci(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>sl))return Nr.new(r).parseWith(()=>Nr.readIPv6Addr())}function vs(r){if(r.includes("%")&&(r=r.split("%")[0]),!(r.length>sl))return Nr.new(r).parseWith(()=>Nr.readIPAddr())}var Yy=parseInt("0xFFFF",16),Zy=new Uint8Array([0,0,0,0,0,0,0,0,0,0,255,255]);function Es(r){return!!ai(r)}function Bs(r){return!!ci(r)}function As(r){return!!vs(r)}var al=Es,_d=Bs,li=function(r){let e=0;if(r=r.toString().trim(),al(r)){let t=new Uint8Array(e+4);return r.split(/\./g).forEach(n=>{t[e++]=parseInt(n,10)&255}),t}if(_d(r)){let t=r.split(":",8),n;for(n=0;n<t.length;n++){let o=al(t[n]),i;o&&(i=li(t[n]),t[n]=K(i.slice(0,2),"base16")),i!=null&&++n<8&&t.splice(n,0,K(i.slice(2,4),"base16"))}if(t[0]==="")for(;t.length<8;)t.unshift("0");else if(t[t.length-1]==="")for(;t.length<8;)t.push("0");else if(t.length<8){for(n=0;n<t.length&&t[n]!=="";n++);let o=[n,1];for(n=9-t.length;n>0;n--)o.push("0");t.splice.apply(t,o)}let s=new Uint8Array(e+16);for(n=0;n<t.length;n++){let o=parseInt(t[n],16);s[e++]=o>>8&255,s[e++]=o&255}return s}throw new Error("invalid ip address")},cl=function(r,e=0,t){e=~~e,t=t??r.length-e;let n=new DataView(r.buffer);if(t===4){let s=[];for(let o=0;o<t;o++)s.push(r[e+o]);return s.join(".")}if(t===16){let s=[];for(let o=0;o<t;o+=2)s.push(n.getUint16(e+o).toString(16));return s.join(":").replace(/(^|:)0(:0)*:0(:|$)/,"$1::$3").replace(/:{3,4}/,"::")}return""};var Rr={},ui={},Ld=[[4,32,"ip4"],[6,16,"tcp"],[33,16,"dccp"],[41,128,"ip6"],[42,-1,"ip6zone"],[43,8,"ipcidr"],[53,-1,"dns",!0],[54,-1,"dns4",!0],[55,-1,"dns6",!0],[56,-1,"dnsaddr",!0],[132,16,"sctp"],[273,16,"udp"],[275,0,"p2p-webrtc-star"],[276,0,"p2p-webrtc-direct"],[277,0,"p2p-stardust"],[280,0,"webrtc-direct"],[281,0,"webrtc"],[290,0,"p2p-circuit"],[301,0,"udt"],[302,0,"utp"],[400,-1,"unix",!1,!0],[421,-1,"ipfs"],[421,-1,"p2p"],[443,0,"https"],[444,96,"onion"],[445,296,"onion3"],[446,-1,"garlic64"],[448,0,"tls"],[449,-1,"sni"],[460,0,"quic"],[461,0,"quic-v1"],[465,0,"webtransport"],[466,-1,"certhash"],[477,0,"ws"],[478,0,"wss"],[479,0,"p2p-websocket-star"],[480,0,"http"],[481,-1,"http-path"],[777,-1,"memory"]];Ld.forEach(r=>{let e=Ud(...r);ui[e.code]=e,Rr[e.name]=e});function Ud(r,e,t,n,s){return{code:r,size:e,name:t,resolvable:!!n,path:!!s}}function z(r){if(typeof r=="number"){if(ui[r]!=null)return ui[r];throw new Error(`no protocol with code: ${r}`)}else if(typeof r=="string"){if(Rr[r]!=null)return Rr[r];throw new Error(`no protocol with name: ${r}`)}throw new Error(`invalid protocol id type: ${typeof r}`)}var Lb=z("ip4"),Ub=z("ip6"),Pb=z("ipcidr");function pi(r,e){switch(z(r).code){case 4:case 41:return Vd(e);case 42:return di(e);case 6:case 273:case 33:case 132:return fl(e).toString();case 53:case 54:case 55:case 56:case 400:case 449:case 777:return di(e);case 421:return Hd(e);case 444:return ul(e);case 445:return ul(e);case 466:return Md(e);case 481:return globalThis.encodeURIComponent(di(e));default:return K(e,"base16")}}function gi(r,e){switch(z(r).code){case 4:return ll(e);case 41:return ll(e);case 42:return hi(e);case 6:case 273:case 33:case 132:return mi(parseInt(e,10));case 53:case 54:case 55:case 56:case 400:case 449:case 777:return hi(e);case 421:return Od(e);case 444:return Fd(e);case 445:return Kd(e);case 466:return Dd(e);case 481:return hi(globalThis.decodeURIComponent(e));default:return F(e,"base16")}}var fi=Object.values(Nt).map(r=>r.decoder),Pd=function(){let r=fi[0].or(fi[1]);return fi.slice(2).forEach(e=>r=r.or(e)),r}();function ll(r){if(!As(r))throw new Error("invalid ip address");return li(r)}function Vd(r){let e=cl(r,0,r.length);if(e==null)throw new Error("ipBuff is required");if(!As(e))throw new Error("invalid ip address");return e}function mi(r){let e=new ArrayBuffer(2);return new DataView(e).setUint16(0,r),new Uint8Array(e)}function fl(r){return new DataView(r.buffer).getUint16(r.byteOffset)}function hi(r){let e=F(r),t=Uint8Array.from(Ve(e.length));return Se([t,e],t.length+e.length)}function di(r){let e=bt(r);if(r=r.slice(Be(e)),r.length!==e)throw new Error("inconsistent lengths");return K(r)}function Od(r){let e;r[0]==="Q"||r[0]==="1"?e=$t(oe.decode(`z${r}`)).bytes:e=He.parse(r).multihash.bytes;let t=Uint8Array.from(Ve(e.length));return Se([t,e],t.length+e.length)}function Dd(r){let e=Pd.decode(r),t=Uint8Array.from(Ve(e.length));return Se([t,e],t.length+e.length)}function Md(r){let e=bt(r),t=r.slice(Be(e));if(t.length!==e)throw new Error("inconsistent lengths");return"u"+K(t,"base64url")}function Hd(r){let e=bt(r),t=r.slice(Be(e));if(t.length!==e)throw new Error("inconsistent lengths");return K(t,"base58btc")}function Fd(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==16)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion address.`);let t=ht.decode("b"+e[0]),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=mi(n);return Se([t,s],t.length+s.length)}function Kd(r){let e=r.split(":");if(e.length!==2)throw new Error(`failed to parse onion addr: ["'${e.join('", "')}'"]' does not contain a port number`);if(e[0].length!==56)throw new Error(`failed to parse onion addr: ${e[0]} not a Tor onion3 address.`);let t=ht.decode(`b${e[0]}`),n=parseInt(e[1],10);if(n<1||n>65536)throw new Error("Port number is not in range(1, 65536)");let s=mi(n);return Se([t,s],t.length+s.length)}function ul(r){let e=r.slice(0,r.length-2),t=r.slice(r.length-2),n=K(e,"base32"),s=fl(t);return`${n}:${s}`}function hl(r){r=yi(r);let e=[],t=[],n=null,s=r.split("/").slice(1);if(s.length===1&&s[0]==="")return{bytes:new Uint8Array,string:"/",tuples:[],stringTuples:[],path:null};for(let o=0;o<s.length;o++){let i=s[o],a=z(i);if(a.size===0){e.push([a.code]),t.push([a.code]);continue}if(o++,o>=s.length)throw pl("invalid address: "+r);if(a.path===!0){n=yi(s.slice(o).join("/")),e.push([a.code,gi(a.code,n)]),t.push([a.code,n]);break}let c=gi(a.code,s[o]);e.push([a.code,c]),t.push([a.code,pi(a.code,c)])}return{string:dl(t),bytes:wi(e),tuples:e,stringTuples:t,path:n}}function bi(r){let e=[],t=[],n=null,s=0;for(;s<r.length;){let o=bt(r,s),i=Be(o),a=z(o),c=qd(a,r.slice(s+i));if(c===0){e.push([o]),t.push([o]),s+=i;continue}let f=r.slice(s+i,s+i+c);if(s+=c+i,s>r.length)throw pl("Invalid address Uint8Array: "+K(r,"base16"));e.push([o,f]);let u=pi(o,f);if(t.push([o,u]),a.path===!0){n=u;break}}return{bytes:Uint8Array.from(r),string:dl(t),tuples:e,stringTuples:t,path:n}}function dl(r){let e=[];return r.map(t=>{let n=z(t[0]);return e.push(n.name),t.length>1&&t[1]!=null&&e.push(t[1]),null}),yi(e.join("/"))}function wi(r){return Se(r.map(e=>{let t=z(e[0]),n=Uint8Array.from(Ve(t.code));return e.length>1&&e[1]!=null&&(n=Se([n,e[1]])),n}))}function qd(r,e){if(r.size>0)return r.size/8;if(r.size===0)return 0;{let t=bt(e instanceof Uint8Array?e:Uint8Array.from(e));return t+Be(t)}}function yi(r){return"/"+r.trim().split("/").filter(e=>e).join("/")}function pl(r){return new Error("Error parsing address: "+r)}var $d=Symbol.for("nodejs.util.inspect.custom"),xi=Symbol.for("@multiformats/js-multiaddr/multiaddr"),Gd=[z("dns").code,z("dns4").code,z("dns6").code,z("dnsaddr").code],Is=class r{bytes;#t;#e;#r;#n;[xi]=!0;constructor(e){e==null&&(e="");let t;if(e instanceof Uint8Array)t=bi(e);else if(typeof e=="string"){if(e.length>0&&e.charAt(0)!=="/")throw new Error(`multiaddr "${e}" must start with a "/"`);t=hl(e)}else if(ml(e))t=bi(e.bytes);else throw new Error("addr must be a string, Buffer, or another Multiaddr");this.bytes=t.bytes,this.#t=t.string,this.#e=t.tuples,this.#r=t.stringTuples,this.#n=t.path}toString(){return this.#t}toJSON(){return this.toString()}toOptions(){let e,t,n,s,o="",i=z("tcp"),a=z("udp"),c=z("ip4"),f=z("ip6"),u=z("dns6"),l=z("ip6zone");for(let[y,p]of this.stringTuples())y===l.code&&(o=`%${p??""}`),Gd.includes(y)&&(t=i.name,s=443,n=`${p??""}${o}`,e=y===u.code?6:4),(y===i.code||y===a.code)&&(t=z(y).name,s=parseInt(p??"")),(y===c.code||y===f.code)&&(t=z(y).name,n=`${p??""}${o}`,e=y===f.code?6:4);if(e==null||t==null||n==null||s==null)throw new Error('multiaddr must have a valid format: "/{ip4, ip6, dns4, dns6, dnsaddr}/{address}/{tcp, udp}/{port}".');return{family:e,host:n,transport:t,port:s}}protos(){return this.#e.map(([e])=>Object.assign({},z(e)))}protoCodes(){return this.#e.map(([e])=>e)}protoNames(){return this.#e.map(([e])=>z(e).name)}tuples(){return this.#e}stringTuples(){return this.#r}encapsulate(e){return e=new r(e),new r(this.toString()+e.toString())}decapsulate(e){let t=e.toString(),n=this.toString(),s=n.lastIndexOf(t);if(s<0)throw new Error(`Address ${this.toString()} does not contain subaddress: ${e.toString()}`);return new r(n.slice(0,s))}decapsulateCode(e){let t=this.tuples();for(let n=t.length-1;n>=0;n--)if(t[n][0]===e)return new r(wi(t.slice(0,n)));return this}getPeerId(){try{let e=[];this.stringTuples().forEach(([n,s])=>{n===Rr.p2p.code&&e.push([n,s]),n===Rr["p2p-circuit"].code&&(e=[])});let t=e.pop();if(t?.[1]!=null){let n=t[1];return n[0]==="Q"||n[0]==="1"?K(oe.decode(`z${n}`),"base58btc"):K(He.parse(n).multihash.bytes,"base58btc")}return null}catch{return null}}getPath(){return this.#n}equals(e){return pe(this.bytes,e.bytes)}async resolve(e){let t=this.protos().find(o=>o.resolvable);if(t==null)return[this];let n=gl.get(t.name);if(n==null)throw new C(`no available resolver for ${t.name}`,"ERR_NO_AVAILABLE_RESOLVER");return(await n(this,e)).map(o=>at(o))}nodeAddress(){let e=this.toOptions();if(e.transport!=="tcp"&&e.transport!=="udp")throw new Error(`multiaddr must have a valid format - no protocol with name: "${e.transport}". Must have a valid transport protocol: "{tcp, udp}"`);return{family:e.family,address:e.host,port:e.port}}isThinWaistAddress(e){let t=(e??this).protos();return!(t.length!==2||t[0].code!==4&&t[0].code!==41||t[1].code!==6&&t[1].code!==273)}[$d](){return`Multiaddr(${this.#t})`}};var gl=new Map;function ml(r){return!!r?.[xi]}function at(r){return new Is(r)}var yl="libp2p-peer-record",bl=Uint8Array.from([3,1]);var on;(function(r){let e;(function(n){let s;n.codec=()=>(s==null&&(s=ze((o,i,a={})=>{a.lengthDelimited!==!1&&i.fork(),o.multiaddr!=null&&o.multiaddr.byteLength>0&&(i.uint32(10),i.bytes(o.multiaddr)),a.lengthDelimited!==!1&&i.ldelim()},(o,i)=>{let a={multiaddr:new Uint8Array(0)},c=i==null?o.len:o.pos+i;for(;o.pos<c;){let f=o.uint32();switch(f>>>3){case 1:a.multiaddr=o.bytes();break;default:o.skipType(f&7);break}}return a})),s),n.encode=o=>Ge(o,n.codec()),n.decode=o=>$e(o,n.codec())})(e=r.AddressInfo||(r.AddressInfo={}));let t;r.codec=()=>(t==null&&(t=ze((n,s,o={})=>{if(o.lengthDelimited!==!1&&s.fork(),n.peerId!=null&&n.peerId.byteLength>0&&(s.uint32(10),s.bytes(n.peerId)),n.seq!=null&&n.seq!==0n&&(s.uint32(16),s.uint64(n.seq)),n.addresses!=null)for(let i of n.addresses)s.uint32(26),r.AddressInfo.codec().encode(i,s);o.lengthDelimited!==!1&&s.ldelim()},(n,s)=>{let o={peerId:new Uint8Array(0),seq:0n,addresses:[]},i=s==null?n.len:n.pos+s;for(;n.pos<i;){let a=n.uint32();switch(a>>>3){case 1:o.peerId=n.bytes();break;case 2:o.seq=n.uint64();break;case 3:o.addresses.push(r.AddressInfo.codec().decode(n,n.uint32()));break;default:n.skipType(a&7);break}}return o})),t),r.encode=n=>Ge(n,r.codec()),r.decode=n=>$e(n,r.codec())})(on||(on={}));var Je=class r{static createFromProtobuf=e=>{let t=on.decode(e),n=ii(t.peerId),s=(t.addresses??[]).map(i=>at(i.multiaddr)),o=t.seq;return new r({peerId:n,multiaddrs:s,seqNumber:o})};static DOMAIN=yl;static CODEC=bl;peerId;multiaddrs;seqNumber;domain=r.DOMAIN;codec=r.CODEC;marshaled;constructor(e){let{peerId:t,multiaddrs:n,seqNumber:s}=e;this.peerId=t,this.multiaddrs=n??[],this.seqNumber=s??BigInt(Date.now())}marshal(){return this.marshaled==null&&(this.marshaled=on.encode({peerId:this.peerId.toBytes(),seq:BigInt(this.seqNumber),addresses:this.multiaddrs.map(e=>({multiaddr:e.bytes}))})),this.marshaled}equals(e){return!(!(e instanceof r)||!this.peerId.equals(e.peerId)||this.seqNumber!==e.seqNumber||!nl(this.multiaddrs,e.multiaddrs))}};function zd(r){return r[Symbol.asyncIterator]!=null}function jd(r){if(zd(r))return(async()=>{for await(let e of r);})();for(let e of r);}var wl=jd;function Xe(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var Ss=globalThis.CustomEvent??Event;async function*vi(r,e={}){let t=e.concurrency??1/0;t<1&&(t=1/0);let n=e.ordered==null?!1:e.ordered,s=new EventTarget,o=[],i=Xe(),a=Xe(),c=!1,f,u=!1;s.addEventListener("task-complete",()=>{a.resolve()}),Promise.resolve().then(async()=>{try{for await(let p of r){if(o.length===t&&(i=Xe(),await i.promise),u)break;let h={done:!1};o.push(h),p().then(g=>{h.done=!0,h.ok=!0,h.value=g,s.dispatchEvent(new Ss("task-complete"))},g=>{h.done=!0,h.err=g,s.dispatchEvent(new Ss("task-complete"))})}c=!0,s.dispatchEvent(new Ss("task-complete"))}catch(p){f=p,s.dispatchEvent(new Ss("task-complete"))}});function l(){return n?o[0]?.done:!!o.find(p=>p.done)}function*d(){for(;o.length>0&&o[0].done;){let p=o[0];if(o.shift(),p.ok)yield p.value;else throw u=!0,i.resolve(),p.err;i.resolve()}}function*y(){for(;l();)for(let p=0;p<o.length;p++)if(o[p].done){let h=o[p];if(o.splice(p,1),p--,h.ok)yield h.value;else throw u=!0,i.resolve(),h.err;i.resolve()}}for(;;){if(l()||(a=Xe(),await a.promise),f!=null)throw f;if(n?yield*d():yield*y(),c&&o.length===0)break}}var ks=class extends Error{type;code;constructor(e,t){super(e??"The operation was aborted"),this.type="aborted",this.name="AbortError",this.code=t??"ABORT_ERR"}};async function xl(r,e,t){if(e==null)return r;if(e.aborted)return Promise.reject(new ks(t?.errorMessage,t?.errorCode));let n,s=new ks(t?.errorMessage,t?.errorCode);try{return await Promise.race([r,new Promise((o,i)=>{n=()=>{i(s)},e.addEventListener("abort",n)})])}finally{n!=null&&e.removeEventListener("abort",n)}}var Ei=class{readNext;haveNext;ended;nextResult;constructor(){this.ended=!1,this.readNext=Xe(),this.haveNext=Xe()}[Symbol.asyncIterator](){return this}async next(){if(this.nextResult==null&&await this.haveNext.promise,this.nextResult==null)throw new Error("HaveNext promise resolved but nextResult was undefined");let e=this.nextResult;return this.nextResult=void 0,this.readNext.resolve(),this.readNext=Xe(),e}async throw(e){return this.ended=!0,e!=null&&(this.haveNext.promise.catch(()=>{}),this.haveNext.reject(e)),{done:!0,value:void 0}}async return(){let e={done:!0,value:void 0};return await this._push(void 0),e}async push(e,t){await this._push(e,t)}async end(e,t){e!=null?await this.throw(e):await this._push(void 0,t)}async _push(e,t){if(e!=null&&this.ended)throw new Error("Cannot push value onto an ended pushable");for(;this.nextResult!=null;)await this.readNext.promise;e!=null?this.nextResult={done:!1,value:e}:(this.ended=!0,this.nextResult={done:!0,value:void 0}),this.haveNext.resolve(),this.haveNext=Xe(),await xl(this.readNext.promise,t?.signal,t)}};function vl(){return new Ei}var Ns=class extends Error{code;constructor(e,t){super(e),this.code=t}},Bi=class extends Ns{type;constructor(e){super(e,"ABORT_ERR"),this.type="aborted"}};function El(r,e){let t=vl();r.sink(t).catch(async i=>{await t.end(i)}),r.sink=async i=>{for await(let a of i)await t.push(a);await t.end()};let n=r.source;r.source[Symbol.iterator]!=null?n=r.source[Symbol.iterator]():r.source[Symbol.asyncIterator]!=null&&(n=r.source[Symbol.asyncIterator]());let s=new Ze;return{read:async(i,a)=>{a?.signal?.throwIfAborted();let c,f=new Promise((u,l)=>{c=()=>{l(new Bi("Read aborted"))},a?.signal?.addEventListener("abort",c)});try{if(i==null){let{done:l,value:d}=await Promise.race([n.next(),f]);return l===!0?new Ze:d}for(;s.byteLength<i;){let{value:l,done:d}=await Promise.race([n.next(),f]);if(d===!0)throw new Ns("unexpected end of input","ERR_UNEXPECTED_EOF");s.append(l)}let u=s.sublist(0,i);return s.consume(i),u}finally{c!=null&&a?.signal?.removeEventListener("abort",c)}},write:async(i,a)=>{a?.signal?.throwIfAborted(),i instanceof Uint8Array?await t.push(i,a):await t.push(i.subarray(),a)},unwrap:()=>{if(s.byteLength>0){let i=r.source;r.source=async function*(){e?.yieldBytes===!1?yield s:yield*s,yield*i}()}return r}}}var Rs=class extends Error{code;constructor(e,t){super(e),this.code=t}};function Bl(r,e={}){let t=El(r,e);e.maxDataLength!=null&&e.maxLengthLength==null&&(e.maxLengthLength=Be(e.maxDataLength));let n=e?.lengthDecoder??bt,s=e?.lengthEncoder??Ve;return{read:async i=>{let a=-1,c=new Ze;for(;;){c.append(await t.read(1,i));try{a=n(c)}catch(f){if(f instanceof RangeError)continue;throw f}if(e?.maxLengthLength!=null&&c.byteLength>e.maxLengthLength)throw new Rs("message length length too long","ERR_MSG_LENGTH_TOO_LONG");if(a>-1)break}if(e?.maxDataLength!=null&&a>e.maxDataLength)throw new Rs("message length too long","ERR_MSG_DATA_TOO_LONG");return t.read(a,i)},write:async(i,a)=>{await t.write(new Ze(s(i.byteLength),i),a)},writeV:async(i,a)=>{let c=new Ze(...i.flatMap(f=>[s(f.byteLength),f]));await t.write(c,a)},unwrap:()=>t.unwrap()}}function Tr(r,e){let t=Bl(r,e),n={read:async(s,o)=>{let i=await t.read(o);return s.decode(i)},write:async(s,o,i)=>{await t.write(o.encode(s),i)},writeV:async(s,o,i)=>{await t.writeV(s.map(a=>o.encode(a)),i)},pb:s=>({read:async o=>n.read(s,o),write:async(o,i)=>n.write(o,s,i),writeV:async(o,i)=>n.writeV(o,s,i),unwrap:()=>n}),unwrap:()=>t.unwrap()};return n}var Al="0.1.0",Il="id",Sl="id/push",kl="1.0.0",Nl="1.0.0";var Kt;(function(r){let e;r.codec=()=>(e==null&&(e=ze((t,n,s={})=>{if(s.lengthDelimited!==!1&&n.fork(),t.protocolVersion!=null&&(n.uint32(42),n.string(t.protocolVersion)),t.agentVersion!=null&&(n.uint32(50),n.string(t.agentVersion)),t.publicKey!=null&&(n.uint32(10),n.bytes(t.publicKey)),t.listenAddrs!=null)for(let o of t.listenAddrs)n.uint32(18),n.bytes(o);if(t.observedAddr!=null&&(n.uint32(34),n.bytes(t.observedAddr)),t.protocols!=null)for(let o of t.protocols)n.uint32(26),n.string(o);t.signedPeerRecord!=null&&(n.uint32(66),n.bytes(t.signedPeerRecord)),s.lengthDelimited!==!1&&n.ldelim()},(t,n)=>{let s={listenAddrs:[],protocols:[]},o=n==null?t.len:t.pos+n;for(;t.pos<o;){let i=t.uint32();switch(i>>>3){case 5:s.protocolVersion=t.string();break;case 6:s.agentVersion=t.string();break;case 1:s.publicKey=t.bytes();break;case 2:s.listenAddrs.push(t.bytes());break;case 4:s.observedAddr=t.bytes();break;case 3:s.protocols.push(t.string());break;case 8:s.signedPeerRecord=t.bytes();break;default:t.skipType(i&7);break}}return s})),e),r.encode=t=>Ge(t,r.codec()),r.decode=t=>$e(t,r.codec())})(Kt||(Kt={}));var _l=Fi(Tl(),1),Ai=typeof window=="object"&&typeof document=="object"&&document.nodeType===9,Ts=(0,_l.default)(),Cl=Ai&&!Ts,Ll=Ts&&!Ai,Ul=Ts&&Ai,Pl=typeof globalThis.process<"u"&&typeof globalThis.process.release<"u"&&globalThis.process.release.name==="node"&&!Ts,Vl=typeof importScripts=="function"&&typeof self<"u"&&typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,Dw=typeof globalThis.process<"u"&&typeof globalThis.process.env<"u"&&globalThis.process.env["NODE"+"_"+"ENV"]==="test",Ol=typeof navigator<"u"&&navigator.product==="ReactNative";var _e={protocolPrefix:"ipfs",timeout:5e3,maxInboundStreams:1,maxOutboundStreams:1,maxObservedAddresses:10,maxMessageSize:8192,runOnConnectionOpen:!0,runOnSelfUpdate:!0,runOnTransientConnection:!0,concurrency:32};function Dl(r){if(r!=null&&r.length>0)try{return at(r)}catch{}}function Jd(r,e){return e!=null||(e=`${r.name}/${r.version}`,Pl||Ll?e+=` UserAgent=${globalThis.process.version}`:(Cl||Vl||Ul||Ol)&&(e+=` UserAgent=${globalThis.navigator.userAgent}`)),e}async function _s(r,e,t,n,s){if(t("received identify from %p",n.remotePeer),s==null)throw new C("message was null or undefined","ERR_INVALID_MESSAGE");let o={};if(s.listenAddrs.length>0&&(o.addresses=s.listenAddrs.map(c=>({isCertified:!1,multiaddr:at(c)}))),s.protocols.length>0&&(o.protocols=s.protocols),s.publicKey!=null&&(o.publicKey=s.publicKey,!(await kr(s.publicKey)).equals(n.remotePeer)))throw new C("public key did not match remote PeerId","ERR_INVALID_PUBLIC_KEY");let i;if(s.signedPeerRecord!=null){t("received signedPeerRecord from %p",n.remotePeer);let c=s.signedPeerRecord,f=await it.openAndCertify(c,Je.DOMAIN),u=Je.createFromProtobuf(f.payload);if(!u.peerId.equals(f.peerId))throw new C("signing key does not match PeerId in the PeerRecord","ERR_INVALID_SIGNING_KEY");if(!n.remotePeer.equals(u.peerId))throw new C("signing key does not match remote PeerId","ERR_INVALID_PEER_RECORD_KEY");let l;try{l=await r.get(u.peerId)}catch(d){if(d.code!=="ERR_NOT_FOUND")throw d}if(l!=null&&(o.metadata=l.metadata,l.peerRecordEnvelope!=null)){let d=await it.createFromProtobuf(l.peerRecordEnvelope),y=Je.createFromProtobuf(d.payload);y.seqNumber>=u.seqNumber&&(t("sequence number was lower or equal to existing sequence number - stored: %d received: %d",y.seqNumber,u.seqNumber),u=y,c=l.peerRecordEnvelope)}o.peerRecordEnvelope=c,o.addresses=u.multiaddrs.map(d=>({isCertified:!0,multiaddr:d})),i={seq:u.seqNumber,addresses:u.multiaddrs}}else t("%p did not send a signed peer record",n.remotePeer);if(t("patching %p with",n.remotePeer,o),await r.patch(n.remotePeer,o),s.agentVersion!=null||s.protocolVersion!=null){let c={};s.agentVersion!=null&&(c.AgentVersion=F(s.agentVersion)),s.protocolVersion!=null&&(c.ProtocolVersion=F(s.protocolVersion)),t("merging %p metadata",n.remotePeer,c),await r.merge(n.remotePeer,{metadata:c})}let a={peerId:n.remotePeer,protocolVersion:s.protocolVersion,agentVersion:s.agentVersion,publicKey:s.publicKey,listenAddrs:s.listenAddrs.map(c=>at(c)),observedAddr:s.observedAddr==null?void 0:at(s.observedAddr),protocols:s.protocols,signedPeerRecord:i,connection:n};return e.safeDispatchEvent("peer:identify",{detail:a}),a}var _r=class{host;protocol;started;timeout;peerId;peerStore;registrar;addressManager;maxInboundStreams;maxOutboundStreams;maxMessageSize;maxObservedAddresses;events;runOnTransientConnection;log;constructor(e,t){this.protocol=t.protocol,this.started=!1,this.peerId=e.peerId,this.peerStore=e.peerStore,this.registrar=e.registrar,this.addressManager=e.addressManager,this.events=e.events,this.log=t.log,this.timeout=t.timeout??_e.timeout,this.maxInboundStreams=t.maxInboundStreams??_e.maxInboundStreams,this.maxOutboundStreams=t.maxOutboundStreams??_e.maxOutboundStreams,this.maxMessageSize=t.maxMessageSize??_e.maxMessageSize,this.maxObservedAddresses=t.maxObservedAddresses??_e.maxObservedAddresses,this.runOnTransientConnection=t.runOnTransientConnection??_e.runOnTransientConnection,this.host={protocolVersion:`${t.protocolPrefix??_e.protocolPrefix}/${Al}`,agentVersion:Jd(e.nodeInfo,t.agentVersion)}}isStarted(){return this.started}async start(){this.started||(await this.peerStore.merge(this.peerId,{metadata:{AgentVersion:F(this.host.agentVersion),ProtocolVersion:F(this.host.protocolVersion)}}),await this.registrar.handle(this.protocol,e=>{this.handleProtocol(e).catch(t=>{this.log.error(t)})},{maxInboundStreams:this.maxInboundStreams,maxOutboundStreams:this.maxOutboundStreams,runOnTransientConnection:this.runOnTransientConnection}),this.started=!0)}async stop(){await this.registrar.unhandle(this.protocol),this.started=!1}};var Cs=class extends _r{connectionManager;concurrency;constructor(e,t={}){super(e,{...t,protocol:`/${t.protocolPrefix??_e.protocolPrefix}/${Sl}/${Nl}`,log:e.logger.forComponent("libp2p:identify-push")}),this.connectionManager=e.connectionManager,this.concurrency=t.concurrency??_e.concurrency,(t.runOnSelfUpdate??_e.runOnSelfUpdate)&&e.events.addEventListener("self:peer:update",n=>{this.push().catch(s=>{this.log.error(s)})})}[un]=["@libp2p/identify-push"];async push(){if(!this.isStarted())return;let e=this.addressManager.getAddresses().map(u=>u.decapsulateCode(z("p2p").code)),t=new Je({peerId:this.peerId,multiaddrs:e}),n=await it.seal(t,this.peerId),s=this.registrar.getProtocols(),o=await this.peerStore.get(this.peerId),i=K(o.metadata.get("AgentVersion")??F(this.host.agentVersion)),a=K(o.metadata.get("ProtocolVersion")??F(this.host.protocolVersion)),c=this;async function*f(){for(let u of c.connectionManager.getConnections())(await c.peerStore.get(u.remotePeer)).protocols.includes(c.protocol)&&(yield async()=>{let d,y=AbortSignal.timeout(c.timeout);Lr(1/0,y);try{d=await u.newStream(c.protocol,{signal:y,runOnTransientConnection:c.runOnTransientConnection}),await Tr(d,{maxDataLength:c.maxMessageSize}).pb(Kt).write({listenAddrs:e.map(h=>h.bytes),signedPeerRecord:n.marshal(),protocols:s,agentVersion:i,protocolVersion:a},{signal:y}),await d.close({signal:y})}catch(p){c.log.error("could not push identify update to peer",p),d?.abort(p)}})}await wl(vi(f(),{concurrency:this.concurrency}))}async handleProtocol(e){let{connection:t,stream:n}=e;try{if(this.peerId.equals(t.remotePeer))throw new Error("received push from ourselves?");let s={signal:AbortSignal.timeout(this.timeout)},i=await Tr(n,{maxDataLength:this.maxMessageSize}).pb(Kt).read(s);await n.close(s),await _s(this.peerStore,this.events,this.log,t,i)}catch(s){this.log.error("received invalid message",s),n.abort(s);return}this.log("handled push from %p",t.remotePeer)}};var Xd=r=>r.toString().split("/").slice(1),an=r=>({match:e=>e.length<1?!1:r(e[0])?e.slice(1):!1,pattern:"fn"}),j=r=>({match:e=>an(t=>t===r).match(e),pattern:r}),Ps=()=>({match:r=>an(e=>typeof e=="string").match(r),pattern:"{string}"}),Vs=()=>({match:r=>an(e=>!isNaN(parseInt(e))).match(r),pattern:"{number}"}),xe=()=>({match:r=>{if(r.length<2||r[0]!=="p2p"&&r[0]!=="ipfs")return!1;if(r[1].startsWith("Q")||r[1].startsWith("1"))try{oe.decode(`z${r[1]}`)}catch{return!1}else return!1;return r.slice(2)},pattern:"/p2p/{peerid}"}),Ls=()=>({match:r=>{if(r.length<2||r[0]!=="certhash")return!1;try{no.decode(r[1])}catch{return!1}return r.slice(2)},pattern:"/certhash/{certhash}"}),he=r=>({match:e=>{let t=r.match(e);return t===!1?e:t},pattern:`optional(${r.pattern})`}),Me=(...r)=>({match:e=>{let t;for(let n of r){let s=n.match(e);s!==!1&&(t==null||s.length<t.length)&&(t=s)}return t??!1},pattern:`or(${r.map(e=>e.pattern).join(", ")})`}),J=(...r)=>({match:e=>{for(let t of r){let n=t.match(e);if(n===!1)return!1;e=n}return e},pattern:`and(${r.map(e=>e.pattern).join(", ")})`});function ie(...r){function e(s){let o=Xd(s);for(let i of r){let a=i.match(o);if(a===!1)return!1;o=a}return o}function t(s){return e(s)!==!1}function n(s){let o=e(s);return o===!1?!1:o.length===0}return{matches:t,exactMatch:n}}var Si=J(j("dns4"),Ps()),ki=J(j("dns6"),Ps()),Ni=J(j("dnsaddr"),Ps()),Ml=J(j("dns"),Ps()),ux=ie(Si),fx=ie(ki),hx=ie(Ni),dx=ie(Me(Ml,Ni,Si,ki)),Hl=J(j("ip4"),an(Es)),Fl=J(j("ip6"),an(Bs)),Kl=Me(Hl,Fl),ct=Me(Kl,Ml,Si,ki,Ni),ql=ie(ct),px=ie(Hl),gx=ie(Fl),mx=ie(Kl),Ri=J(ct,j("tcp"),Vs()),cn=J(ct,j("udp"),Vs()),yx=ie(Ri),bx=ie(cn),Ti=J(cn,j("quic")),Os=J(cn,j("quic-v1")),Qd=Me(Ti,Os),wx=ie(Ti),xx=ie(Os),Ii=Me(ct,Ri,cn,Ti,Os),$l=Me(J(Ii,j("ws"),he(xe()))),vx=ie($l),Gl=Me(J(Ii,j("wss"),he(xe())),J(Ii,j("tls"),j("ws"),he(xe()))),Ex=ie(Gl),zl=J(cn,j("webrtc-direct"),he(Ls()),he(Ls()),he(xe())),Bx=ie(zl),jl=J(Os,j("webtransport"),he(Ls()),he(Ls()),he(xe())),Ax=ie(jl),Us=Me($l,Gl,J(Ri,he(xe())),J(Qd,he(xe())),J(ct,he(xe())),zl,jl,xe()),Ix=ie(Us),ep=J(Us,j("p2p-circuit"),xe()),Sx=ie(ep),tp=Me(J(Us,j("p2p-circuit"),j("webrtc"),he(xe())),J(Us,j("webrtc"),he(xe())),j("webrtc")),kx=ie(tp),rp=Me(J(ct,j("tcp"),Vs(),j("http"),he(xe())),J(ct,j("http"),he(xe()))),Nx=ie(rp),np=Me(J(ct,j("tcp"),Me(J(j("443"),j("http")),J(Vs(),j("https"))),he(xe())),J(ct,j("tls"),j("http"),he(xe())),J(ct,j("https"),he(xe()))),Rx=ie(np);var Ds=class extends _r{constructor(e,t={}){super(e,{...t,protocol:`/${t.protocolPrefix??_e.protocolPrefix}/${Il}/${kl}`,log:e.logger.forComponent("libp2p:identify")}),(t.runOnConnectionOpen??_e.runOnConnectionOpen)&&e.events.addEventListener("connection:open",n=>{let s=n.detail;this.identify(s).catch(o=>{this.log.error("error during identify trigged by connection:open",o)})})}[un]=["@libp2p/identify"];async _identify(e,t={}){let n;if(t.signal==null){let s=AbortSignal.timeout(this.timeout);Lr(1/0,s),t={...t,signal:s}}try{n=await e.newStream(this.protocol,{...t,runOnTransientConnection:this.runOnTransientConnection});let o=await Tr(n,{maxDataLength:this.maxMessageSize}).pb(Kt).read(t);return await n.close(t),o}catch(s){throw this.log.error("error while reading identify message",s),n?.abort(s),s}}async identify(e,t={}){let n=await this._identify(e,t),{publicKey:s,protocols:o,observedAddr:i}=n;if(s==null)throw new C("public key was missing from identify message","ERR_MISSING_PUBLIC_KEY");let a=await kr(s);if(!e.remotePeer.equals(a))throw new C("identified peer does not match the expected peer","ERR_INVALID_PEER");if(this.peerId.equals(a))throw new C("identified peer is our own peer id?","ERR_INVALID_PEER");let c=Dl(i);return this.log("identify completed for peer %p and protocols %o",a,o),this.log("our observed address is %a",c),c!=null&&this.addressManager.getObservedAddrs().length<(this.maxObservedAddresses??1/0)&&(this.log("storing our observed address %a",c),this.addressManager.addObservedAddr(c)),_s(this.peerStore,this.events,this.log,e,n)}async handleProtocol(e){let{connection:t,stream:n}=e,s=AbortSignal.timeout(this.timeout);Lr(1/0,s);try{let o=this.peerId.publicKey??new Uint8Array(0),i=await this.peerStore.get(this.peerId),a=this.addressManager.getAddresses().map(l=>l.decapsulateCode(z("p2p").code)),c=i.peerRecordEnvelope;if(a.length>0&&c==null){let l=new Je({peerId:this.peerId,multiaddrs:a});c=(await it.seal(l,this.peerId)).marshal().subarray()}let f=t.remoteAddr.bytes;ql.matches(t.remoteAddr)||(f=void 0),await Tr(n).pb(Kt).write({protocolVersion:this.host.protocolVersion,agentVersion:this.host.agentVersion,publicKey:o,listenAddrs:a.map(l=>l.bytes),signedPeerRecord:c,observedAddr:f,protocols:i.protocols},{signal:s}),await n.close({signal:s})}catch(o){this.log.error("could not respond to identify request",o),n.abort(o)}}};function sp(r={}){return e=>new Ds(e,r)}function op(r={}){return e=>new Cs(e,r)}return au(ip);})();
|
|
8
8
|
/*! Bundled license information:
|
|
9
9
|
|
|
10
10
|
pvtsutils/build/index.js:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/identify",
|
|
3
|
-
"version": "2.1.0-
|
|
3
|
+
"version": "2.1.0-6573cb8b0",
|
|
4
4
|
"description": "Implementation of the Identify Protocol",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/protocol-identify#readme",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"doc-check": "aegir doc-check"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@libp2p/interface": "1.5.0-
|
|
56
|
-
"@libp2p/interface-internal": "1.2.4-
|
|
57
|
-
"@libp2p/peer-id": "4.1.4-
|
|
58
|
-
"@libp2p/peer-record": "7.0.20-
|
|
55
|
+
"@libp2p/interface": "1.5.0-6573cb8b0",
|
|
56
|
+
"@libp2p/interface-internal": "1.2.4-6573cb8b0",
|
|
57
|
+
"@libp2p/peer-id": "4.1.4-6573cb8b0",
|
|
58
|
+
"@libp2p/peer-record": "7.0.20-6573cb8b0",
|
|
59
59
|
"@multiformats/multiaddr": "^12.2.3",
|
|
60
60
|
"@multiformats/multiaddr-matcher": "^1.2.1",
|
|
61
61
|
"it-drain": "^3.0.7",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"wherearewe": "^2.0.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@libp2p/interface-compliance-tests": "5.4.7-
|
|
71
|
-
"@libp2p/logger": "4.0.15-
|
|
72
|
-
"@libp2p/peer-id-factory": "4.1.4-
|
|
70
|
+
"@libp2p/interface-compliance-tests": "5.4.7-6573cb8b0",
|
|
71
|
+
"@libp2p/logger": "4.0.15-6573cb8b0",
|
|
72
|
+
"@libp2p/peer-id-factory": "4.1.4-6573cb8b0",
|
|
73
73
|
"aegir": "^43.0.1",
|
|
74
74
|
"delay": "^6.0.0",
|
|
75
75
|
"it-length-prefixed": "^9.0.4",
|