@helia/unixfs 0.0.0
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/LICENSE +4 -0
- package/README.md +53 -0
- package/dist/index.min.js +3 -0
- package/dist/src/commands/add.d.ts +6 -0
- package/dist/src/commands/add.d.ts.map +1 -0
- package/dist/src/commands/add.js +38 -0
- package/dist/src/commands/add.js.map +1 -0
- package/dist/src/commands/cat.d.ts +5 -0
- package/dist/src/commands/cat.d.ts.map +1 -0
- package/dist/src/commands/cat.js +22 -0
- package/dist/src/commands/cat.js.map +1 -0
- package/dist/src/commands/chmod.d.ts +5 -0
- package/dist/src/commands/chmod.d.ts.map +1 -0
- package/dist/src/commands/chmod.js +108 -0
- package/dist/src/commands/chmod.js.map +1 -0
- package/dist/src/commands/cp.d.ts +5 -0
- package/dist/src/commands/cp.d.ts.map +1 -0
- package/dist/src/commands/cp.js +28 -0
- package/dist/src/commands/cp.js.map +1 -0
- package/dist/src/commands/ls.d.ts +5 -0
- package/dist/src/commands/ls.d.ts.map +1 -0
- package/dist/src/commands/ls.js +26 -0
- package/dist/src/commands/ls.js.map +1 -0
- package/dist/src/commands/mkdir.d.ts +5 -0
- package/dist/src/commands/mkdir.d.ts.map +1 -0
- package/dist/src/commands/mkdir.js +53 -0
- package/dist/src/commands/mkdir.js.map +1 -0
- package/dist/src/commands/rm.d.ts +5 -0
- package/dist/src/commands/rm.d.ts.map +1 -0
- package/dist/src/commands/rm.js +19 -0
- package/dist/src/commands/rm.js.map +1 -0
- package/dist/src/commands/stat.d.ts +5 -0
- package/dist/src/commands/stat.d.ts.map +1 -0
- package/dist/src/commands/stat.js +108 -0
- package/dist/src/commands/stat.js.map +1 -0
- package/dist/src/commands/touch.d.ts +5 -0
- package/dist/src/commands/touch.d.ts.map +1 -0
- package/dist/src/commands/touch.js +111 -0
- package/dist/src/commands/touch.js.map +1 -0
- package/dist/src/commands/utils/add-link.d.ts +21 -0
- package/dist/src/commands/utils/add-link.d.ts.map +1 -0
- package/dist/src/commands/utils/add-link.js +224 -0
- package/dist/src/commands/utils/add-link.js.map +1 -0
- package/dist/src/commands/utils/cid-to-directory.d.ts +10 -0
- package/dist/src/commands/utils/cid-to-directory.d.ts.map +1 -0
- package/dist/src/commands/utils/cid-to-directory.js +13 -0
- package/dist/src/commands/utils/cid-to-directory.js.map +1 -0
- package/dist/src/commands/utils/cid-to-pblink.d.ts +6 -0
- package/dist/src/commands/utils/cid-to-pblink.d.ts.map +1 -0
- package/dist/src/commands/utils/cid-to-pblink.js +19 -0
- package/dist/src/commands/utils/cid-to-pblink.js.map +1 -0
- package/dist/src/commands/utils/dir-sharded.d.ts +67 -0
- package/dist/src/commands/utils/dir-sharded.d.ts.map +1 -0
- package/dist/src/commands/utils/dir-sharded.js +136 -0
- package/dist/src/commands/utils/dir-sharded.js.map +1 -0
- package/dist/src/commands/utils/errors.d.ts +17 -0
- package/dist/src/commands/utils/errors.d.ts.map +1 -0
- package/dist/src/commands/utils/errors.js +27 -0
- package/dist/src/commands/utils/errors.js.map +1 -0
- package/dist/src/commands/utils/hamt-constants.d.ts +4 -0
- package/dist/src/commands/utils/hamt-constants.d.ts.map +1 -0
- package/dist/src/commands/utils/hamt-constants.js +13 -0
- package/dist/src/commands/utils/hamt-constants.js.map +1 -0
- package/dist/src/commands/utils/hamt-utils.d.ts +37 -0
- package/dist/src/commands/utils/hamt-utils.d.ts.map +1 -0
- package/dist/src/commands/utils/hamt-utils.js +202 -0
- package/dist/src/commands/utils/hamt-utils.js.map +1 -0
- package/dist/src/commands/utils/persist.d.ts +10 -0
- package/dist/src/commands/utils/persist.d.ts.map +1 -0
- package/dist/src/commands/utils/persist.js +12 -0
- package/dist/src/commands/utils/persist.js.map +1 -0
- package/dist/src/commands/utils/remove-link.d.ts +11 -0
- package/dist/src/commands/utils/remove-link.d.ts.map +1 -0
- package/dist/src/commands/utils/remove-link.js +92 -0
- package/dist/src/commands/utils/remove-link.js.map +1 -0
- package/dist/src/commands/utils/resolve.d.ts +28 -0
- package/dist/src/commands/utils/resolve.d.ts.map +1 -0
- package/dist/src/commands/utils/resolve.js +85 -0
- package/dist/src/commands/utils/resolve.js.map +1 -0
- package/dist/src/index.d.ts +97 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +48 -0
- package/dist/src/index.js.map +1 -0
- package/package.json +166 -0
- package/src/commands/add.ts +46 -0
- package/src/commands/cat.ts +31 -0
- package/src/commands/chmod.ts +133 -0
- package/src/commands/cp.ts +41 -0
- package/src/commands/ls.ts +36 -0
- package/src/commands/mkdir.ts +71 -0
- package/src/commands/rm.ts +31 -0
- package/src/commands/stat.ts +137 -0
- package/src/commands/touch.ts +136 -0
- package/src/commands/utils/add-link.ts +319 -0
- package/src/commands/utils/cid-to-directory.ts +23 -0
- package/src/commands/utils/cid-to-pblink.ts +26 -0
- package/src/commands/utils/dir-sharded.ts +219 -0
- package/src/commands/utils/errors.ts +31 -0
- package/src/commands/utils/hamt-constants.ts +14 -0
- package/src/commands/utils/hamt-utils.ts +285 -0
- package/src/commands/utils/persist.ts +22 -0
- package/src/commands/utils/remove-link.ts +151 -0
- package/src/commands/utils/resolve.ts +130 -0
- package/src/index.ts +174 -0
package/LICENSE
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# @helia/unixfs <!-- omit in toc -->
|
|
2
|
+
|
|
3
|
+
[](https://ipfs.tech)
|
|
4
|
+
[](https://discuss.ipfs.tech)
|
|
5
|
+
[](https://codecov.io/gh/ipfs/helia)
|
|
6
|
+
[](https://github.com/ipfs/helia/actions/workflows/js-test-and-release.yml?query=branch%3Amain)
|
|
7
|
+
|
|
8
|
+
> A Helia-compatible wrapper for UnixFS
|
|
9
|
+
|
|
10
|
+
## Table of contents <!-- omit in toc -->
|
|
11
|
+
|
|
12
|
+
- [Install](#install)
|
|
13
|
+
- [Browser `<script>` tag](#browser-script-tag)
|
|
14
|
+
- [API Docs](#api-docs)
|
|
15
|
+
- [License](#license)
|
|
16
|
+
- [Contribute](#contribute)
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```console
|
|
21
|
+
$ npm i @helia/unixfs
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Browser `<script>` tag
|
|
25
|
+
|
|
26
|
+
Loading this module through a script tag will make it's exports available as `HeliaUnixfs` in the global namespace.
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<script src="https://unpkg.com/@helia/unixfs/dist/index.min.js"></script>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## API Docs
|
|
33
|
+
|
|
34
|
+
- <https://ipfs.github.io/helia/modules/_helia_unixfs.html>
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
Licensed under either of
|
|
39
|
+
|
|
40
|
+
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
|
41
|
+
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
|
42
|
+
|
|
43
|
+
## Contribute
|
|
44
|
+
|
|
45
|
+
Contributions welcome! Please check out [the issues](https://github.com/ipfs/helia/issues).
|
|
46
|
+
|
|
47
|
+
Also see our [contributing document](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md) for more information on how we work, and about contributing in general.
|
|
48
|
+
|
|
49
|
+
Please be aware that all interactions related to this repo are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
|
|
50
|
+
|
|
51
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
|
|
52
|
+
|
|
53
|
+
[](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
(function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.HeliaUnixfs = factory()}(typeof self !== 'undefined' ? self : this, function () {
|
|
2
|
+
"use strict";var HeliaUnixfs=(()=>{var Vu=Object.create;var Lr=Object.defineProperty;var ju=Object.getOwnPropertyDescriptor;var Hu=Object.getOwnPropertyNames;var Gu=Object.getPrototypeOf,Wu=Object.prototype.hasOwnProperty;var U=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),oe=(r,e)=>{for(var t in e)Lr(r,t,{get:e[t],enumerable:!0})},io=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Hu(e))!Wu.call(r,i)&&i!==t&&Lr(r,i,{get:()=>e[i],enumerable:!(n=ju(e,i))||n.enumerable});return r};var Y=(r,e,t)=>(t=r!=null?Vu(Gu(r)):{},io(e||!r||!r.__esModule?Lr(t,"default",{value:r,enumerable:!0}):t,r)),qu=r=>io(Lr({},"__esModule",{value:!0}),r);var so=U((wd,oo)=>{"use strict";oo.exports=r=>{if(Object.prototype.toString.call(r)!=="[object Object]")return!1;let e=Object.getPrototypeOf(r);return e===null||e===Object.prototype}});var ho=U((fo,lo)=>{"use strict";var Ir=so(),{hasOwnProperty:co}=Object.prototype,{propertyIsEnumerable:Yu}=Object,At=(r,e,t)=>Object.defineProperty(r,e,{value:t,writable:!0,enumerable:!0,configurable:!0}),Qu=fo,ao={concatArrays:!1,ignoreUndefined:!1},Pr=r=>{let e=[];for(let t in r)co.call(r,t)&&e.push(t);if(Object.getOwnPropertySymbols){let t=Object.getOwnPropertySymbols(r);for(let n of t)Yu.call(r,n)&&e.push(n)}return e};function Et(r){return Array.isArray(r)?Ku(r):Ir(r)?Ju(r):r}function Ku(r){let e=r.slice(0,0);return Pr(r).forEach(t=>{At(e,t,Et(r[t]))}),e}function Ju(r){let e=Object.getPrototypeOf(r)===null?Object.create(null):{};return Pr(r).forEach(t=>{At(e,t,Et(r[t]))}),e}var uo=(r,e,t,n)=>(t.forEach(i=>{typeof e[i]>"u"&&n.ignoreUndefined||(i in r&&r[i]!==Object.getPrototypeOf(r)?At(r,i,Nn(r[i],e[i],n)):At(r,i,Et(e[i])))}),r),Zu=(r,e,t)=>{let n=r.slice(0,0),i=0;return[r,e].forEach(o=>{let s=[];for(let c=0;c<o.length;c++)co.call(o,c)&&(s.push(String(c)),o===r?At(n,i++,o[c]):At(n,i++,Et(o[c])));n=uo(n,o,Pr(o).filter(c=>!s.includes(c)),t)}),n};function Nn(r,e,t){return t.concatArrays&&Array.isArray(r)&&Array.isArray(e)?Zu(r,e,t):!Ir(e)||!Ir(r)?Et(e):uo(r,e,Pr(e),t)}lo.exports=function(...r){let e=Nn(Et(ao),this!==Qu&&this||{},ao),t={_:{}};for(let n of r)if(n!==void 0){if(!Ir(n))throw new TypeError("`"+n+"` is not an Option Object");t=Nn(t,{_:n},e)}return t._}});var To=U((or,zr)=>{(function(r,e){"use strict";var t={version:"3.0.0",x86:{},x64:{},inputValidation:!0};function n(f){if(!Array.isArray(f)&&!ArrayBuffer.isView(f))return!1;for(var d=0;d<f.length;d++)if(!Number.isInteger(f[d])||f[d]<0||f[d]>255)return!1;return!0}function i(f,d){return(f&65535)*d+(((f>>>16)*d&65535)<<16)}function o(f,d){return f<<d|f>>>32-d}function s(f){return f^=f>>>16,f=i(f,2246822507),f^=f>>>13,f=i(f,3266489909),f^=f>>>16,f}function c(f,d){f=[f[0]>>>16,f[0]&65535,f[1]>>>16,f[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=f[3]+d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=f[2]+d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=f[1]+d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=f[0]+d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function a(f,d){f=[f[0]>>>16,f[0]&65535,f[1]>>>16,f[1]&65535],d=[d[0]>>>16,d[0]&65535,d[1]>>>16,d[1]&65535];var m=[0,0,0,0];return m[3]+=f[3]*d[3],m[2]+=m[3]>>>16,m[3]&=65535,m[2]+=f[2]*d[3],m[1]+=m[2]>>>16,m[2]&=65535,m[2]+=f[3]*d[2],m[1]+=m[2]>>>16,m[2]&=65535,m[1]+=f[1]*d[3],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=f[2]*d[2],m[0]+=m[1]>>>16,m[1]&=65535,m[1]+=f[3]*d[1],m[0]+=m[1]>>>16,m[1]&=65535,m[0]+=f[0]*d[3]+f[1]*d[2]+f[2]*d[1]+f[3]*d[0],m[0]&=65535,[m[0]<<16|m[1],m[2]<<16|m[3]]}function l(f,d){return d%=64,d===32?[f[1],f[0]]:d<32?[f[0]<<d|f[1]>>>32-d,f[1]<<d|f[0]>>>32-d]:(d-=32,[f[1]<<d|f[0]>>>32-d,f[0]<<d|f[1]>>>32-d])}function u(f,d){return d%=64,d===0?f:d<32?[f[0]<<d|f[1]>>>32-d,f[1]<<d]:[f[1]<<d-32,0]}function h(f,d){return[f[0]^d[0],f[1]^d[1]]}function p(f){return f=h(f,[0,f[0]>>>1]),f=a(f,[4283543511,3981806797]),f=h(f,[0,f[0]>>>1]),f=a(f,[3301882366,444984403]),f=h(f,[0,f[0]>>>1]),f}t.x86.hash32=function(f,d){if(t.inputValidation&&!n(f))return e;d=d||0;for(var m=f.length%4,E=f.length-m,g=d,b=0,_=3432918353,x=461845907,C=0;C<E;C=C+4)b=f[C]|f[C+1]<<8|f[C+2]<<16|f[C+3]<<24,b=i(b,_),b=o(b,15),b=i(b,x),g^=b,g=o(g,13),g=i(g,5)+3864292196;switch(b=0,m){case 3:b^=f[C+2]<<16;case 2:b^=f[C+1]<<8;case 1:b^=f[C],b=i(b,_),b=o(b,15),b=i(b,x),g^=b}return g^=f.length,g=s(g),g>>>0},t.x86.hash128=function(f,d){if(t.inputValidation&&!n(f))return e;d=d||0;for(var m=f.length%16,E=f.length-m,g=d,b=d,_=d,x=d,C=0,v=0,w=0,S=0,I=597399067,$=2869860233,X=951274213,ve=2716044179,P=0;P<E;P=P+16)C=f[P]|f[P+1]<<8|f[P+2]<<16|f[P+3]<<24,v=f[P+4]|f[P+5]<<8|f[P+6]<<16|f[P+7]<<24,w=f[P+8]|f[P+9]<<8|f[P+10]<<16|f[P+11]<<24,S=f[P+12]|f[P+13]<<8|f[P+14]<<16|f[P+15]<<24,C=i(C,I),C=o(C,15),C=i(C,$),g^=C,g=o(g,19),g+=b,g=i(g,5)+1444728091,v=i(v,$),v=o(v,16),v=i(v,X),b^=v,b=o(b,17),b+=_,b=i(b,5)+197830471,w=i(w,X),w=o(w,17),w=i(w,ve),_^=w,_=o(_,15),_+=x,_=i(_,5)+2530024501,S=i(S,ve),S=o(S,18),S=i(S,I),x^=S,x=o(x,13),x+=g,x=i(x,5)+850148119;switch(C=0,v=0,w=0,S=0,m){case 15:S^=f[P+14]<<16;case 14:S^=f[P+13]<<8;case 13:S^=f[P+12],S=i(S,ve),S=o(S,18),S=i(S,I),x^=S;case 12:w^=f[P+11]<<24;case 11:w^=f[P+10]<<16;case 10:w^=f[P+9]<<8;case 9:w^=f[P+8],w=i(w,X),w=o(w,17),w=i(w,ve),_^=w;case 8:v^=f[P+7]<<24;case 7:v^=f[P+6]<<16;case 6:v^=f[P+5]<<8;case 5:v^=f[P+4],v=i(v,$),v=o(v,16),v=i(v,X),b^=v;case 4:C^=f[P+3]<<24;case 3:C^=f[P+2]<<16;case 2:C^=f[P+1]<<8;case 1:C^=f[P],C=i(C,I),C=o(C,15),C=i(C,$),g^=C}return g^=f.length,b^=f.length,_^=f.length,x^=f.length,g+=b,g+=_,g+=x,b+=g,_+=g,x+=g,g=s(g),b=s(b),_=s(_),x=s(x),g+=b,g+=_,g+=x,b+=g,_+=g,x+=g,("00000000"+(g>>>0).toString(16)).slice(-8)+("00000000"+(b>>>0).toString(16)).slice(-8)+("00000000"+(_>>>0).toString(16)).slice(-8)+("00000000"+(x>>>0).toString(16)).slice(-8)},t.x64.hash128=function(f,d){if(t.inputValidation&&!n(f))return e;d=d||0;for(var m=f.length%16,E=f.length-m,g=[0,d],b=[0,d],_=[0,0],x=[0,0],C=[2277735313,289559509],v=[1291169091,658871167],w=0;w<E;w=w+16)_=[f[w+4]|f[w+5]<<8|f[w+6]<<16|f[w+7]<<24,f[w]|f[w+1]<<8|f[w+2]<<16|f[w+3]<<24],x=[f[w+12]|f[w+13]<<8|f[w+14]<<16|f[w+15]<<24,f[w+8]|f[w+9]<<8|f[w+10]<<16|f[w+11]<<24],_=a(_,C),_=l(_,31),_=a(_,v),g=h(g,_),g=l(g,27),g=c(g,b),g=c(a(g,[0,5]),[0,1390208809]),x=a(x,v),x=l(x,33),x=a(x,C),b=h(b,x),b=l(b,31),b=c(b,g),b=c(a(b,[0,5]),[0,944331445]);switch(_=[0,0],x=[0,0],m){case 15:x=h(x,u([0,f[w+14]],48));case 14:x=h(x,u([0,f[w+13]],40));case 13:x=h(x,u([0,f[w+12]],32));case 12:x=h(x,u([0,f[w+11]],24));case 11:x=h(x,u([0,f[w+10]],16));case 10:x=h(x,u([0,f[w+9]],8));case 9:x=h(x,[0,f[w+8]]),x=a(x,v),x=l(x,33),x=a(x,C),b=h(b,x);case 8:_=h(_,u([0,f[w+7]],56));case 7:_=h(_,u([0,f[w+6]],48));case 6:_=h(_,u([0,f[w+5]],40));case 5:_=h(_,u([0,f[w+4]],32));case 4:_=h(_,u([0,f[w+3]],24));case 3:_=h(_,u([0,f[w+2]],16));case 2:_=h(_,u([0,f[w+1]],8));case 1:_=h(_,[0,f[w]]),_=a(_,C),_=l(_,31),_=a(_,v),g=h(g,_)}return g=h(g,[0,f.length]),b=h(b,[0,f.length]),g=c(g,b),b=c(b,g),g=p(g),b=p(b),g=c(g,b),b=c(b,g),("00000000"+(g[0]>>>0).toString(16)).slice(-8)+("00000000"+(g[1]>>>0).toString(16)).slice(-8)+("00000000"+(b[0]>>>0).toString(16)).slice(-8)+("00000000"+(b[1]>>>0).toString(16)).slice(-8)},typeof or<"u"?(typeof zr<"u"&&zr.exports&&(or=zr.exports=t),or.murmurHash3=t):typeof define=="function"&&define.amd?define([],function(){return t}):(t._murmurHash3=r.murmurHash3,t.noConflict=function(){return r.murmurHash3=t._murmurHash3,t._murmurHash3=e,t.noConflict=e,t},r.murmurHash3=t)})(or)});var Co=U((zd,Bo)=>{Bo.exports=To()});var le=U((Yd,Fo)=>{"use strict";function Do(r,e){for(let t in e)Object.defineProperty(r,t,{value:e[t],enumerable:!0,configurable:!0});return r}function Hf(r,e,t){if(!r||typeof r=="string")throw new TypeError("Please pass an Error to err-code");t||(t={}),typeof e=="object"&&(t=e,e=""),e&&(t.code=e);try{return Do(r,t)}catch{t.message=r.message,t.stack=r.stack;let i=function(){};return i.prototype=Object.create(Object.getPrototypeOf(r)),Do(new i,t)}}Fo.exports=Hf});var Io=U((Qd,Lo)=>{"use strict";Lo.exports=Gf;function Gf(r,e){for(var t=new Array(arguments.length-1),n=0,i=2,o=!0;i<arguments.length;)t[n++]=arguments[i++];return new Promise(function(c,a){t[n]=function(u){if(o)if(o=!1,u)a(u);else{for(var h=new Array(arguments.length-1),p=0;p<h.length;)h[p++]=arguments[p];c.apply(null,h)}};try{r.apply(e||null,t)}catch(l){o&&(o=!1,a(l))}})}});var zo=U(Uo=>{"use strict";var $r=Uo;$r.length=function(e){var t=e.length;if(!t)return 0;for(var n=0;--t%4>1&&e.charAt(t)==="=";)++n;return Math.ceil(e.length*3)/4-n};var Dt=new Array(64),Oo=new Array(123);for(Ne=0;Ne<64;)Oo[Dt[Ne]=Ne<26?Ne+65:Ne<52?Ne+71:Ne<62?Ne-4:Ne-59|43]=Ne++;var Ne;$r.encode=function(e,t,n){for(var i=null,o=[],s=0,c=0,a;t<n;){var l=e[t++];switch(c){case 0:o[s++]=Dt[l>>2],a=(l&3)<<4,c=1;break;case 1:o[s++]=Dt[a|l>>4],a=(l&15)<<2,c=2;break;case 2:o[s++]=Dt[a|l>>6],o[s++]=Dt[l&63],c=0;break}s>8191&&((i||(i=[])).push(String.fromCharCode.apply(String,o)),s=0)}return c&&(o[s++]=Dt[a],o[s++]=61,c===1&&(o[s++]=61)),i?(s&&i.push(String.fromCharCode.apply(String,o.slice(0,s))),i.join("")):String.fromCharCode.apply(String,o.slice(0,s))};var Po="invalid encoding";$r.decode=function(e,t,n){for(var i=n,o=0,s,c=0;c<e.length;){var a=e.charCodeAt(c++);if(a===61&&o>1)break;if((a=Oo[a])===void 0)throw Error(Po);switch(o){case 0:s=a,o=1;break;case 1:t[n++]=s<<2|(a&48)>>4,s=a,o=2;break;case 2:t[n++]=(s&15)<<4|(a&60)>>2,s=a,o=3;break;case 3:t[n++]=(s&3)<<6|a,o=0;break}}if(o===1)throw Error(Po);return n-i};$r.test=function(e){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(e)}});var $o=U((Jd,Ro)=>{"use strict";Ro.exports=Mr;function Mr(){this._listeners={}}Mr.prototype.on=function(e,t,n){return(this._listeners[e]||(this._listeners[e]=[])).push({fn:t,ctx:n||this}),this};Mr.prototype.off=function(e,t){if(e===void 0)this._listeners={};else if(t===void 0)this._listeners[e]=[];else for(var n=this._listeners[e],i=0;i<n.length;)n[i].fn===t?n.splice(i,1):++i;return this};Mr.prototype.emit=function(e){var t=this._listeners[e];if(t){for(var n=[],i=1;i<arguments.length;)n.push(arguments[i++]);for(i=0;i<t.length;)t[i].fn.apply(t[i++].ctx,n)}return this}});var qo=U((Zd,Wo)=>{"use strict";Wo.exports=Mo(Mo);function Mo(r){return typeof Float32Array<"u"?function(){var e=new Float32Array([-0]),t=new Uint8Array(e.buffer),n=t[3]===128;function i(a,l,u){e[0]=a,l[u]=t[0],l[u+1]=t[1],l[u+2]=t[2],l[u+3]=t[3]}function o(a,l,u){e[0]=a,l[u]=t[3],l[u+1]=t[2],l[u+2]=t[1],l[u+3]=t[0]}r.writeFloatLE=n?i:o,r.writeFloatBE=n?o:i;function s(a,l){return t[0]=a[l],t[1]=a[l+1],t[2]=a[l+2],t[3]=a[l+3],e[0]}function c(a,l){return t[3]=a[l],t[2]=a[l+1],t[1]=a[l+2],t[0]=a[l+3],e[0]}r.readFloatLE=n?s:c,r.readFloatBE=n?c:s}():function(){function e(n,i,o,s){var c=i<0?1:0;if(c&&(i=-i),i===0)n(1/i>0?0:2147483648,o,s);else if(isNaN(i))n(2143289344,o,s);else if(i>34028234663852886e22)n((c<<31|2139095040)>>>0,o,s);else if(i<11754943508222875e-54)n((c<<31|Math.round(i/1401298464324817e-60))>>>0,o,s);else{var a=Math.floor(Math.log(i)/Math.LN2),l=Math.round(i*Math.pow(2,-a)*8388608)&8388607;n((c<<31|a+127<<23|l)>>>0,o,s)}}r.writeFloatLE=e.bind(null,Vo),r.writeFloatBE=e.bind(null,jo);function t(n,i,o){var s=n(i,o),c=(s>>31)*2+1,a=s>>>23&255,l=s&8388607;return a===255?l?NaN:c*(1/0):a===0?c*1401298464324817e-60*l:c*Math.pow(2,a-150)*(l+8388608)}r.readFloatLE=t.bind(null,Ho),r.readFloatBE=t.bind(null,Go)}(),typeof Float64Array<"u"?function(){var e=new Float64Array([-0]),t=new Uint8Array(e.buffer),n=t[7]===128;function i(a,l,u){e[0]=a,l[u]=t[0],l[u+1]=t[1],l[u+2]=t[2],l[u+3]=t[3],l[u+4]=t[4],l[u+5]=t[5],l[u+6]=t[6],l[u+7]=t[7]}function o(a,l,u){e[0]=a,l[u]=t[7],l[u+1]=t[6],l[u+2]=t[5],l[u+3]=t[4],l[u+4]=t[3],l[u+5]=t[2],l[u+6]=t[1],l[u+7]=t[0]}r.writeDoubleLE=n?i:o,r.writeDoubleBE=n?o:i;function s(a,l){return t[0]=a[l],t[1]=a[l+1],t[2]=a[l+2],t[3]=a[l+3],t[4]=a[l+4],t[5]=a[l+5],t[6]=a[l+6],t[7]=a[l+7],e[0]}function c(a,l){return t[7]=a[l],t[6]=a[l+1],t[5]=a[l+2],t[4]=a[l+3],t[3]=a[l+4],t[2]=a[l+5],t[1]=a[l+6],t[0]=a[l+7],e[0]}r.readDoubleLE=n?s:c,r.readDoubleBE=n?c:s}():function(){function e(n,i,o,s,c,a){var l=s<0?1:0;if(l&&(s=-s),s===0)n(0,c,a+i),n(1/s>0?0:2147483648,c,a+o);else if(isNaN(s))n(0,c,a+i),n(2146959360,c,a+o);else if(s>17976931348623157e292)n(0,c,a+i),n((l<<31|2146435072)>>>0,c,a+o);else{var u;if(s<22250738585072014e-324)u=s/5e-324,n(u>>>0,c,a+i),n((l<<31|u/4294967296)>>>0,c,a+o);else{var h=Math.floor(Math.log(s)/Math.LN2);h===1024&&(h=1023),u=s*Math.pow(2,-h),n(u*4503599627370496>>>0,c,a+i),n((l<<31|h+1023<<20|u*1048576&1048575)>>>0,c,a+o)}}}r.writeDoubleLE=e.bind(null,Vo,0,4),r.writeDoubleBE=e.bind(null,jo,4,0);function t(n,i,o,s,c){var a=n(s,c+i),l=n(s,c+o),u=(l>>31)*2+1,h=l>>>20&2047,p=4294967296*(l&1048575)+a;return h===2047?p?NaN:u*(1/0):h===0?u*5e-324*p:u*Math.pow(2,h-1075)*(p+4503599627370496)}r.readDoubleLE=t.bind(null,Ho,0,4),r.readDoubleBE=t.bind(null,Go,4,0)}(),r}function Vo(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 jo(r,e,t){e[t]=r>>>24,e[t+1]=r>>>16&255,e[t+2]=r>>>8&255,e[t+3]=r&255}function Ho(r,e){return(r[e]|r[e+1]<<8|r[e+2]<<16|r[e+3]<<24)>>>0}function Go(r,e){return(r[e]<<24|r[e+1]<<16|r[e+2]<<8|r[e+3])>>>0}});var Yo=U((exports,module)=>{"use strict";module.exports=inquire;function inquire(moduleName){try{var mod=eval("quire".replace(/^/,"re"))(moduleName);if(mod&&(mod.length||Object.keys(mod).length))return mod}catch(r){}return null}});var Ko=U(Qo=>{"use strict";var Hn=Qo;Hn.length=function(e){for(var t=0,n=0,i=0;i<e.length;++i)n=e.charCodeAt(i),n<128?t+=1:n<2048?t+=2:(n&64512)===55296&&(e.charCodeAt(i+1)&64512)===56320?(++i,t+=4):t+=3;return t};Hn.read=function(e,t,n){var i=n-t;if(i<1)return"";for(var o=null,s=[],c=0,a;t<n;)a=e[t++],a<128?s[c++]=a:a>191&&a<224?s[c++]=(a&31)<<6|e[t++]&63:a>239&&a<365?(a=((a&7)<<18|(e[t++]&63)<<12|(e[t++]&63)<<6|e[t++]&63)-65536,s[c++]=55296+(a>>10),s[c++]=56320+(a&1023)):s[c++]=(a&15)<<12|(e[t++]&63)<<6|e[t++]&63,c>8191&&((o||(o=[])).push(String.fromCharCode.apply(String,s)),c=0);return o?(c&&o.push(String.fromCharCode.apply(String,s.slice(0,c))),o.join("")):String.fromCharCode.apply(String,s.slice(0,c))};Hn.write=function(e,t,n){for(var i=n,o,s,c=0;c<e.length;++c)o=e.charCodeAt(c),o<128?t[n++]=o:o<2048?(t[n++]=o>>6|192,t[n++]=o&63|128):(o&64512)===55296&&((s=e.charCodeAt(c+1))&64512)===56320?(o=65536+((o&1023)<<10)+(s&1023),++c,t[n++]=o>>18|240,t[n++]=o>>12&63|128,t[n++]=o>>6&63|128,t[n++]=o&63|128):(t[n++]=o>>12|224,t[n++]=o>>6&63|128,t[n++]=o&63|128);return n-i}});var Zo=U((e0,Jo)=>{"use strict";Jo.exports=Wf;function Wf(r,e,t){var n=t||8192,i=n>>>1,o=null,s=n;return function(a){if(a<1||a>i)return r(a);s+a>n&&(o=r(n),s=0);var l=e.call(o,s,s+=a);return s&7&&(s=(s|7)+1),l}}});var es=U((t0,Xo)=>{"use strict";Xo.exports=te;var sr=Ze();function te(r,e){this.lo=r>>>0,this.hi=e>>>0}var ht=te.zero=new te(0,0);ht.toNumber=function(){return 0};ht.zzEncode=ht.zzDecode=function(){return this};ht.length=function(){return 1};var qf=te.zeroHash="\0\0\0\0\0\0\0\0";te.fromNumber=function(e){if(e===0)return ht;var t=e<0;t&&(e=-e);var n=e>>>0,i=(e-n)/4294967296>>>0;return t&&(i=~i>>>0,n=~n>>>0,++n>4294967295&&(n=0,++i>4294967295&&(i=0))),new te(n,i)};te.from=function(e){if(typeof e=="number")return te.fromNumber(e);if(sr.isString(e))if(sr.Long)e=sr.Long.fromString(e);else return te.fromNumber(parseInt(e,10));return e.low||e.high?new te(e.low>>>0,e.high>>>0):ht};te.prototype.toNumber=function(e){if(!e&&this.hi>>>31){var t=~this.lo+1>>>0,n=~this.hi>>>0;return t||(n=n+1>>>0),-(t+n*4294967296)}return this.lo+this.hi*4294967296};te.prototype.toLong=function(e){return sr.Long?new sr.Long(this.lo|0,this.hi|0,Boolean(e)):{low:this.lo|0,high:this.hi|0,unsigned:Boolean(e)}};var Je=String.prototype.charCodeAt;te.fromHash=function(e){return e===qf?ht:new te((Je.call(e,0)|Je.call(e,1)<<8|Je.call(e,2)<<16|Je.call(e,3)<<24)>>>0,(Je.call(e,4)|Je.call(e,5)<<8|Je.call(e,6)<<16|Je.call(e,7)<<24)>>>0)};te.prototype.toHash=function(){return String.fromCharCode(this.lo&255,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,this.hi&255,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)};te.prototype.zzEncode=function(){var e=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^e)>>>0,this.lo=(this.lo<<1^e)>>>0,this};te.prototype.zzDecode=function(){var e=-(this.lo&1);return this.lo=((this.lo>>>1|this.hi<<31)^e)>>>0,this.hi=(this.hi>>>1^e)>>>0,this};te.prototype.length=function(){var 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}});var Ze=U(Gn=>{"use strict";var B=Gn;B.asPromise=Io();B.base64=zo();B.EventEmitter=$o();B.float=qo();B.inquire=Yo();B.utf8=Ko();B.pool=Zo();B.LongBits=es();B.isNode=Boolean(typeof globalThis<"u"&&globalThis&&globalThis.process&&globalThis.process.versions&&globalThis.process.versions.node);B.global=B.isNode&&globalThis||typeof window<"u"&&window||typeof self<"u"&&self||Gn;B.emptyArray=Object.freeze?Object.freeze([]):[];B.emptyObject=Object.freeze?Object.freeze({}):{};B.isInteger=Number.isInteger||function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e};B.isString=function(e){return typeof e=="string"||e instanceof String};B.isObject=function(e){return e&&typeof e=="object"};B.isset=B.isSet=function(e,t){var n=e[t];return n!=null&&e.hasOwnProperty(t)?typeof n!="object"||(Array.isArray(n)?n.length:Object.keys(n).length)>0:!1};B.Buffer=function(){try{var r=B.inquire("buffer").Buffer;return r.prototype.utf8Write?r:null}catch{return null}}();B._Buffer_from=null;B._Buffer_allocUnsafe=null;B.newBuffer=function(e){return typeof e=="number"?B.Buffer?B._Buffer_allocUnsafe(e):new B.Array(e):B.Buffer?B._Buffer_from(e):typeof Uint8Array>"u"?e:new Uint8Array(e)};B.Array=typeof Uint8Array<"u"?Uint8Array:Array;B.Long=B.global.dcodeIO&&B.global.dcodeIO.Long||B.global.Long||B.inquire("long");B.key2Re=/^true|false|0|1$/;B.key32Re=/^-?(?:0|[1-9][0-9]*)$/;B.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/;B.longToHash=function(e){return e?B.LongBits.from(e).toHash():B.LongBits.zeroHash};B.longFromHash=function(e,t){var n=B.LongBits.fromHash(e);return B.Long?B.Long.fromBits(n.lo,n.hi,t):n.toNumber(Boolean(t))};function ts(r,e,t){for(var n=Object.keys(e),i=0;i<n.length;++i)(r[n[i]]===void 0||!t)&&(r[n[i]]=e[n[i]]);return r}B.merge=ts;B.lcFirst=function(e){return e.charAt(0).toLowerCase()+e.substring(1)};function rs(r){function e(t,n){if(!(this instanceof e))return new e(t,n);Object.defineProperty(this,"message",{get:function(){return t}}),Error.captureStackTrace?Error.captureStackTrace(this,e):Object.defineProperty(this,"stack",{value:new Error().stack||""}),n&&ts(this,n)}return e.prototype=Object.create(Error.prototype,{constructor:{value:e,writable:!0,enumerable:!1,configurable:!0},name:{get(){return r},set:void 0,enumerable:!1,configurable:!0},toString:{value(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),e}B.newError=rs;B.ProtocolError=rs("ProtocolError");B.oneOfGetter=function(e){for(var t={},n=0;n<e.length;++n)t[e[n]]=1;return function(){for(var i=Object.keys(this),o=i.length-1;o>-1;--o)if(t[i[o]]===1&&this[i[o]]!==void 0&&this[i[o]]!==null)return i[o]}};B.oneOfSetter=function(e){return function(t){for(var n=0;n<e.length;++n)e[n]!==t&&delete this[e[n]]}};B.toJSONOptions={longs:String,enums:String,bytes:String,json:!0};B._configure=function(){var r=B.Buffer;if(!r){B._Buffer_from=B._Buffer_allocUnsafe=null;return}B._Buffer_from=r.from!==Uint8Array.from&&r.from||function(t,n){return new r(t,n)},B._Buffer_allocUnsafe=r.allocUnsafe||function(t){return new r(t)}}});var Zn=U((n0,ss)=>{"use strict";ss.exports=O;var ke=Ze(),Wn,Vr=ke.LongBits,ns=ke.base64,is=ke.utf8;function ar(r,e,t){this.fn=r,this.len=e,this.next=void 0,this.val=t}function Yn(){}function Yf(r){this.head=r.head,this.tail=r.tail,this.len=r.len,this.next=r.states}function O(){this.len=0,this.head=new ar(Yn,0,0),this.tail=this.head,this.states=null}var os=function(){return ke.Buffer?function(){return(O.create=function(){return new Wn})()}:function(){return new O}};O.create=os();O.alloc=function(e){return new ke.Array(e)};ke.Array!==Array&&(O.alloc=ke.pool(O.alloc,ke.Array.prototype.subarray));O.prototype._push=function(e,t,n){return this.tail=this.tail.next=new ar(e,t,n),this.len+=t,this};function Qn(r,e,t){e[t]=r&255}function Qf(r,e,t){for(;r>127;)e[t++]=r&127|128,r>>>=7;e[t]=r}function Kn(r,e){this.len=r,this.next=void 0,this.val=e}Kn.prototype=Object.create(ar.prototype);Kn.prototype.fn=Qf;O.prototype.uint32=function(e){return this.len+=(this.tail=this.tail.next=new Kn((e=e>>>0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this};O.prototype.int32=function(e){return e<0?this._push(Jn,10,Vr.fromNumber(e)):this.uint32(e)};O.prototype.sint32=function(e){return this.uint32((e<<1^e>>31)>>>0)};function Jn(r,e,t){for(;r.hi;)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}O.prototype.uint64=function(e){var t=Vr.from(e);return this._push(Jn,t.length(),t)};O.prototype.int64=O.prototype.uint64;O.prototype.sint64=function(e){var t=Vr.from(e).zzEncode();return this._push(Jn,t.length(),t)};O.prototype.bool=function(e){return this._push(Qn,1,e?1:0)};function qn(r,e,t){e[t]=r&255,e[t+1]=r>>>8&255,e[t+2]=r>>>16&255,e[t+3]=r>>>24}O.prototype.fixed32=function(e){return this._push(qn,4,e>>>0)};O.prototype.sfixed32=O.prototype.fixed32;O.prototype.fixed64=function(e){var t=Vr.from(e);return this._push(qn,4,t.lo)._push(qn,4,t.hi)};O.prototype.sfixed64=O.prototype.fixed64;O.prototype.float=function(e){return this._push(ke.float.writeFloatLE,4,e)};O.prototype.double=function(e){return this._push(ke.float.writeDoubleLE,8,e)};var Kf=ke.Array.prototype.set?function(e,t,n){t.set(e,n)}:function(e,t,n){for(var i=0;i<e.length;++i)t[n+i]=e[i]};O.prototype.bytes=function(e){var t=e.length>>>0;if(!t)return this._push(Qn,1,0);if(ke.isString(e)){var n=O.alloc(t=ns.length(e));ns.decode(e,n,0),e=n}return this.uint32(t)._push(Kf,t,e)};O.prototype.string=function(e){var t=is.length(e);return t?this.uint32(t)._push(is.write,t,e):this._push(Qn,1,0)};O.prototype.fork=function(){return this.states=new Yf(this),this.head=this.tail=new ar(Yn,0,0),this.len=0,this};O.prototype.reset=function(){return this.states?(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 ar(Yn,0,0),this.len=0),this};O.prototype.ldelim=function(){var e=this.head,t=this.tail,n=this.len;return this.reset().uint32(n),n&&(this.tail.next=e.next,this.tail=t,this.len+=n),this};O.prototype.finish=function(){for(var e=this.head.next,t=this.constructor.alloc(this.len),n=0;e;)e.fn(e.val,t,n),n+=e.len,e=e.next;return t};O._configure=function(r){Wn=r,O.create=os(),Wn._configure()}});var us=U((i0,cs)=>{"use strict";cs.exports=Oe;var as=Zn();(Oe.prototype=Object.create(as.prototype)).constructor=Oe;var Xe=Ze();function Oe(){as.call(this)}Oe._configure=function(){Oe.alloc=Xe._Buffer_allocUnsafe,Oe.writeBytesBuffer=Xe.Buffer&&Xe.Buffer.prototype instanceof Uint8Array&&Xe.Buffer.prototype.set.name==="set"?function(e,t,n){t.set(e,n)}:function(e,t,n){if(e.copy)e.copy(t,n,0,e.length);else for(var i=0;i<e.length;)t[n++]=e[i++]}};Oe.prototype.bytes=function(e){Xe.isString(e)&&(e=Xe._Buffer_from(e,"base64"));var t=e.length>>>0;return this.uint32(t),t&&this._push(Oe.writeBytesBuffer,t,e),this};function Jf(r,e,t){r.length<40?Xe.utf8.write(r,e,t):e.utf8Write?e.utf8Write(r,t):e.write(r,t)}Oe.prototype.string=function(e){var t=Xe.Buffer.byteLength(e);return this.uint32(t),t&&this._push(Jf,t,e),this};Oe._configure()});var ti=U((o0,ps)=>{"use strict";ps.exports=G;var Ue=Ze(),ei,hs=Ue.LongBits,Zf=Ue.utf8;function De(r,e){return RangeError("index out of range: "+r.pos+" + "+(e||1)+" > "+r.len)}function G(r){this.buf=r,this.pos=0,this.len=r.length}var fs=typeof Uint8Array<"u"?function(e){if(e instanceof Uint8Array||Array.isArray(e))return new G(e);throw Error("illegal buffer")}:function(e){if(Array.isArray(e))return new G(e);throw Error("illegal buffer")},ds=function(){return Ue.Buffer?function(t){return(G.create=function(i){return Ue.Buffer.isBuffer(i)?new ei(i):fs(i)})(t)}:fs};G.create=ds();G.prototype._slice=Ue.Array.prototype.subarray||Ue.Array.prototype.slice;G.prototype.uint32=function(){var e=4294967295;return function(){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,De(this,10);return e}}();G.prototype.int32=function(){return this.uint32()|0};G.prototype.sint32=function(){var e=this.uint32();return e>>>1^-(e&1)|0};function Xn(){var r=new hs(0,0),e=0;if(this.len-this.pos>4){for(;e<4;++e)if(r.lo=(r.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return r;if(r.lo=(r.lo|(this.buf[this.pos]&127)<<28)>>>0,r.hi=(r.hi|(this.buf[this.pos]&127)>>4)>>>0,this.buf[this.pos++]<128)return r;e=0}else{for(;e<3;++e){if(this.pos>=this.len)throw De(this);if(r.lo=(r.lo|(this.buf[this.pos]&127)<<e*7)>>>0,this.buf[this.pos++]<128)return r}return r.lo=(r.lo|(this.buf[this.pos++]&127)<<e*7)>>>0,r}if(this.len-this.pos>4){for(;e<5;++e)if(r.hi=(r.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return r}else for(;e<5;++e){if(this.pos>=this.len)throw De(this);if(r.hi=(r.hi|(this.buf[this.pos]&127)<<e*7+3)>>>0,this.buf[this.pos++]<128)return r}throw Error("invalid varint encoding")}G.prototype.bool=function(){return this.uint32()!==0};function jr(r,e){return(r[e-4]|r[e-3]<<8|r[e-2]<<16|r[e-1]<<24)>>>0}G.prototype.fixed32=function(){if(this.pos+4>this.len)throw De(this,4);return jr(this.buf,this.pos+=4)};G.prototype.sfixed32=function(){if(this.pos+4>this.len)throw De(this,4);return jr(this.buf,this.pos+=4)|0};function ls(){if(this.pos+8>this.len)throw De(this,8);return new hs(jr(this.buf,this.pos+=4),jr(this.buf,this.pos+=4))}G.prototype.float=function(){if(this.pos+4>this.len)throw De(this,4);var e=Ue.float.readFloatLE(this.buf,this.pos);return this.pos+=4,e};G.prototype.double=function(){if(this.pos+8>this.len)throw De(this,4);var e=Ue.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,e};G.prototype.bytes=function(){var e=this.uint32(),t=this.pos,n=this.pos+e;if(n>this.len)throw De(this,e);return this.pos+=e,Array.isArray(this.buf)?this.buf.slice(t,n):t===n?new this.buf.constructor(0):this._slice.call(this.buf,t,n)};G.prototype.string=function(){var e=this.bytes();return Zf.read(e,0,e.length)};G.prototype.skip=function(e){if(typeof e=="number"){if(this.pos+e>this.len)throw De(this,e);this.pos+=e}else do if(this.pos>=this.len)throw De(this);while(this.buf[this.pos++]&128);return this};G.prototype.skipType=function(r){switch(r){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;(r=this.uint32()&7)!==4;)this.skipType(r);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+r+" at offset "+this.pos)}return this};G._configure=function(r){ei=r,G.create=ds(),ei._configure();var e=Ue.Long?"toLong":"toNumber";Ue.merge(G.prototype,{int64:function(){return Xn.call(this)[e](!1)},uint64:function(){return Xn.call(this)[e](!0)},sint64:function(){return Xn.call(this).zzDecode()[e](!1)},fixed64:function(){return ls.call(this)[e](!0)},sfixed64:function(){return ls.call(this)[e](!1)}})}});var ws=U((s0,gs)=>{"use strict";gs.exports=dt;var ys=ti();(dt.prototype=Object.create(ys.prototype)).constructor=dt;var ms=Ze();function dt(r){ys.call(this,r)}dt._configure=function(){ms.Buffer&&(dt.prototype._slice=ms.Buffer.prototype.slice)};dt.prototype.string=function(){var e=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+e,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+e,this.len))};dt._configure()});var _s=U((a0,bs)=>{"use strict";bs.exports=cr;var ri=Ze();(cr.prototype=Object.create(ri.EventEmitter.prototype)).constructor=cr;function cr(r,e,t){if(typeof r!="function")throw TypeError("rpcImpl must be a function");ri.EventEmitter.call(this),this.rpcImpl=r,this.requestDelimited=Boolean(e),this.responseDelimited=Boolean(t)}cr.prototype.rpcCall=function r(e,t,n,i,o){if(!i)throw TypeError("request must be specified");var s=this;if(!o)return ri.asPromise(r,s,e,t,n,i);if(!s.rpcImpl){setTimeout(function(){o(Error("already ended"))},0);return}try{return s.rpcImpl(e,t[s.requestDelimited?"encodeDelimited":"encode"](i).finish(),function(a,l){if(a)return s.emit("error",a,e),o(a);if(l===null){s.end(!0);return}if(!(l instanceof n))try{l=n[s.responseDelimited?"decodeDelimited":"decode"](l)}catch(u){return s.emit("error",u,e),o(u)}return s.emit("data",l,e),o(null,l)})}catch(c){s.emit("error",c,e),setTimeout(function(){o(c)},0);return}};cr.prototype.end=function(e){return this.rpcImpl&&(e||this.rpcImpl(null,null,null),this.rpcImpl=null,this.emit("end").off()),this}});var vs=U(xs=>{"use strict";var Xf=xs;Xf.Service=_s()});var Es=U((u0,As)=>{"use strict";As.exports={}});var Ts=U(Ss=>{"use strict";var he=Ss;he.build="minimal";he.Writer=Zn();he.BufferWriter=us();he.Reader=ti();he.BufferReader=ws();he.util=Ze();he.rpc=vs();he.roots=Es();he.configure=ks;function ks(){he.util._configure(),he.Writer._configure(he.BufferWriter),he.Reader._configure(he.BufferReader)}ks()});var Cs=U((l0,Bs)=>{"use strict";Bs.exports=Ts()});var na=U((ap,ra)=>{var fi=class{constructor(e,t=12,n=8*1024,i=32*1024,o=64,s){this.bits=t,this.min=n,this.max=i,this.asModule=e,this.rabin=new e.Rabin(t,n,i,o,s),this.polynomial=s}fingerprint(e){let{__retain:t,__release:n,__allocArray:i,__getInt32Array:o,Int32Array_ID:s,Uint8Array_ID:c}=this.asModule,a=new Int32Array(Math.ceil(e.length/this.min)),l=t(i(s,a)),u=t(i(c,e)),h=this.rabin.fingerprint(u,l),p=o(h);n(u),n(l);let f=p.indexOf(0);return f>=0?p.subarray(0,f):p}};ra.exports=fi});var ua=U(dr=>{"use strict";var Sl=typeof BigUint64Array<"u",lr=Symbol(),hr=1024;function ia(r,e){let t=new Uint32Array(r),n=new Uint16Array(r);var i=t[e+-4>>>2]>>>1,o=e>>>1;if(i<=hr)return String.fromCharCode.apply(String,n.subarray(o,o+i));let s=[];do{let c=n[o+hr-1],a=c>=55296&&c<56320?hr-1:hr;s.push(String.fromCharCode.apply(String,n.subarray(o,o+=a))),i-=a}while(i>hr);return s.join("")+String.fromCharCode.apply(String,n.subarray(o,o+i))}function li(r){let e={};function t(i,o){return i?ia(i.buffer,o):"<yet unknown>"}let n=r.env=r.env||{};return n.abort=n.abort||function(o,s,c,a){let l=e.memory||n.memory;throw Error("abort: "+t(l,o)+" at "+t(l,s)+":"+c+":"+a)},n.trace=n.trace||function(o,s){let c=e.memory||n.memory;console.log("trace: "+t(c,o)+(s?" ":"")+Array.prototype.slice.call(arguments,2,2+s).join(", "))},r.Math=r.Math||Math,r.Date=r.Date||Date,e}function hi(r,e){let t=e.exports,n=t.memory,i=t.table,o=t.__alloc,s=t.__retain,c=t.__rtti_base||-1;function a(v){let w=new Uint32Array(n.buffer),S=w[c>>>2];if((v>>>=0)>=S)throw Error("invalid id: "+v);return w[(c+4>>>2)+v*2]}function l(v){let w=new Uint32Array(n.buffer),S=w[c>>>2];if((v>>>=0)>=S)throw Error("invalid id: "+v);return w[(c+4>>>2)+v*2+1]}function u(v){return 31-Math.clz32(v>>>5&31)}function h(v){return 31-Math.clz32(v>>>14&31)}function p(v){let w=v.length,S=o(w<<1,1),I=new Uint16Array(n.buffer);for(var $=0,X=S>>>1;$<w;++$)I[X+$]=v.charCodeAt($);return S}r.__allocString=p;function f(v){let w=n.buffer;if(new Uint32Array(w)[v+-8>>>2]!==1)throw Error("not a string: "+v);return ia(w,v)}r.__getString=f;function d(v,w,S){let I=n.buffer;if(S)switch(v){case 2:return new Float32Array(I);case 3:return new Float64Array(I)}else switch(v){case 0:return new(w?Int8Array:Uint8Array)(I);case 1:return new(w?Int16Array:Uint16Array)(I);case 2:return new(w?Int32Array:Uint32Array)(I);case 3:return new(w?BigInt64Array:BigUint64Array)(I)}throw Error("unsupported align: "+v)}function m(v,w){let S=a(v);if(!(S&3))throw Error("not an array: "+v+" @ "+S);let I=u(S),$=w.length,X=o($<<I,0),ve=o(S&2?16:12,v),P=new Uint32Array(n.buffer);P[ve+0>>>2]=s(X),P[ve+4>>>2]=X,P[ve+8>>>2]=$<<I,S&2&&(P[ve+12>>>2]=$);let no=d(I,S&1024,S&2048);if(S&8192)for(let Fr=0;Fr<$;++Fr)no[(X>>>I)+Fr]=s(w[Fr]);else no.set(w,X>>>I);return ve}r.__allocArray=m;function E(v){let w=new Uint32Array(n.buffer),S=w[v+-8>>>2],I=a(S);if(!(I&1))throw Error("not an array: "+S);let $=u(I);var X=w[v+4>>>2];let ve=I&2?w[v+12>>>2]:w[X+-4>>>2]>>>$;return d($,I&1024,I&2048).subarray(X>>>=$,X+ve)}r.__getArrayView=E;function g(v){let w=E(v),S=w.length,I=new Array(S);for(let $=0;$<S;$++)I[$]=w[$];return I}r.__getArray=g;function b(v){let w=n.buffer,S=new Uint32Array(w)[v+-4>>>2];return w.slice(v,v+S)}r.__getArrayBuffer=b;function _(v,w,S){return new v(x(v,w,S))}function x(v,w,S){let I=n.buffer,$=new Uint32Array(I),X=$[S+4>>>2];return new v(I,X,$[X+-4>>>2]>>>w)}r.__getInt8Array=_.bind(null,Int8Array,0),r.__getInt8ArrayView=x.bind(null,Int8Array,0),r.__getUint8Array=_.bind(null,Uint8Array,0),r.__getUint8ArrayView=x.bind(null,Uint8Array,0),r.__getUint8ClampedArray=_.bind(null,Uint8ClampedArray,0),r.__getUint8ClampedArrayView=x.bind(null,Uint8ClampedArray,0),r.__getInt16Array=_.bind(null,Int16Array,1),r.__getInt16ArrayView=x.bind(null,Int16Array,1),r.__getUint16Array=_.bind(null,Uint16Array,1),r.__getUint16ArrayView=x.bind(null,Uint16Array,1),r.__getInt32Array=_.bind(null,Int32Array,2),r.__getInt32ArrayView=x.bind(null,Int32Array,2),r.__getUint32Array=_.bind(null,Uint32Array,2),r.__getUint32ArrayView=x.bind(null,Uint32Array,2),Sl&&(r.__getInt64Array=_.bind(null,BigInt64Array,3),r.__getInt64ArrayView=x.bind(null,BigInt64Array,3),r.__getUint64Array=_.bind(null,BigUint64Array,3),r.__getUint64ArrayView=x.bind(null,BigUint64Array,3)),r.__getFloat32Array=_.bind(null,Float32Array,2),r.__getFloat32ArrayView=x.bind(null,Float32Array,2),r.__getFloat64Array=_.bind(null,Float64Array,3),r.__getFloat64ArrayView=x.bind(null,Float64Array,3);function C(v,w){let S=new Uint32Array(n.buffer);var I=S[v+-8>>>2];if(I<=S[c>>>2])do if(I==w)return!0;while(I=l(I));return!1}return r.__instanceof=C,r.memory=r.memory||n,r.table=r.table||i,ca(t,r)}function oa(r){return typeof Response<"u"&&r instanceof Response}async function sa(r,e){return oa(r=await r)?aa(r,e):hi(li(e||(e={})),await WebAssembly.instantiate(r instanceof WebAssembly.Module?r:await WebAssembly.compile(r),e))}dr.instantiate=sa;function Tl(r,e){return hi(li(e||(e={})),new WebAssembly.Instance(r instanceof WebAssembly.Module?r:new WebAssembly.Module(r),e))}dr.instantiateSync=Tl;async function aa(r,e){return WebAssembly.instantiateStreaming?hi(li(e||(e={})),(await WebAssembly.instantiateStreaming(r,e)).instance):sa(oa(r=await r)?r.arrayBuffer():r,e)}dr.instantiateStreaming=aa;function ca(r,e){var t=e?Object.create(e):{},n=r.__argumentsLength?function(i){r.__argumentsLength.value=i}:r.__setArgumentsLength||r.__setargc||function(){};for(let i in r){if(!Object.prototype.hasOwnProperty.call(r,i))continue;let o=r[i],s=i.split("."),c=t;for(;s.length>1;){let u=s.shift();Object.prototype.hasOwnProperty.call(c,u)||(c[u]={}),c=c[u]}let a=s[0],l=a.indexOf("#");if(l>=0){let u=a.substring(0,l),h=c[u];if(typeof h>"u"||!h.prototype){let p=function(...f){return p.wrap(p.prototype.constructor(0,...f))};p.prototype={valueOf:function(){return this[lr]}},p.wrap=function(f){return Object.create(p.prototype,{[lr]:{value:f,writable:!1}})},h&&Object.getOwnPropertyNames(h).forEach(f=>Object.defineProperty(p,f,Object.getOwnPropertyDescriptor(h,f))),c[u]=p}if(a=a.substring(l+1),c=c[u].prototype,/^(get|set):/.test(a)){if(!Object.prototype.hasOwnProperty.call(c,a=a.substring(4))){let p=r[i.replace("set:","get:")],f=r[i.replace("get:","set:")];Object.defineProperty(c,a,{get:function(){return p(this[lr])},set:function(d){f(this[lr],d)},enumerable:!0})}}else a==="constructor"?(c[a]=(...p)=>(n(p.length),o(...p))).original=o:(c[a]=function(...p){return n(p.length),o(this[lr],...p)}).original=o}else/^(get|set):/.test(a)?Object.prototype.hasOwnProperty.call(c,a=a.substring(4))||Object.defineProperty(c,a,{get:r[i.replace("set:","get:")],set:r[i.replace("get:","set:")],enumerable:!0}):typeof o=="function"&&o!==n?(c[a]=(...u)=>(n(u.length),o(...u))).original=o:c[a]=o}return t}dr.demangle=ca});var la=U((up,fa)=>{var{instantiate:Bl}=ua();di.supported=typeof WebAssembly<"u";function di(r={}){if(!di.supported)return null;var e=new Uint8Array([0,97,115,109,1,0,0,0,1,78,14,96,2,127,126,0,96,1,127,1,126,96,2,127,127,0,96,1,127,1,127,96,1,127,0,96,2,127,127,1,127,96,3,127,127,127,1,127,96,0,0,96,3,127,127,127,0,96,0,1,127,96,4,127,127,127,127,0,96,5,127,127,127,127,127,1,127,96,1,126,1,127,96,2,126,126,1,126,2,13,1,3,101,110,118,5,97,98,111,114,116,0,10,3,54,53,2,2,8,9,3,5,2,8,6,5,3,4,2,6,9,12,13,2,5,11,3,2,3,2,3,2,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,6,7,7,4,4,5,3,1,0,1,6,47,9,127,1,65,0,11,127,1,65,0,11,127,0,65,3,11,127,0,65,4,11,127,1,65,0,11,127,1,65,0,11,127,1,65,0,11,127,0,65,240,2,11,127,0,65,6,11,7,240,5,41,6,109,101,109,111,114,121,2,0,7,95,95,97,108,108,111,99,0,10,8,95,95,114,101,116,97,105,110,0,11,9,95,95,114,101,108,101,97,115,101,0,12,9,95,95,99,111,108,108,101,99,116,0,51,11,95,95,114,116,116,105,95,98,97,115,101,3,7,13,73,110,116,51,50,65,114,114,97,121,95,73,68,3,2,13,85,105,110,116,56,65,114,114,97,121,95,73,68,3,3,6,100,101,103,114,101,101,0,16,3,109,111,100,0,17,5,82,97,98,105,110,3,8,16,82,97,98,105,110,35,103,101,116,58,119,105,110,100,111,119,0,21,16,82,97,98,105,110,35,115,101,116,58,119,105,110,100,111,119,0,22,21,82,97,98,105,110,35,103,101,116,58,119,105,110,100,111,119,95,115,105,122,101,0,23,21,82,97,98,105,110,35,115,101,116,58,119,105,110,100,111,119,95,115,105,122,101,0,24,14,82,97,98,105,110,35,103,101,116,58,119,112,111,115,0,25,14,82,97,98,105,110,35,115,101,116,58,119,112,111,115,0,26,15,82,97,98,105,110,35,103,101,116,58,99,111,117,110,116,0,27,15,82,97,98,105,110,35,115,101,116,58,99,111,117,110,116,0,28,13,82,97,98,105,110,35,103,101,116,58,112,111,115,0,29,13,82,97,98,105,110,35,115,101,116,58,112,111,115,0,30,15,82,97,98,105,110,35,103,101,116,58,115,116,97,114,116,0,31,15,82,97,98,105,110,35,115,101,116,58,115,116,97,114,116,0,32,16,82,97,98,105,110,35,103,101,116,58,100,105,103,101,115,116,0,33,16,82,97,98,105,110,35,115,101,116,58,100,105,103,101,115,116,0,34,21,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,115,116,97,114,116,0,35,21,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,115,116,97,114,116,0,36,22,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,108,101,110,103,116,104,0,37,22,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,108,101,110,103,116,104,0,38,31,82,97,98,105,110,35,103,101,116,58,99,104,117,110,107,95,99,117,116,95,102,105,110,103,101,114,112,114,105,110,116,0,39,31,82,97,98,105,110,35,115,101,116,58,99,104,117,110,107,95,99,117,116,95,102,105,110,103,101,114,112,114,105,110,116,0,40,20,82,97,98,105,110,35,103,101,116,58,112,111,108,121,110,111,109,105,97,108,0,41,20,82,97,98,105,110,35,115,101,116,58,112,111,108,121,110,111,109,105,97,108,0,42,17,82,97,98,105,110,35,103,101,116,58,109,105,110,115,105,122,101,0,43,17,82,97,98,105,110,35,115,101,116,58,109,105,110,115,105,122,101,0,44,17,82,97,98,105,110,35,103,101,116,58,109,97,120,115,105,122,101,0,45,17,82,97,98,105,110,35,115,101,116,58,109,97,120,115,105,122,101,0,46,14,82,97,98,105,110,35,103,101,116,58,109,97,115,107,0,47,14,82,97,98,105,110,35,115,101,116,58,109,97,115,107,0,48,17,82,97,98,105,110,35,99,111,110,115,116,114,117,99,116,111,114,0,20,17,82,97,98,105,110,35,102,105,110,103,101,114,112,114,105,110,116,0,49,8,1,50,10,165,31,53,199,1,1,4,127,32,1,40,2,0,65,124,113,34,2,65,128,2,73,4,127,32,2,65,4,118,33,4,65,0,5,32,2,65,31,32,2,103,107,34,3,65,4,107,118,65,16,115,33,4,32,3,65,7,107,11,33,3,32,1,40,2,20,33,2,32,1,40,2,16,34,5,4,64,32,5,32,2,54,2,20,11,32,2,4,64,32,2,32,5,54,2,16,11,32,1,32,0,32,4,32,3,65,4,116,106,65,2,116,106,40,2,96,70,4,64,32,0,32,4,32,3,65,4,116,106,65,2,116,106,32,2,54,2,96,32,2,69,4,64,32,0,32,3,65,2,116,106,32,0,32,3,65,2,116,106,40,2,4,65,1,32,4,116,65,127,115,113,34,1,54,2,4,32,1,69,4,64,32,0,32,0,40,2,0,65,1,32,3,116,65,127,115,113,54,2,0,11,11,11,11,226,2,1,6,127,32,1,40,2,0,33,3,32,1,65,16,106,32,1,40,2,0,65,124,113,106,34,4,40,2,0,34,5,65,1,113,4,64,32,3,65,124,113,65,16,106,32,5,65,124,113,106,34,2,65,240,255,255,255,3,73,4,64,32,0,32,4,16,1,32,1,32,2,32,3,65,3,113,114,34,3,54,2,0,32,1,65,16,106,32,1,40,2,0,65,124,113,106,34,4,40,2,0,33,5,11,11,32,3,65,2,113,4,64,32,1,65,4,107,40,2,0,34,2,40,2,0,34,6,65,124,113,65,16,106,32,3,65,124,113,106,34,7,65,240,255,255,255,3,73,4,64,32,0,32,2,16,1,32,2,32,7,32,6,65,3,113,114,34,3,54,2,0,32,2,33,1,11,11,32,4,32,5,65,2,114,54,2,0,32,4,65,4,107,32,1,54,2,0,32,0,32,3,65,124,113,34,2,65,128,2,73,4,127,32,2,65,4,118,33,4,65,0,5,32,2,65,31,32,2,103,107,34,2,65,4,107,118,65,16,115,33,4,32,2,65,7,107,11,34,3,65,4,116,32,4,106,65,2,116,106,40,2,96,33,2,32,1,65,0,54,2,16,32,1,32,2,54,2,20,32,2,4,64,32,2,32,1,54,2,16,11,32,0,32,4,32,3,65,4,116,106,65,2,116,106,32,1,54,2,96,32,0,32,0,40,2,0,65,1,32,3,116,114,54,2,0,32,0,32,3,65,2,116,106,32,0,32,3,65,2,116,106,40,2,4,65,1,32,4,116,114,54,2,4,11,119,1,1,127,32,2,2,127,32,0,40,2,160,12,34,2,4,64,32,2,32,1,65,16,107,70,4,64,32,2,40,2,0,33,3,32,1,65,16,107,33,1,11,11,32,1,11,107,34,2,65,48,73,4,64,15,11,32,1,32,3,65,2,113,32,2,65,32,107,65,1,114,114,54,2,0,32,1,65,0,54,2,16,32,1,65,0,54,2,20,32,1,32,2,106,65,16,107,34,2,65,2,54,2,0,32,0,32,2,54,2,160,12,32,0,32,1,16,2,11,155,1,1,3,127,35,0,34,0,69,4,64,65,1,63,0,34,0,74,4,127,65,1,32,0,107,64,0,65,0,72,5,65,0,11,4,64,0,11,65,176,3,34,0,65,0,54,2,0,65,208,15,65,0,54,2,0,3,64,32,1,65,23,73,4,64,32,1,65,2,116,65,176,3,106,65,0,54,2,4,65,0,33,2,3,64,32,2,65,16,73,4,64,32,1,65,4,116,32,2,106,65,2,116,65,176,3,106,65,0,54,2,96,32,2,65,1,106,33,2,12,1,11,11,32,1,65,1,106,33,1,12,1,11,11,65,176,3,65,224,15,63,0,65,16,116,16,3,65,176,3,36,0,11,32,0,11,45,0,32,0,65,240,255,255,255,3,79,4,64,65,32,65,224,0,65,201,3,65,29,16,0,0,11,32,0,65,15,106,65,112,113,34,0,65,16,32,0,65,16,75,27,11,169,1,1,1,127,32,0,32,1,65,128,2,73,4,127,32,1,65,4,118,33,1,65,0,5,32,1,65,248,255,255,255,1,73,4,64,32,1,65,1,65,27,32,1,103,107,116,106,65,1,107,33,1,11,32,1,65,31,32,1,103,107,34,2,65,4,107,118,65,16,115,33,1,32,2,65,7,107,11,34,2,65,2,116,106,40,2,4,65,127,32,1,116,113,34,1,4,127,32,0,32,1,104,32,2,65,4,116,106,65,2,116,106,40,2,96,5,32,0,40,2,0,65,127,32,2,65,1,106,116,113,34,1,4,127,32,0,32,0,32,1,104,34,0,65,2,116,106,40,2,4,104,32,0,65,4,116,106,65,2,116,106,40,2,96,5,65,0,11,11,11,111,1,1,127,63,0,34,2,32,1,65,248,255,255,255,1,73,4,127,32,1,65,1,65,27,32,1,103,107,116,65,1,107,106,5,32,1,11,65,16,32,0,40,2,160,12,32,2,65,16,116,65,16,107,71,116,106,65,255,255,3,106,65,128,128,124,113,65,16,118,34,1,32,2,32,1,74,27,64,0,65,0,72,4,64,32,1,64,0,65,0,72,4,64,0,11,11,32,0,32,2,65,16,116,63,0,65,16,116,16,3,11,113,1,2,127,32,1,40,2,0,34,3,65,124,113,32,2,107,34,4,65,32,79,4,64,32,1,32,2,32,3,65,2,113,114,54,2,0,32,2,32,1,65,16,106,106,34,1,32,4,65,16,107,65,1,114,54,2,0,32,0,32,1,16,2,5,32,1,32,3,65,126,113,54,2,0,32,1,65,16,106,32,1,40,2,0,65,124,113,106,32,1,65,16,106,32,1,40,2,0,65,124,113,106,40,2,0,65,125,113,54,2,0,11,11,91,1,2,127,32,0,32,1,16,5,34,4,16,6,34,3,69,4,64,65,1,36,1,65,0,36,1,32,0,32,4,16,6,34,3,69,4,64,32,0,32,4,16,7,32,0,32,4,16,6,33,3,11,11,32,3,65,0,54,2,4,32,3,32,2,54,2,8,32,3,32,1,54,2,12,32,0,32,3,16,1,32,0,32,3,32,4,16,8,32,3,11,13,0,16,4,32,0,32,1,16,9,65,16,106,11,33,1,1,127,32,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,11,18,0,32,0,65,172,3,75,4,64,32,0,65,16,107,16,52,11,11,140,3,1,1,127,2,64,32,1,69,13,0,32,0,65,0,58,0,0,32,0,32,1,106,65,1,107,65,0,58,0,0,32,1,65,2,77,13,0,32,0,65,1,106,65,0,58,0,0,32,0,65,2,106,65,0,58,0,0,32,0,32,1,106,34,2,65,2,107,65,0,58,0,0,32,2,65,3,107,65,0,58,0,0,32,1,65,6,77,13,0,32,0,65,3,106,65,0,58,0,0,32,0,32,1,106,65,4,107,65,0,58,0,0,32,1,65,8,77,13,0,32,1,65,0,32,0,107,65,3,113,34,1,107,33,2,32,0,32,1,106,34,0,65,0,54,2,0,32,0,32,2,65,124,113,34,1,106,65,4,107,65,0,54,2,0,32,1,65,8,77,13,0,32,0,65,4,106,65,0,54,2,0,32,0,65,8,106,65,0,54,2,0,32,0,32,1,106,34,2,65,12,107,65,0,54,2,0,32,2,65,8,107,65,0,54,2,0,32,1,65,24,77,13,0,32,0,65,12,106,65,0,54,2,0,32,0,65,16,106,65,0,54,2,0,32,0,65,20,106,65,0,54,2,0,32,0,65,24,106,65,0,54,2,0,32,0,32,1,106,34,2,65,28,107,65,0,54,2,0,32,2,65,24,107,65,0,54,2,0,32,2,65,20,107,65,0,54,2,0,32,2,65,16,107,65,0,54,2,0,32,0,32,0,65,4,113,65,24,106,34,2,106,33,0,32,1,32,2,107,33,1,3,64,32,1,65,32,79,4,64,32,0,66,0,55,3,0,32,0,65,8,106,66,0,55,3,0,32,0,65,16,106,66,0,55,3,0,32,0,65,24,106,66,0,55,3,0,32,1,65,32,107,33,1,32,0,65,32,106,33,0,12,1,11,11,11,11,178,1,1,3,127,32,1,65,240,255,255,255,3,32,2,118,75,4,64,65,144,1,65,192,1,65,23,65,56,16,0,0,11,32,1,32,2,116,34,3,65,0,16,10,34,2,32,3,16,13,32,0,69,4,64,65,12,65,2,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,11,32,0,65,0,54,2,0,32,0,65,0,54,2,4,32,0,65,0,54,2,8,32,2,34,1,32,0,40,2,0,34,4,71,4,64,32,1,65,172,3,75,4,64,32,1,65,16,107,34,5,32,5,40,2,4,65,1,106,54,2,4,11,32,4,16,12,11,32,0,32,1,54,2,0,32,0,32,2,54,2,4,32,0,32,3,54,2,8,32,0,11,46,1,2,127,65,12,65,5,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,65,128,2,65,3,16,14,11,9,0,65,63,32,0,121,167,107,11,49,1,2,127,65,63,32,1,121,167,107,33,2,3,64,65,63,32,0,121,167,107,32,2,107,34,3,65,0,78,4,64,32,0,32,1,32,3,172,134,133,33,0,12,1,11,11,32,0,11,40,0,32,1,32,0,40,2,8,79,4,64,65,128,2,65,192,2,65,163,1,65,44,16,0,0,11,32,1,32,0,40,2,4,106,65,0,58,0,0,11,38,0,32,1,32,0,40,2,8,79,4,64,65,128,2,65,192,2,65,152,1,65,44,16,0,0,11,32,1,32,0,40,2,4,106,45,0,0,11,254,5,2,1,127,4,126,32,0,69,4,64,65,232,0,65,6,16,10,34,0,65,172,3,75,4,64,32,0,65,16,107,34,5,32,5,40,2,4,65,1,106,54,2,4,11,11,32,0,65,0,54,2,0,32,0,65,0,54,2,4,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,24,32,0,66,0,55,3,32,32,0,66,0,55,3,40,32,0,66,0,55,3,48,32,0,66,0,55,3,56,32,0,66,0,55,3,64,32,0,66,0,55,3,72,32,0,66,0,55,3,80,32,0,66,0,55,3,88,32,0,66,0,55,3,96,32,0,32,2,173,55,3,80,32,0,32,3,173,55,3,88,65,12,65,4,16,10,34,2,65,172,3,75,4,64,32,2,65,16,107,34,3,32,3,40,2,4,65,1,106,54,2,4,11,32,2,32,4,65,0,16,14,33,2,32,0,40,2,0,16,12,32,0,32,2,54,2,0,32,0,32,4,54,2,4,32,0,66,1,32,1,173,134,66,1,125,55,3,96,32,0,66,243,130,183,218,216,230,232,30,55,3,72,35,4,69,4,64,65,0,33,2,3,64,32,2,65,128,2,72,4,64,32,2,65,255,1,113,173,33,6,32,0,41,3,72,34,7,33,8,65,63,32,7,121,167,107,33,1,3,64,65,63,32,6,121,167,107,32,1,107,34,3,65,0,78,4,64,32,6,32,8,32,3,172,134,133,33,6,12,1,11,11,65,0,33,4,3,64,32,4,32,0,40,2,4,65,1,107,72,4,64,32,6,66,8,134,33,6,32,0,41,3,72,34,7,33,8,65,63,32,7,121,167,107,33,1,3,64,65,63,32,6,121,167,107,32,1,107,34,3,65,0,78,4,64,32,6,32,8,32,3,172,134,133,33,6,12,1,11,11,32,4,65,1,106,33,4,12,1,11,11,35,6,40,2,4,32,2,65,3,116,106,32,6,55,3,0,32,2,65,1,106,33,2,12,1,11,11,65,63,32,0,41,3,72,121,167,107,172,33,7,65,0,33,2,3,64,32,2,65,128,2,72,4,64,35,5,33,1,32,2,172,32,7,134,34,8,33,6,65,63,32,0,41,3,72,34,9,121,167,107,33,3,3,64,65,63,32,6,121,167,107,32,3,107,34,4,65,0,78,4,64,32,6,32,9,32,4,172,134,133,33,6,12,1,11,11,32,1,40,2,4,32,2,65,3,116,106,32,6,32,8,132,55,3,0,32,2,65,1,106,33,2,12,1,11,11,65,1,36,4,11,32,0,66,0,55,3,24,32,0,66,0,55,3,32,65,0,33,2,3,64,32,2,32,0,40,2,4,72,4,64,32,0,40,2,0,32,2,16,18,32,2,65,1,106,33,2,12,1,11,11,32,0,66,0,55,3,40,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,40,32,0,40,2,0,32,0,40,2,8,16,19,33,1,32,0,40,2,8,32,0,40,2,0,40,2,4,106,65,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,1,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,6,66,45,136,167,65,3,116,106,41,3,0,32,6,66,8,134,66,1,132,133,55,3,40,32,0,11,38,1,1,127,32,0,40,2,0,34,0,65,172,3,75,4,64,32,0,65,16,107,34,1,32,1,40,2,4,65,1,106,54,2,4,11,32,0,11,55,1,2,127,32,1,32,0,40,2,0,34,2,71,4,64,32,1,65,172,3,75,4,64,32,1,65,16,107,34,3,32,3,40,2,4,65,1,106,54,2,4,11,32,2,16,12,11,32,0,32,1,54,2,0,11,7,0,32,0,40,2,4,11,9,0,32,0,32,1,54,2,4,11,7,0,32,0,40,2,8,11,9,0,32,0,32,1,54,2,8,11,7,0,32,0,41,3,16,11,9,0,32,0,32,1,55,3,16,11,7,0,32,0,41,3,24,11,9,0,32,0,32,1,55,3,24,11,7,0,32,0,41,3,32,11,9,0,32,0,32,1,55,3,32,11,7,0,32,0,41,3,40,11,9,0,32,0,32,1,55,3,40,11,7,0,32,0,41,3,48,11,9,0,32,0,32,1,55,3,48,11,7,0,32,0,41,3,56,11,9,0,32,0,32,1,55,3,56,11,7,0,32,0,41,3,64,11,9,0,32,0,32,1,55,3,64,11,7,0,32,0,41,3,72,11,9,0,32,0,32,1,55,3,72,11,7,0,32,0,41,3,80,11,9,0,32,0,32,1,55,3,80,11,7,0,32,0,41,3,88,11,9,0,32,0,32,1,55,3,88,11,7,0,32,0,41,3,96,11,9,0,32,0,32,1,55,3,96,11,172,4,2,5,127,1,126,32,2,65,172,3,75,4,64,32,2,65,16,107,34,4,32,4,40,2,4,65,1,106,54,2,4,11,32,2,33,4,65,0,33,2,32,1,40,2,8,33,5,32,1,40,2,4,33,6,3,64,2,127,65,0,33,3,3,64,32,3,32,5,72,4,64,32,3,32,6,106,45,0,0,33,1,32,0,40,2,0,32,0,40,2,8,16,19,33,7,32,0,40,2,8,32,0,40,2,0,40,2,4,106,32,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,7,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,8,66,45,136,167,65,3,116,106,41,3,0,32,1,173,32,8,66,8,134,132,133,55,3,40,32,0,32,0,41,3,16,66,1,124,55,3,16,32,0,32,0,41,3,24,66,1,124,55,3,24,32,0,41,3,16,32,0,41,3,80,90,4,127,32,0,41,3,40,32,0,41,3,96,131,80,5,65,0,11,4,127,65,1,5,32,0,41,3,16,32,0,41,3,88,90,11,4,64,32,0,32,0,41,3,32,55,3,48,32,0,32,0,41,3,16,55,3,56,32,0,32,0,41,3,40,55,3,64,65,0,33,1,3,64,32,1,32,0,40,2,4,72,4,64,32,0,40,2,0,32,1,16,18,32,1,65,1,106,33,1,12,1,11,11,32,0,66,0,55,3,40,32,0,65,0,54,2,8,32,0,66,0,55,3,16,32,0,66,0,55,3,40,32,0,40,2,0,32,0,40,2,8,16,19,33,1,32,0,40,2,8,32,0,40,2,0,40,2,4,106,65,1,58,0,0,32,0,32,0,41,3,40,35,6,40,2,4,32,1,65,3,116,106,41,3,0,133,55,3,40,32,0,32,0,40,2,8,65,1,106,32,0,40,2,4,111,54,2,8,32,0,35,5,40,2,4,32,0,41,3,40,34,8,66,45,136,167,65,3,116,106,41,3,0,32,8,66,8,134,66,1,132,133,55,3,40,32,3,65,1,106,12,3,11,32,3,65,1,106,33,3,12,1,11,11,65,127,11,34,1,65,0,78,4,64,32,5,32,1,107,33,5,32,1,32,6,106,33,6,32,2,34,1,65,1,106,33,2,32,4,40,2,4,32,1,65,2,116,106,32,0,41,3,56,62,2,0,12,1,11,11,32,4,11,10,0,16,15,36,5,16,15,36,6,11,3,0,1,11,73,1,2,127,32,0,40,2,4,34,1,65,255,255,255,255,0,113,34,2,65,1,70,4,64,32,0,65,16,106,16,53,32,0,32,0,40,2,0,65,1,114,54,2,0,35,0,32,0,16,2,5,32,0,32,2,65,1,107,32,1,65,128,128,128,128,127,113,114,54,2,4,11,11,58,0,2,64,2,64,2,64,32,0,65,8,107,40,2,0,14,7,0,0,1,1,1,1,1,2,11,15,11,32,0,40,2,0,34,0,4,64,32,0,65,172,3,79,4,64,32,0,65,16,107,16,52,11,11,15,11,0,11,11,137,3,7,0,65,16,11,55,40,0,0,0,1,0,0,0,1,0,0,0,40,0,0,0,97,0,108,0,108,0,111,0,99,0,97,0,116,0,105,0,111,0,110,0,32,0,116,0,111,0,111,0,32,0,108,0,97,0,114,0,103,0,101,0,65,208,0,11,45,30,0,0,0,1,0,0,0,1,0,0,0,30,0,0,0,126,0,108,0,105,0,98,0,47,0,114,0,116,0,47,0,116,0,108,0,115,0,102,0,46,0,116,0,115,0,65,128,1,11,43,28,0,0,0,1,0,0,0,1,0,0,0,28,0,0,0,73,0,110,0,118,0,97,0,108,0,105,0,100,0,32,0,108,0,101,0,110,0,103,0,116,0,104,0,65,176,1,11,53,38,0,0,0,1,0,0,0,1,0,0,0,38,0,0,0,126,0,108,0,105,0,98,0,47,0,97,0,114,0,114,0,97,0,121,0,98,0,117,0,102,0,102,0,101,0,114,0,46,0,116,0,115,0,65,240,1,11,51,36,0,0,0,1,0,0,0,1,0,0,0,36,0,0,0,73,0,110,0,100,0,101,0,120,0,32,0,111,0,117,0,116,0,32,0,111,0,102,0,32,0,114,0,97,0,110,0,103,0,101,0,65,176,2,11,51,36,0,0,0,1,0,0,0,1,0,0,0,36,0,0,0,126,0,108,0,105,0,98,0,47,0,116,0,121,0,112,0,101,0,100,0,97,0,114,0,114,0,97,0,121,0,46,0,116,0,115,0,65,240,2,11,53,7,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,145,4,0,0,2,0,0,0,49,0,0,0,2,0,0,0,17,1,0,0,2,0,0,0,16,0,34,16,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,16,46,47,114,97,98,105,110,46,119,97,115,109,46,109,97,112]);return Bl(new Response(new Blob([e],{type:"application/wasm"})),r)}fa.exports=di});var pa=U((fp,da)=>{var ha=na(),Cl=la(),Nl=async(r,e,t,n,i)=>{let o=await Cl();return new ha(o,r,e,t,n,i)};da.exports={Rabin:ha,create:Nl}});var Ba=U((Jp,Ta)=>{"use strict";Ta.exports=class{constructor(){this._bitArrays=[],this._data=[],this._length=0,this._changedLength=!1,this._changedData=!1}set(e,t){let n=this._internalPositionFor(e,!1);if(t===void 0)n!==-1&&(this._unsetInternalPos(n),this._unsetBit(e),this._changedLength=!0,this._changedData=!0);else{let i=!1;n===-1?(n=this._data.length,this._setBit(e),this._changedData=!0):i=!0,this._setInternalPos(n,e,t,i),this._changedLength=!0}}unset(e){this.set(e,void 0)}get(e){this._sortData();let t=this._internalPositionFor(e,!0);if(t!==-1)return this._data[t][1]}push(e){return this.set(this.length,e),this.length}get length(){if(this._sortData(),this._changedLength){let e=this._data[this._data.length-1];this._length=e?e[0]+1:0,this._changedLength=!1}return this._length}forEach(e){let t=0;for(;t<this.length;)e(this.get(t),t,this),t++}map(e){let t=0,n=new Array(this.length);for(;t<this.length;)n[t]=e(this.get(t),t,this),t++;return n}reduce(e,t){let n=0,i=t;for(;n<this.length;){let o=this.get(n);i=e(i,o,n),n++}return i}find(e){let t=0,n,i;for(;t<this.length&&!n;)i=this.get(t),n=e(i),t++;return n?i:void 0}_internalPositionFor(e,t){let n=this._bytePosFor(e,t);if(n>=this._bitArrays.length)return-1;let i=this._bitArrays[n],o=e-n*7;if(!((i&1<<o)>0))return-1;let c=this._bitArrays.slice(0,n).reduce(o1,0),a=~(4294967295<<o+1),l=Sa(i&a);return c+l-1}_bytePosFor(e,t){let n=Math.floor(e/7),i=n+1;for(;!t&&this._bitArrays.length<i;)this._bitArrays.push(0);return n}_setBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]|=1<<e-t*7}_unsetBit(e){let t=this._bytePosFor(e,!1);this._bitArrays[t]&=~(1<<e-t*7)}_setInternalPos(e,t,n,i){let o=this._data,s=[t,n];if(i)this._sortData(),o[e]=s;else{if(o.length)if(o[o.length-1][0]>=t)o.push(s);else if(o[0][0]<=t)o.unshift(s);else{let c=Math.round(o.length/2);this._data=o.slice(0,c).concat(s).concat(o.slice(c))}else this._data.push(s);this._changedData=!0,this._changedLength=!0}}_unsetInternalPos(e){this._data.splice(e,1)}_sortData(){this._changedData&&this._data.sort(s1),this._changedData=!1}bitField(){let e=[],t=8,n=0,i=0,o,s=this._bitArrays.slice();for(;s.length||n;){n===0&&(o=s.shift(),n=7);let a=Math.min(n,t),l=~(255<<a),u=o&l;i|=u<<8-t,o=o>>>a,n-=a,t-=a,(!t||!n&&!s.length)&&(e.push(i),i=0,t=8)}for(var c=e.length-1;c>0&&e[c]===0;c--)e.pop();return e}compactArray(){return this._sortData(),this._data.map(a1)}};function o1(r,e){return r+Sa(e)}function Sa(r){let e=r;return e=e-(e>>1&1431655765),e=(e&858993459)+(e>>2&858993459),(e+(e>>4)&252645135)*16843009>>24}function s1(r,e){return r[0]-e[0]}function a1(r){return r[1]}});var Zc=U((t3,Gi)=>{"use strict";var oh=Object.prototype.hasOwnProperty,ue="~";function xr(){}Object.create&&(xr.prototype=Object.create(null),new xr().__proto__||(ue=!1));function sh(r,e,t){this.fn=r,this.context=e,this.once=t||!1}function Jc(r,e,t,n,i){if(typeof t!="function")throw new TypeError("The listener must be a function");var o=new sh(t,n||r,i),s=ue?ue+e:e;return r._events[s]?r._events[s].fn?r._events[s]=[r._events[s],o]:r._events[s].push(o):(r._events[s]=o,r._eventsCount++),r}function dn(r,e){--r._eventsCount===0?r._events=new xr:delete r._events[e]}function ce(){this._events=new xr,this._eventsCount=0}ce.prototype.eventNames=function(){var e=[],t,n;if(this._eventsCount===0)return e;for(n in t=this._events)oh.call(t,n)&&e.push(ue?n.slice(1):n);return Object.getOwnPropertySymbols?e.concat(Object.getOwnPropertySymbols(t)):e};ce.prototype.listeners=function(e){var t=ue?ue+e:e,n=this._events[t];if(!n)return[];if(n.fn)return[n.fn];for(var i=0,o=n.length,s=new Array(o);i<o;i++)s[i]=n[i].fn;return s};ce.prototype.listenerCount=function(e){var t=ue?ue+e:e,n=this._events[t];return n?n.fn?1:n.length:0};ce.prototype.emit=function(e,t,n,i,o,s){var c=ue?ue+e:e;if(!this._events[c])return!1;var a=this._events[c],l=arguments.length,u,h;if(a.fn){switch(a.once&&this.removeListener(e,a.fn,void 0,!0),l){case 1:return a.fn.call(a.context),!0;case 2:return a.fn.call(a.context,t),!0;case 3:return a.fn.call(a.context,t,n),!0;case 4:return a.fn.call(a.context,t,n,i),!0;case 5:return a.fn.call(a.context,t,n,i,o),!0;case 6:return a.fn.call(a.context,t,n,i,o,s),!0}for(h=1,u=new Array(l-1);h<l;h++)u[h-1]=arguments[h];a.fn.apply(a.context,u)}else{var p=a.length,f;for(h=0;h<p;h++)switch(a[h].once&&this.removeListener(e,a[h].fn,void 0,!0),l){case 1:a[h].fn.call(a[h].context);break;case 2:a[h].fn.call(a[h].context,t);break;case 3:a[h].fn.call(a[h].context,t,n);break;case 4:a[h].fn.call(a[h].context,t,n,i);break;default:if(!u)for(f=1,u=new Array(l-1);f<l;f++)u[f-1]=arguments[f];a[h].fn.apply(a[h].context,u)}}return!0};ce.prototype.on=function(e,t,n){return Jc(this,e,t,n,!1)};ce.prototype.once=function(e,t,n){return Jc(this,e,t,n,!0)};ce.prototype.removeListener=function(e,t,n,i){var o=ue?ue+e:e;if(!this._events[o])return this;if(!t)return dn(this,o),this;var s=this._events[o];if(s.fn)s.fn===t&&(!i||s.once)&&(!n||s.context===n)&&dn(this,o);else{for(var c=0,a=[],l=s.length;c<l;c++)(s[c].fn!==t||i&&!s[c].once||n&&s[c].context!==n)&&a.push(s[c]);a.length?this._events[o]=a.length===1?a[0]:a:dn(this,o)}return this};ce.prototype.removeAllListeners=function(e){var t;return e?(t=ue?ue+e:e,this._events[t]&&dn(this,t)):(this._events=new xr,this._eventsCount=0),this};ce.prototype.off=ce.prototype.removeListener;ce.prototype.addListener=ce.prototype.on;ce.prefixed=ue;ce.EventEmitter=ce;typeof Gi<"u"&&(Gi.exports=ce)});var Au=U((W3,vu)=>{var Wt=1e3,qt=Wt*60,Yt=qt*60,_t=Yt*24,Ah=_t*7,Eh=_t*365.25;vu.exports=function(r,e){e=e||{};var t=typeof r;if(t==="string"&&r.length>0)return kh(r);if(t==="number"&&isFinite(r))return e.long?Th(r):Sh(r);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(r))};function kh(r){if(r=String(r),!(r.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(r);if(e){var t=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return t*Eh;case"weeks":case"week":case"w":return t*Ah;case"days":case"day":case"d":return t*_t;case"hours":case"hour":case"hrs":case"hr":case"h":return t*Yt;case"minutes":case"minute":case"mins":case"min":case"m":return t*qt;case"seconds":case"second":case"secs":case"sec":case"s":return t*Wt;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return t;default:return}}}}function Sh(r){var e=Math.abs(r);return e>=_t?Math.round(r/_t)+"d":e>=Yt?Math.round(r/Yt)+"h":e>=qt?Math.round(r/qt)+"m":e>=Wt?Math.round(r/Wt)+"s":r+"ms"}function Th(r){var e=Math.abs(r);return e>=_t?kn(r,e,_t,"day"):e>=Yt?kn(r,e,Yt,"hour"):e>=qt?kn(r,e,qt,"minute"):e>=Wt?kn(r,e,Wt,"second"):r+" ms"}function kn(r,e,t,n){var i=e>=t*1.5;return Math.round(r/t)+" "+n+(i?"s":"")}});var ku=U((q3,Eu)=>{function Bh(r){t.debug=t,t.default=t,t.coerce=a,t.disable=o,t.enable=i,t.enabled=s,t.humanize=Au(),t.destroy=l,Object.keys(r).forEach(u=>{t[u]=r[u]}),t.names=[],t.skips=[],t.formatters={};function e(u){let h=0;for(let p=0;p<u.length;p++)h=(h<<5)-h+u.charCodeAt(p),h|=0;return t.colors[Math.abs(h)%t.colors.length]}t.selectColor=e;function t(u){let h,p=null,f,d;function m(...E){if(!m.enabled)return;let g=m,b=Number(new Date),_=b-(h||b);g.diff=_,g.prev=h,g.curr=b,h=b,E[0]=t.coerce(E[0]),typeof E[0]!="string"&&E.unshift("%O");let x=0;E[0]=E[0].replace(/%([a-zA-Z%])/g,(v,w)=>{if(v==="%%")return"%";x++;let S=t.formatters[w];if(typeof S=="function"){let I=E[x];v=S.call(g,I),E.splice(x,1),x--}return v}),t.formatArgs.call(g,E),(g.log||t.log).apply(g,E)}return m.namespace=u,m.useColors=t.useColors(),m.color=t.selectColor(u),m.extend=n,m.destroy=t.destroy,Object.defineProperty(m,"enabled",{enumerable:!0,configurable:!1,get:()=>p!==null?p:(f!==t.namespaces&&(f=t.namespaces,d=t.enabled(u)),d),set:E=>{p=E}}),typeof t.init=="function"&&t.init(m),m}function n(u,h){let p=t(this.namespace+(typeof h>"u"?":":h)+u);return p.log=this.log,p}function i(u){t.save(u),t.namespaces=u,t.names=[],t.skips=[];let h,p=(typeof u=="string"?u:"").split(/[\s,]+/),f=p.length;for(h=0;h<f;h++)p[h]&&(u=p[h].replace(/\*/g,".*?"),u[0]==="-"?t.skips.push(new RegExp("^"+u.slice(1)+"$")):t.names.push(new RegExp("^"+u+"$")))}function o(){let u=[...t.names.map(c),...t.skips.map(c).map(h=>"-"+h)].join(",");return t.enable(""),u}function s(u){if(u[u.length-1]==="*")return!0;let h,p;for(h=0,p=t.skips.length;h<p;h++)if(t.skips[h].test(u))return!1;for(h=0,p=t.names.length;h<p;h++)if(t.names[h].test(u))return!0;return!1}function c(u){return u.toString().substring(2,u.toString().length-2).replace(/\.\*\?$/,"*")}function a(u){return u instanceof Error?u.stack||u.message:u}function l(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return t.enable(t.load()),t}Eu.exports=Bh});var Su=U((xe,Sn)=>{xe.formatArgs=Nh;xe.save=Dh;xe.load=Fh;xe.useColors=Ch;xe.storage=Lh();xe.destroy=(()=>{let r=!1;return()=>{r||(r=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();xe.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function Ch(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)?!1:typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function Nh(r){if(r[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+r[0]+(this.useColors?"%c ":" ")+"+"+Sn.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;r.splice(1,0,e,"color: inherit");let t=0,n=0;r[0].replace(/%[a-zA-Z%]/g,i=>{i!=="%%"&&(t++,i==="%c"&&(n=t))}),r.splice(n,0,e)}xe.log=console.debug||console.log||(()=>{});function Dh(r){try{r?xe.storage.setItem("debug",r):xe.storage.removeItem("debug")}catch{}}function Fh(){let r;try{r=xe.storage.getItem("debug")}catch{}return!r&&typeof process<"u"&&"env"in process&&(r=process.env.DEBUG),r}function Lh(){try{return localStorage}catch{}}Sn.exports=ku()(xe);var{formatters:Ih}=Sn.exports;Ih.j=function(r){try{return JSON.stringify(r)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}});var dd={};oe(dd,{unixfs:()=>hd});async function*ct(r,e=1){let t=[];e<1&&(e=1);for await(let n of r)for(t.push(n);t.length>=e;)yield t.slice(0,e),t=t.slice(e);for(;t.length>0;)yield t.slice(0,e),t=t.slice(e)}async function*tr(r,e=1){for await(let t of ct(r,e)){let n=t.map(async i=>await i().then(o=>({ok:!0,value:o}),o=>({ok:!1,err:o})));for(let i=0;i<n.length;i++){let o=await n[i];if(o.ok)yield o.value;else throw o.err}}}var po=Y(ho(),1),ee=po.default;var On={};oe(On,{sha256:()=>Q,sha512:()=>xf});var kt={};oe(kt,{coerce:()=>Ae,empty:()=>mo,equals:()=>Dn,fromHex:()=>ef,fromString:()=>Fn,isBinary:()=>tf,toHex:()=>Xu,toString:()=>Ln});var mo=new Uint8Array(0),Xu=r=>r.reduce((e,t)=>e+t.toString(16).padStart(2,"0"),""),ef=r=>{let e=r.match(/../g);return e?new Uint8Array(e.map(t=>parseInt(t,16))):mo},Dn=(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},Ae=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")},tf=r=>r instanceof ArrayBuffer||ArrayBuffer.isView(r),Fn=r=>new TextEncoder().encode(r),Ln=r=>new TextDecoder().decode(r);var rf=wo,yo=128,nf=127,of=~nf,sf=Math.pow(2,31);function wo(r,e,t){e=e||[],t=t||0;for(var n=t;r>=sf;)e[t++]=r&255|yo,r/=128;for(;r&of;)e[t++]=r&255|yo,r>>>=7;return e[t]=r|0,wo.bytes=t-n+1,e}var af=In,cf=128,go=127;function In(r,n){var t=0,n=n||0,i=0,o=n,s,c=r.length;do{if(o>=c)throw In.bytes=0,new RangeError("Could not decode varint");s=r[o++],t+=i<28?(s&go)<<i:(s&go)*Math.pow(2,i),i+=7}while(s>=cf);return In.bytes=o-n,t}var uf=Math.pow(2,7),ff=Math.pow(2,14),lf=Math.pow(2,21),hf=Math.pow(2,28),df=Math.pow(2,35),pf=Math.pow(2,42),mf=Math.pow(2,49),yf=Math.pow(2,56),gf=Math.pow(2,63),wf=function(r){return r<uf?1:r<ff?2:r<lf?3:r<hf?4:r<df?5:r<pf?6:r<mf?7:r<yf?8:r<gf?9:10},bf={encode:rf,decode:af,encodingLength:wf},_f=bf,rr=_f;var nr=(r,e=0)=>[rr.decode(r,e),rr.decode.bytes],St=(r,e,t=0)=>(rr.encode(r,e,t),e),Tt=r=>rr.encodingLength(r);var ut=(r,e)=>{let t=e.byteLength,n=Tt(r),i=n+Tt(t),o=new Uint8Array(i+t);return St(r,o,0),St(t,o,n),o.set(e,i),new Bt(r,t,e,o)},Ur=r=>{let e=Ae(r),[t,n]=nr(e),[i,o]=nr(e.subarray(n)),s=e.subarray(n+o);if(s.byteLength!==i)throw new Error("Incorrect length");return new Bt(t,i,s,e)},bo=(r,e)=>{if(r===e)return!0;{let t=e;return r.code===t.code&&r.size===t.size&&t.bytes instanceof Uint8Array&&Dn(r.bytes,t.bytes)}},Bt=class{constructor(e,t,n,i){this.code=e,this.size=t,this.digest=n,this.bytes=i}};var ft=({name:r,code:e,encode:t})=>new Pn(r,e,t),Pn=class{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?ut(this.code,t):t.then(n=>ut(this.code,n))}else throw Error("Unknown type, must be binary type")}};var xo=r=>async e=>new Uint8Array(await crypto.subtle.digest(r,e)),Q=ft({name:"sha2-256",code:18,encode:xo("SHA-256")}),xf=ft({name:"sha2-512",code:19,encode:xo("SHA-512")});var Mn={};oe(Mn,{base58btc:()=>Ee,base58flickr:()=>Tf});function vf(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 i=0;i<r.length;i++){var o=r.charAt(i),s=o.charCodeAt(0);if(t[s]!==255)throw new TypeError(o+" is ambiguous");t[s]=i}var c=r.length,a=r.charAt(0),l=Math.log(c)/Math.log(256),u=Math.log(256)/Math.log(c);function h(d){if(d instanceof Uint8Array||(ArrayBuffer.isView(d)?d=new Uint8Array(d.buffer,d.byteOffset,d.byteLength):Array.isArray(d)&&(d=Uint8Array.from(d))),!(d instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(d.length===0)return"";for(var m=0,E=0,g=0,b=d.length;g!==b&&d[g]===0;)g++,m++;for(var _=(b-g)*u+1>>>0,x=new Uint8Array(_);g!==b;){for(var C=d[g],v=0,w=_-1;(C!==0||v<E)&&w!==-1;w--,v++)C+=256*x[w]>>>0,x[w]=C%c>>>0,C=C/c>>>0;if(C!==0)throw new Error("Non-zero carry");E=v,g++}for(var S=_-E;S!==_&&x[S]===0;)S++;for(var I=a.repeat(m);S<_;++S)I+=r.charAt(x[S]);return I}function p(d){if(typeof d!="string")throw new TypeError("Expected String");if(d.length===0)return new Uint8Array;var m=0;if(d[m]!==" "){for(var E=0,g=0;d[m]===a;)E++,m++;for(var b=(d.length-m)*l+1>>>0,_=new Uint8Array(b);d[m];){var x=t[d.charCodeAt(m)];if(x===255)return;for(var C=0,v=b-1;(x!==0||C<g)&&v!==-1;v--,C++)x+=c*_[v]>>>0,_[v]=x%256>>>0,x=x/256>>>0;if(x!==0)throw new Error("Non-zero carry");g=C,m++}if(d[m]!==" "){for(var w=b-g;w!==b&&_[w]===0;)w++;for(var S=new Uint8Array(E+(b-w)),I=E;w!==b;)S[I++]=_[w++];return S}}}function f(d){var m=p(d);if(m)return m;throw new Error(`Non-${e} character`)}return{encode:h,decodeUnsafe:p,decode:f}}var Af=vf,Ef=Af,vo=Ef;var Un=class{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")}},zn=class{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 Ao(this,e)}},Rn=class{constructor(e){this.decoders=e}or(e){return Ao(this,e)}decode(e){let t=e[0],n=this.decoders[t];if(n)return n.decode(e);throw RangeError(`Unable to decode multibase string ${JSON.stringify(e)}, only inputs prefixed with ${Object.keys(this.decoders)} are supported`)}},Ao=(r,e)=>new Rn({...r.decoders||{[r.prefix]:r},...e.decoders||{[e.prefix]:e}}),$n=class{constructor(e,t,n,i){this.name=e,this.prefix=t,this.baseEncode=n,this.baseDecode=i,this.encoder=new Un(e,t,n),this.decoder=new zn(e,t,i)}encode(e){return this.encoder.encode(e)}decode(e){return this.decoder.decode(e)}},Nt=({name:r,prefix:e,encode:t,decode:n})=>new $n(r,e,t,n),Qe=({prefix:r,name:e,alphabet:t})=>{let{encode:n,decode:i}=vo(t,e);return Nt({prefix:r,name:e,encode:n,decode:o=>Ae(i(o))})},kf=(r,e,t,n)=>{let i={};for(let u=0;u<e.length;++u)i[e[u]]=u;let o=r.length;for(;r[o-1]==="=";)--o;let s=new Uint8Array(o*t/8|0),c=0,a=0,l=0;for(let u=0;u<o;++u){let h=i[r[u]];if(h===void 0)throw new SyntaxError(`Non-${n} character`);a=a<<t|h,c+=t,c>=8&&(c-=8,s[l++]=255&a>>c)}if(c>=t||255&a<<8-c)throw new SyntaxError("Unexpected end of data");return s},Sf=(r,e,t)=>{let n=e[e.length-1]==="=",i=(1<<t)-1,o="",s=0,c=0;for(let a=0;a<r.length;++a)for(c=c<<8|r[a],s+=8;s>t;)s-=t,o+=e[i&c>>s];if(s&&(o+=e[i&c<<t-s]),n)for(;o.length*t&7;)o+="=";return o},j=({name:r,prefix:e,bitsPerChar:t,alphabet:n})=>Nt({prefix:e,name:r,encode(i){return Sf(i,n,t)},decode(i){return kf(i,n,t,r)}});var Ee=Qe({name:"base58btc",prefix:"z",alphabet:"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"}),Tf=Qe({name:"base58flickr",prefix:"Z",alphabet:"123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"});var Vn={};oe(Vn,{base32:()=>Ke,base32hex:()=>Df,base32hexpad:()=>Lf,base32hexpadupper:()=>If,base32hexupper:()=>Ff,base32pad:()=>Cf,base32padupper:()=>Nf,base32upper:()=>Bf,base32z:()=>Pf});var Ke=j({prefix:"b",name:"base32",alphabet:"abcdefghijklmnopqrstuvwxyz234567",bitsPerChar:5}),Bf=j({prefix:"B",name:"base32upper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567",bitsPerChar:5}),Cf=j({prefix:"c",name:"base32pad",alphabet:"abcdefghijklmnopqrstuvwxyz234567=",bitsPerChar:5}),Nf=j({prefix:"C",name:"base32padupper",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567=",bitsPerChar:5}),Df=j({prefix:"v",name:"base32hex",alphabet:"0123456789abcdefghijklmnopqrstuv",bitsPerChar:5}),Ff=j({prefix:"V",name:"base32hexupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV",bitsPerChar:5}),Lf=j({prefix:"t",name:"base32hexpad",alphabet:"0123456789abcdefghijklmnopqrstuv=",bitsPerChar:5}),If=j({prefix:"T",name:"base32hexpadupper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUV=",bitsPerChar:5}),Pf=j({prefix:"h",name:"base32z",alphabet:"ybndrfg8ejkmcpqxot1uwisza345h769",bitsPerChar:5});var Eo=(r,e)=>{let{bytes:t,version:n}=r;switch(n){case 0:return Uf(t,jn(r),e||Ee.encoder);default:return zf(t,jn(r),e||Ke.encoder)}};var ko=new WeakMap,jn=r=>{let e=ko.get(r);if(e==null){let t=new Map;return ko.set(r,t),t}return e},N=class{constructor(e,t,n,i){this.code=t,this.version=e,this.multihash=n,this.bytes=i,this["/"]=i}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!==ir)throw new Error("Cannot convert a non dag-pb CID to CIDv0");if(t.code!==Rf)throw new Error("Cannot convert non sha2-256 multihash CID to CIDv0");return N.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=ut(e,t);return N.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 N.equals(this,e)}static equals(e,t){let n=t;return n&&e.code===n.code&&e.version===n.version&&bo(e.multihash,n.multihash)}toString(e){return Eo(this,e)}toJSON(){return{"/":Eo(this)}}link(){return this}get[Symbol.toStringTag](){return"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 N)return t;if(t["/"]!=null&&t["/"]===t.bytes||t.asCID===t){let{version:n,code:i,multihash:o,bytes:s}=t;return new N(n,i,o,s||So(n,i,o.bytes))}else if(t[$f]===!0){let{version:n,multihash:i,code:o}=t,s=Ur(i);return N.create(n,o,s)}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!==ir)throw new Error(`Version 0 CID must use dag-pb (code: ${ir}) block encoding`);return new N(e,t,n,n.bytes)}case 1:{let i=So(e,t,n.bytes);return new N(e,t,n,i)}default:throw new Error("Invalid version")}}static createV0(e){return N.create(0,ir,e)}static createV1(e,t){return N.create(1,e,t)}static decode(e){let[t,n]=N.decodeFirst(e);if(n.length)throw new Error("Incorrect length");return t}static decodeFirst(e){let t=N.inspectBytes(e),n=t.size-t.multihashSize,i=Ae(e.subarray(n,n+t.multihashSize));if(i.byteLength!==t.multihashSize)throw new Error("Incorrect length");let o=i.subarray(t.multihashSize-t.digestSize),s=new Bt(t.multihashCode,t.digestSize,o,i);return[t.version===0?N.createV0(s):N.createV1(t.codec,s),e.subarray(t.size)]}static inspectBytes(e){let t=0,n=()=>{let[h,p]=nr(e.subarray(t));return t+=p,h},i=n(),o=ir;if(i===18?(i=0,t=0):o=n(),i!==0&&i!==1)throw new RangeError(`Invalid CID version ${i}`);let s=t,c=n(),a=n(),l=t+a,u=l-s;return{version:i,codec:o,multihashCode:c,digestSize:a,multihashSize:u,size:l}}static parse(e,t){let[n,i]=Of(e,t),o=N.decode(i);if(o.version===0&&e[0]!=="Q")throw Error("Version 0 CID string must not include multibase prefix");return jn(o).set(n,e),o}},Of=(r,e)=>{switch(r[0]){case"Q":{let t=e||Ee;return[Ee.prefix,t.decode(`${Ee.prefix}${r}`)]}case Ee.prefix:{let t=e||Ee;return[Ee.prefix,t.decode(r)]}case Ke.prefix:{let t=e||Ke;return[Ke.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)]}}},Uf=(r,e,t)=>{let{prefix:n}=t;if(n!==Ee.prefix)throw Error(`Cannot string encode V0 in ${t.name} encoding`);let i=e.get(n);if(i==null){let o=t.encode(r).slice(1);return e.set(n,o),o}else return i},zf=(r,e,t)=>{let{prefix:n}=t,i=e.get(n);if(i==null){let o=t.encode(r);return e.set(n,o),o}else return i},ir=112,Rf=18,So=(r,e,t)=>{let n=Tt(r),i=n+Tt(e),o=new Uint8Array(i+t.byteLength);return St(r,o,0),St(e,o,n),o.set(t,i),o},$f=Symbol.for("@ipld/js-cid/CID");var Rr=Y(Co(),1);function Mf(r){let e=new Array(4);for(let t=0;t<4;t++)e[t]=r&255,r=r>>8;return new Uint8Array(e)}var Md=ft({name:"murmur3-32",code:35,encode:r=>Mf(Rr.default.x86.hash32(r))}),lt=ft({name:"murmur3-128",code:34,encode:r=>kt.fromHex(Rr.default.x64.hash128(r))}),Vd=ft({name:"murmur3-x64-64",code:34,encode:r=>kt.fromHex(Rr.default.x64.hash128(r)).subarray(0,8)});async function Vf(r){return(await lt.encode(r)).slice(0,8).reverse()}var jf={chunker:"fixed",strategy:"balanced",rawLeaves:!1,onlyHash:!1,reduceSingleLeafToSelf:!0,hasher:Q,leafType:"file",cidVersion:0,progress:()=>()=>{},shardSplitThreshold:1e3,fileImportConcurrency:50,blockWriteConcurrency:10,minChunkSize:262144,maxChunkSize:262144,avgChunkSize:262144,window:16,polynomial:0x3df305dfb2a804,maxChildrenPerNode:174,layerRepeat:4,wrapWithDirectory:!1,recursive:!1,hidden:!1,timeout:void 0,hamtHashFn:Vf,hamtHashCode:34,hamtBucketBits:8},No=(r={})=>ee.bind({ignoreUndefined:!0})(jf,r);var Hr=Y(le(),1);var je=Y(Cs(),1),Ft=je.default.Reader,ni=je.default.Writer,D=je.default.util,ne=je.default.roots["ipfs-unixfs"]||(je.default.roots["ipfs-unixfs"]={}),Ns=ne.Data=(()=>{function r(e){if(this.blocksizes=[],e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.Type=0,r.prototype.Data=D.newBuffer([]),r.prototype.filesize=D.Long?D.Long.fromBits(0,0,!0):0,r.prototype.blocksizes=D.emptyArray,r.prototype.hashType=D.Long?D.Long.fromBits(0,0,!0):0,r.prototype.fanout=D.Long?D.Long.fromBits(0,0,!0):0,r.prototype.mode=0,r.prototype.mtime=null,r.encode=function(t,n){if(n||(n=ni.create()),n.uint32(8).int32(t.Type),t.Data!=null&&Object.hasOwnProperty.call(t,"Data")&&n.uint32(18).bytes(t.Data),t.filesize!=null&&Object.hasOwnProperty.call(t,"filesize")&&n.uint32(24).uint64(t.filesize),t.blocksizes!=null&&t.blocksizes.length)for(var i=0;i<t.blocksizes.length;++i)n.uint32(32).uint64(t.blocksizes[i]);return t.hashType!=null&&Object.hasOwnProperty.call(t,"hashType")&&n.uint32(40).uint64(t.hashType),t.fanout!=null&&Object.hasOwnProperty.call(t,"fanout")&&n.uint32(48).uint64(t.fanout),t.mode!=null&&Object.hasOwnProperty.call(t,"mode")&&n.uint32(56).uint32(t.mode),t.mtime!=null&&Object.hasOwnProperty.call(t,"mtime")&&ne.UnixTime.encode(t.mtime,n.uint32(66).fork()).ldelim(),n},r.decode=function(t,n){t instanceof Ft||(t=Ft.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new ne.Data;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.Type=t.int32();break;case 2:o.Data=t.bytes();break;case 3:o.filesize=t.uint64();break;case 4:if(o.blocksizes&&o.blocksizes.length||(o.blocksizes=[]),(s&7)===2)for(var c=t.uint32()+t.pos;t.pos<c;)o.blocksizes.push(t.uint64());else o.blocksizes.push(t.uint64());break;case 5:o.hashType=t.uint64();break;case 6:o.fanout=t.uint64();break;case 7:o.mode=t.uint32();break;case 8:o.mtime=ne.UnixTime.decode(t,t.uint32());break;default:t.skipType(s&7);break}}if(!o.hasOwnProperty("Type"))throw D.ProtocolError("missing required 'Type'",{instance:o});return o},r.fromObject=function(t){if(t instanceof ne.Data)return t;var n=new ne.Data;switch(t.Type){case"Raw":case 0:n.Type=0;break;case"Directory":case 1:n.Type=1;break;case"File":case 2:n.Type=2;break;case"Metadata":case 3:n.Type=3;break;case"Symlink":case 4:n.Type=4;break;case"HAMTShard":case 5:n.Type=5;break}if(t.Data!=null&&(typeof t.Data=="string"?D.base64.decode(t.Data,n.Data=D.newBuffer(D.base64.length(t.Data)),0):t.Data.length&&(n.Data=t.Data)),t.filesize!=null&&(D.Long?(n.filesize=D.Long.fromValue(t.filesize)).unsigned=!0:typeof t.filesize=="string"?n.filesize=parseInt(t.filesize,10):typeof t.filesize=="number"?n.filesize=t.filesize:typeof t.filesize=="object"&&(n.filesize=new D.LongBits(t.filesize.low>>>0,t.filesize.high>>>0).toNumber(!0))),t.blocksizes){if(!Array.isArray(t.blocksizes))throw TypeError(".Data.blocksizes: array expected");n.blocksizes=[];for(var i=0;i<t.blocksizes.length;++i)D.Long?(n.blocksizes[i]=D.Long.fromValue(t.blocksizes[i])).unsigned=!0:typeof t.blocksizes[i]=="string"?n.blocksizes[i]=parseInt(t.blocksizes[i],10):typeof t.blocksizes[i]=="number"?n.blocksizes[i]=t.blocksizes[i]:typeof t.blocksizes[i]=="object"&&(n.blocksizes[i]=new D.LongBits(t.blocksizes[i].low>>>0,t.blocksizes[i].high>>>0).toNumber(!0))}if(t.hashType!=null&&(D.Long?(n.hashType=D.Long.fromValue(t.hashType)).unsigned=!0:typeof t.hashType=="string"?n.hashType=parseInt(t.hashType,10):typeof t.hashType=="number"?n.hashType=t.hashType:typeof t.hashType=="object"&&(n.hashType=new D.LongBits(t.hashType.low>>>0,t.hashType.high>>>0).toNumber(!0))),t.fanout!=null&&(D.Long?(n.fanout=D.Long.fromValue(t.fanout)).unsigned=!0:typeof t.fanout=="string"?n.fanout=parseInt(t.fanout,10):typeof t.fanout=="number"?n.fanout=t.fanout:typeof t.fanout=="object"&&(n.fanout=new D.LongBits(t.fanout.low>>>0,t.fanout.high>>>0).toNumber(!0))),t.mode!=null&&(n.mode=t.mode>>>0),t.mtime!=null){if(typeof t.mtime!="object")throw TypeError(".Data.mtime: object expected");n.mtime=ne.UnixTime.fromObject(t.mtime)}return n},r.toObject=function(t,n){n||(n={});var i={};if((n.arrays||n.defaults)&&(i.blocksizes=[]),n.defaults){if(i.Type=n.enums===String?"Raw":0,n.bytes===String?i.Data="":(i.Data=[],n.bytes!==Array&&(i.Data=D.newBuffer(i.Data))),D.Long){var o=new D.Long(0,0,!0);i.filesize=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.filesize=n.longs===String?"0":0;if(D.Long){var o=new D.Long(0,0,!0);i.hashType=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.hashType=n.longs===String?"0":0;if(D.Long){var o=new D.Long(0,0,!0);i.fanout=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.fanout=n.longs===String?"0":0;i.mode=0,i.mtime=null}if(t.Type!=null&&t.hasOwnProperty("Type")&&(i.Type=n.enums===String?ne.Data.DataType[t.Type]:t.Type),t.Data!=null&&t.hasOwnProperty("Data")&&(i.Data=n.bytes===String?D.base64.encode(t.Data,0,t.Data.length):n.bytes===Array?Array.prototype.slice.call(t.Data):t.Data),t.filesize!=null&&t.hasOwnProperty("filesize")&&(typeof t.filesize=="number"?i.filesize=n.longs===String?String(t.filesize):t.filesize:i.filesize=n.longs===String?D.Long.prototype.toString.call(t.filesize):n.longs===Number?new D.LongBits(t.filesize.low>>>0,t.filesize.high>>>0).toNumber(!0):t.filesize),t.blocksizes&&t.blocksizes.length){i.blocksizes=[];for(var s=0;s<t.blocksizes.length;++s)typeof t.blocksizes[s]=="number"?i.blocksizes[s]=n.longs===String?String(t.blocksizes[s]):t.blocksizes[s]:i.blocksizes[s]=n.longs===String?D.Long.prototype.toString.call(t.blocksizes[s]):n.longs===Number?new D.LongBits(t.blocksizes[s].low>>>0,t.blocksizes[s].high>>>0).toNumber(!0):t.blocksizes[s]}return t.hashType!=null&&t.hasOwnProperty("hashType")&&(typeof t.hashType=="number"?i.hashType=n.longs===String?String(t.hashType):t.hashType:i.hashType=n.longs===String?D.Long.prototype.toString.call(t.hashType):n.longs===Number?new D.LongBits(t.hashType.low>>>0,t.hashType.high>>>0).toNumber(!0):t.hashType),t.fanout!=null&&t.hasOwnProperty("fanout")&&(typeof t.fanout=="number"?i.fanout=n.longs===String?String(t.fanout):t.fanout:i.fanout=n.longs===String?D.Long.prototype.toString.call(t.fanout):n.longs===Number?new D.LongBits(t.fanout.low>>>0,t.fanout.high>>>0).toNumber(!0):t.fanout),t.mode!=null&&t.hasOwnProperty("mode")&&(i.mode=t.mode),t.mtime!=null&&t.hasOwnProperty("mtime")&&(i.mtime=ne.UnixTime.toObject(t.mtime,n)),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,je.default.util.toJSONOptions)},r.DataType=function(){let e={},t=Object.create(e);return t[e[0]="Raw"]=0,t[e[1]="Directory"]=1,t[e[2]="File"]=2,t[e[3]="Metadata"]=3,t[e[4]="Symlink"]=4,t[e[5]="HAMTShard"]=5,t}(),r})(),h0=ne.UnixTime=(()=>{function r(e){if(e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.Seconds=D.Long?D.Long.fromBits(0,0,!1):0,r.prototype.FractionalNanoseconds=0,r.encode=function(t,n){return n||(n=ni.create()),n.uint32(8).int64(t.Seconds),t.FractionalNanoseconds!=null&&Object.hasOwnProperty.call(t,"FractionalNanoseconds")&&n.uint32(21).fixed32(t.FractionalNanoseconds),n},r.decode=function(t,n){t instanceof Ft||(t=Ft.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new ne.UnixTime;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.Seconds=t.int64();break;case 2:o.FractionalNanoseconds=t.fixed32();break;default:t.skipType(s&7);break}}if(!o.hasOwnProperty("Seconds"))throw D.ProtocolError("missing required 'Seconds'",{instance:o});return o},r.fromObject=function(t){if(t instanceof ne.UnixTime)return t;var n=new ne.UnixTime;return t.Seconds!=null&&(D.Long?(n.Seconds=D.Long.fromValue(t.Seconds)).unsigned=!1:typeof t.Seconds=="string"?n.Seconds=parseInt(t.Seconds,10):typeof t.Seconds=="number"?n.Seconds=t.Seconds:typeof t.Seconds=="object"&&(n.Seconds=new D.LongBits(t.Seconds.low>>>0,t.Seconds.high>>>0).toNumber())),t.FractionalNanoseconds!=null&&(n.FractionalNanoseconds=t.FractionalNanoseconds>>>0),n},r.toObject=function(t,n){n||(n={});var i={};if(n.defaults){if(D.Long){var o=new D.Long(0,0,!1);i.Seconds=n.longs===String?o.toString():n.longs===Number?o.toNumber():o}else i.Seconds=n.longs===String?"0":0;i.FractionalNanoseconds=0}return t.Seconds!=null&&t.hasOwnProperty("Seconds")&&(typeof t.Seconds=="number"?i.Seconds=n.longs===String?String(t.Seconds):t.Seconds:i.Seconds=n.longs===String?D.Long.prototype.toString.call(t.Seconds):n.longs===Number?new D.LongBits(t.Seconds.low>>>0,t.Seconds.high>>>0).toNumber():t.Seconds),t.FractionalNanoseconds!=null&&t.hasOwnProperty("FractionalNanoseconds")&&(i.FractionalNanoseconds=t.FractionalNanoseconds),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,je.default.util.toJSONOptions)},r})(),d0=ne.Metadata=(()=>{function r(e){if(e)for(var t=Object.keys(e),n=0;n<t.length;++n)e[t[n]]!=null&&(this[t[n]]=e[t[n]])}return r.prototype.MimeType="",r.encode=function(t,n){return n||(n=ni.create()),t.MimeType!=null&&Object.hasOwnProperty.call(t,"MimeType")&&n.uint32(10).string(t.MimeType),n},r.decode=function(t,n){t instanceof Ft||(t=Ft.create(t));for(var i=n===void 0?t.len:t.pos+n,o=new ne.Metadata;t.pos<i;){var s=t.uint32();switch(s>>>3){case 1:o.MimeType=t.string();break;default:t.skipType(s&7);break}}return o},r.fromObject=function(t){if(t instanceof ne.Metadata)return t;var n=new ne.Metadata;return t.MimeType!=null&&(n.MimeType=String(t.MimeType)),n},r.toObject=function(t,n){n||(n={});var i={};return n.defaults&&(i.MimeType=""),t.MimeType!=null&&t.hasOwnProperty("MimeType")&&(i.MimeType=t.MimeType),i},r.prototype.toJSON=function(){return this.constructor.toObject(this,je.default.util.toJSONOptions)},r})();var He=Ns,Ds=["raw","directory","file","metadata","symlink","hamt-sharded-directory"],tl=["directory","hamt-sharded-directory"],Fs=parseInt("0644",8),Ls=parseInt("0755",8);function ii(r){if(r!=null)return typeof r=="number"?r&4095:(r=r.toString(),r.substring(0,1)==="0"?parseInt(r,8)&4095:parseInt(r,10)&4095)}function Is(r){if(r==null)return;let e;if(r.secs!=null&&(e={secs:r.secs,nsecs:r.nsecs}),r.Seconds!=null&&(e={secs:r.Seconds,nsecs:r.FractionalNanoseconds}),Array.isArray(r)&&(e={secs:r[0],nsecs:r[1]}),r instanceof Date){let t=r.getTime(),n=Math.floor(t/1e3);e={secs:n,nsecs:(t-n*1e3)*1e3}}if(Object.prototype.hasOwnProperty.call(e,"secs")){if(e!=null&&e.nsecs!=null&&(e.nsecs<0||e.nsecs>999999999))throw(0,Hr.default)(new Error("mtime-nsecs must be within the range [0,999999999]"),"ERR_INVALID_MTIME_NSECS");return e}}var F=class{static unmarshal(e){let t=He.decode(e),n=He.toObject(t,{defaults:!1,arrays:!0,longs:Number,objects:!1}),i=new F({type:Ds[n.Type],data:n.Data,blockSizes:n.blocksizes,mode:n.mode,mtime:n.mtime?{secs:n.mtime.Seconds,nsecs:n.mtime.FractionalNanoseconds}:void 0});return i._originalMode=n.mode||0,i}constructor(e={type:"file"}){let{type:t,data:n,blockSizes:i,hashType:o,fanout:s,mtime:c,mode:a}=e;if(t&&!Ds.includes(t))throw(0,Hr.default)(new Error("Type: "+t+" is not valid"),"ERR_INVALID_TYPE");this.type=t||"file",this.data=n,this.hashType=o,this.fanout=s,this.blockSizes=i||[],this._originalMode=0,this.mode=ii(a),c&&(this.mtime=Is(c),this.mtime&&!this.mtime.nsecs&&(this.mtime.nsecs=0))}set mode(e){this._mode=this.isDirectory()?Ls:Fs;let t=ii(e);t!==void 0&&(this._mode=t)}get mode(){return this._mode}isDirectory(){return Boolean(this.type&&tl.includes(this.type))}addBlockSize(e){this.blockSizes.push(e)}removeBlockSize(e){this.blockSizes.splice(e,1)}fileSize(){if(this.isDirectory())return 0;let e=0;return this.blockSizes.forEach(t=>{e+=t}),this.data&&(e+=this.data.length),e}marshal(){let e;switch(this.type){case"raw":e=He.DataType.Raw;break;case"directory":e=He.DataType.Directory;break;case"file":e=He.DataType.File;break;case"metadata":e=He.DataType.Metadata;break;case"symlink":e=He.DataType.Symlink;break;case"hamt-sharded-directory":e=He.DataType.HAMTShard;break;default:throw(0,Hr.default)(new Error("Type: "+e+" is not valid"),"ERR_INVALID_TYPE")}let t=this.data;(!this.data||!this.data.length)&&(t=void 0);let n;this.mode!=null&&(n=this._originalMode&4294963200|(ii(this.mode)||0),n===Fs&&!this.isDirectory()&&(n=void 0),n===Ls&&this.isDirectory()&&(n=void 0));let i;if(this.mtime!=null){let s=Is(this.mtime);s&&(i={Seconds:s.secs,FractionalNanoseconds:s.nsecs},i.FractionalNanoseconds===0&&delete i.FractionalNanoseconds)}let o={Type:e,Data:t,filesize:this.isDirectory()?void 0:this.fileSize(),blocksizes:this.blockSizes,hashType:this.hashType,fanout:this.fanout,mode:n,mtime:i};return He.encode(o).finish()}};var J={};oe(J,{code:()=>W,createLink:()=>Hs,createNode:()=>js,decode:()=>H,encode:()=>R,name:()=>hl,prepare:()=>se,validate:()=>ai});var rl=new TextDecoder;function oi(r,e){let t=0;for(let n=0;;n+=7){if(n>=64)throw new Error("protobuf: varint overflow");if(e>=r.length)throw new Error("protobuf: unexpected end of data");let i=r[e++];if(t+=n<28?(i&127)<<n:(i&127)*2**n,i<128)break}return[t,e]}function Gr(r,e){let t;[t,e]=oi(r,e);let n=e+t;if(t<0||n<0)throw new Error("protobuf: invalid length");if(n>r.length)throw new Error("protobuf: unexpected end of data");return[r.subarray(e,n),n]}function Ps(r,e){let t;return[t,e]=oi(r,e),[t&7,t>>3,e]}function nl(r){let e={},t=r.length,n=0;for(;n<t;){let i,o;if([i,o,n]=Ps(r,n),o===1){if(e.Hash)throw new Error("protobuf: (PBLink) duplicate Hash section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Hash`);if(e.Name!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Name before Hash");if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Hash");[e.Hash,n]=Gr(r,n)}else if(o===2){if(e.Name!==void 0)throw new Error("protobuf: (PBLink) duplicate Name section");if(i!==2)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Name`);if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) invalid order, found Tsize before Name");let s;[s,n]=Gr(r,n),e.Name=rl.decode(s)}else if(o===3){if(e.Tsize!==void 0)throw new Error("protobuf: (PBLink) duplicate Tsize section");if(i!==0)throw new Error(`protobuf: (PBLink) wrong wireType (${i}) for Tsize`);[e.Tsize,n]=oi(r,n)}else throw new Error(`protobuf: (PBLink) invalid fieldNumber, expected 1, 2 or 3, got ${o}`)}if(n>t)throw new Error("protobuf: (PBLink) unexpected end of data");return e}function Os(r){let e=r.length,t=0,n,i=!1,o;for(;t<e;){let c,a;if([c,a,t]=Ps(r,t),c!==2)throw new Error(`protobuf: (PBNode) invalid wireType, expected 2, got ${c}`);if(a===1){if(o)throw new Error("protobuf: (PBNode) duplicate Data section");[o,t]=Gr(r,t),n&&(i=!0)}else if(a===2){if(i)throw new Error("protobuf: (PBNode) duplicate Links section");n||(n=[]);let l;[l,t]=Gr(r,t),n.push(nl(l))}else throw new Error(`protobuf: (PBNode) invalid fieldNumber, expected 1 or 2, got ${a}`)}if(t>e)throw new Error("protobuf: (PBNode) unexpected end of data");let s={};return o&&(s.Data=o),s.Links=n||[],s}var zs=new TextEncoder,Us=2**32,il=2**31;function ol(r,e){let t=e.length;if(typeof r.Tsize=="number"){if(r.Tsize<0)throw new Error("Tsize cannot be negative");if(!Number.isSafeInteger(r.Tsize))throw new Error("Tsize too large for encoding");t=ur(e,t,r.Tsize)-1,e[t]=24}if(typeof r.Name=="string"){let n=zs.encode(r.Name);t-=n.length,e.set(n,t),t=ur(e,t,n.length)-1,e[t]=18}return r.Hash&&(t-=r.Hash.length,e.set(r.Hash,t),t=ur(e,t,r.Hash.length)-1,e[t]=10),e.length-t}function Rs(r){let e=al(r),t=new Uint8Array(e),n=e;if(r.Data&&(n-=r.Data.length,t.set(r.Data,n),n=ur(t,n,r.Data.length)-1,t[n]=10),r.Links)for(let i=r.Links.length-1;i>=0;i--){let o=ol(r.Links[i],t.subarray(0,n));n-=o,n=ur(t,n,o)-1,t[n]=18}return t}function sl(r){let e=0;if(r.Hash){let t=r.Hash.length;e+=1+t+Lt(t)}if(typeof r.Name=="string"){let t=zs.encode(r.Name).length;e+=1+t+Lt(t)}return typeof r.Tsize=="number"&&(e+=1+Lt(r.Tsize)),e}function al(r){let e=0;if(r.Data){let t=r.Data.length;e+=1+t+Lt(t)}if(r.Links)for(let t of r.Links){let n=sl(t);e+=1+n+Lt(n)}return e}function ur(r,e,t){e-=Lt(t);let n=e;for(;t>=il;)r[e++]=t&127|128,t/=128;for(;t>=128;)r[e++]=t&127|128,t>>>=7;return r[e]=t,n}function Lt(r){return r%2===0&&r++,Math.floor((cl(r)+6)/7)}function cl(r){let e=0;return r>=Us&&(r=Math.floor(r/Us),e=32),r>=1<<16&&(r>>>=16,e+=16),r>=1<<8&&(r>>>=8,e+=8),e+ul[r]}var ul=[0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8];var fl=["Data","Links"],ll=["Hash","Name","Tsize"],si=new TextEncoder;function Ms(r,e){if(r===e)return 0;let t=r.Name?si.encode(r.Name):[],n=e.Name?si.encode(e.Name):[],i=t.length,o=n.length;for(let s=0,c=Math.min(i,o);s<c;++s)if(t[s]!==n[s]){i=t[s],o=n[s];break}return i<o?-1:o<i?1:0}function $s(r,e){return!Object.keys(r).some(t=>!e.includes(t))}function Vs(r){if(typeof r.asCID=="object"){let t=N.asCID(r);if(!t)throw new TypeError("Invalid DAG-PB form");return{Hash:t}}if(typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Hash){let t=N.asCID(r.Hash);try{t||(typeof r.Hash=="string"?t=N.parse(r.Hash):r.Hash instanceof Uint8Array&&(t=N.decode(r.Hash)))}catch(n){throw new TypeError(`Invalid DAG-PB form: ${n.message}`)}t&&(e.Hash=t)}if(!e.Hash)throw new TypeError("Invalid DAG-PB form");return typeof r.Name=="string"&&(e.Name=r.Name),typeof r.Tsize=="number"&&(e.Tsize=r.Tsize),e}function se(r){if((r instanceof Uint8Array||typeof r=="string")&&(r={Data:r}),typeof r!="object"||Array.isArray(r))throw new TypeError("Invalid DAG-PB form");let e={};if(r.Data!==void 0)if(typeof r.Data=="string")e.Data=si.encode(r.Data);else if(r.Data instanceof Uint8Array)e.Data=r.Data;else throw new TypeError("Invalid DAG-PB form");if(r.Links!==void 0)if(Array.isArray(r.Links))e.Links=r.Links.map(Vs),e.Links.sort(Ms);else throw new TypeError("Invalid DAG-PB form");else e.Links=[];return e}function ai(r){if(!r||typeof r!="object"||Array.isArray(r)||r instanceof Uint8Array||r["/"]&&r["/"]===r.bytes)throw new TypeError("Invalid DAG-PB form");if(!$s(r,fl))throw new TypeError("Invalid DAG-PB form (extraneous properties)");if(r.Data!==void 0&&!(r.Data instanceof Uint8Array))throw new TypeError("Invalid DAG-PB form (Data must be bytes)");if(!Array.isArray(r.Links))throw new TypeError("Invalid DAG-PB form (Links must be a list)");for(let e=0;e<r.Links.length;e++){let t=r.Links[e];if(!t||typeof t!="object"||Array.isArray(t)||t instanceof Uint8Array||t["/"]&&t["/"]===t.bytes)throw new TypeError("Invalid DAG-PB form (bad link)");if(!$s(t,ll))throw new TypeError("Invalid DAG-PB form (extraneous properties on link)");if(t.Hash===void 0)throw new TypeError("Invalid DAG-PB form (link must have a Hash)");if(t.Hash==null||!t.Hash["/"]||t.Hash["/"]!==t.Hash.bytes)throw new TypeError("Invalid DAG-PB form (link Hash must be a CID)");if(t.Name!==void 0&&typeof t.Name!="string")throw new TypeError("Invalid DAG-PB form (link Name must be a string)");if(t.Tsize!==void 0){if(typeof t.Tsize!="number"||t.Tsize%1!==0)throw new TypeError("Invalid DAG-PB form (link Tsize must be an integer)");if(t.Tsize<0)throw new TypeError("Invalid DAG-PB form (link Tsize cannot be negative)")}if(e>0&&Ms(t,r.Links[e-1])===-1)throw new TypeError("Invalid DAG-PB form (links must be sorted by Name bytes)")}}function js(r,e=[]){return se({Data:r,Links:e})}function Hs(r,e,t){return Vs({Hash:t,Name:r,Tsize:e})}var hl="dag-pb",W=112;function R(r){ai(r);let e={};return r.Links&&(e.Links=r.Links.map(t=>{let n={};return t.Hash&&(n.Hash=t.Hash.bytes),t.Name!==void 0&&(n.Name=t.Name),t.Tsize!==void 0&&(n.Tsize=t.Tsize),n})),r.Data&&(e.Data=r.Data),Rs(e)}function H(r){let e=Os(r),t={};return e.Data&&(t.Data=e.Data),e.Links&&(t.Links=e.Links.map(n=>{let i={};try{i.Hash=N.decode(n.Hash)}catch{}if(!i.Hash)throw new Error("Invalid Hash field found in link, expected CID");return n.Name!==void 0&&(i.Name=n.Name),n.Tsize!==void 0&&(i.Tsize=n.Tsize),i})),t}var dl=async(r,e,t)=>{t.codec||(t.codec=J),t.hasher||(t.hasher=Q),t.cidVersion===void 0&&(t.cidVersion=1),t.codec===J&&t.hasher!==Q&&(t.cidVersion=1);let n=await t.hasher.digest(r),i=N.create(t.cidVersion,t.codec.code,n);return t.onlyHash||await e.put(i,r,{signal:t.signal}),i},Fe=dl;var pl=async(r,e,t)=>{let n=new F({type:"directory",mtime:r.mtime,mode:r.mode}),i=R(se({Data:n.marshal()})),o=await Fe(i,e,t),s=r.path;return{cid:o,path:s,unixfs:n,size:i.length}},Gs=pl;var Js=Y(le(),1);var ze={};oe(ze,{code:()=>de,decode:()=>gl,encode:()=>yl,name:()=>ml});var ml="raw",de=85,yl=r=>Ae(r),gl=r=>Ae(r);async function ci(r){let e=[];for await(let t of r)e.push(t);return e}async function wl(r,e){return e(await ci(r))}var Ws=wl;function bl(r,e,t){return qs(r,e,t)}async function qs(r,e,t){let n=[];for await(let i of ct(r,t.maxChildrenPerNode))n.push(await e(i));return n.length>1?qs(n,e,t):n[0]}var Ys=bl;async function _l(r,e,t){let n=new ui(t.layerRepeat),i=0,o=1,s=n;for await(let c of ct(r,t.maxChildrenPerNode))s.isFull()&&(s!==n&&n.addChild(await s.reduce(e)),i&&i%t.layerRepeat===0&&o++,s=new Wr(o,t.layerRepeat,i),i++),s.append(c);return s&&s!==n&&n.addChild(await s.reduce(e)),n.reduce(e)}var Qs=_l,Wr=class{constructor(e,t,n=0){this.maxDepth=e,this.layerRepeat=t,this.currentDepth=1,this.iteration=n,this.root=this.node=this.parent={children:[],depth:this.currentDepth,maxDepth:e,maxChildren:(this.maxDepth-this.currentDepth)*this.layerRepeat}}isFull(){if(!this.root.data)return!1;if(this.currentDepth<this.maxDepth&&this.node.maxChildren)return this._addNextNodeToParent(this.node),!1;let e=this._findParent(this.node,this.currentDepth);return e?(this._addNextNodeToParent(e),!1):!0}_addNextNodeToParent(e){this.parent=e;let t={children:[],depth:e.depth+1,parent:e,maxDepth:this.maxDepth,maxChildren:Math.floor(e.children.length/this.layerRepeat)*this.layerRepeat};e.children.push(t),this.currentDepth=t.depth,this.node=t}append(e){this.node.data=e}reduce(e){return this._reduce(this.root,e)}async _reduce(e,t){let n=[];return e.children.length&&(n=await Promise.all(e.children.filter(i=>i.data).map(i=>this._reduce(i,t)))),t((e.data||[]).concat(n))}_findParent(e,t){let n=e.parent;if(!(!n||n.depth===0))return n.children.length===n.maxChildren||!n.maxChildren?this._findParent(n,t):n}},ui=class extends Wr{constructor(e){super(0,e),this.root.depth=0,this.currentDepth=1}addChild(e){this.root.children.push(e)}reduce(e){return e((this.root.data||[]).concat(this.root.children))}};async function*xl(r,e,t){for await(let n of r.content)yield async()=>{t.progress(n.length,r.path);let i,o={codec:J,cidVersion:t.cidVersion,hasher:t.hasher,onlyHash:t.onlyHash};return t.rawLeaves?(o.codec=ze,o.cidVersion=1):(i=new F({type:t.leafType,data:n}),n=R({Data:i.marshal(),Links:[]})),{cid:await Fe(n,e,o),unixfs:i,size:n.length}}}var Ks=xl;var vl={flat:Ws,balanced:Ys,trickle:Qs};async function*Al(r,e,t){let n=-1,i,o;typeof t.bufferImporter=="function"?o=t.bufferImporter:o=Ks;for await(let s of tr(o(r,e,t),t.blockWriteConcurrency)){if(n++,n===0){i=s;continue}else n===1&&i&&(yield i,i=null);yield s}i&&(i.single=!0,yield i)}var El=(r,e,t)=>{async function n(i){if(i.length===1&&i[0].single&&t.reduceSingleLeafToSelf){let u=i[0];if(r.mtime!==void 0||r.mode!==void 0){let h=await e.get(u.cid);u.unixfs=new F({type:"file",mtime:r.mtime,mode:r.mode,data:h}),h=R(se({Data:u.unixfs.marshal()})),u.cid=await Fe(h,e,{...t,codec:J,hasher:t.hasher,cidVersion:t.cidVersion}),u.size=h.length}return{cid:u.cid,path:r.path,unixfs:u.unixfs,size:u.size}}let o=new F({type:"file",mtime:r.mtime,mode:r.mode}),s=i.filter(u=>u.cid.code===de&&u.size||u.unixfs&&!u.unixfs.data&&u.unixfs.fileSize()?!0:Boolean(u.unixfs&&u.unixfs.data&&u.unixfs.data.length)).map(u=>u.cid.code===de?(o.addBlockSize(u.size),{Name:"",Tsize:u.size,Hash:u.cid}):(!u.unixfs||!u.unixfs.data?o.addBlockSize(u.unixfs&&u.unixfs.fileSize()||0):o.addBlockSize(u.unixfs.data.length),{Name:"",Tsize:u.size,Hash:u.cid})),c={Data:o.marshal(),Links:s},a=R(se(c));return{cid:await Fe(a,e,t),path:r.path,unixfs:o,size:a.length+c.Links.reduce((u,h)=>u+h.Tsize,0)}}return n};function kl(r,e,t){let n=vl[t.strategy];if(!n)throw(0,Js.default)(new Error(`Unknown importer build strategy name: ${t.strategy}`),"ERR_BAD_STRATEGY");return n(Al(r,e,t),El(r,e,t),t)}var Zs=kl;var Ci=Y(le(),1);function pt(r){return globalThis.Buffer!=null?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r}function Ge(r=0){return globalThis.Buffer?.alloc!=null?pt(globalThis.Buffer.alloc(r)):new Uint8Array(r)}function mt(r=0){return globalThis.Buffer?.allocUnsafe!=null?pt(globalThis.Buffer.allocUnsafe(r)):new Uint8Array(r)}function fr(r,e){e==null&&(e=r.reduce((i,o)=>i+o.length,0));let t=mt(e),n=0;for(let i of r)t.set(i,n),n+=i.length;return pt(t)}function Xs(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}var ta=Symbol.for("@achingbrain/uint8arraylist");function ea(r,e){if(e==null||e<0)throw new RangeError("index is out of bounds");let t=0;for(let n of r){let i=t+n.byteLength;if(e<i)return{buf:n,index:e-t};t=i}throw new RangeError("index is out of bounds")}function qr(r){return Boolean(r?.[ta])}var Se=class{constructor(...e){Object.defineProperty(this,ta,{value:!0}),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(qr(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(qr(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=ea(this.bufs,e);return t.buf[t.index]}set(e,t){let n=ea(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(qr(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:i}=this._subList(e,t);return fr(n,i)}subarray(e,t){let{bufs:n,length:i}=this._subList(e,t);return n.length===1?n[0]:fr(n,i)}sublist(e,t){let{bufs:n,length:i}=this._subList(e,t),o=new Se;return o.length=i,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=[],i=0;for(let o=0;o<this.bufs.length;o++){let s=this.bufs[o],c=i,a=c+s.byteLength;if(i=a,e>=a)continue;let l=e>=c&&e<a,u=t>c&&t<=a;if(l&&u){if(e===c&&t===a){n.push(s);break}let h=e-c;n.push(s.subarray(h,h+(t-e)));break}if(l){if(e===0){n.push(s);continue}n.push(s.subarray(e-c));continue}if(u){if(t===a){n.push(s);break}n.push(s.subarray(0,t-c));break}n.push(s)}return{bufs:n,length:t-e}}indexOf(e,t=0){if(!qr(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 i=n.byteLength;if(i===0)throw new TypeError("search must be at least 1 byte long");let o=256,s=new Int32Array(o);for(let h=0;h<o;h++)s[h]=-1;for(let h=0;h<i;h++)s[n[h]]=h;let c=s,a=this.byteLength-n.byteLength,l=n.byteLength-1,u;for(let h=t;h<=a;h+=u){u=0;for(let p=l;p>=0;p--){let f=this.get(h+p);if(n[p]!==f){u=Math.max(1,p-c[f]);break}}if(u===0)return h}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=mt(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 i=Ge(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt16(0,t,n),this.write(i,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 i=Ge(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setInt32(0,t,n),this.write(i,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 i=Ge(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigInt64(0,t,n),this.write(i,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=mt(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 i=Ge(2);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint16(0,t,n),this.write(i,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 i=Ge(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setUint32(0,t,n),this.write(i,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 i=Ge(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setBigUint64(0,t,n),this.write(i,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 i=Ge(4);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat32(0,t,n),this.write(i,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 i=Ge(8);new DataView(i.buffer,i.byteOffset,i.byteLength).setFloat64(0,t,n),this.write(i,e)}equals(e){if(e==null||!(e instanceof Se)||e.bufs.length!==this.bufs.length)return!1;for(let t=0;t<this.bufs.length;t++)if(!Xs(this.bufs[t],e.bufs[t]))return!1;return!0}static fromUint8Arrays(e,t){let n=new Se;return n.bufs=e,t==null&&(t=e.reduce((i,o)=>i+o.byteLength,0)),n.length=t,n}};var ma=Y(pa(),1),pi=Y(le(),1);async function*Dl(r,e){let t,n,i;if(e.minChunkSize&&e.maxChunkSize&&e.avgChunkSize)i=e.avgChunkSize,t=e.minChunkSize,n=e.maxChunkSize;else if(e.avgChunkSize)i=e.avgChunkSize,t=i/3,n=i+i/2;else throw(0,pi.default)(new Error("please specify an average chunk size"),"ERR_INVALID_AVG_CHUNK_SIZE");if(t<16)throw(0,pi.default)(new Error("rabin min must be greater than 16"),"ERR_INVALID_MIN_CHUNK_SIZE");n<t&&(n=t),i<t&&(i=t);let o=Math.floor(Math.log2(i));for await(let s of Fl(r,{min:t,max:n,bits:o,window:e.window,polynomial:e.polynomial}))yield s}var ya=Dl;async function*Fl(r,e){let t=await(0,ma.create)(e.bits,e.min,e.max,e.window),n=new Se;for await(let i of r){n.append(i);let o=t.fingerprint(i);for(let s=0;s<o.length;s++){let c=o[s],a=n.slice(0,c);n.consume(c),yield a}}n.length&&(yield n.subarray(0))}async function*Ll(r,e){let t=new Se,n=0,i=!1,o=e.maxChunkSize;for await(let s of r)for(t.append(s),n+=s.length;n>=o;)if(yield t.slice(0,o),i=!0,o===t.length)t=new Se,n=0;else{let c=new Se;c.append(t.sublist(o)),t=c,n-=o}(!i||n)&&(yield t.subarray(0,n))}var ga=Ll;var Bi=Y(le(),1);var mi={};oe(mi,{identity:()=>Il});var Il=Nt({prefix:"\0",name:"identity",encode:r=>Ln(r),decode:r=>Fn(r)});var yi={};oe(yi,{base2:()=>Pl});var Pl=j({prefix:"0",name:"base2",alphabet:"01",bitsPerChar:1});var gi={};oe(gi,{base8:()=>Ol});var Ol=j({prefix:"7",name:"base8",alphabet:"01234567",bitsPerChar:3});var wi={};oe(wi,{base10:()=>Ul});var Ul=Qe({prefix:"9",name:"base10",alphabet:"0123456789"});var bi={};oe(bi,{base16:()=>zl,base16upper:()=>Rl});var zl=j({prefix:"f",name:"base16",alphabet:"0123456789abcdef",bitsPerChar:4}),Rl=j({prefix:"F",name:"base16upper",alphabet:"0123456789ABCDEF",bitsPerChar:4});var _i={};oe(_i,{base36:()=>$l,base36upper:()=>Ml});var $l=Qe({prefix:"k",name:"base36",alphabet:"0123456789abcdefghijklmnopqrstuvwxyz"}),Ml=Qe({prefix:"K",name:"base36upper",alphabet:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"});var vi={};oe(vi,{base64:()=>xi,base64pad:()=>Vl,base64url:()=>jl,base64urlpad:()=>Hl});var xi=j({prefix:"m",name:"base64",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bitsPerChar:6}),Vl=j({prefix:"M",name:"base64pad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",bitsPerChar:6}),jl=j({prefix:"u",name:"base64url",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",bitsPerChar:6}),Hl=j({prefix:"U",name:"base64urlpad",alphabet:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=",bitsPerChar:6});var Ai={};oe(Ai,{base256emoji:()=>Ql});var wa=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}"),Gl=wa.reduce((r,e,t)=>(r[t]=e,r),[]),Wl=wa.reduce((r,e,t)=>(r[e.codePointAt(0)]=t,r),[]);function ql(r){return r.reduce((e,t)=>(e+=Gl[t],e),"")}function Yl(r){let e=[];for(let t of r){let n=Wl[t.codePointAt(0)];if(n===void 0)throw new Error(`Non-base256emoji character: ${t}`);e.push(n)}return new Uint8Array(e)}var Ql=Nt({prefix:"\u{1F680}",name:"base256emoji",encode:ql,decode:Yl});var ki={};oe(ki,{identity:()=>Ei});var ba=0,Kl="identity",_a=Ae,Jl=r=>ut(ba,_a(r)),Ei={code:ba,name:Kl,encode:_a,digest:Jl};var kp=new TextEncoder,Sp=new TextDecoder;var Si={...mi,...yi,...gi,...wi,...bi,...Vn,..._i,...Mn,...vi,...Ai},Bp={...On,...ki};function va(r,e,t,n){return{name:r,prefix:e,encoder:{name:r,prefix:e,encode:t},decoder:{decode:n}}}var xa=va("utf8","u",r=>"u"+new TextDecoder("utf8").decode(r),r=>new TextEncoder().encode(r.substring(1))),Ti=va("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=mt(r.length);for(let t=0;t<r.length;t++)e[t]=r.charCodeAt(t);return e}),Xl={utf8:xa,"utf-8":xa,hex:Si.base16,latin1:Ti,ascii:Ti,binary:Ti,...Si},Aa=Xl;function Yr(r,e="utf8"){let t=Aa[e];if(t==null)throw new Error(`Unsupported encoding "${e}"`);return(e==="utf8"||e==="utf-8")&&globalThis.Buffer!=null&&globalThis.Buffer.from!=null?pt(globalThis.Buffer.from(r,"utf-8")):t.decoder.decode(`${t.prefix}${r}`)}async function*e1(r){for await(let e of r){if(e.length===void 0)throw(0,Bi.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT");if(typeof e=="string"||e instanceof String)yield Yr(e.toString());else if(Array.isArray(e))yield Uint8Array.from(e);else if(e instanceof Uint8Array)yield e;else throw(0,Bi.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}}var Ea=e1;function t1(r){return Symbol.iterator in r}function r1(r){return Symbol.asyncIterator in r}function n1(r){try{if(r instanceof Uint8Array)return async function*(){yield r}();if(t1(r))return async function*(){yield*r}();if(r1(r))return r}catch{throw(0,Ci.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}throw(0,Ci.default)(new Error("Content was invalid"),"ERR_INVALID_CONTENT")}async function*i1(r,e,t){for await(let n of r)if(n.path&&(n.path.substring(0,2)==="./"&&(t.wrapWithDirectory=!0),n.path=n.path.split("/").filter(i=>i&&i!==".").join("/")),n.content){let i;typeof t.chunker=="function"?i=t.chunker:t.chunker==="rabin"?i=ya:i=ga;let o;typeof t.chunkValidator=="function"?o=t.chunkValidator:o=Ea;let s={path:n.path,mtime:n.mtime,mode:n.mode,content:i(o(n1(n.content),t),t)};yield()=>Zs(s,e,t)}else if(n.path){let i={path:n.path,mtime:n.mtime,mode:n.mode};yield()=>Gs(i,e,t)}else throw new Error("Import candidate must have content or path or both")}var ka=i1;var Ni=class{constructor(e,t){this.options=t||{},this.root=e.root,this.dir=e.dir,this.path=e.path,this.dirty=e.dirty,this.flat=e.flat,this.parent=e.parent,this.parentKey=e.parentKey,this.unixfs=e.unixfs,this.mode=e.mode,this.mtime=e.mtime,this.cid=void 0,this.size=void 0}async put(e,t){}get(e){return Promise.resolve(this)}async*eachChildSeries(){}async*flush(e){}},et=Ni;var Di=class extends et{constructor(e,t){super(e,t),this._children={}}async put(e,t){this.cid=void 0,this.size=void 0,this._children[e]=t}get(e){return Promise.resolve(this._children[e])}childCount(){return Object.keys(this._children).length}directChildrenCount(){return this.childCount()}onlyChild(){return this._children[Object.keys(this._children)[0]]}async*eachChildSeries(){let e=Object.keys(this._children);for(let t=0;t<e.length;t++){let n=e[t];yield{key:n,child:this._children[n]}}}async*flush(e){let t=Object.keys(this._children),n=[];for(let l=0;l<t.length;l++){let u=this._children[t[l]];if(u instanceof et)for await(let h of u.flush(e))u=h,yield u;u.size!=null&&u.cid&&n.push({Name:t[l],Tsize:u.size,Hash:u.cid})}let i=new F({type:"directory",mtime:this.mtime,mode:this.mode}),o={Data:i.marshal(),Links:n},s=R(se(o)),c=await Fe(s,e,this.options),a=s.length+o.Links.reduce((l,u)=>l+(u.Tsize==null?0:u.Tsize),0);this.cid=c,this.size=a,yield{cid:c,unixfs:i,path:this.path,size:a}}},pr=Di;var Ca=Y(Ba(),1);var M=class{constructor(e,t,n=0){this._options=e,this._popCount=0,this._parent=t,this._posAtParent=n,this._children=new Ca.default,this.key=null}async put(e,t){let n=await this._findNewBucketAndPos(e);await n.bucket._putAt(n,e,t)}async get(e){let t=await this._findChild(e);if(t!=null)return t.value}async del(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);n!=null&&n.key===e&&t.bucket._delAt(t.pos)}leafCount(){return this._children.compactArray().reduce((t,n)=>n instanceof M?t+n.leafCount():t+1,0)}childrenCount(){return this._children.length}onlyChild(){return this._children.get(0)}*eachLeafSeries(){let e=this._children.compactArray();for(let t of e)t instanceof M?yield*t.eachLeafSeries():yield t}serialize(e,t){let n=[];return t(this._children.reduce((i,o,s)=>(o!=null&&(o instanceof M?i.push(o.serialize(e,t)):i.push(e(o,s))),i),n))}async asyncTransform(e,t){return await Na(this,e,t)}toJSON(){return this.serialize(u1,f1)}prettyPrint(){return JSON.stringify(this.toJSON(),null," ")}tableSize(){return Math.pow(2,this._options.bits)}async _findChild(e){let t=await this._findPlace(e),n=t.bucket._at(t.pos);if(!(n instanceof M)&&n!=null&&n.key===e)return n}async _findPlace(e){let t=this._options.hash(typeof e=="string"?Yr(e):e),n=await t.take(this._options.bits),i=this._children.get(n);return i instanceof M?await i._findPlace(t):{bucket:this,pos:n,hash:t,existingChild:i}}async _findNewBucketAndPos(e){let t=await this._findPlace(e);if(t.existingChild!=null&&t.existingChild.key!==e){let n=new M(this._options,t.bucket,t.pos);t.bucket._putObjectAt(t.pos,n);let i=await n._findPlace(t.existingChild.hash);return i.bucket._putAt(i,t.existingChild.key,t.existingChild.value),await n._findNewBucketAndPos(t.hash)}return t}_putAt(e,t,n){this._putObjectAt(e.pos,{key:t,value:n,hash:e.hash})}_putObjectAt(e,t){this._children.get(e)==null&&this._popCount++,this._children.set(e,t)}_delAt(e){if(e===-1)throw new Error("Invalid position");this._children.get(e)!=null&&this._popCount--,this._children.unset(e),this._level()}_level(){if(this._parent!=null&&this._popCount<=1)if(this._popCount===1){let e=this._children.find(c1);if(e!=null&&!(e instanceof M)){let t=e.hash;t.untake(this._options.bits);let n={pos:this._posAtParent,hash:t,bucket:this._parent};this._parent._putAt(n,e.key,e.value)}}else this._parent._delAt(this._posAtParent)}_at(e){return this._children.get(e)}};function c1(r){return Boolean(r)}function u1(r,e){return r.key}function f1(r){return r}async function Na(r,e,t){let n=[];for(let i of r._children.compactArray())if(i instanceof M)await Na(i,e,t);else{let o=await e(i);n.push({bitField:r._children.bitField(),children:o})}return await t(n)}var l1=[255,254,252,248,240,224,192,128],h1=[1,3,7,15,31,63,127,255],Qr=class{constructor(e){this._value=e,this._currentBytePos=e.length-1,this._currentBitPos=7}availableBits(){return this._currentBitPos+1+this._currentBytePos*8}totalBits(){return this._value.length*8}take(e){let t=e,n=0;for(;t>0&&this._haveBits();){let i=this._value[this._currentBytePos],o=this._currentBitPos+1,s=Math.min(o,t),c=d1(i,o-s,s);n=(n<<s)+c,t-=s,this._currentBitPos-=s,this._currentBitPos<0&&(this._currentBitPos=7,this._currentBytePos--)}return n}untake(e){for(this._currentBitPos+=e;this._currentBitPos>7;)this._currentBitPos-=8,this._currentBytePos+=1}_haveBits(){return this._currentBytePos>=0}};function d1(r,e,t){let n=p1(e,t);return(r&n)>>>e}function p1(r,e){return l1[r]&h1[Math.min(e+r-1,7)]}function Da(r){function e(t){return t instanceof Kr?t:new Kr(t,r)}return e}var Kr=class{constructor(e,t){if(!(e instanceof Uint8Array))throw new Error("can only hash Uint8Arrays");this._value=e,this._hashFn=t,this._depth=-1,this._availableBits=0,this._currentBufferIndex=0,this._buffers=[]}async take(e){let t=e;for(;this._availableBits<t;)await this._produceMoreBits();let n=0;for(;t>0;){let i=this._buffers[this._currentBufferIndex],o=Math.min(i.availableBits(),t),s=i.take(o);n=(n<<o)+s,t-=o,this._availableBits-=o,i.availableBits()===0&&this._currentBufferIndex++}return n}untake(e){let t=e;for(;t>0;){let n=this._buffers[this._currentBufferIndex],i=Math.min(n.totalBits()-n.availableBits(),t);n.untake(i),t-=i,this._availableBits+=i,this._currentBufferIndex>0&&n.totalBits()===n.availableBits()&&(this._depth--,this._currentBufferIndex--)}}async _produceMoreBits(){this._depth++;let e=this._depth>0?fr([this._value,Uint8Array.from([this._depth])]):this._value,t=await this._hashFn(e),n=new Qr(t);this._buffers.push(n),this._availableBits+=n.availableBits()}};function tt(r){if(r==null||r.hashFn==null)throw new Error("please define an options.hashFn");let e={bits:r.bits??8,hash:Da(r.hashFn)};return new M(e)}var Fi=class extends et{constructor(e,t){super(e,t),this._bucket=tt({hashFn:t.hamtHashFn,bits:t.hamtBucketBits})}async put(e,t){await this._bucket.put(e,t)}get(e){return this._bucket.get(e)}childCount(){return this._bucket.leafCount()}directChildrenCount(){return this._bucket.childrenCount()}onlyChild(){return this._bucket.onlyChild()}async*eachChildSeries(){for await(let{key:e,value:t}of this._bucket.eachLeafSeries())yield{key:e,child:t}}async*flush(e){for await(let t of La(this._bucket,e,this,this.options))yield{...t,path:this.path}}},Fa=Fi;async function*La(r,e,t,n){let i=r._children,o=[],s=0;for(let f=0;f<i.length;f++){let d=i.get(f);if(!d)continue;let m=f.toString(16).toUpperCase().padStart(2,"0");if(d instanceof M){let E;for await(let g of await La(d,e,null,n))E=g;if(!E)throw new Error("Could not flush sharded directory, no subshard found");o.push({Name:m,Tsize:E.size,Hash:E.cid}),s+=E.size}else if(typeof d.value.flush=="function"){let E=d.value,g;for await(let _ of E.flush(e))g=_,yield g;let b=m+d.key;o.push({Name:b,Tsize:g.size,Hash:g.cid}),s+=g.size}else{let E=d.value;if(!E.cid)continue;let g=m+d.key,b=E.size;o.push({Name:g,Tsize:b,Hash:E.cid}),s+=b}}let c=Uint8Array.from(i.bitField().reverse()),a=new F({type:"hamt-sharded-directory",data:c,fanout:r.tableSize(),hashType:n.hamtHashCode,mtime:t&&t.mtime,mode:t&&t.mode}),l={Data:a.marshal(),Links:o},u=R(se(l)),h=await Fe(u,e,n),p=u.length+s;yield{cid:h,unixfs:a,size:p}}async function Ia(r,e,t,n){let i=e;e instanceof pr&&e.directChildrenCount()>=t&&(i=await m1(e,n));let o=i.parent;if(o){if(i!==e){if(r&&(r.parent=i),!i.parentKey)throw new Error("No parent key found");await o.put(i.parentKey,i)}return Ia(i,o,t,n)}return i}async function m1(r,e){let t=new Fa({root:r.root,dir:!0,parent:r.parent,parentKey:r.parentKey,path:r.path,dirty:r.dirty,flat:!1,mtime:r.mtime,mode:r.mode},e);for await(let{key:n,child:i}of r.eachChildSeries())await t.put(n,i);return t}var Pa=Ia;var y1=(r="")=>(r.trim().match(/([^\\/]|\\\/)+/g)||[]).filter(Boolean),Oa=y1;async function g1(r,e,t){let n=Oa(r.path||""),i=n.length-1,o=e,s="";for(let c=0;c<n.length;c++){let a=n[c];s+=`${s?"/":""}${a}`;let l=c===i;if(o.dirty=!0,o.cid=void 0,o.size=void 0,l)await o.put(a,r),e=await Pa(null,o,t.shardSplitThreshold,t);else{let u=await o.get(a);(!u||!(u instanceof et))&&(u=new pr({root:!1,dir:!0,parent:o,parentKey:a,path:s,dirty:!0,flat:!0,mtime:u&&u.unixfs&&u.unixfs.mtime,mode:u&&u.unixfs&&u.unixfs.mode},t)),await o.put(a,u),o=u}}return e}async function*Ua(r,e){if(!(r instanceof et)){r&&r.unixfs&&r.unixfs.isDirectory()&&(yield r);return}yield*r.flush(e)}async function*w1(r,e,t){let n=new pr({root:!0,dir:!0,path:"",dirty:!0,flat:!0},t);for await(let i of r)i&&(n=await g1(i,n,t),(!i.unixfs||!i.unixfs.isDirectory())&&(yield i));if(t.wrapWithDirectory)yield*Ua(n,e);else for await(let i of n.eachChildSeries())i&&(yield*Ua(i.child,e))}var za=w1;async function*yt(r,e,t={}){let n=No(t),i;typeof t.dagBuilder=="function"?i=t.dagBuilder:i=ka;let o;typeof t.treeBuilder=="function"?o=t.treeBuilder:o=za;let s;Symbol.asyncIterator in r||Symbol.iterator in r?s=r:s=[r];for await(let c of o(tr(i(s,e,n),n.fileImportConcurrency),e,n))yield{cid:c.cid,path:c.path,unixfs:c.unixfs,size:c.size}}async function pe(r){let e;for await(let t of r)e=t;return e}var Te=class extends Error{constructor(e,t,n){super(e),this.name=t,this.code=n}},Jr=class extends Te{constructor(e="not a file"){super(e,"NotAFileError","ERR_NOT_FILE")}},rt=class extends Te{constructor(e="not a directory"){super(e,"NotAFileError","ERR_NOT_DIRECTORY")}},It=class extends Te{constructor(e="no content"){super(e,"NoContentError","ERR_NO_CONTENT")}},Z=class extends Te{constructor(e="invalid parameters"){super(e,"InvalidParametersError","ERR_INVALID_PARAMETERS")}};var Re=class extends Te{constructor(e="not a Unixfs node"){super(e,"NotUnixFSError","ERR_NOT_UNIXFS")}},ae=class extends Te{constructor(e="invalid PBNode"){super(e,"InvalidPBNodeError","ERR_INVALID_PBNODE")}},$e=class extends Te{constructor(e="unknown error"){super(e,"InvalidPBNodeError","ERR_UNKNOWN_ERROR")}},mr=class extends Te{constructor(e="path already exists"){super(e,"NotUnixFSError","ERR_ALREADY_EXISTS")}},Zr=class extends Te{constructor(e="path does not exist"){super(e,"NotUnixFSError","ERR_DOES_NOT_EXIST")}};function b1(r){return r[Symbol.iterator]!=null}function _1(r){return r[Symbol.asyncIterator]!=null}async function Ra(r,e,t={}){let n;r instanceof Uint8Array||b1(r)||_1(r)?n={content:r}:n=r;let i=await pe(yt(n,e,{cidVersion:1,rawLeaves:!0,...t}));if(i==null)throw new $e("Could not import");return i.cid}async function*$a(r,e,t={}){yield*yt(r,e,{cidVersion:1,rawLeaves:!0,...t})}var An=Y(le(),1);var bu=Y(le(),1);var x1=["string","number","bigint","symbol"],v1=["Function","Generator","AsyncGenerator","GeneratorFunction","AsyncGeneratorFunction","AsyncFunction","Observable","Array","Buffer","Object","RegExp","Date","Error","Map","Set","WeakMap","WeakSet","ArrayBuffer","SharedArrayBuffer","DataView","Promise","URL","HTMLElement","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array"];function Ma(r){if(r===null)return"null";if(r===void 0)return"undefined";if(r===!0||r===!1)return"boolean";let e=typeof r;if(x1.includes(e))return e;if(e==="function")return"Function";if(Array.isArray(r))return"Array";if(A1(r))return"Buffer";let t=E1(r);return t||"Object"}function A1(r){return r&&r.constructor&&r.constructor.isBuffer&&r.constructor.isBuffer.call(null,r)}function E1(r){let e=Object.prototype.toString.call(r).slice(8,-1);if(v1.includes(e))return e}var y=class{constructor(e,t,n){this.major=e,this.majorEncoded=e<<5,this.name=t,this.terminal=n}toString(){return`Type[${this.major}].${this.name}`}compare(e){return this.major<e.major?-1:this.major>e.major?1:0}};y.uint=new y(0,"uint",!0);y.negint=new y(1,"negint",!0);y.bytes=new y(2,"bytes",!0);y.string=new y(3,"string",!0);y.array=new y(4,"array",!1);y.map=new y(5,"map",!1);y.tag=new y(6,"tag",!1);y.float=new y(7,"float",!0);y.false=new y(7,"false",!0);y.true=new y(7,"true",!0);y.null=new y(7,"null",!0);y.undefined=new y(7,"undefined",!0);y.break=new y(7,"break",!0);var k=class{constructor(e,t,n){this.type=e,this.value=t,this.encodedLength=n,this.encodedBytes=void 0,this.byteValue=void 0}toString(){return`Token[${this.type}].${this.value}`}};var Pt=globalThis.process&&!globalThis.process.browser&&globalThis.Buffer&&typeof globalThis.Buffer.isBuffer=="function",k1=new TextDecoder,S1=new TextEncoder;function Xr(r){return Pt&&globalThis.Buffer.isBuffer(r)}function Ga(r){return r instanceof Uint8Array?Xr(r)?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):r:Uint8Array.from(r)}var Wa=Pt?(r,e,t)=>t-e>64?globalThis.Buffer.from(r.subarray(e,t)).toString("utf8"):ja(r,e,t):(r,e,t)=>t-e>64?k1.decode(r.subarray(e,t)):ja(r,e,t),qa=Pt?r=>r.length>64?globalThis.Buffer.from(r):Va(r):r=>r.length>64?S1.encode(r):Va(r);var Ot=Pt?(r,e,t)=>Xr(r)?new Uint8Array(r.subarray(e,t)):r.slice(e,t):(r,e,t)=>r.slice(e,t),Ya=Pt?(r,e)=>(r=r.map(t=>t instanceof Uint8Array?t:globalThis.Buffer.from(t)),Ga(globalThis.Buffer.concat(r,e))):(r,e)=>{let t=new Uint8Array(e),n=0;for(let i of r)n+i.length>t.length&&(i=i.subarray(0,t.length-n)),t.set(i,n),n+=i.length;return t},Qa=Pt?r=>globalThis.Buffer.allocUnsafe(r):r=>new Uint8Array(r);function Ka(r,e){if(Xr(r)&&Xr(e))return r.compare(e);for(let t=0;t<r.length;t++)if(r[t]!==e[t])return r[t]<e[t]?-1:1;return 0}function Va(r,e=1/0){let t,n=r.length,i=null,o=[];for(let s=0;s<n;++s){if(t=r.charCodeAt(s),t>55295&&t<57344){if(!i){if(t>56319){(e-=3)>-1&&o.push(239,191,189);continue}else if(s+1===n){(e-=3)>-1&&o.push(239,191,189);continue}i=t;continue}if(t<56320){(e-=3)>-1&&o.push(239,191,189),i=t;continue}t=(i-55296<<10|t-56320)+65536}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,t<128){if((e-=1)<0)break;o.push(t)}else if(t<2048){if((e-=2)<0)break;o.push(t>>6|192,t&63|128)}else if(t<65536){if((e-=3)<0)break;o.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((e-=4)<0)break;o.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return o}function ja(r,e,t){let n=[];for(;e<t;){let i=r[e],o=null,s=i>239?4:i>223?3:i>191?2:1;if(e+s<=t){let c,a,l,u;switch(s){case 1:i<128&&(o=i);break;case 2:c=r[e+1],(c&192)===128&&(u=(i&31)<<6|c&63,u>127&&(o=u));break;case 3:c=r[e+1],a=r[e+2],(c&192)===128&&(a&192)===128&&(u=(i&15)<<12|(c&63)<<6|a&63,u>2047&&(u<55296||u>57343)&&(o=u));break;case 4:c=r[e+1],a=r[e+2],l=r[e+3],(c&192)===128&&(a&192)===128&&(l&192)===128&&(u=(i&15)<<18|(c&63)<<12|(a&63)<<6|l&63,u>65535&&u<1114112&&(o=u))}}o===null?(o=65533,s=1):o>65535&&(o-=65536,n.push(o>>>10&1023|55296),o=56320|o&1023),n.push(o),e+=s}return T1(n)}var Ha=4096;function T1(r){let e=r.length;if(e<=Ha)return String.fromCharCode.apply(String,r);let t="",n=0;for(;n<e;)t+=String.fromCharCode.apply(String,r.slice(n,n+=Ha));return t}var B1=256,en=class{constructor(e=B1){this.chunkSize=e,this.cursor=0,this.maxCursor=-1,this.chunks=[],this._initReuseChunk=null}reset(){this.cursor=0,this.maxCursor=-1,this.chunks.length&&(this.chunks=[]),this._initReuseChunk!==null&&(this.chunks.push(this._initReuseChunk),this.maxCursor=this._initReuseChunk.length-1)}push(e){let t=this.chunks[this.chunks.length-1];if(this.cursor+e.length<=this.maxCursor+1){let i=t.length-(this.maxCursor-this.cursor)-1;t.set(e,i)}else{if(t){let i=t.length-(this.maxCursor-this.cursor)-1;i<t.length&&(this.chunks[this.chunks.length-1]=t.subarray(0,i),this.maxCursor=this.cursor-1)}e.length<64&&e.length<this.chunkSize?(t=Qa(this.chunkSize),this.chunks.push(t),this.maxCursor+=t.length,this._initReuseChunk===null&&(this._initReuseChunk=t),t.set(e,0)):(this.chunks.push(e),this.maxCursor+=e.length)}this.cursor+=e.length}toBytes(e=!1){let t;if(this.chunks.length===1){let n=this.chunks[0];e&&this.cursor>n.length/2?(t=this.cursor===n.length?n:n.subarray(0,this.cursor),this._initReuseChunk=null,this.chunks=[]):t=Ot(n,0,this.cursor)}else t=Ya(this.chunks,this.cursor);return e&&this.reset(),t}};var L="CBOR decode error:",Li="CBOR encode error:",yr=[];yr[23]=1;yr[24]=2;yr[25]=3;yr[26]=5;yr[27]=9;function We(r,e,t){if(r.length-e<t)throw new Error(`${L} not enough data for type`)}var re=[24,256,65536,4294967296,BigInt("18446744073709551616")];function me(r,e,t){We(r,e,1);let n=r[e];if(t.strict===!0&&n<re[0])throw new Error(`${L} integer encoded in more bytes than necessary (strict decode)`);return n}function ye(r,e,t){We(r,e,2);let n=r[e]<<8|r[e+1];if(t.strict===!0&&n<re[1])throw new Error(`${L} integer encoded in more bytes than necessary (strict decode)`);return n}function ge(r,e,t){We(r,e,4);let n=r[e]*16777216+(r[e+1]<<16)+(r[e+2]<<8)+r[e+3];if(t.strict===!0&&n<re[2])throw new Error(`${L} integer encoded in more bytes than necessary (strict decode)`);return n}function we(r,e,t){We(r,e,8);let n=r[e]*16777216+(r[e+1]<<16)+(r[e+2]<<8)+r[e+3],i=r[e+4]*16777216+(r[e+5]<<16)+(r[e+6]<<8)+r[e+7],o=(BigInt(n)<<BigInt(32))+BigInt(i);if(t.strict===!0&&o<re[3])throw new Error(`${L} integer encoded in more bytes than necessary (strict decode)`);if(o<=Number.MAX_SAFE_INTEGER)return Number(o);if(t.allowBigInt===!0)return o;throw new Error(`${L} integers outside of the safe integer range are not supported`)}function Ja(r,e,t,n){return new k(y.uint,me(r,e+1,n),2)}function Za(r,e,t,n){return new k(y.uint,ye(r,e+1,n),3)}function Xa(r,e,t,n){return new k(y.uint,ge(r,e+1,n),5)}function ec(r,e,t,n){return new k(y.uint,we(r,e+1,n),9)}function Be(r,e){return ie(r,0,e.value)}function ie(r,e,t){if(t<re[0]){let n=Number(t);r.push([e|n])}else if(t<re[1]){let n=Number(t);r.push([e|24,n])}else if(t<re[2]){let n=Number(t);r.push([e|25,n>>>8,n&255])}else if(t<re[3]){let n=Number(t);r.push([e|26,n>>>24&255,n>>>16&255,n>>>8&255,n&255])}else{let n=BigInt(t);if(n<re[4]){let i=[e|27,0,0,0,0,0,0,0],o=Number(n&BigInt(4294967295)),s=Number(n>>BigInt(32)&BigInt(4294967295));i[8]=o&255,o=o>>8,i[7]=o&255,o=o>>8,i[6]=o&255,o=o>>8,i[5]=o&255,i[4]=s&255,s=s>>8,i[3]=s&255,s=s>>8,i[2]=s&255,s=s>>8,i[1]=s&255,r.push(i)}else throw new Error(`${L} encountered BigInt larger than allowable range`)}}Be.encodedSize=function(e){return ie.encodedSize(e.value)};ie.encodedSize=function(e){return e<re[0]?1:e<re[1]?2:e<re[2]?3:e<re[3]?5:9};Be.compareTokens=function(e,t){return e.value<t.value?-1:e.value>t.value?1:0};function tc(r,e,t,n){return new k(y.negint,-1-me(r,e+1,n),2)}function rc(r,e,t,n){return new k(y.negint,-1-ye(r,e+1,n),3)}function nc(r,e,t,n){return new k(y.negint,-1-ge(r,e+1,n),5)}var Ii=BigInt(-1),ic=BigInt(1);function oc(r,e,t,n){let i=we(r,e+1,n);if(typeof i!="bigint"){let o=-1-i;if(o>=Number.MIN_SAFE_INTEGER)return new k(y.negint,o,9)}if(n.allowBigInt!==!0)throw new Error(`${L} integers outside of the safe integer range are not supported`);return new k(y.negint,Ii-BigInt(i),9)}function tn(r,e){let t=e.value,n=typeof t=="bigint"?t*Ii-ic:t*-1-1;ie(r,e.type.majorEncoded,n)}tn.encodedSize=function(e){let t=e.value,n=typeof t=="bigint"?t*Ii-ic:t*-1-1;return n<re[0]?1:n<re[1]?2:n<re[2]?3:n<re[3]?5:9};tn.compareTokens=function(e,t){return e.value<t.value?1:e.value>t.value?-1:0};function gr(r,e,t,n){We(r,e,t+n);let i=Ot(r,e+t,e+t+n);return new k(y.bytes,i,t+n)}function sc(r,e,t,n){return gr(r,e,1,t)}function ac(r,e,t,n){return gr(r,e,2,me(r,e+1,n))}function cc(r,e,t,n){return gr(r,e,3,ye(r,e+1,n))}function uc(r,e,t,n){return gr(r,e,5,ge(r,e+1,n))}function fc(r,e,t,n){let i=we(r,e+1,n);if(typeof i=="bigint")throw new Error(`${L} 64-bit integer bytes lengths not supported`);return gr(r,e,9,i)}function rn(r){return r.encodedBytes===void 0&&(r.encodedBytes=r.type===y.string?qa(r.value):r.value),r.encodedBytes}function Ut(r,e){let t=rn(e);ie(r,e.type.majorEncoded,t.length),r.push(t)}Ut.encodedSize=function(e){let t=rn(e);return ie.encodedSize(t.length)+t.length};Ut.compareTokens=function(e,t){return N1(rn(e),rn(t))};function N1(r,e){return r.length<e.length?-1:r.length>e.length?1:Ka(r,e)}function wr(r,e,t,n,i){let o=t+n;We(r,e,o);let s=new k(y.string,Wa(r,e+t,e+o),o);return i.retainStringBytes===!0&&(s.byteValue=Ot(r,e+t,e+o)),s}function lc(r,e,t,n){return wr(r,e,1,t,n)}function hc(r,e,t,n){return wr(r,e,2,me(r,e+1,n),n)}function dc(r,e,t,n){return wr(r,e,3,ye(r,e+1,n),n)}function pc(r,e,t,n){return wr(r,e,5,ge(r,e+1,n),n)}function mc(r,e,t,n){let i=we(r,e+1,n);if(typeof i=="bigint")throw new Error(`${L} 64-bit integer string lengths not supported`);return wr(r,e,9,i,n)}var yc=Ut;function zt(r,e,t,n){return new k(y.array,n,t)}function gc(r,e,t,n){return zt(r,e,1,t)}function wc(r,e,t,n){return zt(r,e,2,me(r,e+1,n))}function bc(r,e,t,n){return zt(r,e,3,ye(r,e+1,n))}function _c(r,e,t,n){return zt(r,e,5,ge(r,e+1,n))}function xc(r,e,t,n){let i=we(r,e+1,n);if(typeof i=="bigint")throw new Error(`${L} 64-bit integer array lengths not supported`);return zt(r,e,9,i)}function vc(r,e,t,n){if(n.allowIndefinite===!1)throw new Error(`${L} indefinite length items not allowed`);return zt(r,e,1,1/0)}function nn(r,e){ie(r,y.array.majorEncoded,e.value)}nn.compareTokens=Be.compareTokens;nn.encodedSize=function(e){return ie.encodedSize(e.value)};function Rt(r,e,t,n){return new k(y.map,n,t)}function Ac(r,e,t,n){return Rt(r,e,1,t)}function Ec(r,e,t,n){return Rt(r,e,2,me(r,e+1,n))}function kc(r,e,t,n){return Rt(r,e,3,ye(r,e+1,n))}function Sc(r,e,t,n){return Rt(r,e,5,ge(r,e+1,n))}function Tc(r,e,t,n){let i=we(r,e+1,n);if(typeof i=="bigint")throw new Error(`${L} 64-bit integer map lengths not supported`);return Rt(r,e,9,i)}function Bc(r,e,t,n){if(n.allowIndefinite===!1)throw new Error(`${L} indefinite length items not allowed`);return Rt(r,e,1,1/0)}function on(r,e){ie(r,y.map.majorEncoded,e.value)}on.compareTokens=Be.compareTokens;on.encodedSize=function(e){return ie.encodedSize(e.value)};function Cc(r,e,t,n){return new k(y.tag,t,1)}function Nc(r,e,t,n){return new k(y.tag,me(r,e+1,n),2)}function Dc(r,e,t,n){return new k(y.tag,ye(r,e+1,n),3)}function Fc(r,e,t,n){return new k(y.tag,ge(r,e+1,n),5)}function Lc(r,e,t,n){return new k(y.tag,we(r,e+1,n),9)}function sn(r,e){ie(r,y.tag.majorEncoded,e.value)}sn.compareTokens=Be.compareTokens;sn.encodedSize=function(e){return ie.encodedSize(e.value)};var O1=20,U1=21,z1=22,R1=23;function Ic(r,e,t,n){if(n.allowUndefined===!1)throw new Error(`${L} undefined values are not supported`);return n.coerceUndefinedToNull===!0?new k(y.null,null,1):new k(y.undefined,void 0,1)}function Pc(r,e,t,n){if(n.allowIndefinite===!1)throw new Error(`${L} indefinite length items not allowed`);return new k(y.break,void 0,1)}function Pi(r,e,t){if(t){if(t.allowNaN===!1&&Number.isNaN(r))throw new Error(`${L} NaN values are not supported`);if(t.allowInfinity===!1&&(r===1/0||r===-1/0))throw new Error(`${L} Infinity values are not supported`)}return new k(y.float,r,e)}function Oc(r,e,t,n){return Pi(Oi(r,e+1),3,n)}function Uc(r,e,t,n){return Pi(Ui(r,e+1),5,n)}function zc(r,e,t,n){return Pi(Vc(r,e+1),9,n)}function an(r,e,t){let n=e.value;if(n===!1)r.push([y.float.majorEncoded|O1]);else if(n===!0)r.push([y.float.majorEncoded|U1]);else if(n===null)r.push([y.float.majorEncoded|z1]);else if(n===void 0)r.push([y.float.majorEncoded|R1]);else{let i,o=!1;(!t||t.float64!==!0)&&($c(n),i=Oi(Le,1),n===i||Number.isNaN(n)?(Le[0]=249,r.push(Le.slice(0,3)),o=!0):(Mc(n),i=Ui(Le,1),n===i&&(Le[0]=250,r.push(Le.slice(0,5)),o=!0))),o||($1(n),i=Vc(Le,1),Le[0]=251,r.push(Le.slice(0,9)))}}an.encodedSize=function(e,t){let n=e.value;if(n===!1||n===!0||n===null||n===void 0)return 1;if(!t||t.float64!==!0){$c(n);let i=Oi(Le,1);if(n===i||Number.isNaN(n))return 3;if(Mc(n),i=Ui(Le,1),n===i)return 5}return 9};var Rc=new ArrayBuffer(9),Ce=new DataView(Rc,1),Le=new Uint8Array(Rc,0);function $c(r){if(r===1/0)Ce.setUint16(0,31744,!1);else if(r===-1/0)Ce.setUint16(0,64512,!1);else if(Number.isNaN(r))Ce.setUint16(0,32256,!1);else{Ce.setFloat32(0,r);let e=Ce.getUint32(0),t=(e&2139095040)>>23,n=e&8388607;if(t===255)Ce.setUint16(0,31744,!1);else if(t===0)Ce.setUint16(0,(r&2147483648)>>16|n>>13,!1);else{let i=t-127;i<-24?Ce.setUint16(0,0):i<-14?Ce.setUint16(0,(e&2147483648)>>16|1<<24+i,!1):Ce.setUint16(0,(e&2147483648)>>16|i+15<<10|n>>13,!1)}}}function Oi(r,e){if(r.length-e<2)throw new Error(`${L} not enough data for float16`);let t=(r[e]<<8)+r[e+1];if(t===31744)return 1/0;if(t===64512)return-1/0;if(t===32256)return NaN;let n=t>>10&31,i=t&1023,o;return n===0?o=i*2**-24:n!==31?o=(i+1024)*2**(n-25):o=i===0?1/0:NaN,t&32768?-o:o}function Mc(r){Ce.setFloat32(0,r,!1)}function Ui(r,e){if(r.length-e<4)throw new Error(`${L} not enough data for float32`);let t=(r.byteOffset||0)+e;return new DataView(r.buffer,t,4).getFloat32(0,!1)}function $1(r){Ce.setFloat64(0,r,!1)}function Vc(r,e){if(r.length-e<8)throw new Error(`${L} not enough data for float64`);let t=(r.byteOffset||0)+e;return new DataView(r.buffer,t,8).getFloat64(0,!1)}an.compareTokens=Be.compareTokens;function z(r,e,t){throw new Error(`${L} encountered invalid minor (${t}) for major ${r[e]>>>5}`)}function cn(r){return()=>{throw new Error(`${L} ${r}`)}}var A=[];for(let r=0;r<=23;r++)A[r]=z;A[24]=Ja;A[25]=Za;A[26]=Xa;A[27]=ec;A[28]=z;A[29]=z;A[30]=z;A[31]=z;for(let r=32;r<=55;r++)A[r]=z;A[56]=tc;A[57]=rc;A[58]=nc;A[59]=oc;A[60]=z;A[61]=z;A[62]=z;A[63]=z;for(let r=64;r<=87;r++)A[r]=sc;A[88]=ac;A[89]=cc;A[90]=uc;A[91]=fc;A[92]=z;A[93]=z;A[94]=z;A[95]=cn("indefinite length bytes/strings are not supported");for(let r=96;r<=119;r++)A[r]=lc;A[120]=hc;A[121]=dc;A[122]=pc;A[123]=mc;A[124]=z;A[125]=z;A[126]=z;A[127]=cn("indefinite length bytes/strings are not supported");for(let r=128;r<=151;r++)A[r]=gc;A[152]=wc;A[153]=bc;A[154]=_c;A[155]=xc;A[156]=z;A[157]=z;A[158]=z;A[159]=vc;for(let r=160;r<=183;r++)A[r]=Ac;A[184]=Ec;A[185]=kc;A[186]=Sc;A[187]=Tc;A[188]=z;A[189]=z;A[190]=z;A[191]=Bc;for(let r=192;r<=215;r++)A[r]=Cc;A[216]=Nc;A[217]=Dc;A[218]=Fc;A[219]=Lc;A[220]=z;A[221]=z;A[222]=z;A[223]=z;for(let r=224;r<=243;r++)A[r]=cn("simple values are not supported");A[244]=z;A[245]=z;A[246]=z;A[247]=Ic;A[248]=cn("simple values are not supported");A[249]=Oc;A[250]=Uc;A[251]=zc;A[252]=z;A[253]=z;A[254]=z;A[255]=Pc;var Ie=[];for(let r=0;r<24;r++)Ie[r]=new k(y.uint,r,1);for(let r=-1;r>=-24;r--)Ie[31-r]=new k(y.negint,r,1);Ie[64]=new k(y.bytes,new Uint8Array(0),1);Ie[96]=new k(y.string,"",1);Ie[128]=new k(y.array,0,1);Ie[160]=new k(y.map,0,1);Ie[244]=new k(y.false,!1,1);Ie[245]=new k(y.true,!0,1);Ie[246]=new k(y.null,null,1);function V1(){let r=[];return r[y.uint.major]=Be,r[y.negint.major]=tn,r[y.bytes.major]=Ut,r[y.string.major]=yc,r[y.array.major]=nn,r[y.map.major]=on,r[y.tag.major]=sn,r[y.float.major]=an,r}var Sm=V1(),Tm=new en,$t=class{constructor(e,t){this.obj=e,this.parent=t}includes(e){let t=this;do if(t.obj===e)return!0;while(t=t.parent);return!1}static createCheck(e,t){if(e&&e.includes(t))throw new Error(`${Li} object contains circular references`);return new $t(t,e)}},nt={null:new k(y.null,null),undefined:new k(y.undefined,void 0),true:new k(y.true,!0),false:new k(y.false,!1),emptyArray:new k(y.array,0),emptyMap:new k(y.map,0)},it={number(r,e,t,n){return!Number.isInteger(r)||!Number.isSafeInteger(r)?new k(y.float,r):r>=0?new k(y.uint,r):new k(y.negint,r)},bigint(r,e,t,n){return r>=BigInt(0)?new k(y.uint,r):new k(y.negint,r)},Uint8Array(r,e,t,n){return new k(y.bytes,r)},string(r,e,t,n){return new k(y.string,r)},boolean(r,e,t,n){return r?nt.true:nt.false},null(r,e,t,n){return nt.null},undefined(r,e,t,n){return nt.undefined},ArrayBuffer(r,e,t,n){return new k(y.bytes,new Uint8Array(r))},DataView(r,e,t,n){return new k(y.bytes,new Uint8Array(r.buffer,r.byteOffset,r.byteLength))},Array(r,e,t,n){if(!r.length)return t.addBreakTokens===!0?[nt.emptyArray,new k(y.break)]:nt.emptyArray;n=$t.createCheck(n,r);let i=[],o=0;for(let s of r)i[o++]=zi(s,t,n);return t.addBreakTokens?[new k(y.array,r.length),i,new k(y.break)]:[new k(y.array,r.length),i]},Object(r,e,t,n){let i=e!=="Object",o=i?r.keys():Object.keys(r),s=i?r.size:o.length;if(!s)return t.addBreakTokens===!0?[nt.emptyMap,new k(y.break)]:nt.emptyMap;n=$t.createCheck(n,r);let c=[],a=0;for(let l of o)c[a++]=[zi(l,t,n),zi(i?r.get(l):r[l],t,n)];return j1(c,t),t.addBreakTokens?[new k(y.map,s),c,new k(y.break)]:[new k(y.map,s),c]}};it.Map=it.Object;it.Buffer=it.Uint8Array;for(let r of"Uint8Clamped Uint16 Uint32 Int8 Int16 Int32 BigUint64 BigInt64 Float32 Float64".split(" "))it[`${r}Array`]=it.DataView;function zi(r,e={},t){let n=Ma(r),i=e&&e.typeEncoders&&e.typeEncoders[n]||it[n];if(typeof i=="function"){let s=i(r,n,e,t);if(s!=null)return s}let o=it[n];if(!o)throw new Error(`${Li} unsupported type: ${n}`);return o(r,n,e,t)}function j1(r,e){e.mapSorter&&r.sort(e.mapSorter)}var H1={strict:!1,allowIndefinite:!0,allowUndefined:!0,allowBigInt:!0},Ri=class{constructor(e,t={}){this.pos=0,this.data=e,this.options=t}done(){return this.pos>=this.data.length}next(){let e=this.data[this.pos],t=Ie[e];if(t===void 0){let n=A[e];if(!n)throw new Error(`${L} no decoder for major type ${e>>>5} (byte 0x${e.toString(16).padStart(2,"0")})`);let i=e&31;t=n(this.data,this.pos,i,this.options)}return this.pos+=t.encodedLength,t}},br=Symbol.for("DONE"),un=Symbol.for("BREAK");function G1(r,e,t){let n=[];for(let i=0;i<r.value;i++){let o=_r(e,t);if(o===un){if(r.value===1/0)break;throw new Error(`${L} got unexpected break to lengthed array`)}if(o===br)throw new Error(`${L} found array but not enough entries (got ${i}, expected ${r.value})`);n[i]=o}return n}function W1(r,e,t){let n=t.useMaps===!0,i=n?void 0:{},o=n?new Map:void 0;for(let s=0;s<r.value;s++){let c=_r(e,t);if(c===un){if(r.value===1/0)break;throw new Error(`${L} got unexpected break to lengthed map`)}if(c===br)throw new Error(`${L} found map but not enough entries (got ${s} [no key], expected ${r.value})`);if(n!==!0&&typeof c!="string")throw new Error(`${L} non-string keys not supported (got ${typeof c})`);if(t.rejectDuplicateMapKeys===!0&&(n&&o.has(c)||!n&&c in i))throw new Error(`${L} found repeat map key "${c}"`);let a=_r(e,t);if(a===br)throw new Error(`${L} found map but not enough entries (got ${s} [no value], expected ${r.value})`);n?o.set(c,a):i[c]=a}return n?o:i}function _r(r,e){if(r.done())return br;let t=r.next();if(t.type===y.break)return un;if(t.type.terminal)return t.value;if(t.type===y.array)return G1(t,r,e);if(t.type===y.map)return W1(t,r,e);if(t.type===y.tag){if(e.tags&&typeof e.tags[t.value]=="function"){let n=_r(r,e);return e.tags[t.value](n)}throw new Error(`${L} tag not supported (${t.value})`)}throw new Error("unsupported")}function $i(r,e){if(!(r instanceof Uint8Array))throw new Error(`${L} data to decode must be a Uint8Array`);e=Object.assign({},H1,e);let t=e.tokenizer||new Ri(r,e),n=_r(t,e);if(n===br)throw new Error(`${L} did not find any content to decode`);if(n===un)throw new Error(`${L} got unexpected break`);if(!t.done())throw new Error(`${L} too many terminals, data makes no sense`);return n}var Q1=42;function K1(r){if(r[0]!==0)throw new Error("Invalid CID for CBOR tag 42; expected leading 0x00");return N.decode(r.subarray(1))}var jc={allowIndefinite:!1,coerceUndefinedToNull:!0,allowNaN:!1,allowInfinity:!1,allowBigInt:!0,strict:!0,useMaps:!1,rejectDuplicateMapKeys:!0,tags:[]};jc.tags[Q1]=K1;var Hc=113;var Gc=r=>$i(r,jc);var vn=Y(le(),1);var J1=async function(r){return(await lt.encode(r)).slice(0,8).reverse()},Z1=(r,e,t)=>Promise.all(r.map(n=>{if(n.Name==null)throw new Error("Unexpected Link without a Name");if(n.Name.length===2){let i=parseInt(n.Name,16);return e._putObjectAt(i,new M({hash:t._options.hash,bits:t._options.bits},e,i))}return t.put(n.Name.substring(2),!0)})),qc=r=>r.toString(16).toUpperCase().padStart(2,"0").substring(0,2),X1=r=>{let e=r.bucket,t=[];for(;e._parent;)t.push(e),e=e._parent;return t.push(e),t.reverse()},Yc=async(r,e,t,n,i)=>{if(!n){let u=tt({hashFn:J1});n={rootBucket:u,hamtDepth:1,lastBucket:u}}await Z1(r.Links,n.lastBucket,n.rootBucket);let o=await n.rootBucket._findNewBucketAndPos(e),s=qc(o.pos),c=X1(o);c.length>n.hamtDepth&&(n.lastBucket=c[n.hamtDepth],s=qc(n.lastBucket._posAtParent));let a=r.Links.find(u=>{if(u.Name==null)return!1;let h=u.Name.substring(0,2),p=u.Name.substring(2);return!(h!==s||p&&p!==e)});if(!a)return null;if(a.Name!=null&&a.Name.substring(2)===e)return a.Hash;n.hamtDepth++;let l=await t.get(a.Hash,i);return r=H(l),Yc(r,e,t,n,i)},Qc=Yc;function eh(r,e,t,n){let i=r.length,o=e+i;return t>=o||n<e?new Uint8Array(0):(n>=e&&n<o&&(r=r.subarray(0,n-e)),t>=e&&t<o&&(r=r.subarray(t-e)),r)}var wt=eh;var fn=Y(le(),1),th=(r,e,t)=>{if(e||(e=0),e<0)throw(0,fn.default)(new Error("Offset must be greater than or equal to 0"),"ERR_INVALID_PARAMS");if(e>r)throw(0,fn.default)(new Error("Offset must be less than the file size"),"ERR_INVALID_PARAMS");if(!t&&t!==0&&(t=r-e),t<0)throw(0,fn.default)(new Error("Length must be greater than or equal to 0"),"ERR_INVALID_PARAMS");return e+t>r&&(t=r-e),{offset:e,length:t}},Mt=th;var xn=Y(le(),1);var ln=class{constructor(e){if(!(e>0)||e-1&e)throw new Error("Max size for a FixedFIFO should be a power of two");this.buffer=new Array(e),this.mask=e-1,this.top=0,this.btm=0,this.next=null}push(e){return this.buffer[this.top]!==void 0?!1:(this.buffer[this.top]=e,this.top=this.top+1&this.mask,!0)}shift(){let e=this.buffer[this.btm];if(e!==void 0)return this.buffer[this.btm]=void 0,this.btm=this.btm+1&this.mask,e}isEmpty(){return this.buffer[this.btm]===void 0}},Vt=class{constructor(e={}){this.hwm=e.splitLimit??16,this.head=new ln(this.hwm),this.tail=this.head,this.size=0}calculateSize(e){return e?.byteLength!=null?e.byteLength:1}push(e){if(e?.value!=null&&(this.size+=this.calculateSize(e.value)),!this.head.push(e)){let t=this.head;this.head=t.next=new ln(2*this.head.buffer.length),this.head.push(e)}}shift(){let e=this.tail.shift();if(e===void 0&&this.tail.next!=null){let t=this.tail.next;this.tail.next=null,this.tail=t,e=this.tail.shift()}return e?.value!=null&&(this.size-=this.calculateSize(e.value)),e}isEmpty(){return this.head.isEmpty()}};function jt(r={}){return rh(t=>{let n=t.shift();if(n==null)return{done:!0};if(n.error!=null)throw n.error;return{done:n.done===!0,value:n.value}},r)}function rh(r,e){e=e??{};let t=e.onEnd,n=new Vt,i,o,s,c=async()=>n.isEmpty()?s?{done:!0}:await new Promise((m,E)=>{o=g=>{o=null,n.push(g);try{m(r(n))}catch(b){E(b)}return i}}):r(n),a=m=>o!=null?o(m):(n.push(m),i),l=m=>(n=new Vt,o!=null?o({error:m}):(n.push({error:m}),i)),u=m=>{if(s)return i;if(e?.objectMode!==!0&&m?.byteLength==null)throw new Error("objectMode was not true but tried to push non-Uint8Array value");return a({done:!1,value:m})},h=m=>s?i:(s=!0,m!=null?l(m):a({done:!0})),p=()=>(n=new Vt,h(),{done:!0}),f=m=>(h(m),{done:!0});if(i={[Symbol.asyncIterator](){return this},next:c,return:p,throw:f,push:u,end:h,get readableLength(){return n.size}},t==null)return i;let d=i;return i={[Symbol.asyncIterator](){return this},next(){return d.next()},throw(m){return d.throw(m),t!=null&&(t(m),t=void 0),{done:!0}},return(){return d.return(),t!=null&&(t(),t=void 0),{done:!0}},push:u,end(m){return d.end(m),t!=null&&(t(m),t=void 0),i},get readableLength(){return d.readableLength}},i}function Ht(){let r={};return r.promise=new Promise((e,t)=>{r.resolve=e,r.reject=t}),r}var hn=globalThis.CustomEvent??Event;async function*Mi(r,e={}){let t=e.concurrency??1/0;t<1&&(t=1/0);let n=e.ordered==null?!1:e.ordered,i=new EventTarget,o=[],s=Ht(),c=Ht(),a=!1,l,u=!1;i.addEventListener("task-complete",()=>{c.resolve()}),Promise.resolve().then(async()=>{try{for await(let d of r){if(o.length===t&&(s=Ht(),await s.promise),u)break;let m={done:!1};o.push(m),d().then(E=>{m.done=!0,m.ok=!0,m.value=E,i.dispatchEvent(new hn("task-complete"))},E=>{m.done=!0,m.err=E,i.dispatchEvent(new hn("task-complete"))})}a=!0,i.dispatchEvent(new hn("task-complete"))}catch(d){l=d,i.dispatchEvent(new hn("task-complete"))}});function h(){return n?o[0]?.done:Boolean(o.find(d=>d.done))}function*p(){for(;o.length>0&&o[0].done;){let d=o[0];if(o.shift(),d.ok)yield d.value;else throw u=!0,s.resolve(),d.err;s.resolve()}}function*f(){for(;h();)for(let d=0;d<o.length;d++)if(o[d].done){let m=o[d];if(o.splice(d,1),d--,m.ok)yield m.value;else throw u=!0,s.resolve(),m.err;s.resolve()}}for(;;){if(h()||(c=Ht(),await c.promise),l!=null)throw l;if(n?yield*p():yield*f(),a&&o.length===0)break}}async function*Vi(...r){let e=jt({objectMode:!0});Promise.resolve().then(async()=>{try{await Promise.all(r.map(async t=>{for await(let n of t)e.push(n)})),e.end()}catch(t){e.end(t)}}),yield*e}var nh=(...r)=>{let e;for(;r.length>0;)e=r.shift()(e);return e},Kc=r=>r!=null&&(typeof r[Symbol.asyncIterator]=="function"||typeof r[Symbol.iterator]=="function"||typeof r.next=="function"),ji=r=>r!=null&&typeof r.sink=="function"&&Kc(r.source),ih=r=>e=>{let t=r.sink(e);if(t.then!=null){let n=jt({objectMode:!0});return t.then(()=>{n.end()},o=>{n.end(o)}),Vi(n,async function*(){yield*r.source,n.end()}())}return r.source};function Gt(r,...e){if(ji(r)){let n=r;r=()=>n.source}else if(Kc(r)){let n=r;r=()=>n}let t=[r,...e];if(t.length>1&&ji(t[t.length-1])&&(t[t.length-1]=t[t.length-1].sink),t.length>2)for(let n=1;n<t.length-1;n++)ji(t[n])&&(t[n]=ih(t[n]));return nh(...t)}async function*Hi(r,e){for await(let t of r)yield e(t)}var au=Y(Zc(),1);var vr=class extends Error{constructor(e){super(e),this.name="TimeoutError"}},Wi=class extends Error{constructor(e){super(),this.name="AbortError",this.message=e}},Xc=r=>globalThis.DOMException===void 0?new Wi(r):new DOMException(r),eu=r=>{let e=r.reason===void 0?Xc("This operation was aborted."):r.reason;return e instanceof Error?e:Xc(e)};function qi(r,e,t,n){let i,o=new Promise((s,c)=>{if(typeof e!="number"||Math.sign(e)!==1)throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${e}\``);if(e===Number.POSITIVE_INFINITY){s(r);return}if(n={customTimers:{setTimeout,clearTimeout},...n},n.signal){let{signal:a}=n;a.aborted&&c(eu(a)),a.addEventListener("abort",()=>{c(eu(a))})}i=n.customTimers.setTimeout.call(void 0,()=>{if(typeof t=="function"){try{s(t())}catch(u){c(u)}return}let a=typeof t=="string"?t:`Promise timed out after ${e} milliseconds`,l=t instanceof Error?t:new vr(a);typeof r.cancel=="function"&&r.cancel(),c(l)},e),(async()=>{try{s(await r)}catch(a){c(a)}finally{n.customTimers.clearTimeout.call(void 0,i)}})()});return o.clear=()=>{clearTimeout(i),i=void 0},o}function Yi(r,e,t){let n=0,i=r.length;for(;i>0;){let o=Math.trunc(i/2),s=n+o;t(r[s],e)<=0?(n=++s,i-=o+1):i=o}return n}var bt=function(r,e,t,n){if(t==="a"&&!n)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?r!==e||!n:!e.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?n:t==="a"?n.call(r):n?n.value:e.get(r)},qe,Ar=class{constructor(){qe.set(this,[])}enqueue(e,t){t={priority:0,...t};let n={priority:t.priority,run:e};if(this.size&&bt(this,qe,"f")[this.size-1].priority>=t.priority){bt(this,qe,"f").push(n);return}let i=Yi(bt(this,qe,"f"),n,(o,s)=>s.priority-o.priority);bt(this,qe,"f").splice(i,0,n)}dequeue(){let e=bt(this,qe,"f").shift();return e?.run}filter(e){return bt(this,qe,"f").filter(t=>t.priority===e.priority).map(t=>t.run)}get size(){return bt(this,qe,"f").length}};qe=new WeakMap;var V=function(r,e,t,n,i){if(n==="m")throw new TypeError("Private method is not writable");if(n==="a"&&!i)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?r!==e||!i:!e.has(r))throw new TypeError("Cannot write private member to an object whose class did not declare it");return n==="a"?i.call(r,t):i?i.value=t:e.set(r,t),t},T=function(r,e,t,n){if(t==="a"&&!n)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?r!==e||!n:!e.has(r))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?n:t==="a"?n.call(r):n?n.value:e.get(r)},q,kr,Sr,st,bn,Tr,pn,Pe,Er,be,mn,_e,Br,ot,yn,tu,ru,su,nu,iu,ou,gn,Qi,Ki,_n,wn,ah=new vr,Ji=class extends Error{},Cr=class extends au.default{constructor(e){var t,n,i,o;if(super(),q.add(this),kr.set(this,void 0),Sr.set(this,void 0),st.set(this,0),bn.set(this,void 0),Tr.set(this,void 0),pn.set(this,0),Pe.set(this,void 0),Er.set(this,void 0),be.set(this,void 0),mn.set(this,void 0),_e.set(this,0),Br.set(this,void 0),ot.set(this,void 0),yn.set(this,void 0),Object.defineProperty(this,"timeout",{enumerable:!0,configurable:!0,writable:!0,value:void 0}),e={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:Ar,...e},!(typeof e.intervalCap=="number"&&e.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${(n=(t=e.intervalCap)===null||t===void 0?void 0:t.toString())!==null&&n!==void 0?n:""}\` (${typeof e.intervalCap})`);if(e.interval===void 0||!(Number.isFinite(e.interval)&&e.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${(o=(i=e.interval)===null||i===void 0?void 0:i.toString())!==null&&o!==void 0?o:""}\` (${typeof e.interval})`);V(this,kr,e.carryoverConcurrencyCount,"f"),V(this,Sr,e.intervalCap===Number.POSITIVE_INFINITY||e.interval===0,"f"),V(this,bn,e.intervalCap,"f"),V(this,Tr,e.interval,"f"),V(this,be,new e.queueClass,"f"),V(this,mn,e.queueClass,"f"),this.concurrency=e.concurrency,this.timeout=e.timeout,V(this,yn,e.throwOnTimeout===!0,"f"),V(this,ot,e.autoStart===!1,"f")}get concurrency(){return T(this,Br,"f")}set concurrency(e){if(!(typeof e=="number"&&e>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${e}\` (${typeof e})`);V(this,Br,e,"f"),T(this,q,"m",_n).call(this)}async add(e,t={}){return new Promise((n,i)=>{let o=async()=>{var s,c,a;V(this,_e,(c=T(this,_e,"f"),c++,c),"f"),V(this,st,(a=T(this,st,"f"),a++,a),"f");try{if(!((s=t.signal)===null||s===void 0)&&s.aborted){i(new Ji("The task was aborted."));return}let u=await(this.timeout===void 0&&t.timeout===void 0?e({signal:t.signal}):qi(Promise.resolve(e({signal:t.signal})),t.timeout===void 0?this.timeout:t.timeout,()=>{(t.throwOnTimeout===void 0?T(this,yn,"f"):t.throwOnTimeout)&&i(ah)}));n(u),this.emit("completed",u)}catch(l){i(l),this.emit("error",l)}T(this,q,"m",su).call(this)};T(this,be,"f").enqueue(o,t),T(this,q,"m",gn).call(this),this.emit("add")})}async addAll(e,t){return Promise.all(e.map(async n=>this.add(n,t)))}start(){return T(this,ot,"f")?(V(this,ot,!1,"f"),T(this,q,"m",_n).call(this),this):this}pause(){V(this,ot,!0,"f")}clear(){V(this,be,new(T(this,mn,"f")),"f")}async onEmpty(){T(this,be,"f").size!==0&&await T(this,q,"m",wn).call(this,"empty")}async onSizeLessThan(e){T(this,be,"f").size<e||await T(this,q,"m",wn).call(this,"next",()=>T(this,be,"f").size<e)}async onIdle(){T(this,_e,"f")===0&&T(this,be,"f").size===0||await T(this,q,"m",wn).call(this,"idle")}get size(){return T(this,be,"f").size}sizeBy(e){return T(this,be,"f").filter(e).length}get pending(){return T(this,_e,"f")}get isPaused(){return T(this,ot,"f")}};kr=new WeakMap,Sr=new WeakMap,st=new WeakMap,bn=new WeakMap,Tr=new WeakMap,pn=new WeakMap,Pe=new WeakMap,Er=new WeakMap,be=new WeakMap,mn=new WeakMap,_e=new WeakMap,Br=new WeakMap,ot=new WeakMap,yn=new WeakMap,q=new WeakSet,tu=function(){return T(this,Sr,"f")||T(this,st,"f")<T(this,bn,"f")},ru=function(){return T(this,_e,"f")<T(this,Br,"f")},su=function(){var e;V(this,_e,(e=T(this,_e,"f"),e--,e),"f"),T(this,q,"m",gn).call(this),this.emit("next")},nu=function(){this.emit("empty"),T(this,_e,"f")===0&&this.emit("idle")},iu=function(){T(this,q,"m",Ki).call(this),T(this,q,"m",Qi).call(this),V(this,Er,void 0,"f")},ou=function(){let e=Date.now();if(T(this,Pe,"f")===void 0){let t=T(this,pn,"f")-e;if(t<0)V(this,st,T(this,kr,"f")?T(this,_e,"f"):0,"f");else return T(this,Er,"f")===void 0&&V(this,Er,setTimeout(()=>{T(this,q,"m",iu).call(this)},t),"f"),!0}return!1},gn=function(){if(T(this,be,"f").size===0)return T(this,Pe,"f")&&clearInterval(T(this,Pe,"f")),V(this,Pe,void 0,"f"),T(this,q,"m",nu).call(this),!1;if(!T(this,ot,"f")){let e=!T(this,q,"a",ou);if(T(this,q,"a",tu)&&T(this,q,"a",ru)){let t=T(this,be,"f").dequeue();return t?(this.emit("active"),t(),e&&T(this,q,"m",Qi).call(this),!0):!1}}return!1},Qi=function(){T(this,Sr,"f")||T(this,Pe,"f")!==void 0||(V(this,Pe,setInterval(()=>{T(this,q,"m",Ki).call(this)},T(this,Tr,"f")),"f"),V(this,pn,Date.now()+T(this,Tr,"f"),"f"))},Ki=function(){T(this,st,"f")===0&&T(this,_e,"f")===0&&T(this,Pe,"f")&&(clearInterval(T(this,Pe,"f")),V(this,Pe,void 0,"f")),V(this,st,T(this,kr,"f")?T(this,_e,"f"):0,"f"),T(this,q,"m",_n).call(this)},_n=function(){for(;T(this,q,"m",gn).call(this););},wn=async function(e,t){return new Promise(n=>{let i=()=>{t&&!t()||(this.off(e,i),n())};this.on(e,i)})};async function cu(r,e,t,n,i,o,s,c){if(e instanceof Uint8Array){t.push(wt(e,n,i,o));return}if(e.Data==null)throw(0,xn.default)(new Error("no data in PBNode"),"ERR_NOT_UNIXFS");let a;try{a=F.unmarshal(e.Data)}catch(u){throw(0,xn.default)(u,"ERR_NOT_UNIXFS")}if(a.data!=null){let u=a.data,h=wt(u,n,i,o);t.push(h),n+=h.byteLength}let l=[];for(let u=0;u<e.Links.length;u++){let h=e.Links[u],p=n,f=p+a.blockSizes[u];if((i>=p&&i<f||o>=p&&o<=f||i<p&&o>f)&&l.push({link:h,blockStart:n}),n=f,n>o)break}await Gt(l,u=>Hi(u,h=>async()=>{let p=await r.get(h.link.Hash,{signal:c.signal});return{...h,block:p}}),u=>Mi(u,{ordered:!0}),async u=>{for await(let{link:h,block:p,blockStart:f}of u){let d;switch(h.Hash.code){case W:d=H(p);break;case de:d=p;break;default:t.end((0,xn.default)(new Error(`Unsupported codec: ${h.Hash.code}`),"ERR_NOT_UNIXFS"));return}s.add(async()=>{await cu(r,d,t,f,i,o,s,c)})}})}var ch=(r,e,t,n,i,o,s)=>{async function*c(a={}){let l=t.fileSize();if(l===void 0)throw new Error("File was a directory");let{offset:u,length:h}=Mt(l,a.offset,a.length);if(h===0)return;let p=new Cr({concurrency:1}),f=jt();p.add(async()=>{await cu(s,e,f,0,u,u+h,p,a)}),p.on("error",m=>{f.end(m)});let d=0;for await(let m of f)m!=null&&(d+=m.byteLength,d===h&&f.end(),yield m)}return c},Zi=ch;var uh=(r,e,t,n,i,o,s)=>{async function*c(a={}){let l=a.offset||0,u=a.length||e.Links.length,h=e.Links.slice(l,u);for(let p of h){let f=await i(p.Hash,p.Name||"",`${n}/${p.Name||""}`,[],o+1,s,a);f.entry&&(yield f.entry)}}return c},uu=uh;var fh=(r,e,t,n,i,o,s)=>{function c(a={}){return fu(e,n,i,o,s,a)}return c};async function*fu(r,e,t,n,i,o){let s=r.Links;for(let c of s){let a=c.Name!=null?c.Name.substring(2):null;if(a)yield(await t(c.Hash,a,`${e}/${a}`,[],n+1,i,o)).entry;else{let l=await i.get(c.Hash);r=H(l);for await(let u of fu(r,e,t,n,i,o))yield u}}}var lu=fh;var lh=(r,e)=>{let t=r.Links.find(n=>n.Name===e);return t&&t.Hash},hh={raw:Zi,file:Zi,directory:uu,"hamt-sharded-directory":lu,metadata:(r,e,t,n,i,o,s)=>()=>[],symlink:(r,e,t,n,i,o,s)=>()=>[]},dh=async(r,e,t,n,i,o,s,c)=>{let a=await s.get(r,c),l=H(a),u,h;if(e||(e=r.toString()),l.Data==null)throw(0,vn.default)(new Error("no data in PBNode"),"ERR_NOT_UNIXFS");try{u=F.unmarshal(l.Data)}catch(p){throw(0,vn.default)(p,"ERR_NOT_UNIXFS")}if(t||(t=e),n.length){let p;if(u&&u.type==="hamt-sharded-directory"?p=await Qc(l,n[0],s):p=lh(l,n[0]),!p)throw(0,vn.default)(new Error("file does not exist"),"ERR_NOT_FOUND");let f=n.shift(),d=`${t}/${f}`;h={cid:p,toResolve:n,name:f||"",path:d}}return{entry:{type:u.isDirectory()?"directory":"file",name:e,path:t,cid:r,content:hh[u.type](r,l,u,t,i,o,s),unixfs:u,depth:o,node:l,size:u.fileSize()},next:h}},hu=dh;var du=Y(le(),1);var ph=r=>{async function*e(t={}){let{offset:n,length:i}=Mt(r.length,t.offset,t.length);yield wt(r,0,n,n+i)}return e},mh=async(r,e,t,n,i,o,s,c)=>{if(n.length)throw(0,du.default)(new Error(`No link named ${t} found in raw node ${r}`),"ERR_NOT_FOUND");let a=await s.get(r,c);return{entry:{type:"raw",name:e,path:t,cid:r,content:ph(a),depth:o,size:a.length,node:a}}},pu=mh;var mu=Y(le(),1);var yh=async(r,e,t,n,i,o,s,c)=>{let a=await s.get(r),l=Gc(a),u=l,h=t;for(;n.length;){let p=n[0];if(p in u){n.shift(),h=`${h}/${p}`;let f=N.asCID(u[p]);if(f)return{entry:{type:"object",name:e,path:t,cid:r,node:a,depth:o,size:a.length,content:async function*(){yield l}},next:{cid:f,name:p,path:h,toResolve:n}};u=u[p]}else throw(0,mu.default)(new Error(`No property named ${p} found in cbor node ${r}`),"ERR_NO_PROP")}return{entry:{type:"object",name:e,path:t,cid:r,node:a,depth:o,size:a.length,content:async function*(){yield l}}}},yu=yh;var gu=Y(le(),1);var gh=r=>{async function*e(t={}){let{offset:n,length:i}=Mt(r.length,t.offset,t.length);yield wt(r,0,n,n+i)}return e},wh=async(r,e,t,n,i,o,s,c)=>{if(n.length)throw(0,gu.default)(new Error(`No link named ${t} found in raw node ${r}`),"ERR_NOT_FOUND");let a=await Ur(r.multihash.bytes);return{entry:{type:"identity",name:e,path:t,cid:r,content:gh(a.digest),depth:o,size:a.digest.length,node:a.digest}}},wu=wh;var bh={[W]:hu,[de]:pu,[Hc]:yu,[Ei.code]:wu};function _u(r,e,t,n,i,o,s){let c=bh[r.code];if(!c)throw(0,bu.default)(new Error(`No resolver for code ${r.code}`),"ERR_NO_RESOLVER");return c(r,e,t,n,_u,i,o,s)}var xu=_u;var _h=(r="")=>(r.trim().match(/([^\\^/]|\\\/)+/g)||[]).filter(Boolean),xh=r=>{if(r instanceof Uint8Array)return{cid:N.decode(r),toResolve:[]};let e=N.asCID(r);if(e)return{cid:e,toResolve:[]};if(typeof r=="string"){r.indexOf("/ipfs/")===0&&(r=r.substring(6));let t=_h(r);return{cid:N.parse(t[0]),toResolve:t.slice(1)}}throw(0,An.default)(new Error(`Unknown path type ${r}`),"ERR_BAD_PATH")};async function*vh(r,e,t={}){let{cid:n,toResolve:i}=xh(r),o=n.toString(),s=o,c=i.length;for(;;){let a=await xu(n,o,s,i,c,e,t);if(!a.entry&&!a.next)throw(0,An.default)(new Error(`Could not resolve ${r}`),"ERR_NOT_FOUND");if(a.entry&&(yield a.entry),!a.next)return;i=a.next.toResolve,n=a.next.cid,o=a.next.name,s=a.next.path}}async function fe(r,e,t={}){let n=await pe(vh(r,e,t));if(!n)throw(0,An.default)(new Error(`Could not resolve ${r}`),"ERR_NOT_FOUND");return n}async function*En(r,e,t={}){let n=await fe(r,e,t);if(!n)return;if(yield n,n.type==="directory")for await(let o of i(n,t))yield o;async function*i(o,s){for await(let c of o.content(s))yield c,!(c instanceof Uint8Array)&&c.type==="directory"&&(yield*i(c,s))}}var Me=Y(Su(),1);Me.default.formatters.b=r=>r==null?"undefined":Ee.baseEncode(r);Me.default.formatters.t=r=>r==null?"undefined":Ke.baseEncode(r);Me.default.formatters.m=r=>r==null?"undefined":xi.baseEncode(r);Me.default.formatters.p=r=>r==null?"undefined":r.toString();Me.default.formatters.c=r=>r==null?"undefined":r.toString();Me.default.formatters.k=r=>r==null?"undefined":r.toString();function K(r){return Object.assign((0,Me.default)(r),{error:(0,Me.default)(`${r}:error`),trace:(0,Me.default)(`${r}:trace`)})}var Qt=async(r,e,t={})=>{let n=await Q.digest(r),i=N.create(t.cidVersion??1,W,n);return await e.put(i,r,{signal:t.signal}),i};var Tn=lt.code,Bn=8;async function Cn(r){return(await lt.encode(r)).subarray(0,8).reverse()}var Xi=class{constructor(e,t){this.options=t??{},this.root=e.root,this.dir=e.dir,this.path=e.path,this.dirty=e.dirty,this.flat=e.flat,this.parent=e.parent,this.parentKey=e.parentKey,this.unixfs=e.unixfs,this.mode=e.mode,this.mtime=e.mtime}},Kt=class extends Xi{constructor(e,t){super(e,t),this._bucket=tt({hashFn:Cn,bits:Bn})}async put(e,t){await this._bucket.put(e,t)}async get(e){return await this._bucket.get(e)}childCount(){return this._bucket.leafCount()}directChildrenCount(){return this._bucket.childrenCount()}onlyChild(){return this._bucket.onlyChild()}async*eachChildSeries(){for await(let{key:e,value:t}of this._bucket.eachLeafSeries())yield{key:e,child:t}}async*flush(e){yield*Tu(this._bucket,e,this,this.options)}};async function*Tu(r,e,t,n){let i=r._children,o=[],s=0;for(let f=0;f<i.length;f++){let d=i.get(f);if(d==null)continue;let m=f.toString(16).toUpperCase().padStart(2,"0");if(d instanceof M){let E;for await(let g of Tu(d,e,null,n))E=g;if(E==null)throw new Error("Could not flush sharded directory, no subshard found");o.push({Name:m,Tsize:E.size,Hash:E.cid}),s+=E.size}else if(typeof d.value.flush=="function"){let E=d.value,g;for await(let _ of E.flush(e))g=_,yield g;let b=m+d.key;o.push({Name:b,Tsize:g.size,Hash:g.cid}),s+=g.size}else{let E=d.value;if(E.cid==null)continue;let g=m+d.key,b=E.size;o.push({Name:g,Tsize:b,Hash:E.cid}),s+=b??0}}let c=Uint8Array.from(i.bitField().reverse()),l={Data:new F({type:"hamt-sharded-directory",data:c,fanout:r.tableSize(),hashType:Tn,mtime:t?.mtime,mode:t?.mode}).marshal(),Links:o},u=R(se(l)),h=await Qt(u,e,n),p=u.length+s;yield{cid:h,node:l,size:p}}var Nr=K("helia:unixfs:commands:utils:hamt-utils"),Jt=async(r,e,t,n,i)=>{if(r.node.Data==null)throw new Error("Could not update HAMT directory because parent had no data");let o=Uint8Array.from(n._children.bitField().reverse()),s=F.unmarshal(r.node.Data),c=new F({type:"hamt-sharded-directory",data:o,fanout:n.tableSize(),hashType:Tn,mode:s.mode,mtime:s.mtime});r.node={Data:c.marshal(),Links:t.sort((h,p)=>(h.Name??"").localeCompare(p.Name??""))};let a=R(r.node),l=await Q.digest(a),u=N.create(r.cid.version,W,l);return await e.put(u,a,i),{node:r.node,cid:u,size:t.reduce((h,p)=>h+(p.Tsize??0),a.length)}},eo=async(r,e,t,n,i,o)=>{let s=new M({hash:t._options.hash,bits:t._options.bits},n,i);return n._putObjectAt(i,s),await Dr(r,e,s,t,o),s},to=async r=>{let e=tt({hashFn:Cn,bits:Bn});return await Promise.all(r.map(async t=>{let n=t.Name??"";if(n.length===2){let i=parseInt(n,16),o=new M({hash:e._options.hash,bits:e._options.bits},e,i);e._putObjectAt(i,o),await Promise.resolve();return}await e.put(n.substring(2),{size:t.Tsize,cid:t.Hash})})),e},Dr=async(r,e,t,n,i)=>{await Promise.all(e.map(async o=>{let s=o.Name??"";if(s.length===2){Nr("Populating sub bucket",s);let c=parseInt(s,16),a=await r.get(o.Hash,i),l=H(a),u=new M({hash:n._options.hash,bits:n._options.bits},t,c);t._putObjectAt(c,u),await Dr(r,l.Links,u,n,i),await Promise.resolve();return}await n.put(s.substring(2),{size:o.Tsize,cid:o.Hash})}))},xt=r=>r.toString(16).toUpperCase().padStart(2,"0").substring(0,2),Bu=async(r,e,t,n)=>{let i=await to(r.node.Links),o=await i._findNewBucketAndPos(e),s=[{bucket:o.bucket,prefix:xt(o.pos)}],c=o.bucket;for(;c!==i;)s.push({bucket:c,prefix:xt(c._posAtParent)}),c=c._parent;s.reverse(),s[0].node=r.node;for(let a=0;a<s.length;a++){let l=s[a];if(l.node==null)throw new Error("Could not generate HAMT path");let u=l.node.Links.filter(d=>(d.Name??"").substring(0,2)===l.prefix).pop();if(u==null){Nr(`Link ${l.prefix}${e} will be added`);continue}if(u.Name===`${l.prefix}${e}`){Nr(`Link ${l.prefix}${e} will be replaced`);continue}Nr(`Found subshard ${l.prefix}`);let h=await t.get(u.Hash,n),p=H(h);if(s[a+1]==null){Nr(`Loaded new subshard ${l.prefix}`),await eo(t,p.Links,i,l.bucket,parseInt(l.prefix,16),n);let d=await i._findNewBucketAndPos(e);s.push({bucket:d.bucket,prefix:xt(d.pos),node:p});continue}let f=s[a+1];await Dr(t,p.Links,f.bucket,i,n),f.node=p}return await i.put(e,!0),s.reverse(),{rootBucket:i,path:s}},Cu=async(r,e,t={})=>{let n=new Kt({root:!0,dir:!0,parent:void 0,parentKey:void 0,path:"",dirty:!0,flat:!1,mtime:t.mtime,mode:t.mode},t);for(let o=0;o<e.length;o++)await n._bucket.put(e[o].name,{size:e[o].size,cid:e[o].cid});let i=await pe(n.flush(r));if(i==null)throw new Error("Flushing shard yielded no result");return i};var Ye=K("helia:unixfs:components:utils:add-link");async function Zt(r,e,t,n){if(r.node.Data==null)throw new Z("Invalid parent passed to addLink");if(r.node.Links.length>=1e3){Ye("converting directory to sharded directory");let o=await Ph(r,t);r.cid=o.cid,r.node=H(await t.get(o.cid))}if(r.node.Data==null)throw new Z("Invalid parent passed to addLink");return F.unmarshal(r.node.Data).type==="hamt-sharded-directory"?(Ye("adding link to sharded directory"),await Uh(r,e,t,n)):(Ye(`adding ${e.Name} (${e.Hash}) to regular directory`),await Oh(r,e,t,n))}var Ph=async(r,e)=>{if(r.node.Data==null)throw new Z("Invalid parent passed to convertToShardedDirectory");let t=F.unmarshal(r.node.Data),n=await Cu(e,r.node.Links.map(i=>({name:i.Name??"",size:i.Tsize??0,cid:i.Hash})),{mode:t.mode,mtime:t.mtime});return Ye(`Converted directory to sharded directory ${n.cid}`),n},Oh=async(r,e,t,n)=>{let i=r.node.Links.filter(u=>{let h=u.Name===e.Name;if(h&&!n.allowOverwriting)throw new mr;return!h});if(i.push(e),r.node.Data==null)throw new ae("Parent node with no data passed to addToDirectory");let o=F.unmarshal(r.node.Data),s;if(o.mtime!=null){let u=Date.now(),h=Math.floor(u/1e3);o.mtime={secs:h,nsecs:(u-h*1e3)*1e3},s=o.marshal()}else s=r.node.Data;r.node=se({Data:s,Links:i});let c=R(r.node),a=await Q.digest(c),l=N.create(r.cid.version,W,a);return await t.put(l,c),{node:r.node,cid:l,size:c.length}},Uh=async(r,e,t,n)=>{let{shard:i,path:o}=await zh(r,e,t,n),s=await pe(i.flush(t));if(s==null)throw new Error("No result from flushing shard");let c=await t.get(s.cid),a=H(c),l=r.node.Links.filter(h=>{let p=(h.Name??"").substring(0,2)===o[0].prefix;if(p&&!n.allowOverwriting)throw new mr;return!p}),u=a.Links.find(h=>(h.Name??"").substring(0,2)===o[0].prefix);if(u==null)throw new Error(`No link found with prefix ${o[0].prefix}`);return l.push(u),await Jt(r,t,l,o[0].bucket,n)},zh=async(r,e,t,n)=>{if(r.node.Data==null)throw new ae("Parent node with no data passed to addFileToShardedDirectory");let i=await to(r.node.Links),o=F.unmarshal(r.node.Data),s=new Kt({root:!0,dir:!0,parent:void 0,parentKey:void 0,path:"",dirty:!0,flat:!1,mode:o.mode},{...n,cidVersion:r.cid.version});s._bucket=i,o.mtime!=null&&(s.mtime={secs:Math.round(Date.now()/1e3)});let c=await i._findNewBucketAndPos(e.Name),a=Rh(c);a[0].node=r.node;let l=0;for(;l<a.length;){let u=a[l];l++;let h=u.node;if(h==null)throw new Error("Segment had no node");let p=h.Links.find(E=>(E.Name??"").substring(0,2)===u.prefix);if(p==null){Ye(`Link ${u.prefix}${e.Name} will be added`),l=a.length;break}if(p.Name===`${u.prefix}${e.Name}`){Ye(`Link ${u.prefix}${e.Name} will be replaced`),l=a.length;break}if((p.Name??"").length>2){Ye(`Link ${p.Name} ${p.Hash} will be replaced with a subshard`),l=a.length;break}Ye(`Found subshard ${u.prefix}`);let f=await t.get(p.Hash),d=H(f);if(a[l]==null){Ye(`Loaded new subshard ${u.prefix}`),await eo(t,d.Links,i,u.bucket,parseInt(u.prefix,16),n);let E=await i._findNewBucketAndPos(e.Name);a.push({bucket:E.bucket,prefix:xt(E.pos),node:d});break}let m=a[l];await Dr(t,d.Links,m.bucket,i,n),m.node=d}return await s._bucket.put(e.Name,{size:e.Tsize,cid:e.Hash}),{shard:s,path:a}},Rh=r=>{let e=[{bucket:r.bucket,prefix:xt(r.pos)}],t=r.bucket._parent,n=r.bucket._posAtParent;for(;t!=null;)e.push({bucket:t,prefix:xt(n)}),n=t._posAtParent,t=t._parent;return e.reverse(),e};async function at(r,e,t={}){let n=await fe(r,e,t);if(n.type!=="directory")throw new rt(`${r.toString()} was not a UnixFS directory`);return{cid:r,node:n.node}}async function Xt(r,e,t,n){let i=await fe(r,t,n);if(i.type!=="directory"&&i.type!=="file"&&i.type!=="raw")throw new Re(`${r.toString()} was not a UnixFS node`);return{Name:e,Tsize:i.node instanceof Uint8Array?i.node.byteLength:$h(i.node),Hash:r}}function $h(r){let e=r.Links.reduce((t,n)=>t+(n.Tsize??0),0);return R(r).byteLength+e}var Mh=K("helia:unixfs:components:utils:add-link");async function Ve(r,e,t,n){if(Mh('resolve "%s" under %c',e,r),e==null||e==="")return{cid:r};let i=e.split("/").filter(Boolean),o=[{name:"",cid:r,size:0}];for(let s=0;s<i.length;s++){let c=i[s],a=await fe(r,t,n);if(a.type==="file"){if(s<i.length-1)throw new Z("Path was invalid");r=a.cid}else if(a.type==="directory"){let l;for await(let u of a.content())u.name===c&&(l=u.cid);if(l==null)throw new Zr("Could not find path in directory");r=l,o.push({name:c,cid:r,size:a.size})}else throw new Z("Could not resolve path")}return{cid:r,path:e,segments:o}}async function er(r,e,t,n){if(e.segments==null||e.segments.length===0)return r;let i=e.segments.pop();if(i==null)throw new Error("Insufficient segments");i.cid=r,e.segments.reverse();for(let o of e.segments){let[s,c]=await Promise.all([at(o.cid,t,n),Xt(i.cid,i.name,t,n)]);r=(await Zt(s,c,t,{...n,allowOverwriting:!0})).cid,o.cid=r,i=o}return r}var Vh=ee.bind({ignoreUndefined:!0}),jh={};async function*Nu(r,e,t={}){let n=Vh(jh,t),i=await Ve(r,n.path,e,n),o=await fe(i.cid,e,n);if(o.type!=="file"&&o.type!=="raw")throw new Jr;if(o.content==null)throw new It;yield*o.content({offset:n.offset,length:n.length})}var Hh=ee.bind({ignoreUndefined:!0}),Du=K("helia:unixfs:mkdir"),Gh={cidVersion:1,force:!1};async function Fu(r,e,t,n={}){let i=Hh(Gh,n);if(e.includes("/"))throw new Z("Path must not have slashes");if((await fe(r,t,n)).type!=="directory")throw new rt(`${r.toString()} was not a UnixFS directory`);Du("creating %s",e);let c={Data:new F({type:"directory",mode:i.mode,mtime:i.mtime}).marshal(),Links:[]},a=R(c),l=await Q.digest(a),u=N.create(i.cidVersion,W,l);await t.put(u,a);let[h,p]=await Promise.all([at(r,t,i),Xt(u,e,t,i)]);return Du("adding empty dir called %s to %c",e,r),(await Zt(h,p,t,{...i,allowOverwriting:i.force})).cid}var Wh=ee.bind({ignoreUndefined:!0}),qh=K("helia:unixfs:cp"),Yh={force:!1};async function Lu(r,e,t,n,i={}){let o=Wh(Yh,i);if(t.includes("/"))throw new Z("Name must not have slashes");let[s,c]=await Promise.all([at(e,n,o),Xt(r,t,n,o)]);return qh('Adding %c as "%s" to %c',r,t,e),(await Zt(s,c,n,{allowOverwriting:o.force,...o})).cid}var vt=K("helia:unixfs:utils:remove-link");async function Iu(r,e,t,n){if(r.node.Data==null)throw new ae("Parent node had no data");return F.unmarshal(r.node.Data).type==="hamt-sharded-directory"?(vt(`Removing ${e} from sharded directory`),await Kh(r,e,t,n)):(vt(`Removing link ${e} regular directory`),await Qh(r,e,t,n))}var Qh=async(r,e,t,n)=>{r.node.Links=r.node.Links.filter(c=>c.Name!==e);let i=R(r.node),o=await Q.digest(i),s=N.create(r.cid.version,W,o);return await t.put(s,i,n),vt(`Updated regular directory ${s}`),{node:r.node,cid:s}},Kh=async(r,e,t,n)=>{let{rootBucket:i,path:o}=await Bu(r,e,t,n);await i.del(e);let{node:s}=await Pu(r,t,o,e,n);return await Jt(r,t,s.Links,i,n)},Pu=async(r,e,t,n,i)=>{let o=t.pop();if(o==null)throw new Z("Could not find parent");let{bucket:s,prefix:c,node:a}=o;if(a==null)throw new Z("Could not find parent");let l=a.Links.find(p=>(p.Name??"").substring(0,2)===c);if(l==null)throw new Z(`No link found with prefix ${c} for file ${n}`);if(l.Name===`${c}${n}`){vt(`Removing existing link ${l.Name}`);let p=a.Links.filter(f=>f.Name!==l.Name);return await s.del(n),r.node=a,await Jt(r,e,p,s,i)}vt(`Descending into sub-shard ${l.Name} for ${c}${n}`);let u=await Pu(r,e,t,n,i),h={Hash:u.cid,Tsize:u.size,Name:c};if(u.node.Links.length===1){vt(`Removing subshard for ${c}`);let p=u.node.Links[0];h.Name=`${c}${(p.Name??"").substring(2)}`,h.Hash=p.Hash,h.Tsize=p.Tsize??0}return vt(`Updating shard ${c} with name ${h.Name}`),await Jh(r,h,c,e,s,i)},Jh=async(r,e,t,n,i,o)=>{let s=r.node.Links.filter(c=>c.Name!==t);return s.push(e),await Jt(r,n,s,i,o)};var Zh=ee.bind({ignoreUndefined:!0}),Xh=K("helia:unixfs:rm"),ed={};async function Ou(r,e,t,n={}){let i=Zh(ed,n);if(e.includes("/"))throw new Z("Name must not have slashes");let o=await at(r,t,i);return Xh("Removing %s from %c",e,r),(await Iu(o,e,t,i)).cid}var td=ee.bind({ignoreUndefined:!0}),rd=K("helia:unixfs:stat"),nd={};async function Uu(r,e,t={}){let n=td(nd,t),i=await Ve(r,t.path,e,n);rd("stat %c",i.cid);let o=await fe(i.cid,e,n);if(o.type!=="file"&&o.type!=="directory"&&o.type!=="raw")throw new Re;let s=0,c=0,a=0,l=0,u=0,h,p,f=o.type;if(o.type==="raw"&&(s=o.node.byteLength,c=o.node.byteLength,a=o.node.byteLength,l=o.node.byteLength,u=1),o.type==="directory"&&(s=0,c=o.unixfs.marshal().byteLength,a=0,l=c,u=1,h=o.unixfs.mode,p=o.unixfs.mtime),o.type==="file"){let d=await zu(i.cid,e,n);s=o.unixfs.fileSize(),c=(o.node.Data?.byteLength??0)+o.node.Links.reduce((m,E)=>m+(E.Tsize??0),0),a=d.localFileSize,l=d.localDagSize,u=d.blocks,h=o.unixfs.mode,p=o.unixfs.mtime}return{cid:i.cid,mode:h,mtime:p,fileSize:s,dagSize:c,localFileSize:a,localDagSize:l,blocks:u,type:f}}async function zu(r,e,t){let n={localFileSize:0,localDagSize:0,blocks:0};if(await e.has(r,t)){let i=await e.get(r,t);if(n.blocks++,n.localDagSize+=i.byteLength,r.code===de)n.localFileSize+=i.byteLength;else if(r.code===W){let o=H(i);if(o.Links.length>0)for(let s of o.Links){let c=await zu(s.Hash,e,t);n.localFileSize+=c.localFileSize,n.localDagSize+=c.localDagSize,n.blocks+=c.blocks}else{if(o.Data==null)throw new ae(`PBNode ${r.toString()} had no data`);let s=F.unmarshal(o.Data);if(s.data==null)throw new ae(`UnixFS node ${r.toString()} had no data`);n.localFileSize+=s.data.byteLength??0}}else throw new $e(`${r.toString()} was neither DAG_PB nor RAW`)}return n}var id=ee.bind({ignoreUndefined:!0}),od=K("helia:unixfs:touch"),sd={recursive:!1};async function Ru(r,e,t={}){let n=id(sd,t),i=await Ve(r,n.path,e,n),o=n.mtime??{secs:Date.now()/1e3,nsecs:0};if(od("touch %c %o",i.cid,o),n.recursive){let p=await Gt(async function*(){for await(let f of En(i.cid,e)){let d,m;if(f.type==="raw")d=new F({data:f.node}),m=[];else if(f.type==="file"||f.type==="directory")d=f.unixfs,m=f.node.Links;else throw new Re;d.mtime=o;let E={Data:d.marshal(),Links:m};yield{path:f.path,content:E}}},f=>yt(f,e,{...n,pin:!1,dagBuilder:async function*(d,m,E){for await(let g of d)yield async function(){let b=g.content,_=R(b),x=await Qt(_,m,E);if(b.Data==null)throw new ae(`${x} had no data`);let C=F.unmarshal(b.Data);return{cid:x,size:_.length,path:g.path,unixfs:C}}}}),async f=>await pe(f));if(p==null)throw new $e(`Could not chmod ${i.cid.toString()}`);return await er(p.cid,i,e,t)}let s=await e.get(i.cid),c,a=[];if(i.cid.code===de)c=new F({data:s});else{let p=H(s);if(a=p.Links,p.Data==null)throw new ae(`${i.cid.toString()} had no data`);c=F.unmarshal(p.Data)}c.mtime=o;let l=R({Data:c.marshal(),Links:a}),u=await Q.digest(l),h=N.create(i.cid.version,W,u);return await e.put(h,l),await er(h,i,e,t)}var ad=ee.bind({ignoreUndefined:!0}),cd=K("helia:unixfs:chmod"),ud={recursive:!1};async function $u(r,e,t,n={}){let i=ad(ud,n),o=await Ve(r,i.path,t,n);if(cd("chmod %c %d",o.cid,e),i.recursive){let p=await Gt(async function*(){for await(let f of En(o.cid,t)){let d,m=[];if(f.type==="raw")d=new F({type:"file",data:f.node});else if(f.type==="file"||f.type==="directory")d=f.unixfs,m=f.node.Links;else throw new Re;d.mode=e;let E={Data:d.marshal(),Links:m};yield{path:f.path,content:E}}},f=>yt(f,t,{...i,pin:!1,dagBuilder:async function*(d,m,E){for await(let g of d)yield async function(){let b=g.content,_=R(b),x=await Qt(_,m,E);if(b.Data==null)throw new ae(`${x} had no data`);let C=F.unmarshal(b.Data);return{cid:x,size:_.length,path:g.path,unixfs:C}}}}),async f=>await pe(f));if(p==null)throw new $e(`Could not chmod ${o.cid.toString()}`);return await er(p.cid,o,t,n)}let s=await t.get(o.cid),c,a=[];if(o.cid.code===de)c=new F({type:"file",data:s});else{let p=H(s);if(p.Data==null)throw new ae(`${o.cid.toString()} had no data`);a=p.Links,c=F.unmarshal(p.Data)}c.mode=e;let l=R({Data:c.marshal(),Links:a}),u=await Q.digest(l),h=N.create(o.cid.version,W,u);return await t.put(h,l),await er(h,o,t,n)}var fd=ee.bind({ignoreUndefined:!0}),ld={};async function*Mu(r,e,t={}){let n=fd(ld,t),i=await Ve(r,n.path,e,n),o=await fe(i.cid,e);if(o.type==="file"||o.type==="raw"){yield o;return}if(o.content==null)throw new It;if(o.type!=="directory")throw new rt;yield*o.content({offset:t.offset,length:t.length})}var ro=class{constructor(e){this.components=e}async add(e,t={}){return await Ra(e,this.components.blockstore,t)}async*addStream(e,t={}){yield*$a(e,this.components.blockstore,t)}async*cat(e,t={}){yield*Nu(e,this.components.blockstore,t)}async chmod(e,t,n={}){return await $u(e,t,this.components.blockstore,n)}async cp(e,t,n,i={}){return await Lu(e,t,n,this.components.blockstore,i)}async*ls(e,t={}){yield*Mu(e,this.components.blockstore,t)}async mkdir(e,t,n={}){return await Fu(e,t,this.components.blockstore,n)}async rm(e,t,n={}){return await Ou(e,t,this.components.blockstore,n)}async stat(e,t={}){return await Uu(e,this.components.blockstore,t)}async touch(e,t={}){return await Ru(e,this.components.blockstore,t)}};function hd(r){return new ro(r)}return qu(dd);})();
|
|
3
|
+
return HeliaUnixfs}));
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Blockstore } from 'interface-blockstore';
|
|
2
|
+
import { ImportCandidate, ImportResult, UserImporterOptions } from 'ipfs-unixfs-importer';
|
|
3
|
+
import type { CID } from 'multiformats/cid';
|
|
4
|
+
export declare function add(source: Uint8Array | Iterator<Uint8Array> | AsyncIterator<Uint8Array> | ImportCandidate, blockstore: Blockstore, options?: UserImporterOptions): Promise<CID>;
|
|
5
|
+
export declare function addStream(source: Iterable<ImportCandidate> | AsyncIterable<ImportCandidate>, blockstore: Blockstore, options?: UserImporterOptions): AsyncGenerator<ImportResult>;
|
|
6
|
+
//# sourceMappingURL=add.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.d.ts","sourceRoot":"","sources":["../../../src/commands/add.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAY,YAAY,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAEnG,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAA;AAW3C,wBAAsB,GAAG,CAAE,MAAM,EAAE,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,eAAe,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,GAAE,mBAAwB,GAAG,OAAO,CAAC,GAAG,CAAC,CAuB3L;AAED,wBAAwB,SAAS,CAAE,MAAM,EAAE,QAAQ,CAAC,eAAe,CAAC,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,GAAE,mBAAwB,GAAG,cAAc,CAAC,YAAY,CAAC,CAM9L"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { importer } from 'ipfs-unixfs-importer';
|
|
2
|
+
import last from 'it-last';
|
|
3
|
+
import { UnknownError } from './utils/errors.js';
|
|
4
|
+
function isIterable(obj) {
|
|
5
|
+
return obj[Symbol.iterator] != null;
|
|
6
|
+
}
|
|
7
|
+
function isAsyncIterable(obj) {
|
|
8
|
+
return obj[Symbol.asyncIterator] != null;
|
|
9
|
+
}
|
|
10
|
+
export async function add(source, blockstore, options = {}) {
|
|
11
|
+
let importCandidate;
|
|
12
|
+
if (source instanceof Uint8Array || isIterable(source) || isAsyncIterable(source)) {
|
|
13
|
+
importCandidate = {
|
|
14
|
+
// @ts-expect-error FIXME: work out types
|
|
15
|
+
content: source
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
importCandidate = source;
|
|
20
|
+
}
|
|
21
|
+
const result = await last(importer(importCandidate, blockstore, {
|
|
22
|
+
cidVersion: 1,
|
|
23
|
+
rawLeaves: true,
|
|
24
|
+
...options
|
|
25
|
+
}));
|
|
26
|
+
if (result == null) {
|
|
27
|
+
throw new UnknownError('Could not import');
|
|
28
|
+
}
|
|
29
|
+
return result.cid;
|
|
30
|
+
}
|
|
31
|
+
export async function* addStream(source, blockstore, options = {}) {
|
|
32
|
+
yield* importer(source, blockstore, {
|
|
33
|
+
cidVersion: 1,
|
|
34
|
+
rawLeaves: true,
|
|
35
|
+
...options
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=add.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.js","sourceRoot":"","sources":["../../../src/commands/add.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAqC,MAAM,sBAAsB,CAAA;AACnG,OAAO,IAAI,MAAM,SAAS,CAAA;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAEhD,SAAS,UAAU,CAAE,GAAQ;IAC3B,OAAO,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAA;AACrC,CAAC;AAED,SAAS,eAAe,CAAE,GAAQ;IAChC,OAAO,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,IAAI,CAAA;AAC1C,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,GAAG,CAAE,MAAuF,EAAE,UAAsB,EAAE,UAA+B,EAAE;IAC3K,IAAI,eAAgC,CAAA;IAEpC,IAAI,MAAM,YAAY,UAAU,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,EAAE;QACjF,eAAe,GAAG;YAChB,yCAAyC;YACzC,OAAO,EAAE,MAAM;SAChB,CAAA;KACF;SAAM;QACL,eAAe,GAAG,MAAM,CAAA;KACzB;IAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,eAAe,EAAE,UAAU,EAAE;QAC9D,UAAU,EAAE,CAAC;QACb,SAAS,EAAE,IAAI;QACf,GAAG,OAAO;KACX,CAAC,CAAC,CAAA;IAEH,IAAI,MAAM,IAAI,IAAI,EAAE;QAClB,MAAM,IAAI,YAAY,CAAC,kBAAkB,CAAC,CAAA;KAC3C;IAED,OAAO,MAAM,CAAC,GAAG,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,SAAU,CAAC,CAAC,SAAS,CAAE,MAAkE,EAAE,UAAsB,EAAE,UAA+B,EAAE;IAC9J,KAAM,CAAC,CAAC,QAAQ,CAAC,MAAM,EAAE,UAAU,EAAE;QACnC,UAAU,EAAE,CAAC;QACb,SAAS,EAAE,IAAI;QACf,GAAG,OAAO;KACX,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Blockstore } from 'ipfs-unixfs-exporter';
|
|
2
|
+
import type { CID } from 'multiformats/cid';
|
|
3
|
+
import type { CatOptions } from '../index.js';
|
|
4
|
+
export declare function cat(cid: CID, blockstore: Blockstore, options?: Partial<CatOptions>): AsyncIterable<Uint8Array>;
|
|
5
|
+
//# sourceMappingURL=cat.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cat.d.ts","sourceRoot":"","sources":["../../../src/commands/cat.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAY,MAAM,sBAAsB,CAAA;AAC3D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAA;AAC3C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAU7C,wBAAwB,GAAG,CAAE,GAAG,EAAE,GAAG,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,GAAE,OAAO,CAAC,UAAU,CAAM,GAAG,aAAa,CAAC,UAAU,CAAC,CAiB3H"}
|