@elizaos/plugin-elizacloud 1.5.18

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Shaw Walters and elizaOS Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,189 @@
1
+ # ElizaOS Cloud Services Plugin
2
+
3
+ This plugin provides integration with ElizaOS Cloud's multi-model AI platform, including text generation, image creation, video generation, and more.
4
+
5
+ ## Getting Started
6
+
7
+ ### 1. Get Your API Key
8
+
9
+ Visit [https://www.elizacloud.ai/dashboard/api-keys](https://www.elizacloud.ai/dashboard/api-keys) to create your API key. Your key will be in the format: `eliza_xxxxx`
10
+
11
+ ### 2. Add the Plugin
12
+
13
+ Add the plugin to your character configuration:
14
+
15
+ ```json
16
+ "plugins": ["@elizaos-plugins/plugin-elizacloud"]
17
+ ```
18
+
19
+ ## Configuration
20
+
21
+ The plugin requires these environment variables (can be set in .env file or character settings):
22
+
23
+ ```json
24
+ "settings": {
25
+ "ELIZAOS_CLOUD_API_KEY": "eliza_your_api_key_here",
26
+ "ELIZAOS_CLOUD_BASE_URL": "https://www.elizacloud.ai/api/v1",
27
+ "ELIZAOS_CLOUD_SMALL_MODEL": "gpt-4o-mini",
28
+ "ELIZAOS_CLOUD_LARGE_MODEL": "gpt-4o",
29
+ "ELIZAOS_CLOUD_EMBEDDING_MODEL": "text-embedding-3-small",
30
+ "ELIZAOS_CLOUD_EMBEDDING_API_KEY": "eliza_your_api_key_here",
31
+ "ELIZAOS_CLOUD_EMBEDDING_URL": "https://www.elizacloud.ai/api/v1",
32
+ "ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS": "1536",
33
+ "ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL": "gpt-4o-mini",
34
+ "ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS": "8192",
35
+ "ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY": "false",
36
+ "ELIZAOS_CLOUD_BROWSER_BASE_URL": "https://your-proxy.example.com/api",
37
+ "ELIZAOS_CLOUD_BROWSER_EMBEDDING_URL": "https://your-proxy.example.com/api"
38
+ }
39
+ ```
40
+
41
+ Or in `.env` file:
42
+
43
+ ```bash
44
+ # Required: Your ElizaOS Cloud API key (get it from https://www.elizacloud.ai/dashboard/api-keys)
45
+ ELIZAOS_CLOUD_API_KEY=eliza_your_api_key_here
46
+
47
+ # Optional overrides (defaults shown):
48
+ ELIZAOS_CLOUD_BASE_URL=https://www.elizacloud.ai/api/v1
49
+ ELIZAOS_CLOUD_SMALL_MODEL=gpt-4o-mini
50
+ ELIZAOS_CLOUD_LARGE_MODEL=gpt-4o
51
+ ELIZAOS_CLOUD_EMBEDDING_MODEL=text-embedding-3-small
52
+ ELIZAOS_CLOUD_EMBEDDING_API_KEY=eliza_your_api_key_here
53
+ ELIZAOS_CLOUD_EMBEDDING_URL=https://www.elizacloud.ai/api/v1
54
+ ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS=1536
55
+ ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL=gpt-4o-mini
56
+ ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS=8192
57
+ ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY=false
58
+
59
+ # Browser proxy (frontend builds only)
60
+ ELIZAOS_CLOUD_BROWSER_BASE_URL=https://your-proxy.example.com/api
61
+ ELIZAOS_CLOUD_BROWSER_EMBEDDING_URL=https://your-proxy.example.com/api
62
+ ```
63
+
64
+ ### Configuration Options
65
+
66
+ - `ELIZAOS_CLOUD_API_KEY` (required): Your ElizaOS Cloud API key (format: `eliza_xxxxx`)
67
+ - Get it from: [https://www.elizacloud.ai/dashboard/api-keys](https://www.elizacloud.ai/dashboard/api-keys)
68
+ - `ELIZAOS_CLOUD_BASE_URL`: ElizaOS Cloud API endpoint (default: `https://www.elizacloud.ai/api/v1`)
69
+ - `ELIZAOS_CLOUD_SMALL_MODEL`: Small/fast model for quick tasks (default: `gpt-4o-mini`)
70
+ - Available models: `gpt-4o-mini`, `gpt-4o`, `claude-3-5-sonnet`, `gemini-2.0-flash`
71
+ - `ELIZAOS_CLOUD_LARGE_MODEL`: Large/powerful model for complex tasks (default: `gpt-4o`)
72
+ - Available models: `gpt-4o-mini`, `gpt-4o`, `claude-3-5-sonnet`, `gemini-2.0-flash`
73
+ - `ELIZAOS_CLOUD_EMBEDDING_MODEL`: Model for text embeddings (default: `text-embedding-3-small`)
74
+ - `ELIZAOS_CLOUD_EMBEDDING_API_KEY`: Separate API key for embeddings (defaults to `ELIZAOS_CLOUD_API_KEY`)
75
+ - `ELIZAOS_CLOUD_EMBEDDING_URL`: Separate endpoint for embeddings (defaults to `ELIZAOS_CLOUD_BASE_URL`)
76
+ - `ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS`: Embedding vector dimensions (default: 1536)
77
+ - `ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL`: Model for image description (default: `gpt-4o-mini`)
78
+ - `ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS`: Max tokens for image descriptions (default: 8192)
79
+ - `ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY`: Enable telemetry for debugging and analytics (default: false)
80
+ - `ELIZAOS_CLOUD_BROWSER_BASE_URL`: Browser-only proxy endpoint (to avoid exposing keys in frontend)
81
+ - `ELIZAOS_CLOUD_BROWSER_EMBEDDING_URL`: Browser-only embeddings proxy endpoint
82
+
83
+ ### Browser mode and proxying
84
+
85
+ When bundled for the browser, this plugin avoids sending Authorization headers. Set `ELIZAOS_CLOUD_BROWSER_BASE_URL` (and optionally `ELIZAOS_CLOUD_BROWSER_EMBEDDING_URL`) to a server-side proxy you control that injects the ElizaOS Cloud API key. This prevents exposing secrets in frontend builds.
86
+
87
+ Example minimal proxy (Express):
88
+
89
+ ```ts
90
+ import express from 'express';
91
+ import fetch from 'node-fetch';
92
+
93
+ const app = express();
94
+ app.use(express.json());
95
+
96
+ app.post('/api/*', async (req, res) => {
97
+ const url = `https://www.elizacloud.ai/api/v1/${req.params[0]}`;
98
+ const r = await fetch(url, {
99
+ method: 'POST',
100
+ headers: {
101
+ 'Authorization': `Bearer ${process.env.ELIZAOS_CLOUD_API_KEY}`,
102
+ 'Content-Type': 'application/json',
103
+ },
104
+ body: JSON.stringify(req.body),
105
+ });
106
+ res.status(r.status).set(Object.fromEntries(r.headers)).send(await r.text());
107
+ });
108
+
109
+ app.listen(3000);
110
+ ```
111
+
112
+ ### Experimental Telemetry
113
+
114
+ When `ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY` is set to `true`, the plugin enables advanced telemetry features that provide:
115
+
116
+ - Enhanced debugging capabilities for model performance issues
117
+ - Detailed usage analytics for optimization
118
+ - Better observability into ElizaOS Cloud API interactions
119
+ - Foundation for future monitoring and analytics features through Sentry or other frameworks
120
+
121
+ **Note**: This feature is opt-in due to privacy considerations, as telemetry data may contain information about model usage patterns. Enable only when you need enhanced debugging or analytics capabilities.
122
+
123
+ ## Features
124
+
125
+ ElizaOS Cloud provides comprehensive AI capabilities through a unified API:
126
+
127
+ ### Supported Model Types
128
+
129
+ The plugin provides these model classes:
130
+
131
+ - `TEXT_SMALL`: Optimized for fast, cost-effective responses (default: gpt-4o-mini)
132
+ - `TEXT_LARGE`: For complex tasks requiring deeper reasoning (default: gpt-4o)
133
+ - `TEXT_EMBEDDING`: Text embedding model (text-embedding-3-small by default)
134
+ - `IMAGE`: Image generation via Google Gemini (costs 100 credits)
135
+ - `IMAGE_DESCRIPTION`: Image analysis and description (gpt-4o-mini by default)
136
+ - `TRANSCRIPTION`: Audio transcription
137
+ - `TEXT_TO_SPEECH`: Text-to-speech generation
138
+ - `TEXT_TOKENIZER_ENCODE`: Text tokenization
139
+ - `TEXT_TOKENIZER_DECODE`: Token decoding
140
+ - `OBJECT_SMALL`: Object/structured output generation (small model)
141
+ - `OBJECT_LARGE`: Object/structured output generation (large model)
142
+
143
+ ### Credit System
144
+
145
+ ElizaOS Cloud uses a credit-based pricing model:
146
+ - **Text Generation**: Token-based (varies by model)
147
+ - **Image Generation**: 100 credits per image
148
+ - **Video Generation**: 500 credits per video
149
+ - Purchase credits at: [https://www.elizacloud.ai/dashboard/billing](https://www.elizacloud.ai/dashboard/billing)
150
+
151
+ ## Additional Features
152
+
153
+ ### Image Generation
154
+
155
+ ```js
156
+ await runtime.useModel(ModelType.IMAGE, {
157
+ prompt: "A sunset over mountains",
158
+ n: 1, // number of images
159
+ size: "1024x1024", // image resolution
160
+ });
161
+ ```
162
+
163
+ ### Audio Transcription
164
+
165
+ ```js
166
+ const transcription = await runtime.useModel(
167
+ ModelType.TRANSCRIPTION,
168
+ audioBuffer
169
+ );
170
+ ```
171
+
172
+ ### Image Analysis
173
+
174
+ ```js
175
+ const { title, description } = await runtime.useModel(
176
+ ModelType.IMAGE_DESCRIPTION,
177
+ "https://example.com/image.jpg"
178
+ );
179
+ ```
180
+
181
+ ### Text Embeddings
182
+
183
+ ```js
184
+ await runtime.useModel(ModelType.TEXT_EMBEDDING, "text to embed");
185
+ ```
186
+
187
+ ### Tokenizer in browser
188
+
189
+ js-tiktoken is WASM and browser-safe; this plugin uses `encodingForModel` directly in both Node and browser builds.
@@ -0,0 +1,4 @@
1
+ var k6=Object.create;var{getPrototypeOf:S6,defineProperty:z2,getOwnPropertyNames:W1,getOwnPropertyDescriptor:y6}=Object,M1=Object.prototype.hasOwnProperty;var f6=(w,B,h)=>{h=w!=null?k6(S6(w)):{};let U=B||!w||!w.__esModule?z2(h,"default",{value:w,enumerable:!0}):h;for(let I of W1(w))if(!M1.call(U,I))z2(U,I,{get:()=>w[I],enumerable:!0});return U},C1=new WeakMap,_0=(w)=>{var B=C1.get(w),h;if(B)return B;if(B=z2({},"__esModule",{value:!0}),w&&typeof w==="object"||typeof w==="function")W1(w).map((U)=>!M1.call(B,U)&&z2(B,U,{get:()=>w[U],enumerable:!(h=y6(w,U))||h.enumerable}));return C1.set(w,B),B},c6=(w,B)=>()=>(B||w((B={exports:{}}).exports,B),B.exports);var E1=(w,B)=>{for(var h in B)z2(w,h,{get:B[h],enumerable:!0,configurable:!0,set:(U)=>B[h]=()=>U})};var V1=(w,B)=>()=>(w&&(B=w(w=0)),B);var b0={};E1(b0,{transcode:()=>L8,resolveObjectURL:()=>V8,kStringMaxLength:()=>c1,kMaxLength:()=>G2,isUtf8:()=>j8,isAscii:()=>A8,default:()=>O8,constants:()=>a6,btoa:()=>m6,atob:()=>n6,INSPECT_MAX_BYTES:()=>f1,File:()=>o6,Buffer:()=>_,Blob:()=>r6});function p6(w){var B=w.length;if(B%4>0)throw Error("Invalid string. Length must be a multiple of 4");var h=w.indexOf("=");if(h===-1)h=B;var U=h===B?0:4-h%4;return[h,U]}function b6(w,B){return(w+B)*3/4-B}function i6(w){var B,h=p6(w),U=h[0],I=h[1],X=new Uint8Array(b6(U,I)),Z=0,Y=I>0?U-4:U,H;for(H=0;H<Y;H+=4)B=k0[w.charCodeAt(H)]<<18|k0[w.charCodeAt(H+1)]<<12|k0[w.charCodeAt(H+2)]<<6|k0[w.charCodeAt(H+3)],X[Z++]=B>>16&255,X[Z++]=B>>8&255,X[Z++]=B&255;if(I===2)B=k0[w.charCodeAt(H)]<<2|k0[w.charCodeAt(H+1)]>>4,X[Z++]=B&255;if(I===1)B=k0[w.charCodeAt(H)]<<10|k0[w.charCodeAt(H+1)]<<4|k0[w.charCodeAt(H+2)]>>2,X[Z++]=B>>8&255,X[Z++]=B&255;return X}function d6(w){return f0[w>>18&63]+f0[w>>12&63]+f0[w>>6&63]+f0[w&63]}function l6(w,B,h){var U,I=[];for(var X=B;X<h;X+=3)U=(w[X]<<16&16711680)+(w[X+1]<<8&65280)+(w[X+2]&255),I.push(d6(U));return I.join("")}function T1(w){var B,h=w.length,U=h%3,I=[],X=16383;for(var Z=0,Y=h-U;Z<Y;Z+=X)I.push(l6(w,Z,Z+X>Y?Y:Z+X));if(U===1)B=w[h-1],I.push(f0[B>>2]+f0[B<<4&63]+"==");else if(U===2)B=(w[h-2]<<8)+w[h-1],I.push(f0[B>>10]+f0[B>>4&63]+f0[B<<2&63]+"=");return I.join("")}function O2(w,B,h,U,I){var X,Z,Y=I*8-U-1,H=(1<<Y)-1,K=H>>1,N=-7,G=h?I-1:0,O=h?-1:1,x=w[B+G];G+=O,X=x&(1<<-N)-1,x>>=-N,N+=Y;for(;N>0;X=X*256+w[B+G],G+=O,N-=8);Z=X&(1<<-N)-1,X>>=-N,N+=U;for(;N>0;Z=Z*256+w[B+G],G+=O,N-=8);if(X===0)X=1-K;else if(X===H)return Z?NaN:(x?-1:1)*(1/0);else Z=Z+Math.pow(2,U),X=X-K;return(x?-1:1)*Z*Math.pow(2,X-U)}function y1(w,B,h,U,I,X){var Z,Y,H,K=X*8-I-1,N=(1<<K)-1,G=N>>1,O=I===23?Math.pow(2,-24)-Math.pow(2,-77):0,x=U?0:X-1,l=U?1:-1,t=B<0||B===0&&1/B<0?1:0;if(B=Math.abs(B),isNaN(B)||B===1/0)Y=isNaN(B)?1:0,Z=N;else{if(Z=Math.floor(Math.log(B)/Math.LN2),B*(H=Math.pow(2,-Z))<1)Z--,H*=2;if(Z+G>=1)B+=O/H;else B+=O*Math.pow(2,1-G);if(B*H>=2)Z++,H/=2;if(Z+G>=N)Y=0,Z=N;else if(Z+G>=1)Y=(B*H-1)*Math.pow(2,I),Z=Z+G;else Y=B*Math.pow(2,G-1)*Math.pow(2,I),Z=0}for(;I>=8;w[h+x]=Y&255,x+=l,Y/=256,I-=8);Z=Z<<I|Y,K+=I;for(;K>0;w[h+x]=Z&255,x+=l,Z/=256,K-=8);w[h+x-l]|=t*128}function p0(w){if(w>G2)throw RangeError('The value "'+w+'" is invalid for option "size"');let B=new Uint8Array(w);return Object.setPrototypeOf(B,_.prototype),B}function m2(w,B,h){return class extends h{constructor(){super();Object.defineProperty(this,"message",{value:B.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${w}]`,this.stack,delete this.name}get code(){return w}set code(I){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:I,writable:!0})}toString(){return`${this.name} [${w}]: ${this.message}`}}}function _(w,B,h){if(typeof w==="number"){if(typeof B==="string")throw TypeError('The "string" argument must be of type string. Received type number');return n2(w)}return u1(w,B,h)}function u1(w,B,h){if(typeof w==="string")return B8(w,B);if(ArrayBuffer.isView(w))return h8(w);if(w==null)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w);if(c0(w,ArrayBuffer)||w&&c0(w.buffer,ArrayBuffer))return d2(w,B,h);if(typeof SharedArrayBuffer<"u"&&(c0(w,SharedArrayBuffer)||w&&c0(w.buffer,SharedArrayBuffer)))return d2(w,B,h);if(typeof w==="number")throw TypeError('The "value" argument must not be of type number. Received type number');let U=w.valueOf&&w.valueOf();if(U!=null&&U!==w)return _.from(U,B,h);let I=w8(w);if(I)return I;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof w[Symbol.toPrimitive]==="function")return _.from(w[Symbol.toPrimitive]("string"),B,h);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w)}function v1(w){if(typeof w!=="number")throw TypeError('"size" argument must be of type number');else if(w<0)throw RangeError('The value "'+w+'" is invalid for option "size"')}function e6(w,B,h){if(v1(w),w<=0)return p0(w);if(B!==void 0)return typeof h==="string"?p0(w).fill(B,h):p0(w).fill(B);return p0(w)}function n2(w){return v1(w),p0(w<0?0:o2(w)|0)}function B8(w,B){if(typeof B!=="string"||B==="")B="utf8";if(!_.isEncoding(B))throw TypeError("Unknown encoding: "+B);let h=g1(w,B)|0,U=p0(h),I=U.write(w,B);if(I!==h)U=U.slice(0,I);return U}function i2(w){let B=w.length<0?0:o2(w.length)|0,h=p0(B);for(let U=0;U<B;U+=1)h[U]=w[U]&255;return h}function h8(w){if(c0(w,Uint8Array)){let B=new Uint8Array(w);return d2(B.buffer,B.byteOffset,B.byteLength)}return i2(w)}function d2(w,B,h){if(B<0||w.byteLength<B)throw RangeError('"offset" is outside of buffer bounds');if(w.byteLength<B+(h||0))throw RangeError('"length" is outside of buffer bounds');let U;if(B===void 0&&h===void 0)U=new Uint8Array(w);else if(h===void 0)U=new Uint8Array(w,B);else U=new Uint8Array(w,B,h);return Object.setPrototypeOf(U,_.prototype),U}function w8(w){if(_.isBuffer(w)){let B=o2(w.length)|0,h=p0(B);if(h.length===0)return h;return w.copy(h,0,0,B),h}if(w.length!==void 0){if(typeof w.length!=="number"||Number.isNaN(w.length))return p0(0);return i2(w)}if(w.type==="Buffer"&&Array.isArray(w.data))return i2(w.data)}function o2(w){if(w>=G2)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+G2.toString(16)+" bytes");return w|0}function g1(w,B){if(_.isBuffer(w))return w.length;if(ArrayBuffer.isView(w)||c0(w,ArrayBuffer))return w.byteLength;if(typeof w!=="string")throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof w);let h=w.length,U=arguments.length>2&&arguments[2]===!0;if(!U&&h===0)return 0;let I=!1;for(;;)switch(B){case"ascii":case"latin1":case"binary":return h;case"utf8":case"utf-8":return l2(w).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return h*2;case"hex":return h>>>1;case"base64":return r1(w).length;default:if(I)return U?-1:l2(w).length;B=(""+B).toLowerCase(),I=!0}}function U8(w,B,h){let U=!1;if(B===void 0||B<0)B=0;if(B>this.length)return"";if(h===void 0||h>this.length)h=this.length;if(h<=0)return"";if(h>>>=0,B>>>=0,h<=B)return"";if(!w)w="utf8";while(!0)switch(w){case"hex":return H8(this,B,h);case"utf8":case"utf-8":return b1(this,B,h);case"ascii":return Y8(this,B,h);case"latin1":case"binary":return q8(this,B,h);case"base64":return J8(this,B,h);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return z8(this,B,h);default:if(U)throw TypeError("Unknown encoding: "+w);w=(w+"").toLowerCase(),U=!0}}function w2(w,B,h){let U=w[B];w[B]=w[h],w[h]=U}function p1(w,B,h,U,I){if(w.length===0)return-1;if(typeof h==="string")U=h,h=0;else if(h>2147483647)h=2147483647;else if(h<-2147483648)h=-2147483648;if(h=+h,Number.isNaN(h))h=I?0:w.length-1;if(h<0)h=w.length+h;if(h>=w.length)if(I)return-1;else h=w.length-1;else if(h<0)if(I)h=0;else return-1;if(typeof B==="string")B=_.from(B,U);if(_.isBuffer(B)){if(B.length===0)return-1;return R1(w,B,h,U,I)}else if(typeof B==="number"){if(B=B&255,typeof Uint8Array.prototype.indexOf==="function")if(I)return Uint8Array.prototype.indexOf.call(w,B,h);else return Uint8Array.prototype.lastIndexOf.call(w,B,h);return R1(w,[B],h,U,I)}throw TypeError("val must be string, number or Buffer")}function R1(w,B,h,U,I){let X=1,Z=w.length,Y=B.length;if(U!==void 0){if(U=String(U).toLowerCase(),U==="ucs2"||U==="ucs-2"||U==="utf16le"||U==="utf-16le"){if(w.length<2||B.length<2)return-1;X=2,Z/=2,Y/=2,h/=2}}function H(N,G){if(X===1)return N[G];else return N.readUInt16BE(G*X)}let K;if(I){let N=-1;for(K=h;K<Z;K++)if(H(w,K)===H(B,N===-1?0:K-N)){if(N===-1)N=K;if(K-N+1===Y)return N*X}else{if(N!==-1)K-=K-N;N=-1}}else{if(h+Y>Z)h=Z-Y;for(K=h;K>=0;K--){let N=!0;for(let G=0;G<Y;G++)if(H(w,K+G)!==H(B,G)){N=!1;break}if(N)return K}}return-1}function I8(w,B,h,U){h=Number(h)||0;let I=w.length-h;if(!U)U=I;else if(U=Number(U),U>I)U=I;let X=B.length;if(U>X/2)U=X/2;let Z;for(Z=0;Z<U;++Z){let Y=parseInt(B.substr(Z*2,2),16);if(Number.isNaN(Y))return Z;w[h+Z]=Y}return Z}function X8(w,B,h,U){return x2(l2(B,w.length-h),w,h,U)}function Z8(w,B,h,U){return x2(C8(B),w,h,U)}function Q8(w,B,h,U){return x2(r1(B),w,h,U)}function F8(w,B,h,U){return x2(W8(B,w.length-h),w,h,U)}function J8(w,B,h){if(B===0&&h===w.length)return T1(w);else return T1(w.slice(B,h))}function b1(w,B,h){h=Math.min(w.length,h);let U=[],I=B;while(I<h){let X=w[I],Z=null,Y=X>239?4:X>223?3:X>191?2:1;if(I+Y<=h){let H,K,N,G;switch(Y){case 1:if(X<128)Z=X;break;case 2:if(H=w[I+1],(H&192)===128){if(G=(X&31)<<6|H&63,G>127)Z=G}break;case 3:if(H=w[I+1],K=w[I+2],(H&192)===128&&(K&192)===128){if(G=(X&15)<<12|(H&63)<<6|K&63,G>2047&&(G<55296||G>57343))Z=G}break;case 4:if(H=w[I+1],K=w[I+2],N=w[I+3],(H&192)===128&&(K&192)===128&&(N&192)===128){if(G=(X&15)<<18|(H&63)<<12|(K&63)<<6|N&63,G>65535&&G<1114112)Z=G}}}if(Z===null)Z=65533,Y=1;else if(Z>65535)Z-=65536,U.push(Z>>>10&1023|55296),Z=56320|Z&1023;U.push(Z),I+=Y}return K8(U)}function K8(w){let B=w.length;if(B<=k1)return String.fromCharCode.apply(String,w);let h="",U=0;while(U<B)h+=String.fromCharCode.apply(String,w.slice(U,U+=k1));return h}function Y8(w,B,h){let U="";h=Math.min(w.length,h);for(let I=B;I<h;++I)U+=String.fromCharCode(w[I]&127);return U}function q8(w,B,h){let U="";h=Math.min(w.length,h);for(let I=B;I<h;++I)U+=String.fromCharCode(w[I]);return U}function H8(w,B,h){let U=w.length;if(!B||B<0)B=0;if(!h||h<0||h>U)h=U;let I="";for(let X=B;X<h;++X)I+=M8[w[X]];return I}function z8(w,B,h){let U=w.slice(B,h),I="";for(let X=0;X<U.length-1;X+=2)I+=String.fromCharCode(U[X]+U[X+1]*256);return I}function E0(w,B,h){if(w%1!==0||w<0)throw RangeError("offset is not uint");if(w+B>h)throw RangeError("Trying to access beyond buffer length")}function x0(w,B,h,U,I,X){if(!_.isBuffer(w))throw TypeError('"buffer" argument must be a Buffer instance');if(B>I||B<X)throw RangeError('"value" argument is out of bounds');if(h+U>w.length)throw RangeError("Index out of range")}function i1(w,B,h,U,I){o1(B,U,I,w,h,7);let X=Number(B&BigInt(4294967295));w[h++]=X,X=X>>8,w[h++]=X,X=X>>8,w[h++]=X,X=X>>8,w[h++]=X;let Z=Number(B>>BigInt(32)&BigInt(4294967295));return w[h++]=Z,Z=Z>>8,w[h++]=Z,Z=Z>>8,w[h++]=Z,Z=Z>>8,w[h++]=Z,h}function d1(w,B,h,U,I){o1(B,U,I,w,h,7);let X=Number(B&BigInt(4294967295));w[h+7]=X,X=X>>8,w[h+6]=X,X=X>>8,w[h+5]=X,X=X>>8,w[h+4]=X;let Z=Number(B>>BigInt(32)&BigInt(4294967295));return w[h+3]=Z,Z=Z>>8,w[h+2]=Z,Z=Z>>8,w[h+1]=Z,Z=Z>>8,w[h]=Z,h+8}function l1(w,B,h,U,I,X){if(h+U>w.length)throw RangeError("Index out of range");if(h<0)throw RangeError("Index out of range")}function m1(w,B,h,U,I){if(B=+B,h=h>>>0,!I)l1(w,B,h,4,340282346638528860000000000000000000000,-340282346638528860000000000000000000000);return y1(w,B,h,U,23,4),h+4}function n1(w,B,h,U,I){if(B=+B,h=h>>>0,!I)l1(w,B,h,8,179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,-179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000);return y1(w,B,h,U,52,8),h+8}function S1(w){let B="",h=w.length,U=w[0]==="-"?1:0;for(;h>=U+4;h-=3)B=`_${w.slice(h-3,h)}${B}`;return`${w.slice(0,h)}${B}`}function $8(w,B,h){if(K2(B,"offset"),w[B]===void 0||w[B+h]===void 0)N2(B,w.length-(h+1))}function o1(w,B,h,U,I,X){if(w>h||w<B){let Z=typeof B==="bigint"?"n":"",Y;if(X>3)if(B===0||B===BigInt(0))Y=`>= 0${Z} and < 2${Z} ** ${(X+1)*8}${Z}`;else Y=`>= -(2${Z} ** ${(X+1)*8-1}${Z}) and < 2 ** ${(X+1)*8-1}${Z}`;else Y=`>= ${B}${Z} and <= ${h}${Z}`;throw new b2("value",Y,w)}$8(U,I,X)}function K2(w,B){if(typeof w!=="number")throw new t6(B,"number",w)}function N2(w,B,h){if(Math.floor(w)!==w)throw K2(w,h),new b2(h||"offset","an integer",w);if(B<0)throw new s6;throw new b2(h||"offset",`>= ${h?1:0} and <= ${B}`,w)}function N8(w){if(w=w.split("=")[0],w=w.trim().replace(G8,""),w.length<2)return"";while(w.length%4!==0)w=w+"=";return w}function l2(w,B){B=B||1/0;let h,U=w.length,I=null,X=[];for(let Z=0;Z<U;++Z){if(h=w.charCodeAt(Z),h>55295&&h<57344){if(!I){if(h>56319){if((B-=3)>-1)X.push(239,191,189);continue}else if(Z+1===U){if((B-=3)>-1)X.push(239,191,189);continue}I=h;continue}if(h<56320){if((B-=3)>-1)X.push(239,191,189);I=h;continue}h=(I-55296<<10|h-56320)+65536}else if(I){if((B-=3)>-1)X.push(239,191,189)}if(I=null,h<128){if((B-=1)<0)break;X.push(h)}else if(h<2048){if((B-=2)<0)break;X.push(h>>6|192,h&63|128)}else if(h<65536){if((B-=3)<0)break;X.push(h>>12|224,h>>6&63|128,h&63|128)}else if(h<1114112){if((B-=4)<0)break;X.push(h>>18|240,h>>12&63|128,h>>6&63|128,h&63|128)}else throw Error("Invalid code point")}return X}function C8(w){let B=[];for(let h=0;h<w.length;++h)B.push(w.charCodeAt(h)&255);return B}function W8(w,B){let h,U,I,X=[];for(let Z=0;Z<w.length;++Z){if((B-=2)<0)break;h=w.charCodeAt(Z),U=h>>8,I=h%256,X.push(I),X.push(U)}return X}function r1(w){return i6(N8(w))}function x2(w,B,h,U){let I;for(I=0;I<U;++I){if(I+h>=B.length||I>=w.length)break;B[I+h]=w[I]}return I}function c0(w,B){return w instanceof B||w!=null&&w.constructor!=null&&w.constructor.name!=null&&w.constructor.name===B.name}function o0(w){return typeof BigInt>"u"?E8:w}function E8(){throw Error("BigInt not supported")}function r2(w){return()=>{throw Error(w+" is not implemented for node:buffer browser polyfill")}}var f0,k0,p2="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h2,P1,_1,f1=50,G2=2147483647,c1=536870888,m6,n6,o6,r6,a6,s6,t6,b2,k1=4096,G8,M8,V8,j8,A8=(w)=>{for(let B of w)if(B.charCodeAt(0)>127)return!1;return!0},L8,O8;var i0=V1(()=>{f0=[],k0=[];for(h2=0,P1=p2.length;h2<P1;++h2)f0[h2]=p2[h2],k0[p2.charCodeAt(h2)]=h2;k0[45]=62;k0[95]=63;_1=typeof Symbol==="function"&&typeof Symbol.for==="function"?Symbol.for("nodejs.util.inspect.custom"):null,m6=globalThis.btoa,n6=globalThis.atob,o6=globalThis.File,r6=globalThis.Blob,a6={MAX_LENGTH:G2,MAX_STRING_LENGTH:c1};s6=m2("ERR_BUFFER_OUT_OF_BOUNDS",function(w){if(w)return`${w} is outside of buffer bounds`;return"Attempt to access memory outside buffer bounds"},RangeError),t6=m2("ERR_INVALID_ARG_TYPE",function(w,B){return`The "${w}" argument must be of type number. Received type ${typeof B}`},TypeError),b2=m2("ERR_OUT_OF_RANGE",function(w,B,h){let U=`The value of "${w}" is out of range.`,I=h;if(Number.isInteger(h)&&Math.abs(h)>4294967296)I=S1(String(h));else if(typeof h==="bigint"){if(I=String(h),h>BigInt(2)**BigInt(32)||h<-(BigInt(2)**BigInt(32)))I=S1(I);I+="n"}return U+=` It must be ${B}. Received ${I}`,U},RangeError);Object.defineProperty(_.prototype,"parent",{enumerable:!0,get:function(){if(!_.isBuffer(this))return;return this.buffer}});Object.defineProperty(_.prototype,"offset",{enumerable:!0,get:function(){if(!_.isBuffer(this))return;return this.byteOffset}});_.poolSize=8192;_.from=function(w,B,h){return u1(w,B,h)};Object.setPrototypeOf(_.prototype,Uint8Array.prototype);Object.setPrototypeOf(_,Uint8Array);_.alloc=function(w,B,h){return e6(w,B,h)};_.allocUnsafe=function(w){return n2(w)};_.allocUnsafeSlow=function(w){return n2(w)};_.isBuffer=function(B){return B!=null&&B._isBuffer===!0&&B!==_.prototype};_.compare=function(B,h){if(c0(B,Uint8Array))B=_.from(B,B.offset,B.byteLength);if(c0(h,Uint8Array))h=_.from(h,h.offset,h.byteLength);if(!_.isBuffer(B)||!_.isBuffer(h))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(B===h)return 0;let U=B.length,I=h.length;for(let X=0,Z=Math.min(U,I);X<Z;++X)if(B[X]!==h[X]){U=B[X],I=h[X];break}if(U<I)return-1;if(I<U)return 1;return 0};_.isEncoding=function(B){switch(String(B).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}};_.concat=function(B,h){if(!Array.isArray(B))throw TypeError('"list" argument must be an Array of Buffers');if(B.length===0)return _.alloc(0);let U;if(h===void 0){h=0;for(U=0;U<B.length;++U)h+=B[U].length}let I=_.allocUnsafe(h),X=0;for(U=0;U<B.length;++U){let Z=B[U];if(c0(Z,Uint8Array))if(X+Z.length>I.length){if(!_.isBuffer(Z))Z=_.from(Z);Z.copy(I,X)}else Uint8Array.prototype.set.call(I,Z,X);else if(!_.isBuffer(Z))throw TypeError('"list" argument must be an Array of Buffers');else Z.copy(I,X);X+=Z.length}return I};_.byteLength=g1;_.prototype._isBuffer=!0;_.prototype.swap16=function(){let B=this.length;if(B%2!==0)throw RangeError("Buffer size must be a multiple of 16-bits");for(let h=0;h<B;h+=2)w2(this,h,h+1);return this};_.prototype.swap32=function(){let B=this.length;if(B%4!==0)throw RangeError("Buffer size must be a multiple of 32-bits");for(let h=0;h<B;h+=4)w2(this,h,h+3),w2(this,h+1,h+2);return this};_.prototype.swap64=function(){let B=this.length;if(B%8!==0)throw RangeError("Buffer size must be a multiple of 64-bits");for(let h=0;h<B;h+=8)w2(this,h,h+7),w2(this,h+1,h+6),w2(this,h+2,h+5),w2(this,h+3,h+4);return this};_.prototype.toString=function(){let B=this.length;if(B===0)return"";if(arguments.length===0)return b1(this,0,B);return U8.apply(this,arguments)};_.prototype.toLocaleString=_.prototype.toString;_.prototype.equals=function(B){if(!_.isBuffer(B))throw TypeError("Argument must be a Buffer");if(this===B)return!0;return _.compare(this,B)===0};_.prototype.inspect=function(){let B="",h=f1;if(B=this.toString("hex",0,h).replace(/(.{2})/g,"$1 ").trim(),this.length>h)B+=" ... ";return"<Buffer "+B+">"};if(_1)_.prototype[_1]=_.prototype.inspect;_.prototype.compare=function(B,h,U,I,X){if(c0(B,Uint8Array))B=_.from(B,B.offset,B.byteLength);if(!_.isBuffer(B))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof B);if(h===void 0)h=0;if(U===void 0)U=B?B.length:0;if(I===void 0)I=0;if(X===void 0)X=this.length;if(h<0||U>B.length||I<0||X>this.length)throw RangeError("out of range index");if(I>=X&&h>=U)return 0;if(I>=X)return-1;if(h>=U)return 1;if(h>>>=0,U>>>=0,I>>>=0,X>>>=0,this===B)return 0;let Z=X-I,Y=U-h,H=Math.min(Z,Y),K=this.slice(I,X),N=B.slice(h,U);for(let G=0;G<H;++G)if(K[G]!==N[G]){Z=K[G],Y=N[G];break}if(Z<Y)return-1;if(Y<Z)return 1;return 0};_.prototype.includes=function(B,h,U){return this.indexOf(B,h,U)!==-1};_.prototype.indexOf=function(B,h,U){return p1(this,B,h,U,!0)};_.prototype.lastIndexOf=function(B,h,U){return p1(this,B,h,U,!1)};_.prototype.write=function(B,h,U,I){if(h===void 0)I="utf8",U=this.length,h=0;else if(U===void 0&&typeof h==="string")I=h,U=this.length,h=0;else if(isFinite(h))if(h=h>>>0,isFinite(U)){if(U=U>>>0,I===void 0)I="utf8"}else I=U,U=void 0;else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let X=this.length-h;if(U===void 0||U>X)U=X;if(B.length>0&&(U<0||h<0)||h>this.length)throw RangeError("Attempt to write outside buffer bounds");if(!I)I="utf8";let Z=!1;for(;;)switch(I){case"hex":return I8(this,B,h,U);case"utf8":case"utf-8":return X8(this,B,h,U);case"ascii":case"latin1":case"binary":return Z8(this,B,h,U);case"base64":return Q8(this,B,h,U);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F8(this,B,h,U);default:if(Z)throw TypeError("Unknown encoding: "+I);I=(""+I).toLowerCase(),Z=!0}};_.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};_.prototype.slice=function(B,h){let U=this.length;if(B=~~B,h=h===void 0?U:~~h,B<0){if(B+=U,B<0)B=0}else if(B>U)B=U;if(h<0){if(h+=U,h<0)h=0}else if(h>U)h=U;if(h<B)h=B;let I=this.subarray(B,h);return Object.setPrototypeOf(I,_.prototype),I};_.prototype.readUintLE=_.prototype.readUIntLE=function(B,h,U){if(B=B>>>0,h=h>>>0,!U)E0(B,h,this.length);let I=this[B],X=1,Z=0;while(++Z<h&&(X*=256))I+=this[B+Z]*X;return I};_.prototype.readUintBE=_.prototype.readUIntBE=function(B,h,U){if(B=B>>>0,h=h>>>0,!U)E0(B,h,this.length);let I=this[B+--h],X=1;while(h>0&&(X*=256))I+=this[B+--h]*X;return I};_.prototype.readUint8=_.prototype.readUInt8=function(B,h){if(B=B>>>0,!h)E0(B,1,this.length);return this[B]};_.prototype.readUint16LE=_.prototype.readUInt16LE=function(B,h){if(B=B>>>0,!h)E0(B,2,this.length);return this[B]|this[B+1]<<8};_.prototype.readUint16BE=_.prototype.readUInt16BE=function(B,h){if(B=B>>>0,!h)E0(B,2,this.length);return this[B]<<8|this[B+1]};_.prototype.readUint32LE=_.prototype.readUInt32LE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return(this[B]|this[B+1]<<8|this[B+2]<<16)+this[B+3]*16777216};_.prototype.readUint32BE=_.prototype.readUInt32BE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return this[B]*16777216+(this[B+1]<<16|this[B+2]<<8|this[B+3])};_.prototype.readBigUInt64LE=o0(function(B){B=B>>>0,K2(B,"offset");let h=this[B],U=this[B+7];if(h===void 0||U===void 0)N2(B,this.length-8);let I=h+this[++B]*256+this[++B]*65536+this[++B]*16777216,X=this[++B]+this[++B]*256+this[++B]*65536+U*16777216;return BigInt(I)+(BigInt(X)<<BigInt(32))});_.prototype.readBigUInt64BE=o0(function(B){B=B>>>0,K2(B,"offset");let h=this[B],U=this[B+7];if(h===void 0||U===void 0)N2(B,this.length-8);let I=h*16777216+this[++B]*65536+this[++B]*256+this[++B],X=this[++B]*16777216+this[++B]*65536+this[++B]*256+U;return(BigInt(I)<<BigInt(32))+BigInt(X)});_.prototype.readIntLE=function(B,h,U){if(B=B>>>0,h=h>>>0,!U)E0(B,h,this.length);let I=this[B],X=1,Z=0;while(++Z<h&&(X*=256))I+=this[B+Z]*X;if(X*=128,I>=X)I-=Math.pow(2,8*h);return I};_.prototype.readIntBE=function(B,h,U){if(B=B>>>0,h=h>>>0,!U)E0(B,h,this.length);let I=h,X=1,Z=this[B+--I];while(I>0&&(X*=256))Z+=this[B+--I]*X;if(X*=128,Z>=X)Z-=Math.pow(2,8*h);return Z};_.prototype.readInt8=function(B,h){if(B=B>>>0,!h)E0(B,1,this.length);if(!(this[B]&128))return this[B];return(255-this[B]+1)*-1};_.prototype.readInt16LE=function(B,h){if(B=B>>>0,!h)E0(B,2,this.length);let U=this[B]|this[B+1]<<8;return U&32768?U|4294901760:U};_.prototype.readInt16BE=function(B,h){if(B=B>>>0,!h)E0(B,2,this.length);let U=this[B+1]|this[B]<<8;return U&32768?U|4294901760:U};_.prototype.readInt32LE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return this[B]|this[B+1]<<8|this[B+2]<<16|this[B+3]<<24};_.prototype.readInt32BE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return this[B]<<24|this[B+1]<<16|this[B+2]<<8|this[B+3]};_.prototype.readBigInt64LE=o0(function(B){B=B>>>0,K2(B,"offset");let h=this[B],U=this[B+7];if(h===void 0||U===void 0)N2(B,this.length-8);let I=this[B+4]+this[B+5]*256+this[B+6]*65536+(U<<24);return(BigInt(I)<<BigInt(32))+BigInt(h+this[++B]*256+this[++B]*65536+this[++B]*16777216)});_.prototype.readBigInt64BE=o0(function(B){B=B>>>0,K2(B,"offset");let h=this[B],U=this[B+7];if(h===void 0||U===void 0)N2(B,this.length-8);let I=(h<<24)+this[++B]*65536+this[++B]*256+this[++B];return(BigInt(I)<<BigInt(32))+BigInt(this[++B]*16777216+this[++B]*65536+this[++B]*256+U)});_.prototype.readFloatLE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return O2(this,B,!0,23,4)};_.prototype.readFloatBE=function(B,h){if(B=B>>>0,!h)E0(B,4,this.length);return O2(this,B,!1,23,4)};_.prototype.readDoubleLE=function(B,h){if(B=B>>>0,!h)E0(B,8,this.length);return O2(this,B,!0,52,8)};_.prototype.readDoubleBE=function(B,h){if(B=B>>>0,!h)E0(B,8,this.length);return O2(this,B,!1,52,8)};_.prototype.writeUintLE=_.prototype.writeUIntLE=function(B,h,U,I){if(B=+B,h=h>>>0,U=U>>>0,!I){let Y=Math.pow(2,8*U)-1;x0(this,B,h,U,Y,0)}let X=1,Z=0;this[h]=B&255;while(++Z<U&&(X*=256))this[h+Z]=B/X&255;return h+U};_.prototype.writeUintBE=_.prototype.writeUIntBE=function(B,h,U,I){if(B=+B,h=h>>>0,U=U>>>0,!I){let Y=Math.pow(2,8*U)-1;x0(this,B,h,U,Y,0)}let X=U-1,Z=1;this[h+X]=B&255;while(--X>=0&&(Z*=256))this[h+X]=B/Z&255;return h+U};_.prototype.writeUint8=_.prototype.writeUInt8=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,1,255,0);return this[h]=B&255,h+1};_.prototype.writeUint16LE=_.prototype.writeUInt16LE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,2,65535,0);return this[h]=B&255,this[h+1]=B>>>8,h+2};_.prototype.writeUint16BE=_.prototype.writeUInt16BE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,2,65535,0);return this[h]=B>>>8,this[h+1]=B&255,h+2};_.prototype.writeUint32LE=_.prototype.writeUInt32LE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,4,4294967295,0);return this[h+3]=B>>>24,this[h+2]=B>>>16,this[h+1]=B>>>8,this[h]=B&255,h+4};_.prototype.writeUint32BE=_.prototype.writeUInt32BE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,4,4294967295,0);return this[h]=B>>>24,this[h+1]=B>>>16,this[h+2]=B>>>8,this[h+3]=B&255,h+4};_.prototype.writeBigUInt64LE=o0(function(B,h=0){return i1(this,B,h,BigInt(0),BigInt("0xffffffffffffffff"))});_.prototype.writeBigUInt64BE=o0(function(B,h=0){return d1(this,B,h,BigInt(0),BigInt("0xffffffffffffffff"))});_.prototype.writeIntLE=function(B,h,U,I){if(B=+B,h=h>>>0,!I){let H=Math.pow(2,8*U-1);x0(this,B,h,U,H-1,-H)}let X=0,Z=1,Y=0;this[h]=B&255;while(++X<U&&(Z*=256)){if(B<0&&Y===0&&this[h+X-1]!==0)Y=1;this[h+X]=(B/Z>>0)-Y&255}return h+U};_.prototype.writeIntBE=function(B,h,U,I){if(B=+B,h=h>>>0,!I){let H=Math.pow(2,8*U-1);x0(this,B,h,U,H-1,-H)}let X=U-1,Z=1,Y=0;this[h+X]=B&255;while(--X>=0&&(Z*=256)){if(B<0&&Y===0&&this[h+X+1]!==0)Y=1;this[h+X]=(B/Z>>0)-Y&255}return h+U};_.prototype.writeInt8=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,1,127,-128);if(B<0)B=255+B+1;return this[h]=B&255,h+1};_.prototype.writeInt16LE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,2,32767,-32768);return this[h]=B&255,this[h+1]=B>>>8,h+2};_.prototype.writeInt16BE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,2,32767,-32768);return this[h]=B>>>8,this[h+1]=B&255,h+2};_.prototype.writeInt32LE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,4,2147483647,-2147483648);return this[h]=B&255,this[h+1]=B>>>8,this[h+2]=B>>>16,this[h+3]=B>>>24,h+4};_.prototype.writeInt32BE=function(B,h,U){if(B=+B,h=h>>>0,!U)x0(this,B,h,4,2147483647,-2147483648);if(B<0)B=4294967295+B+1;return this[h]=B>>>24,this[h+1]=B>>>16,this[h+2]=B>>>8,this[h+3]=B&255,h+4};_.prototype.writeBigInt64LE=o0(function(B,h=0){return i1(this,B,h,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});_.prototype.writeBigInt64BE=o0(function(B,h=0){return d1(this,B,h,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});_.prototype.writeFloatLE=function(B,h,U){return m1(this,B,h,!0,U)};_.prototype.writeFloatBE=function(B,h,U){return m1(this,B,h,!1,U)};_.prototype.writeDoubleLE=function(B,h,U){return n1(this,B,h,!0,U)};_.prototype.writeDoubleBE=function(B,h,U){return n1(this,B,h,!1,U)};_.prototype.copy=function(B,h,U,I){if(!_.isBuffer(B))throw TypeError("argument should be a Buffer");if(!U)U=0;if(!I&&I!==0)I=this.length;if(h>=B.length)h=B.length;if(!h)h=0;if(I>0&&I<U)I=U;if(I===U)return 0;if(B.length===0||this.length===0)return 0;if(h<0)throw RangeError("targetStart out of bounds");if(U<0||U>=this.length)throw RangeError("Index out of range");if(I<0)throw RangeError("sourceEnd out of bounds");if(I>this.length)I=this.length;if(B.length-h<I-U)I=B.length-h+U;let X=I-U;if(this===B&&typeof Uint8Array.prototype.copyWithin==="function")this.copyWithin(h,U,I);else Uint8Array.prototype.set.call(B,this.subarray(U,I),h);return X};_.prototype.fill=function(B,h,U,I){if(typeof B==="string"){if(typeof h==="string")I=h,h=0,U=this.length;else if(typeof U==="string")I=U,U=this.length;if(I!==void 0&&typeof I!=="string")throw TypeError("encoding must be a string");if(typeof I==="string"&&!_.isEncoding(I))throw TypeError("Unknown encoding: "+I);if(B.length===1){let Z=B.charCodeAt(0);if(I==="utf8"&&Z<128||I==="latin1")B=Z}}else if(typeof B==="number")B=B&255;else if(typeof B==="boolean")B=Number(B);if(h<0||this.length<h||this.length<U)throw RangeError("Out of range index");if(U<=h)return this;if(h=h>>>0,U=U===void 0?this.length:U>>>0,!B)B=0;let X;if(typeof B==="number")for(X=h;X<U;++X)this[X]=B;else{let Z=_.isBuffer(B)?B:_.from(B,I),Y=Z.length;if(Y===0)throw TypeError('The value "'+B+'" is invalid for argument "value"');for(X=0;X<U-h;++X)this[X+h]=Z[X%Y]}return this};G8=/[^+/0-9A-Za-z-_]/g;M8=function(){let w=Array(256);for(let B=0;B<16;++B){let h=B*16;for(let U=0;U<16;++U)w[h+U]="0123456789abcdef"[B]+"0123456789abcdef"[U]}return w}();V8=r2("resolveObjectURL"),j8=r2("isUtf8"),L8=r2("transcode"),O8=_});var W2={};E1(W2,{setMaxListeners:()=>Z6,once:()=>I6,listenerCount:()=>Q6,init:()=>r0,getMaxListeners:()=>J6,getEventListeners:()=>X6,default:()=>y8,captureRejectionSymbol:()=>B6,addAbortListener:()=>K6,EventEmitter:()=>r0});function h6(w,B){var{_events:h}=w;if(B[0]??=Error("Unhandled error."),!h)throw B[0];var U=h[e1];if(U)for(var I of s1.call(U))I.apply(w,B);var X=h.error;if(!X)throw B[0];for(var I of s1.call(X))I.apply(w,B);return!0}function P8(w,B,h,U){B.then(void 0,function(I){queueMicrotask(()=>T8(w,I,h,U))})}function T8(w,B,h,U){if(typeof w[a1]==="function")w[a1](B,h,...U);else try{w[U2]=!1,w.emit("error",B)}finally{w[U2]=!0}}function w6(w,B,h){h.warned=!0;let U=Error(`Possible EventEmitter memory leak detected. ${h.length} ${String(B)} listeners added to [${w.constructor.name}]. Use emitter.setMaxListeners() to increase limit`);U.name="MaxListenersExceededWarning",U.emitter=w,U.type=B,U.count=h.length,console.warn(U)}function U6(w,B,...h){this.removeListener(w,B),B.apply(this,h)}function I6(w,B,h){var U=h?.signal;if(F6(U,"options.signal"),U?.aborted)throw new a2(void 0,{cause:U?.reason});let{resolve:I,reject:X,promise:Z}=$newPromiseCapability(Promise),Y=(N)=>{if(w.removeListener(B,H),U!=null)D2(U,"abort",K);X(N)},H=(...N)=>{if(typeof w.removeListener==="function")w.removeListener("error",Y);if(U!=null)D2(U,"abort",K);I(N)};if(t1(w,B,H,{once:!0}),B!=="error"&&typeof w.once==="function")w.once("error",Y);function K(){D2(w,B,H),D2(w,"error",Y),X(new a2(void 0,{cause:U?.reason}))}if(U!=null)t1(U,"abort",K,{once:!0});return Z}function X6(w,B){return w.listeners(B)}function Z6(w,...B){t2(w,"setMaxListeners",0);var h;if(B&&(h=B.length))for(let U=0;U<h;U++)B[U].setMaxListeners(w);else I2=w}function Q6(w,B){return w.listenerCount(B)}function D2(w,B,h,U){if(typeof w.removeListener==="function")w.removeListener(B,h);else w.removeEventListener(B,h,U)}function t1(w,B,h,U){if(typeof w.on==="function")if(U.once)w.once(B,h);else w.on(B,h);else w.addEventListener(B,h,U)}function Y2(w,B,h){let U=TypeError(`The "${w}" argument must be of type ${B}. Received ${h}`);return U.code="ERR_INVALID_ARG_TYPE",U}function k8(w,B,h){let U=RangeError(`The "${w}" argument is out of range. It must be ${B}. Received ${h}`);return U.code="ERR_OUT_OF_RANGE",U}function F6(w,B){if(w!==void 0&&(w===null||typeof w!=="object"||!("aborted"in w)))throw Y2(B,"AbortSignal",w)}function t2(w,B,h,U){if(typeof w!=="number")throw Y2(B,"number",w);if(h!=null&&w<h||U!=null&&w>U||(h!=null||U!=null)&&Number.isNaN(w))throw k8(B,`${h!=null?`>= ${h}`:""}${h!=null&&U!=null?" && ":""}${U!=null?`<= ${U}`:""}`,w)}function C2(w){if(typeof w!=="function")throw TypeError("The listener must be a function")}function S8(w,B){if(typeof w!=="boolean")throw Y2(B,"boolean",w)}function J6(w){return w?._maxListeners??I2}function K6(w,B){if(w===void 0)throw Y2("signal","AbortSignal",w);if(F6(w,"signal"),typeof B!=="function")throw Y2("listener","function",B);let h;if(w.aborted)queueMicrotask(()=>B());else w.addEventListener("abort",B,{__proto__:null,once:!0}),h=()=>{w.removeEventListener("abort",B)};return{__proto__:null,[Symbol.dispose](){h?.()}}}var s2,U2,e1,x8,D8,a1,B6,s1,I2=10,r0=function(B){if(this._events===void 0||this._events===this.__proto__._events)this._events={__proto__:null},this._eventsCount=0;if(this._maxListeners??=void 0,this[U2]=B?.captureRejections?Boolean(B?.captureRejections):$0[U2])this.emit=R8},$0,_8=function(B,...h){if(B==="error")return h6(this,h);var{_events:U}=this;if(U===void 0)return!1;var I=U[B];if(I===void 0)return!1;let X=I.length>1?I.slice():I;for(let Z=0,{length:Y}=X;Z<Y;Z++){let H=X[Z];switch(h.length){case 0:H.call(this);break;case 1:H.call(this,h[0]);break;case 2:H.call(this,h[0],h[1]);break;case 3:H.call(this,h[0],h[1],h[2]);break;default:H.apply(this,h);break}}return!0},R8=function(B,...h){if(B==="error")return h6(this,h);var{_events:U}=this;if(U===void 0)return!1;var I=U[B];if(I===void 0)return!1;let X=I.length>1?I.slice():I;for(let Z=0,{length:Y}=X;Z<Y;Z++){let H=X[Z],K;switch(h.length){case 0:K=H.call(this);break;case 1:K=H.call(this,h[0]);break;case 2:K=H.call(this,h[0],h[1]);break;case 3:K=H.call(this,h[0],h[1],h[2]);break;default:K=H.apply(this,h);break}if(K!==void 0&&typeof K?.then==="function"&&K.then===Promise.prototype.then)P8(this,K,B,h)}return!0},a2,y8;var M2=V1(()=>{s2=Symbol.for,U2=Symbol("kCapture"),e1=s2("events.errorMonitor"),x8=Symbol("events.maxEventTargetListeners"),D8=Symbol("events.maxEventTargetListenersWarned"),a1=s2("nodejs.rejection"),B6=s2("nodejs.rejection"),s1=Array.prototype.slice,$0=r0.prototype={};$0._events=void 0;$0._eventsCount=0;$0._maxListeners=void 0;$0.setMaxListeners=function(B){return t2(B,"setMaxListeners",0),this._maxListeners=B,this};$0.constructor=r0;$0.getMaxListeners=function(){return this?._maxListeners??I2};$0.emit=_8;$0.addListener=function(B,h){C2(h);var U=this._events;if(!U)U=this._events={__proto__:null},this._eventsCount=0;else if(U.newListener)this.emit("newListener",B,h.listener??h);var I=U[B];if(!I)U[B]=[h],this._eventsCount++;else{I.push(h);var X=this._maxListeners??I2;if(X>0&&I.length>X&&!I.warned)w6(this,B,I)}return this};$0.on=$0.addListener;$0.prependListener=function(B,h){C2(h);var U=this._events;if(!U)U=this._events={__proto__:null},this._eventsCount=0;else if(U.newListener)this.emit("newListener",B,h.listener??h);var I=U[B];if(!I)U[B]=[h],this._eventsCount++;else{I.unshift(h);var X=this._maxListeners??I2;if(X>0&&I.length>X&&!I.warned)w6(this,B,I)}return this};$0.once=function(B,h){C2(h);let U=U6.bind(this,B,h);return U.listener=h,this.addListener(B,U),this};$0.prependOnceListener=function(B,h){C2(h);let U=U6.bind(this,B,h);return U.listener=h,this.prependListener(B,U),this};$0.removeListener=function(B,h){C2(h);var{_events:U}=this;if(!U)return this;var I=U[B];if(!I)return this;var X=I.length;let Z=-1;for(let Y=X-1;Y>=0;Y--)if(I[Y]===h||I[Y].listener===h){Z=Y;break}if(Z<0)return this;if(Z===0)I.shift();else I.splice(Z,1);if(I.length===0)delete U[B],this._eventsCount--;return this};$0.off=$0.removeListener;$0.removeAllListeners=function(B){var{_events:h}=this;if(B&&h){if(h[B])delete h[B],this._eventsCount--}else this._events={__proto__:null};return this};$0.listeners=function(B){var{_events:h}=this;if(!h)return[];var U=h[B];if(!U)return[];return U.map((I)=>I.listener??I)};$0.rawListeners=function(B){var{_events:h}=this;if(!h)return[];var U=h[B];if(!U)return[];return U.slice()};$0.listenerCount=function(B){var{_events:h}=this;if(!h)return 0;return h[B]?.length??0};$0.eventNames=function(){return this._eventsCount>0?Reflect.ownKeys(this._events):[]};$0[U2]=!1;a2=class a2 extends Error{constructor(w="The operation was aborted",B=void 0){if(B!==void 0&&typeof B!=="object")throw Y2("options","Object",B);super(w,B);this.code="ABORT_ERR",this.name="AbortError"}};Object.defineProperties(r0,{captureRejections:{get(){return $0[U2]},set(w){S8(w,"EventEmitter.captureRejections"),$0[U2]=w},enumerable:!0},defaultMaxListeners:{enumerable:!0,get:()=>{return I2},set:(w)=>{t2(w,"defaultMaxListeners",0),I2=w}},kMaxEventTargetListeners:{value:x8,enumerable:!1,configurable:!1,writable:!1},kMaxEventTargetListenersWarned:{value:D8,enumerable:!1,configurable:!1,writable:!1}});Object.assign(r0,{once:I6,getEventListeners:X6,getMaxListeners:J6,setMaxListeners:Z6,EventEmitter:r0,usingDomains:!1,captureRejectionSymbol:B6,errorMonitor:e1,addAbortListener:K6,init:r0,listenerCount:Q6});y8=r0});var w1=c6((H4,C6)=>{var z0=(w,B)=>()=>(B||w((B={exports:{}}).exports,B),B.exports),N0=z0((w,B)=>{class h extends Error{constructor(U){if(!Array.isArray(U))throw TypeError(`Expected input to be an Array, got ${typeof U}`);let I="";for(let X=0;X<U.length;X++)I+=` ${U[X].stack}
2
+ `;super(I);this.name="AggregateError",this.errors=U}}B.exports={AggregateError:h,ArrayIsArray(U){return Array.isArray(U)},ArrayPrototypeIncludes(U,I){return U.includes(I)},ArrayPrototypeIndexOf(U,I){return U.indexOf(I)},ArrayPrototypeJoin(U,I){return U.join(I)},ArrayPrototypeMap(U,I){return U.map(I)},ArrayPrototypePop(U,I){return U.pop(I)},ArrayPrototypePush(U,I){return U.push(I)},ArrayPrototypeSlice(U,I,X){return U.slice(I,X)},Error,FunctionPrototypeCall(U,I,...X){return U.call(I,...X)},FunctionPrototypeSymbolHasInstance(U,I){return Function.prototype[Symbol.hasInstance].call(U,I)},MathFloor:Math.floor,Number,NumberIsInteger:Number.isInteger,NumberIsNaN:Number.isNaN,NumberMAX_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,NumberMIN_SAFE_INTEGER:Number.MIN_SAFE_INTEGER,NumberParseInt:Number.parseInt,ObjectDefineProperties(U,I){return Object.defineProperties(U,I)},ObjectDefineProperty(U,I,X){return Object.defineProperty(U,I,X)},ObjectGetOwnPropertyDescriptor(U,I){return Object.getOwnPropertyDescriptor(U,I)},ObjectKeys(U){return Object.keys(U)},ObjectSetPrototypeOf(U,I){return Object.setPrototypeOf(U,I)},Promise,PromisePrototypeCatch(U,I){return U.catch(I)},PromisePrototypeThen(U,I,X){return U.then(I,X)},PromiseReject(U){return Promise.reject(U)},PromiseResolve(U){return Promise.resolve(U)},ReflectApply:Reflect.apply,RegExpPrototypeTest(U,I){return U.test(I)},SafeSet:Set,String,StringPrototypeSlice(U,I,X){return U.slice(I,X)},StringPrototypeToLowerCase(U){return U.toLowerCase()},StringPrototypeToUpperCase(U){return U.toUpperCase()},StringPrototypeTrim(U){return U.trim()},Symbol,SymbolFor:Symbol.for,SymbolAsyncIterator:Symbol.asyncIterator,SymbolHasInstance:Symbol.hasInstance,SymbolIterator:Symbol.iterator,SymbolDispose:Symbol.dispose||Symbol("Symbol.dispose"),SymbolAsyncDispose:Symbol.asyncDispose||Symbol("Symbol.asyncDispose"),TypedArrayPrototypeSet(U,I,X){return U.set(I,X)},Boolean,Uint8Array}}),Y6=z0((w,B)=>{B.exports={format(h,...U){return h.replace(/%([sdifj])/g,function(...[I,X]){let Z=U.shift();if(X==="f")return Z.toFixed(6);else if(X==="j")return JSON.stringify(Z);else if(X==="s"&&typeof Z==="object")return`${Z.constructor!==Object?Z.constructor.name:""} {}`.trim();else return Z.toString()})},inspect(h){switch(typeof h){case"string":if(h.includes("'")){if(!h.includes('"'))return`"${h}"`;else if(!h.includes("`")&&!h.includes("${"))return`\`${h}\``}return`'${h}'`;case"number":if(isNaN(h))return"NaN";else if(Object.is(h,-0))return String(h);return h;case"bigint":return`${String(h)}n`;case"boolean":case"undefined":return String(h);case"object":return"{}"}}}}),L0=z0((w,B)=>{var{format:h,inspect:U}=Y6(),{AggregateError:I}=N0(),X=globalThis.AggregateError||I,Z=Symbol("kIsNodeError"),Y=["string","function","number","object","Function","Object","boolean","bigint","symbol"],H=/^([A-Z][a-z0-9]*)+$/,K={};function N(V,J){if(!V)throw new K.ERR_INTERNAL_ASSERTION(J)}function G(V){let J="",C=V.length,j=V[0]==="-"?1:0;for(;C>=j+4;C-=3)J=`_${V.slice(C-3,C)}${J}`;return`${V.slice(0,C)}${J}`}function O(V,J,C){if(typeof J==="function")return N(J.length<=C.length,`Code: ${V}; The provided arguments length (${C.length}) does not match the required ones (${J.length}).`),J(...C);let j=(J.match(/%[dfijoOs]/g)||[]).length;if(N(j===C.length,`Code: ${V}; The provided arguments length (${C.length}) does not match the required ones (${j}).`),C.length===0)return J;return h(J,...C)}function x(V,J,C){if(!C)C=Error;class j extends C{constructor(...T){super(O(V,J,T))}toString(){return`${this.name} [${V}]: ${this.message}`}}Object.defineProperties(j.prototype,{name:{value:C.name,writable:!0,enumerable:!1,configurable:!0},toString:{value(){return`${this.name} [${V}]: ${this.message}`},writable:!0,enumerable:!1,configurable:!0}}),j.prototype.code=V,j.prototype[Z]=!0,K[V]=j}function l(V){let J="__node_internal_"+V.name;return Object.defineProperty(V,"name",{value:J}),V}function t(V,J){if(V&&J&&V!==J){if(Array.isArray(J.errors))return J.errors.push(V),J;let C=new X([J,V],J.message);return C.code=J.code,C}return V||J}class v extends Error{constructor(V="The operation was aborted",J=void 0){if(J!==void 0&&typeof J!=="object")throw new K.ERR_INVALID_ARG_TYPE("options","Object",J);super(V,J);this.code="ABORT_ERR",this.name="AbortError"}}x("ERR_ASSERTION","%s",Error),x("ERR_INVALID_ARG_TYPE",(V,J,C)=>{if(N(typeof V==="string","'name' must be a string"),!Array.isArray(J))J=[J];let j="The ";if(V.endsWith(" argument"))j+=`${V} `;else j+=`"${V}" ${V.includes(".")?"property":"argument"} `;j+="must be ";let T=[],a=[],h0=[];for(let s of J)if(N(typeof s==="string","All expected entries have to be of type string"),Y.includes(s))T.push(s.toLowerCase());else if(H.test(s))a.push(s);else N(s!=="object",'The value "object" should be written as "Object"'),h0.push(s);if(a.length>0){let s=T.indexOf("object");if(s!==-1)T.splice(T,s,1),a.push("Object")}if(T.length>0){switch(T.length){case 1:j+=`of type ${T[0]}`;break;case 2:j+=`one of type ${T[0]} or ${T[1]}`;break;default:{let s=T.pop();j+=`one of type ${T.join(", ")}, or ${s}`}}if(a.length>0||h0.length>0)j+=" or "}if(a.length>0){switch(a.length){case 1:j+=`an instance of ${a[0]}`;break;case 2:j+=`an instance of ${a[0]} or ${a[1]}`;break;default:{let s=a.pop();j+=`an instance of ${a.join(", ")}, or ${s}`}}if(h0.length>0)j+=" or "}switch(h0.length){case 0:break;case 1:if(h0[0].toLowerCase()!==h0[0])j+="an ";j+=`${h0[0]}`;break;case 2:j+=`one of ${h0[0]} or ${h0[1]}`;break;default:{let s=h0.pop();j+=`one of ${h0.join(", ")}, or ${s}`}}if(C==null)j+=`. Received ${C}`;else if(typeof C==="function"&&C.name)j+=`. Received function ${C.name}`;else if(typeof C==="object"){var H0;if((H0=C.constructor)!==null&&H0!==void 0&&H0.name)j+=`. Received an instance of ${C.constructor.name}`;else{let s=U(C,{depth:-1});j+=`. Received ${s}`}}else{let s=U(C,{colors:!1});if(s.length>25)s=`${s.slice(0,25)}...`;j+=`. Received type ${typeof C} (${s})`}return j},TypeError),x("ERR_INVALID_ARG_VALUE",(V,J,C="is invalid")=>{let j=U(J);if(j.length>128)j=j.slice(0,128)+"...";return`The ${V.includes(".")?"property":"argument"} '${V}' ${C}. Received ${j}`},TypeError),x("ERR_INVALID_RETURN_VALUE",(V,J,C)=>{var j;let T=C!==null&&C!==void 0&&(j=C.constructor)!==null&&j!==void 0&&j.name?`instance of ${C.constructor.name}`:`type ${typeof C}`;return`Expected ${V} to be returned from the "${J}" function but got ${T}.`},TypeError),x("ERR_MISSING_ARGS",(...V)=>{N(V.length>0,"At least one arg needs to be specified");let J,C=V.length;switch(V=(Array.isArray(V)?V:[V]).map((j)=>`"${j}"`).join(" or "),C){case 1:J+=`The ${V[0]} argument`;break;case 2:J+=`The ${V[0]} and ${V[1]} arguments`;break;default:{let j=V.pop();J+=`The ${V.join(", ")}, and ${j} arguments`}break}return`${J} must be specified`},TypeError),x("ERR_OUT_OF_RANGE",(V,J,C)=>{N(J,'Missing "range" argument');let j;if(Number.isInteger(C)&&Math.abs(C)>4294967296)j=G(String(C));else if(typeof C==="bigint"){j=String(C);let T=BigInt(2)**BigInt(32);if(C>T||C<-T)j=G(j);j+="n"}else j=U(C);return`The value of "${V}" is out of range. It must be ${J}. Received ${j}`},RangeError),x("ERR_MULTIPLE_CALLBACK","Callback called multiple times",Error),x("ERR_METHOD_NOT_IMPLEMENTED","The %s method is not implemented",Error),x("ERR_STREAM_ALREADY_FINISHED","Cannot call %s after a stream was finished",Error),x("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable",Error),x("ERR_STREAM_DESTROYED","Cannot call %s after a stream was destroyed",Error),x("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),x("ERR_STREAM_PREMATURE_CLOSE","Premature close",Error),x("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF",Error),x("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event",Error),x("ERR_STREAM_WRITE_AFTER_END","write after end",Error),x("ERR_UNKNOWN_ENCODING","Unknown encoding: %s",TypeError),B.exports={AbortError:v,aggregateTwoErrors:l(t),hideStackFrames:l,codes:K}}),f8=z0((w,B)=>{Object.defineProperty(w,"__esModule",{value:!0});var h=new WeakMap,U=new WeakMap;function I(D){let u=h.get(D);return console.assert(u!=null,"'this' is expected an Event object, but got",D),u}function X(D){if(D.passiveListener!=null){if(typeof console<"u"&&typeof console.error==="function")console.error("Unable to preventDefault inside passive event listener invocation.",D.passiveListener);return}if(!D.event.cancelable)return;if(D.canceled=!0,typeof D.event.preventDefault==="function")D.event.preventDefault()}function Z(D,u){h.set(this,{eventTarget:D,event:u,eventPhase:2,currentTarget:D,canceled:!1,stopped:!1,immediateStopped:!1,passiveListener:null,timeStamp:u.timeStamp||Date.now()}),Object.defineProperty(this,"isTrusted",{value:!1,enumerable:!0});let A=Object.keys(u);for(let E=0;E<A.length;++E){let L=A[E];if(!(L in this))Object.defineProperty(this,L,Y(L))}}if(Z.prototype={get type(){return I(this).event.type},get target(){return I(this).eventTarget},get currentTarget(){return I(this).currentTarget},composedPath(){let D=I(this).currentTarget;if(D==null)return[];return[D]},get NONE(){return 0},get CAPTURING_PHASE(){return 1},get AT_TARGET(){return 2},get BUBBLING_PHASE(){return 3},get eventPhase(){return I(this).eventPhase},stopPropagation(){let D=I(this);if(D.stopped=!0,typeof D.event.stopPropagation==="function")D.event.stopPropagation()},stopImmediatePropagation(){let D=I(this);if(D.stopped=!0,D.immediateStopped=!0,typeof D.event.stopImmediatePropagation==="function")D.event.stopImmediatePropagation()},get bubbles(){return Boolean(I(this).event.bubbles)},get cancelable(){return Boolean(I(this).event.cancelable)},preventDefault(){X(I(this))},get defaultPrevented(){return I(this).canceled},get composed(){return Boolean(I(this).event.composed)},get timeStamp(){return I(this).timeStamp},get srcElement(){return I(this).eventTarget},get cancelBubble(){return I(this).stopped},set cancelBubble(D){if(!D)return;let u=I(this);if(u.stopped=!0,typeof u.event.cancelBubble==="boolean")u.event.cancelBubble=!0},get returnValue(){return!I(this).canceled},set returnValue(D){if(!D)X(I(this))},initEvent(){}},Object.defineProperty(Z.prototype,"constructor",{value:Z,configurable:!0,writable:!0}),typeof window<"u"&&typeof window.Event<"u")Object.setPrototypeOf(Z.prototype,window.Event.prototype),U.set(window.Event.prototype,Z);function Y(D){return{get(){return I(this).event[D]},set(u){I(this).event[D]=u},configurable:!0,enumerable:!0}}function H(D){return{value(){let u=I(this).event;return u[D].apply(u,arguments)},configurable:!0,enumerable:!0}}function K(D,u){let A=Object.keys(u);if(A.length===0)return D;function E(L,M){D.call(this,L,M)}E.prototype=Object.create(D.prototype,{constructor:{value:E,configurable:!0,writable:!0}});for(let L=0;L<A.length;++L){let M=A[L];if(!(M in D.prototype)){let p=typeof Object.getOwnPropertyDescriptor(u,M).value==="function";Object.defineProperty(E.prototype,M,p?H(M):Y(M))}}return E}function N(D){if(D==null||D===Object.prototype)return Z;let u=U.get(D);if(u==null)u=K(N(Object.getPrototypeOf(D)),D),U.set(D,u);return u}function G(D,u){return new(N(Object.getPrototypeOf(u)))(D,u)}function O(D){return I(D).immediateStopped}function x(D,u){I(D).eventPhase=u}function l(D,u){I(D).currentTarget=u}function t(D,u){I(D).passiveListener=u}var v=new WeakMap,V=1,J=2,C=3;function j(D){return D!==null&&typeof D==="object"}function T(D){let u=v.get(D);if(u==null)throw TypeError("'this' is expected an EventTarget object, but got another value.");return u}function a(D){return{get(){let u=T(this).get(D);while(u!=null){if(u.listenerType===C)return u.listener;u=u.next}return null},set(u){if(typeof u!=="function"&&!j(u))u=null;let A=T(this),E=null,L=A.get(D);while(L!=null){if(L.listenerType===C)if(E!==null)E.next=L.next;else if(L.next!==null)A.set(D,L.next);else A.delete(D);else E=L;L=L.next}if(u!==null){let M={listener:u,listenerType:C,passive:!1,once:!1,next:null};if(E===null)A.set(D,M);else E.next=M}},configurable:!0,enumerable:!0}}function h0(D,u){Object.defineProperty(D,`on${u}`,a(u))}function H0(D){function u(){s.call(this)}u.prototype=Object.create(s.prototype,{constructor:{value:u,configurable:!0,writable:!0}});for(let A=0;A<D.length;++A)h0(u.prototype,D[A]);return u}function s(){if(this instanceof s){v.set(this,new Map);return}if(arguments.length===1&&Array.isArray(arguments[0]))return H0(arguments[0]);if(arguments.length>0){let D=Array(arguments.length);for(let u=0;u<arguments.length;++u)D[u]=arguments[u];return H0(D)}throw TypeError("Cannot call a class as a function")}if(s.prototype={addEventListener(D,u,A){if(u==null)return;if(typeof u!=="function"&&!j(u))throw TypeError("'listener' should be a function or an object.");let E=T(this),L=j(A),M=(L?Boolean(A.capture):Boolean(A))?V:J,p={listener:u,listenerType:M,passive:L&&Boolean(A.passive),once:L&&Boolean(A.once),next:null},e=E.get(D);if(e===void 0){E.set(D,p);return}let I0=null;while(e!=null){if(e.listener===u&&e.listenerType===M)return;I0=e,e=e.next}I0.next=p},removeEventListener(D,u,A){if(u==null)return;let E=T(this),L=(j(A)?Boolean(A.capture):Boolean(A))?V:J,M=null,p=E.get(D);while(p!=null){if(p.listener===u&&p.listenerType===L){if(M!==null)M.next=p.next;else if(p.next!==null)E.set(D,p.next);else E.delete(D);return}M=p,p=p.next}},dispatchEvent(D){if(D==null||typeof D.type!=="string")throw TypeError('"event.type" should be a string.');let u=T(this),A=D.type,E=u.get(A);if(E==null)return!0;let L=G(this,D),M=null;while(E!=null){if(E.once)if(M!==null)M.next=E.next;else if(E.next!==null)u.set(A,E.next);else u.delete(A);else M=E;if(t(L,E.passive?E.listener:null),typeof E.listener==="function")try{E.listener.call(this,L)}catch(p){if(typeof console<"u"&&typeof console.error==="function")console.error(p)}else if(E.listenerType!==C&&typeof E.listener.handleEvent==="function")E.listener.handleEvent(L);if(O(L))break;E=E.next}return t(L,null),x(L,0),l(L,null),!L.defaultPrevented}},Object.defineProperty(s.prototype,"constructor",{value:s,configurable:!0,writable:!0}),typeof window<"u"&&typeof window.EventTarget<"u")Object.setPrototypeOf(s.prototype,window.EventTarget.prototype);w.defineEventAttribute=h0,w.EventTarget=s,w.default=s,B.exports=s,B.exports.EventTarget=B.exports.default=s,B.exports.defineEventAttribute=h0}),E2=z0((w,B)=>{Object.defineProperty(w,"__esModule",{value:!0});var h=f8();class U extends h.EventTarget{constructor(){super();throw TypeError("AbortSignal cannot be constructed directly")}get aborted(){let N=Z.get(this);if(typeof N!=="boolean")throw TypeError(`Expected 'this' to be an 'AbortSignal' object, but got ${this===null?"null":typeof this}`);return N}}h.defineEventAttribute(U.prototype,"abort");function I(){let N=Object.create(U.prototype);return h.EventTarget.call(N),Z.set(N,!1),N}function X(N){if(Z.get(N)!==!1)return;Z.set(N,!0),N.dispatchEvent({type:"abort"})}var Z=new WeakMap;if(Object.defineProperties(U.prototype,{aborted:{enumerable:!0}}),typeof Symbol==="function"&&typeof Symbol.toStringTag==="symbol")Object.defineProperty(U.prototype,Symbol.toStringTag,{configurable:!0,value:"AbortSignal"});class Y{constructor(){H.set(this,I())}get signal(){return K(this)}abort(){X(K(this))}}var H=new WeakMap;function K(N){let G=H.get(N);if(G==null)throw TypeError(`Expected 'this' to be an 'AbortController' object, but got ${N===null?"null":typeof N}`);return G}if(Object.defineProperties(Y.prototype,{signal:{enumerable:!0},abort:{enumerable:!0}}),typeof Symbol==="function"&&typeof Symbol.toStringTag==="symbol")Object.defineProperty(Y.prototype,Symbol.toStringTag,{configurable:!0,value:"AbortController"});w.AbortController=Y,w.AbortSignal=U,w.default=Y,B.exports=Y,B.exports.AbortController=B.exports.default=Y,B.exports.AbortSignal=U}),D0=z0((w,B)=>{var h=(i0(),_0(b0)),{format:U,inspect:I}=Y6(),{codes:{ERR_INVALID_ARG_TYPE:X}}=L0(),{kResistStopPropagation:Z,AggregateError:Y,SymbolDispose:H}=N0(),K=globalThis.AbortSignal||E2().AbortSignal,N=globalThis.AbortController||E2().AbortController,G=Object.getPrototypeOf(async function(){}).constructor,O=globalThis.Blob||h.Blob,x=typeof O<"u"?function(V){return V instanceof O}:function(V){return!1},l=(v,V)=>{if(v!==void 0&&(v===null||typeof v!=="object"||!("aborted"in v)))throw new X(V,"AbortSignal",v)},t=(v,V)=>{if(typeof v!=="function")throw new X(V,"Function",v)};B.exports={AggregateError:Y,kEmptyObject:Object.freeze({}),once(v){let V=!1;return function(...J){if(V)return;V=!0,v.apply(this,J)}},createDeferredPromise:function(){let v,V;return{promise:new Promise((J,C)=>{v=J,V=C}),resolve:v,reject:V}},promisify(v){return new Promise((V,J)=>{v((C,...j)=>{if(C)return J(C);return V(...j)})})},debuglog(){return function(){}},format:U,inspect:I,types:{isAsyncFunction(v){return v instanceof G},isArrayBufferView(v){return ArrayBuffer.isView(v)}},isBlob:x,deprecate(v,V){return v},addAbortListener:(M2(),_0(W2)).addAbortListener||function(V,J){if(V===void 0)throw new X("signal","AbortSignal",V);l(V,"signal"),t(J,"listener");let C;if(V.aborted)queueMicrotask(()=>J());else V.addEventListener("abort",J,{__proto__:null,once:!0,[Z]:!0}),C=()=>{V.removeEventListener("abort",J)};return{__proto__:null,[H](){var j;(j=C)===null||j===void 0||j()}}},AbortSignalAny:K.any||function(V){if(V.length===1)return V[0];let J=new N,C=()=>J.abort();return V.forEach((j)=>{l(j,"signals"),j.addEventListener("abort",C,{once:!0})}),J.signal.addEventListener("abort",()=>{V.forEach((j)=>j.removeEventListener("abort",C))},{once:!0}),J.signal}},B.exports.promisify.custom=Symbol.for("nodejs.util.promisify.custom")}),V2=z0((w,B)=>{var{ArrayIsArray:h,ArrayPrototypeIncludes:U,ArrayPrototypeJoin:I,ArrayPrototypeMap:X,NumberIsInteger:Z,NumberIsNaN:Y,NumberMAX_SAFE_INTEGER:H,NumberMIN_SAFE_INTEGER:K,NumberParseInt:N,ObjectPrototypeHasOwnProperty:G,RegExpPrototypeExec:O,String:x,StringPrototypeToUpperCase:l,StringPrototypeTrim:t}=N0(),{hideStackFrames:v,codes:{ERR_SOCKET_BAD_PORT:V,ERR_INVALID_ARG_TYPE:J,ERR_INVALID_ARG_VALUE:C,ERR_OUT_OF_RANGE:j,ERR_UNKNOWN_SIGNAL:T}}=L0(),{normalizeEncoding:a}=D0(),{isAsyncFunction:h0,isArrayBufferView:H0}=D0().types,s={};function D($){return $===($|0)}function u($){return $===$>>>0}var A=/^[0-7]+$/,E="must be a 32-bit unsigned integer or an octal string";function L($,f,r){if(typeof $>"u")$=r;if(typeof $==="string"){if(O(A,$)===null)throw new C(f,$,E);$=N($,8)}return e($,f),$}var M=v(($,f,r=K,g=H)=>{if(typeof $!=="number")throw new J(f,"number",$);if(!Z($))throw new j(f,"an integer",$);if($<r||$>g)throw new j(f,`>= ${r} && <= ${g}`,$)}),p=v(($,f,r=-2147483648,g=2147483647)=>{if(typeof $!=="number")throw new J(f,"number",$);if(!Z($))throw new j(f,"an integer",$);if($<r||$>g)throw new j(f,`>= ${r} && <= ${g}`,$)}),e=v(($,f,r=!1)=>{if(typeof $!=="number")throw new J(f,"number",$);if(!Z($))throw new j(f,"an integer",$);let g=r?1:0,Z0=4294967295;if($<g||$>Z0)throw new j(f,`>= ${g} && <= ${Z0}`,$)});function I0($,f){if(typeof $!=="string")throw new J(f,"string",$)}function Y0($,f,r=void 0,g){if(typeof $!=="number")throw new J(f,"number",$);if(r!=null&&$<r||g!=null&&$>g||(r!=null||g!=null)&&Y($))throw new j(f,`${r!=null?`>= ${r}`:""}${r!=null&&g!=null?" && ":""}${g!=null?`<= ${g}`:""}`,$)}var S=v(($,f,r)=>{if(!U(r,$)){let g="must be one of: "+I(X(r,(Z0)=>typeof Z0==="string"?`'${Z0}'`:x(Z0)),", ");throw new C(f,$,g)}});function X0($,f){if(typeof $!=="boolean")throw new J(f,"boolean",$)}function q($,f,r){return $==null||!G($,f)?r:$[f]}var c=v(($,f,r=null)=>{let g=q(r,"allowArray",!1),Z0=q(r,"allowFunction",!1);if(!q(r,"nullable",!1)&&$===null||!g&&h($)||typeof $!=="object"&&(!Z0||typeof $!=="function"))throw new J(f,"Object",$)}),B0=v(($,f)=>{if($!=null&&typeof $!=="object"&&typeof $!=="function")throw new J(f,"a dictionary",$)}),R=v(($,f,r=0)=>{if(!h($))throw new J(f,"Array",$);if($.length<r){let g=`must be longer than ${r}`;throw new C(f,$,g)}});function U0($,f){R($,f);for(let r=0;r<$.length;r++)I0($[r],`${f}[${r}]`)}function Q0($,f){R($,f);for(let r=0;r<$.length;r++)X0($[r],`${f}[${r}]`)}function q0($,f){R($,f);for(let r=0;r<$.length;r++){let g=$[r],Z0=`${f}[${r}]`;if(g==null)throw new J(Z0,"AbortSignal",g);J0(g,Z0)}}function K0($,f="signal"){if(I0($,f),s[$]===void 0){if(s[l($)]!==void 0)throw new T($+" (signals must use all capital letters)");throw new T($)}}var k=v(($,f="buffer")=>{if(!H0($))throw new J(f,["Buffer","TypedArray","DataView"],$)});function y($,f){let r=a(f),g=$.length;if(r==="hex"&&g%2!==0)throw new C("encoding",f,`is invalid for data of length ${g}`)}function o($,f="Port",r=!0){if(typeof $!=="number"&&typeof $!=="string"||typeof $==="string"&&t($).length===0||+$!==+$>>>0||$>65535||$===0&&!r)throw new V(f,$,r);return $|0}var J0=v(($,f)=>{if($!==void 0&&($===null||typeof $!=="object"||!("aborted"in $)))throw new J(f,"AbortSignal",$)}),F0=v(($,f)=>{if(typeof $!=="function")throw new J(f,"Function",$)}),z=v(($,f)=>{if(typeof $!=="function"||h0($))throw new J(f,"Function",$)}),W=v(($,f)=>{if($!==void 0)throw new J(f,"undefined",$)});function P($,f,r){if(!U(r,$))throw new J(f,`('${I(r,"|")}')`,$)}var i=/^(?:<[^>]*>)(?:\s*;\s*[^;"\s]+(?:=(")?[^;"\s]*\1)?)*$/;function m($,f){if(typeof $>"u"||!O(i,$))throw new C(f,$,'must be an array or string of format "</styles.css>; rel=preload; as=style"')}function b($){if(typeof $==="string")return m($,"hints"),$;else if(h($)){let f=$.length,r="";if(f===0)return r;for(let g=0;g<f;g++){let Z0=$[g];if(m(Z0,"hints"),r+=Z0,g!==f-1)r+=", "}return r}throw new C("hints",$,'must be an array or string of format "</styles.css>; rel=preload; as=style"')}B.exports={isInt32:D,isUint32:u,parseFileMode:L,validateArray:R,validateStringArray:U0,validateBooleanArray:Q0,validateAbortSignalArray:q0,validateBoolean:X0,validateBuffer:k,validateDictionary:B0,validateEncoding:y,validateFunction:F0,validateInt32:p,validateInteger:M,validateNumber:Y0,validateObject:c,validateOneOf:S,validatePlainFunction:z,validatePort:o,validateSignalName:K0,validateString:I0,validateUint32:e,validateUndefined:W,validateUnion:P,validateAbortSignal:J0,validateLinkHeaderValue:b}}),X2=z0((w,B)=>{B.exports=globalThis.process}),l0=z0((w,B)=>{var{SymbolAsyncIterator:h,SymbolIterator:U,SymbolFor:I}=N0(),X=I("nodejs.stream.destroyed"),Z=I("nodejs.stream.errored"),Y=I("nodejs.stream.readable"),H=I("nodejs.stream.writable"),K=I("nodejs.stream.disturbed"),N=I("nodejs.webstream.isClosedPromise"),G=I("nodejs.webstream.controllerErrorFunction");function O(q,c=!1){var B0;return!!(q&&typeof q.pipe==="function"&&typeof q.on==="function"&&(!c||typeof q.pause==="function"&&typeof q.resume==="function")&&(!q._writableState||((B0=q._readableState)===null||B0===void 0?void 0:B0.readable)!==!1)&&(!q._writableState||q._readableState))}function x(q){var c;return!!(q&&typeof q.write==="function"&&typeof q.on==="function"&&(!q._readableState||((c=q._writableState)===null||c===void 0?void 0:c.writable)!==!1))}function l(q){return!!(q&&typeof q.pipe==="function"&&q._readableState&&typeof q.on==="function"&&typeof q.write==="function")}function t(q){return q&&(q._readableState||q._writableState||typeof q.write==="function"&&typeof q.on==="function"||typeof q.pipe==="function"&&typeof q.on==="function")}function v(q){return!!(q&&!t(q)&&typeof q.pipeThrough==="function"&&typeof q.getReader==="function"&&typeof q.cancel==="function")}function V(q){return!!(q&&!t(q)&&typeof q.getWriter==="function"&&typeof q.abort==="function")}function J(q){return!!(q&&!t(q)&&typeof q.readable==="object"&&typeof q.writable==="object")}function C(q){return v(q)||V(q)||J(q)}function j(q,c){if(q==null)return!1;if(c===!0)return typeof q[h]==="function";if(c===!1)return typeof q[U]==="function";return typeof q[h]==="function"||typeof q[U]==="function"}function T(q){if(!t(q))return null;let{_writableState:c,_readableState:B0}=q,R=c||B0;return!!(q.destroyed||q[X]||R!==null&&R!==void 0&&R.destroyed)}function a(q){if(!x(q))return null;if(q.writableEnded===!0)return!0;let c=q._writableState;if(c!==null&&c!==void 0&&c.errored)return!1;if(typeof(c===null||c===void 0?void 0:c.ended)!=="boolean")return null;return c.ended}function h0(q,c){if(!x(q))return null;if(q.writableFinished===!0)return!0;let B0=q._writableState;if(B0!==null&&B0!==void 0&&B0.errored)return!1;if(typeof(B0===null||B0===void 0?void 0:B0.finished)!=="boolean")return null;return!!(B0.finished||c===!1&&B0.ended===!0&&B0.length===0)}function H0(q){if(!O(q))return null;if(q.readableEnded===!0)return!0;let c=q._readableState;if(!c||c.errored)return!1;if(typeof(c===null||c===void 0?void 0:c.ended)!=="boolean")return null;return c.ended}function s(q,c){if(!O(q))return null;let B0=q._readableState;if(B0!==null&&B0!==void 0&&B0.errored)return!1;if(typeof(B0===null||B0===void 0?void 0:B0.endEmitted)!=="boolean")return null;return!!(B0.endEmitted||c===!1&&B0.ended===!0&&B0.length===0)}function D(q){if(q&&q[Y]!=null)return q[Y];if(typeof(q===null||q===void 0?void 0:q.readable)!=="boolean")return null;if(T(q))return!1;return O(q)&&q.readable&&!s(q)}function u(q){if(q&&q[H]!=null)return q[H];if(typeof(q===null||q===void 0?void 0:q.writable)!=="boolean")return null;if(T(q))return!1;return x(q)&&q.writable&&!a(q)}function A(q,c){if(!t(q))return null;if(T(q))return!0;if((c===null||c===void 0?void 0:c.readable)!==!1&&D(q))return!1;if((c===null||c===void 0?void 0:c.writable)!==!1&&u(q))return!1;return!0}function E(q){var c,B0;if(!t(q))return null;if(q.writableErrored)return q.writableErrored;return(c=(B0=q._writableState)===null||B0===void 0?void 0:B0.errored)!==null&&c!==void 0?c:null}function L(q){var c,B0;if(!t(q))return null;if(q.readableErrored)return q.readableErrored;return(c=(B0=q._readableState)===null||B0===void 0?void 0:B0.errored)!==null&&c!==void 0?c:null}function M(q){if(!t(q))return null;if(typeof q.closed==="boolean")return q.closed;let{_writableState:c,_readableState:B0}=q;if(typeof(c===null||c===void 0?void 0:c.closed)==="boolean"||typeof(B0===null||B0===void 0?void 0:B0.closed)==="boolean")return(c===null||c===void 0?void 0:c.closed)||(B0===null||B0===void 0?void 0:B0.closed);if(typeof q._closed==="boolean"&&p(q))return q._closed;return null}function p(q){return typeof q._closed==="boolean"&&typeof q._defaultKeepAlive==="boolean"&&typeof q._removedConnection==="boolean"&&typeof q._removedContLen==="boolean"}function e(q){return typeof q._sent100==="boolean"&&p(q)}function I0(q){var c;return typeof q._consuming==="boolean"&&typeof q._dumped==="boolean"&&((c=q.req)===null||c===void 0?void 0:c.upgradeOrConnect)===void 0}function Y0(q){if(!t(q))return null;let{_writableState:c,_readableState:B0}=q,R=c||B0;return!R&&e(q)||!!(R&&R.autoDestroy&&R.emitClose&&R.closed===!1)}function S(q){var c;return!!(q&&((c=q[K])!==null&&c!==void 0?c:q.readableDidRead||q.readableAborted))}function X0(q){var c,B0,R,U0,Q0,q0,K0,k,y,o;return!!(q&&((c=(B0=(R=(U0=(Q0=(q0=q[Z])!==null&&q0!==void 0?q0:q.readableErrored)!==null&&Q0!==void 0?Q0:q.writableErrored)!==null&&U0!==void 0?U0:(K0=q._readableState)===null||K0===void 0?void 0:K0.errorEmitted)!==null&&R!==void 0?R:(k=q._writableState)===null||k===void 0?void 0:k.errorEmitted)!==null&&B0!==void 0?B0:(y=q._readableState)===null||y===void 0?void 0:y.errored)!==null&&c!==void 0?c:(o=q._writableState)===null||o===void 0?void 0:o.errored))}B.exports={isDestroyed:T,kIsDestroyed:X,isDisturbed:S,kIsDisturbed:K,isErrored:X0,kIsErrored:Z,isReadable:D,kIsReadable:Y,kIsClosedPromise:N,kControllerErrorFunction:G,kIsWritable:H,isClosed:M,isDuplexNodeStream:l,isFinished:A,isIterable:j,isReadableNodeStream:O,isReadableStream:v,isReadableEnded:H0,isReadableFinished:s,isReadableErrored:L,isNodeStream:t,isWebStream:C,isWritable:u,isWritableNodeStream:x,isWritableStream:V,isWritableEnded:a,isWritableFinished:h0,isWritableErrored:E,isServerRequest:I0,isServerResponse:e,willEmitClose:Y0,isTransformStream:J}}),a0=z0((w,B)=>{var h=X2(),{AbortError:U,codes:I}=L0(),{ERR_INVALID_ARG_TYPE:X,ERR_STREAM_PREMATURE_CLOSE:Z}=I,{kEmptyObject:Y,once:H}=D0(),{validateAbortSignal:K,validateFunction:N,validateObject:G,validateBoolean:O}=V2(),{Promise:x,PromisePrototypeThen:l,SymbolDispose:t}=N0(),{isClosed:v,isReadable:V,isReadableNodeStream:J,isReadableStream:C,isReadableFinished:j,isReadableErrored:T,isWritable:a,isWritableNodeStream:h0,isWritableStream:H0,isWritableFinished:s,isWritableErrored:D,isNodeStream:u,willEmitClose:A,kIsClosedPromise:E}=l0(),L;function M(S){return S.setHeader&&typeof S.abort==="function"}var p=()=>{};function e(S,X0,q){var c,B0;if(arguments.length===2)q=X0,X0=Y;else if(X0==null)X0=Y;else G(X0,"options");if(N(q,"callback"),K(X0.signal,"options.signal"),q=H(q),C(S)||H0(S))return I0(S,X0,q);if(!u(S))throw new X("stream",["ReadableStream","WritableStream","Stream"],S);let R=(c=X0.readable)!==null&&c!==void 0?c:J(S),U0=(B0=X0.writable)!==null&&B0!==void 0?B0:h0(S),Q0=S._writableState,q0=S._readableState,K0=()=>{if(!S.writable)o()},k=A(S)&&J(S)===R&&h0(S)===U0,y=s(S,!1),o=()=>{if(y=!0,S.destroyed)k=!1;if(k&&(!S.readable||R))return;if(!R||J0)q.call(S)},J0=j(S,!1),F0=()=>{if(J0=!0,S.destroyed)k=!1;if(k&&(!S.writable||U0))return;if(!U0||y)q.call(S)},z=($)=>{q.call(S,$)},W=v(S),P=()=>{W=!0;let $=D(S)||T(S);if($&&typeof $!=="boolean")return q.call(S,$);if(R&&!J0&&J(S,!0)){if(!j(S,!1))return q.call(S,new Z)}if(U0&&!y){if(!s(S,!1))return q.call(S,new Z)}q.call(S)},i=()=>{W=!0;let $=D(S)||T(S);if($&&typeof $!=="boolean")return q.call(S,$);q.call(S)},m=()=>{S.req.on("finish",o)};if(M(S)){if(S.on("complete",o),!k)S.on("abort",P);if(S.req)m();else S.on("request",m)}else if(U0&&!Q0)S.on("end",K0),S.on("close",K0);if(!k&&typeof S.aborted==="boolean")S.on("aborted",P);if(S.on("end",F0),S.on("finish",o),X0.error!==!1)S.on("error",z);if(S.on("close",P),W)h.nextTick(P);else if(Q0!==null&&Q0!==void 0&&Q0.errorEmitted||q0!==null&&q0!==void 0&&q0.errorEmitted){if(!k)h.nextTick(i)}else if(!R&&(!k||V(S))&&(y||a(S)===!1))h.nextTick(i);else if(!U0&&(!k||a(S))&&(J0||V(S)===!1))h.nextTick(i);else if(q0&&S.req&&S.aborted)h.nextTick(i);let b=()=>{if(q=p,S.removeListener("aborted",P),S.removeListener("complete",o),S.removeListener("abort",P),S.removeListener("request",m),S.req)S.req.removeListener("finish",o);S.removeListener("end",K0),S.removeListener("close",K0),S.removeListener("finish",o),S.removeListener("end",F0),S.removeListener("error",z),S.removeListener("close",P)};if(X0.signal&&!W){let $=()=>{let f=q;b(),f.call(S,new U(void 0,{cause:X0.signal.reason}))};if(X0.signal.aborted)h.nextTick($);else{L=L||D0().addAbortListener;let f=L(X0.signal,$),r=q;q=H((...g)=>{f[t](),r.apply(S,g)})}}return b}function I0(S,X0,q){let c=!1,B0=p;if(X0.signal)if(B0=()=>{c=!0,q.call(S,new U(void 0,{cause:X0.signal.reason}))},X0.signal.aborted)h.nextTick(B0);else{L=L||D0().addAbortListener;let U0=L(X0.signal,B0),Q0=q;q=H((...q0)=>{U0[t](),Q0.apply(S,q0)})}let R=(...U0)=>{if(!c)h.nextTick(()=>q.apply(S,U0))};return l(S[E].promise,R,R),p}function Y0(S,X0){var q;let c=!1;if(X0===null)X0=Y;if((q=X0)!==null&&q!==void 0&&q.cleanup)O(X0.cleanup,"cleanup"),c=X0.cleanup;return new x((B0,R)=>{let U0=e(S,X0,(Q0)=>{if(c)U0();if(Q0)R(Q0);else B0()})})}B.exports=e,B.exports.finished=Y0}),q2=z0((w,B)=>{var h=X2(),{aggregateTwoErrors:U,codes:{ERR_MULTIPLE_CALLBACK:I},AbortError:X}=L0(),{Symbol:Z}=N0(),{kIsDestroyed:Y,isDestroyed:H,isFinished:K,isServerRequest:N}=l0(),G=Z("kDestroy"),O=Z("kConstruct");function x(A,E,L){if(A){if(A.stack,E&&!E.errored)E.errored=A;if(L&&!L.errored)L.errored=A}}function l(A,E){let L=this._readableState,M=this._writableState,p=M||L;if(M!==null&&M!==void 0&&M.destroyed||L!==null&&L!==void 0&&L.destroyed){if(typeof E==="function")E();return this}if(x(A,M,L),M)M.destroyed=!0;if(L)L.destroyed=!0;if(!p.constructed)this.once(G,function(e){t(this,U(e,A),E)});else t(this,A,E);return this}function t(A,E,L){let M=!1;function p(e){if(M)return;M=!0;let{_readableState:I0,_writableState:Y0}=A;if(x(e,Y0,I0),Y0)Y0.closed=!0;if(I0)I0.closed=!0;if(typeof L==="function")L(e);if(e)h.nextTick(v,A,e);else h.nextTick(V,A)}try{A._destroy(E||null,p)}catch(e){p(e)}}function v(A,E){J(A,E),V(A)}function V(A){let{_readableState:E,_writableState:L}=A;if(L)L.closeEmitted=!0;if(E)E.closeEmitted=!0;if(L!==null&&L!==void 0&&L.emitClose||E!==null&&E!==void 0&&E.emitClose)A.emit("close")}function J(A,E){let{_readableState:L,_writableState:M}=A;if(M!==null&&M!==void 0&&M.errorEmitted||L!==null&&L!==void 0&&L.errorEmitted)return;if(M)M.errorEmitted=!0;if(L)L.errorEmitted=!0;A.emit("error",E)}function C(){let A=this._readableState,E=this._writableState;if(A)A.constructed=!0,A.closed=!1,A.closeEmitted=!1,A.destroyed=!1,A.errored=null,A.errorEmitted=!1,A.reading=!1,A.ended=A.readable===!1,A.endEmitted=A.readable===!1;if(E)E.constructed=!0,E.destroyed=!1,E.closed=!1,E.closeEmitted=!1,E.errored=null,E.errorEmitted=!1,E.finalCalled=!1,E.prefinished=!1,E.ended=E.writable===!1,E.ending=E.writable===!1,E.finished=E.writable===!1}function j(A,E,L){let{_readableState:M,_writableState:p}=A;if(p!==null&&p!==void 0&&p.destroyed||M!==null&&M!==void 0&&M.destroyed)return this;if(M!==null&&M!==void 0&&M.autoDestroy||p!==null&&p!==void 0&&p.autoDestroy)A.destroy(E);else if(E){if(E.stack,p&&!p.errored)p.errored=E;if(M&&!M.errored)M.errored=E;if(L)h.nextTick(J,A,E);else J(A,E)}}function T(A,E){if(typeof A._construct!=="function")return;let{_readableState:L,_writableState:M}=A;if(L)L.constructed=!1;if(M)M.constructed=!1;if(A.once(O,E),A.listenerCount(O)>1)return;h.nextTick(a,A)}function a(A){let E=!1;function L(M){if(E){j(A,M!==null&&M!==void 0?M:new I);return}E=!0;let{_readableState:p,_writableState:e}=A,I0=e||p;if(p)p.constructed=!0;if(e)e.constructed=!0;if(I0.destroyed)A.emit(G,M);else if(M)j(A,M,!0);else h.nextTick(h0,A)}try{A._construct((M)=>{h.nextTick(L,M)})}catch(M){h.nextTick(L,M)}}function h0(A){A.emit(O)}function H0(A){return(A===null||A===void 0?void 0:A.setHeader)&&typeof A.abort==="function"}function s(A){A.emit("close")}function D(A,E){A.emit("error",E),h.nextTick(s,A)}function u(A,E){if(!A||H(A))return;if(!E&&!K(A))E=new X;if(N(A))A.socket=null,A.destroy(E);else if(H0(A))A.abort();else if(H0(A.req))A.req.abort();else if(typeof A.destroy==="function")A.destroy(E);else if(typeof A.close==="function")A.close();else if(E)h.nextTick(D,A,E);else h.nextTick(s,A);if(!A.destroyed)A[Y]=!0}B.exports={construct:T,destroyer:u,destroy:l,undestroy:C,errorOrDestroy:j}}),e2=z0((w,B)=>{var{ArrayIsArray:h,ObjectSetPrototypeOf:U}=N0(),{EventEmitter:I}=(M2(),_0(W2));function X(Y){I.call(this,Y)}U(X.prototype,I.prototype),U(X,I),X.prototype.pipe=function(Y,H){let K=this;function N(V){if(Y.writable&&Y.write(V)===!1&&K.pause)K.pause()}K.on("data",N);function G(){if(K.readable&&K.resume)K.resume()}if(Y.on("drain",G),!Y._isStdio&&(!H||H.end!==!1))K.on("end",x),K.on("close",l);let O=!1;function x(){if(O)return;O=!0,Y.end()}function l(){if(O)return;if(O=!0,typeof Y.destroy==="function")Y.destroy()}function t(V){if(v(),I.listenerCount(this,"error")===0)this.emit("error",V)}Z(K,"error",t),Z(Y,"error",t);function v(){K.removeListener("data",N),Y.removeListener("drain",G),K.removeListener("end",x),K.removeListener("close",l),K.removeListener("error",t),Y.removeListener("error",t),K.removeListener("end",v),K.removeListener("close",v),Y.removeListener("close",v)}return K.on("end",v),K.on("close",v),Y.on("close",v),Y.emit("pipe",K),Y};function Z(Y,H,K){if(typeof Y.prependListener==="function")return Y.prependListener(H,K);if(!Y._events||!Y._events[H])Y.on(H,K);else if(h(Y._events[H]))Y._events[H].unshift(K);else Y._events[H]=[K,Y._events[H]]}B.exports={Stream:X,prependListener:Z}}),P2=z0((w,B)=>{var{SymbolDispose:h}=N0(),{AbortError:U,codes:I}=L0(),{isNodeStream:X,isWebStream:Z,kControllerErrorFunction:Y}=l0(),H=a0(),{ERR_INVALID_ARG_TYPE:K}=I,N,G=(O,x)=>{if(typeof O!=="object"||!("aborted"in O))throw new K(x,"AbortSignal",O)};B.exports.addAbortSignal=function(x,l){if(G(x,"signal"),!X(l)&&!Z(l))throw new K("stream",["ReadableStream","WritableStream","Stream"],l);return B.exports.addAbortSignalNoValidate(x,l)},B.exports.addAbortSignalNoValidate=function(O,x){if(typeof O!=="object"||!("aborted"in O))return x;let l=X(x)?()=>{x.destroy(new U(void 0,{cause:O.reason}))}:()=>{x[Y](new U(void 0,{cause:O.reason}))};if(O.aborted)l();else{N=N||D0().addAbortListener;let t=N(O,l);H(x,t[h])}return x}}),c8=z0((w,B)=>{var{StringPrototypeSlice:h,SymbolIterator:U,TypedArrayPrototypeSet:I,Uint8Array:X}=N0(),{Buffer:Z}=(i0(),_0(b0)),{inspect:Y}=D0();B.exports=class{constructor(){this.head=null,this.tail=null,this.length=0}push(K){let N={data:K,next:null};if(this.length>0)this.tail.next=N;else this.head=N;this.tail=N,++this.length}unshift(K){let N={data:K,next:this.head};if(this.length===0)this.tail=N;this.head=N,++this.length}shift(){if(this.length===0)return;let K=this.head.data;if(this.length===1)this.head=this.tail=null;else this.head=this.head.next;return--this.length,K}clear(){this.head=this.tail=null,this.length=0}join(K){if(this.length===0)return"";let N=this.head,G=""+N.data;while((N=N.next)!==null)G+=K+N.data;return G}concat(K){if(this.length===0)return Z.alloc(0);let N=Z.allocUnsafe(K>>>0),G=this.head,O=0;while(G)I(N,G.data,O),O+=G.data.length,G=G.next;return N}consume(K,N){let G=this.head.data;if(K<G.length){let O=G.slice(0,K);return this.head.data=G.slice(K),O}if(K===G.length)return this.shift();return N?this._getString(K):this._getBuffer(K)}first(){return this.head.data}*[U](){for(let K=this.head;K;K=K.next)yield K.data}_getString(K){let N="",G=this.head,O=0;do{let x=G.data;if(K>x.length)N+=x,K-=x.length;else{if(K===x.length)if(N+=x,++O,G.next)this.head=G.next;else this.head=this.tail=null;else N+=h(x,0,K),this.head=G,G.data=h(x,K);break}++O}while((G=G.next)!==null);return this.length-=O,N}_getBuffer(K){let N=Z.allocUnsafe(K),G=K,O=this.head,x=0;do{let l=O.data;if(K>l.length)I(N,l,G-K),K-=l.length;else{if(K===l.length)if(I(N,l,G-K),++x,O.next)this.head=O.next;else this.head=this.tail=null;else I(N,new X(l.buffer,l.byteOffset,K),G-K),this.head=O,O.data=l.slice(K);break}++x}while((O=O.next)!==null);return this.length-=x,N}[Symbol.for("nodejs.util.inspect.custom")](K,N){return Y(this,{...N,depth:0,customInspect:!1})}}}),T2=z0((w,B)=>{var{MathFloor:h,NumberIsInteger:U}=N0(),{validateInteger:I}=V2(),{ERR_INVALID_ARG_VALUE:X}=L0().codes,Z=16384,Y=16;function H(O,x,l){return O.highWaterMark!=null?O.highWaterMark:x?O[l]:null}function K(O){return O?Y:Z}function N(O,x){if(I(x,"value",0),O)Y=x;else Z=x}function G(O,x,l,t){let v=H(x,t,l);if(v!=null){if(!U(v)||v<0){let V=t?`options.${l}`:"options.highWaterMark";throw new X(V,v)}return h(v)}return K(O.objectMode)}B.exports={getHighWaterMark:G,getDefaultHighWaterMark:K,setDefaultHighWaterMark:N}}),u8=z0((w,B)=>{/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */var h=(i0(),_0(b0)),U=h.Buffer;function I(Z,Y){for(var H in Z)Y[H]=Z[H]}if(U.from&&U.alloc&&U.allocUnsafe&&U.allocUnsafeSlow)B.exports=h;else I(h,w),w.Buffer=X;function X(Z,Y,H){return U(Z,Y,H)}X.prototype=Object.create(U.prototype),I(U,X),X.from=function(Z,Y,H){if(typeof Z==="number")throw TypeError("Argument must not be a number");return U(Z,Y,H)},X.alloc=function(Z,Y,H){if(typeof Z!=="number")throw TypeError("Argument must be a number");var K=U(Z);if(Y!==void 0)if(typeof H==="string")K.fill(Y,H);else K.fill(Y);else K.fill(0);return K},X.allocUnsafe=function(Z){if(typeof Z!=="number")throw TypeError("Argument must be a number");return U(Z)},X.allocUnsafeSlow=function(Z){if(typeof Z!=="number")throw TypeError("Argument must be a number");return h.SlowBuffer(Z)}}),v8=z0((w)=>{var B=u8().Buffer,h=B.isEncoding||function(J){switch(J=""+J,J&&J.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function U(J){if(!J)return"utf8";var C;while(!0)switch(J){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return J;default:if(C)return;J=(""+J).toLowerCase(),C=!0}}function I(J){var C=U(J);if(typeof C!=="string"&&(B.isEncoding===h||!h(J)))throw Error("Unknown encoding: "+J);return C||J}w.StringDecoder=X;function X(J){this.encoding=I(J);var C;switch(this.encoding){case"utf16le":this.text=O,this.end=x,C=4;break;case"utf8":this.fillLast=K,C=4;break;case"base64":this.text=l,this.end=t,C=3;break;default:this.write=v,this.end=V;return}this.lastNeed=0,this.lastTotal=0,this.lastChar=B.allocUnsafe(C)}X.prototype.write=function(J){if(J.length===0)return"";var C,j;if(this.lastNeed){if(C=this.fillLast(J),C===void 0)return"";j=this.lastNeed,this.lastNeed=0}else j=0;if(j<J.length)return C?C+this.text(J,j):this.text(J,j);return C||""},X.prototype.end=G,X.prototype.text=N,X.prototype.fillLast=function(J){if(this.lastNeed<=J.length)return J.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);J.copy(this.lastChar,this.lastTotal-this.lastNeed,0,J.length),this.lastNeed-=J.length};function Z(J){if(J<=127)return 0;else if(J>>5===6)return 2;else if(J>>4===14)return 3;else if(J>>3===30)return 4;return J>>6===2?-1:-2}function Y(J,C,j){var T=C.length-1;if(T<j)return 0;var a=Z(C[T]);if(a>=0){if(a>0)J.lastNeed=a-1;return a}if(--T<j||a===-2)return 0;if(a=Z(C[T]),a>=0){if(a>0)J.lastNeed=a-2;return a}if(--T<j||a===-2)return 0;if(a=Z(C[T]),a>=0){if(a>0)if(a===2)a=0;else J.lastNeed=a-3;return a}return 0}function H(J,C,j){if((C[0]&192)!==128)return J.lastNeed=0,"�";if(J.lastNeed>1&&C.length>1){if((C[1]&192)!==128)return J.lastNeed=1,"�";if(J.lastNeed>2&&C.length>2){if((C[2]&192)!==128)return J.lastNeed=2,"�"}}}function K(J){var C=this.lastTotal-this.lastNeed,j=H(this,J,C);if(j!==void 0)return j;if(this.lastNeed<=J.length)return J.copy(this.lastChar,C,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);J.copy(this.lastChar,C,0,J.length),this.lastNeed-=J.length}function N(J,C){var j=Y(this,J,C);if(!this.lastNeed)return J.toString("utf8",C);this.lastTotal=j;var T=J.length-(j-this.lastNeed);return J.copy(this.lastChar,0,T),J.toString("utf8",C,T)}function G(J){var C=J&&J.length?this.write(J):"";if(this.lastNeed)return C+"�";return C}function O(J,C){if((J.length-C)%2===0){var j=J.toString("utf16le",C);if(j){var T=j.charCodeAt(j.length-1);if(T>=55296&&T<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=J[J.length-2],this.lastChar[1]=J[J.length-1],j.slice(0,-1)}return j}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=J[J.length-1],J.toString("utf16le",C,J.length-1)}function x(J){var C=J&&J.length?this.write(J):"";if(this.lastNeed){var j=this.lastTotal-this.lastNeed;return C+this.lastChar.toString("utf16le",0,j)}return C}function l(J,C){var j=(J.length-C)%3;if(j===0)return J.toString("base64",C);if(this.lastNeed=3-j,this.lastTotal=3,j===1)this.lastChar[0]=J[J.length-1];else this.lastChar[0]=J[J.length-2],this.lastChar[1]=J[J.length-1];return J.toString("base64",C,J.length-j)}function t(J){var C=J&&J.length?this.write(J):"";if(this.lastNeed)return C+this.lastChar.toString("base64",0,3-this.lastNeed);return C}function v(J){return J.toString(this.encoding)}function V(J){return J&&J.length?this.write(J):""}}),q6=z0((w,B)=>{var h=X2(),{PromisePrototypeThen:U,SymbolAsyncIterator:I,SymbolIterator:X}=N0(),{Buffer:Z}=(i0(),_0(b0)),{ERR_INVALID_ARG_TYPE:Y,ERR_STREAM_NULL_VALUES:H}=L0().codes;function K(N,G,O){let x;if(typeof G==="string"||G instanceof Z)return new N({objectMode:!0,...O,read(){this.push(G),this.push(null)}});let l;if(G&&G[I])l=!0,x=G[I]();else if(G&&G[X])l=!1,x=G[X]();else throw new Y("iterable",["Iterable"],G);let t=new N({objectMode:!0,highWaterMark:1,...O}),v=!1;t._read=function(){if(!v)v=!0,J()},t._destroy=function(C,j){U(V(C),()=>h.nextTick(j,C),(T)=>h.nextTick(j,T||C))};async function V(C){let j=C!==void 0&&C!==null,T=typeof x.throw==="function";if(j&&T){let{value:a,done:h0}=await x.throw(C);if(await a,h0)return}if(typeof x.return==="function"){let{value:a}=await x.return();await a}}async function J(){for(;;){try{let{value:C,done:j}=l?await x.next():x.next();if(j)t.push(null);else{let T=C&&typeof C.then==="function"?await C:C;if(T===null)throw v=!1,new H;else if(t.push(T))continue;else v=!1}}catch(C){t.destroy(C)}break}}return t}B.exports=K}),_2=z0((w,B)=>{var h=X2(),{ArrayPrototypeIndexOf:U,NumberIsInteger:I,NumberIsNaN:X,NumberParseInt:Z,ObjectDefineProperties:Y,ObjectKeys:H,ObjectSetPrototypeOf:K,Promise:N,SafeSet:G,SymbolAsyncDispose:O,SymbolAsyncIterator:x,Symbol:l}=N0();B.exports=g,g.ReadableState=r;var{EventEmitter:t}=(M2(),_0(W2)),{Stream:v,prependListener:V}=e2(),{Buffer:J}=(i0(),_0(b0)),{addAbortSignal:C}=P2(),j=a0(),T=D0().debuglog("stream",(Q)=>{T=Q}),a=c8(),h0=q2(),{getHighWaterMark:H0,getDefaultHighWaterMark:s}=T2(),{aggregateTwoErrors:D,codes:{ERR_INVALID_ARG_TYPE:u,ERR_METHOD_NOT_IMPLEMENTED:A,ERR_OUT_OF_RANGE:E,ERR_STREAM_PUSH_AFTER_EOF:L,ERR_STREAM_UNSHIFT_AFTER_END_EVENT:M},AbortError:p}=L0(),{validateObject:e}=V2(),I0=l("kPaused"),{StringDecoder:Y0}=v8(),S=q6();K(g.prototype,v.prototype),K(g,v);var X0=()=>{},{errorOrDestroy:q}=h0,c=1,B0=2,R=4,U0=8,Q0=16,q0=32,K0=64,k=128,y=256,o=512,J0=1024,F0=2048,z=4096,W=8192,P=16384,i=32768,m=65536,b=131072,$=262144;function f(Q){return{enumerable:!1,get(){return(this.state&Q)!==0},set(F){if(F)this.state|=Q;else this.state&=~Q}}}Y(r.prototype,{objectMode:f(c),ended:f(B0),endEmitted:f(R),reading:f(U0),constructed:f(Q0),sync:f(q0),needReadable:f(K0),emittedReadable:f(k),readableListening:f(y),resumeScheduled:f(o),errorEmitted:f(J0),emitClose:f(F0),autoDestroy:f(z),destroyed:f(W),closed:f(P),closeEmitted:f(i),multiAwaitDrain:f(m),readingMore:f(b),dataEmitted:f($)});function r(Q,F,d){if(typeof d!=="boolean")d=F instanceof d0();if(this.state=F0|z|Q0|q0,Q&&Q.objectMode)this.state|=c;if(d&&Q&&Q.readableObjectMode)this.state|=c;if(this.highWaterMark=Q?H0(this,Q,"readableHighWaterMark",d):s(!1),this.buffer=new a,this.length=0,this.pipes=[],this.flowing=null,this[I0]=null,Q&&Q.emitClose===!1)this.state&=~F0;if(Q&&Q.autoDestroy===!1)this.state&=~z;if(this.errored=null,this.defaultEncoding=Q&&Q.defaultEncoding||"utf8",this.awaitDrainWriters=null,this.decoder=null,this.encoding=null,Q&&Q.encoding)this.decoder=new Y0(Q.encoding),this.encoding=Q.encoding}function g(Q){if(!(this instanceof g))return new g(Q);let F=this instanceof d0();if(this._readableState=new r(Q,this,F),Q){if(typeof Q.read==="function")this._read=Q.read;if(typeof Q.destroy==="function")this._destroy=Q.destroy;if(typeof Q.construct==="function")this._construct=Q.construct;if(Q.signal&&!F)C(Q.signal,this)}v.call(this,Q),h0.construct(this,()=>{if(this._readableState.needReadable)F2(this,this._readableState)})}g.prototype.destroy=h0.destroy,g.prototype._undestroy=h0.undestroy,g.prototype._destroy=function(Q,F){F(Q)},g.prototype[t.captureRejectionSymbol]=function(Q){this.destroy(Q)},g.prototype[O]=function(){let Q;if(!this.destroyed)Q=this.readableEnded?null:new p,this.destroy(Q);return new N((F,d)=>j(this,(n)=>n&&n!==Q?d(n):F(null)))},g.prototype.push=function(Q,F){return Z0(this,Q,F,!1)},g.prototype.unshift=function(Q,F){return Z0(this,Q,F,!0)};function Z0(Q,F,d,n){T("readableAddChunk",F);let w0=Q._readableState,j0;if((w0.state&c)===0){if(typeof F==="string"){if(d=d||w0.defaultEncoding,w0.encoding!==d)if(n&&w0.encoding)F=J.from(F,d).toString(w0.encoding);else F=J.from(F,d),d=""}else if(F instanceof J)d="";else if(v._isUint8Array(F))F=v._uint8ArrayToBuffer(F),d="";else if(F!=null)j0=new u("chunk",["string","Buffer","Uint8Array"],F)}if(j0)q(Q,j0);else if(F===null)w0.state&=~U0,V0(Q,w0);else if((w0.state&c)!==0||F&&F.length>0)if(n)if((w0.state&R)!==0)q(Q,new M);else if(w0.destroyed||w0.errored)return!1;else P0(Q,w0,F,!0);else if(w0.ended)q(Q,new L);else if(w0.destroyed||w0.errored)return!1;else if(w0.state&=~U0,w0.decoder&&!d)if(F=w0.decoder.write(F),w0.objectMode||F.length!==0)P0(Q,w0,F,!1);else F2(Q,w0);else P0(Q,w0,F,!1);else if(!n)w0.state&=~U0,F2(Q,w0);return!w0.ended&&(w0.length<w0.highWaterMark||w0.length===0)}function P0(Q,F,d,n){if(F.flowing&&F.length===0&&!F.sync&&Q.listenerCount("data")>0){if((F.state&m)!==0)F.awaitDrainWriters.clear();else F.awaitDrainWriters=null;F.dataEmitted=!0,Q.emit("data",d)}else{if(F.length+=F.objectMode?1:d.length,n)F.buffer.unshift(d);else F.buffer.push(d);if((F.state&K0)!==0)O0(Q)}F2(Q,F)}g.prototype.isPaused=function(){let Q=this._readableState;return Q[I0]===!0||Q.flowing===!1},g.prototype.setEncoding=function(Q){let F=new Y0(Q);this._readableState.decoder=F,this._readableState.encoding=this._readableState.decoder.encoding;let d=this._readableState.buffer,n="";for(let w0 of d)n+=F.write(w0);if(d.clear(),n!=="")d.push(n);return this._readableState.length=n.length,this};var C0=1073741824;function M0(Q){if(Q>C0)throw new E("size","<= 1GiB",Q);else Q--,Q|=Q>>>1,Q|=Q>>>2,Q|=Q>>>4,Q|=Q>>>8,Q|=Q>>>16,Q++;return Q}function t0(Q,F){if(Q<=0||F.length===0&&F.ended)return 0;if((F.state&c)!==0)return 1;if(X(Q)){if(F.flowing&&F.length)return F.buffer.first().length;return F.length}if(Q<=F.length)return Q;return F.ended?F.length:0}g.prototype.read=function(Q){if(T("read",Q),Q===void 0)Q=NaN;else if(!I(Q))Q=Z(Q,10);let F=this._readableState,d=Q;if(Q>F.highWaterMark)F.highWaterMark=M0(Q);if(Q!==0)F.state&=~k;if(Q===0&&F.needReadable&&((F.highWaterMark!==0?F.length>=F.highWaterMark:F.length>0)||F.ended)){if(T("read: emitReadable",F.length,F.ended),F.length===0&&F.ended)k2(this);else O0(this);return null}if(Q=t0(Q,F),Q===0&&F.ended){if(F.length===0)k2(this);return null}let n=(F.state&K0)!==0;if(T("need readable",n),F.length===0||F.length-Q<F.highWaterMark)n=!0,T("length less than watermark",n);if(F.ended||F.reading||F.destroyed||F.errored||!F.constructed)n=!1,T("reading, ended or constructing",n);else if(n){if(T("do read"),F.state|=U0|q0,F.length===0)F.state|=K0;try{this._read(F.highWaterMark)}catch(j0){q(this,j0)}if(F.state&=~q0,!F.reading)Q=t0(d,F)}let w0;if(Q>0)w0=H1(Q,F);else w0=null;if(w0===null)F.needReadable=F.length<=F.highWaterMark,Q=0;else if(F.length-=Q,F.multiAwaitDrain)F.awaitDrainWriters.clear();else F.awaitDrainWriters=null;if(F.length===0){if(!F.ended)F.needReadable=!0;if(d!==Q&&F.ended)k2(this)}if(w0!==null&&!F.errorEmitted&&!F.closeEmitted)F.dataEmitted=!0,this.emit("data",w0);return w0};function V0(Q,F){if(T("onEofChunk"),F.ended)return;if(F.decoder){let d=F.decoder.end();if(d&&d.length)F.buffer.push(d),F.length+=F.objectMode?1:d.length}if(F.ended=!0,F.sync)O0(Q);else F.needReadable=!1,F.emittedReadable=!0,Q2(Q)}function O0(Q){let F=Q._readableState;if(T("emitReadable",F.needReadable,F.emittedReadable),F.needReadable=!1,!F.emittedReadable)T("emitReadable",F.flowing),F.emittedReadable=!0,h.nextTick(Q2,Q)}function Q2(Q){let F=Q._readableState;if(T("emitReadable_",F.destroyed,F.length,F.ended),!F.destroyed&&!F.errored&&(F.length||F.ended))Q.emit("readable"),F.emittedReadable=!1;F.needReadable=!F.flowing&&!F.ended&&F.length<=F.highWaterMark,Y1(Q)}function F2(Q,F){if(!F.readingMore&&F.constructed)F.readingMore=!0,h.nextTick(S0,Q,F)}function S0(Q,F){while(!F.reading&&!F.ended&&(F.length<F.highWaterMark||F.flowing&&F.length===0)){let d=F.length;if(T("maybeReadMore read 0"),Q.read(0),d===F.length)break}F.readingMore=!1}g.prototype._read=function(Q){throw new A("_read()")},g.prototype.pipe=function(Q,F){let d=this,n=this._readableState;if(n.pipes.length===1){if(!n.multiAwaitDrain)n.multiAwaitDrain=!0,n.awaitDrainWriters=new G(n.awaitDrainWriters?[n.awaitDrainWriters]:[])}n.pipes.push(Q),T("pipe count=%d opts=%j",n.pipes.length,F);let w0=(!F||F.end!==!1)&&Q!==h.stdout&&Q!==h.stderr?T0:H2;if(n.endEmitted)h.nextTick(w0);else d.once("end",w0);Q.on("unpipe",j0);function j0(B2,u0){if(T("onunpipe"),B2===d){if(u0&&u0.hasUnpiped===!1)u0.hasUnpiped=!0,R6()}}function T0(){T("onend"),Q.end()}let e0,$1=!1;function R6(){if(T("cleanup"),Q.removeListener("close",f2),Q.removeListener("finish",c2),e0)Q.removeListener("drain",e0);if(Q.removeListener("error",y2),Q.removeListener("unpipe",j0),d.removeListener("end",T0),d.removeListener("end",H2),d.removeListener("data",N1),$1=!0,e0&&n.awaitDrainWriters&&(!Q._writableState||Q._writableState.needDrain))e0()}function G1(){if(!$1){if(n.pipes.length===1&&n.pipes[0]===Q)T("false write response, pause",0),n.awaitDrainWriters=Q,n.multiAwaitDrain=!1;else if(n.pipes.length>1&&n.pipes.includes(Q))T("false write response, pause",n.awaitDrainWriters.size),n.awaitDrainWriters.add(Q);d.pause()}if(!e0)e0=L6(d,Q),Q.on("drain",e0)}d.on("data",N1);function N1(B2){T("ondata");let u0=Q.write(B2);if(T("dest.write",u0),u0===!1)G1()}function y2(B2){if(T("onerror",B2),H2(),Q.removeListener("error",y2),Q.listenerCount("error")===0){let u0=Q._writableState||Q._readableState;if(u0&&!u0.errorEmitted)q(Q,B2);else Q.emit("error",B2)}}V(Q,"error",y2);function f2(){Q.removeListener("finish",c2),H2()}Q.once("close",f2);function c2(){T("onfinish"),Q.removeListener("close",f2),H2()}Q.once("finish",c2);function H2(){T("unpipe"),d.unpipe(Q)}if(Q.emit("pipe",d),Q.writableNeedDrain===!0)G1();else if(!n.flowing)T("pipe resume"),d.resume();return Q};function L6(Q,F){return function(){let n=Q._readableState;if(n.awaitDrainWriters===F)T("pipeOnDrain",1),n.awaitDrainWriters=null;else if(n.multiAwaitDrain)T("pipeOnDrain",n.awaitDrainWriters.size),n.awaitDrainWriters.delete(F);if((!n.awaitDrainWriters||n.awaitDrainWriters.size===0)&&Q.listenerCount("data"))Q.resume()}}g.prototype.unpipe=function(Q){let F=this._readableState,d={hasUnpiped:!1};if(F.pipes.length===0)return this;if(!Q){let w0=F.pipes;F.pipes=[],this.pause();for(let j0=0;j0<w0.length;j0++)w0[j0].emit("unpipe",this,{hasUnpiped:!1});return this}let n=U(F.pipes,Q);if(n===-1)return this;if(F.pipes.splice(n,1),F.pipes.length===0)this.pause();return Q.emit("unpipe",this,d),this},g.prototype.on=function(Q,F){let d=v.prototype.on.call(this,Q,F),n=this._readableState;if(Q==="data"){if(n.readableListening=this.listenerCount("readable")>0,n.flowing!==!1)this.resume()}else if(Q==="readable"){if(!n.endEmitted&&!n.readableListening){if(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,T("on readable",n.length,n.reading),n.length)O0(this);else if(!n.reading)h.nextTick(O6,this)}}return d},g.prototype.addListener=g.prototype.on,g.prototype.removeListener=function(Q,F){let d=v.prototype.removeListener.call(this,Q,F);if(Q==="readable")h.nextTick(K1,this);return d},g.prototype.off=g.prototype.removeListener,g.prototype.removeAllListeners=function(Q){let F=v.prototype.removeAllListeners.apply(this,arguments);if(Q==="readable"||Q===void 0)h.nextTick(K1,this);return F};function K1(Q){let F=Q._readableState;if(F.readableListening=Q.listenerCount("readable")>0,F.resumeScheduled&&F[I0]===!1)F.flowing=!0;else if(Q.listenerCount("data")>0)Q.resume();else if(!F.readableListening)F.flowing=null}function O6(Q){T("readable nexttick read 0"),Q.read(0)}g.prototype.resume=function(){let Q=this._readableState;if(!Q.flowing)T("resume"),Q.flowing=!Q.readableListening,x6(this,Q);return Q[I0]=!1,this};function x6(Q,F){if(!F.resumeScheduled)F.resumeScheduled=!0,h.nextTick(D6,Q,F)}function D6(Q,F){if(T("resume",F.reading),!F.reading)Q.read(0);if(F.resumeScheduled=!1,Q.emit("resume"),Y1(Q),F.flowing&&!F.reading)Q.read(0)}g.prototype.pause=function(){if(T("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1)T("pause"),this._readableState.flowing=!1,this.emit("pause");return this._readableState[I0]=!0,this};function Y1(Q){let F=Q._readableState;T("flow",F.flowing);while(F.flowing&&Q.read()!==null);}g.prototype.wrap=function(Q){let F=!1;Q.on("data",(n)=>{if(!this.push(n)&&Q.pause)F=!0,Q.pause()}),Q.on("end",()=>{this.push(null)}),Q.on("error",(n)=>{q(this,n)}),Q.on("close",()=>{this.destroy()}),Q.on("destroy",()=>{this.destroy()}),this._read=()=>{if(F&&Q.resume)F=!1,Q.resume()};let d=H(Q);for(let n=1;n<d.length;n++){let w0=d[n];if(this[w0]===void 0&&typeof Q[w0]==="function")this[w0]=Q[w0].bind(Q)}return this},g.prototype[x]=function(){return q1(this)},g.prototype.iterator=function(Q){if(Q!==void 0)e(Q,"options");return q1(this,Q)};function q1(Q,F){if(typeof Q.read!=="function")Q=g.wrap(Q,{objectMode:!0});let d=P6(Q,F);return d.stream=Q,d}async function*P6(Q,F){let d=X0;function n(T0){if(this===Q)d(),d=X0;else d=T0}Q.on("readable",n);let w0,j0=j(Q,{writable:!1},(T0)=>{w0=T0?D(w0,T0):null,d(),d=X0});try{while(!0){let T0=Q.destroyed?null:Q.read();if(T0!==null)yield T0;else if(w0)throw w0;else if(w0===null)return;else await new N(n)}}catch(T0){throw w0=D(w0,T0),w0}finally{if((w0||(F===null||F===void 0?void 0:F.destroyOnReturn)!==!1)&&(w0===void 0||Q._readableState.autoDestroy))h0.destroyer(Q,null);else Q.off("readable",n),j0()}}Y(g.prototype,{readable:{__proto__:null,get(){let Q=this._readableState;return!!Q&&Q.readable!==!1&&!Q.destroyed&&!Q.errorEmitted&&!Q.endEmitted},set(Q){if(this._readableState)this._readableState.readable=!!Q}},readableDidRead:{__proto__:null,enumerable:!1,get:function(){return this._readableState.dataEmitted}},readableAborted:{__proto__:null,enumerable:!1,get:function(){return!!(this._readableState.readable!==!1&&(this._readableState.destroyed||this._readableState.errored)&&!this._readableState.endEmitted)}},readableHighWaterMark:{__proto__:null,enumerable:!1,get:function(){return this._readableState.highWaterMark}},readableBuffer:{__proto__:null,enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}},readableFlowing:{__proto__:null,enumerable:!1,get:function(){return this._readableState.flowing},set:function(Q){if(this._readableState)this._readableState.flowing=Q}},readableLength:{__proto__:null,enumerable:!1,get(){return this._readableState.length}},readableObjectMode:{__proto__:null,enumerable:!1,get(){return this._readableState?this._readableState.objectMode:!1}},readableEncoding:{__proto__:null,enumerable:!1,get(){return this._readableState?this._readableState.encoding:null}},errored:{__proto__:null,enumerable:!1,get(){return this._readableState?this._readableState.errored:null}},closed:{__proto__:null,get(){return this._readableState?this._readableState.closed:!1}},destroyed:{__proto__:null,enumerable:!1,get(){return this._readableState?this._readableState.destroyed:!1},set(Q){if(!this._readableState)return;this._readableState.destroyed=Q}},readableEnded:{__proto__:null,enumerable:!1,get(){return this._readableState?this._readableState.endEmitted:!1}}}),Y(r.prototype,{pipesCount:{__proto__:null,get(){return this.pipes.length}},paused:{__proto__:null,get(){return this[I0]!==!1},set(Q){this[I0]=!!Q}}}),g._fromList=H1;function H1(Q,F){if(F.length===0)return null;let d;if(F.objectMode)d=F.buffer.shift();else if(!Q||Q>=F.length){if(F.decoder)d=F.buffer.join("");else if(F.buffer.length===1)d=F.buffer.first();else d=F.buffer.concat(F.length);F.buffer.clear()}else d=F.buffer.consume(Q,F.decoder);return d}function k2(Q){let F=Q._readableState;if(T("endReadable",F.endEmitted),!F.endEmitted)F.ended=!0,h.nextTick(T6,F,Q)}function T6(Q,F){if(T("endReadableNT",Q.endEmitted,Q.length),!Q.errored&&!Q.closeEmitted&&!Q.endEmitted&&Q.length===0){if(Q.endEmitted=!0,F.emit("end"),F.writable&&F.allowHalfOpen===!1)h.nextTick(_6,F);else if(Q.autoDestroy){let d=F._writableState;if(!d||d.autoDestroy&&(d.finished||d.writable===!1))F.destroy()}}}function _6(Q){if(Q.writable&&!Q.writableEnded&&!Q.destroyed)Q.end()}g.from=function(Q,F){return S(g,Q,F)};var S2;function z1(){if(S2===void 0)S2={};return S2}g.fromWeb=function(Q,F){return z1().newStreamReadableFromReadableStream(Q,F)},g.toWeb=function(Q,F){return z1().newReadableStreamFromStreamReadable(Q,F)},g.wrap=function(Q,F){var d,n;return new g({objectMode:(d=(n=Q.readableObjectMode)!==null&&n!==void 0?n:Q.objectMode)!==null&&d!==void 0?d:!0,...F,destroy(w0,j0){h0.destroyer(Q,w0),j0(w0)}}).wrap(Q)}}),B1=z0((w,B)=>{var h=X2(),{ArrayPrototypeSlice:U,Error:I,FunctionPrototypeSymbolHasInstance:X,ObjectDefineProperty:Z,ObjectDefineProperties:Y,ObjectSetPrototypeOf:H,StringPrototypeToLowerCase:K,Symbol:N,SymbolHasInstance:G}=N0();B.exports=e,e.WritableState=M;var{EventEmitter:O}=(M2(),_0(W2)),x=e2().Stream,{Buffer:l}=(i0(),_0(b0)),t=q2(),{addAbortSignal:v}=P2(),{getHighWaterMark:V,getDefaultHighWaterMark:J}=T2(),{ERR_INVALID_ARG_TYPE:C,ERR_METHOD_NOT_IMPLEMENTED:j,ERR_MULTIPLE_CALLBACK:T,ERR_STREAM_CANNOT_PIPE:a,ERR_STREAM_DESTROYED:h0,ERR_STREAM_ALREADY_FINISHED:H0,ERR_STREAM_NULL_VALUES:s,ERR_STREAM_WRITE_AFTER_END:D,ERR_UNKNOWN_ENCODING:u}=L0().codes,{errorOrDestroy:A}=t;H(e.prototype,x.prototype),H(e,x);function E(){}var L=N("kOnFinished");function M(z,W,P){if(typeof P!=="boolean")P=W instanceof d0();if(this.objectMode=!!(z&&z.objectMode),P)this.objectMode=this.objectMode||!!(z&&z.writableObjectMode);this.highWaterMark=z?V(this,z,"writableHighWaterMark",P):J(!1),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;let i=!!(z&&z.decodeStrings===!1);this.decodeStrings=!i,this.defaultEncoding=z&&z.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=q.bind(void 0,W),this.writecb=null,this.writelen=0,this.afterWriteTickInfo=null,p(this),this.pendingcb=0,this.constructed=!0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!z||z.emitClose!==!1,this.autoDestroy=!z||z.autoDestroy!==!1,this.errored=null,this.closed=!1,this.closeEmitted=!1,this[L]=[]}function p(z){z.buffered=[],z.bufferedIndex=0,z.allBuffers=!0,z.allNoop=!0}M.prototype.getBuffer=function(){return U(this.buffered,this.bufferedIndex)},Z(M.prototype,"bufferedRequestCount",{__proto__:null,get(){return this.buffered.length-this.bufferedIndex}});function e(z){let W=this instanceof d0();if(!W&&!X(e,this))return new e(z);if(this._writableState=new M(z,this,W),z){if(typeof z.write==="function")this._write=z.write;if(typeof z.writev==="function")this._writev=z.writev;if(typeof z.destroy==="function")this._destroy=z.destroy;if(typeof z.final==="function")this._final=z.final;if(typeof z.construct==="function")this._construct=z.construct;if(z.signal)v(z.signal,this)}x.call(this,z),t.construct(this,()=>{let P=this._writableState;if(!P.writing)U0(this,P);k(this,P)})}Z(e,G,{__proto__:null,value:function(z){if(X(this,z))return!0;if(this!==e)return!1;return z&&z._writableState instanceof M}}),e.prototype.pipe=function(){A(this,new a)};function I0(z,W,P,i){let m=z._writableState;if(typeof P==="function")i=P,P=m.defaultEncoding;else{if(!P)P=m.defaultEncoding;else if(P!=="buffer"&&!l.isEncoding(P))throw new u(P);if(typeof i!=="function")i=E}if(W===null)throw new s;else if(!m.objectMode)if(typeof W==="string"){if(m.decodeStrings!==!1)W=l.from(W,P),P="buffer"}else if(W instanceof l)P="buffer";else if(x._isUint8Array(W))W=x._uint8ArrayToBuffer(W),P="buffer";else throw new C("chunk",["string","Buffer","Uint8Array"],W);let b;if(m.ending)b=new D;else if(m.destroyed)b=new h0("write");if(b)return h.nextTick(i,b),A(z,b,!0),b;return m.pendingcb++,Y0(z,m,W,P,i)}e.prototype.write=function(z,W,P){return I0(this,z,W,P)===!0},e.prototype.cork=function(){this._writableState.corked++},e.prototype.uncork=function(){let z=this._writableState;if(z.corked){if(z.corked--,!z.writing)U0(this,z)}},e.prototype.setDefaultEncoding=function(W){if(typeof W==="string")W=K(W);if(!l.isEncoding(W))throw new u(W);return this._writableState.defaultEncoding=W,this};function Y0(z,W,P,i,m){let b=W.objectMode?1:P.length;W.length+=b;let $=W.length<W.highWaterMark;if(!$)W.needDrain=!0;if(W.writing||W.corked||W.errored||!W.constructed){if(W.buffered.push({chunk:P,encoding:i,callback:m}),W.allBuffers&&i!=="buffer")W.allBuffers=!1;if(W.allNoop&&m!==E)W.allNoop=!1}else W.writelen=b,W.writecb=m,W.writing=!0,W.sync=!0,z._write(P,i,W.onwrite),W.sync=!1;return $&&!W.errored&&!W.destroyed}function S(z,W,P,i,m,b,$){if(W.writelen=i,W.writecb=$,W.writing=!0,W.sync=!0,W.destroyed)W.onwrite(new h0("write"));else if(P)z._writev(m,W.onwrite);else z._write(m,b,W.onwrite);W.sync=!1}function X0(z,W,P,i){--W.pendingcb,i(P),R(W),A(z,P)}function q(z,W){let P=z._writableState,i=P.sync,m=P.writecb;if(typeof m!=="function"){A(z,new T);return}if(P.writing=!1,P.writecb=null,P.length-=P.writelen,P.writelen=0,W){if(W.stack,!P.errored)P.errored=W;if(z._readableState&&!z._readableState.errored)z._readableState.errored=W;if(i)h.nextTick(X0,z,P,W,m);else X0(z,P,W,m)}else{if(P.buffered.length>P.bufferedIndex)U0(z,P);if(i)if(P.afterWriteTickInfo!==null&&P.afterWriteTickInfo.cb===m)P.afterWriteTickInfo.count++;else P.afterWriteTickInfo={count:1,cb:m,stream:z,state:P},h.nextTick(c,P.afterWriteTickInfo);else B0(z,P,1,m)}}function c({stream:z,state:W,count:P,cb:i}){return W.afterWriteTickInfo=null,B0(z,W,P,i)}function B0(z,W,P,i){if(!W.ending&&!z.destroyed&&W.length===0&&W.needDrain)W.needDrain=!1,z.emit("drain");while(P-- >0)W.pendingcb--,i();if(W.destroyed)R(W);k(z,W)}function R(z){if(z.writing)return;for(let m=z.bufferedIndex;m<z.buffered.length;++m){var W;let{chunk:b,callback:$}=z.buffered[m],f=z.objectMode?1:b.length;z.length-=f,$((W=z.errored)!==null&&W!==void 0?W:new h0("write"))}let P=z[L].splice(0);for(let m=0;m<P.length;m++){var i;P[m]((i=z.errored)!==null&&i!==void 0?i:new h0("end"))}p(z)}function U0(z,W){if(W.corked||W.bufferProcessing||W.destroyed||!W.constructed)return;let{buffered:P,bufferedIndex:i,objectMode:m}=W,b=P.length-i;if(!b)return;let $=i;if(W.bufferProcessing=!0,b>1&&z._writev){W.pendingcb-=b-1;let f=W.allNoop?E:(g)=>{for(let Z0=$;Z0<P.length;++Z0)P[Z0].callback(g)},r=W.allNoop&&$===0?P:U(P,$);r.allBuffers=W.allBuffers,S(z,W,!0,W.length,r,"",f),p(W)}else{do{let{chunk:f,encoding:r,callback:g}=P[$];P[$++]=null;let Z0=m?1:f.length;S(z,W,!1,Z0,f,r,g)}while($<P.length&&!W.writing);if($===P.length)p(W);else if($>256)P.splice(0,$),W.bufferedIndex=0;else W.bufferedIndex=$}W.bufferProcessing=!1}e.prototype._write=function(z,W,P){if(this._writev)this._writev([{chunk:z,encoding:W}],P);else throw new j("_write()")},e.prototype._writev=null,e.prototype.end=function(z,W,P){let i=this._writableState;if(typeof z==="function")P=z,z=null,W=null;else if(typeof W==="function")P=W,W=null;let m;if(z!==null&&z!==void 0){let b=I0(this,z,W);if(b instanceof I)m=b}if(i.corked)i.corked=1,this.uncork();if(m);else if(!i.errored&&!i.ending)i.ending=!0,k(this,i,!0),i.ended=!0;else if(i.finished)m=new H0("end");else if(i.destroyed)m=new h0("end");if(typeof P==="function")if(m||i.finished)h.nextTick(P,m);else i[L].push(P);return this};function Q0(z){return z.ending&&!z.destroyed&&z.constructed&&z.length===0&&!z.errored&&z.buffered.length===0&&!z.finished&&!z.writing&&!z.errorEmitted&&!z.closeEmitted}function q0(z,W){let P=!1;function i(m){if(P){A(z,m!==null&&m!==void 0?m:T());return}if(P=!0,W.pendingcb--,m){let b=W[L].splice(0);for(let $=0;$<b.length;$++)b[$](m);A(z,m,W.sync)}else if(Q0(W))W.prefinished=!0,z.emit("prefinish"),W.pendingcb++,h.nextTick(y,z,W)}W.sync=!0,W.pendingcb++;try{z._final(i)}catch(m){i(m)}W.sync=!1}function K0(z,W){if(!W.prefinished&&!W.finalCalled)if(typeof z._final==="function"&&!W.destroyed)W.finalCalled=!0,q0(z,W);else W.prefinished=!0,z.emit("prefinish")}function k(z,W,P){if(Q0(W)){if(K0(z,W),W.pendingcb===0){if(P)W.pendingcb++,h.nextTick((i,m)=>{if(Q0(m))y(i,m);else m.pendingcb--},z,W);else if(Q0(W))W.pendingcb++,y(z,W)}}}function y(z,W){W.pendingcb--,W.finished=!0;let P=W[L].splice(0);for(let i=0;i<P.length;i++)P[i]();if(z.emit("finish"),W.autoDestroy){let i=z._readableState;if(!i||i.autoDestroy&&(i.endEmitted||i.readable===!1))z.destroy()}}Y(e.prototype,{closed:{__proto__:null,get(){return this._writableState?this._writableState.closed:!1}},destroyed:{__proto__:null,get(){return this._writableState?this._writableState.destroyed:!1},set(z){if(this._writableState)this._writableState.destroyed=z}},writable:{__proto__:null,get(){let z=this._writableState;return!!z&&z.writable!==!1&&!z.destroyed&&!z.errored&&!z.ending&&!z.ended},set(z){if(this._writableState)this._writableState.writable=!!z}},writableFinished:{__proto__:null,get(){return this._writableState?this._writableState.finished:!1}},writableObjectMode:{__proto__:null,get(){return this._writableState?this._writableState.objectMode:!1}},writableBuffer:{__proto__:null,get(){return this._writableState&&this._writableState.getBuffer()}},writableEnded:{__proto__:null,get(){return this._writableState?this._writableState.ending:!1}},writableNeedDrain:{__proto__:null,get(){let z=this._writableState;if(!z)return!1;return!z.destroyed&&!z.ending&&z.needDrain}},writableHighWaterMark:{__proto__:null,get(){return this._writableState&&this._writableState.highWaterMark}},writableCorked:{__proto__:null,get(){return this._writableState?this._writableState.corked:0}},writableLength:{__proto__:null,get(){return this._writableState&&this._writableState.length}},errored:{__proto__:null,enumerable:!1,get(){return this._writableState?this._writableState.errored:null}},writableAborted:{__proto__:null,enumerable:!1,get:function(){return!!(this._writableState.writable!==!1&&(this._writableState.destroyed||this._writableState.errored)&&!this._writableState.finished)}}});var o=t.destroy;e.prototype.destroy=function(z,W){let P=this._writableState;if(!P.destroyed&&(P.bufferedIndex<P.buffered.length||P[L].length))h.nextTick(R,P);return o.call(this,z,W),this},e.prototype._undestroy=t.undestroy,e.prototype._destroy=function(z,W){W(z)},e.prototype[O.captureRejectionSymbol]=function(z){this.destroy(z)};var J0;function F0(){if(J0===void 0)J0={};return J0}e.fromWeb=function(z,W){return F0().newStreamWritableFromWritableStream(z,W)},e.toWeb=function(z){return F0().newWritableStreamFromStreamWritable(z)}}),g8=z0((w,B)=>{var h=X2(),U=(i0(),_0(b0)),{isReadable:I,isWritable:X,isIterable:Z,isNodeStream:Y,isReadableNodeStream:H,isWritableNodeStream:K,isDuplexNodeStream:N,isReadableStream:G,isWritableStream:O}=l0(),x=a0(),{AbortError:l,codes:{ERR_INVALID_ARG_TYPE:t,ERR_INVALID_RETURN_VALUE:v}}=L0(),{destroyer:V}=q2(),J=d0(),C=_2(),j=B1(),{createDeferredPromise:T}=D0(),a=q6(),h0=globalThis.Blob||U.Blob,H0=typeof h0<"u"?function(M){return M instanceof h0}:function(M){return!1},s=globalThis.AbortController||E2().AbortController,{FunctionPrototypeCall:D}=N0();class u extends J{constructor(L){super(L);if((L===null||L===void 0?void 0:L.readable)===!1)this._readableState.readable=!1,this._readableState.ended=!0,this._readableState.endEmitted=!0;if((L===null||L===void 0?void 0:L.writable)===!1)this._writableState.writable=!1,this._writableState.ending=!0,this._writableState.ended=!0,this._writableState.finished=!0}}B.exports=function L(M,p){if(N(M))return M;if(H(M))return E({readable:M});if(K(M))return E({writable:M});if(Y(M))return E({writable:!1,readable:!1});if(G(M))return E({readable:C.fromWeb(M)});if(O(M))return E({writable:j.fromWeb(M)});if(typeof M==="function"){let{value:I0,write:Y0,final:S,destroy:X0}=A(M);if(Z(I0))return a(u,I0,{objectMode:!0,write:Y0,final:S,destroy:X0});let q=I0===null||I0===void 0?void 0:I0.then;if(typeof q==="function"){let c,B0=D(q,I0,(R)=>{if(R!=null)throw new v("nully","body",R)},(R)=>{V(c,R)});return c=new u({objectMode:!0,readable:!1,write:Y0,final(R){S(async()=>{try{await B0,h.nextTick(R,null)}catch(U0){h.nextTick(R,U0)}})},destroy:X0})}throw new v("Iterable, AsyncIterable or AsyncFunction",p,I0)}if(H0(M))return L(M.arrayBuffer());if(Z(M))return a(u,M,{objectMode:!0,writable:!1});if(G(M===null||M===void 0?void 0:M.readable)&&O(M===null||M===void 0?void 0:M.writable))return u.fromWeb(M);if(typeof(M===null||M===void 0?void 0:M.writable)==="object"||typeof(M===null||M===void 0?void 0:M.readable)==="object"){let I0=M!==null&&M!==void 0&&M.readable?H(M===null||M===void 0?void 0:M.readable)?M===null||M===void 0?void 0:M.readable:L(M.readable):void 0,Y0=M!==null&&M!==void 0&&M.writable?K(M===null||M===void 0?void 0:M.writable)?M===null||M===void 0?void 0:M.writable:L(M.writable):void 0;return E({readable:I0,writable:Y0})}let e=M===null||M===void 0?void 0:M.then;if(typeof e==="function"){let I0;return D(e,M,(Y0)=>{if(Y0!=null)I0.push(Y0);I0.push(null)},(Y0)=>{V(I0,Y0)}),I0=new u({objectMode:!0,writable:!1,read(){}})}throw new t(p,["Blob","ReadableStream","WritableStream","Stream","Iterable","AsyncIterable","Function","{ readable, writable } pair","Promise"],M)};function A(L){let{promise:M,resolve:p}=T(),e=new s,I0=e.signal;return{value:L(async function*(){while(!0){let Y0=M;M=null;let{chunk:S,done:X0,cb:q}=await Y0;if(h.nextTick(q),X0)return;if(I0.aborted)throw new l(void 0,{cause:I0.reason});({promise:M,resolve:p}=T()),yield S}}(),{signal:I0}),write(Y0,S,X0){let q=p;p=null,q({chunk:Y0,done:!1,cb:X0})},final(Y0){let S=p;p=null,S({done:!0,cb:Y0})},destroy(Y0,S){e.abort(),S(Y0)}}}function E(L){let M=L.readable&&typeof L.readable.read!=="function"?C.wrap(L.readable):L.readable,p=L.writable,e=!!I(M),I0=!!X(p),Y0,S,X0,q,c;function B0(R){let U0=q;if(q=null,U0)U0(R);else if(R)c.destroy(R)}if(c=new u({readableObjectMode:!!(M!==null&&M!==void 0&&M.readableObjectMode),writableObjectMode:!!(p!==null&&p!==void 0&&p.writableObjectMode),readable:e,writable:I0}),I0)x(p,(R)=>{if(I0=!1,R)V(M,R);B0(R)}),c._write=function(R,U0,Q0){if(p.write(R,U0))Q0();else Y0=Q0},c._final=function(R){p.end(),S=R},p.on("drain",function(){if(Y0){let R=Y0;Y0=null,R()}}),p.on("finish",function(){if(S){let R=S;S=null,R()}});if(e)x(M,(R)=>{if(e=!1,R)V(M,R);B0(R)}),M.on("readable",function(){if(X0){let R=X0;X0=null,R()}}),M.on("end",function(){c.push(null)}),c._read=function(){while(!0){let R=M.read();if(R===null){X0=c._read;return}if(!c.push(R))return}};return c._destroy=function(R,U0){if(!R&&q!==null)R=new l;if(X0=null,Y0=null,S=null,q===null)U0(R);else q=U0,V(p,R),V(M,R)},c}}),d0=z0((w,B)=>{var{ObjectDefineProperties:h,ObjectGetOwnPropertyDescriptor:U,ObjectKeys:I,ObjectSetPrototypeOf:X}=N0();B.exports=H;var Z=_2(),Y=B1();X(H.prototype,Z.prototype),X(H,Z);{let O=I(Y.prototype);for(let x=0;x<O.length;x++){let l=O[x];if(!H.prototype[l])H.prototype[l]=Y.prototype[l]}}function H(O){if(!(this instanceof H))return new H(O);if(Z.call(this,O),Y.call(this,O),O){if(this.allowHalfOpen=O.allowHalfOpen!==!1,O.readable===!1)this._readableState.readable=!1,this._readableState.ended=!0,this._readableState.endEmitted=!0;if(O.writable===!1)this._writableState.writable=!1,this._writableState.ending=!0,this._writableState.ended=!0,this._writableState.finished=!0}else this.allowHalfOpen=!0}h(H.prototype,{writable:{__proto__:null,...U(Y.prototype,"writable")},writableHighWaterMark:{__proto__:null,...U(Y.prototype,"writableHighWaterMark")},writableObjectMode:{__proto__:null,...U(Y.prototype,"writableObjectMode")},writableBuffer:{__proto__:null,...U(Y.prototype,"writableBuffer")},writableLength:{__proto__:null,...U(Y.prototype,"writableLength")},writableFinished:{__proto__:null,...U(Y.prototype,"writableFinished")},writableCorked:{__proto__:null,...U(Y.prototype,"writableCorked")},writableEnded:{__proto__:null,...U(Y.prototype,"writableEnded")},writableNeedDrain:{__proto__:null,...U(Y.prototype,"writableNeedDrain")},destroyed:{__proto__:null,get(){if(this._readableState===void 0||this._writableState===void 0)return!1;return this._readableState.destroyed&&this._writableState.destroyed},set(O){if(this._readableState&&this._writableState)this._readableState.destroyed=O,this._writableState.destroyed=O}}});var K;function N(){if(K===void 0)K={};return K}H.fromWeb=function(O,x){return N().newStreamDuplexFromReadableWritablePair(O,x)},H.toWeb=function(O){return N().newReadableWritablePairFromDuplex(O)};var G;H.from=function(O){if(!G)G=g8();return G(O,"body")}}),H6=z0((w,B)=>{var{ObjectSetPrototypeOf:h,Symbol:U}=N0();B.exports=H;var{ERR_METHOD_NOT_IMPLEMENTED:I}=L0().codes,X=d0(),{getHighWaterMark:Z}=T2();h(H.prototype,X.prototype),h(H,X);var Y=U("kCallback");function H(G){if(!(this instanceof H))return new H(G);let O=G?Z(this,G,"readableHighWaterMark",!0):null;if(O===0)G={...G,highWaterMark:null,readableHighWaterMark:O,writableHighWaterMark:G.writableHighWaterMark||0};if(X.call(this,G),this._readableState.sync=!1,this[Y]=null,G){if(typeof G.transform==="function")this._transform=G.transform;if(typeof G.flush==="function")this._flush=G.flush}this.on("prefinish",N)}function K(G){if(typeof this._flush==="function"&&!this.destroyed)this._flush((O,x)=>{if(O){if(G)G(O);else this.destroy(O);return}if(x!=null)this.push(x);if(this.push(null),G)G()});else if(this.push(null),G)G()}function N(){if(this._final!==K)K.call(this)}H.prototype._final=K,H.prototype._transform=function(G,O,x){throw new I("_transform()")},H.prototype._write=function(G,O,x){let l=this._readableState,t=this._writableState,v=l.length;this._transform(G,O,(V,J)=>{if(V){x(V);return}if(J!=null)this.push(J);if(t.ended||v===l.length||l.length<l.highWaterMark)x();else this[Y]=x})},H.prototype._read=function(){if(this[Y]){let G=this[Y];this[Y]=null,G()}}}),z6=z0((w,B)=>{var{ObjectSetPrototypeOf:h}=N0();B.exports=I;var U=H6();h(I.prototype,U.prototype),h(I,U);function I(X){if(!(this instanceof I))return new I(X);U.call(this,X)}I.prototype._transform=function(X,Z,Y){Y(null,X)}}),h1=z0((w,B)=>{var h=X2(),{ArrayIsArray:U,Promise:I,SymbolAsyncIterator:X,SymbolDispose:Z}=N0(),Y=a0(),{once:H}=D0(),K=q2(),N=d0(),{aggregateTwoErrors:G,codes:{ERR_INVALID_ARG_TYPE:O,ERR_INVALID_RETURN_VALUE:x,ERR_MISSING_ARGS:l,ERR_STREAM_DESTROYED:t,ERR_STREAM_PREMATURE_CLOSE:v},AbortError:V}=L0(),{validateFunction:J,validateAbortSignal:C}=V2(),{isIterable:j,isReadable:T,isReadableNodeStream:a,isNodeStream:h0,isTransformStream:H0,isWebStream:s,isReadableStream:D,isReadableFinished:u}=l0(),A=globalThis.AbortController||E2().AbortController,E,L,M;function p(R,U0,Q0){let q0=!1;R.on("close",()=>{q0=!0});let K0=Y(R,{readable:U0,writable:Q0},(k)=>{q0=!k});return{destroy:(k)=>{if(q0)return;q0=!0,K.destroyer(R,k||new t("pipe"))},cleanup:K0}}function e(R){return J(R[R.length-1],"streams[stream.length - 1]"),R.pop()}function I0(R){if(j(R))return R;else if(a(R))return Y0(R);throw new O("val",["Readable","Iterable","AsyncIterable"],R)}async function*Y0(R){if(!L)L=_2();yield*L.prototype[X].call(R)}async function S(R,U0,Q0,{end:q0}){let K0,k=null,y=(F0)=>{if(F0)K0=F0;if(k){let z=k;k=null,z()}},o=()=>new I((F0,z)=>{if(K0)z(K0);else k=()=>{if(K0)z(K0);else F0()}});U0.on("drain",y);let J0=Y(U0,{readable:!1},y);try{if(U0.writableNeedDrain)await o();for await(let F0 of R)if(!U0.write(F0))await o();if(q0)U0.end(),await o();Q0()}catch(F0){Q0(K0!==F0?G(K0,F0):F0)}finally{J0(),U0.off("drain",y)}}async function X0(R,U0,Q0,{end:q0}){if(H0(U0))U0=U0.writable;let K0=U0.getWriter();try{for await(let k of R)await K0.ready,K0.write(k).catch(()=>{});if(await K0.ready,q0)await K0.close();Q0()}catch(k){try{await K0.abort(k),Q0(k)}catch(y){Q0(y)}}}function q(...R){return c(R,H(e(R)))}function c(R,U0,Q0){if(R.length===1&&U(R[0]))R=R[0];if(R.length<2)throw new l("streams");let q0=new A,K0=q0.signal,k=Q0===null||Q0===void 0?void 0:Q0.signal,y=[];C(k,"options.signal");function o(){m(new V)}M=M||D0().addAbortListener;let J0;if(k)J0=M(k,o);let F0,z,W=[],P=0;function i(g){m(g,--P===0)}function m(g,Z0){var P0;if(g&&(!F0||F0.code==="ERR_STREAM_PREMATURE_CLOSE"))F0=g;if(!F0&&!Z0)return;while(W.length)W.shift()(F0);if((P0=J0)===null||P0===void 0||P0[Z](),q0.abort(),Z0){if(!F0)y.forEach((C0)=>C0());h.nextTick(U0,F0,z)}}let b;for(let g=0;g<R.length;g++){let Z0=R[g],P0=g<R.length-1,C0=g>0,M0=P0||(Q0===null||Q0===void 0?void 0:Q0.end)!==!1,t0=g===R.length-1;if(h0(Z0)){let V0=function(O0){if(O0&&O0.name!=="AbortError"&&O0.code!=="ERR_STREAM_PREMATURE_CLOSE")i(O0)};var $=V0;if(M0){let{destroy:O0,cleanup:Q2}=p(Z0,P0,C0);if(W.push(O0),T(Z0)&&t0)y.push(Q2)}if(Z0.on("error",V0),T(Z0)&&t0)y.push(()=>{Z0.removeListener("error",V0)})}if(g===0)if(typeof Z0==="function"){if(b=Z0({signal:K0}),!j(b))throw new x("Iterable, AsyncIterable or Stream","source",b)}else if(j(Z0)||a(Z0)||H0(Z0))b=Z0;else b=N.from(Z0);else if(typeof Z0==="function"){if(H0(b)){var f;b=I0((f=b)===null||f===void 0?void 0:f.readable)}else b=I0(b);if(b=Z0(b,{signal:K0}),P0){if(!j(b,!0))throw new x("AsyncIterable",`transform[${g-1}]`,b)}else{var r;if(!E)E=z6();let V0=new E({objectMode:!0}),O0=(r=b)===null||r===void 0?void 0:r.then;if(typeof O0==="function")P++,O0.call(b,(S0)=>{if(z=S0,S0!=null)V0.write(S0);if(M0)V0.end();h.nextTick(i)},(S0)=>{V0.destroy(S0),h.nextTick(i,S0)});else if(j(b,!0))P++,S(b,V0,i,{end:M0});else if(D(b)||H0(b)){let S0=b.readable||b;P++,S(S0,V0,i,{end:M0})}else throw new x("AsyncIterable or Promise","destination",b);b=V0;let{destroy:Q2,cleanup:F2}=p(b,!1,!0);if(W.push(Q2),t0)y.push(F2)}}else if(h0(Z0)){if(a(b)){P+=2;let V0=B0(b,Z0,i,{end:M0});if(T(Z0)&&t0)y.push(V0)}else if(H0(b)||D(b)){let V0=b.readable||b;P++,S(V0,Z0,i,{end:M0})}else if(j(b))P++,S(b,Z0,i,{end:M0});else throw new O("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],b);b=Z0}else if(s(Z0)){if(a(b))P++,X0(I0(b),Z0,i,{end:M0});else if(D(b)||j(b))P++,X0(b,Z0,i,{end:M0});else if(H0(b))P++,X0(b.readable,Z0,i,{end:M0});else throw new O("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],b);b=Z0}else b=N.from(Z0)}if(K0!==null&&K0!==void 0&&K0.aborted||k!==null&&k!==void 0&&k.aborted)h.nextTick(o);return b}function B0(R,U0,Q0,{end:q0}){let K0=!1;if(U0.on("close",()=>{if(!K0)Q0(new v)}),R.pipe(U0,{end:!1}),q0){let y=function(){K0=!0,U0.end()};var k=y;if(u(R))h.nextTick(y);else R.once("end",y)}else Q0();return Y(R,{readable:!0,writable:!1},(y)=>{let o=R._readableState;if(y&&y.code==="ERR_STREAM_PREMATURE_CLOSE"&&o&&o.ended&&!o.errored&&!o.errorEmitted)R.once("end",Q0).once("error",Q0);else Q0(y)}),Y(U0,{readable:!1,writable:!0},Q0)}B.exports={pipelineImpl:c,pipeline:q}}),$6=z0((w,B)=>{var{pipeline:h}=h1(),U=d0(),{destroyer:I}=q2(),{isNodeStream:X,isReadable:Z,isWritable:Y,isWebStream:H,isTransformStream:K,isWritableStream:N,isReadableStream:G}=l0(),{AbortError:O,codes:{ERR_INVALID_ARG_VALUE:x,ERR_MISSING_ARGS:l}}=L0(),t=a0();B.exports=function(...V){if(V.length===0)throw new l("streams");if(V.length===1)return U.from(V[0]);let J=[...V];if(typeof V[0]==="function")V[0]=U.from(V[0]);if(typeof V[V.length-1]==="function"){let E=V.length-1;V[E]=U.from(V[E])}for(let E=0;E<V.length;++E){if(!X(V[E])&&!H(V[E]))continue;if(E<V.length-1&&!(Z(V[E])||G(V[E])||K(V[E])))throw new x(`streams[${E}]`,J[E],"must be readable");if(E>0&&!(Y(V[E])||N(V[E])||K(V[E])))throw new x(`streams[${E}]`,J[E],"must be writable")}let C,j,T,a,h0;function H0(E){let L=a;if(a=null,L)L(E);else if(E)h0.destroy(E);else if(!A&&!u)h0.destroy()}let s=V[0],D=h(V,H0),u=!!(Y(s)||N(s)||K(s)),A=!!(Z(D)||G(D)||K(D));if(h0=new U({writableObjectMode:!!(s!==null&&s!==void 0&&s.writableObjectMode),readableObjectMode:!!(D!==null&&D!==void 0&&D.readableObjectMode),writable:u,readable:A}),u){if(X(s))h0._write=function(L,M,p){if(s.write(L,M))p();else C=p},h0._final=function(L){s.end(),j=L},s.on("drain",function(){if(C){let L=C;C=null,L()}});else if(H(s)){let L=(K(s)?s.writable:s).getWriter();h0._write=async function(M,p,e){try{await L.ready,L.write(M).catch(()=>{}),e()}catch(I0){e(I0)}},h0._final=async function(M){try{await L.ready,L.close().catch(()=>{}),j=M}catch(p){M(p)}}}let E=K(D)?D.readable:D;t(E,()=>{if(j){let L=j;j=null,L()}})}if(A){if(X(D))D.on("readable",function(){if(T){let E=T;T=null,E()}}),D.on("end",function(){h0.push(null)}),h0._read=function(){while(!0){let E=D.read();if(E===null){T=h0._read;return}if(!h0.push(E))return}};else if(H(D)){let E=(K(D)?D.readable:D).getReader();h0._read=async function(){while(!0)try{let{value:L,done:M}=await E.read();if(!h0.push(L))return;if(M){h0.push(null);return}}catch{return}}}}return h0._destroy=function(E,L){if(!E&&a!==null)E=new O;if(T=null,C=null,j=null,a===null)L(E);else if(a=L,X(D))I(D,E)},h0}}),p8=z0((w,B)=>{var h=globalThis.AbortController||E2().AbortController,{codes:{ERR_INVALID_ARG_VALUE:U,ERR_INVALID_ARG_TYPE:I,ERR_MISSING_ARGS:X,ERR_OUT_OF_RANGE:Z},AbortError:Y}=L0(),{validateAbortSignal:H,validateInteger:K,validateObject:N}=V2(),G=N0().Symbol("kWeak"),O=N0().Symbol("kResistStopPropagation"),{finished:x}=a0(),l=$6(),{addAbortSignalNoValidate:t}=P2(),{isWritable:v,isNodeStream:V}=l0(),{deprecate:J}=D0(),{ArrayPrototypePush:C,Boolean:j,MathFloor:T,Number:a,NumberIsNaN:h0,Promise:H0,PromiseReject:s,PromiseResolve:D,PromisePrototypeThen:u,Symbol:A}=N0(),E=A("kEmpty"),L=A("kEof");function M(k,y){if(y!=null)N(y,"options");if((y===null||y===void 0?void 0:y.signal)!=null)H(y.signal,"options.signal");if(V(k)&&!v(k))throw new U("stream",k,"must be writable");let o=l(this,k);if(y!==null&&y!==void 0&&y.signal)t(y.signal,o);return o}function p(k,y){if(typeof k!=="function")throw new I("fn",["Function","AsyncFunction"],k);if(y!=null)N(y,"options");if((y===null||y===void 0?void 0:y.signal)!=null)H(y.signal,"options.signal");let o=1;if((y===null||y===void 0?void 0:y.concurrency)!=null)o=T(y.concurrency);let J0=o-1;if((y===null||y===void 0?void 0:y.highWaterMark)!=null)J0=T(y.highWaterMark);return K(o,"options.concurrency",1),K(J0,"options.highWaterMark",0),J0+=o,async function*(){let z=D0().AbortSignalAny([y===null||y===void 0?void 0:y.signal].filter(j)),W=this,P=[],i={signal:z},m,b,$=!1,f=0;function r(){$=!0,g()}function g(){f-=1,Z0()}function Z0(){if(b&&!$&&f<o&&P.length<J0)b(),b=null}async function P0(){try{for await(let C0 of W){if($)return;if(z.aborted)throw new Y;try{if(C0=k(C0,i),C0===E)continue;C0=D(C0)}catch(M0){C0=s(M0)}if(f+=1,u(C0,g,r),P.push(C0),m)m(),m=null;if(!$&&(P.length>=J0||f>=o))await new H0((M0)=>{b=M0})}P.push(L)}catch(C0){let M0=s(C0);u(M0,g,r),P.push(M0)}finally{if($=!0,m)m(),m=null}}P0();try{while(!0){while(P.length>0){let C0=await P[0];if(C0===L)return;if(z.aborted)throw new Y;if(C0!==E)yield C0;P.shift(),Z0()}await new H0((C0)=>{m=C0})}}finally{if($=!0,b)b(),b=null}}.call(this)}function e(k=void 0){if(k!=null)N(k,"options");if((k===null||k===void 0?void 0:k.signal)!=null)H(k.signal,"options.signal");return async function*(){let o=0;for await(let F0 of this){var J0;if(k!==null&&k!==void 0&&(J0=k.signal)!==null&&J0!==void 0&&J0.aborted)throw new Y({cause:k.signal.reason});yield[o++,F0]}}.call(this)}async function I0(k,y=void 0){for await(let o of q.call(this,k,y))return!0;return!1}async function Y0(k,y=void 0){if(typeof k!=="function")throw new I("fn",["Function","AsyncFunction"],k);return!await I0.call(this,async(...o)=>{return!await k(...o)},y)}async function S(k,y){for await(let o of q.call(this,k,y))return o;return}async function X0(k,y){if(typeof k!=="function")throw new I("fn",["Function","AsyncFunction"],k);async function o(J0,F0){return await k(J0,F0),E}for await(let J0 of p.call(this,o,y));}function q(k,y){if(typeof k!=="function")throw new I("fn",["Function","AsyncFunction"],k);async function o(J0,F0){if(await k(J0,F0))return J0;return E}return p.call(this,o,y)}class c extends X{constructor(){super("reduce");this.message="Reduce of an empty stream requires an initial value"}}async function B0(k,y,o){var J0;if(typeof k!=="function")throw new I("reducer",["Function","AsyncFunction"],k);if(o!=null)N(o,"options");if((o===null||o===void 0?void 0:o.signal)!=null)H(o.signal,"options.signal");let F0=arguments.length>1;if(o!==null&&o!==void 0&&(J0=o.signal)!==null&&J0!==void 0&&J0.aborted){let m=new Y(void 0,{cause:o.signal.reason});throw this.once("error",()=>{}),await x(this.destroy(m)),m}let z=new h,W=z.signal;if(o!==null&&o!==void 0&&o.signal){let m={once:!0,[G]:this,[O]:!0};o.signal.addEventListener("abort",()=>z.abort(),m)}let P=!1;try{for await(let m of this){var i;if(P=!0,o!==null&&o!==void 0&&(i=o.signal)!==null&&i!==void 0&&i.aborted)throw new Y;if(!F0)y=m,F0=!0;else y=await k(y,m,{signal:W})}if(!P&&!F0)throw new c}finally{z.abort()}return y}async function R(k){if(k!=null)N(k,"options");if((k===null||k===void 0?void 0:k.signal)!=null)H(k.signal,"options.signal");let y=[];for await(let J0 of this){var o;if(k!==null&&k!==void 0&&(o=k.signal)!==null&&o!==void 0&&o.aborted)throw new Y(void 0,{cause:k.signal.reason});C(y,J0)}return y}function U0(k,y){let o=p.call(this,k,y);return async function*(){for await(let F0 of o)yield*F0}.call(this)}function Q0(k){if(k=a(k),h0(k))return 0;if(k<0)throw new Z("number",">= 0",k);return k}function q0(k,y=void 0){if(y!=null)N(y,"options");if((y===null||y===void 0?void 0:y.signal)!=null)H(y.signal,"options.signal");return k=Q0(k),async function*(){var J0;if(y!==null&&y!==void 0&&(J0=y.signal)!==null&&J0!==void 0&&J0.aborted)throw new Y;for await(let z of this){var F0;if(y!==null&&y!==void 0&&(F0=y.signal)!==null&&F0!==void 0&&F0.aborted)throw new Y;if(k--<=0)yield z}}.call(this)}function K0(k,y=void 0){if(y!=null)N(y,"options");if((y===null||y===void 0?void 0:y.signal)!=null)H(y.signal,"options.signal");return k=Q0(k),async function*(){var J0;if(y!==null&&y!==void 0&&(J0=y.signal)!==null&&J0!==void 0&&J0.aborted)throw new Y;for await(let z of this){var F0;if(y!==null&&y!==void 0&&(F0=y.signal)!==null&&F0!==void 0&&F0.aborted)throw new Y;if(k-- >0)yield z;if(k<=0)return}}.call(this)}B.exports.streamReturningOperators={asIndexedPairs:J(e,"readable.asIndexedPairs will be removed in a future version."),drop:q0,filter:q,flatMap:U0,map:p,take:K0,compose:M},B.exports.promiseReturningOperators={every:Y0,forEach:X0,reduce:B0,toArray:R,some:I0,find:S}}),G6=z0((w,B)=>{var{ArrayPrototypePop:h,Promise:U}=N0(),{isIterable:I,isNodeStream:X,isWebStream:Z}=l0(),{pipelineImpl:Y}=h1(),{finished:H}=a0();N6();function K(...N){return new U((G,O)=>{let x,l,t=N[N.length-1];if(t&&typeof t==="object"&&!X(t)&&!I(t)&&!Z(t)){let v=h(N);x=v.signal,l=v.end}Y(N,(v,V)=>{if(v)O(v);else G(V)},{signal:x,end:l})})}B.exports={finished:H,pipeline:K}}),N6=z0((w,B)=>{var{Buffer:h}=(i0(),_0(b0)),{ObjectDefineProperty:U,ObjectKeys:I,ReflectApply:X}=N0(),{promisify:{custom:Z}}=D0(),{streamReturningOperators:Y,promiseReturningOperators:H}=p8(),{codes:{ERR_ILLEGAL_CONSTRUCTOR:K}}=L0(),N=$6(),{setDefaultHighWaterMark:G,getDefaultHighWaterMark:O}=T2(),{pipeline:x}=h1(),{destroyer:l}=q2(),t=a0(),v=G6(),V=l0(),J=B.exports=e2().Stream;J.isDestroyed=V.isDestroyed,J.isDisturbed=V.isDisturbed,J.isErrored=V.isErrored,J.isReadable=V.isReadable,J.isWritable=V.isWritable,J.Readable=_2();for(let j of I(Y)){let T=function(...h0){if(new.target)throw K();return J.Readable.from(X(a,this,h0))},a=Y[j];U(T,"name",{__proto__:null,value:a.name}),U(T,"length",{__proto__:null,value:a.length}),U(J.Readable.prototype,j,{__proto__:null,value:T,enumerable:!1,configurable:!0,writable:!0})}for(let j of I(H)){let T=function(...h0){if(new.target)throw K();return X(a,this,h0)},a=H[j];U(T,"name",{__proto__:null,value:a.name}),U(T,"length",{__proto__:null,value:a.length}),U(J.Readable.prototype,j,{__proto__:null,value:T,enumerable:!1,configurable:!0,writable:!0})}J.Writable=B1(),J.Duplex=d0(),J.Transform=H6(),J.PassThrough=z6(),J.pipeline=x;var{addAbortSignal:C}=P2();J.addAbortSignal=C,J.finished=t,J.destroy=l,J.compose=N,J.setDefaultHighWaterMark=G,J.getDefaultHighWaterMark=O,U(J,"promises",{__proto__:null,configurable:!0,enumerable:!0,get(){return v}}),U(x,Z,{__proto__:null,enumerable:!0,get(){return v.pipeline}}),U(t,Z,{__proto__:null,enumerable:!0,get(){return v.finished}}),J.Stream=J,J._isUint8Array=function(T){return T instanceof Uint8Array},J._uint8ArrayToBuffer=function(T){return h.from(T.buffer,T.byteOffset,T.byteLength)}}),b8=z0((w,B)=>{var h=w1();{let U=N6(),I=G6(),X=U.Readable.destroy;B.exports=U.Readable,B.exports._uint8ArrayToBuffer=U._uint8ArrayToBuffer,B.exports._isUint8Array=U._isUint8Array,B.exports.isDisturbed=U.isDisturbed,B.exports.isErrored=U.isErrored,B.exports.isReadable=U.isReadable,B.exports.Readable=U.Readable,B.exports.Writable=U.Writable,B.exports.Duplex=U.Duplex,B.exports.Transform=U.Transform,B.exports.PassThrough=U.PassThrough,B.exports.addAbortSignal=U.addAbortSignal,B.exports.finished=U.finished,B.exports.destroy=U.destroy,B.exports.destroy=X,B.exports.pipeline=U.pipeline,B.exports.compose=U.compose,Object.defineProperty(U,"promises",{configurable:!0,enumerable:!0,get(){return I}}),B.exports.Stream=U.Stream}B.exports.default=B.exports});C6.exports=b8()});import{logger as W0,ModelType as A0}from"@elizaos/core";import{logger as y0}from"@elizaos/core";import{logger as J2}from"@elizaos/core";function G0(w,B,h){return w.getSetting(B)??process.env[B]??h}function m0(){return typeof globalThis<"u"&&typeof globalThis.document<"u"}function j1(w){return m0()&&!!G0(w,"ELIZAOS_CLOUD_BROWSER_BASE_URL")}function v0(w,B=!1){if(m0())return{};let h=B?u6(w):n0(w);return h?{Authorization:`Bearer ${h}`}:{}}function R0(w){let B=G0(w,"ELIZAOS_CLOUD_BROWSER_BASE_URL"),h=m0()&&B?B:G0(w,"ELIZAOS_CLOUD_BASE_URL","https://www.elizacloud.ai/api/v1");return J2.debug(`[ELIZAOS_CLOUD] Default base URL: ${h}`),h}function A1(w){let B=m0()?G0(w,"ELIZAOS_CLOUD_BROWSER_EMBEDDING_URL")||G0(w,"ELIZAOS_CLOUD_BROWSER_BASE_URL"):G0(w,"ELIZAOS_CLOUD_EMBEDDING_URL");if(B)return J2.debug(`[ELIZAOS_CLOUD] Using specific embedding base URL: ${B}`),B;return J2.debug("[ELIZAOS_CLOUD] Falling back to general base URL for embeddings."),R0(w)}function n0(w){return G0(w,"ELIZAOS_CLOUD_API_KEY")}function u6(w){let B=G0(w,"ELIZAOS_CLOUD_EMBEDDING_API_KEY");if(B)return J2.debug("[ELIZAOS_CLOUD] Using specific embedding API key (present)"),B;return J2.debug("[ELIZAOS_CLOUD] Falling back to general API key for embeddings."),n0(w)}function j2(w){return G0(w,"ELIZAOS_CLOUD_SMALL_MODEL")??G0(w,"SMALL_MODEL","gpt-4o-mini")}function A2(w){return G0(w,"ELIZAOS_CLOUD_LARGE_MODEL")??G0(w,"LARGE_MODEL","gpt-4o")}function L1(w){return G0(w,"ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL","gpt-4o-mini")??"gpt-4o-mini"}function u2(w){let B=G0(w,"ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY","false"),h=String(B).toLowerCase(),U=h==="true";return J2.debug(`[ELIZAOS_CLOUD] Experimental telemetry in function: "${B}" (type: ${typeof B}, normalized: "${h}", result: ${U})`),U}function O1(w,B){new Promise(async(h)=>{h();try{if(!n0(B)&&!m0()){y0.warn("ELIZAOS_CLOUD_API_KEY is not set in environment - ElizaOS Cloud functionality will be limited"),y0.info("Get your API key from https://www.elizacloud.ai/dashboard/api-keys");return}try{let U=R0(B),I=await fetch(`${U}/models`,{headers:{...v0(B)}});if(!I.ok)y0.warn(`ElizaOS Cloud API key validation failed: ${I.statusText}`),y0.warn("ElizaOS Cloud functionality will be limited until a valid API key is provided"),y0.info("Get your API key from https://www.elizacloud.ai/dashboard/api-keys");else y0.log("ElizaOS Cloud API key validated successfully")}catch(U){let I=U instanceof Error?U.message:String(U);y0.warn(`Error validating ElizaOS Cloud API key: ${I}`),y0.warn("ElizaOS Cloud functionality will be limited until a valid API key is provided")}}catch(U){let I=U?.errors?.map((X)=>X.message).join(", ")||(U instanceof Error?U.message:String(U));y0.warn(`ElizaOS Cloud plugin configuration issue: ${I} - You need to configure the ELIZAOS_CLOUD_API_KEY in your environment variables`),y0.info("Get your API key from https://www.elizacloud.ai/dashboard/api-keys")}})}import{logger as L2,ModelType as x1}from"@elizaos/core";import{generateText as D1}from"ai";import{createOpenAI as v6}from"@ai-sdk/openai";function $2(w){let B=R0(w),h=n0(w)??(j1(w)?"eliza-proxy":void 0);return v6({apiKey:h??"",baseURL:B})}import{EventType as g6}from"@elizaos/core";function g0(w,B,h,U){w.emitEvent(g6.MODEL_USED,{provider:"openai",type:B,prompt:h,tokens:{prompt:U.inputTokens,completion:U.outputTokens,total:U.totalTokens}})}async function v2(w,{prompt:B,stopSequences:h=[],maxTokens:U=8192,temperature:I=0.7,frequencyPenalty:X=0.7,presencePenalty:Z=0.7}){let Y=$2(w),H=j2(w),K=u2(w);L2.log(`[ELIZAOS_CLOUD] Using TEXT_SMALL model: ${H}`),L2.log(B);let{text:N,usage:G}=await D1({model:Y.languageModel(H),prompt:B,system:w.character.system??void 0,temperature:I,maxOutputTokens:U,frequencyPenalty:X,presencePenalty:Z,stopSequences:h,experimental_telemetry:{isEnabled:K}});if(G)g0(w,x1.TEXT_SMALL,B,G);return N}async function g2(w,{prompt:B,stopSequences:h=[],maxTokens:U=8192,temperature:I=0.7,frequencyPenalty:X=0.7,presencePenalty:Z=0.7}){let Y=$2(w),H=A2(w),K=u2(w);L2.log(`[ELIZAOS_CLOUD] Using TEXT_LARGE model: ${H}`),L2.log(B);let{text:N,usage:G}=await D1({model:Y.languageModel(H),prompt:B,system:w.character.system??void 0,temperature:I,maxOutputTokens:U,frequencyPenalty:X,presencePenalty:Z,stopSequences:h,experimental_telemetry:{isEnabled:K}});if(G)g0(w,x1.TEXT_LARGE,B,G);return N}import{logger as Z2,ModelType as V6}from"@elizaos/core";import{generateObject as d8,JSONParseError as l8}from"ai";import{logger as W6}from"@elizaos/core";import{JSONParseError as i8}from"ai";function U1(){return async({text:w,error:B})=>{try{if(B instanceof i8){let h=w.replace(/```json\n|\n```|```/g,"");return JSON.parse(h),h}return null}catch(h){let U=h instanceof Error?h.message:String(h);return W6.warn(`Failed to repair JSON text: ${U}`),null}}}async function M6(w){try{let{Readable:B}=await Promise.resolve().then(() => f6(w1(),1)),h=w.getReader();return new B({async read(){try{let{done:U,value:I}=await h.read();if(U)this.push(null);else this.push(I)}catch(U){this.destroy(U)}},destroy(U,I){h.cancel().finally(()=>I(U))}})}catch(B){let h=B instanceof Error?B.message:String(B);throw W6.error(`Failed to load node:stream module: ${h}`),Error("Cannot convert stream: node:stream module unavailable. This feature requires a Node.js environment.")}}function E6(w){let h=w.match(/title[:\s]+(.+?)(?:\n|$)/i)?.[1]?.trim()||"Image Analysis",U=w.replace(/title[:\s]+(.+?)(?:\n|$)/i,"").trim();return{title:h,description:U}}async function j6(w,B,h,U){let I=$2(w),X=U(w);Z2.log(`[ELIZAOS_CLOUD] Using ${h} model: ${X}`);let Z=B.temperature??0;if(!!B.schema)Z2.info(`Using ${h} without schema validation (schema provided but output=no-schema)`);try{let{object:H,usage:K}=await d8({model:I.languageModel(X),output:"no-schema",prompt:B.prompt,temperature:Z,experimental_repairText:U1()});if(K)g0(w,h,B.prompt,K);return H}catch(H){if(H instanceof l8){Z2.error(`[generateObject] Failed to parse JSON: ${H.message}`);let N=await U1()({text:H.text,error:H});if(N)try{let G=JSON.parse(N);return Z2.info("[generateObject] Successfully repaired JSON."),G}catch(G){let O=G instanceof Error?G.message:String(G);throw Z2.error(`[generateObject] Failed to parse repaired JSON: ${O}`),G}else throw Z2.error("[generateObject] JSON repair failed."),H}else{let K=H instanceof Error?H.message:String(H);throw Z2.error(`[generateObject] Unknown error: ${K}`),H}}}async function I1(w,B){return j6(w,B,V6.OBJECT_SMALL,j2)}async function X1(w,B){return j6(w,B,V6.OBJECT_LARGE,A2)}import{logger as s0,ModelType as m8,VECTOR_DIMS as A6}from"@elizaos/core";async function Z1(w,B){let h=G0(w,"ELIZAOS_CLOUD_EMBEDDING_MODEL","text-embedding-3-small"),U=Number.parseInt(G0(w,"ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS","1536")||"1536",10);if(!Object.values(A6).includes(U)){let Z=`Invalid embedding dimension: ${U}. Must be one of: ${Object.values(A6).join(", ")}`;throw s0.error(Z),Error(Z)}if(B===null){s0.debug("Creating test embedding for initialization");let Z=Array(U).fill(0);return Z[0]=0.1,Z}let I;if(typeof B==="string")I=B;else if(typeof B==="object"&&B.text)I=B.text;else{s0.warn("Invalid input format for embedding");let Z=Array(U).fill(0);return Z[0]=0.2,Z}if(!I.trim()){s0.warn("Empty text for embedding");let Z=Array(U).fill(0);return Z[0]=0.3,Z}let X=A1(w);try{let Z=await fetch(`${X}/embeddings`,{method:"POST",headers:{...v0(w,!0),"Content-Type":"application/json"},body:JSON.stringify({model:h,input:I})});if(!Z.ok){s0.error(`ElizaOS Cloud API error: ${Z.status} - ${Z.statusText}`);let K=Array(U).fill(0);return K[0]=0.4,K}let Y=await Z.json();if(!Y?.data?.[0]?.embedding){s0.error("API returned invalid structure");let K=Array(U).fill(0);return K[0]=0.5,K}let H=Y.data[0].embedding;if(Y.usage){let K={inputTokens:Y.usage.prompt_tokens,outputTokens:0,totalTokens:Y.usage.total_tokens};g0(w,m8.TEXT_EMBEDDING,I,K)}return s0.log(`Got valid embedding with length ${H.length}`),H}catch(Z){let Y=Z instanceof Error?Z.message:String(Z);s0.error(`Error generating embedding: ${Y}`);let H=Array(U).fill(0);return H[0]=0.6,H}}import{logger as R2,ModelType as n8}from"@elizaos/core";async function Q1(w,B){let h=B.n||1,U=B.size||"1024x1024",I=B.prompt,X="google/gemini-2.5-flash-image-preview";R2.log("[ELIZAOS_CLOUD] Using IMAGE model: google/gemini-2.5-flash-image-preview");let Z=R0(w),H={"1024x1024":"1:1","1792x1024":"16:9","1024x1792":"9:16"}[U]||"1:1";try{let K=await fetch(`${Z}/generate-image`,{method:"POST",headers:{...v0(w),"Content-Type":"application/json"},body:JSON.stringify({prompt:I,numImages:h,aspectRatio:H})});if(!K.ok){let O=await K.text();throw Error(`Failed to generate image: ${K.status} ${O}`)}return(await K.json()).images.map((O)=>({url:O.url||O.image}))}catch(K){let N=K instanceof Error?K.message:String(K);throw R2.error(`[ELIZAOS_CLOUD] Image generation error: ${N}`),K}}async function F1(w,B){let h,U,I=L1(w);R2.log(`[ELIZAOS_CLOUD] Using IMAGE_DESCRIPTION model: ${I}`);let X=Number.parseInt(G0(w,"ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS","8192")||"8192",10);if(typeof B==="string")h=B,U="Please analyze this image and provide a title and detailed description.";else h=B.imageUrl,U=B.prompt||"Please analyze this image and provide a title and detailed description.";let Z=[{role:"user",content:[{type:"text",text:U},{type:"image_url",image_url:{url:h}}]}],Y=R0(w);try{let H={model:I,messages:Z,max_tokens:X},K=await fetch(`${Y}/chat/completions`,{method:"POST",headers:{"Content-Type":"application/json",...v0(w)},body:JSON.stringify(H)});if(!K.ok)throw Error(`ElizaOS Cloud API error: ${K.status}`);let G=await K.json(),O=G.choices?.[0]?.message?.content;if(G.usage)g0(w,n8.IMAGE_DESCRIPTION,typeof B==="string"?B:B.prompt||"",{inputTokens:G.usage.prompt_tokens,outputTokens:G.usage.completion_tokens,totalTokens:G.usage.total_tokens});if(!O)return{title:"Failed to analyze image",description:"No response from API"};if(typeof B==="object"&&B.prompt&&B.prompt!=="Please analyze this image and provide a title and detailed description.")return O;return E6(O)}catch(H){let K=H instanceof Error?H.message:String(H);return R2.error(`Error analyzing image: ${K}`),{title:"Failed to analyze image",description:`Error: ${K}`}}}import{logger as S4}from"@elizaos/core";async function J1(w,B){let h=G0(w,"ELIZAOS_CLOUD_TTS_MODEL","gpt-4o-mini-tts"),U=G0(w,"ELIZAOS_CLOUD_TTS_VOICE","nova"),I=G0(w,"ELIZAOS_CLOUD_TTS_INSTRUCTIONS",""),X=R0(w),Z=B.model||h,Y=B.voice||U,H=B.instructions??I,K=B.format||"mp3";try{let N=await fetch(`${X}/audio/speech`,{method:"POST",headers:{...v0(w),"Content-Type":"application/json",...K==="mp3"?{Accept:"audio/mpeg"}:{}},body:JSON.stringify({model:Z,voice:Y,input:B.text,format:K,...H&&{instructions:H}})});if(!N.ok){let G=await N.text();throw Error(`ElizaOS Cloud TTS error ${N.status}: ${G}`)}if(!N.body)throw Error("ElizaOS Cloud TTS response body is null");if(!m0())return await M6(N.body);return N.body}catch(N){let G=N instanceof Error?N.message:String(N);throw Error(`Failed to fetch speech from ElizaOS Cloud TTS: ${G}`)}}var o8={name:"elizaOSCloud",description:"ElizaOS Cloud plugin - Multi-model AI generation with text, image, and video support",config:{ELIZAOS_CLOUD_API_KEY:process.env.ELIZAOS_CLOUD_API_KEY,ELIZAOS_CLOUD_BASE_URL:process.env.ELIZAOS_CLOUD_BASE_URL,ELIZAOS_CLOUD_SMALL_MODEL:process.env.ELIZAOS_CLOUD_SMALL_MODEL,ELIZAOS_CLOUD_LARGE_MODEL:process.env.ELIZAOS_CLOUD_LARGE_MODEL,SMALL_MODEL:process.env.SMALL_MODEL,LARGE_MODEL:process.env.LARGE_MODEL,ELIZAOS_CLOUD_EMBEDDING_MODEL:process.env.ELIZAOS_CLOUD_EMBEDDING_MODEL,ELIZAOS_CLOUD_EMBEDDING_API_KEY:process.env.ELIZAOS_CLOUD_EMBEDDING_API_KEY,ELIZAOS_CLOUD_EMBEDDING_URL:process.env.ELIZAOS_CLOUD_EMBEDDING_URL,ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS:process.env.ELIZAOS_CLOUD_EMBEDDING_DIMENSIONS,ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL:process.env.ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MODEL,ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS:process.env.ELIZAOS_CLOUD_IMAGE_DESCRIPTION_MAX_TOKENS,ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY:process.env.ELIZAOS_CLOUD_EXPERIMENTAL_TELEMETRY},async init(w,B){O1(w,B)},models:{[A0.TEXT_EMBEDDING]:Z1,[A0.TEXT_SMALL]:v2,[A0.TEXT_LARGE]:g2,[A0.IMAGE]:Q1,[A0.IMAGE_DESCRIPTION]:F1,[A0.OBJECT_SMALL]:I1,[A0.OBJECT_LARGE]:X1},tests:[{name:"ELIZAOS_CLOUD_plugin_tests",tests:[{name:"ELIZAOS_CLOUD_test_url_and_api_key_validation",fn:async(w)=>{let B=R0(w),h=await fetch(`${B}/models`,{headers:{Authorization:`Bearer ${n0(w)}`}}),U=await h.json();if(W0.log({data:U?.data?.length??"N/A"},"Models Available"),!h.ok)throw Error(`Failed to validate OpenAI API key: ${h.statusText}`)}},{name:"ELIZAOS_CLOUD_test_text_embedding",fn:async(w)=>{try{let B=await w.useModel(A0.TEXT_EMBEDDING,{text:"Hello, world!"});W0.log({embedding:B},"embedding")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in test_text_embedding: ${h}`),B}}},{name:"ELIZAOS_CLOUD_test_text_large",fn:async(w)=>{try{let B=await w.useModel(A0.TEXT_LARGE,{prompt:"What is the nature of reality in 10 words?"});if(B.length===0)throw Error("Failed to generate text");W0.log({text:B},"generated with test_text_large")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in test_text_large: ${h}`),B}}},{name:"ELIZAOS_CLOUD_test_text_small",fn:async(w)=>{try{let B=await w.useModel(A0.TEXT_SMALL,{prompt:"What is the nature of reality in 10 words?"});if(B.length===0)throw Error("Failed to generate text");W0.log({text:B},"generated with test_text_small")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in test_text_small: ${h}`),B}}},{name:"ELIZAOS_CLOUD_test_image_generation",fn:async(w)=>{W0.log("ELIZAOS_CLOUD_test_image_generation");try{let B=await w.useModel(A0.IMAGE,{prompt:"A beautiful sunset over a calm ocean",n:1,size:"1024x1024"});W0.log({image:B},"generated with test_image_generation")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in test_image_generation: ${h}`),B}}},{name:"image-description",fn:async(w)=>{try{W0.log("ELIZAOS_CLOUD_test_image_description");try{let B=await w.useModel(A0.IMAGE_DESCRIPTION,"https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Vitalik_Buterin_TechCrunch_London_2015_%28cropped%29.jpg/537px-Vitalik_Buterin_TechCrunch_London_2015_%28cropped%29.jpg");if(B&&typeof B==="object"&&"title"in B&&"description"in B)W0.log({result:B},"Image description");else W0.error("Invalid image description result format:",B)}catch(B){let h=B instanceof Error?B.message:String(B);W0.error(`Error in image description test: ${h}`)}}catch(B){let h=B instanceof Error?B.message:String(B);W0.error(`Error in ELIZAOS_CLOUD_test_image_description: ${h}`)}}},{name:"ELIZAOS_CLOUD_test_transcription",fn:async(w)=>{W0.log("ELIZAOS_CLOUD_test_transcription");try{let h=await(await fetch("https://upload.wikimedia.org/wikipedia/en/4/40/Chris_Benoit_Voice_Message.ogg")).arrayBuffer(),U=await w.useModel(A0.TRANSCRIPTION,Buffer.from(new Uint8Array(h)));W0.log({transcription:U},"generated with test_transcription")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in test_transcription: ${h}`),B}}},{name:"ELIZAOS_CLOUD_test_text_tokenizer_encode",fn:async(w)=>{let h=await w.useModel(A0.TEXT_TOKENIZER_ENCODE,{prompt:"Hello tokenizer encode!"});if(!Array.isArray(h)||h.length===0)throw Error("Failed to tokenize text: expected non-empty array of tokens");W0.log({tokens:h},"Tokenized output")}},{name:"ELIZAOS_CLOUD_test_text_tokenizer_decode",fn:async(w)=>{let h=await w.useModel(A0.TEXT_TOKENIZER_ENCODE,{prompt:"Hello tokenizer decode!"}),U=await w.useModel(A0.TEXT_TOKENIZER_DECODE,{tokens:h});if(U!=="Hello tokenizer decode!")throw Error(`Decoded text does not match original. Expected "Hello tokenizer decode!", got "${U}"`);W0.log({decodedText:U},"Decoded text")}},{name:"ELIZAOS_CLOUD_test_text_to_speech",fn:async(w)=>{try{if(!await J1(w,{text:"Hello, this is a test for text-to-speech."}))throw Error("Failed to generate speech");W0.log("Generated speech successfully")}catch(B){let h=B instanceof Error?B.message:String(B);throw W0.error(`Error in ELIZAOS_CLOUD_test_text_to_speech: ${h}`),B}}}]}]},r8=o8;export{o8 as elizaOSCloudPlugin,r8 as default};
3
+
4
+ //# debugId=ED0010634DF17C8864756E2164756E21