@continuous-labs/sdk 0.0.4 → 0.0.6

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.
Files changed (254) hide show
  1. package/README.md +1 -1
  2. package/esm/funcs/simulations-create-simulation.d.ts +1 -1
  3. package/esm/funcs/simulations-create-simulation.js +1 -1
  4. package/esm/funcs/simulations-fork-simulation.d.ts +1 -1
  5. package/esm/funcs/simulations-fork-simulation.js +1 -1
  6. package/esm/funcs/simulations-get-simulation.d.ts +1 -1
  7. package/esm/funcs/simulations-get-simulation.js +1 -1
  8. package/esm/funcs/simulations-list-simulation-steps.d.ts +1 -1
  9. package/esm/funcs/simulations-list-simulation-steps.js +1 -1
  10. package/esm/funcs/simulations-mint-simulation-token.d.ts +1 -1
  11. package/esm/funcs/simulations-mint-simulation-token.js +1 -1
  12. package/esm/funcs/simulations-start-simulation.d.ts +1 -1
  13. package/esm/funcs/simulations-start-simulation.js +1 -1
  14. package/esm/funcs/simulations-stop-simulation.d.ts +1 -1
  15. package/esm/funcs/simulations-stop-simulation.js +1 -1
  16. package/esm/funcs/simulators-build-simulator.d.ts +1 -1
  17. package/esm/funcs/simulators-build-simulator.js +1 -1
  18. package/esm/funcs/worlds-build-world.d.ts +1 -1
  19. package/esm/funcs/worlds-build-world.js +1 -1
  20. package/esm/funcs/worlds-start-world.d.ts +1 -1
  21. package/esm/funcs/worlds-start-world.js +1 -1
  22. package/esm/lib/config.d.ts +2 -2
  23. package/esm/lib/config.js +2 -2
  24. package/esm/models/build-simulator-request.d.ts +6 -6
  25. package/esm/models/build-simulator-request.js +1 -1
  26. package/esm/models/build-world-request.d.ts +2 -2
  27. package/esm/models/create-simulation-request.d.ts +1 -1
  28. package/esm/models/created-simulation.d.ts +8 -8
  29. package/esm/models/created-simulation.js +1 -1
  30. package/esm/models/list-worlds-response.d.ts +1 -1
  31. package/esm/models/operations/build-simulator.d.ts +1 -1
  32. package/esm/models/operations/cancel-simulator-build.d.ts +1 -1
  33. package/esm/models/operations/cancel-world-build.d.ts +1 -1
  34. package/esm/models/operations/delete-simulation.d.ts +1 -1
  35. package/esm/models/operations/delete-simulator.d.ts +1 -1
  36. package/esm/models/operations/delete-world.d.ts +1 -1
  37. package/esm/models/operations/fork-simulation.d.ts +1 -1
  38. package/esm/models/operations/get-simulation.d.ts +1 -1
  39. package/esm/models/operations/get-simulator.d.ts +1 -1
  40. package/esm/models/operations/get-world.d.ts +1 -1
  41. package/esm/models/operations/list-simulation-steps.d.ts +1 -1
  42. package/esm/models/operations/list-simulations.d.ts +4 -4
  43. package/esm/models/operations/list-simulations.js +1 -1
  44. package/esm/models/operations/list-simulators.d.ts +1 -1
  45. package/esm/models/operations/list-worlds.d.ts +1 -1
  46. package/esm/models/operations/mint-simulation-token.d.ts +1 -1
  47. package/esm/models/operations/start-simulation.d.ts +1 -1
  48. package/esm/models/operations/start-world.d.ts +1 -1
  49. package/esm/models/operations/stop-simulation.d.ts +1 -1
  50. package/esm/models/operations/stop-world.d.ts +1 -1
  51. package/esm/models/simulation-token.d.ts +1 -1
  52. package/esm/models/simulation.d.ts +7 -7
  53. package/esm/models/simulation.js +1 -1
  54. package/esm/models/simulator.d.ts +8 -8
  55. package/esm/models/simulator.js +2 -2
  56. package/esm/models/step.d.ts +2 -2
  57. package/esm/models/world-simulation.d.ts +2 -2
  58. package/esm/models/world.d.ts +7 -7
  59. package/esm/models/world.js +1 -1
  60. package/esm/sdk/simulations.d.ts +7 -7
  61. package/esm/sdk/simulations.js +7 -7
  62. package/esm/sdk/simulators.d.ts +1 -1
  63. package/esm/sdk/simulators.js +1 -1
  64. package/esm/sdk/worlds.d.ts +2 -2
  65. package/esm/sdk/worlds.js +2 -2
  66. package/jsr.json +1 -1
  67. package/package.json +2 -2
  68. package/src/funcs/simulations-create-simulation.ts +1 -1
  69. package/src/funcs/simulations-fork-simulation.ts +1 -1
  70. package/src/funcs/simulations-get-simulation.ts +1 -1
  71. package/src/funcs/simulations-list-simulation-steps.ts +1 -1
  72. package/src/funcs/simulations-mint-simulation-token.ts +1 -1
  73. package/src/funcs/simulations-start-simulation.ts +1 -1
  74. package/src/funcs/simulations-stop-simulation.ts +1 -1
  75. package/src/funcs/simulators-build-simulator.ts +1 -1
  76. package/src/funcs/worlds-build-world.ts +1 -1
  77. package/src/funcs/worlds-start-world.ts +1 -1
  78. package/src/lib/config.ts +2 -2
  79. package/src/models/build-simulator-request.ts +6 -6
  80. package/src/models/build-world-request.ts +2 -2
  81. package/src/models/create-simulation-request.ts +1 -1
  82. package/src/models/created-simulation.ts +8 -8
  83. package/src/models/list-worlds-response.ts +1 -1
  84. package/src/models/operations/build-simulator.ts +1 -1
  85. package/src/models/operations/cancel-simulator-build.ts +1 -1
  86. package/src/models/operations/cancel-world-build.ts +1 -1
  87. package/src/models/operations/delete-simulation.ts +1 -1
  88. package/src/models/operations/delete-simulator.ts +1 -1
  89. package/src/models/operations/delete-world.ts +1 -1
  90. package/src/models/operations/fork-simulation.ts +1 -1
  91. package/src/models/operations/get-simulation.ts +1 -1
  92. package/src/models/operations/get-simulator.ts +1 -1
  93. package/src/models/operations/get-world.ts +1 -1
  94. package/src/models/operations/list-simulation-steps.ts +1 -1
  95. package/src/models/operations/list-simulations.ts +4 -4
  96. package/src/models/operations/list-simulators.ts +1 -1
  97. package/src/models/operations/list-worlds.ts +1 -1
  98. package/src/models/operations/mint-simulation-token.ts +1 -1
  99. package/src/models/operations/start-simulation.ts +1 -1
  100. package/src/models/operations/start-world.ts +1 -1
  101. package/src/models/operations/stop-simulation.ts +1 -1
  102. package/src/models/operations/stop-world.ts +1 -1
  103. package/src/models/simulation-token.ts +1 -1
  104. package/src/models/simulation.ts +7 -7
  105. package/src/models/simulator.ts +8 -8
  106. package/src/models/step.ts +2 -2
  107. package/src/models/world-simulation.ts +2 -2
  108. package/src/models/world.ts +7 -7
  109. package/src/sdk/simulations.ts +7 -7
  110. package/src/sdk/simulators.ts +1 -1
  111. package/src/sdk/worlds.ts +2 -2
  112. package/esm/models/errors/continuous-simulation-default-error.d.ts +0 -10
  113. package/esm/models/errors/continuous-simulation-default-error.d.ts.map +0 -1
  114. package/esm/models/errors/continuous-simulation-default-error.js +0 -30
  115. package/esm/models/errors/continuous-simulation-default-error.js.map +0 -1
  116. package/esm/models/errors/continuous-simulation-error.d.ts +0 -19
  117. package/esm/models/errors/continuous-simulation-error.d.ts.map +0 -1
  118. package/esm/models/errors/continuous-simulation-error.js +0 -26
  119. package/esm/models/errors/continuous-simulation-error.js.map +0 -1
  120. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  121. package/examples/node_modules/@types/node/assert.d.ts +0 -1062
  122. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -605
  123. package/examples/node_modules/@types/node/buffer.buffer.d.ts +0 -471
  124. package/examples/node_modules/@types/node/buffer.d.ts +0 -1936
  125. package/examples/node_modules/@types/node/child_process.d.ts +0 -1475
  126. package/examples/node_modules/@types/node/cluster.d.ts +0 -577
  127. package/examples/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  128. package/examples/node_modules/@types/node/compatibility/index.d.ts +0 -9
  129. package/examples/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  130. package/examples/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  131. package/examples/node_modules/@types/node/console.d.ts +0 -452
  132. package/examples/node_modules/@types/node/constants.d.ts +0 -21
  133. package/examples/node_modules/@types/node/crypto.d.ts +0 -4590
  134. package/examples/node_modules/@types/node/dgram.d.ts +0 -597
  135. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  136. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -479
  137. package/examples/node_modules/@types/node/dns.d.ts +0 -871
  138. package/examples/node_modules/@types/node/domain.d.ts +0 -170
  139. package/examples/node_modules/@types/node/events.d.ts +0 -977
  140. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1270
  141. package/examples/node_modules/@types/node/fs.d.ts +0 -4375
  142. package/examples/node_modules/@types/node/globals.d.ts +0 -172
  143. package/examples/node_modules/@types/node/globals.typedarray.d.ts +0 -38
  144. package/examples/node_modules/@types/node/http.d.ts +0 -2049
  145. package/examples/node_modules/@types/node/http2.d.ts +0 -2712
  146. package/examples/node_modules/@types/node/https.d.ts +0 -578
  147. package/examples/node_modules/@types/node/index.d.ts +0 -93
  148. package/examples/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  149. package/examples/node_modules/@types/node/module.d.ts +0 -539
  150. package/examples/node_modules/@types/node/net.d.ts +0 -1031
  151. package/examples/node_modules/@types/node/os.d.ts +0 -506
  152. package/examples/node_modules/@types/node/path.d.ts +0 -200
  153. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -961
  154. package/examples/node_modules/@types/node/process.d.ts +0 -1961
  155. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  156. package/examples/node_modules/@types/node/querystring.d.ts +0 -152
  157. package/examples/node_modules/@types/node/readline/promises.d.ts +0 -162
  158. package/examples/node_modules/@types/node/readline.d.ts +0 -589
  159. package/examples/node_modules/@types/node/repl.d.ts +0 -430
  160. package/examples/node_modules/@types/node/sea.d.ts +0 -153
  161. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -38
  162. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -90
  163. package/examples/node_modules/@types/node/stream/web.d.ts +0 -533
  164. package/examples/node_modules/@types/node/stream.d.ts +0 -1698
  165. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  166. package/examples/node_modules/@types/node/test.d.ts +0 -1787
  167. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -108
  168. package/examples/node_modules/@types/node/timers.d.ts +0 -286
  169. package/examples/node_modules/@types/node/tls.d.ts +0 -1259
  170. package/examples/node_modules/@types/node/trace_events.d.ts +0 -197
  171. package/examples/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -468
  172. package/examples/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -34
  173. package/examples/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  174. package/examples/node_modules/@types/node/tty.d.ts +0 -208
  175. package/examples/node_modules/@types/node/url.d.ts +0 -964
  176. package/examples/node_modules/@types/node/util.d.ts +0 -2331
  177. package/examples/node_modules/@types/node/v8.d.ts +0 -809
  178. package/examples/node_modules/@types/node/vm.d.ts +0 -1001
  179. package/examples/node_modules/@types/node/wasi.d.ts +0 -181
  180. package/examples/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  181. package/examples/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  182. package/examples/node_modules/@types/node/web-globals/events.d.ts +0 -97
  183. package/examples/node_modules/@types/node/web-globals/fetch.d.ts +0 -55
  184. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -715
  185. package/examples/node_modules/@types/node/zlib.d.ts +0 -598
  186. package/examples/node_modules/dotenv/config.d.ts +0 -1
  187. package/examples/node_modules/dotenv/config.js +0 -9
  188. package/examples/node_modules/dotenv/lib/cli-options.js +0 -17
  189. package/examples/node_modules/dotenv/lib/env-options.js +0 -28
  190. package/examples/node_modules/dotenv/lib/main.d.ts +0 -162
  191. package/examples/node_modules/dotenv/lib/main.js +0 -386
  192. package/examples/node_modules/esbuild/install.js +0 -300
  193. package/examples/node_modules/esbuild/lib/main.d.ts +0 -720
  194. package/examples/node_modules/esbuild/lib/main.js +0 -2536
  195. package/examples/node_modules/tsx/dist/cjs/api/index.mjs +0 -1
  196. package/examples/node_modules/tsx/dist/cjs/index.mjs +0 -1
  197. package/examples/node_modules/tsx/dist/cli.mjs +0 -55
  198. package/examples/node_modules/tsx/dist/client-D_mPDF5S.mjs +0 -1
  199. package/examples/node_modules/tsx/dist/esm/api/index.mjs +0 -1
  200. package/examples/node_modules/tsx/dist/esm/index.mjs +0 -1
  201. package/examples/node_modules/tsx/dist/get-pipe-path-_tAJyU_v.mjs +0 -1
  202. package/examples/node_modules/tsx/dist/index-DCefr8NP.mjs +0 -14
  203. package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +0 -1
  204. package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +0 -3
  205. package/examples/node_modules/tsx/dist/loader.mjs +0 -1
  206. package/examples/node_modules/tsx/dist/node-features-JeyyvQz6.mjs +0 -1
  207. package/examples/node_modules/tsx/dist/package-BL7Whz21.mjs +0 -1
  208. package/examples/node_modules/tsx/dist/patch-repl.mjs +0 -1
  209. package/examples/node_modules/tsx/dist/preflight.mjs +0 -1
  210. package/examples/node_modules/tsx/dist/register-DHgpdRjs.mjs +0 -10
  211. package/examples/node_modules/tsx/dist/register-SoqaU4rg.mjs +0 -2
  212. package/examples/node_modules/tsx/dist/repl.mjs +0 -3
  213. package/examples/node_modules/tsx/dist/require-Cuv-0BLU.mjs +0 -1
  214. package/examples/node_modules/tsx/dist/suppress-warnings.mjs +0 -1
  215. package/examples/node_modules/tsx/dist/temporary-directory-BDDVQOvU.mjs +0 -1
  216. package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +0 -5
  217. package/examples/node_modules/undici-types/agent.d.ts +0 -31
  218. package/examples/node_modules/undici-types/api.d.ts +0 -43
  219. package/examples/node_modules/undici-types/balanced-pool.d.ts +0 -29
  220. package/examples/node_modules/undici-types/cache.d.ts +0 -36
  221. package/examples/node_modules/undici-types/client.d.ts +0 -108
  222. package/examples/node_modules/undici-types/connector.d.ts +0 -34
  223. package/examples/node_modules/undici-types/content-type.d.ts +0 -21
  224. package/examples/node_modules/undici-types/cookies.d.ts +0 -28
  225. package/examples/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  226. package/examples/node_modules/undici-types/dispatcher.d.ts +0 -256
  227. package/examples/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  228. package/examples/node_modules/undici-types/errors.d.ts +0 -149
  229. package/examples/node_modules/undici-types/eventsource.d.ts +0 -61
  230. package/examples/node_modules/undici-types/fetch.d.ts +0 -209
  231. package/examples/node_modules/undici-types/file.d.ts +0 -39
  232. package/examples/node_modules/undici-types/filereader.d.ts +0 -54
  233. package/examples/node_modules/undici-types/formdata.d.ts +0 -108
  234. package/examples/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  235. package/examples/node_modules/undici-types/global-origin.d.ts +0 -7
  236. package/examples/node_modules/undici-types/handlers.d.ts +0 -15
  237. package/examples/node_modules/undici-types/header.d.ts +0 -4
  238. package/examples/node_modules/undici-types/index.d.ts +0 -71
  239. package/examples/node_modules/undici-types/interceptors.d.ts +0 -17
  240. package/examples/node_modules/undici-types/mock-agent.d.ts +0 -50
  241. package/examples/node_modules/undici-types/mock-client.d.ts +0 -25
  242. package/examples/node_modules/undici-types/mock-errors.d.ts +0 -12
  243. package/examples/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  244. package/examples/node_modules/undici-types/mock-pool.d.ts +0 -25
  245. package/examples/node_modules/undici-types/patch.d.ts +0 -33
  246. package/examples/node_modules/undici-types/pool-stats.d.ts +0 -19
  247. package/examples/node_modules/undici-types/pool.d.ts +0 -39
  248. package/examples/node_modules/undici-types/proxy-agent.d.ts +0 -28
  249. package/examples/node_modules/undici-types/readable.d.ts +0 -65
  250. package/examples/node_modules/undici-types/retry-agent.d.ts +0 -8
  251. package/examples/node_modules/undici-types/retry-handler.d.ts +0 -116
  252. package/examples/node_modules/undici-types/util.d.ts +0 -18
  253. package/examples/node_modules/undici-types/webidl.d.ts +0 -228
  254. package/examples/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1 +0,0 @@
1
- import"../../get-pipe-path-_tAJyU_v.mjs";import{r as n}from"../../register-DHgpdRjs.mjs";import{t as w}from"../../require-Cuv-0BLU.mjs";import"module";import"node:path";import"../../temporary-directory-BDDVQOvU.mjs";import"node:os";import"node:module";import"node:url";import"node:fs";import"fs";import"os";import"path";import"../../index-DCefr8NP.mjs";import"esbuild";import"node:crypto";import"../../node-features-JeyyvQz6.mjs";import"../../client-D_mPDF5S.mjs";import"node:net";import"node:util";import"../../index-gbaejti9.mjs";export{n as register,w as require};
@@ -1 +0,0 @@
1
- import{r}from"../register-DHgpdRjs.mjs";import"../get-pipe-path-_tAJyU_v.mjs";import"module";import"node:path";import"../temporary-directory-BDDVQOvU.mjs";import"node:os";import"node:module";import"node:url";import"node:fs";import"fs";import"os";import"path";import"../index-DCefr8NP.mjs";import"esbuild";import"node:crypto";import"../node-features-JeyyvQz6.mjs";import"../client-D_mPDF5S.mjs";import"node:net";import"node:util";import"../index-gbaejti9.mjs";r();
@@ -1,55 +0,0 @@
1
- #!/usr/bin/env node
2
- var Bn=Object.defineProperty;var a=(t,e)=>Bn(t,"name",{value:e,configurable:!0});import{constants as ft}from"node:os";import $n from"tty";import{v as Tn}from"./package-BL7Whz21.mjs";import{r as Ie,g as xn,i as On}from"./get-pipe-path-_tAJyU_v.mjs";import{pathToFileURL as Nn,fileURLToPath as Pn}from"node:url";import Hn from"child_process";import q from"path";import oe from"fs";import{i as yu,a as Ln,t as In}from"./node-features-JeyyvQz6.mjs";import ke from"node:path";import Me from"node:fs";import kn from"events";import ge from"util";import Mn from"stream";import wu from"os";import{g as Wn,l as Gn,y as me,e as jn,f as Un}from"./index-gbaejti9.mjs";import Kn from"node:net";import{t as Vn}from"./temporary-directory-BDDVQOvU.mjs";import"module";const zn="known-flag",Yn="unknown-flag",qn="argument",{stringify:_e}=JSON,Xn=/\B([A-Z])/g,Qn=a(t=>t.replace(Xn,"-$1").toLowerCase(),"v$1"),{hasOwnProperty:Zn}=Object.prototype,Ae=a((t,e)=>Zn.call(t,e),"w$2"),Jn=a(t=>Array.isArray(t),"L$2"),Ru=a(t=>typeof t=="function"?[t,!1]:Jn(t)?[t[0],!0]:Ru(t.type),"b$2"),er=a((t,e)=>t===Boolean?e!=="false":e,"d$2"),tr=a((t,e)=>typeof e=="boolean"?e:t===Number&&e===""?Number.NaN:t(e),"m$1"),ur=/[\s.:=]/,sr=a(t=>{const e=`Flag name ${_e(t)}`;if(t.length===0)throw new Error(`${e} cannot be empty`);if(t.length===1)throw new Error(`${e} must be longer than a character`);const u=t.match(ur);if(u)throw new Error(`${e} cannot contain ${_e(u?.[0])}`)},"B"),nr=a(t=>{const e={},u=a((s,n)=>{if(Ae(e,s))throw new Error(`Duplicate flags named ${_e(s)}`);e[s]=n},"r");for(const s in t){if(!Ae(t,s))continue;sr(s);const n=t[s],r=[[],...Ru(n),n];u(s,r);const i=Qn(s);if(s!==i&&u(i,r),"alias"in n&&typeof n.alias=="string"){const{alias:o}=n,D=`Flag alias ${_e(o)} for flag ${_e(s)}`;if(o.length===0)throw new Error(`${D} cannot be empty`);if(o.length>1)throw new Error(`${D} must be a single character`);u(o,r)}}return e},"K$1"),rr=a((t,e)=>{const u={};for(const s in t){if(!Ae(t,s))continue;const[n,,r,i]=e[s];if(n.length===0&&"default"in i){let{default:o}=i;typeof o=="function"&&(o=o()),u[s]=o}else u[s]=r?n:n.pop()}return u},"_$2"),We="--",ir=/[.:=]/,or=/^-{1,2}\w/,Dr=a(t=>{if(!or.test(t))return;const e=!t.startsWith(We);let u=t.slice(e?1:2),s;const n=u.match(ir);if(n){const{index:r}=n;s=u.slice(r+1),u=u.slice(0,r)}return[u,s,e]},"N"),ar=a((t,{onFlag:e,onArgument:u})=>{let s;const n=a((r,i)=>{if(typeof s!="function")return!0;s(r,i),s=void 0},"o");for(let r=0;r<t.length;r+=1){const i=t[r];if(i===We){n();const D=t.slice(r+1);u?.(D,[r],!0);break}const o=Dr(i);if(o){if(n(),!e)continue;const[D,l,f]=o;if(f)for(let h=0;h<D.length;h+=1){n();const c=h===D.length-1;s=e(D[h],c?l:void 0,[r,h+1,c])}else s=e(D,l,[r])}else n(i,[r])&&u?.([i],[r])}n()},"$$1"),lr=a((t,e)=>{for(const[u,s,n]of e.reverse()){if(s){const r=t[u];let i=r.slice(0,s);if(n||(i+=r.slice(s+1)),i!=="-"){t[u]=i;continue}}t.splice(u,1)}},"E"),bu=a((t,e=process.argv.slice(2),{ignore:u}={})=>{const s=[],n=nr(t),r={},i=[];return i[We]=[],ar(e,{onFlag(o,D,l){const f=Ae(n,o);if(!u?.(f?zn:Yn,o,D)){if(f){const[h,c]=n[o],C=er(c,D),F=a((m,R)=>{s.push(l),R&&s.push(R),h.push(tr(c,m||""))},"p");return C===void 0?F:F(C)}Ae(r,o)||(r[o]=[]),r[o].push(D===void 0?!0:D),s.push(l)}},onArgument(o,D,l){u?.(qn,e[D[0]])||(i.push(...o),l?(i[We]=o,e.splice(D[0])):s.push(D))}}),lr(e,s),{flags:rr(t,n),unknownFlags:r,_:i}},"U$2");var cr=Object.create,Ge=Object.defineProperty,fr=Object.defineProperties,hr=Object.getOwnPropertyDescriptor,dr=Object.getOwnPropertyDescriptors,Er=Object.getOwnPropertyNames,vu=Object.getOwnPropertySymbols,pr=Object.getPrototypeOf,Su=Object.prototype.hasOwnProperty,Cr=Object.prototype.propertyIsEnumerable,Bu=a((t,e,u)=>e in t?Ge(t,e,{enumerable:!0,configurable:!0,writable:!0,value:u}):t[e]=u,"W$1"),je=a((t,e)=>{for(var u in e||(e={}))Su.call(e,u)&&Bu(t,u,e[u]);if(vu)for(var u of vu(e))Cr.call(e,u)&&Bu(t,u,e[u]);return t},"p"),ht=a((t,e)=>fr(t,dr(e)),"c"),Fr=a(t=>Ge(t,"__esModule",{value:!0}),"nD"),gr=a((t,e)=>()=>(t&&(e=t(t=0)),e),"rD"),mr=a((t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),"iD"),_r=a((t,e,u,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Er(e))!Su.call(t,n)&&n!=="default"&&Ge(t,n,{get:a(()=>e[n],"get"),enumerable:!(s=hr(e,n))||s.enumerable});return t},"oD"),Ar=a((t,e)=>_r(Fr(Ge(t!=null?cr(pr(t)):{},"default",{value:t,enumerable:!0})),t),"BD"),V=gr(()=>{}),yr=mr((t,e)=>{V(),e.exports=function(){return/\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g}});V(),V(),V();var wr=a(t=>{var e,u,s;let n=(e=process.stdout.columns)!=null?e:Number.POSITIVE_INFINITY;return typeof t=="function"&&(t=t(n)),t||(t={}),Array.isArray(t)?{columns:t,stdoutColumns:n}:{columns:(u=t.columns)!=null?u:[],stdoutColumns:(s=t.stdoutColumns)!=null?s:n}},"v");V(),V(),V(),V(),V();function Rr({onlyFirst:t=!1}={}){let e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(e,t?void 0:"g")}a(Rr,"w$1");function $u(t){if(typeof t!="string")throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);return t.replace(Rr(),"")}a($u,"d$1"),V();function br(t){return Number.isInteger(t)?t>=4352&&(t<=4447||t===9001||t===9002||11904<=t&&t<=12871&&t!==12351||12880<=t&&t<=19903||19968<=t&&t<=42182||43360<=t&&t<=43388||44032<=t&&t<=55203||63744<=t&&t<=64255||65040<=t&&t<=65049||65072<=t&&t<=65131||65281<=t&&t<=65376||65504<=t&&t<=65510||110592<=t&&t<=110593||127488<=t&&t<=127569||131072<=t&&t<=262141):!1}a(br,"y$1");var vr=Ar(yr());function De(t){if(typeof t!="string"||t.length===0||(t=$u(t),t.length===0))return 0;t=t.replace((0,vr.default)()," ");let e=0;for(let u=0;u<t.length;u++){let s=t.codePointAt(u);s<=31||s>=127&&s<=159||s>=768&&s<=879||(s>65535&&u++,e+=br(s)?2:1)}return e}a(De,"g");var Tu=a(t=>Math.max(...t.split(`
3
- `).map(De)),"b$1"),Sr=a(t=>{let e=[];for(let u of t){let{length:s}=u,n=s-e.length;for(let r=0;r<n;r+=1)e.push(0);for(let r=0;r<s;r+=1){let i=Tu(u[r]);i>e[r]&&(e[r]=i)}}return e},"k$1");V();var xu=/^\d+%$/,Ou={width:"auto",align:"left",contentWidth:0,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,horizontalPadding:0,paddingLeftString:"",paddingRightString:""},Br=a((t,e)=>{var u;let s=[];for(let n=0;n<t.length;n+=1){let r=(u=e[n])!=null?u:"auto";if(typeof r=="number"||r==="auto"||r==="content-width"||typeof r=="string"&&xu.test(r)){s.push(ht(je({},Ou),{width:r,contentWidth:t[n]}));continue}if(r&&typeof r=="object"){let i=ht(je(je({},Ou),r),{contentWidth:t[n]});i.horizontalPadding=i.paddingLeft+i.paddingRight,s.push(i);continue}throw new Error(`Invalid column width: ${JSON.stringify(r)}`)}return s},"sD");function $r(t,e){for(let u of t){let{width:s}=u;if(s==="content-width"&&(u.width=u.contentWidth),s==="auto"){let D=Math.min(20,u.contentWidth);u.width=D,u.autoOverflow=u.contentWidth-D}if(typeof s=="string"&&xu.test(s)){let D=Number.parseFloat(s.slice(0,-1))/100;u.width=Math.floor(e*D)-(u.paddingLeft+u.paddingRight)}let{horizontalPadding:n}=u,r=1,i=r+n;if(i>=e){let D=i-e,l=Math.ceil(u.paddingLeft/n*D),f=D-l;u.paddingLeft-=l,u.paddingRight-=f,u.horizontalPadding=u.paddingLeft+u.paddingRight}u.paddingLeftString=u.paddingLeft?" ".repeat(u.paddingLeft):"",u.paddingRightString=u.paddingRight?" ".repeat(u.paddingRight):"";let o=e-u.horizontalPadding;u.width=Math.max(Math.min(u.width,o),r)}}a($r,"aD");var Nu=a(()=>Object.assign([],{columns:0}),"G$1");function Tr(t,e){let u=[Nu()],[s]=u;for(let n of t){let r=n.width+n.horizontalPadding;s.columns+r>e&&(s=Nu(),u.push(s)),s.push(n),s.columns+=r}for(let n of u){let r=n.reduce((c,C)=>c+C.width+C.horizontalPadding,0),i=e-r;if(i===0)continue;let o=n.filter(c=>"autoOverflow"in c),D=o.filter(c=>c.autoOverflow>0),l=D.reduce((c,C)=>c+C.autoOverflow,0),f=Math.min(l,i);for(let c of D){let C=Math.floor(c.autoOverflow/l*f);c.width+=C,i-=C}let h=Math.floor(i/o.length);for(let c=0;c<o.length;c+=1){let C=o[c];c===o.length-1?C.width+=i:C.width+=h,i-=h}}return u}a(Tr,"lD");function xr(t,e,u){let s=Br(u,e);return $r(s,t),Tr(s,t)}a(xr,"Z$1"),V(),V(),V();var dt=10,Pu=a((t=0)=>e=>`\x1B[${e+t}m`,"U$1"),Hu=a((t=0)=>e=>`\x1B[${38+t};5;${e}m`,"V$1"),Lu=a((t=0)=>(e,u,s)=>`\x1B[${38+t};2;${e};${u};${s}m`,"Y");function Or(){let t=new Map,e={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};e.color.gray=e.color.blackBright,e.bgColor.bgGray=e.bgColor.bgBlackBright,e.color.grey=e.color.blackBright,e.bgColor.bgGrey=e.bgColor.bgBlackBright;for(let[u,s]of Object.entries(e)){for(let[n,r]of Object.entries(s))e[n]={open:`\x1B[${r[0]}m`,close:`\x1B[${r[1]}m`},s[n]=e[n],t.set(r[0],r[1]);Object.defineProperty(e,u,{value:s,enumerable:!1})}return Object.defineProperty(e,"codes",{value:t,enumerable:!1}),e.color.close="\x1B[39m",e.bgColor.close="\x1B[49m",e.color.ansi=Pu(),e.color.ansi256=Hu(),e.color.ansi16m=Lu(),e.bgColor.ansi=Pu(dt),e.bgColor.ansi256=Hu(dt),e.bgColor.ansi16m=Lu(dt),Object.defineProperties(e,{rgbToAnsi256:{value:a((u,s,n)=>u===s&&s===n?u<8?16:u>248?231:Math.round((u-8)/247*24)+232:16+36*Math.round(u/255*5)+6*Math.round(s/255*5)+Math.round(n/255*5),"value"),enumerable:!1},hexToRgb:{value:a(u=>{let s=/(?<colorString>[a-f\d]{6}|[a-f\d]{3})/i.exec(u.toString(16));if(!s)return[0,0,0];let{colorString:n}=s.groups;n.length===3&&(n=n.split("").map(i=>i+i).join(""));let r=Number.parseInt(n,16);return[r>>16&255,r>>8&255,r&255]},"value"),enumerable:!1},hexToAnsi256:{value:a(u=>e.rgbToAnsi256(...e.hexToRgb(u)),"value"),enumerable:!1},ansi256ToAnsi:{value:a(u=>{if(u<8)return 30+u;if(u<16)return 90+(u-8);let s,n,r;if(u>=232)s=((u-232)*10+8)/255,n=s,r=s;else{u-=16;let D=u%36;s=Math.floor(u/36)/5,n=Math.floor(D/6)/5,r=D%6/5}let i=Math.max(s,n,r)*2;if(i===0)return 30;let o=30+(Math.round(r)<<2|Math.round(n)<<1|Math.round(s));return i===2&&(o+=60),o},"value"),enumerable:!1},rgbToAnsi:{value:a((u,s,n)=>e.ansi256ToAnsi(e.rgbToAnsi256(u,s,n)),"value"),enumerable:!1},hexToAnsi:{value:a(u=>e.ansi256ToAnsi(e.hexToAnsi256(u)),"value"),enumerable:!1}}),e}a(Or,"AD");var Nr=Or(),Pr=Nr,Ue=new Set(["\x1B","\x9B"]),Hr=39,Et="\x07",Iu="[",Lr="]",ku="m",pt=`${Lr}8;;`,Mu=a(t=>`${Ue.values().next().value}${Iu}${t}${ku}`,"J$1"),Wu=a(t=>`${Ue.values().next().value}${pt}${t}${Et}`,"Q"),Ir=a(t=>t.split(" ").map(e=>De(e)),"hD"),Ct=a((t,e,u)=>{let s=[...e],n=!1,r=!1,i=De($u(t[t.length-1]));for(let[o,D]of s.entries()){let l=De(D);if(i+l<=u?t[t.length-1]+=D:(t.push(D),i=0),Ue.has(D)&&(n=!0,r=s.slice(o+1).join("").startsWith(pt)),n){r?D===Et&&(n=!1,r=!1):D===ku&&(n=!1);continue}i+=l,i===u&&o<s.length-1&&(t.push(""),i=0)}!i&&t[t.length-1].length>0&&t.length>1&&(t[t.length-2]+=t.pop())},"S$1"),kr=a(t=>{let e=t.split(" "),u=e.length;for(;u>0&&!(De(e[u-1])>0);)u--;return u===e.length?t:e.slice(0,u).join(" ")+e.slice(u).join("")},"cD"),Mr=a((t,e,u={})=>{if(u.trim!==!1&&t.trim()==="")return"";let s="",n,r,i=Ir(t),o=[""];for(let[l,f]of t.split(" ").entries()){u.trim!==!1&&(o[o.length-1]=o[o.length-1].trimStart());let h=De(o[o.length-1]);if(l!==0&&(h>=e&&(u.wordWrap===!1||u.trim===!1)&&(o.push(""),h=0),(h>0||u.trim===!1)&&(o[o.length-1]+=" ",h++)),u.hard&&i[l]>e){let c=e-h,C=1+Math.floor((i[l]-c-1)/e);Math.floor((i[l]-1)/e)<C&&o.push(""),Ct(o,f,e);continue}if(h+i[l]>e&&h>0&&i[l]>0){if(u.wordWrap===!1&&h<e){Ct(o,f,e);continue}o.push("")}if(h+i[l]>e&&u.wordWrap===!1){Ct(o,f,e);continue}o[o.length-1]+=f}u.trim!==!1&&(o=o.map(l=>kr(l)));let D=[...o.join(`
4
- `)];for(let[l,f]of D.entries()){if(s+=f,Ue.has(f)){let{groups:c}=new RegExp(`(?:\\${Iu}(?<code>\\d+)m|\\${pt}(?<uri>.*)${Et})`).exec(D.slice(l).join(""))||{groups:{}};if(c.code!==void 0){let C=Number.parseFloat(c.code);n=C===Hr?void 0:C}else c.uri!==void 0&&(r=c.uri.length===0?void 0:c.uri)}let h=Pr.codes.get(Number(n));D[l+1]===`
5
- `?(r&&(s+=Wu("")),n&&h&&(s+=Mu(h))):f===`
6
- `&&(n&&h&&(s+=Mu(n)),r&&(s+=Wu(r)))}return s},"dD");function Wr(t,e,u){return String(t).normalize().replace(/\r\n/g,`
7
- `).split(`
8
- `).map(s=>Mr(s,e,u)).join(`
9
- `)}a(Wr,"T$1");var Gu=a(t=>Array.from({length:t}).fill(""),"X");function Gr(t,e){let u=[],s=0;for(let n of t){let r=0,i=n.map(D=>{var l;let f=(l=e[s])!=null?l:"";s+=1,D.preprocess&&(f=D.preprocess(f)),Tu(f)>D.width&&(f=Wr(f,D.width,{hard:!0}));let h=f.split(`
10
- `);if(D.postprocess){let{postprocess:c}=D;h=h.map((C,F)=>c.call(D,C,F))}return D.paddingTop&&h.unshift(...Gu(D.paddingTop)),D.paddingBottom&&h.push(...Gu(D.paddingBottom)),h.length>r&&(r=h.length),ht(je({},D),{lines:h})}),o=[];for(let D=0;D<r;D+=1){let l=i.map(f=>{var h;let c=(h=f.lines[D])!=null?h:"",C=Number.isFinite(f.width)?" ".repeat(f.width-De(c)):"",F=f.paddingLeftString;return f.align==="right"&&(F+=C),F+=c,f.align==="left"&&(F+=C),F+f.paddingRightString}).join("");o.push(l)}u.push(o.join(`
11
- `))}return u.join(`
12
- `)}a(Gr,"P");function jr(t,e){if(!t||t.length===0)return"";let u=Sr(t),s=u.length;if(s===0)return"";let{stdoutColumns:n,columns:r}=wr(e);if(r.length>s)throw new Error(`${r.length} columns defined, but only ${s} columns found`);let i=xr(n,r,u);return t.map(o=>Gr(i,o)).join(`
13
- `)}a(jr,"mD"),V();var Ur=["<",">","=",">=","<="];function Kr(t){if(!Ur.includes(t))throw new TypeError(`Invalid breakpoint operator: ${t}`)}a(Kr,"xD");function Vr(t){let e=Object.keys(t).map(u=>{let[s,n]=u.split(" ");Kr(s);let r=Number.parseInt(n,10);if(Number.isNaN(r))throw new TypeError(`Invalid breakpoint value: ${n}`);let i=t[u];return{operator:s,breakpoint:r,value:i}}).sort((u,s)=>s.breakpoint-u.breakpoint);return u=>{var s;return(s=e.find(({operator:n,breakpoint:r})=>n==="="&&u===r||n===">"&&u>r||n==="<"&&u<r||n===">="&&u>=r||n==="<="&&u<=r))==null?void 0:s.value}}a(Vr,"wD");const zr=a(t=>t.replace(/[\W_]([a-z\d])?/gi,(e,u)=>u?u.toUpperCase():""),"S"),Yr=a(t=>t.replace(/\B([A-Z])/g,"-$1").toLowerCase(),"q"),qr={"> 80":[{width:"content-width",paddingLeft:2,paddingRight:8},{width:"auto"}],"> 40":[{width:"auto",paddingLeft:2,paddingRight:8,preprocess:a(t=>t.trim(),"preprocess")},{width:"100%",paddingLeft:2,paddingBottom:1}],"> 0":{stdoutColumns:1e3,columns:[{width:"content-width",paddingLeft:2,paddingRight:8},{width:"content-width"}]}};function Xr(t){let e=!1;return{type:"table",data:{tableData:Object.keys(t).sort((u,s)=>u.localeCompare(s)).map(u=>{const s=t[u],n="alias"in s;return n&&(e=!0),{name:u,flag:s,flagFormatted:`--${Yr(u)}`,aliasesEnabled:e,aliasFormatted:n?`-${s.alias}`:void 0}}).map(u=>(u.aliasesEnabled=e,[{type:"flagName",data:u},{type:"flagDescription",data:u}])),tableBreakpoints:qr}}}a(Xr,"D");const ju=a(t=>!t||(t.version??(t.help?t.help.version:void 0)),"A"),Uu=a(t=>{const e="parent"in t&&t.parent?.name;return(e?`${e} `:"")+t.name},"C");function Qr(t){const e=[];t.name&&e.push(Uu(t));const u=ju(t)??("parent"in t&&ju(t.parent));if(u&&e.push(`v${u}`),e.length!==0)return{id:"name",type:"text",data:`${e.join(" ")}
14
- `}}a(Qr,"R");function Zr(t){const{help:e}=t;if(!(!e||!e.description))return{id:"description",type:"text",data:`${e.description}
15
- `}}a(Zr,"L");function Jr(t){const e=t.help||{};if("usage"in e)return e.usage?{id:"usage",type:"section",data:{title:"Usage:",body:Array.isArray(e.usage)?e.usage.join(`
16
- `):e.usage}}:void 0;if(t.name){const u=[],s=[Uu(t)];if(t.flags&&Object.keys(t.flags).length>0&&s.push("[flags...]"),t.parameters&&t.parameters.length>0){const{parameters:n}=t,r=n.indexOf("--"),i=r>-1&&n.slice(r+1).some(o=>o.startsWith("<"));s.push(n.map(o=>o!=="--"?o:i?"--":"[--]").join(" "))}if(s.length>1&&u.push(s.join(" ")),"commands"in t&&t.commands?.length&&u.push(`${t.name} <command>`),u.length>0)return{id:"usage",type:"section",data:{title:"Usage:",body:u.join(`
17
- `)}}}}a(Jr,"T");function ei(t){return!("commands"in t)||!t.commands?.length?void 0:{id:"commands",type:"section",data:{title:"Commands:",body:{type:"table",data:{tableData:t.commands.map(e=>[e.options.name,e.options.help?e.options.help.description:""]),tableOptions:[{width:"content-width",paddingLeft:2,paddingRight:8}]}},indentBody:0}}}a(ei,"_");function ti(t){if(!(!t.flags||Object.keys(t.flags).length===0))return{id:"flags",type:"section",data:{title:"Flags:",body:Xr(t.flags),indentBody:0}}}a(ti,"k");function ui(t){const{help:e}=t;if(!e||!e.examples||e.examples.length===0)return;let{examples:u}=e;if(Array.isArray(u)&&(u=u.join(`
18
- `)),u)return{id:"examples",type:"section",data:{title:"Examples:",body:u}}}a(ui,"F");function si(t){if(!("alias"in t)||!t.alias)return;const{alias:e}=t;return{id:"aliases",type:"section",data:{title:"Aliases:",body:Array.isArray(e)?e.join(", "):e}}}a(si,"H");const ni=a(t=>[Qr,Zr,Jr,ei,ti,ui,si].map(e=>e(t)).filter(Boolean),"U"),ri=$n.WriteStream.prototype.hasColors();class ii{static{a(this,"M")}text(e){return e}bold(e){return ri?`\x1B[1m${e}\x1B[22m`:e.toLocaleUpperCase()}indentText({text:e,spaces:u}){return e.replace(/^/gm," ".repeat(u))}heading(e){return this.bold(e)}section({title:e,body:u,indentBody:s=2}){return`${(e?`${this.heading(e)}
19
- `:"")+(u?this.indentText({text:this.render(u),spaces:s}):"")}
20
- `}table({tableData:e,tableOptions:u,tableBreakpoints:s}){return jr(e.map(n=>n.map(r=>this.render(r))),s?Vr(s):u)}flagParameter(e){return e===Boolean?"":e===String?"<string>":e===Number?"<number>":Array.isArray(e)?this.flagParameter(e[0]):"<value>"}flagOperator(e){return" "}flagName(e){const{flag:u,flagFormatted:s,aliasesEnabled:n,aliasFormatted:r}=e;let i="";if(r?i+=`${r}, `:n&&(i+=" "),i+=s,"placeholder"in u&&typeof u.placeholder=="string")i+=`${this.flagOperator(e)}${u.placeholder}`;else{const o=this.flagParameter("type"in u?u.type:u);o&&(i+=`${this.flagOperator(e)}${o}`)}return i}flagDefault(e){return JSON.stringify(e)}flagDescription({flag:e}){let u="description"in e?e.description??"":"";if("default"in e){let{default:s}=e;typeof s=="function"&&(s=s()),s&&(u+=` (default: ${this.flagDefault(s)})`)}return u}render(e){if(typeof e=="string")return e;if(Array.isArray(e))return e.map(u=>this.render(u)).join(`
21
- `);if("type"in e&&this[e.type]){const u=this[e.type];if(typeof u=="function")return u.call(this,e.data)}throw new Error(`Invalid node type: ${JSON.stringify(e)}`)}}const Ft=/^[\w.-]+$/,{stringify:ue}=JSON,oi=/[|\\{}()[\]^$+*?.]/;function gt(t){const e=[];let u,s;for(const n of t){if(s)throw new Error(`Invalid parameter: Spread parameter ${ue(s)} must be last`);const r=n[0],i=n[n.length-1];let o;if(r==="<"&&i===">"&&(o=!0,u))throw new Error(`Invalid parameter: Required parameter ${ue(n)} cannot come after optional parameter ${ue(u)}`);if(r==="["&&i==="]"&&(o=!1,u=n),o===void 0)throw new Error(`Invalid parameter: ${ue(n)}. Must be wrapped in <> (required parameter) or [] (optional parameter)`);let D=n.slice(1,-1);const l=D.slice(-3)==="...";l&&(s=n,D=D.slice(0,-3));const f=D.match(oi);if(f)throw new Error(`Invalid parameter: ${ue(n)}. Invalid character found ${ue(f[0])}`);e.push({name:D,required:o,spread:l})}return e}a(gt,"w");function mt(t,e,u,s){for(let n=0;n<e.length;n+=1){const{name:r,required:i,spread:o}=e[n],D=zr(r);if(D in t)throw new Error(`Invalid parameter: ${ue(r)} is used more than once.`);const l=o?u.slice(n):u[n];if(o&&(n=e.length),i&&(!l||o&&l.length===0))return console.error(`Error: Missing required parameter ${ue(r)}
22
- `),s(),process.exit(1);t[D]=l}}a(mt,"b");function Di(t){return t===void 0||t!==!1}a(Di,"W");function Ku(t,e,u,s){const n={...e.flags},r=e.version;r&&(n.version={type:Boolean,description:"Show version"});const{help:i}=e,o=Di(i);o&&!("help"in n)&&(n.help={type:Boolean,alias:"h",description:"Show help"});const D=bu(n,s,{ignore:e.ignoreArgv}),l=a(()=>{console.log(e.version)},"f");if(r&&D.flags.version===!0)return l(),process.exit(0);const f=new ii,h=o&&i?.render?i.render:F=>f.render(F),c=a(F=>{const m=ni({...e,...F?{help:F}:{},flags:n});console.log(h(m,f))},"u");if(o&&D.flags.help===!0)return c(),process.exit(0);if(e.parameters){let{parameters:F}=e,m=D._;const R=F.indexOf("--"),T=F.slice(R+1),H=Object.create(null);if(R>-1&&T.length>0){F=F.slice(0,R);const O=D._["--"];m=m.slice(0,-O.length||void 0),mt(H,gt(F),m,c),mt(H,gt(T),O,c)}else mt(H,gt(F),m,c);Object.assign(D._,H)}const C={...D,showVersion:l,showHelp:c};return typeof u=="function"&&u(C),{command:t,...C}}a(Ku,"x");function ai(t,e){const u=new Map;for(const s of e){const n=[s.options.name],{alias:r}=s.options;r&&(Array.isArray(r)?n.push(...r):n.push(r));for(const i of n){if(u.has(i))throw new Error(`Duplicate command name found: ${ue(i)}`);u.set(i,s)}}return u.get(t)}a(ai,"z");function Vu(t,e,u=process.argv.slice(2)){if(!t)throw new Error("Options is required");if("name"in t&&(!t.name||!Ft.test(t.name)))throw new Error(`Invalid script name: ${ue(t.name)}`);const s=u[0];if(t.commands&&Ft.test(s)){const n=ai(s,t.commands);if(n)return Ku(n.options.name,{...n.options,parent:t},n.callback,u.slice(1))}return Ku(void 0,t,e,u)}a(Vu,"Z");function li(t,e){if(!t)throw new Error("Command options are required");const{name:u}=t;if(t.name===void 0)throw new Error("Command name is required");if(!Ft.test(u))throw new Error(`Invalid command name ${JSON.stringify(u)}. Command names must be one word.`);return{options:t,callback:e}}a(li,"G");var ci=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function zu(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}a(zu,"getDefaultExportFromCjs");var fe={exports:{}},_t,Yu;function fi(){if(Yu)return _t;Yu=1,_t=s,s.sync=n;var t=oe;function e(r,i){var o=i.pathExt!==void 0?i.pathExt:process.env.PATHEXT;if(!o||(o=o.split(";"),o.indexOf("")!==-1))return!0;for(var D=0;D<o.length;D++){var l=o[D].toLowerCase();if(l&&r.substr(-l.length).toLowerCase()===l)return!0}return!1}a(e,"checkPathExt");function u(r,i,o){return!r.isSymbolicLink()&&!r.isFile()?!1:e(i,o)}a(u,"checkStat");function s(r,i,o){t.stat(r,function(D,l){o(D,D?!1:u(l,r,i))})}a(s,"isexe");function n(r,i){return u(t.statSync(r),r,i)}return a(n,"sync"),_t}a(fi,"requireWindows");var At,qu;function hi(){if(qu)return At;qu=1,At=e,e.sync=u;var t=oe;function e(r,i,o){t.stat(r,function(D,l){o(D,D?!1:s(l,i))})}a(e,"isexe");function u(r,i){return s(t.statSync(r),i)}a(u,"sync");function s(r,i){return r.isFile()&&n(r,i)}a(s,"checkStat");function n(r,i){var o=r.mode,D=r.uid,l=r.gid,f=i.uid!==void 0?i.uid:process.getuid&&process.getuid(),h=i.gid!==void 0?i.gid:process.getgid&&process.getgid(),c=parseInt("100",8),C=parseInt("010",8),F=parseInt("001",8),m=c|C,R=o&F||o&C&&l===h||o&c&&D===f||o&m&&f===0;return R}return a(n,"checkMode"),At}a(hi,"requireMode");var Ke;process.platform==="win32"||ci.TESTING_WINDOWS?Ke=fi():Ke=hi();var di=yt;yt.sync=Ei;function yt(t,e,u){if(typeof e=="function"&&(u=e,e={}),!u){if(typeof Promise!="function")throw new TypeError("callback not provided");return new Promise(function(s,n){yt(t,e||{},function(r,i){r?n(r):s(i)})})}Ke(t,e||{},function(s,n){s&&(s.code==="EACCES"||e&&e.ignoreErrors)&&(s=null,n=!1),u(s,n)})}a(yt,"isexe$1");function Ei(t,e){try{return Ke.sync(t,e||{})}catch(u){if(e&&e.ignoreErrors||u.code==="EACCES")return!1;throw u}}a(Ei,"sync");const he=process.platform==="win32"||process.env.OSTYPE==="cygwin"||process.env.OSTYPE==="msys",Xu=q,pi=he?";":":",Qu=di,Zu=a(t=>Object.assign(new Error(`not found: ${t}`),{code:"ENOENT"}),"getNotFoundError"),Ju=a((t,e)=>{const u=e.colon||pi,s=t.match(/\//)||he&&t.match(/\\/)?[""]:[...he?[process.cwd()]:[],...(e.path||process.env.PATH||"").split(u)],n=he?e.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM":"",r=he?n.split(u):[""];return he&&t.indexOf(".")!==-1&&r[0]!==""&&r.unshift(""),{pathEnv:s,pathExt:r,pathExtExe:n}},"getPathInfo"),es=a((t,e,u)=>{typeof e=="function"&&(u=e,e={}),e||(e={});const{pathEnv:s,pathExt:n,pathExtExe:r}=Ju(t,e),i=[],o=a(l=>new Promise((f,h)=>{if(l===s.length)return e.all&&i.length?f(i):h(Zu(t));const c=s[l],C=/^".*"$/.test(c)?c.slice(1,-1):c,F=Xu.join(C,t),m=!C&&/^\.[\\\/]/.test(t)?t.slice(0,2)+F:F;f(D(m,l,0))}),"step"),D=a((l,f,h)=>new Promise((c,C)=>{if(h===n.length)return c(o(f+1));const F=n[h];Qu(l+F,{pathExt:r},(m,R)=>{if(!m&&R)if(e.all)i.push(l+F);else return c(l+F);return c(D(l,f,h+1))})}),"subStep");return u?o(0).then(l=>u(null,l),u):o(0)},"which$1"),Ci=a((t,e)=>{e=e||{};const{pathEnv:u,pathExt:s,pathExtExe:n}=Ju(t,e),r=[];for(let i=0;i<u.length;i++){const o=u[i],D=/^".*"$/.test(o)?o.slice(1,-1):o,l=Xu.join(D,t),f=!D&&/^\.[\\\/]/.test(t)?t.slice(0,2)+l:l;for(let h=0;h<s.length;h++){const c=f+s[h];try{if(Qu.sync(c,{pathExt:n}))if(e.all)r.push(c);else return c}catch{}}}if(e.all&&r.length)return r;if(e.nothrow)return null;throw Zu(t)},"whichSync");var Fi=es;es.sync=Ci;var wt={exports:{}};const ts=a((t={})=>{const e=t.env||process.env;return(t.platform||process.platform)!=="win32"?"PATH":Object.keys(e).reverse().find(s=>s.toUpperCase()==="PATH")||"Path"},"pathKey");wt.exports=ts,wt.exports.default=ts;var gi=wt.exports;const us=q,mi=Fi,_i=gi;function ss(t,e){const u=t.options.env||process.env,s=process.cwd(),n=t.options.cwd!=null,r=n&&process.chdir!==void 0&&!process.chdir.disabled;if(r)try{process.chdir(t.options.cwd)}catch{}let i;try{i=mi.sync(t.command,{path:u[_i({env:u})],pathExt:e?us.delimiter:void 0})}catch{}finally{r&&process.chdir(s)}return i&&(i=us.resolve(n?t.options.cwd:"",i)),i}a(ss,"resolveCommandAttempt");function Ai(t){return ss(t)||ss(t,!0)}a(Ai,"resolveCommand$1");var yi=Ai,Rt={};const bt=/([()\][%!^"`<>&|;, *?])/g;function wi(t){return t=t.replace(bt,"^$1"),t}a(wi,"escapeCommand");function Ri(t,e){return t=`${t}`,t=t.replace(/(?=(\\+?)?)\1"/g,'$1$1\\"'),t=t.replace(/(?=(\\+?)?)\1$/,"$1$1"),t=`"${t}"`,t=t.replace(bt,"^$1"),e&&(t=t.replace(bt,"^$1")),t}a(Ri,"escapeArgument"),Rt.command=wi,Rt.argument=Ri;var bi=/^#!(.*)/;const vi=bi;var Si=a((t="")=>{const e=t.match(vi);if(!e)return null;const[u,s]=e[0].replace(/#! ?/,"").split(" "),n=u.split("/").pop();return n==="env"?s:s?`${n} ${s}`:n},"shebangCommand$1");const vt=oe,Bi=Si;function $i(t){const u=Buffer.alloc(150);let s;try{s=vt.openSync(t,"r"),vt.readSync(s,u,0,150,0),vt.closeSync(s)}catch{}return Bi(u.toString())}a($i,"readShebang$1");var Ti=$i;const xi=q,ns=yi,rs=Rt,Oi=Ti,Ni=process.platform==="win32",Pi=/\.(?:com|exe)$/i,Hi=/node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;function Li(t){t.file=ns(t);const e=t.file&&Oi(t.file);return e?(t.args.unshift(t.file),t.command=e,ns(t)):t.file}a(Li,"detectShebang");function Ii(t){if(!Ni)return t;const e=Li(t),u=!Pi.test(e);if(t.options.forceShell||u){const s=Hi.test(e);t.command=xi.normalize(t.command),t.command=rs.command(t.command),t.args=t.args.map(r=>rs.argument(r,s));const n=[t.command].concat(t.args).join(" ");t.args=["/d","/s","/c",`"${n}"`],t.command=process.env.comspec||"cmd.exe",t.options.windowsVerbatimArguments=!0}return t}a(Ii,"parseNonShell");function ki(t,e,u){e&&!Array.isArray(e)&&(u=e,e=null),e=e?e.slice(0):[],u=Object.assign({},u);const s={command:t,args:e,options:u,file:void 0,original:{command:t,args:e}};return u.shell?s:Ii(s)}a(ki,"parse$5");var Mi=ki;const St=process.platform==="win32";function Bt(t,e){return Object.assign(new Error(`${e} ${t.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${e} ${t.command}`,path:t.command,spawnargs:t.args})}a(Bt,"notFoundError");function Wi(t,e){if(!St)return;const u=t.emit;t.emit=function(s,n){if(s==="exit"){const r=is(n,e);if(r)return u.call(t,"error",r)}return u.apply(t,arguments)}}a(Wi,"hookChildProcess");function is(t,e){return St&&t===1&&!e.file?Bt(e.original,"spawn"):null}a(is,"verifyENOENT");function Gi(t,e){return St&&t===1&&!e.file?Bt(e.original,"spawnSync"):null}a(Gi,"verifyENOENTSync");var ji={hookChildProcess:Wi,verifyENOENT:is,verifyENOENTSync:Gi,notFoundError:Bt};const os=Hn,$t=Mi,Tt=ji;function Ds(t,e,u){const s=$t(t,e,u),n=os.spawn(s.command,s.args,s.options);return Tt.hookChildProcess(n,s),n}a(Ds,"spawn");function Ui(t,e,u){const s=$t(t,e,u),n=os.spawnSync(s.command,s.args,s.options);return n.error=n.error||Tt.verifyENOENTSync(n.status,s),n}a(Ui,"spawnSync"),fe.exports=Ds,fe.exports.spawn=Ds,fe.exports.sync=Ui,fe.exports._parse=$t,fe.exports._enoent=Tt;var Ki=fe.exports,Vi=zu(Ki);const as=a((t,e)=>{const u={...process.env},s=["inherit","inherit","inherit"];process.send&&s.push("ipc"),e&&(e.noCache&&(u.TSX_DISABLE_CACHE="1"),e.tsconfigPath&&(u.TSX_TSCONFIG_PATH=e.tsconfigPath));const n=t.filter(r=>r!=="-i"&&r!=="--interactive").length===0;return Vi(process.execPath,["--require",Ie.resolve("./preflight.cjs"),...n?["--require",Ie.resolve("./patch-repl.cjs")]:[],yu(Ln)?"--import":"--loader",Nn(Ie.resolve("./loader.mjs")).toString(),...t],{stdio:s,env:u})},"run");var Ve={};const zi=q,se="\\\\/",ls=`[^${se}]`,ne="\\.",Yi="\\+",qi="\\?",ze="\\/",Xi="(?=.)",cs="[^/]",xt=`(?:${ze}|$)`,fs=`(?:^|${ze})`,Ot=`${ne}{1,2}${xt}`,Qi=`(?!${ne})`,Zi=`(?!${fs}${Ot})`,Ji=`(?!${ne}{0,1}${xt})`,eo=`(?!${Ot})`,to=`[^.${ze}]`,uo=`${cs}*?`,hs={DOT_LITERAL:ne,PLUS_LITERAL:Yi,QMARK_LITERAL:qi,SLASH_LITERAL:ze,ONE_CHAR:Xi,QMARK:cs,END_ANCHOR:xt,DOTS_SLASH:Ot,NO_DOT:Qi,NO_DOTS:Zi,NO_DOT_SLASH:Ji,NO_DOTS_SLASH:eo,QMARK_NO_DOT:to,STAR:uo,START_ANCHOR:fs},so={...hs,SLASH_LITERAL:`[${se}]`,QMARK:ls,STAR:`${ls}*?`,DOTS_SLASH:`${ne}{1,2}(?:[${se}]|$)`,NO_DOT:`(?!${ne})`,NO_DOTS:`(?!(?:^|[${se}])${ne}{1,2}(?:[${se}]|$))`,NO_DOT_SLASH:`(?!${ne}{0,1}(?:[${se}]|$))`,NO_DOTS_SLASH:`(?!${ne}{1,2}(?:[${se}]|$))`,QMARK_NO_DOT:`[^.${se}]`,START_ANCHOR:`(?:^|[${se}])`,END_ANCHOR:`(?:[${se}]|$)`},no={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};var Ye={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:no,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:zi.sep,extglobChars(t){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${t.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(t){return t===!0?so:hs}};(function(t){const e=q,u=process.platform==="win32",{REGEX_BACKSLASH:s,REGEX_REMOVE_BACKSLASH:n,REGEX_SPECIAL_CHARS:r,REGEX_SPECIAL_CHARS_GLOBAL:i}=Ye;t.isObject=o=>o!==null&&typeof o=="object"&&!Array.isArray(o),t.hasRegexChars=o=>r.test(o),t.isRegexChar=o=>o.length===1&&t.hasRegexChars(o),t.escapeRegex=o=>o.replace(i,"\\$1"),t.toPosixSlashes=o=>o.replace(s,"/"),t.removeBackslashes=o=>o.replace(n,D=>D==="\\"?"":D),t.supportsLookbehinds=()=>{const o=process.version.slice(1).split(".").map(Number);return o.length===3&&o[0]>=9||o[0]===8&&o[1]>=10},t.isWindows=o=>o&&typeof o.windows=="boolean"?o.windows:u===!0||e.sep==="\\",t.escapeLast=(o,D,l)=>{const f=o.lastIndexOf(D,l);return f===-1?o:o[f-1]==="\\"?t.escapeLast(o,D,f-1):`${o.slice(0,f)}\\${o.slice(f)}`},t.removePrefix=(o,D={})=>{let l=o;return l.startsWith("./")&&(l=l.slice(2),D.prefix="./"),l},t.wrapOutput=(o,D={},l={})=>{const f=l.contains?"":"^",h=l.contains?"":"$";let c=`${f}(?:${o})${h}`;return D.negated===!0&&(c=`(?:^(?!${c}).*$)`),c}})(Ve);const ds=Ve,{CHAR_ASTERISK:Nt,CHAR_AT:ro,CHAR_BACKWARD_SLASH:ye,CHAR_COMMA:io,CHAR_DOT:Pt,CHAR_EXCLAMATION_MARK:Ht,CHAR_FORWARD_SLASH:Es,CHAR_LEFT_CURLY_BRACE:Lt,CHAR_LEFT_PARENTHESES:It,CHAR_LEFT_SQUARE_BRACKET:oo,CHAR_PLUS:Do,CHAR_QUESTION_MARK:ps,CHAR_RIGHT_CURLY_BRACE:ao,CHAR_RIGHT_PARENTHESES:Cs,CHAR_RIGHT_SQUARE_BRACKET:lo}=Ye,Fs=a(t=>t===Es||t===ye,"isPathSeparator"),gs=a(t=>{t.isPrefix!==!0&&(t.depth=t.isGlobstar?1/0:1)},"depth"),co=a((t,e)=>{const u=e||{},s=t.length-1,n=u.parts===!0||u.scanToEnd===!0,r=[],i=[],o=[];let D=t,l=-1,f=0,h=0,c=!1,C=!1,F=!1,m=!1,R=!1,T=!1,H=!1,O=!1,z=!1,I=!1,Z=0,M,y,g={value:"",depth:0,isGlob:!1};const w=a(()=>l>=s,"eos"),d=a(()=>D.charCodeAt(l+1),"peek"),b=a(()=>(M=y,D.charCodeAt(++l)),"advance");for(;l<s;){y=b();let U;if(y===ye){H=g.backslashes=!0,y=b(),y===Lt&&(T=!0);continue}if(T===!0||y===Lt){for(Z++;w()!==!0&&(y=b());){if(y===ye){H=g.backslashes=!0,b();continue}if(y===Lt){Z++;continue}if(T!==!0&&y===Pt&&(y=b())===Pt){if(c=g.isBrace=!0,F=g.isGlob=!0,I=!0,n===!0)continue;break}if(T!==!0&&y===io){if(c=g.isBrace=!0,F=g.isGlob=!0,I=!0,n===!0)continue;break}if(y===ao&&(Z--,Z===0)){T=!1,c=g.isBrace=!0,I=!0;break}}if(n===!0)continue;break}if(y===Es){if(r.push(l),i.push(g),g={value:"",depth:0,isGlob:!1},I===!0)continue;if(M===Pt&&l===f+1){f+=2;continue}h=l+1;continue}if(u.noext!==!0&&(y===Do||y===ro||y===Nt||y===ps||y===Ht)===!0&&d()===It){if(F=g.isGlob=!0,m=g.isExtglob=!0,I=!0,y===Ht&&l===f&&(z=!0),n===!0){for(;w()!==!0&&(y=b());){if(y===ye){H=g.backslashes=!0,y=b();continue}if(y===Cs){F=g.isGlob=!0,I=!0;break}}continue}break}if(y===Nt){if(M===Nt&&(R=g.isGlobstar=!0),F=g.isGlob=!0,I=!0,n===!0)continue;break}if(y===ps){if(F=g.isGlob=!0,I=!0,n===!0)continue;break}if(y===oo){for(;w()!==!0&&(U=b());){if(U===ye){H=g.backslashes=!0,b();continue}if(U===lo){C=g.isBracket=!0,F=g.isGlob=!0,I=!0;break}}if(n===!0)continue;break}if(u.nonegate!==!0&&y===Ht&&l===f){O=g.negated=!0,f++;continue}if(u.noparen!==!0&&y===It){if(F=g.isGlob=!0,n===!0){for(;w()!==!0&&(y=b());){if(y===It){H=g.backslashes=!0,y=b();continue}if(y===Cs){I=!0;break}}continue}break}if(F===!0){if(I=!0,n===!0)continue;break}}u.noext===!0&&(m=!1,F=!1);let v=D,W="",E="";f>0&&(W=D.slice(0,f),D=D.slice(f),h-=f),v&&F===!0&&h>0?(v=D.slice(0,h),E=D.slice(h)):F===!0?(v="",E=D):v=D,v&&v!==""&&v!=="/"&&v!==D&&Fs(v.charCodeAt(v.length-1))&&(v=v.slice(0,-1)),u.unescape===!0&&(E&&(E=ds.removeBackslashes(E)),v&&H===!0&&(v=ds.removeBackslashes(v)));const p={prefix:W,input:t,start:f,base:v,glob:E,isBrace:c,isBracket:C,isGlob:F,isExtglob:m,isGlobstar:R,negated:O,negatedExtglob:z};if(u.tokens===!0&&(p.maxDepth=0,Fs(y)||i.push(g),p.tokens=i),u.parts===!0||u.tokens===!0){let U;for(let $=0;$<r.length;$++){const ee=U?U+1:f,te=r[$],Y=t.slice(ee,te);u.tokens&&($===0&&f!==0?(i[$].isPrefix=!0,i[$].value=W):i[$].value=Y,gs(i[$]),p.maxDepth+=i[$].depth),($!==0||Y!=="")&&o.push(Y),U=te}if(U&&U+1<t.length){const $=t.slice(U+1);o.push($),u.tokens&&(i[i.length-1].value=$,gs(i[i.length-1]),p.maxDepth+=i[i.length-1].depth)}p.slashes=r,p.parts=o}return p},"scan$1");var fo=co;const qe=Ye,X=Ve,{MAX_LENGTH:Xe,POSIX_REGEX_SOURCE:ho,REGEX_NON_SPECIAL_CHARS:Eo,REGEX_SPECIAL_CHARS_BACKREF:po,REPLACEMENTS:ms}=qe,Co=a((t,e)=>{if(typeof e.expandRange=="function")return e.expandRange(...t,e);t.sort();const u=`[${t.join("-")}]`;try{new RegExp(u)}catch{return t.map(n=>X.escapeRegex(n)).join("..")}return u},"expandRange"),de=a((t,e)=>`Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`,"syntaxError"),kt=a((t,e)=>{if(typeof t!="string")throw new TypeError("Expected a string");t=ms[t]||t;const u={...e},s=typeof u.maxLength=="number"?Math.min(Xe,u.maxLength):Xe;let n=t.length;if(n>s)throw new SyntaxError(`Input length: ${n}, exceeds maximum allowed length: ${s}`);const r={type:"bos",value:"",output:u.prepend||""},i=[r],o=u.capture?"":"?:",D=X.isWindows(e),l=qe.globChars(D),f=qe.extglobChars(l),{DOT_LITERAL:h,PLUS_LITERAL:c,SLASH_LITERAL:C,ONE_CHAR:F,DOTS_SLASH:m,NO_DOT:R,NO_DOT_SLASH:T,NO_DOTS_SLASH:H,QMARK:O,QMARK_NO_DOT:z,STAR:I,START_ANCHOR:Z}=l,M=a(A=>`(${o}(?:(?!${Z}${A.dot?m:h}).)*?)`,"globstar"),y=u.dot?"":R,g=u.dot?O:z;let w=u.bash===!0?M(u):I;u.capture&&(w=`(${w})`),typeof u.noext=="boolean"&&(u.noextglob=u.noext);const d={input:t,index:-1,start:0,dot:u.dot===!0,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:i};t=X.removePrefix(t,d),n=t.length;const b=[],v=[],W=[];let E=r,p;const U=a(()=>d.index===n-1,"eos"),$=d.peek=(A=1)=>t[d.index+A],ee=d.advance=()=>t[++d.index]||"",te=a(()=>t.slice(d.index+1),"remaining"),Y=a((A="",N=0)=>{d.consumed+=A,d.index+=N},"consume"),Ne=a(A=>{d.output+=A.output!=null?A.output:A.value,Y(A.value)},"append"),vn=a(()=>{let A=1;for(;$()==="!"&&($(2)!=="("||$(3)==="?");)ee(),d.start++,A++;return A%2===0?!1:(d.negated=!0,d.start++,!0)},"negate"),Pe=a(A=>{d[A]++,W.push(A)},"increment"),ie=a(A=>{d[A]--,W.pop()},"decrement"),B=a(A=>{if(E.type==="globstar"){const N=d.braces>0&&(A.type==="comma"||A.type==="brace"),_=A.extglob===!0||b.length&&(A.type==="pipe"||A.type==="paren");A.type!=="slash"&&A.type!=="paren"&&!N&&!_&&(d.output=d.output.slice(0,-E.output.length),E.type="star",E.value="*",E.output=w,d.output+=E.output)}if(b.length&&A.type!=="paren"&&(b[b.length-1].inner+=A.value),(A.value||A.output)&&Ne(A),E&&E.type==="text"&&A.type==="text"){E.value+=A.value,E.output=(E.output||"")+A.value;return}A.prev=E,i.push(A),E=A},"push"),He=a((A,N)=>{const _={...f[N],conditions:1,inner:""};_.prev=E,_.parens=d.parens,_.output=d.output;const S=(u.capture?"(":"")+_.open;Pe("parens"),B({type:A,value:N,output:d.output?"":F}),B({type:"paren",extglob:!0,value:ee(),output:S}),b.push(_)},"extglobOpen"),Sn=a(A=>{let N=A.close+(u.capture?")":""),_;if(A.type==="negate"){let S=w;if(A.inner&&A.inner.length>1&&A.inner.includes("/")&&(S=M(u)),(S!==w||U()||/^\)+$/.test(te()))&&(N=A.close=`)$))${S}`),A.inner.includes("*")&&(_=te())&&/^\.[^\\/.]+$/.test(_)){const P=kt(_,{...e,fastpaths:!1}).output;N=A.close=`)${P})${S})`}A.prev.type==="bos"&&(d.negatedExtglob=!0)}B({type:"paren",extglob:!0,value:p,output:N}),ie("parens")},"extglobClose");if(u.fastpaths!==!1&&!/(^[*!]|[/()[\]{}"])/.test(t)){let A=!1,N=t.replace(po,(_,S,P,K,k,ct)=>K==="\\"?(A=!0,_):K==="?"?S?S+K+(k?O.repeat(k.length):""):ct===0?g+(k?O.repeat(k.length):""):O.repeat(P.length):K==="."?h.repeat(P.length):K==="*"?S?S+K+(k?w:""):w:S?_:`\\${_}`);return A===!0&&(u.unescape===!0?N=N.replace(/\\/g,""):N=N.replace(/\\+/g,_=>_.length%2===0?"\\\\":_?"\\":"")),N===t&&u.contains===!0?(d.output=t,d):(d.output=X.wrapOutput(N,d,e),d)}for(;!U();){if(p=ee(),p==="\0")continue;if(p==="\\"){const _=$();if(_==="/"&&u.bash!==!0||_==="."||_===";")continue;if(!_){p+="\\",B({type:"text",value:p});continue}const S=/^\\+/.exec(te());let P=0;if(S&&S[0].length>2&&(P=S[0].length,d.index+=P,P%2!==0&&(p+="\\")),u.unescape===!0?p=ee():p+=ee(),d.brackets===0){B({type:"text",value:p});continue}}if(d.brackets>0&&(p!=="]"||E.value==="["||E.value==="[^")){if(u.posix!==!1&&p===":"){const _=E.value.slice(1);if(_.includes("[")&&(E.posix=!0,_.includes(":"))){const S=E.value.lastIndexOf("["),P=E.value.slice(0,S),K=E.value.slice(S+2),k=ho[K];if(k){E.value=P+k,d.backtrack=!0,ee(),!r.output&&i.indexOf(E)===1&&(r.output=F);continue}}}(p==="["&&$()!==":"||p==="-"&&$()==="]")&&(p=`\\${p}`),p==="]"&&(E.value==="["||E.value==="[^")&&(p=`\\${p}`),u.posix===!0&&p==="!"&&E.value==="["&&(p="^"),E.value+=p,Ne({value:p});continue}if(d.quotes===1&&p!=='"'){p=X.escapeRegex(p),E.value+=p,Ne({value:p});continue}if(p==='"'){d.quotes=d.quotes===1?0:1,u.keepQuotes===!0&&B({type:"text",value:p});continue}if(p==="("){Pe("parens"),B({type:"paren",value:p});continue}if(p===")"){if(d.parens===0&&u.strictBrackets===!0)throw new SyntaxError(de("opening","("));const _=b[b.length-1];if(_&&d.parens===_.parens+1){Sn(b.pop());continue}B({type:"paren",value:p,output:d.parens?")":"\\)"}),ie("parens");continue}if(p==="["){if(u.nobracket===!0||!te().includes("]")){if(u.nobracket!==!0&&u.strictBrackets===!0)throw new SyntaxError(de("closing","]"));p=`\\${p}`}else Pe("brackets");B({type:"bracket",value:p});continue}if(p==="]"){if(u.nobracket===!0||E&&E.type==="bracket"&&E.value.length===1){B({type:"text",value:p,output:`\\${p}`});continue}if(d.brackets===0){if(u.strictBrackets===!0)throw new SyntaxError(de("opening","["));B({type:"text",value:p,output:`\\${p}`});continue}ie("brackets");const _=E.value.slice(1);if(E.posix!==!0&&_[0]==="^"&&!_.includes("/")&&(p=`/${p}`),E.value+=p,Ne({value:p}),u.literalBrackets===!1||X.hasRegexChars(_))continue;const S=X.escapeRegex(E.value);if(d.output=d.output.slice(0,-E.value.length),u.literalBrackets===!0){d.output+=S,E.value=S;continue}E.value=`(${o}${S}|${E.value})`,d.output+=E.value;continue}if(p==="{"&&u.nobrace!==!0){Pe("braces");const _={type:"brace",value:p,output:"(",outputIndex:d.output.length,tokensIndex:d.tokens.length};v.push(_),B(_);continue}if(p==="}"){const _=v[v.length-1];if(u.nobrace===!0||!_){B({type:"text",value:p,output:p});continue}let S=")";if(_.dots===!0){const P=i.slice(),K=[];for(let k=P.length-1;k>=0&&(i.pop(),P[k].type!=="brace");k--)P[k].type!=="dots"&&K.unshift(P[k].value);S=Co(K,u),d.backtrack=!0}if(_.comma!==!0&&_.dots!==!0){const P=d.output.slice(0,_.outputIndex),K=d.tokens.slice(_.tokensIndex);_.value=_.output="\\{",p=S="\\}",d.output=P;for(const k of K)d.output+=k.output||k.value}B({type:"brace",value:p,output:S}),ie("braces"),v.pop();continue}if(p==="|"){b.length>0&&b[b.length-1].conditions++,B({type:"text",value:p});continue}if(p===","){let _=p;const S=v[v.length-1];S&&W[W.length-1]==="braces"&&(S.comma=!0,_="|"),B({type:"comma",value:p,output:_});continue}if(p==="/"){if(E.type==="dot"&&d.index===d.start+1){d.start=d.index+1,d.consumed="",d.output="",i.pop(),E=r;continue}B({type:"slash",value:p,output:C});continue}if(p==="."){if(d.braces>0&&E.type==="dot"){E.value==="."&&(E.output=h);const _=v[v.length-1];E.type="dots",E.output+=p,E.value+=p,_.dots=!0;continue}if(d.braces+d.parens===0&&E.type!=="bos"&&E.type!=="slash"){B({type:"text",value:p,output:h});continue}B({type:"dot",value:p,output:h});continue}if(p==="?"){if(!(E&&E.value==="(")&&u.noextglob!==!0&&$()==="("&&$(2)!=="?"){He("qmark",p);continue}if(E&&E.type==="paren"){const S=$();let P=p;if(S==="<"&&!X.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");(E.value==="("&&!/[!=<:]/.test(S)||S==="<"&&!/<([!=]|\w+>)/.test(te()))&&(P=`\\${p}`),B({type:"text",value:p,output:P});continue}if(u.dot!==!0&&(E.type==="slash"||E.type==="bos")){B({type:"qmark",value:p,output:z});continue}B({type:"qmark",value:p,output:O});continue}if(p==="!"){if(u.noextglob!==!0&&$()==="("&&($(2)!=="?"||!/[!=<:]/.test($(3)))){He("negate",p);continue}if(u.nonegate!==!0&&d.index===0){vn();continue}}if(p==="+"){if(u.noextglob!==!0&&$()==="("&&$(2)!=="?"){He("plus",p);continue}if(E&&E.value==="("||u.regex===!1){B({type:"plus",value:p,output:c});continue}if(E&&(E.type==="bracket"||E.type==="paren"||E.type==="brace")||d.parens>0){B({type:"plus",value:p});continue}B({type:"plus",value:c});continue}if(p==="@"){if(u.noextglob!==!0&&$()==="("&&$(2)!=="?"){B({type:"at",extglob:!0,value:p,output:""});continue}B({type:"text",value:p});continue}if(p!=="*"){(p==="$"||p==="^")&&(p=`\\${p}`);const _=Eo.exec(te());_&&(p+=_[0],d.index+=_[0].length),B({type:"text",value:p});continue}if(E&&(E.type==="globstar"||E.star===!0)){E.type="star",E.star=!0,E.value+=p,E.output=w,d.backtrack=!0,d.globstar=!0,Y(p);continue}let A=te();if(u.noextglob!==!0&&/^\([^?]/.test(A)){He("star",p);continue}if(E.type==="star"){if(u.noglobstar===!0){Y(p);continue}const _=E.prev,S=_.prev,P=_.type==="slash"||_.type==="bos",K=S&&(S.type==="star"||S.type==="globstar");if(u.bash===!0&&(!P||A[0]&&A[0]!=="/")){B({type:"star",value:p,output:""});continue}const k=d.braces>0&&(_.type==="comma"||_.type==="brace"),ct=b.length&&(_.type==="pipe"||_.type==="paren");if(!P&&_.type!=="paren"&&!k&&!ct){B({type:"star",value:p,output:""});continue}for(;A.slice(0,3)==="/**";){const Le=t[d.index+4];if(Le&&Le!=="/")break;A=A.slice(3),Y("/**",3)}if(_.type==="bos"&&U()){E.type="globstar",E.value+=p,E.output=M(u),d.output=E.output,d.globstar=!0,Y(p);continue}if(_.type==="slash"&&_.prev.type!=="bos"&&!K&&U()){d.output=d.output.slice(0,-(_.output+E.output).length),_.output=`(?:${_.output}`,E.type="globstar",E.output=M(u)+(u.strictSlashes?")":"|$)"),E.value+=p,d.globstar=!0,d.output+=_.output+E.output,Y(p);continue}if(_.type==="slash"&&_.prev.type!=="bos"&&A[0]==="/"){const Le=A[1]!==void 0?"|$":"";d.output=d.output.slice(0,-(_.output+E.output).length),_.output=`(?:${_.output}`,E.type="globstar",E.output=`${M(u)}${C}|${C}${Le})`,E.value+=p,d.output+=_.output+E.output,d.globstar=!0,Y(p+ee()),B({type:"slash",value:"/",output:""});continue}if(_.type==="bos"&&A[0]==="/"){E.type="globstar",E.value+=p,E.output=`(?:^|${C}|${M(u)}${C})`,d.output=E.output,d.globstar=!0,Y(p+ee()),B({type:"slash",value:"/",output:""});continue}d.output=d.output.slice(0,-E.output.length),E.type="globstar",E.output=M(u),E.value+=p,d.output+=E.output,d.globstar=!0,Y(p);continue}const N={type:"star",value:p,output:w};if(u.bash===!0){N.output=".*?",(E.type==="bos"||E.type==="slash")&&(N.output=y+N.output),B(N);continue}if(E&&(E.type==="bracket"||E.type==="paren")&&u.regex===!0){N.output=p,B(N);continue}(d.index===d.start||E.type==="slash"||E.type==="dot")&&(E.type==="dot"?(d.output+=T,E.output+=T):u.dot===!0?(d.output+=H,E.output+=H):(d.output+=y,E.output+=y),$()!=="*"&&(d.output+=F,E.output+=F)),B(N)}for(;d.brackets>0;){if(u.strictBrackets===!0)throw new SyntaxError(de("closing","]"));d.output=X.escapeLast(d.output,"["),ie("brackets")}for(;d.parens>0;){if(u.strictBrackets===!0)throw new SyntaxError(de("closing",")"));d.output=X.escapeLast(d.output,"("),ie("parens")}for(;d.braces>0;){if(u.strictBrackets===!0)throw new SyntaxError(de("closing","}"));d.output=X.escapeLast(d.output,"{"),ie("braces")}if(u.strictSlashes!==!0&&(E.type==="star"||E.type==="bracket")&&B({type:"maybe_slash",value:"",output:`${C}?`}),d.backtrack===!0){d.output="";for(const A of d.tokens)d.output+=A.output!=null?A.output:A.value,A.suffix&&(d.output+=A.suffix)}return d},"parse$3");kt.fastpaths=(t,e)=>{const u={...e},s=typeof u.maxLength=="number"?Math.min(Xe,u.maxLength):Xe,n=t.length;if(n>s)throw new SyntaxError(`Input length: ${n}, exceeds maximum allowed length: ${s}`);t=ms[t]||t;const r=X.isWindows(e),{DOT_LITERAL:i,SLASH_LITERAL:o,ONE_CHAR:D,DOTS_SLASH:l,NO_DOT:f,NO_DOTS:h,NO_DOTS_SLASH:c,STAR:C,START_ANCHOR:F}=qe.globChars(r),m=u.dot?h:f,R=u.dot?c:f,T=u.capture?"":"?:",H={negated:!1,prefix:""};let O=u.bash===!0?".*?":C;u.capture&&(O=`(${O})`);const z=a(y=>y.noglobstar===!0?O:`(${T}(?:(?!${F}${y.dot?l:i}).)*?)`,"globstar"),I=a(y=>{switch(y){case"*":return`${m}${D}${O}`;case".*":return`${i}${D}${O}`;case"*.*":return`${m}${O}${i}${D}${O}`;case"*/*":return`${m}${O}${o}${D}${R}${O}`;case"**":return m+z(u);case"**/*":return`(?:${m}${z(u)}${o})?${R}${D}${O}`;case"**/*.*":return`(?:${m}${z(u)}${o})?${R}${O}${i}${D}${O}`;case"**/.*":return`(?:${m}${z(u)}${o})?${i}${D}${O}`;default:{const g=/^(.*?)\.(\w+)$/.exec(y);if(!g)return;const w=I(g[1]);return w?w+i+g[2]:void 0}}},"create"),Z=X.removePrefix(t,H);let M=I(Z);return M&&u.strictSlashes!==!0&&(M+=`${o}?`),M};var Fo=kt;const go=q,mo=fo,Mt=Fo,Wt=Ve,_o=Ye,Ao=a(t=>t&&typeof t=="object"&&!Array.isArray(t),"isObject$1"),L=a((t,e,u=!1)=>{if(Array.isArray(t)){const f=t.map(c=>L(c,e,u));return a(c=>{for(const C of f){const F=C(c);if(F)return F}return!1},"arrayMatcher")}const s=Ao(t)&&t.tokens&&t.input;if(t===""||typeof t!="string"&&!s)throw new TypeError("Expected pattern to be a non-empty string");const n=e||{},r=Wt.isWindows(e),i=s?L.compileRe(t,e):L.makeRe(t,e,!1,!0),o=i.state;delete i.state;let D=a(()=>!1,"isIgnored");if(n.ignore){const f={...e,ignore:null,onMatch:null,onResult:null};D=L(n.ignore,f,u)}const l=a((f,h=!1)=>{const{isMatch:c,match:C,output:F}=L.test(f,i,e,{glob:t,posix:r}),m={glob:t,state:o,regex:i,posix:r,input:f,output:F,match:C,isMatch:c};return typeof n.onResult=="function"&&n.onResult(m),c===!1?(m.isMatch=!1,h?m:!1):D(f)?(typeof n.onIgnore=="function"&&n.onIgnore(m),m.isMatch=!1,h?m:!1):(typeof n.onMatch=="function"&&n.onMatch(m),h?m:!0)},"matcher");return u&&(l.state=o),l},"picomatch$3");L.test=(t,e,u,{glob:s,posix:n}={})=>{if(typeof t!="string")throw new TypeError("Expected input to be a string");if(t==="")return{isMatch:!1,output:""};const r=u||{},i=r.format||(n?Wt.toPosixSlashes:null);let o=t===s,D=o&&i?i(t):t;return o===!1&&(D=i?i(t):t,o=D===s),(o===!1||r.capture===!0)&&(r.matchBase===!0||r.basename===!0?o=L.matchBase(t,e,u,n):o=e.exec(D)),{isMatch:!!o,match:o,output:D}},L.matchBase=(t,e,u,s=Wt.isWindows(u))=>(e instanceof RegExp?e:L.makeRe(e,u)).test(go.basename(t)),L.isMatch=(t,e,u)=>L(e,u)(t),L.parse=(t,e)=>Array.isArray(t)?t.map(u=>L.parse(u,e)):Mt(t,{...e,fastpaths:!1}),L.scan=(t,e)=>mo(t,e),L.compileRe=(t,e,u=!1,s=!1)=>{if(u===!0)return t.output;const n=e||{},r=n.contains?"":"^",i=n.contains?"":"$";let o=`${r}(?:${t.output})${i}`;t&&t.negated===!0&&(o=`^(?!${o}).*$`);const D=L.toRegex(o,e);return s===!0&&(D.state=t),D},L.makeRe=(t,e={},u=!1,s=!1)=>{if(!t||typeof t!="string")throw new TypeError("Expected a non-empty string");let n={negated:!1,fastpaths:!0};return e.fastpaths!==!1&&(t[0]==="."||t[0]==="*")&&(n.output=Mt.fastpaths(t,e)),n.output||(n=Mt(t,e)),L.compileRe(n,e,u,s)},L.toRegex=(t,e)=>{try{const u=e||{};return new RegExp(t,u.flags||(u.nocase?"i":""))}catch(u){if(e&&e.debug===!0)throw u;return/$^/}},L.constants=_o;var yo=L,_s=yo;const we=oe,{Readable:wo}=Mn,Re=q,{promisify:Qe}=ge,Gt=_s,Ro=Qe(we.readdir),bo=Qe(we.stat),As=Qe(we.lstat),vo=Qe(we.realpath),So="!",ys="READDIRP_RECURSIVE_ERROR",Bo=new Set(["ENOENT","EPERM","EACCES","ELOOP",ys]),jt="files",ws="directories",Ze="files_directories",Je="all",Rs=[jt,ws,Ze,Je],$o=a(t=>Bo.has(t.code),"isNormalFlowError"),[bs,To]=process.versions.node.split(".").slice(0,2).map(t=>Number.parseInt(t,10)),xo=process.platform==="win32"&&(bs>10||bs===10&&To>=5),vs=a(t=>{if(t!==void 0){if(typeof t=="function")return t;if(typeof t=="string"){const e=Gt(t.trim());return u=>e(u.basename)}if(Array.isArray(t)){const e=[],u=[];for(const s of t){const n=s.trim();n.charAt(0)===So?u.push(Gt(n.slice(1))):e.push(Gt(n))}return u.length>0?e.length>0?s=>e.some(n=>n(s.basename))&&!u.some(n=>n(s.basename)):s=>!u.some(n=>n(s.basename)):s=>e.some(n=>n(s.basename))}}},"normalizeFilter");class lt extends wo{static{a(this,"ReaddirpStream")}static get defaultOptions(){return{root:".",fileFilter:a(e=>!0,"fileFilter"),directoryFilter:a(e=>!0,"directoryFilter"),type:jt,lstat:!1,depth:2147483648,alwaysStat:!1}}constructor(e={}){super({objectMode:!0,autoDestroy:!0,highWaterMark:e.highWaterMark||4096});const u={...lt.defaultOptions,...e},{root:s,type:n}=u;this._fileFilter=vs(u.fileFilter),this._directoryFilter=vs(u.directoryFilter);const r=u.lstat?As:bo;xo?this._stat=i=>r(i,{bigint:!0}):this._stat=r,this._maxDepth=u.depth,this._wantsDir=[ws,Ze,Je].includes(n),this._wantsFile=[jt,Ze,Je].includes(n),this._wantsEverything=n===Je,this._root=Re.resolve(s),this._isDirent="Dirent"in we&&!u.alwaysStat,this._statsProp=this._isDirent?"dirent":"stats",this._rdOptions={encoding:"utf8",withFileTypes:this._isDirent},this.parents=[this._exploreDir(s,1)],this.reading=!1,this.parent=void 0}async _read(e){if(!this.reading){this.reading=!0;try{for(;!this.destroyed&&e>0;){const{path:u,depth:s,files:n=[]}=this.parent||{};if(n.length>0){const r=n.splice(0,e).map(i=>this._formatEntry(i,u));for(const i of await Promise.all(r)){if(this.destroyed)return;const o=await this._getEntryType(i);o==="directory"&&this._directoryFilter(i)?(s<=this._maxDepth&&this.parents.push(this._exploreDir(i.fullPath,s+1)),this._wantsDir&&(this.push(i),e--)):(o==="file"||this._includeAsFile(i))&&this._fileFilter(i)&&this._wantsFile&&(this.push(i),e--)}}else{const r=this.parents.pop();if(!r){this.push(null);break}if(this.parent=await r,this.destroyed)return}}}catch(u){this.destroy(u)}finally{this.reading=!1}}}async _exploreDir(e,u){let s;try{s=await Ro(e,this._rdOptions)}catch(n){this._onError(n)}return{files:s,depth:u,path:e}}async _formatEntry(e,u){let s;try{const n=this._isDirent?e.name:e,r=Re.resolve(Re.join(u,n));s={path:Re.relative(this._root,r),fullPath:r,basename:n},s[this._statsProp]=this._isDirent?e:await this._stat(r)}catch(n){this._onError(n)}return s}_onError(e){$o(e)&&!this.destroyed?this.emit("warn",e):this.destroy(e)}async _getEntryType(e){const u=e&&e[this._statsProp];if(u){if(u.isFile())return"file";if(u.isDirectory())return"directory";if(u&&u.isSymbolicLink()){const s=e.fullPath;try{const n=await vo(s),r=await As(n);if(r.isFile())return"file";if(r.isDirectory()){const i=n.length;if(s.startsWith(n)&&s.substr(i,1)===Re.sep){const o=new Error(`Circular symlink detected: "${s}" points to "${n}"`);return o.code=ys,this._onError(o)}return"directory"}}catch(n){this._onError(n)}}}}_includeAsFile(e){const u=e&&e[this._statsProp];return u&&this._wantsEverything&&!u.isDirectory()}}const Ee=a((t,e={})=>{let u=e.entryType||e.type;if(u==="both"&&(u=Ze),u&&(e.type=u),t){if(typeof t!="string")throw new TypeError("readdirp: root argument must be a string. Usage: readdirp(root, options)");if(u&&!Rs.includes(u))throw new Error(`readdirp: Invalid type passed. Use one of ${Rs.join(", ")}`)}else throw new Error("readdirp: root argument is required. Usage: readdirp(root, options)");return e.root=t,new lt(e)},"readdirp$1"),Oo=a((t,e={})=>new Promise((u,s)=>{const n=[];Ee(t,e).on("data",r=>n.push(r)).on("end",()=>u(n)).on("error",r=>s(r))}),"readdirpPromise");Ee.promise=Oo,Ee.ReaddirpStream=lt,Ee.default=Ee;var No=Ee,Ut={exports:{}};/*!
23
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
24
- *
25
- * Copyright (c) 2014-2018, Jon Schlinkert.
26
- * Released under the MIT License.
27
- */var Ss=a(function(t,e){if(typeof t!="string")throw new TypeError("expected path to be a string");if(t==="\\"||t==="/")return"/";var u=t.length;if(u<=1)return t;var s="";if(u>4&&t[3]==="\\"){var n=t[2];(n==="?"||n===".")&&t.slice(0,2)==="\\\\"&&(t=t.slice(2),s="//")}var r=t.split(/[/\\]+/);return e!==!1&&r[r.length-1]===""&&r.pop(),s+r.join("/")},"normalizePath$2"),Po=Ut.exports;Object.defineProperty(Po,"__esModule",{value:!0});const Bs=_s,Ho=Ss,$s="!",Lo={returnIndex:!1},Io=a(t=>Array.isArray(t)?t:[t],"arrify$1"),ko=a((t,e)=>{if(typeof t=="function")return t;if(typeof t=="string"){const u=Bs(t,e);return s=>t===s||u(s)}return t instanceof RegExp?u=>t.test(u):u=>!1},"createPattern"),Ts=a((t,e,u,s)=>{const n=Array.isArray(u),r=n?u[0]:u;if(!n&&typeof r!="string")throw new TypeError("anymatch: second argument must be a string: got "+Object.prototype.toString.call(r));const i=Ho(r,!1);for(let D=0;D<e.length;D++){const l=e[D];if(l(i))return s?-1:!1}const o=n&&[i].concat(u.slice(1));for(let D=0;D<t.length;D++){const l=t[D];if(n?l(...o):l(i))return s?D:!0}return s?-1:!1},"matchPatterns"),Kt=a((t,e,u=Lo)=>{if(t==null)throw new TypeError("anymatch: specify first argument");const s=typeof u=="boolean"?{returnIndex:u}:u,n=s.returnIndex||!1,r=Io(t),i=r.filter(D=>typeof D=="string"&&D.charAt(0)===$s).map(D=>D.slice(1)).map(D=>Bs(D,s)),o=r.filter(D=>typeof D!="string"||typeof D=="string"&&D.charAt(0)!==$s).map(D=>ko(D,s));return e==null?(D,l=!1)=>Ts(o,i,D,typeof l=="boolean"?l:!1):Ts(o,i,e,n)},"anymatch$1");Kt.default=Kt,Ut.exports=Kt;var Mo=Ut.exports;/*!
28
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
29
- *
30
- * Copyright (c) 2014-2016, Jon Schlinkert.
31
- * Licensed under the MIT License.
32
- */var Wo=a(function(e){if(typeof e!="string"||e==="")return!1;for(var u;u=/(\\).|([@?!+*]\(.*\))/g.exec(e);){if(u[2])return!0;e=e.slice(u.index+u[0].length)}return!1},"isExtglob");/*!
33
- * is-glob <https://github.com/jonschlinkert/is-glob>
34
- *
35
- * Copyright (c) 2014-2017, Jon Schlinkert.
36
- * Released under the MIT License.
37
- */var Go=Wo,xs={"{":"}","(":")","[":"]"},jo=a(function(t){if(t[0]==="!")return!0;for(var e=0,u=-2,s=-2,n=-2,r=-2,i=-2;e<t.length;){if(t[e]==="*"||t[e+1]==="?"&&/[\].+)]/.test(t[e])||s!==-1&&t[e]==="["&&t[e+1]!=="]"&&(s<e&&(s=t.indexOf("]",e)),s>e&&(i===-1||i>s||(i=t.indexOf("\\",e),i===-1||i>s)))||n!==-1&&t[e]==="{"&&t[e+1]!=="}"&&(n=t.indexOf("}",e),n>e&&(i=t.indexOf("\\",e),i===-1||i>n))||r!==-1&&t[e]==="("&&t[e+1]==="?"&&/[:!=]/.test(t[e+2])&&t[e+3]!==")"&&(r=t.indexOf(")",e),r>e&&(i=t.indexOf("\\",e),i===-1||i>r))||u!==-1&&t[e]==="("&&t[e+1]!=="|"&&(u<e&&(u=t.indexOf("|",e)),u!==-1&&t[u+1]!==")"&&(r=t.indexOf(")",u),r>u&&(i=t.indexOf("\\",u),i===-1||i>r))))return!0;if(t[e]==="\\"){var o=t[e+1];e+=2;var D=xs[o];if(D){var l=t.indexOf(D,e);l!==-1&&(e=l+1)}if(t[e]==="!")return!0}else e++}return!1},"strictCheck"),Uo=a(function(t){if(t[0]==="!")return!0;for(var e=0;e<t.length;){if(/[*?{}()[\]]/.test(t[e]))return!0;if(t[e]==="\\"){var u=t[e+1];e+=2;var s=xs[u];if(s){var n=t.indexOf(s,e);n!==-1&&(e=n+1)}if(t[e]==="!")return!0}else e++}return!1},"relaxedCheck"),Vt=a(function(e,u){if(typeof e!="string"||e==="")return!1;if(Go(e))return!0;var s=jo;return u&&u.strict===!1&&(s=Uo),s(e)},"isGlob"),Os=zu(Vt),Ko=Vt,Vo=q.posix.dirname,zo=wu.platform()==="win32",zt="/",Yo=/\\/g,qo=/[\{\[].*[\}\]]$/,Xo=/(^|[^\\])([\{\[]|\([^\)]+$)/,Qo=/\\([\!\*\?\|\[\]\(\)\{\}])/g,Zo=a(function(e,u){var s=Object.assign({flipBackslashes:!0},u);s.flipBackslashes&&zo&&e.indexOf(zt)<0&&(e=e.replace(Yo,zt)),qo.test(e)&&(e+=zt),e+="a";do e=Vo(e);while(Ko(e)||Xo.test(e));return e.replace(Qo,"$1")},"globParent"),et={};(function(t){t.isInteger=e=>typeof e=="number"?Number.isInteger(e):typeof e=="string"&&e.trim()!==""?Number.isInteger(Number(e)):!1,t.find=(e,u)=>e.nodes.find(s=>s.type===u),t.exceedsLimit=(e,u,s=1,n)=>n===!1||!t.isInteger(e)||!t.isInteger(u)?!1:(Number(u)-Number(e))/Number(s)>=n,t.escapeNode=(e,u=0,s)=>{let n=e.nodes[u];n&&(s&&n.type===s||n.type==="open"||n.type==="close")&&n.escaped!==!0&&(n.value="\\"+n.value,n.escaped=!0)},t.encloseBrace=e=>e.type!=="brace"||e.commas>>0+e.ranges>>0?!1:(e.invalid=!0,!0),t.isInvalidBrace=e=>e.type!=="brace"?!1:e.invalid===!0||e.dollar?!0:!(e.commas>>0+e.ranges>>0)||e.open!==!0||e.close!==!0?(e.invalid=!0,!0):!1,t.isOpenOrClose=e=>e.type==="open"||e.type==="close"?!0:e.open===!0||e.close===!0,t.reduce=e=>e.reduce((u,s)=>(s.type==="text"&&u.push(s.value),s.type==="range"&&(s.type="text"),u),[]),t.flatten=(...e)=>{const u=[],s=a(n=>{for(let r=0;r<n.length;r++){let i=n[r];Array.isArray(i)?s(i):i!==void 0&&u.push(i)}return u},"flat");return s(e),u}})(et);const Ns=et;var Yt=a((t,e={})=>{let u=a((s,n={})=>{let r=e.escapeInvalid&&Ns.isInvalidBrace(n),i=s.invalid===!0&&e.escapeInvalid===!0,o="";if(s.value)return(r||i)&&Ns.isOpenOrClose(s)?"\\"+s.value:s.value;if(s.value)return s.value;if(s.nodes)for(let D of s.nodes)o+=u(D);return o},"stringify");return u(t)},"stringify$4");/*!
38
- * is-number <https://github.com/jonschlinkert/is-number>
39
- *
40
- * Copyright (c) 2014-present, Jon Schlinkert.
41
- * Released under the MIT License.
42
- */var Jo=a(function(t){return typeof t=="number"?t-t===0:typeof t=="string"&&t.trim()!==""?Number.isFinite?Number.isFinite(+t):isFinite(+t):!1},"isNumber$2");/*!
43
- * to-regex-range <https://github.com/micromatch/to-regex-range>
44
- *
45
- * Copyright (c) 2015-present, Jon Schlinkert.
46
- * Released under the MIT License.
47
- */const Ps=Jo,ae=a((t,e,u)=>{if(Ps(t)===!1)throw new TypeError("toRegexRange: expected the first argument to be a number");if(e===void 0||t===e)return String(t);if(Ps(e)===!1)throw new TypeError("toRegexRange: expected the second argument to be a number.");let s={relaxZeros:!0,...u};typeof s.strictZeros=="boolean"&&(s.relaxZeros=s.strictZeros===!1);let n=String(s.relaxZeros),r=String(s.shorthand),i=String(s.capture),o=String(s.wrap),D=t+":"+e+"="+n+r+i+o;if(ae.cache.hasOwnProperty(D))return ae.cache[D].result;let l=Math.min(t,e),f=Math.max(t,e);if(Math.abs(l-f)===1){let m=t+"|"+e;return s.capture?`(${m})`:s.wrap===!1?m:`(?:${m})`}let h=Ws(t)||Ws(e),c={min:t,max:e,a:l,b:f},C=[],F=[];if(h&&(c.isPadded=h,c.maxLen=String(c.max).length),l<0){let m=f<0?Math.abs(f):1;F=Hs(m,Math.abs(l),c,s),l=c.a=0}return f>=0&&(C=Hs(l,f,c,s)),c.negatives=F,c.positives=C,c.result=eD(F,C),s.capture===!0?c.result=`(${c.result})`:s.wrap!==!1&&C.length+F.length>1&&(c.result=`(?:${c.result})`),ae.cache[D]=c,c.result},"toRegexRange$1");function eD(t,e,u){let s=qt(t,e,"-",!1)||[],n=qt(e,t,"",!1)||[],r=qt(t,e,"-?",!0)||[];return s.concat(r).concat(n).join("|")}a(eD,"collatePatterns");function tD(t,e){let u=1,s=1,n=Is(t,u),r=new Set([e]);for(;t<=n&&n<=e;)r.add(n),u+=1,n=Is(t,u);for(n=ks(e+1,s)-1;t<n&&n<=e;)r.add(n),s+=1,n=ks(e+1,s)-1;return r=[...r],r.sort(nD),r}a(tD,"splitToRanges");function uD(t,e,u){if(t===e)return{pattern:t,count:[],digits:0};let s=sD(t,e),n=s.length,r="",i=0;for(let o=0;o<n;o++){let[D,l]=s[o];D===l?r+=D:D!=="0"||l!=="9"?r+=rD(D,l):i++}return i&&(r+=u.shorthand===!0?"\\d":"[0-9]"),{pattern:r,count:[i],digits:n}}a(uD,"rangeToPattern");function Hs(t,e,u,s){let n=tD(t,e),r=[],i=t,o;for(let D=0;D<n.length;D++){let l=n[D],f=uD(String(i),String(l),s),h="";if(!u.isPadded&&o&&o.pattern===f.pattern){o.count.length>1&&o.count.pop(),o.count.push(f.count[0]),o.string=o.pattern+Ms(o.count),i=l+1;continue}u.isPadded&&(h=iD(l,u,s)),f.string=h+f.pattern+Ms(f.count),r.push(f),i=l+1,o=f}return r}a(Hs,"splitToPatterns");function qt(t,e,u,s,n){let r=[];for(let i of t){let{string:o}=i;!s&&!Ls(e,"string",o)&&r.push(u+o),s&&Ls(e,"string",o)&&r.push(u+o)}return r}a(qt,"filterPatterns");function sD(t,e){let u=[];for(let s=0;s<t.length;s++)u.push([t[s],e[s]]);return u}a(sD,"zip");function nD(t,e){return t>e?1:e>t?-1:0}a(nD,"compare");function Ls(t,e,u){return t.some(s=>s[e]===u)}a(Ls,"contains");function Is(t,e){return Number(String(t).slice(0,-e)+"9".repeat(e))}a(Is,"countNines");function ks(t,e){return t-t%Math.pow(10,e)}a(ks,"countZeros");function Ms(t){let[e=0,u=""]=t;return u||e>1?`{${e+(u?","+u:"")}}`:""}a(Ms,"toQuantifier");function rD(t,e,u){return`[${t}${e-t===1?"":"-"}${e}]`}a(rD,"toCharacterClass");function Ws(t){return/^-?(0+)\d/.test(t)}a(Ws,"hasPadding");function iD(t,e,u){if(!e.isPadded)return t;let s=Math.abs(e.maxLen-String(t).length),n=u.relaxZeros!==!1;switch(s){case 0:return"";case 1:return n?"0?":"0";case 2:return n?"0{0,2}":"00";default:return n?`0{0,${s}}`:`0{${s}}`}}a(iD,"padZeros"),ae.cache={},ae.clearCache=()=>ae.cache={};var oD=ae;/*!
48
- * fill-range <https://github.com/jonschlinkert/fill-range>
49
- *
50
- * Copyright (c) 2014-present, Jon Schlinkert.
51
- * Licensed under the MIT License.
52
- */const DD=ge,Gs=oD,js=a(t=>t!==null&&typeof t=="object"&&!Array.isArray(t),"isObject"),aD=a(t=>e=>t===!0?Number(e):String(e),"transform"),Xt=a(t=>typeof t=="number"||typeof t=="string"&&t!=="","isValidValue"),be=a(t=>Number.isInteger(+t),"isNumber"),Qt=a(t=>{let e=`${t}`,u=-1;if(e[0]==="-"&&(e=e.slice(1)),e==="0")return!1;for(;e[++u]==="0";);return u>0},"zeros"),lD=a((t,e,u)=>typeof t=="string"||typeof e=="string"?!0:u.stringify===!0,"stringify$3"),cD=a((t,e,u)=>{if(e>0){let s=t[0]==="-"?"-":"";s&&(t=t.slice(1)),t=s+t.padStart(s?e-1:e,"0")}return u===!1?String(t):t},"pad"),Us=a((t,e)=>{let u=t[0]==="-"?"-":"";for(u&&(t=t.slice(1),e--);t.length<e;)t="0"+t;return u?"-"+t:t},"toMaxLen"),fD=a((t,e)=>{t.negatives.sort((i,o)=>i<o?-1:i>o?1:0),t.positives.sort((i,o)=>i<o?-1:i>o?1:0);let u=e.capture?"":"?:",s="",n="",r;return t.positives.length&&(s=t.positives.join("|")),t.negatives.length&&(n=`-(${u}${t.negatives.join("|")})`),s&&n?r=`${s}|${n}`:r=s||n,e.wrap?`(${u}${r})`:r},"toSequence"),Ks=a((t,e,u,s)=>{if(u)return Gs(t,e,{wrap:!1,...s});let n=String.fromCharCode(t);if(t===e)return n;let r=String.fromCharCode(e);return`[${n}-${r}]`},"toRange"),Vs=a((t,e,u)=>{if(Array.isArray(t)){let s=u.wrap===!0,n=u.capture?"":"?:";return s?`(${n}${t.join("|")})`:t.join("|")}return Gs(t,e,u)},"toRegex"),zs=a((...t)=>new RangeError("Invalid range arguments: "+DD.inspect(...t)),"rangeError"),Ys=a((t,e,u)=>{if(u.strictRanges===!0)throw zs([t,e]);return[]},"invalidRange"),hD=a((t,e)=>{if(e.strictRanges===!0)throw new TypeError(`Expected step "${t}" to be a number`);return[]},"invalidStep"),dD=a((t,e,u=1,s={})=>{let n=Number(t),r=Number(e);if(!Number.isInteger(n)||!Number.isInteger(r)){if(s.strictRanges===!0)throw zs([t,e]);return[]}n===0&&(n=0),r===0&&(r=0);let i=n>r,o=String(t),D=String(e),l=String(u);u=Math.max(Math.abs(u),1);let f=Qt(o)||Qt(D)||Qt(l),h=f?Math.max(o.length,D.length,l.length):0,c=f===!1&&lD(t,e,s)===!1,C=s.transform||aD(c);if(s.toRegex&&u===1)return Ks(Us(t,h),Us(e,h),!0,s);let F={negatives:[],positives:[]},m=a(H=>F[H<0?"negatives":"positives"].push(Math.abs(H)),"push"),R=[],T=0;for(;i?n>=r:n<=r;)s.toRegex===!0&&u>1?m(n):R.push(cD(C(n,T),h,c)),n=i?n-u:n+u,T++;return s.toRegex===!0?u>1?fD(F,s):Vs(R,null,{wrap:!1,...s}):R},"fillNumbers"),ED=a((t,e,u=1,s={})=>{if(!be(t)&&t.length>1||!be(e)&&e.length>1)return Ys(t,e,s);let n=s.transform||(c=>String.fromCharCode(c)),r=`${t}`.charCodeAt(0),i=`${e}`.charCodeAt(0),o=r>i,D=Math.min(r,i),l=Math.max(r,i);if(s.toRegex&&u===1)return Ks(D,l,!1,s);let f=[],h=0;for(;o?r>=i:r<=i;)f.push(n(r,h)),r=o?r-u:r+u,h++;return s.toRegex===!0?Vs(f,null,{wrap:!1,options:s}):f},"fillLetters"),tt=a((t,e,u,s={})=>{if(e==null&&Xt(t))return[t];if(!Xt(t)||!Xt(e))return Ys(t,e,s);if(typeof u=="function")return tt(t,e,1,{transform:u});if(js(u))return tt(t,e,0,u);let n={...s};return n.capture===!0&&(n.wrap=!0),u=u||n.step||1,be(u)?be(t)&&be(e)?dD(t,e,u,n):ED(t,e,Math.max(Math.abs(u),1),n):u!=null&&!js(u)?hD(u,n):tt(t,e,1,u)},"fill$2");var qs=tt;const pD=qs,Xs=et,CD=a((t,e={})=>{let u=a((s,n={})=>{let r=Xs.isInvalidBrace(n),i=s.invalid===!0&&e.escapeInvalid===!0,o=r===!0||i===!0,D=e.escapeInvalid===!0?"\\":"",l="";if(s.isOpen===!0||s.isClose===!0)return D+s.value;if(s.type==="open")return o?D+s.value:"(";if(s.type==="close")return o?D+s.value:")";if(s.type==="comma")return s.prev.type==="comma"?"":o?s.value:"|";if(s.value)return s.value;if(s.nodes&&s.ranges>0){let f=Xs.reduce(s.nodes),h=pD(...f,{...e,wrap:!1,toRegex:!0});if(h.length!==0)return f.length>1&&h.length>1?`(${h})`:h}if(s.nodes)for(let f of s.nodes)l+=u(f,s);return l},"walk");return u(t)},"compile$1");var FD=CD;const gD=qs,Qs=Yt,pe=et,le=a((t="",e="",u=!1)=>{let s=[];if(t=[].concat(t),e=[].concat(e),!e.length)return t;if(!t.length)return u?pe.flatten(e).map(n=>`{${n}}`):e;for(let n of t)if(Array.isArray(n))for(let r of n)s.push(le(r,e,u));else for(let r of e)u===!0&&typeof r=="string"&&(r=`{${r}}`),s.push(Array.isArray(r)?le(n,r,u):n+r);return pe.flatten(s)},"append"),mD=a((t,e={})=>{let u=e.rangeLimit===void 0?1e3:e.rangeLimit,s=a((n,r={})=>{n.queue=[];let i=r,o=r.queue;for(;i.type!=="brace"&&i.type!=="root"&&i.parent;)i=i.parent,o=i.queue;if(n.invalid||n.dollar){o.push(le(o.pop(),Qs(n,e)));return}if(n.type==="brace"&&n.invalid!==!0&&n.nodes.length===2){o.push(le(o.pop(),["{}"]));return}if(n.nodes&&n.ranges>0){let h=pe.reduce(n.nodes);if(pe.exceedsLimit(...h,e.step,u))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let c=gD(...h,e);c.length===0&&(c=Qs(n,e)),o.push(le(o.pop(),c)),n.nodes=[];return}let D=pe.encloseBrace(n),l=n.queue,f=n;for(;f.type!=="brace"&&f.type!=="root"&&f.parent;)f=f.parent,l=f.queue;for(let h=0;h<n.nodes.length;h++){let c=n.nodes[h];if(c.type==="comma"&&n.type==="brace"){h===1&&l.push(""),l.push("");continue}if(c.type==="close"){o.push(le(o.pop(),l,D));continue}if(c.value&&c.type!=="open"){l.push(le(l.pop(),c.value));continue}c.nodes&&s(c,n)}return l},"walk");return pe.flatten(s(t))},"expand$1");var _D=mD,AD={MAX_LENGTH:1024*64,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:`
53
- `,CHAR_NO_BREAK_SPACE:"\xA0",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:" ",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\uFEFF"};const yD=Yt,{MAX_LENGTH:Zs,CHAR_BACKSLASH:Zt,CHAR_BACKTICK:wD,CHAR_COMMA:RD,CHAR_DOT:bD,CHAR_LEFT_PARENTHESES:vD,CHAR_RIGHT_PARENTHESES:SD,CHAR_LEFT_CURLY_BRACE:BD,CHAR_RIGHT_CURLY_BRACE:$D,CHAR_LEFT_SQUARE_BRACKET:Js,CHAR_RIGHT_SQUARE_BRACKET:en,CHAR_DOUBLE_QUOTE:TD,CHAR_SINGLE_QUOTE:xD,CHAR_NO_BREAK_SPACE:OD,CHAR_ZERO_WIDTH_NOBREAK_SPACE:ND}=AD,PD=a((t,e={})=>{if(typeof t!="string")throw new TypeError("Expected a string");let u=e||{},s=typeof u.maxLength=="number"?Math.min(Zs,u.maxLength):Zs;if(t.length>s)throw new SyntaxError(`Input length (${t.length}), exceeds max characters (${s})`);let n={type:"root",input:t,nodes:[]},r=[n],i=n,o=n,D=0,l=t.length,f=0,h=0,c;const C=a(()=>t[f++],"advance"),F=a(m=>{if(m.type==="text"&&o.type==="dot"&&(o.type="text"),o&&o.type==="text"&&m.type==="text"){o.value+=m.value;return}return i.nodes.push(m),m.parent=i,m.prev=o,o=m,m},"push");for(F({type:"bos"});f<l;)if(i=r[r.length-1],c=C(),!(c===ND||c===OD)){if(c===Zt){F({type:"text",value:(e.keepEscaping?c:"")+C()});continue}if(c===en){F({type:"text",value:"\\"+c});continue}if(c===Js){D++;let m;for(;f<l&&(m=C());){if(c+=m,m===Js){D++;continue}if(m===Zt){c+=C();continue}if(m===en&&(D--,D===0))break}F({type:"text",value:c});continue}if(c===vD){i=F({type:"paren",nodes:[]}),r.push(i),F({type:"text",value:c});continue}if(c===SD){if(i.type!=="paren"){F({type:"text",value:c});continue}i=r.pop(),F({type:"text",value:c}),i=r[r.length-1];continue}if(c===TD||c===xD||c===wD){let m=c,R;for(e.keepQuotes!==!0&&(c="");f<l&&(R=C());){if(R===Zt){c+=R+C();continue}if(R===m){e.keepQuotes===!0&&(c+=R);break}c+=R}F({type:"text",value:c});continue}if(c===BD){h++;let R={type:"brace",open:!0,close:!1,dollar:o.value&&o.value.slice(-1)==="$"||i.dollar===!0,depth:h,commas:0,ranges:0,nodes:[]};i=F(R),r.push(i),F({type:"open",value:c});continue}if(c===$D){if(i.type!=="brace"){F({type:"text",value:c});continue}let m="close";i=r.pop(),i.close=!0,F({type:m,value:c}),h--,i=r[r.length-1];continue}if(c===RD&&h>0){if(i.ranges>0){i.ranges=0;let m=i.nodes.shift();i.nodes=[m,{type:"text",value:yD(i)}]}F({type:"comma",value:c}),i.commas++;continue}if(c===bD&&h>0&&i.commas===0){let m=i.nodes;if(h===0||m.length===0){F({type:"text",value:c});continue}if(o.type==="dot"){if(i.range=[],o.value+=c,o.type="range",i.nodes.length!==3&&i.nodes.length!==5){i.invalid=!0,i.ranges=0,o.type="text";continue}i.ranges++,i.args=[];continue}if(o.type==="range"){m.pop();let R=m[m.length-1];R.value+=o.value+c,o=R,i.ranges--;continue}F({type:"dot",value:c});continue}F({type:"text",value:c})}do if(i=r.pop(),i.type!=="root"){i.nodes.forEach(T=>{T.nodes||(T.type==="open"&&(T.isOpen=!0),T.type==="close"&&(T.isClose=!0),T.nodes||(T.type="text"),T.invalid=!0)});let m=r[r.length-1],R=m.nodes.indexOf(i);m.nodes.splice(R,1,...i.nodes)}while(r.length>0);return F({type:"eos"}),n},"parse$1");var HD=PD;const tn=Yt,LD=FD,ID=_D,kD=HD,Q=a((t,e={})=>{let u=[];if(Array.isArray(t))for(let s of t){let n=Q.create(s,e);Array.isArray(n)?u.push(...n):u.push(n)}else u=[].concat(Q.create(t,e));return e&&e.expand===!0&&e.nodupes===!0&&(u=[...new Set(u)]),u},"braces$1");Q.parse=(t,e={})=>kD(t,e),Q.stringify=(t,e={})=>tn(typeof t=="string"?Q.parse(t,e):t,e),Q.compile=(t,e={})=>(typeof t=="string"&&(t=Q.parse(t,e)),LD(t,e)),Q.expand=(t,e={})=>{typeof t=="string"&&(t=Q.parse(t,e));let u=ID(t,e);return e.noempty===!0&&(u=u.filter(Boolean)),e.nodupes===!0&&(u=[...new Set(u)]),u},Q.create=(t,e={})=>t===""||t.length<3?[t]:e.expand!==!0?Q.compile(t,e):Q.expand(t,e);var MD=Q,WD=["3dm","3ds","3g2","3gp","7z","a","aac","adp","afdesign","afphoto","afpub","ai","aif","aiff","alz","ape","apk","appimage","ar","arj","asf","au","avi","bak","baml","bh","bin","bk","bmp","btif","bz2","bzip2","cab","caf","cgm","class","cmx","cpio","cr2","cur","dat","dcm","deb","dex","djvu","dll","dmg","dng","doc","docm","docx","dot","dotm","dra","DS_Store","dsk","dts","dtshd","dvb","dwg","dxf","ecelp4800","ecelp7470","ecelp9600","egg","eol","eot","epub","exe","f4v","fbs","fh","fla","flac","flatpak","fli","flv","fpx","fst","fvt","g3","gh","gif","graffle","gz","gzip","h261","h263","h264","icns","ico","ief","img","ipa","iso","jar","jpeg","jpg","jpgv","jpm","jxr","key","ktx","lha","lib","lvp","lz","lzh","lzma","lzo","m3u","m4a","m4v","mar","mdi","mht","mid","midi","mj2","mka","mkv","mmr","mng","mobi","mov","movie","mp3","mp4","mp4a","mpeg","mpg","mpga","mxu","nef","npx","numbers","nupkg","o","odp","ods","odt","oga","ogg","ogv","otf","ott","pages","pbm","pcx","pdb","pdf","pea","pgm","pic","png","pnm","pot","potm","potx","ppa","ppam","ppm","pps","ppsm","ppsx","ppt","pptm","pptx","psd","pya","pyc","pyo","pyv","qt","rar","ras","raw","resources","rgb","rip","rlc","rmf","rmvb","rpm","rtf","rz","s3m","s7z","scpt","sgi","shar","snap","sil","sketch","slk","smv","snk","so","stl","suo","sub","swf","tar","tbz","tbz2","tga","tgz","thmx","tif","tiff","tlz","ttc","ttf","txz","udf","uvh","uvi","uvm","uvp","uvs","uvu","viv","vob","war","wav","wax","wbmp","wdp","weba","webm","webp","whl","wim","wm","wma","wmv","wmx","woff","woff2","wrm","wvx","xbm","xif","xla","xlam","xls","xlsb","xlsm","xlsx","xlt","xltm","xltx","xm","xmind","xpi","xpm","xwd","xz","z","zip","zipx"],GD=WD;const jD=q,UD=GD,KD=new Set(UD);var VD=a(t=>KD.has(jD.extname(t).slice(1).toLowerCase()),"isBinaryPath$1"),ut={};(function(t){const{sep:e}=q,{platform:u}=process,s=wu;t.EV_ALL="all",t.EV_READY="ready",t.EV_ADD="add",t.EV_CHANGE="change",t.EV_ADD_DIR="addDir",t.EV_UNLINK="unlink",t.EV_UNLINK_DIR="unlinkDir",t.EV_RAW="raw",t.EV_ERROR="error",t.STR_DATA="data",t.STR_END="end",t.STR_CLOSE="close",t.FSEVENT_CREATED="created",t.FSEVENT_MODIFIED="modified",t.FSEVENT_DELETED="deleted",t.FSEVENT_MOVED="moved",t.FSEVENT_CLONED="cloned",t.FSEVENT_UNKNOWN="unknown",t.FSEVENT_FLAG_MUST_SCAN_SUBDIRS=1,t.FSEVENT_TYPE_FILE="file",t.FSEVENT_TYPE_DIRECTORY="directory",t.FSEVENT_TYPE_SYMLINK="symlink",t.KEY_LISTENERS="listeners",t.KEY_ERR="errHandlers",t.KEY_RAW="rawEmitters",t.HANDLER_KEYS=[t.KEY_LISTENERS,t.KEY_ERR,t.KEY_RAW],t.DOT_SLASH=`.${e}`,t.BACK_SLASH_RE=/\\/g,t.DOUBLE_SLASH_RE=/\/\//,t.SLASH_OR_BACK_SLASH_RE=/[/\\]/,t.DOT_RE=/\..*\.(sw[px])$|~$|\.subl.*\.tmp/,t.REPLACER_RE=/^\.[/\\]/,t.SLASH="/",t.SLASH_SLASH="//",t.BRACE_START="{",t.BANG="!",t.ONE_DOT=".",t.TWO_DOTS="..",t.STAR="*",t.GLOBSTAR="**",t.ROOT_GLOBSTAR="/**/*",t.SLASH_GLOBSTAR="/**",t.DIR_SUFFIX="Dir",t.ANYMATCH_OPTS={dot:!0},t.STRING_TYPE="string",t.FUNCTION_TYPE="function",t.EMPTY_STR="",t.EMPTY_FN=()=>{},t.IDENTITY_FN=n=>n,t.isWindows=u==="win32",t.isMacos=u==="darwin",t.isLinux=u==="linux",t.isIBMi=s.type()==="OS400"})(ut);const re=oe,G=q,{promisify:ve}=ge,zD=VD,{isWindows:YD,isLinux:qD,EMPTY_FN:XD,EMPTY_STR:QD,KEY_LISTENERS:Ce,KEY_ERR:Jt,KEY_RAW:Se,HANDLER_KEYS:ZD,EV_CHANGE:st,EV_ADD:nt,EV_ADD_DIR:JD,EV_ERROR:un,STR_DATA:ea,STR_END:ta,BRACE_START:ua,STAR:sa}=ut,na="watch",ra=ve(re.open),sn=ve(re.stat),ia=ve(re.lstat),oa=ve(re.close),eu=ve(re.realpath),Da={lstat:ia,stat:sn},tu=a((t,e)=>{t instanceof Set?t.forEach(e):e(t)},"foreach"),Be=a((t,e,u)=>{let s=t[e];s instanceof Set||(t[e]=s=new Set([s])),s.add(u)},"addAndConvert"),aa=a(t=>e=>{const u=t[e];u instanceof Set?u.clear():delete t[e]},"clearItem"),$e=a((t,e,u)=>{const s=t[e];s instanceof Set?s.delete(u):s===u&&delete t[e]},"delFromSet"),nn=a(t=>t instanceof Set?t.size===0:!t,"isEmptySet"),rt=new Map;function rn(t,e,u,s,n){const r=a((i,o)=>{u(t),n(i,o,{watchedPath:t}),o&&t!==o&&it(G.resolve(t,o),Ce,G.join(t,o))},"handleEvent");try{return re.watch(t,e,r)}catch(i){s(i)}}a(rn,"createFsWatchInstance");const it=a((t,e,u,s,n)=>{const r=rt.get(t);r&&tu(r[e],i=>{i(u,s,n)})},"fsWatchBroadcast"),la=a((t,e,u,s)=>{const{listener:n,errHandler:r,rawEmitter:i}=s;let o=rt.get(e),D;if(!u.persistent)return D=rn(t,u,n,r,i),D.close.bind(D);if(o)Be(o,Ce,n),Be(o,Jt,r),Be(o,Se,i);else{if(D=rn(t,u,it.bind(null,e,Ce),r,it.bind(null,e,Se)),!D)return;D.on(un,async l=>{const f=it.bind(null,e,Jt);if(o.watcherUnusable=!0,YD&&l.code==="EPERM")try{const h=await ra(t,"r");await oa(h),f(l)}catch{}else f(l)}),o={listeners:n,errHandlers:r,rawEmitters:i,watcher:D},rt.set(e,o)}return()=>{$e(o,Ce,n),$e(o,Jt,r),$e(o,Se,i),nn(o.listeners)&&(o.watcher.close(),rt.delete(e),ZD.forEach(aa(o)),o.watcher=void 0,Object.freeze(o))}},"setFsWatchListener"),uu=new Map,ca=a((t,e,u,s)=>{const{listener:n,rawEmitter:r}=s;let i=uu.get(e);const o=i&&i.options;return o&&(o.persistent<u.persistent||o.interval>u.interval)&&(i.listeners,i.rawEmitters,re.unwatchFile(e),i=void 0),i?(Be(i,Ce,n),Be(i,Se,r)):(i={listeners:n,rawEmitters:r,options:u,watcher:re.watchFile(e,u,(D,l)=>{tu(i.rawEmitters,h=>{h(st,e,{curr:D,prev:l})});const f=D.mtimeMs;(D.size!==l.size||f>l.mtimeMs||f===0)&&tu(i.listeners,h=>h(t,D))})},uu.set(e,i)),()=>{$e(i,Ce,n),$e(i,Se,r),nn(i.listeners)&&(uu.delete(e),re.unwatchFile(e),i.options=i.watcher=void 0,Object.freeze(i))}},"setFsWatchFileListener");let fa=class{static{a(this,"NodeFsHandler")}constructor(e){this.fsw=e,this._boundHandleError=u=>e._handleError(u)}_watchWithNodeFs(e,u){const s=this.fsw.options,n=G.dirname(e),r=G.basename(e);this.fsw._getWatchedDir(n).add(r);const o=G.resolve(e),D={persistent:s.persistent};u||(u=XD);let l;return s.usePolling?(D.interval=s.enableBinaryInterval&&zD(r)?s.binaryInterval:s.interval,l=ca(e,o,D,{listener:u,rawEmitter:this.fsw._emitRaw})):l=la(e,o,D,{listener:u,errHandler:this._boundHandleError,rawEmitter:this.fsw._emitRaw}),l}_handleFile(e,u,s){if(this.fsw.closed)return;const n=G.dirname(e),r=G.basename(e),i=this.fsw._getWatchedDir(n);let o=u;if(i.has(r))return;const D=a(async(f,h)=>{if(this.fsw._throttle(na,e,5)){if(!h||h.mtimeMs===0)try{const c=await sn(e);if(this.fsw.closed)return;const C=c.atimeMs,F=c.mtimeMs;(!C||C<=F||F!==o.mtimeMs)&&this.fsw._emit(st,e,c),qD&&o.ino!==c.ino?(this.fsw._closeFile(f),o=c,this.fsw._addPathCloser(f,this._watchWithNodeFs(e,D))):o=c}catch{this.fsw._remove(n,r)}else if(i.has(r)){const c=h.atimeMs,C=h.mtimeMs;(!c||c<=C||C!==o.mtimeMs)&&this.fsw._emit(st,e,h),o=h}}},"listener"),l=this._watchWithNodeFs(e,D);if(!(s&&this.fsw.options.ignoreInitial)&&this.fsw._isntIgnored(e)){if(!this.fsw._throttle(nt,e,0))return;this.fsw._emit(nt,e,u)}return l}async _handleSymlink(e,u,s,n){if(this.fsw.closed)return;const r=e.fullPath,i=this.fsw._getWatchedDir(u);if(!this.fsw.options.followSymlinks){this.fsw._incrReadyCount();let o;try{o=await eu(s)}catch{return this.fsw._emitReady(),!0}return this.fsw.closed?void 0:(i.has(n)?this.fsw._symlinkPaths.get(r)!==o&&(this.fsw._symlinkPaths.set(r,o),this.fsw._emit(st,s,e.stats)):(i.add(n),this.fsw._symlinkPaths.set(r,o),this.fsw._emit(nt,s,e.stats)),this.fsw._emitReady(),!0)}if(this.fsw._symlinkPaths.has(r))return!0;this.fsw._symlinkPaths.set(r,!0)}_handleRead(e,u,s,n,r,i,o){if(e=G.join(e,QD),!s.hasGlob&&(o=this.fsw._throttle("readdir",e,1e3),!o))return;const D=this.fsw._getWatchedDir(s.path),l=new Set;let f=this.fsw._readdirp(e,{fileFilter:a(h=>s.filterPath(h),"fileFilter"),directoryFilter:a(h=>s.filterDir(h),"directoryFilter"),depth:0}).on(ea,async h=>{if(this.fsw.closed){f=void 0;return}const c=h.path;let C=G.join(e,c);if(l.add(c),!(h.stats.isSymbolicLink()&&await this._handleSymlink(h,e,C,c))){if(this.fsw.closed){f=void 0;return}(c===n||!n&&!D.has(c))&&(this.fsw._incrReadyCount(),C=G.join(r,G.relative(r,C)),this._addToNodeFs(C,u,s,i+1))}}).on(un,this._boundHandleError);return new Promise(h=>f.once(ta,()=>{if(this.fsw.closed){f=void 0;return}const c=o?o.clear():!1;h(),D.getChildren().filter(C=>C!==e&&!l.has(C)&&(!s.hasGlob||s.filterPath({fullPath:G.resolve(e,C)}))).forEach(C=>{this.fsw._remove(e,C)}),f=void 0,c&&this._handleRead(e,!1,s,n,r,i,o)}))}async _handleDir(e,u,s,n,r,i,o){const D=this.fsw._getWatchedDir(G.dirname(e)),l=D.has(G.basename(e));!(s&&this.fsw.options.ignoreInitial)&&!r&&!l&&(!i.hasGlob||i.globFilter(e))&&this.fsw._emit(JD,e,u),D.add(G.basename(e)),this.fsw._getWatchedDir(e);let f,h;const c=this.fsw.options.depth;if((c==null||n<=c)&&!this.fsw._symlinkPaths.has(o)){if(!r&&(await this._handleRead(e,s,i,r,e,n,f),this.fsw.closed))return;h=this._watchWithNodeFs(e,(C,F)=>{F&&F.mtimeMs===0||this._handleRead(C,!1,i,r,e,n,f)})}return h}async _addToNodeFs(e,u,s,n,r){const i=this.fsw._emitReady;if(this.fsw._isIgnored(e)||this.fsw.closed)return i(),!1;const o=this.fsw._getWatchHelpers(e,n);!o.hasGlob&&s&&(o.hasGlob=s.hasGlob,o.globFilter=s.globFilter,o.filterPath=D=>s.filterPath(D),o.filterDir=D=>s.filterDir(D));try{const D=await Da[o.statMethod](o.watchPath);if(this.fsw.closed)return;if(this.fsw._isIgnored(o.watchPath,D))return i(),!1;const l=this.fsw.options.followSymlinks&&!e.includes(sa)&&!e.includes(ua);let f;if(D.isDirectory()){const h=G.resolve(e),c=l?await eu(e):e;if(this.fsw.closed||(f=await this._handleDir(o.watchPath,D,u,n,r,o,c),this.fsw.closed))return;h!==c&&c!==void 0&&this.fsw._symlinkPaths.set(h,c)}else if(D.isSymbolicLink()){const h=l?await eu(e):e;if(this.fsw.closed)return;const c=G.dirname(o.watchPath);if(this.fsw._getWatchedDir(c).add(o.watchPath),this.fsw._emit(nt,o.watchPath,D),f=await this._handleDir(c,D,u,n,e,o,h),this.fsw.closed)return;h!==void 0&&this.fsw._symlinkPaths.set(G.resolve(e),h)}else f=this._handleFile(o.watchPath,D,u);return i(),this.fsw._addPathCloser(e,f),!1}catch(D){if(this.fsw._handleError(D))return i(),e}}};var ha=fa,su={exports:{}};const nu=oe,j=q,{promisify:ru}=ge;let Fe;try{Fe=Ie("fsevents")}catch(t){process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR&&console.error(t)}if(Fe){const t=process.version.match(/v(\d+)\.(\d+)/);if(t&&t[1]&&t[2]){const e=Number.parseInt(t[1],10),u=Number.parseInt(t[2],10);e===8&&u<16&&(Fe=void 0)}}const{EV_ADD:iu,EV_CHANGE:da,EV_ADD_DIR:on,EV_UNLINK:ot,EV_ERROR:Ea,STR_DATA:pa,STR_END:Ca,FSEVENT_CREATED:Fa,FSEVENT_MODIFIED:ga,FSEVENT_DELETED:ma,FSEVENT_MOVED:_a,FSEVENT_UNKNOWN:Aa,FSEVENT_FLAG_MUST_SCAN_SUBDIRS:ya,FSEVENT_TYPE_FILE:wa,FSEVENT_TYPE_DIRECTORY:Te,FSEVENT_TYPE_SYMLINK:Dn,ROOT_GLOBSTAR:an,DIR_SUFFIX:Ra,DOT_SLASH:ln,FUNCTION_TYPE:ou,EMPTY_FN:ba,IDENTITY_FN:va}=ut,Sa=a(t=>isNaN(t)?{}:{depth:t},"Depth"),Du=ru(nu.stat),Ba=ru(nu.lstat),cn=ru(nu.realpath),$a={stat:Du,lstat:Ba},ce=new Map,Ta=10,xa=new Set([69888,70400,71424,72704,73472,131328,131840,262912]),Oa=a((t,e)=>({stop:Fe.watch(t,e)}),"createFSEventsInstance");function Na(t,e,u,s){let n=j.extname(e)?j.dirname(e):e;const r=j.dirname(n);let i=ce.get(n);Pa(r)&&(n=r);const o=j.resolve(t),D=o!==e,l=a((h,c,C)=>{D&&(h=h.replace(e,o)),(h===o||!h.indexOf(o+j.sep))&&u(h,c,C)},"filteredListener");let f=!1;for(const h of ce.keys())if(e.indexOf(j.resolve(h)+j.sep)===0){n=h,i=ce.get(n),f=!0;break}return i||f?i.listeners.add(l):(i={listeners:new Set([l]),rawEmitter:s,watcher:Oa(n,(h,c)=>{if(!i.listeners.size||c&ya)return;const C=Fe.getInfo(h,c);i.listeners.forEach(F=>{F(h,c,C)}),i.rawEmitter(C.event,h,C)})},ce.set(n,i)),()=>{const h=i.listeners;if(h.delete(l),!h.size&&(ce.delete(n),i.watcher))return i.watcher.stop().then(()=>{i.rawEmitter=i.watcher=void 0,Object.freeze(i)})}}a(Na,"setFSEventsListener");const Pa=a(t=>{let e=0;for(const u of ce.keys())if(u.indexOf(t)===0&&(e++,e>=Ta))return!0;return!1},"couldConsolidate"),Ha=a(()=>Fe&&ce.size<128,"canUse"),au=a((t,e)=>{let u=0;for(;!t.indexOf(e)&&(t=j.dirname(t))!==e;)u++;return u},"calcDepth"),fn=a((t,e)=>t.type===Te&&e.isDirectory()||t.type===Dn&&e.isSymbolicLink()||t.type===wa&&e.isFile(),"sameTypes");let La=class{static{a(this,"FsEventsHandler")}constructor(e){this.fsw=e}checkIgnored(e,u){const s=this.fsw._ignoredPaths;if(this.fsw._isIgnored(e,u))return s.add(e),u&&u.isDirectory()&&s.add(e+an),!0;s.delete(e),s.delete(e+an)}addOrChange(e,u,s,n,r,i,o,D){const l=r.has(i)?da:iu;this.handleEvent(l,e,u,s,n,r,i,o,D)}async checkExists(e,u,s,n,r,i,o,D){try{const l=await Du(e);if(this.fsw.closed)return;fn(o,l)?this.addOrChange(e,u,s,n,r,i,o,D):this.handleEvent(ot,e,u,s,n,r,i,o,D)}catch(l){l.code==="EACCES"?this.addOrChange(e,u,s,n,r,i,o,D):this.handleEvent(ot,e,u,s,n,r,i,o,D)}}handleEvent(e,u,s,n,r,i,o,D,l){if(!(this.fsw.closed||this.checkIgnored(u)))if(e===ot){const f=D.type===Te;(f||i.has(o))&&this.fsw._remove(r,o,f)}else{if(e===iu){if(D.type===Te&&this.fsw._getWatchedDir(u),D.type===Dn&&l.followSymlinks){const h=l.depth===void 0?void 0:au(s,n)+1;return this._addToFsEvents(u,!1,!0,h)}this.fsw._getWatchedDir(r).add(o)}const f=D.type===Te?e+Ra:e;this.fsw._emit(f,u),f===on&&this._addToFsEvents(u,!1,!0)}}_watchWithFsEvents(e,u,s,n){if(this.fsw.closed||this.fsw._isIgnored(e))return;const r=this.fsw.options,o=Na(e,u,a(async(D,l,f)=>{if(this.fsw.closed||r.depth!==void 0&&au(D,u)>r.depth)return;const h=s(j.join(e,j.relative(e,D)));if(n&&!n(h))return;const c=j.dirname(h),C=j.basename(h),F=this.fsw._getWatchedDir(f.type===Te?h:c);if(xa.has(l)||f.event===Aa)if(typeof r.ignored===ou){let m;try{m=await Du(h)}catch{}if(this.fsw.closed||this.checkIgnored(h,m))return;fn(f,m)?this.addOrChange(h,D,u,c,F,C,f,r):this.handleEvent(ot,h,D,u,c,F,C,f,r)}else this.checkExists(h,D,u,c,F,C,f,r);else switch(f.event){case Fa:case ga:return this.addOrChange(h,D,u,c,F,C,f,r);case ma:case _a:return this.checkExists(h,D,u,c,F,C,f,r)}},"watchCallback"),this.fsw._emitRaw);return this.fsw._emitReady(),o}async _handleFsEventsSymlink(e,u,s,n){if(!(this.fsw.closed||this.fsw._symlinkPaths.has(u))){this.fsw._symlinkPaths.set(u,!0),this.fsw._incrReadyCount();try{const r=await cn(e);if(this.fsw.closed)return;if(this.fsw._isIgnored(r))return this.fsw._emitReady();this.fsw._incrReadyCount(),this._addToFsEvents(r||e,i=>{let o=e;return r&&r!==ln?o=i.replace(r,e):i!==ln&&(o=j.join(e,i)),s(o)},!1,n)}catch(r){if(this.fsw._handleError(r))return this.fsw._emitReady()}}}emitAdd(e,u,s,n,r){const i=s(e),o=u.isDirectory(),D=this.fsw._getWatchedDir(j.dirname(i)),l=j.basename(i);o&&this.fsw._getWatchedDir(i),!D.has(l)&&(D.add(l),(!n.ignoreInitial||r===!0)&&this.fsw._emit(o?on:iu,i,u))}initWatch(e,u,s,n){if(this.fsw.closed)return;const r=this._watchWithFsEvents(s.watchPath,j.resolve(e||s.watchPath),n,s.globFilter);this.fsw._addPathCloser(u,r)}async _addToFsEvents(e,u,s,n){if(this.fsw.closed)return;const r=this.fsw.options,i=typeof u===ou?u:va,o=this.fsw._getWatchHelpers(e);try{const D=await $a[o.statMethod](o.watchPath);if(this.fsw.closed)return;if(this.fsw._isIgnored(o.watchPath,D))throw null;if(D.isDirectory()){if(o.globFilter||this.emitAdd(i(e),D,i,r,s),n&&n>r.depth)return;this.fsw._readdirp(o.watchPath,{fileFilter:a(l=>o.filterPath(l),"fileFilter"),directoryFilter:a(l=>o.filterDir(l),"directoryFilter"),...Sa(r.depth-(n||0))}).on(pa,l=>{if(this.fsw.closed||l.stats.isDirectory()&&!o.filterPath(l))return;const f=j.join(o.watchPath,l.path),{fullPath:h}=l;if(o.followSymlinks&&l.stats.isSymbolicLink()){const c=r.depth===void 0?void 0:au(f,j.resolve(o.watchPath))+1;this._handleFsEventsSymlink(f,h,i,c)}else this.emitAdd(f,l.stats,i,r,s)}).on(Ea,ba).on(Ca,()=>{this.fsw._emitReady()})}else this.emitAdd(o.watchPath,D,i,r,s),this.fsw._emitReady()}catch(D){(!D||this.fsw._handleError(D))&&(this.fsw._emitReady(),this.fsw._emitReady())}if(r.persistent&&s!==!0)if(typeof u===ou)this.initWatch(void 0,e,o,i);else{let D;try{D=await cn(o.watchPath)}catch{}this.initWatch(D,e,o,i)}}};su.exports=La,su.exports.canUse=Ha;var Ia=su.exports;const{EventEmitter:ka}=kn,lu=oe,x=q,{promisify:hn}=ge,Ma=No,cu=Mo.default,Wa=Zo,fu=Vt,Ga=MD,ja=Ss,Ua=ha,dn=Ia,{EV_ALL:hu,EV_READY:Ka,EV_ADD:Dt,EV_CHANGE:xe,EV_UNLINK:En,EV_ADD_DIR:Va,EV_UNLINK_DIR:za,EV_RAW:Ya,EV_ERROR:du,STR_CLOSE:qa,STR_END:Xa,BACK_SLASH_RE:Qa,DOUBLE_SLASH_RE:pn,SLASH_OR_BACK_SLASH_RE:Za,DOT_RE:Ja,REPLACER_RE:el,SLASH:Eu,SLASH_SLASH:tl,BRACE_START:ul,BANG:pu,ONE_DOT:Cn,TWO_DOTS:sl,GLOBSTAR:nl,SLASH_GLOBSTAR:Cu,ANYMATCH_OPTS:Fu,STRING_TYPE:gu,FUNCTION_TYPE:rl,EMPTY_STR:mu,EMPTY_FN:il,isWindows:ol,isMacos:Dl,isIBMi:al}=ut,ll=hn(lu.stat),cl=hn(lu.readdir),_u=a((t=[])=>Array.isArray(t)?t:[t],"arrify"),Fn=a((t,e=[])=>(t.forEach(u=>{Array.isArray(u)?Fn(u,e):e.push(u)}),e),"flatten"),gn=a(t=>{const e=Fn(_u(t));if(!e.every(u=>typeof u===gu))throw new TypeError(`Non-string provided as watch path: ${e}`);return e.map(_n)},"unifyPaths"),mn=a(t=>{let e=t.replace(Qa,Eu),u=!1;for(e.startsWith(tl)&&(u=!0);e.match(pn);)e=e.replace(pn,Eu);return u&&(e=Eu+e),e},"toUnix"),_n=a(t=>mn(x.normalize(mn(t))),"normalizePathToUnix"),An=a((t=mu)=>e=>typeof e!==gu?e:_n(x.isAbsolute(e)?e:x.join(t,e)),"normalizeIgnored"),fl=a((t,e)=>x.isAbsolute(t)?t:t.startsWith(pu)?pu+x.join(e,t.slice(1)):x.join(e,t),"getAbsolutePath"),J=a((t,e)=>t[e]===void 0,"undef");class hl{static{a(this,"DirEntry")}constructor(e,u){this.path=e,this._removeWatcher=u,this.items=new Set}add(e){const{items:u}=this;u&&e!==Cn&&e!==sl&&u.add(e)}async remove(e){const{items:u}=this;if(!u||(u.delete(e),u.size>0))return;const s=this.path;try{await cl(s)}catch{this._removeWatcher&&this._removeWatcher(x.dirname(s),x.basename(s))}}has(e){const{items:u}=this;if(u)return u.has(e)}getChildren(){const{items:e}=this;if(e)return[...e.values()]}dispose(){this.items.clear(),delete this.path,delete this._removeWatcher,delete this.items,Object.freeze(this)}}const dl="stat",El="lstat";class pl{static{a(this,"WatchHelper")}constructor(e,u,s,n){this.fsw=n,this.path=e=e.replace(el,mu),this.watchPath=u,this.fullWatchPath=x.resolve(u),this.hasGlob=u!==e,e===mu&&(this.hasGlob=!1),this.globSymlink=this.hasGlob&&s?void 0:!1,this.globFilter=this.hasGlob?cu(e,void 0,Fu):!1,this.dirParts=this.getDirParts(e),this.dirParts.forEach(r=>{r.length>1&&r.pop()}),this.followSymlinks=s,this.statMethod=s?dl:El}checkGlobSymlink(e){return this.globSymlink===void 0&&(this.globSymlink=e.fullParentDir===this.fullWatchPath?!1:{realPath:e.fullParentDir,linkPath:this.fullWatchPath}),this.globSymlink?e.fullPath.replace(this.globSymlink.realPath,this.globSymlink.linkPath):e.fullPath}entryPath(e){return x.join(this.watchPath,x.relative(this.watchPath,this.checkGlobSymlink(e)))}filterPath(e){const{stats:u}=e;if(u&&u.isSymbolicLink())return this.filterDir(e);const s=this.entryPath(e);return(this.hasGlob&&typeof this.globFilter===rl?this.globFilter(s):!0)&&this.fsw._isntIgnored(s,u)&&this.fsw._hasReadPermissions(u)}getDirParts(e){if(!this.hasGlob)return[];const u=[];return(e.includes(ul)?Ga.expand(e):[e]).forEach(n=>{u.push(x.relative(this.watchPath,n).split(Za))}),u}filterDir(e){if(this.hasGlob){const u=this.getDirParts(this.checkGlobSymlink(e));let s=!1;this.unmatchedGlob=!this.dirParts.some(n=>n.every((r,i)=>(r===nl&&(s=!0),s||!u[0][i]||cu(r,u[0][i],Fu))))}return!this.unmatchedGlob&&this.fsw._isntIgnored(this.entryPath(e),e.stats)}}class Cl extends ka{static{a(this,"FSWatcher")}constructor(e){super();const u={};e&&Object.assign(u,e),this._watched=new Map,this._closers=new Map,this._ignoredPaths=new Set,this._throttled=new Map,this._symlinkPaths=new Map,this._streams=new Set,this.closed=!1,J(u,"persistent")&&(u.persistent=!0),J(u,"ignoreInitial")&&(u.ignoreInitial=!1),J(u,"ignorePermissionErrors")&&(u.ignorePermissionErrors=!1),J(u,"interval")&&(u.interval=100),J(u,"binaryInterval")&&(u.binaryInterval=300),J(u,"disableGlobbing")&&(u.disableGlobbing=!1),u.enableBinaryInterval=u.binaryInterval!==u.interval,J(u,"useFsEvents")&&(u.useFsEvents=!u.usePolling),dn.canUse()||(u.useFsEvents=!1),J(u,"usePolling")&&!u.useFsEvents&&(u.usePolling=Dl),al&&(u.usePolling=!0);const n=process.env.CHOKIDAR_USEPOLLING;if(n!==void 0){const D=n.toLowerCase();D==="false"||D==="0"?u.usePolling=!1:D==="true"||D==="1"?u.usePolling=!0:u.usePolling=!!D}const r=process.env.CHOKIDAR_INTERVAL;r&&(u.interval=Number.parseInt(r,10)),J(u,"atomic")&&(u.atomic=!u.usePolling&&!u.useFsEvents),u.atomic&&(this._pendingUnlinks=new Map),J(u,"followSymlinks")&&(u.followSymlinks=!0),J(u,"awaitWriteFinish")&&(u.awaitWriteFinish=!1),u.awaitWriteFinish===!0&&(u.awaitWriteFinish={});const i=u.awaitWriteFinish;i&&(i.stabilityThreshold||(i.stabilityThreshold=2e3),i.pollInterval||(i.pollInterval=100),this._pendingWrites=new Map),u.ignored&&(u.ignored=_u(u.ignored));let o=0;this._emitReady=()=>{o++,o>=this._readyCount&&(this._emitReady=il,this._readyEmitted=!0,process.nextTick(()=>this.emit(Ka)))},this._emitRaw=(...D)=>this.emit(Ya,...D),this._readyEmitted=!1,this.options=u,u.useFsEvents?this._fsEventsHandler=new dn(this):this._nodeFsHandler=new Ua(this),Object.freeze(u)}add(e,u,s){const{cwd:n,disableGlobbing:r}=this.options;this.closed=!1;let i=gn(e);return n&&(i=i.map(o=>{const D=fl(o,n);return r||!fu(o)?D:ja(D)})),i=i.filter(o=>o.startsWith(pu)?(this._ignoredPaths.add(o.slice(1)),!1):(this._ignoredPaths.delete(o),this._ignoredPaths.delete(o+Cu),this._userIgnored=void 0,!0)),this.options.useFsEvents&&this._fsEventsHandler?(this._readyCount||(this._readyCount=i.length),this.options.persistent&&(this._readyCount+=i.length),i.forEach(o=>this._fsEventsHandler._addToFsEvents(o))):(this._readyCount||(this._readyCount=0),this._readyCount+=i.length,Promise.all(i.map(async o=>{const D=await this._nodeFsHandler._addToNodeFs(o,!s,0,0,u);return D&&this._emitReady(),D})).then(o=>{this.closed||o.filter(D=>D).forEach(D=>{this.add(x.dirname(D),x.basename(u||D))})})),this}unwatch(e){if(this.closed)return this;const u=gn(e),{cwd:s}=this.options;return u.forEach(n=>{!x.isAbsolute(n)&&!this._closers.has(n)&&(s&&(n=x.join(s,n)),n=x.resolve(n)),this._closePath(n),this._ignoredPaths.add(n),this._watched.has(n)&&this._ignoredPaths.add(n+Cu),this._userIgnored=void 0}),this}close(){if(this.closed)return this._closePromise;this.closed=!0,this.removeAllListeners();const e=[];return this._closers.forEach(u=>u.forEach(s=>{const n=s();n instanceof Promise&&e.push(n)})),this._streams.forEach(u=>u.destroy()),this._userIgnored=void 0,this._readyCount=0,this._readyEmitted=!1,this._watched.forEach(u=>u.dispose()),["closers","watched","streams","symlinkPaths","throttled"].forEach(u=>{this[`_${u}`].clear()}),this._closePromise=e.length?Promise.all(e).then(()=>{}):Promise.resolve(),this._closePromise}getWatched(){const e={};return this._watched.forEach((u,s)=>{const n=this.options.cwd?x.relative(this.options.cwd,s):s;e[n||Cn]=u.getChildren().sort()}),e}emitWithAll(e,u){this.emit(...u),e!==du&&this.emit(hu,...u)}async _emit(e,u,s,n,r){if(this.closed)return;const i=this.options;ol&&(u=x.normalize(u)),i.cwd&&(u=x.relative(i.cwd,u));const o=[e,u];r!==void 0?o.push(s,n,r):n!==void 0?o.push(s,n):s!==void 0&&o.push(s);const D=i.awaitWriteFinish;let l;if(D&&(l=this._pendingWrites.get(u)))return l.lastChange=new Date,this;if(i.atomic){if(e===En)return this._pendingUnlinks.set(u,o),setTimeout(()=>{this._pendingUnlinks.forEach((f,h)=>{this.emit(...f),this.emit(hu,...f),this._pendingUnlinks.delete(h)})},typeof i.atomic=="number"?i.atomic:100),this;e===Dt&&this._pendingUnlinks.has(u)&&(e=o[0]=xe,this._pendingUnlinks.delete(u))}if(D&&(e===Dt||e===xe)&&this._readyEmitted){const f=a((h,c)=>{h?(e=o[0]=du,o[1]=h,this.emitWithAll(e,o)):c&&(o.length>2?o[2]=c:o.push(c),this.emitWithAll(e,o))},"awfEmit");return this._awaitWriteFinish(u,D.stabilityThreshold,e,f),this}if(e===xe&&!this._throttle(xe,u,50))return this;if(i.alwaysStat&&s===void 0&&(e===Dt||e===Va||e===xe)){const f=i.cwd?x.join(i.cwd,u):u;let h;try{h=await ll(f)}catch{}if(!h||this.closed)return;o.push(h)}return this.emitWithAll(e,o),this}_handleError(e){const u=e&&e.code;return e&&u!=="ENOENT"&&u!=="ENOTDIR"&&(!this.options.ignorePermissionErrors||u!=="EPERM"&&u!=="EACCES")&&this.emit(du,e),e||this.closed}_throttle(e,u,s){this._throttled.has(e)||this._throttled.set(e,new Map);const n=this._throttled.get(e),r=n.get(u);if(r)return r.count++,!1;let i;const o=a(()=>{const l=n.get(u),f=l?l.count:0;return n.delete(u),clearTimeout(i),l&&clearTimeout(l.timeoutObject),f},"clear");i=setTimeout(o,s);const D={timeoutObject:i,clear:o,count:0};return n.set(u,D),D}_incrReadyCount(){return this._readyCount++}_awaitWriteFinish(e,u,s,n){let r,i=e;this.options.cwd&&!x.isAbsolute(e)&&(i=x.join(this.options.cwd,e));const o=new Date,D=a(l=>{lu.stat(i,(f,h)=>{if(f||!this._pendingWrites.has(e)){f&&f.code!=="ENOENT"&&n(f);return}const c=Number(new Date);l&&h.size!==l.size&&(this._pendingWrites.get(e).lastChange=c);const C=this._pendingWrites.get(e);c-C.lastChange>=u?(this._pendingWrites.delete(e),n(void 0,h)):r=setTimeout(D,this.options.awaitWriteFinish.pollInterval,h)})},"awaitWriteFinish");this._pendingWrites.has(e)||(this._pendingWrites.set(e,{lastChange:o,cancelWait:a(()=>(this._pendingWrites.delete(e),clearTimeout(r),s),"cancelWait")}),r=setTimeout(D,this.options.awaitWriteFinish.pollInterval))}_getGlobIgnored(){return[...this._ignoredPaths.values()]}_isIgnored(e,u){if(this.options.atomic&&Ja.test(e))return!0;if(!this._userIgnored){const{cwd:s}=this.options,n=this.options.ignored,r=n&&n.map(An(s)),i=_u(r).filter(D=>typeof D===gu&&!fu(D)).map(D=>D+Cu),o=this._getGlobIgnored().map(An(s)).concat(r,i);this._userIgnored=cu(o,void 0,Fu)}return this._userIgnored([e,u])}_isntIgnored(e,u){return!this._isIgnored(e,u)}_getWatchHelpers(e,u){const s=u||this.options.disableGlobbing||!fu(e)?e:Wa(e),n=this.options.followSymlinks;return new pl(e,s,n,this)}_getWatchedDir(e){this._boundRemove||(this._boundRemove=this._remove.bind(this));const u=x.resolve(e);return this._watched.has(u)||this._watched.set(u,new hl(u,this._boundRemove)),this._watched.get(u)}_hasReadPermissions(e){if(this.options.ignorePermissionErrors)return!0;const s=(e&&Number.parseInt(e.mode,10))&511;return!!(4&Number.parseInt(s.toString(8)[0],10))}_remove(e,u,s){const n=x.join(e,u),r=x.resolve(n);if(s=s??(this._watched.has(n)||this._watched.has(r)),!this._throttle("remove",n,100))return;!s&&!this.options.useFsEvents&&this._watched.size===1&&this.add(e,u,!0),this._getWatchedDir(n).getChildren().forEach(c=>this._remove(n,c));const D=this._getWatchedDir(e),l=D.has(u);D.remove(u),this._symlinkPaths.has(r)&&this._symlinkPaths.delete(r);let f=n;if(this.options.cwd&&(f=x.relative(this.options.cwd,n)),this.options.awaitWriteFinish&&this._pendingWrites.has(f)&&this._pendingWrites.get(f).cancelWait()===Dt)return;this._watched.delete(n),this._watched.delete(r);const h=s?za:En;l&&!this._isIgnored(n)&&this._emit(h,n),this.options.useFsEvents||this._closePath(n)}_closePath(e){this._closeFile(e);const u=x.dirname(e);this._getWatchedDir(u).remove(x.basename(e))}_closeFile(e){const u=this._closers.get(e);u&&(u.forEach(s=>s()),this._closers.delete(e))}_addPathCloser(e,u){if(!u)return;let s=this._closers.get(e);s||(s=[],this._closers.set(e,s)),s.push(u)}_readdirp(e,u){if(this.closed)return;const s={type:hu,alwaysStat:!0,lstat:!0,...u};let n=Ma(e,s);return this._streams.add(n),n.once(qa,()=>{n=void 0}),n.once(Xa,()=>{n&&(this._streams.delete(n),n=void 0)}),n}}var Au=Cl;const at=a((t=!0)=>{let e=!1;return u=>{if(e||u==="unknown-flag")return!0;if(u==="argument")return e=!0,t}},"ignoreAfterArgument"),yn=a((t,e=process.argv.slice(2))=>(bu(t,e,{ignore:at()}),e),"removeArgvFlags"),Fl=a(t=>{let e=Buffer.alloc(0);return u=>{for(e=Buffer.concat([e,u]);e.length>4;){const s=e.readInt32BE(0);if(e.length>=4+s){const n=e.slice(4,4+s);t(n),e=e.slice(4+s)}else break}}},"bufferData"),wn=a(async()=>{const t=Kn.createServer(u=>{u.on("data",Fl(s=>{const n=JSON.parse(s.toString());t.emit("data",n)}))}),e=xn(process.pid);return await Me.promises.mkdir(Vn,{recursive:!0}),await Me.promises.rm(e,{force:!0}),await new Promise((u,s)=>{t.listen(e,u),t.on("error",s)}),t.unref(),process.on("exit",()=>{if(t.close(),!On)try{Me.rmSync(e)}catch{}}),t},"createIpcServer"),gl=a(()=>new Date().toLocaleTimeString(),"currentTime"),Oe=a((...t)=>console.log(Wn(gl()),Gn("[tsx]"),...t),"log"),ml="\x1Bc",_l=a((t,e)=>{let u;return function(){u&&clearTimeout(u),u=setTimeout(()=>Reflect.apply(t,this,arguments),e)}},"debounce"),Rn={noCache:{type:Boolean,description:"Disable caching",default:!1},tsconfig:{type:String,description:"Custom tsconfig.json path"},clearScreen:{type:Boolean,description:"Clearing the screen on rerun",default:!0},ignore:{type:[String],description:"Paths & globs to exclude from being watched (Deprecated: use --exclude)"},include:{type:[String],description:"Additional paths & globs to watch"},exclude:{type:[String],description:"Paths & globs to exclude from being watched"}},Al=li({name:"watch",parameters:["<script path>"],flags:Rn,help:{description:"Run the script and watch for changes"},ignoreArgv:at(!1)},async t=>{const e=yn(Rn,process.argv.slice(3)),u={noCache:t.flags.noCache,tsconfigPath:t.flags.tsconfig,clearScreen:t.flags.clearScreen,include:t.flags.include,exclude:[...t.flags.ignore,...t.flags.exclude],ipc:!0};let s,n=!1;const r=process.cwd(),i=new Map,o=a((g,w)=>{const d=ke.resolve(w),b=i.get(d);if(g==="add"||g==="addDir"||g==="unlink"||g==="unlinkDir")b&&(clearTimeout(b.expiration),i.delete(d));else if(b)return`${g}:${b.path}`;let v;try{v=Me.realpathSync.native(d)}catch{v=d}const W={path:v,expiration:setTimeout(()=>{i.get(d)===W&&i.delete(d)},1e3)};return W.expiration.unref(),i.set(d,W),`${g}:${v}`},"getEventKey"),D=t._.map(g=>ke.resolve(g));let l,f,h=!1;const c=new Map,C=a(g=>{const w=ke.resolve(g);return process.platform==="win32"?w.toLowerCase():w},"getPathKey"),F=new Set;for(const g of u.include)if(g.startsWith("!")){const w=g.slice(1);Os(w)||F.add(C(w))}else Os(g)||F.delete(C(g));(await wn()).on("data",g=>{if(g&&typeof g=="object"&&"type"in g&&g.type==="dependency"&&"path"in g&&typeof g.path=="string"){const w=g.path.startsWith("file:")?Pn(g.path):g.path;ke.isAbsolute(w)&&(F.has(C(w))?(f||(f=new Au({...I,disableGlobbing:!0}),f.on("all",(d,b)=>{Z("literal",d,b)})),f.add(w)):l.add(w))}});const R=a(()=>{if(!n)return as(e,u)},"spawnProcess");let T=!1;const H=a(async(g,w="SIGTERM",d=5e3)=>{let b=!1;const v=new Promise(W=>{g.on("exit",E=>{b=!0,T=!1,W(E)})});return T=!0,g.kill(w),setTimeout(()=>{b||(Oe(me(`Process didn't exit in ${Math.floor(d/1e3)}s. Force killing...`)),g.kill("SIGKILL"))},d),await v},"killProcess"),O=_l(async(g,w)=>{const d=g?`${g?jn(g):""}${w?` in ${Un(`./${w}`)}`:""}`:"";if(T){Oe(d,me("Process hasn't exited. Killing process...")),s.kill("SIGKILL");return}s&&(s.exitCode===null?(Oe(d,me("Restarting...")),await H(s)):Oe(d,me("Rerunning...")),u.clearScreen&&process.stdout.isTTY&&process.stdout.write(ml)),s=R()},100),z=a(g=>{n=!0,s?.exitCode===null?(T&&Oe(me("Previous process hasn't exited yet. Force killing...")),H(s,T?"SIGKILL":g).then(w=>{process.exit(w??0)},()=>{})):process.exit(128+ft.signals[g])},"relaySignal");process.on("SIGINT",z),process.on("SIGTERM",z);const I={cwd:r,ignoreInitial:!0,ignored:["**/.*/**","**/.*","**/{node_modules,bower_components,vendor}/**",...u.exclude],ignorePermissionErrors:!0},Z=a((g,w,d)=>{if(!h)return;const b=o(w,d),v=c.get(b);if(v&&v.source!==g){clearTimeout(v.expiration),c.delete(b);return}v&&clearTimeout(v.expiration);const W={source:g,expiration:setTimeout(()=>{c.get(b)===W&&c.delete(b)},1e3)};W.expiration.unref(),c.set(b,W),O(w,d)},"handleWatchEvent");l=new Au({...I,disableGlobbing:!0}),l.on("all",(g,w)=>{Z("literal",g,w)});const M=a(g=>new Promise(w=>{g.once("ready",w)}),"waitForReady"),y=[M(l)];if(l.add(D),u.include.some(g=>!g.startsWith("!"))){const g=new Au(I);g.on("all",(w,d)=>{Z("include",w,d)}),y.push(M(g)),g.add(u.include)}await Promise.all(y),l.add(u.include.filter(g=>g.startsWith("!"))),h=!0,s=R(),process.stdin.on("data",()=>O("Return key"))}),yl=a((t,e)=>{let u;e.on("data",r=>{r&&r.type==="signal"&&u&&u(r.signal)});const s=a(()=>{const r=new Promise(i=>{setTimeout(()=>i(void 0),30),u=i});return r.then(()=>{u=void 0},()=>{}),r},"waitForSignalFromChild"),n=a(async r=>{await s()!==r&&(t.kill(r),await s()!==r&&(t.on("exit",()=>{const D=ft.signals[r];process.exit(128+D)}),t.kill("SIGKILL")))},"relaySignalToChild");process.on("SIGINT",n),process.on("SIGTERM",n)},"relaySignals"),bn={noCache:{type:Boolean,description:"Disable caching"},tsconfig:{type:String,description:"Custom tsconfig.json path"}};Vu({name:"tsx",parameters:["[script path]"],commands:[Al],flags:{...bn,version:{type:Boolean,alias:"v",description:"Show version"},help:{type:Boolean,alias:"h",description:"Show help"}},help:!1,ignoreArgv:at()},async t=>{t.flags.version?process.stdout.write(`tsx v${Tn}
54
- node `):t.flags.help&&(t.showHelp({description:"Node.js runtime enhanced with esbuild for loading TypeScript & ESM"}),console.log(`${"-".repeat(45)}
55
- `));const e={eval:{type:String,alias:"e"},print:{type:String,alias:"p"}},{_:u,flags:s}=Vu({flags:{...e,inputType:String,test:Boolean},help:!1,ignoreArgv:at(!1)}),n=yn({...bn,...e}),i=["print","eval"].find(l=>!!s[l]);if(i){const{inputType:l}=s,f=s[i],{transformSync:h}=await import("esbuild"),c=h(f,{loader:"default",sourcefile:"/eval.ts",format:l==="module"?"esm":"cjs"});n.unshift(`--${i}`,c.code)}yu(In)&&s.test&&u.length===0&&n.push("**/{test,test/**/*,test-*,*[.-_]test}.?(c|m)@(t|j)s"),s.test&&n.unshift("--enable-source-maps");const o=await wn(),D=as(n,{noCache:!!t.flags.noCache,tsconfigPath:t.flags.tsconfig});yl(D,o),process.send&&D.on("message",l=>{process.send(l)}),D.send&&process.on("message",l=>{D.send(l)}),D.on("close",l=>{l===null&&(l=ft.signals[D.signalCode]+128),process.exit(l)})});
@@ -1 +0,0 @@
1
- var p=Object.defineProperty;var t=(e,n)=>p(e,"name",{value:n,configurable:!0});import g from"node:net";import{g as u}from"./get-pipe-path-_tAJyU_v.mjs";let o=[];const m=t(()=>new Promise(e=>{const n=u(process.ppid),r=g.createConnection(n,()=>{e(t(i=>{const c=Buffer.from(JSON.stringify(i)),f=Buffer.alloc(4);f.writeInt32BE(c.length,0),r.write(Buffer.concat([f,c]))},"sendToParent"))});r.on("error",()=>{e()}),r.unref()}),"connectToServer"),s={send:t(e=>{o.push(e)},"send")},a=m();a.then(e=>{if(e)for(const n of o)e(n);o=[],s.send=e},()=>{o=[],s.send=void 0});export{a as c,s as p};
@@ -1 +0,0 @@
1
- var s=Object.defineProperty;var i=(t,r)=>s(t,"name",{value:r,configurable:!0});import{r as p}from"../../register-SoqaU4rg.mjs";import n from"node:crypto";import"../../get-pipe-path-_tAJyU_v.mjs";import{r as c,i as u,c as d}from"../../register-DHgpdRjs.mjs";import"../../require-Cuv-0BLU.mjs";import{i as f,e as g}from"../../node-features-JeyyvQz6.mjs";import"node:module";import"node:worker_threads";import"node:url";import"node:fs";import"node:fs/promises";import"../../index-DCefr8NP.mjs";import"node:path";import"esbuild";import"node:os";import"../../temporary-directory-BDDVQOvU.mjs";import"../../client-D_mPDF5S.mjs";import"node:net";import"module";import"fs";import"os";import"path";import"node:util";import"../../index-gbaejti9.mjs";const U=i((t,r)=>{if(!r||typeof r=="object"&&!r.parentURL)throw new Error("The current file path (import.meta.url) must be provided in the second argument of tsImport()");const o=typeof r=="string",e=o?r:r.parentURL,m=n.randomUUID(),a=c({namespace:m});return!f(g)&&!u.test(t)&&d.test(t)?Promise.resolve(a.require(t,e)):p({namespace:m,...o?{}:r}).import(t,e)},"tsImport");export{p as register,U as tsImport};
@@ -1 +0,0 @@
1
- import*as o from"node:worker_threads";import{i as t,m as i,a as e}from"../node-features-JeyyvQz6.mjs";import{r as a,c as m,a as p,b as s,d as l,e as d}from"../register-SoqaU4rg.mjs";import"node:crypto";import"../get-pipe-path-_tAJyU_v.mjs";import"node:module";import"node:path";import"node:url";import"../register-DHgpdRjs.mjs";import"node:fs";import"esbuild";import"../index-DCefr8NP.mjs";import"../client-D_mPDF5S.mjs";import"../require-Cuv-0BLU.mjs";import"node:fs/promises";import"module";import"../temporary-directory-BDDVQOvU.mjs";import"node:os";import"fs";import"os";import"path";import"node:util";import"../index-gbaejti9.mjs";import"node:net";(t(i)&&!o.isInternalThread||t(e)&&o.isMainThread)&&a();const r=d(),c=m(r),n=p(r),f=s(r),u=l(r);export{n as globalPreload,c as initialize,f as load,u as resolve};
@@ -1 +0,0 @@
1
- var o=Object.defineProperty;var t=(e,r)=>o(e,"name",{value:r,configurable:!0});import{createRequire as p}from"module";import a from"node:path";import{t as s}from"./temporary-directory-BDDVQOvU.mjs";var m=p(import.meta.url);const i=process.platform==="win32",n=t(e=>{const r=a.join(s,`${e}.pipe`);return i?`\\\\?\\pipe\\${r}`:r},"getPipePath");export{n as g,i,m as r};
@@ -1,14 +0,0 @@
1
- var Yt=Object.defineProperty;var u=(s,e)=>Yt(s,"name",{value:e,configurable:!0});import z from"node:path";import{fileURLToPath as Qt,pathToFileURL as Zt}from"node:url";import{version as Se,transform as Vt,transformSync as Fe}from"esbuild";import en from"node:crypto";import{i as tn,c as nn}from"./node-features-JeyyvQz6.mjs";import U from"node:fs";import rn from"node:os";import{t as sn}from"./temporary-directory-BDDVQOvU.mjs";const ve=u(s=>en.createHash("sha1").update(s).digest("hex"),"sha1");let _,se,xe,Y=2<<19;const Pe=new Uint8Array(new Uint16Array([1]).buffer)[0]===1?function(s,e){const n=s.length;let i=0;for(;i<n;)e[i]=s.charCodeAt(i++)}:function(s,e){const n=s.length;let i=0;for(;i<n;){const o=s.charCodeAt(i);e[i++]=(255&o)<<8|o>>>8}},on="xportmportlassforetaourceromsyncunctionssertvoyiedelecontininstantybreareturdebuggeawaithrwhileifcatcfinallels";let L,We,y;function an(s,e="@"){L=s,We=e;const n=2*L.length+(2<<18);if(n>Y||!_){for(;n>Y;)Y*=2;se=new ArrayBuffer(Y),Pe(on,new Uint16Array(se,16,110)),_=function(l,p,g){var b=new l.Int8Array(g),d=new l.Int16Array(g),r=new l.Int32Array(g),S=new l.Uint8Array(g),A=new l.Uint16Array(g),E=1040;function I(){var t=0,a=0,h=0,f=0,m=0,w=0,C=0;C=E,E=E+10240|0,b[804]=1,b[803]=0,d[399]=0,d[400]=0,r[69]=r[2],b[805]=0,r[68]=0,b[802]=0,r[70]=C+2048,r[71]=C,b[806]=0,t=(r[3]|0)+-2|0,r[72]=t,a=t+(r[66]<<1)|0,r[73]=a;e:for(;;){if(h=t+2|0,r[72]=h,t>>>0>=a>>>0){f=18;break}t:do switch(d[h>>1]|0){case 9:case 10:case 11:case 12:case 13:case 32:break;case 101:{if(!(d[400]|0)&&K(h)|0&&!(R(t+4|0,16,10)|0)&&(M(),(b[804]|0)==0)){f=9;break e}else f=17;break}case 105:{K(h)|0&&!(R(t+4|0,26,10)|0)&&F(),f=17;break}case 59:{f=17;break}case 47:switch(d[t+4>>1]|0){case 47:{pe();break t}case 42:{ge(1);break t}default:{f=16;break e}}default:{f=16;break e}}while(!1);(f|0)==17&&(f=0,r[69]=r[72]),t=r[72]|0,a=r[73]|0}(f|0)==9?(t=r[72]|0,r[69]=t,f=19):(f|0)==16?(b[804]=0,r[72]=t,f=19):(f|0)==18&&(b[802]|0?t=0:(t=h,f=19));do if((f|0)==19){e:for(;;){if(a=t+2|0,r[72]=a,t>>>0>=(r[73]|0)>>>0){f=92;break}t:do switch(d[a>>1]|0){case 9:case 10:case 11:case 12:case 13:case 32:break;case 101:{!(d[400]|0)&&K(a)|0&&!(R(t+4|0,16,10)|0)&&M(),f=91;break}case 105:{K(a)|0&&!(R(t+4|0,26,10)|0)&&F(),f=91;break}case 99:{K(a)|0&&!(R(t+4|0,36,8)|0)&&W(d[t+12>>1]|0)|0&&(b[806]=1),f=91;break}case 40:{h=r[70]|0,t=d[400]|0,f=t&65535,r[h+(f<<3)>>2]=1,a=r[69]|0,d[400]=t+1<<16>>16,r[h+(f<<3)+4>>2]=a,f=91;break}case 41:{if(a=d[400]|0,!(a<<16>>16)){f=36;break e}h=a+-1<<16>>16,d[400]=h,f=d[399]|0,a=f&65535,f<<16>>16&&(r[(r[70]|0)+((h&65535)<<3)>>2]|0)==5&&(a=r[(r[71]|0)+(a+-1<<2)>>2]|0,h=a+4|0,r[h>>2]|0||(r[h>>2]=(r[69]|0)+2),r[a+12>>2]=t+4,d[399]=f+-1<<16>>16),f=91;break}case 123:{f=r[69]|0,h=r[63]|0,t=f;do if((d[f>>1]|0)==41&(h|0)!=0&&(r[h+4>>2]|0)==(f|0))if(a=r[64]|0,r[63]=a,a){r[a+32>>2]=0;break}else{r[59]=0;break}while(!1);h=r[70]|0,a=d[400]|0,f=a&65535,r[h+(f<<3)>>2]=b[806]|0?6:2,d[400]=a+1<<16>>16,r[h+(f<<3)+4>>2]=t,b[806]=0,f=91;break}case 125:{if(t=d[400]|0,!(t<<16>>16)){f=49;break e}h=r[70]|0,f=t+-1<<16>>16,d[400]=f,(r[h+((f&65535)<<3)>>2]|0)==4&&Ue(),f=91;break}case 39:{N(39),f=91;break}case 34:{N(34),f=91;break}case 47:switch(d[t+4>>1]|0){case 47:{pe();break t}case 42:{ge(1);break t}default:{t=r[69]|0,a=d[t>>1]|0;n:do if(!(Lt(a)|0))a<<16>>16==41?(h=d[400]|0,It(r[(r[70]|0)+((h&65535)<<3)+4>>2]|0)|0||(f=65)):f=64;else switch(a<<16>>16){case 46:if(((d[t+-2>>1]|0)+-48&65535)<10){f=64;break n}else break n;case 43:if((d[t+-2>>1]|0)==43){f=64;break n}else break n;case 45:if((d[t+-2>>1]|0)==45){f=64;break n}else break n;default:break n}while(!1);(f|0)==64&&(h=d[400]|0,f=65);n:do if((f|0)==65){if(f=0,h<<16>>16&&(m=r[70]|0,w=(h&65535)+-1|0,a<<16>>16==102?(r[m+(w<<3)>>2]|0)==1:0)){if((d[t+-2>>1]|0)==111&&O(r[m+(w<<3)+4>>2]|0,44,3)|0)break}else f=69;if((f|0)==69&&a<<16>>16==125&&(f=r[70]|0,h=h&65535,Et(r[f+(h<<3)+4>>2]|0)|0||(r[f+(h<<3)>>2]|0)==6))break;if(!(xt(t)|0)){switch(a<<16>>16){case 0:break n;case 47:{if(b[805]|0)break n;break}default:}if(f=r[65]|0,f|0&&t>>>0>=(r[f>>2]|0)>>>0&&t>>>0<=(r[f+4>>2]|0)>>>0){de(),b[805]=0,f=91;break t}h=r[3]|0;do{if(t>>>0<=h>>>0)break;t=t+-2|0,r[69]=t,a=d[t>>1]|0}while(!(be(a)|0));if(ie(a)|0){do{if(t>>>0<=h>>>0)break;t=t+-2|0,r[69]=t}while(ie(d[t>>1]|0)|0);if(At(t)|0){de(),b[805]=0,f=91;break t}}b[805]=1,f=91;break t}}while(!1);de(),b[805]=0,f=91;break t}}case 96:{h=r[70]|0,a=d[400]|0,f=a&65535,r[h+(f<<3)+4>>2]=r[69],d[400]=a+1<<16>>16,r[h+(f<<3)>>2]=3,Ue(),f=91;break}default:f=91}while(!1);(f|0)==91&&(f=0,r[69]=r[72]),t=r[72]|0}if((f|0)==36){$(),t=0;break}else if((f|0)==49){$(),t=0;break}else if((f|0)==92){t=b[802]|0?0:(d[399]|d[400])<<16>>16==0;break}}while(!1);return E=C,t|0}u(I,"b");function M(){var t=0,a=0,h=0,f=0,m=0,w=0,C=0,D=0,we=0,ke=0,ye=0,Ce=0,v=0,x=0;D=r[72]|0,we=r[65]|0,x=D+12|0,r[72]=x,h=k(1)|0,t=r[72]|0,(t|0)==(x|0)&&!(re(h)|0)||(v=3);e:do if((v|0)==3){t:do switch(h<<16>>16){case 123:{for(r[72]=t+2,t=k(1)|0,a=r[72]|0;;){if(X(t)|0?(N(t),t=(r[72]|0)+2|0,r[72]=t):(j(t)|0,t=r[72]|0),k(1)|0,t=Te(a,t)|0,t<<16>>16==44&&(r[72]=(r[72]|0)+2,t=k(1)|0),t<<16>>16==125){v=15;break}if(x=a,a=r[72]|0,(a|0)==(x|0)){v=12;break}if(a>>>0>(r[73]|0)>>>0){v=14;break}}if((v|0)==12){$();break e}else if((v|0)==14){$();break e}else if((v|0)==15){b[803]=1,r[72]=(r[72]|0)+2;break t}break}case 42:{r[72]=t+2,k(1)|0,x=r[72]|0,Te(x,x)|0;break}default:{switch(b[804]=0,h<<16>>16){case 100:{switch(D=t+14|0,r[72]=D,(k(1)|0)<<16>>16){case 97:{a=r[72]|0,!(R(a+2|0,72,8)|0)&&(m=a+10|0,ie(d[m>>1]|0)|0)&&(r[72]=m,k(0)|0,v=22);break}case 102:{v=22;break}case 99:{a=r[72]|0,!(R(a+2|0,36,8)|0)&&(f=a+10|0,x=d[f>>1]|0,W(x)|0|x<<16>>16==123)&&(r[72]=f,w=k(1)|0,w<<16>>16!=123)&&(Ce=w,v=31);break}default:}n:do if((v|0)==22&&(C=r[72]|0,(R(C+2|0,80,14)|0)==0)){if(h=C+16|0,a=d[h>>1]|0,!(W(a)|0))switch(a<<16>>16){case 40:case 42:break;default:break n}r[72]=h,a=k(1)|0,a<<16>>16==42&&(r[72]=(r[72]|0)+2,a=k(1)|0),a<<16>>16!=40&&(Ce=a,v=31)}while(!1);if((v|0)==31&&(ke=r[72]|0,j(Ce)|0,ye=r[72]|0,ye>>>0>ke>>>0)){P(t,D,ke,ye),r[72]=(r[72]|0)+-2;break e}P(t,D,0,0),r[72]=t+12;break e}case 97:{r[72]=t+10,k(0)|0,t=r[72]|0,v=35;break}case 102:{v=35;break}case 99:{if(!(R(t+2|0,36,8)|0)&&(a=t+10|0,be(d[a>>1]|0)|0)){r[72]=a,x=k(1)|0,v=r[72]|0,j(x)|0,x=r[72]|0,P(v,x,v,x),r[72]=(r[72]|0)+-2;break e}t=t+4|0,r[72]=t;break}case 108:case 118:break;default:break e}if((v|0)==35){r[72]=t+16,t=k(1)|0,t<<16>>16==42&&(r[72]=(r[72]|0)+2,t=k(1)|0),v=r[72]|0,j(t)|0,x=r[72]|0,P(v,x,v,x),r[72]=(r[72]|0)+-2;break e}r[72]=t+6,b[804]=0,h=k(1)|0,t=r[72]|0,h=(j(h)|0|32)<<16>>16==123,f=r[72]|0,h&&(r[72]=f+2,x=k(1)|0,t=r[72]|0,j(x)|0);n:for(;a=r[72]|0,(a|0)!=(t|0);){if(P(t,a,t,a),a=k(1)|0,h)switch(a<<16>>16){case 93:case 125:break e;default:}if(t=r[72]|0,a<<16>>16!=44){v=51;break}switch(r[72]=t+2,a=k(1)|0,t=r[72]|0,a<<16>>16){case 91:case 123:{v=51;break n}default:}j(a)|0}if((v|0)==51&&(r[72]=t+-2),!h)break e;r[72]=f+-2;break e}}while(!1);if(x=(k(1)|0)<<16>>16==102,t=r[72]|0,x&&!(R(t+2|0,66,6)|0))for(r[72]=t+8,H(D,k(1)|0,0),t=we|0?we+16|0:240;;){if(t=r[t>>2]|0,!t)break e;r[t+12>>2]=0,r[t+8>>2]=0,t=t+16|0}r[72]=t+-2}while(!1)}u(M,"k");function F(){var t=0,a=0,h=0,f=0,m=0,w=0,C=0;m=r[72]|0,h=m+12|0,r[72]=h,f=k(1)|0,a=r[72]|0;e:do if(f<<16>>16!=46)f<<16>>16==115&a>>>0>h>>>0?!(R(a+2|0,56,10)|0)&&(t=a+12|0,W(d[t>>1]|0)|0)?w=14:(a=6,h=0,w=46):(t=f,h=0,w=15);else switch(r[72]=a+2,(k(1)|0)<<16>>16){case 109:{if(t=r[72]|0,R(t+2|0,50,6)|0||(a=r[69]|0,!(me(a)|0)&&(d[a>>1]|0)==46))break e;he(m,m,t+8|0,2);break e}case 115:{if(t=r[72]|0,R(t+2|0,56,10)|0||(a=r[69]|0,!(me(a)|0)&&(d[a>>1]|0)==46))break e;t=t+12|0,w=14;break e}default:break e}while(!1);(w|0)==14&&(r[72]=t,t=k(1)|0,h=1,w=15);e:do if((w|0)==15)switch(t<<16>>16){case 40:{if(a=r[70]|0,C=d[400]|0,f=C&65535,r[a+(f<<3)>>2]=5,t=r[72]|0,d[400]=C+1<<16>>16,r[a+(f<<3)+4>>2]=t,(d[r[69]>>1]|0)==46)break e;switch(r[72]=t+2,a=k(1)|0,he(m,r[72]|0,0,t),h?(t=r[63]|0,r[t+28>>2]=5):t=r[63]|0,m=r[71]|0,C=d[399]|0,d[399]=C+1<<16>>16,r[m+((C&65535)<<2)>>2]=t,a<<16>>16){case 39:{N(39);break}case 34:{N(34);break}default:{r[72]=(r[72]|0)+-2;break e}}switch(t=(r[72]|0)+2|0,r[72]=t,(k(1)|0)<<16>>16){case 44:{r[72]=(r[72]|0)+2,k(1)|0,m=r[63]|0,r[m+4>>2]=t,C=r[72]|0,r[m+16>>2]=C,b[m+24>>0]=1,r[72]=C+-2;break e}case 41:{d[400]=(d[400]|0)+-1<<16>>16,C=r[63]|0,r[C+4>>2]=t,r[C+12>>2]=(r[72]|0)+2,b[C+24>>0]=1,d[399]=(d[399]|0)+-1<<16>>16;break e}default:{r[72]=(r[72]|0)+-2;break e}}}case 123:{if(h){a=12,h=1,w=46;break e}if(t=r[72]|0,d[400]|0){r[72]=t+-2;break e}for(;!(t>>>0>=(r[73]|0)>>>0);){if(t=k(1)|0,X(t)|0)N(t);else if(t<<16>>16==125){w=36;break}t=(r[72]|0)+2|0,r[72]=t}if((w|0)==36&&(r[72]=(r[72]|0)+2),C=(k(1)|0)<<16>>16==102,t=r[72]|0,C&&R(t+2|0,66,6)|0){$();break e}if(r[72]=t+8,t=k(1)|0,X(t)|0){H(m,t,0);break e}else{$();break e}}default:{if(h){a=12,h=1,w=46;break e}switch(t<<16>>16){case 42:case 39:case 34:{h=0,w=48;break e}default:{a=6,h=0,w=46;break e}}}}while(!1);(w|0)==46&&(t=r[72]|0,(t|0)==(m+(a<<1)|0)?r[72]=t+-2:w=48);do if((w|0)==48){if(d[400]|0){r[72]=(r[72]|0)+-2;break}for(t=r[73]|0,a=r[72]|0;;){if(a>>>0>=t>>>0){w=55;break}if(f=d[a>>1]|0,X(f)|0){w=53;break}C=a+2|0,r[72]=C,a=C}if((w|0)==53){H(m,f,h);break}else if((w|0)==55){$();break}}while(!1)}u(F,"l");function H(t,a,h){t=t|0,a=a|0,h=h|0;var f=0,m=0;switch(f=(r[72]|0)+2|0,a<<16>>16){case 39:{N(39),m=5;break}case 34:{N(34),m=5;break}default:$()}do if((m|0)==5){if(he(t,f,r[72]|0,1),h&&(r[(r[63]|0)+28>>2]=4),r[72]=(r[72]|0)+2,a=k(0)|0,h=a<<16>>16==97,h?(f=r[72]|0,R(f+2|0,94,10)|0&&(m=13)):(f=r[72]|0,a<<16>>16==119&&(d[f+2>>1]|0)==105&&(d[f+4>>1]|0)==116&&(d[f+6>>1]|0)==104||(m=13)),(m|0)==13){r[72]=f+-2;break}if(r[72]=f+((h?6:4)<<1),(k(1)|0)<<16>>16!=123){r[72]=f;break}h=r[72]|0,a=h;e:for(;;){switch(r[72]=a+2,a=k(1)|0,a<<16>>16){case 39:{N(39),r[72]=(r[72]|0)+2,a=k(1)|0;break}case 34:{N(34),r[72]=(r[72]|0)+2,a=k(1)|0;break}default:a=j(a)|0}if(a<<16>>16!=58){m=22;break}switch(r[72]=(r[72]|0)+2,(k(1)|0)<<16>>16){case 39:{N(39);break}case 34:{N(34);break}default:{m=26;break e}}switch(r[72]=(r[72]|0)+2,(k(1)|0)<<16>>16){case 125:{m=31;break e}case 44:break;default:{m=30;break e}}if(r[72]=(r[72]|0)+2,(k(1)|0)<<16>>16==125){m=31;break}a=r[72]|0}if((m|0)==22){r[72]=f;break}else if((m|0)==26){r[72]=f;break}else if((m|0)==30){r[72]=f;break}else if((m|0)==31){m=r[63]|0,r[m+16>>2]=h,r[m+12>>2]=(r[72]|0)+2;break}}while(!1)}u(H,"u");function xt(t){t=t|0;e:do switch(d[t>>1]|0){case 100:switch(d[t+-2>>1]|0){case 105:{t=O(t+-4|0,104,2)|0;break e}case 108:{t=O(t+-4|0,108,3)|0;break e}default:{t=0;break e}}case 101:switch(d[t+-2>>1]|0){case 115:switch(d[t+-4>>1]|0){case 108:{t=G(t+-6|0,101)|0;break e}case 97:{t=G(t+-6|0,99)|0;break e}default:{t=0;break e}}case 116:{t=O(t+-4|0,114,4)|0;break e}case 117:{t=O(t+-4|0,122,6)|0;break e}default:{t=0;break e}}case 102:{if((d[t+-2>>1]|0)==111&&(d[t+-4>>1]|0)==101)switch(d[t+-6>>1]|0){case 99:{t=O(t+-8|0,134,6)|0;break e}case 112:{t=O(t+-8|0,146,2)|0;break e}default:{t=0;break e}}else t=0;break}case 107:{t=O(t+-2|0,150,4)|0;break}case 110:{t=t+-2|0,G(t,105)|0?t=1:t=O(t,158,5)|0;break}case 111:{t=G(t+-2|0,100)|0;break}case 114:{t=O(t+-2|0,168,7)|0;break}case 116:{t=O(t+-2|0,182,4)|0;break}case 119:switch(d[t+-2>>1]|0){case 101:{t=G(t+-4|0,110)|0;break e}case 111:{t=O(t+-4|0,190,3)|0;break e}default:{t=0;break e}}default:t=0}while(!1);return t|0}u(xt,"o");function Ue(){var t=0,a=0,h=0,f=0;a=r[73]|0,h=r[72]|0;e:for(;;){if(t=h+2|0,h>>>0>=a>>>0){a=10;break}switch(d[t>>1]|0){case 96:{a=7;break e}case 36:{if((d[h+4>>1]|0)==123){a=6;break e}break}case 92:{t=h+4|0;break}default:}h=t}(a|0)==6?(t=h+4|0,r[72]=t,a=r[70]|0,f=d[400]|0,h=f&65535,r[a+(h<<3)>>2]=4,d[400]=f+1<<16>>16,r[a+(h<<3)+4>>2]=t):(a|0)==7?(r[72]=t,h=r[70]|0,f=(d[400]|0)+-1<<16>>16,d[400]=f,(r[h+((f&65535)<<3)>>2]|0)!=3&&$()):(a|0)==10&&(r[72]=t,$())}u(Ue,"h");function k(t){t=t|0;var a=0,h=0,f=0;h=r[72]|0;e:do{a=d[h>>1]|0;t:do if(a<<16>>16!=47)if(t){if(W(a)|0)break;break e}else{if(ie(a)|0)break;break e}else switch(d[h+2>>1]|0){case 47:{pe();break t}case 42:{ge(t);break t}default:{a=47;break e}}while(!1);f=r[72]|0,h=f+2|0,r[72]=h}while(f>>>0<(r[73]|0)>>>0);return a|0}u(k,"w");function he(t,a,h,f){t=t|0,a=a|0,h=h|0,f=f|0;var m=0,w=0;w=r[67]|0,r[67]=w+36,m=r[63]|0,r[(m|0?m+32|0:236)>>2]=w,r[64]=m,r[63]=w,r[w+8>>2]=t,(f|0)==2?(t=3,m=h):(m=(f|0)==1,t=m?1:2,m=m?h+2|0:0),r[w+12>>2]=m,r[w+28>>2]=t,r[w>>2]=a,r[w+4>>2]=h,r[w+16>>2]=0,r[w+20>>2]=f,a=(f|0)==1,b[w+24>>0]=a&1,r[w+32>>2]=0,a|(f|0)==2&&(b[803]=1)}u(he,"d");function N(t){t=t|0;var a=0,h=0,f=0,m=0;for(m=r[73]|0,a=r[72]|0;;){if(f=a+2|0,a>>>0>=m>>>0){a=9;break}if(h=d[f>>1]|0,h<<16>>16==t<<16>>16){a=10;break}if(h<<16>>16==92)h=a+4|0,(d[h>>1]|0)==13?(a=a+6|0,a=(d[a>>1]|0)==10?a:h):a=h;else if(Be(h)|0){a=9;break}else a=f}(a|0)==9?(r[72]=f,$()):(a|0)==10&&(r[72]=f)}u(N,"v");function Te(t,a){t=t|0,a=a|0;var h=0,f=0,m=0,w=0;return h=r[72]|0,f=d[h>>1]|0,w=(t|0)==(a|0),m=w?0:t,w=w?0:a,f<<16>>16==97&&(r[72]=h+4,h=k(1)|0,t=r[72]|0,X(h)|0?(N(h),a=(r[72]|0)+2|0,r[72]=a):(j(h)|0,a=r[72]|0),f=k(1)|0,h=r[72]|0),(h|0)!=(t|0)&&P(t,a,m,w),f|0}u(Te,"A");function _t(){var t=0,a=0,h=0;h=r[73]|0,a=r[72]|0;e:for(;;){if(t=a+2|0,a>>>0>=h>>>0){a=6;break}switch(d[t>>1]|0){case 13:case 10:{a=6;break e}case 93:{a=7;break e}case 92:{t=a+4|0;break}default:}a=t}return(a|0)==6?(r[72]=t,$(),t=0):(a|0)==7&&(r[72]=t,t=93),t|0}u(_t,"C");function de(){var t=0,a=0,h=0;e:for(;;){if(t=r[72]|0,a=t+2|0,r[72]=a,t>>>0>=(r[73]|0)>>>0){h=7;break}switch(d[a>>1]|0){case 13:case 10:{h=7;break e}case 47:break e;case 91:{_t()|0;break}case 92:{r[72]=t+4;break}default:}}(h|0)==7&&$()}u(de,"g");function Et(t){switch(t=t|0,d[t>>1]|0){case 62:{t=(d[t+-2>>1]|0)==61;break}case 41:case 59:{t=1;break}case 104:{t=O(t+-2|0,210,4)|0;break}case 121:{t=O(t+-2|0,218,6)|0;break}case 101:{t=O(t+-2|0,230,3)|0;break}default:t=0}return t|0}u(Et,"p");function ge(t){t=t|0;var a=0,h=0,f=0,m=0,w=0;for(m=(r[72]|0)+2|0,r[72]=m,h=r[73]|0;a=m+2|0,!(m>>>0>=h>>>0||(f=d[a>>1]|0,!t&&Be(f)|0));){if(f<<16>>16==42&&(d[m+4>>1]|0)==47){w=8;break}m=a}(w|0)==8&&(r[72]=a,a=m+4|0),r[72]=a}u(ge,"y");function R(t,a,h){t=t|0,a=a|0,h=h|0;var f=0,m=0;e:do if(!h)t=0;else{for(;f=b[t>>0]|0,m=b[a>>0]|0,f<<24>>24==m<<24>>24;)if(h=h+-1|0,h)t=t+1|0,a=a+1|0;else{t=0;break e}t=(f&255)-(m&255)|0}while(!1);return t|0}u(R,"m");function re(t){t=t|0;e:do switch(t<<16>>16){case 38:case 37:case 33:{t=1;break}default:if((t&-8)<<16>>16==40|(t+-58&65535)<6)t=1;else{switch(t<<16>>16){case 91:case 93:case 94:{t=1;break e}default:}t=(t+-123&65535)<4}}while(!1);return t|0}u(re,"I");function Lt(t){t=t|0;e:do switch(t<<16>>16){case 38:case 37:case 33:break;default:if(!((t+-58&65535)<6|(t+-40&65535)<7&t<<16>>16!=41)){switch(t<<16>>16){case 91:case 94:break e;default:}return t<<16>>16!=125&(t+-123&65535)<4|0}}while(!1);return 1}u(Lt,"U");function De(t){t=t|0;var a=0;a=d[t>>1]|0;e:do if((a+-9&65535)>=5){switch(a<<16>>16){case 160:case 32:{a=1;break e}default:}if(re(a)|0)return a<<16>>16!=46|(me(t)|0)|0;a=0}else a=1;while(!1);return a|0}u(De,"x");function Ot(t){t=t|0;var a=0,h=0,f=0,m=0;return h=E,E=E+16|0,f=h,r[f>>2]=0,r[66]=t,a=r[3]|0,m=a+(t<<1)|0,t=m+2|0,d[m>>1]=0,r[f>>2]=t,r[67]=t,r[59]=0,r[63]=0,r[61]=0,r[60]=0,r[65]=0,r[62]=0,E=h,a|0}u(Ot,"S");function P(t,a,h,f){t=t|0,a=a|0,h=h|0,f=f|0;var m=0,w=0;m=r[67]|0,r[67]=m+20,w=r[65]|0,r[(w|0?w+16|0:240)>>2]=m,r[65]=m,r[m>>2]=t,r[m+4>>2]=a,r[m+8>>2]=h,r[m+12>>2]=f,r[m+16>>2]=0,b[803]=1}u(P,"O");function O(t,a,h){t=t|0,a=a|0,h=h|0;var f=0,m=0;return f=t+(0-h<<1)|0,m=f+2|0,t=r[3]|0,m>>>0>=t>>>0&&!(R(m,a,h<<1)|0)?(m|0)==(t|0)?t=1:t=De(f)|0:t=0,t|0}u(O,"$");function At(t){switch(t=t|0,d[t>>1]|0){case 107:{t=O(t+-2|0,150,4)|0;break}case 101:{(d[t+-2>>1]|0)==117?t=O(t+-4|0,122,6)|0:t=0;break}default:t=0}return t|0}u(At,"j");function G(t,a){t=t|0,a=a|0;var h=0;return h=r[3]|0,h>>>0<=t>>>0&&(d[t>>1]|0)==a<<16>>16?(h|0)==(t|0)?h=1:h=be(d[t+-2>>1]|0)|0:h=0,h|0}u(G,"B");function be(t){t=t|0;e:do if((t+-9&65535)<5)t=1;else{switch(t<<16>>16){case 32:case 160:{t=1;break e}default:}t=t<<16>>16!=46&(re(t)|0)}while(!1);return t|0}u(be,"E");function pe(){var t=0,a=0,h=0;t=r[73]|0,h=r[72]|0;e:for(;a=h+2|0,!(h>>>0>=t>>>0);)switch(d[a>>1]|0){case 13:case 10:break e;default:h=a}r[72]=a}u(pe,"P");function j(t){for(t=t|0;!(W(t)|0||re(t)|0);)if(t=(r[72]|0)+2|0,r[72]=t,t=d[t>>1]|0,!(t<<16>>16)){t=0;break}return t|0}u(j,"q");function Rt(){var t=0;switch(t=r[(r[61]|0)+20>>2]|0,t|0){case 1:{t=-1;break}case 2:{t=-2;break}default:t=t-(r[3]|0)>>1}return t|0}u(Rt,"z");function It(t){return t=t|0,!(O(t,196,5)|0)&&!(O(t,44,3)|0)?t=O(t,206,2)|0:t=1,t|0}u(It,"D");function ie(t){switch(t=t|0,t<<16>>16){case 160:case 32:case 12:case 11:case 9:{t=1;break}default:t=0}return t|0}u(ie,"F");function me(t){return t=t|0,(d[t>>1]|0)==46&&(d[t+-2>>1]|0)==46?t=(d[t+-4>>1]|0)==46:t=0,t|0}u(me,"G");function K(t){return t=t|0,(r[3]|0)==(t|0)?t=1:t=De(t+-2|0)|0,t|0}u(K,"H");function Nt(){var t=0;return t=r[(r[62]|0)+12>>2]|0,t?t=t-(r[3]|0)>>1:t=-1,t|0}u(Nt,"J");function $t(){var t=0;return t=r[(r[61]|0)+12>>2]|0,t?t=t-(r[3]|0)>>1:t=-1,t|0}u($t,"K");function Mt(){var t=0;return t=r[(r[62]|0)+8>>2]|0,t?t=t-(r[3]|0)>>1:t=-1,t|0}u(Mt,"L");function jt(){var t=0;return t=r[(r[61]|0)+16>>2]|0,t?t=t-(r[3]|0)>>1:t=-1,t|0}u(jt,"M");function Ut(){var t=0;return t=r[(r[61]|0)+4>>2]|0,t?t=t-(r[3]|0)>>1:t=-1,t|0}u(Ut,"N");function Tt(){var t=0;return t=r[61]|0,t=r[(t|0?t+32|0:236)>>2]|0,r[61]=t,(t|0)!=0|0}u(Tt,"Q");function Dt(){var t=0;return t=r[62]|0,t=r[(t|0?t+16|0:240)>>2]|0,r[62]=t,(t|0)!=0|0}u(Dt,"R");function $(){b[802]=1,r[68]=(r[72]|0)-(r[3]|0)>>1,r[72]=(r[73]|0)+2}u($,"T");function W(t){return t=t|0,(t|128)<<16>>16==160|(t+-9&65535)<5|0}u(W,"V");function X(t){return t=t|0,t<<16>>16==39|t<<16>>16==34|0}u(X,"W");function Bt(){return(r[(r[61]|0)+8>>2]|0)-(r[3]|0)>>1|0}u(Bt,"X");function Ft(){return(r[(r[62]|0)+4>>2]|0)-(r[3]|0)>>1|0}u(Ft,"Y");function Be(t){return t=t|0,t<<16>>16==13|t<<16>>16==10|0}u(Be,"Z");function Pt(){return(r[r[61]>>2]|0)-(r[3]|0)>>1|0}u(Pt,"_");function Wt(){return(r[r[62]>>2]|0)-(r[3]|0)>>1|0}u(Wt,"ee");function zt(){return S[(r[61]|0)+24>>0]|0|0}u(zt,"ae");function Jt(t){t=t|0,r[3]=t}u(Jt,"re");function qt(){return r[(r[61]|0)+28>>2]|0}u(qt,"ie");function Ht(){return(b[803]|0)!=0|0}u(Ht,"se");function Gt(){return(b[804]|0)!=0|0}u(Gt,"fe");function Kt(){return r[68]|0}u(Kt,"te");function Xt(t){return t=t|0,E=t+992+15&-16,992}return u(Xt,"ce"),{su:Xt,ai:jt,e:Kt,ee:Ft,ele:Nt,els:Mt,es:Wt,f:Gt,id:Rt,ie:Ut,ip:zt,is:Pt,it:qt,ms:Ht,p:I,re:Dt,ri:Tt,sa:Ot,se:$t,ses:Jt,ss:Bt}}(typeof self<"u"?self:global,{},se),xe=_.su(Y-(2<<17))}const i=L.length+1;_.ses(xe),_.sa(i-1),Pe(L,new Uint16Array(se,xe,i)),_.p()||(y=_.e(),T());const o=[],c=[];for(;_.ri();){const l=_.is(),p=_.ie(),g=_.ai(),b=_.id(),d=_.ss(),r=_.se(),S=_.it();let A;_.ip()&&(A=_e(b===-1?l:l+1,L.charCodeAt(b===-1?l-1:l))),o.push({t:S,n:A,s:l,e:p,ss:d,se:r,d:b,a:g})}for(;_.re();){const l=_.es(),p=_.ee(),g=_.els(),b=_.ele(),d=L.charCodeAt(l),r=g>=0?L.charCodeAt(g):-1;c.push({s:l,e:p,ls:g,le:b,n:d===34||d===39?_e(l+1,d):L.slice(l,p),ln:g<0?void 0:r===34||r===39?_e(g+1,r):L.slice(g,b)})}return[o,c,!!_.f(),!!_.ms()]}u(an,"parse");function _e(s,e){y=s;let n="",i=y;for(;;){y>=L.length&&T();const o=L.charCodeAt(y);if(o===e)break;o===92?(n+=L.slice(i,y),n+=cn(),i=y):(o===8232||o===8233||ze(o)&&T(),++y)}return n+=L.slice(i,y++),n}u(_e,"b");function cn(){let s=L.charCodeAt(++y);switch(++y,s){case 110:return`
2
- `;case 114:return"\r";case 120:return String.fromCharCode(Ee(2));case 117:return function(){const e=L.charCodeAt(y);let n;return e===123?(++y,n=Ee(L.indexOf("}",y)-y),++y,n>1114111&&T()):n=Ee(4),n<=65535?String.fromCharCode(n):(n-=65536,String.fromCharCode(55296+(n>>10),56320+(1023&n)))}();case 116:return" ";case 98:return"\b";case 118:return"\v";case 102:return"\f";case 13:L.charCodeAt(y)===10&&++y;case 10:return"";case 56:case 57:T();default:if(s>=48&&s<=55){let e=L.substr(y-1,3).match(/^[0-7]+/)[0],n=parseInt(e,8);return n>255&&(e=e.slice(0,-1),n=parseInt(e,8)),y+=e.length-1,s=L.charCodeAt(y),e==="0"&&s!==56&&s!==57||T(),String.fromCharCode(n)}return ze(s)?"":String.fromCharCode(s)}}u(cn,"k");function Ee(s){const e=y;let n=0,i=0;for(let o=0;o<s;++o,++y){let c,l=L.charCodeAt(y);if(l!==95){if(l>=97)c=l-97+10;else if(l>=65)c=l-65+10;else{if(!(l>=48&&l<=57))break;c=l-48}if(c>=16)break;i=l,n=16*n+c}else i!==95&&o!==0||T(),i=l}return i!==95&&y-e===s||T(),n}u(Ee,"l");function ze(s){return s===13||s===10}u(ze,"u");function T(){throw Object.assign(Error(`Parse error ${We}:${L.slice(0,y).split(`
3
- `).length}:${y-L.lastIndexOf(`
4
- `,y-1)}`),{idx:y})}u(T,"o");let Le;typeof WebAssembly<"u"&&(async()=>{const{parse:s,init:e}=await import("./lexer-DQCqS3nf.mjs");await e,Le=s})();const oe=u((s,e)=>Le?Le(s,e):an(s,e),"parseEsm"),ln=u(s=>{if(!s.includes("import")&&!s.includes("export"))return!1;try{return oe(s)[3]}catch{return!0}},"isESM");var un=44,fn=59,Je="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",qe=new Uint8Array(64),hn=new Uint8Array(128);for(let s=0;s<Je.length;s++){const e=Je.charCodeAt(s);qe[s]=e,hn[e]=s}function Q(s,e,n){let i=e-n;i=i<0?-i<<1|1:i<<1;do{let o=i&31;i>>>=5,i>0&&(o|=32),s.write(qe[o])}while(i>0);return e}u(Q,"encodeInteger$1");var He=1024*16,Ge=typeof TextDecoder<"u"?new TextDecoder:typeof Buffer<"u"?{decode(s){return Buffer.from(s.buffer,s.byteOffset,s.byteLength).toString()}}:{decode(s){let e="";for(let n=0;n<s.length;n++)e+=String.fromCharCode(s[n]);return e}},dn=class{static{u(this,"StringWriter")}constructor(){this.pos=0,this.out="",this.buffer=new Uint8Array(He)}write(s){const{buffer:e}=this;e[this.pos++]=s,this.pos===He&&(this.out+=Ge.decode(e),this.pos=0)}flush(){const{buffer:s,out:e,pos:n}=this;return n>0?e+Ge.decode(s.subarray(0,n)):e}};function gn(s){const e=new dn;let n=0,i=0,o=0,c=0;for(let l=0;l<s.length;l++){const p=s[l];if(l>0&&e.write(fn),p.length===0)continue;let g=0;for(let b=0;b<p.length;b++){const d=p[b];b>0&&e.write(un),g=Q(e,d[0],g),d.length!==1&&(n=Q(e,d[1],n),i=Q(e,d[2],i),o=Q(e,d[3],o),d.length!==4&&(c=Q(e,d[4],c)))}}return e.flush()}u(gn,"encode$1");class fe{static{u(this,"BitSet")}constructor(e){this.bits=e instanceof fe?e.bits.slice():[]}add(e){this.bits[e>>5]|=1<<(e&31)}has(e){return!!(this.bits[e>>5]&1<<(e&31))}}class ne{static{u(this,"Chunk")}constructor(e,n,i){this.start=e,this.end=n,this.original=i,this.intro="",this.outro="",this.content=i,this.storeName=!1,this.edited=!1,this.previous=null,this.next=null}appendLeft(e){this.outro+=e}appendRight(e){this.intro=this.intro+e}clone(){const e=new ne(this.start,this.end,this.original);return e.intro=this.intro,e.outro=this.outro,e.content=this.content,e.storeName=this.storeName,e.edited=this.edited,e}contains(e){return this.start<e&&e<this.end}eachNext(e){let n=this;for(;n;)e(n),n=n.next}eachPrevious(e){let n=this;for(;n;)e(n),n=n.previous}edit(e,n,i){return this.content=e,i||(this.intro="",this.outro=""),this.storeName=n,this.edited=!0,this}prependLeft(e){this.outro=e+this.outro}prependRight(e){this.intro=e+this.intro}reset(){this.intro="",this.outro="",this.edited&&(this.content=this.original,this.storeName=!1,this.edited=!1)}split(e){const n=e-this.start,i=this.original.slice(0,n),o=this.original.slice(n);this.original=i;const c=new ne(e,this.end,o);return c.outro=this.outro,this.outro="",this.end=e,this.edited?(c.edit("",!1),this.content=""):this.content=i,c.next=this.next,c.next&&(c.next.previous=c),c.previous=this,this.next=c,c}toString(){return this.intro+this.content+this.outro}trimEnd(e){if(this.outro=this.outro.replace(e,""),this.outro.length)return!0;const n=this.content.replace(e,"");if(n.length)return n!==this.content&&(this.split(this.start+n.length).edit("",void 0,!0),this.edited&&this.edit(n,this.storeName,!0)),!0;if(this.edit("",void 0,!0),this.intro=this.intro.replace(e,""),this.intro.length)return!0}trimStart(e){if(this.intro=this.intro.replace(e,""),this.intro.length)return!0;const n=this.content.replace(e,"");if(n.length){if(n!==this.content){const i=this.split(this.end-n.length);this.edited&&i.edit(n,this.storeName,!0),this.edit("",void 0,!0)}return!0}else if(this.edit("",void 0,!0),this.outro=this.outro.replace(e,""),this.outro.length)return!0}}function bn(){return typeof globalThis<"u"&&typeof globalThis.btoa=="function"?s=>globalThis.btoa(unescape(encodeURIComponent(s))):typeof Buffer=="function"?s=>Buffer.from(s,"utf-8").toString("base64"):()=>{throw new Error("Unsupported environment: `window.btoa` or `Buffer` should be supported.")}}u(bn,"getBtoa");const pn=bn();let mn=class{static{u(this,"SourceMap")}constructor(e){this.version=3,this.file=e.file,this.sources=e.sources,this.sourcesContent=e.sourcesContent,this.names=e.names,this.mappings=gn(e.mappings),typeof e.x_google_ignoreList<"u"&&(this.x_google_ignoreList=e.x_google_ignoreList),typeof e.debugId<"u"&&(this.debugId=e.debugId)}toString(){return JSON.stringify(this)}toUrl(){return"data:application/json;charset=utf-8;base64,"+pn(this.toString())}};function wn(s){const e=s.split(`
5
- `),n=e.filter(c=>/^\t+/.test(c)),i=e.filter(c=>/^ {2,}/.test(c));if(n.length===0&&i.length===0)return null;if(n.length>=i.length)return" ";const o=i.reduce((c,l)=>{const p=/^ +/.exec(l)[0].length;return Math.min(p,c)},1/0);return new Array(o+1).join(" ")}u(wn,"guessIndent");function kn(s,e){const n=s.split(/[/\\]/),i=e.split(/[/\\]/);for(n.pop();n[0]===i[0];)n.shift(),i.shift();if(n.length){let o=n.length;for(;o--;)n[o]=".."}return n.concat(i).join("/")}u(kn,"getRelativePath");const yn=Object.prototype.toString;function Cn(s){return yn.call(s)==="[object Object]"}u(Cn,"isObject");function Ke(s){const e=s.split(`
6
- `),n=[];for(let i=0,o=0;i<e.length;i++)n.push(o),o+=e[i].length+1;return u(function(o){let c=0,l=n.length;for(;c<l;){const b=c+l>>1;o<n[b]?l=b:c=b+1}const p=c-1,g=o-n[p];return{line:p,column:g}},"locate")}u(Ke,"getLocator");const Sn=/\w/;class vn{static{u(this,"Mappings")}constructor(e){this.hires=e,this.generatedCodeLine=0,this.generatedCodeColumn=0,this.raw=[],this.rawSegments=this.raw[this.generatedCodeLine]=[],this.pending=null}addEdit(e,n,i,o){if(n.length){const c=n.length-1;let l=n.indexOf(`
7
- `,0),p=-1;for(;l>=0&&c>l;){const b=[this.generatedCodeColumn,e,i.line,i.column];o>=0&&b.push(o),this.rawSegments.push(b),this.generatedCodeLine+=1,this.raw[this.generatedCodeLine]=this.rawSegments=[],this.generatedCodeColumn=0,p=l,l=n.indexOf(`
8
- `,l+1)}const g=[this.generatedCodeColumn,e,i.line,i.column];o>=0&&g.push(o),this.rawSegments.push(g),this.advance(n.slice(p+1))}else this.pending&&(this.rawSegments.push(this.pending),this.advance(n));this.pending=null}addUneditedChunk(e,n,i,o,c){let l=n.start,p=!0,g=!1;for(;l<n.end;){if(i[l]===`
9
- `)o.line+=1,o.column=0,this.generatedCodeLine+=1,this.raw[this.generatedCodeLine]=this.rawSegments=[],this.generatedCodeColumn=0,p=!0,g=!1;else{if(this.hires||p||c.has(l)){const b=[this.generatedCodeColumn,e,o.line,o.column];this.hires==="boundary"?Sn.test(i[l])?g||(this.rawSegments.push(b),g=!0):(this.rawSegments.push(b),g=!1):this.rawSegments.push(b)}o.column+=1,this.generatedCodeColumn+=1,p=!1}l+=1}this.pending=null}advance(e){if(!e)return;const n=e.split(`
10
- `);if(n.length>1){for(let i=0;i<n.length-1;i++)this.generatedCodeLine++,this.raw[this.generatedCodeLine]=this.rawSegments=[];this.generatedCodeColumn=0}this.generatedCodeColumn+=n[n.length-1].length}}const Z=`
11
- `,J={insertLeft:!1,insertRight:!1,storeName:!1};class je{static{u(this,"MagicString")}constructor(e,n={}){const i=new ne(0,e.length,e);Object.defineProperties(this,{original:{writable:!0,value:e},outro:{writable:!0,value:""},intro:{writable:!0,value:""},firstChunk:{writable:!0,value:i},lastChunk:{writable:!0,value:i},lastSearchedChunk:{writable:!0,value:i},byStart:{writable:!0,value:{}},byEnd:{writable:!0,value:{}},filename:{writable:!0,value:n.filename},indentExclusionRanges:{writable:!0,value:n.indentExclusionRanges},sourcemapLocations:{writable:!0,value:new fe},storedNames:{writable:!0,value:{}},indentStr:{writable:!0,value:void 0},ignoreList:{writable:!0,value:n.ignoreList},offset:{writable:!0,value:n.offset||0}}),this.byStart[0]=i,this.byEnd[e.length]=i}addSourcemapLocation(e){this.sourcemapLocations.add(e)}append(e){if(typeof e!="string")throw new TypeError("outro content must be a string");return this.outro+=e,this}appendLeft(e,n){if(e=e+this.offset,typeof n!="string")throw new TypeError("inserted content must be a string");this._split(e);const i=this.byEnd[e];return i?i.appendLeft(n):this.intro+=n,this}appendRight(e,n){if(e=e+this.offset,typeof n!="string")throw new TypeError("inserted content must be a string");this._split(e);const i=this.byStart[e];return i?i.appendRight(n):this.outro+=n,this}clone(){const e=new je(this.original,{filename:this.filename,offset:this.offset});let n=this.firstChunk,i=e.firstChunk=e.lastSearchedChunk=n.clone();for(;n;){e.byStart[i.start]=i,e.byEnd[i.end]=i;const o=n.next,c=o&&o.clone();c&&(i.next=c,c.previous=i,i=c),n=o}return e.lastChunk=i,this.indentExclusionRanges&&(e.indentExclusionRanges=this.indentExclusionRanges.slice()),e.sourcemapLocations=new fe(this.sourcemapLocations),e.intro=this.intro,e.outro=this.outro,e}generateDecodedMap(e){e=e||{};const n=0,i=Object.keys(this.storedNames),o=new vn(e.hires),c=Ke(this.original);return this.intro&&o.advance(this.intro),this.firstChunk.eachNext(l=>{const p=c(l.start);l.intro.length&&o.advance(l.intro),l.edited?o.addEdit(n,l.content,p,l.storeName?i.indexOf(l.original):-1):o.addUneditedChunk(n,l,this.original,p,this.sourcemapLocations),l.outro.length&&o.advance(l.outro)}),{file:e.file?e.file.split(/[/\\]/).pop():void 0,sources:[e.source?kn(e.file||"",e.source):e.file||""],sourcesContent:e.includeContent?[this.original]:void 0,names:i,mappings:o.raw,x_google_ignoreList:this.ignoreList?[n]:void 0}}generateMap(e){return new mn(this.generateDecodedMap(e))}_ensureindentStr(){this.indentStr===void 0&&(this.indentStr=wn(this.original))}_getRawIndentString(){return this._ensureindentStr(),this.indentStr}getIndentString(){return this._ensureindentStr(),this.indentStr===null?" ":this.indentStr}indent(e,n){const i=/^[^\r\n]/gm;if(Cn(e)&&(n=e,e=void 0),e===void 0&&(this._ensureindentStr(),e=this.indentStr||" "),e==="")return this;n=n||{};const o={};n.exclude&&(typeof n.exclude[0]=="number"?[n.exclude]:n.exclude).forEach(d=>{for(let r=d[0];r<d[1];r+=1)o[r]=!0});let c=n.indentStart!==!1;const l=u(b=>c?`${e}${b}`:(c=!0,b),"replacer");this.intro=this.intro.replace(i,l);let p=0,g=this.firstChunk;for(;g;){const b=g.end;if(g.edited)o[p]||(g.content=g.content.replace(i,l),g.content.length&&(c=g.content[g.content.length-1]===`
12
- `));else for(p=g.start;p<b;){if(!o[p]){const d=this.original[p];d===`
13
- `?c=!0:d!=="\r"&&c&&(c=!1,p===g.start||(this._splitChunk(g,p),g=g.next),g.prependRight(e))}p+=1}p=g.end,g=g.next}return this.outro=this.outro.replace(i,l),this}insert(){throw new Error("magicString.insert(...) is deprecated. Use prependRight(...) or appendLeft(...)")}insertLeft(e,n){return J.insertLeft||(console.warn("magicString.insertLeft(...) is deprecated. Use magicString.appendLeft(...) instead"),J.insertLeft=!0),this.appendLeft(e,n)}insertRight(e,n){return J.insertRight||(console.warn("magicString.insertRight(...) is deprecated. Use magicString.prependRight(...) instead"),J.insertRight=!0),this.prependRight(e,n)}move(e,n,i){if(e=e+this.offset,n=n+this.offset,i=i+this.offset,i>=e&&i<=n)throw new Error("Cannot move a selection inside itself");this._split(e),this._split(n),this._split(i);const o=this.byStart[e],c=this.byEnd[n],l=o.previous,p=c.next,g=this.byStart[i];if(!g&&c===this.lastChunk)return this;const b=g?g.previous:this.lastChunk;return l&&(l.next=p),p&&(p.previous=l),b&&(b.next=o),g&&(g.previous=c),o.previous||(this.firstChunk=c.next),c.next||(this.lastChunk=o.previous,this.lastChunk.next=null),o.previous=b,c.next=g||null,b||(this.firstChunk=o),g||(this.lastChunk=c),this}overwrite(e,n,i,o){return o=o||{},this.update(e,n,i,{...o,overwrite:!o.contentOnly})}update(e,n,i,o){if(e=e+this.offset,n=n+this.offset,typeof i!="string")throw new TypeError("replacement content must be a string");if(this.original.length!==0){for(;e<0;)e+=this.original.length;for(;n<0;)n+=this.original.length}if(n>this.original.length)throw new Error("end is out of bounds");if(e===n)throw new Error("Cannot overwrite a zero-length range \u2013 use appendLeft or prependRight instead");this._split(e),this._split(n),o===!0&&(J.storeName||(console.warn("The final argument to magicString.overwrite(...) should be an options object. See https://github.com/rich-harris/magic-string"),J.storeName=!0),o={storeName:!0});const c=o!==void 0?o.storeName:!1,l=o!==void 0?o.overwrite:!1;if(c){const b=this.original.slice(e,n);Object.defineProperty(this.storedNames,b,{writable:!0,value:!0,enumerable:!0})}const p=this.byStart[e],g=this.byEnd[n];if(p){let b=p;for(;b!==g;){if(b.next!==this.byStart[b.end])throw new Error("Cannot overwrite across a split point");b=b.next,b.edit("",!1)}p.edit(i,c,!l)}else{const b=new ne(e,n,"").edit(i,c);g.next=b,b.previous=g}return this}prepend(e){if(typeof e!="string")throw new TypeError("outro content must be a string");return this.intro=e+this.intro,this}prependLeft(e,n){if(e=e+this.offset,typeof n!="string")throw new TypeError("inserted content must be a string");this._split(e);const i=this.byEnd[e];return i?i.prependLeft(n):this.intro=n+this.intro,this}prependRight(e,n){if(e=e+this.offset,typeof n!="string")throw new TypeError("inserted content must be a string");this._split(e);const i=this.byStart[e];return i?i.prependRight(n):this.outro=n+this.outro,this}remove(e,n){if(e=e+this.offset,n=n+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;n<0;)n+=this.original.length}if(e===n)return this;if(e<0||n>this.original.length)throw new Error("Character is out of bounds");if(e>n)throw new Error("end must be greater than start");this._split(e),this._split(n);let i=this.byStart[e];for(;i;)i.intro="",i.outro="",i.edit(""),i=n>i.end?this.byStart[i.end]:null;return this}reset(e,n){if(e=e+this.offset,n=n+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;n<0;)n+=this.original.length}if(e===n)return this;if(e<0||n>this.original.length)throw new Error("Character is out of bounds");if(e>n)throw new Error("end must be greater than start");this._split(e),this._split(n);let i=this.byStart[e];for(;i;)i.reset(),i=n>i.end?this.byStart[i.end]:null;return this}lastChar(){if(this.outro.length)return this.outro[this.outro.length-1];let e=this.lastChunk;do{if(e.outro.length)return e.outro[e.outro.length-1];if(e.content.length)return e.content[e.content.length-1];if(e.intro.length)return e.intro[e.intro.length-1]}while(e=e.previous);return this.intro.length?this.intro[this.intro.length-1]:""}lastLine(){let e=this.outro.lastIndexOf(Z);if(e!==-1)return this.outro.substr(e+1);let n=this.outro,i=this.lastChunk;do{if(i.outro.length>0){if(e=i.outro.lastIndexOf(Z),e!==-1)return i.outro.substr(e+1)+n;n=i.outro+n}if(i.content.length>0){if(e=i.content.lastIndexOf(Z),e!==-1)return i.content.substr(e+1)+n;n=i.content+n}if(i.intro.length>0){if(e=i.intro.lastIndexOf(Z),e!==-1)return i.intro.substr(e+1)+n;n=i.intro+n}}while(i=i.previous);return e=this.intro.lastIndexOf(Z),e!==-1?this.intro.substr(e+1)+n:this.intro+n}slice(e=0,n=this.original.length-this.offset){if(e=e+this.offset,n=n+this.offset,this.original.length!==0){for(;e<0;)e+=this.original.length;for(;n<0;)n+=this.original.length}let i="",o=this.firstChunk;for(;o&&(o.start>e||o.end<=e);){if(o.start<n&&o.end>=n)return i;o=o.next}if(o&&o.edited&&o.start!==e)throw new Error(`Cannot use replaced character ${e} as slice start anchor.`);const c=o;for(;o;){o.intro&&(c!==o||o.start===e)&&(i+=o.intro);const l=o.start<n&&o.end>=n;if(l&&o.edited&&o.end!==n)throw new Error(`Cannot use replaced character ${n} as slice end anchor.`);const p=c===o?e-o.start:0,g=l?o.content.length+n-o.end:o.content.length;if(i+=o.content.slice(p,g),o.outro&&(!l||o.end===n)&&(i+=o.outro),l)break;o=o.next}return i}snip(e,n){const i=this.clone();return i.remove(0,e),i.remove(n,i.original.length),i}_split(e){if(this.byStart[e]||this.byEnd[e])return;let n=this.lastSearchedChunk,i=n;const o=e>n.end;for(;n;){if(n.contains(e))return this._splitChunk(n,e);if(n=o?this.byStart[n.end]:this.byEnd[n.start],n===i)return;i=n}}_splitChunk(e,n){if(e.edited&&e.content.length){const o=Ke(this.original)(n);throw new Error(`Cannot split a chunk that has already been edited (${o.line}:${o.column} \u2013 "${e.original}")`)}const i=e.split(n);return this.byEnd[n]=e,this.byStart[n]=i,this.byEnd[i.end]=i,e===this.lastChunk&&(this.lastChunk=i),this.lastSearchedChunk=e,!0}toString(){let e=this.intro,n=this.firstChunk;for(;n;)e+=n.toString(),n=n.next;return e+this.outro}isEmpty(){let e=this.firstChunk;do if(e.intro.length&&e.intro.trim()||e.content.length&&e.content.trim()||e.outro.length&&e.outro.trim())return!1;while(e=e.next);return!0}length(){let e=this.firstChunk,n=0;do n+=e.intro.length+e.content.length+e.outro.length;while(e=e.next);return n}trimLines(){return this.trim("[\\r\\n]")}trim(e){return this.trimStart(e).trimEnd(e)}trimEndAborted(e){const n=new RegExp((e||"\\s")+"+$");if(this.outro=this.outro.replace(n,""),this.outro.length)return!0;let i=this.lastChunk;do{const o=i.end,c=i.trimEnd(n);if(i.end!==o&&(this.lastChunk===i&&(this.lastChunk=i.next),this.byEnd[i.end]=i,this.byStart[i.next.start]=i.next,this.byEnd[i.next.end]=i.next),c)return!0;i=i.previous}while(i);return!1}trimEnd(e){return this.trimEndAborted(e),this}trimStartAborted(e){const n=new RegExp("^"+(e||"\\s")+"+");if(this.intro=this.intro.replace(n,""),this.intro.length)return!0;let i=this.firstChunk;do{const o=i.end,c=i.trimStart(n);if(i.end!==o&&(i===this.lastChunk&&(this.lastChunk=i.next),this.byEnd[i.end]=i,this.byStart[i.next.start]=i.next,this.byEnd[i.next.end]=i.next),c)return!0;i=i.next}while(i);return!1}trimStart(e){return this.trimStartAborted(e),this}hasChanged(){return this.original!==this.toString()}_replaceRegexp(e,n){function i(c,l){return typeof n=="string"?n.replace(/\$(\$|&|\d+)/g,(p,g)=>g==="$"?"$":g==="&"?c[0]:+g<c.length?c[+g]:`$${g}`):n(...c,c.index,l,c.groups)}u(i,"getReplacement");function o(c,l){let p;const g=[];for(;p=c.exec(l);)g.push(p);return g}if(u(o,"matchAll"),e.global)o(e,this.original).forEach(l=>{if(l.index!=null){const p=i(l,this.original);p!==l[0]&&this.overwrite(l.index,l.index+l[0].length,p)}});else{const c=this.original.match(e);if(c&&c.index!=null){const l=i(c,this.original);l!==c[0]&&this.overwrite(c.index,c.index+c[0].length,l)}}return this}_replaceString(e,n){const{original:i}=this,o=i.indexOf(e);return o!==-1&&this.overwrite(o,o+e.length,n),this}replace(e,n){return typeof e=="string"?this._replaceString(e,n):this._replaceRegexp(e,n)}_replaceAllString(e,n){const{original:i}=this,o=e.length;for(let c=i.indexOf(e);c!==-1;c=i.indexOf(e,c+o))i.slice(c,c+o)!==n&&this.overwrite(c,c+o,n);return this}replaceAll(e,n){if(typeof e=="string")return this._replaceAllString(e,n);if(!e.global)throw new TypeError("MagicString.prototype.replaceAll called with a non-global RegExp argument");return this._replaceRegexp(e,n)}}const Oe="2",xn=(s=>{const e="default";return s[e]&&typeof s[e]=="object"&&"__esModule"in s[e]?s[e]:s}).toString(),_n=`.then(${xn})`,ae=u((s,e,n)=>{if(n){if(!e.includes("import("))return}else if(!e.includes("import"))return;const o=oe(e,s)[0].filter(g=>g.d>-1);if(o.length===0)return;const c=new je(e);for(const g of o)c.appendRight(g.se,_n);const l=c.toString(),p=c.generateMap({source:s,includeContent:!1,hires:"boundary"});return{code:l,map:p}},"transformDynamicImport"),Xe=u(s=>{try{const e=U.readFileSync(s,"utf8");return JSON.parse(e)}catch{}},"readJsonFile"),ce=u(()=>{},"noop"),Ae=u(()=>Math.floor(Date.now()/1e8),"getTime"),En=/^(\d+)-[^-]+$/,Ye=7,Ln=64;class On extends Map{static{u(this,"FileCache")}cacheDirectory;oldCacheDirectory;initialized=!1;constructor(e=sn,n=z.join(rn.tmpdir(),"tsx")){super(),this.cacheDirectory=e,this.oldCacheDirectory=n}initialize(){this.initialized||(U.mkdirSync(this.cacheDirectory,{recursive:!0}),this.initialized=!0,setImmediate(()=>{this.expireDiskCache().catch(ce),this.removeOldCacheDirectory().catch(ce)}).unref())}get(e){const n=super.get(e);if(n)return n;const i=Ae();for(let o=0;o<=Ye;o+=1){const c=Xe(z.join(this.cacheDirectory,`${i-o}-${e}`));if(c)return super.set(e,c),c}}set(e,n){if(super.set(e,n),n){const o=`${Ae()}-${e}`;this.initialize(),U.promises.writeFile(z.join(this.cacheDirectory,o),JSON.stringify(n)).catch(ce)}return this}async expireDiskCache(){this.initialize();const e=Ae(),n=await U.promises.opendir(this.cacheDirectory),i=[];let o=0;for await(const c of n){const l=En.exec(c.name);if(l){const p=Number(l[1]);Number.isSafeInteger(p)&&e-p>Ye&&i.push(U.promises.unlink(z.join(this.cacheDirectory,c.name)).catch(ce))}o+=1,o===Ln&&(await Promise.all(i),i.length=0,o=0)}await Promise.all(i)}async removeOldCacheDirectory(){try{await U.promises.access(this.oldCacheDirectory).then(()=>!0)&&("rm"in U.promises?await U.promises.rm(this.oldCacheDirectory,{recursive:!0,force:!0}):await U.promises.rmdir(this.oldCacheDirectory,{recursive:!0}))}catch{}}}var q=process.env.TSX_DISABLE_CACHE?new Map:new On;const Qe=44,An=59,Ze="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Ve=new Uint8Array(64),et=new Uint8Array(128);for(let s=0;s<Ze.length;s++){const e=Ze.charCodeAt(s);Ve[s]=e,et[e]=s}const Re=typeof TextDecoder<"u"?new TextDecoder:typeof Buffer<"u"?{decode(s){return Buffer.from(s.buffer,s.byteOffset,s.byteLength).toString()}}:{decode(s){let e="";for(let n=0;n<s.length;n++)e+=String.fromCharCode(s[n]);return e}};function Rn(s){const e=new Int32Array(5),n=[];let i=0;do{const o=In(s,i),c=[];let l=!0,p=0;e[0]=0;for(let g=i;g<o;g++){let b;g=V(s,g,e,0);const d=e[0];d<p&&(l=!1),p=d,tt(s,g,o)?(g=V(s,g,e,1),g=V(s,g,e,2),g=V(s,g,e,3),tt(s,g,o)?(g=V(s,g,e,4),b=[d,e[1],e[2],e[3],e[4]]):b=[d,e[1],e[2],e[3]]):b=[d],c.push(b)}l||Nn(c),n.push(c),i=o+1}while(i<=s.length);return n}u(Rn,"decode");function In(s,e){const n=s.indexOf(";",e);return n===-1?s.length:n}u(In,"indexOf");function V(s,e,n,i){let o=0,c=0,l=0;do{const g=s.charCodeAt(e++);l=et[g],o|=(l&31)<<c,c+=5}while(l&32);const p=o&1;return o>>>=1,p&&(o=-2147483648|-o),n[i]+=o,e}u(V,"decodeInteger");function tt(s,e,n){return e>=n?!1:s.charCodeAt(e)!==Qe}u(tt,"hasMoreVlq");function Nn(s){s.sort($n)}u(Nn,"sort");function $n(s,e){return s[0]-e[0]}u($n,"sortComparator$1");function Mn(s){const e=new Int32Array(5),n=1024*16,i=n-36,o=new Uint8Array(n),c=o.subarray(0,i);let l=0,p="";for(let g=0;g<s.length;g++){const b=s[g];if(g>0&&(l===n&&(p+=Re.decode(o),l=0),o[l++]=An),b.length!==0){e[0]=0;for(let d=0;d<b.length;d++){const r=b[d];l>i&&(p+=Re.decode(c),o.copyWithin(0,i,l),l-=i),d>0&&(o[l++]=Qe),l=ee(o,l,e,r,0),r.length!==1&&(l=ee(o,l,e,r,1),l=ee(o,l,e,r,2),l=ee(o,l,e,r,3),r.length!==4&&(l=ee(o,l,e,r,4)))}}}return p+Re.decode(o.subarray(0,l))}u(Mn,"encode");function ee(s,e,n,i,o){const c=i[o];let l=c-n[o];n[o]=c,l=l<0?-l<<1|1:l<<1;do{let p=l&31;l>>>=5,l>0&&(p|=32),s[e++]=Ve[p]}while(l>0);return e}u(ee,"encodeInteger");const jn=/^[\w+.-]+:\/\//,Un=/^([\w+.-]+:)\/\/([^@/#?]*@)?([^:/#?]*)(:\d+)?(\/[^#?]*)?(\?[^#]*)?(#.*)?/,Tn=/^file:(?:\/\/((?![a-z]:)[^/#?]*)?)?(\/?[^#?]*)(\?[^#]*)?(#.*)?/i;function Dn(s){return jn.test(s)}u(Dn,"isAbsoluteUrl");function Bn(s){return s.startsWith("//")}u(Bn,"isSchemeRelativeUrl");function nt(s){return s.startsWith("/")}u(nt,"isAbsolutePath");function Fn(s){return s.startsWith("file:")}u(Fn,"isFileUrl");function rt(s){return/^[.?#]/.test(s)}u(rt,"isRelative");function le(s){const e=Un.exec(s);return it(e[1],e[2]||"",e[3],e[4]||"",e[5]||"/",e[6]||"",e[7]||"")}u(le,"parseAbsoluteUrl");function Pn(s){const e=Tn.exec(s),n=e[2];return it("file:","",e[1]||"","",nt(n)?n:"/"+n,e[3]||"",e[4]||"")}u(Pn,"parseFileUrl");function it(s,e,n,i,o,c,l){return{scheme:s,user:e,host:n,port:i,path:o,query:c,hash:l,type:7}}u(it,"makeUrl");function st(s){if(Bn(s)){const n=le("http:"+s);return n.scheme="",n.type=6,n}if(nt(s)){const n=le("http://foo.com"+s);return n.scheme="",n.host="",n.type=5,n}if(Fn(s))return Pn(s);if(Dn(s))return le(s);const e=le("http://foo.com/"+s);return e.scheme="",e.host="",e.type=s?s.startsWith("?")?3:s.startsWith("#")?2:4:1,e}u(st,"parseUrl");function Wn(s){if(s.endsWith("/.."))return s;const e=s.lastIndexOf("/");return s.slice(0,e+1)}u(Wn,"stripPathFilename");function zn(s,e){ot(e,e.type),s.path==="/"?s.path=e.path:s.path=Wn(e.path)+s.path}u(zn,"mergePaths");function ot(s,e){const n=e<=4,i=s.path.split("/");let o=1,c=0,l=!1;for(let g=1;g<i.length;g++){const b=i[g];if(!b){l=!0;continue}if(l=!1,b!=="."){if(b===".."){c?(l=!0,c--,o--):n&&(i[o++]=b);continue}i[o++]=b,c++}}let p="";for(let g=1;g<o;g++)p+="/"+i[g];(!p||l&&!p.endsWith("/.."))&&(p+="/"),s.path=p}u(ot,"normalizePath");function Jn(s,e){if(!s&&!e)return"";const n=st(s);let i=n.type;if(e&&i!==7){const c=st(e),l=c.type;switch(i){case 1:n.hash=c.hash;case 2:n.query=c.query;case 3:case 4:zn(n,c);case 5:n.user=c.user,n.host=c.host,n.port=c.port;case 6:n.scheme=c.scheme}l>i&&(i=l)}ot(n,i);const o=n.query+n.hash;switch(i){case 2:case 3:return o;case 4:{const c=n.path.slice(1);return c?rt(e||s)&&!rt(c)?"./"+c+o:c+o:o||"."}case 5:return n.path+o;default:return n.scheme+"//"+n.user+n.host+n.port+n.path+o}}u(Jn,"resolve$1");function at(s,e){return e&&!e.endsWith("/")&&(e+="/"),Jn(s,e)}u(at,"resolve");function qn(s){if(!s)return"";const e=s.lastIndexOf("/");return s.slice(0,e+1)}u(qn,"stripFilename");const B=0;function Hn(s,e){const n=ct(s,0);if(n===s.length)return s;e||(s=s.slice());for(let i=n;i<s.length;i=ct(s,i+1))s[i]=Kn(s[i],e);return s}u(Hn,"maybeSort");function ct(s,e){for(let n=e;n<s.length;n++)if(!Gn(s[n]))return n;return s.length}u(ct,"nextUnsortedSegmentLine");function Gn(s){for(let e=1;e<s.length;e++)if(s[e][B]<s[e-1][B])return!1;return!0}u(Gn,"isSorted");function Kn(s,e){return e||(s=s.slice()),s.sort(Xn)}u(Kn,"sortSegments");function Xn(s,e){return s[B]-e[B]}u(Xn,"sortComparator");let ue=!1;function Yn(s,e,n,i){for(;n<=i;){const o=n+(i-n>>1),c=s[o][B]-e;if(c===0)return ue=!0,o;c<0?n=o+1:i=o-1}return ue=!1,n-1}u(Yn,"binarySearch");function Qn(s,e,n){for(let i=n-1;i>=0&&s[i][B]===e;n=i--);return n}u(Qn,"lowerBound");function Zn(){return{lastKey:-1,lastNeedle:-1,lastIndex:-1}}u(Zn,"memoizedState");function Vn(s,e,n,i){const{lastKey:o,lastNeedle:c,lastIndex:l}=n;let p=0,g=s.length-1;if(i===o){if(e===c)return ue=l!==-1&&s[l][B]===e,l;e>=c?p=l===-1?0:l:g=l}return n.lastKey=i,n.lastNeedle=e,n.lastIndex=Yn(s,e,p,g)}u(Vn,"memoizedBinarySearch");class lt{static{u(this,"TraceMap")}constructor(e,n){const i=typeof e=="string";if(!i&&e._decodedMemo)return e;const o=i?JSON.parse(e):e,{version:c,file:l,names:p,sourceRoot:g,sources:b,sourcesContent:d}=o;this.version=c,this.file=l,this.names=p||[],this.sourceRoot=g,this.sources=b,this.sourcesContent=d,this.ignoreList=o.ignoreList||o.x_google_ignoreList||void 0;const r=at(g||"",qn(n));this.resolvedSources=b.map(A=>at(A||"",r));const{mappings:S}=o;typeof S=="string"?(this._encoded=S,this._decoded=void 0):(this._encoded=void 0,this._decoded=Hn(S,i)),this._decodedMemo=Zn(),this._bySources=void 0,this._bySourceMemos=void 0}}function Kr(s){return s}u(Kr,"cast$2");function ut(s){var e;return(e=s)._decoded||(e._decoded=Rn(s._encoded))}u(ut,"decodedMappings");function er(s,e,n){const i=ut(s);if(e>=i.length)return null;const o=i[e],c=tr(o,s._decodedMemo,e,n);return c===-1?null:o[c]}u(er,"traceSegment");function tr(s,e,n,i,o){let c=Vn(s,i,e,n);return ue&&(c=Qn(s,i,c)),c===-1||c===s.length?-1:c}u(tr,"traceSegmentInternal");class Ie{static{u(this,"SetArray")}constructor(){this._indexes={__proto__:null},this.array=[]}}function Xr(s){return s}u(Xr,"cast$1");function ft(s,e){return s._indexes[e]}u(ft,"get");function te(s,e){const n=ft(s,e);if(n!==void 0)return n;const{array:i,_indexes:o}=s,c=i.push(e);return o[e]=c-1}u(te,"put");function nr(s,e){const n=ft(s,e);if(n===void 0)return;const{array:i,_indexes:o}=s;for(let c=n+1;c<i.length;c++){const l=i[c];i[c-1]=l,o[l]--}o[e]=void 0,i.pop()}u(nr,"remove");const rr=0,ir=1,sr=2,or=3,ar=4,ht=-1;class cr{static{u(this,"GenMapping")}constructor({file:e,sourceRoot:n}={}){this._names=new Ie,this._sources=new Ie,this._sourcesContent=[],this._mappings=[],this.file=e,this.sourceRoot=n,this._ignoreList=new Ie}}function Yr(s){return s}u(Yr,"cast");const lr=u((s,e,n,i,o,c,l,p)=>dr(!0,s,e,n,i,o,c,l),"maybeAddSegment");function ur(s,e,n){const{_sources:i,_sourcesContent:o}=s,c=te(i,e);o[c]=n}u(ur,"setSourceContent");function fr(s,e,n=!0){const{_sources:i,_sourcesContent:o,_ignoreList:c}=s,l=te(i,e);l===o.length&&(o[l]=null),n?te(c,l):nr(c,l)}u(fr,"setIgnore");function dt(s){const{_mappings:e,_sources:n,_sourcesContent:i,_names:o,_ignoreList:c}=s;return pr(e),{version:3,file:s.file||void 0,names:o.array,sourceRoot:s.sourceRoot||void 0,sources:n.array,sourcesContent:i,mappings:e,ignoreList:c.array}}u(dt,"toDecodedMap");function hr(s){const e=dt(s);return Object.assign(Object.assign({},e),{mappings:Mn(e.mappings)})}u(hr,"toEncodedMap");function dr(s,e,n,i,o,c,l,p,g){const{_mappings:b,_sources:d,_sourcesContent:r,_names:S}=e,A=gr(b,n),E=br(A,i);if(!o)return mr(A,E)?void 0:gt(A,E,[i]);const I=te(d,o),M=p?te(S,p):ht;if(I===r.length&&(r[I]=null),!wr(A,E,I,c,l,M))return gt(A,E,p?[i,I,c,l,M]:[i,I,c,l])}u(dr,"addSegmentInternal");function gr(s,e){for(let n=s.length;n<=e;n++)s[n]=[];return s[e]}u(gr,"getLine");function br(s,e){let n=s.length;for(let i=n-1;i>=0;n=i--){const o=s[i];if(e>=o[rr])break}return n}u(br,"getColumnIndex");function gt(s,e,n){for(let i=s.length;i>e;i--)s[i]=s[i-1];s[e]=n}u(gt,"insert");function pr(s){const{length:e}=s;let n=e;for(let i=n-1;i>=0&&!(s[i].length>0);n=i,i--);n<e&&(s.length=n)}u(pr,"removeEmptyFinalLines");function mr(s,e){return e===0?!0:s[e-1].length===1}u(mr,"skipSourceless");function wr(s,e,n,i,o,c){if(e===0)return!1;const l=s[e-1];return l.length===1?!1:n===l[ir]&&i===l[sr]&&o===l[or]&&c===(l.length===5?l[ar]:ht)}u(wr,"skipSource");const bt=pt("",-1,-1,"",null,!1),kr=[];function pt(s,e,n,i,o,c){return{source:s,line:e,column:n,name:i,content:o,ignore:c}}u(pt,"SegmentObject");function mt(s,e,n,i,o){return{map:s,sources:e,source:n,content:i,ignore:o}}u(mt,"Source");function wt(s,e){return mt(s,e,"",null,!1)}u(wt,"MapSource");function yr(s,e,n){return mt(null,kr,s,e,n)}u(yr,"OriginalSource");function Cr(s){const e=new cr({file:s.map.file}),{sources:n,map:i}=s,o=i.names,c=ut(i);for(let l=0;l<c.length;l++){const p=c[l];for(let g=0;g<p.length;g++){const b=p[g],d=b[0];let r=bt;if(b.length!==1){const H=n[b[1]];if(r=kt(H,b[2],b[3],b.length===5?o[b[4]]:""),r==null)continue}const{column:S,line:A,name:E,content:I,source:M,ignore:F}=r;lr(e,l,d,M,A,S,E),M&&I!=null&&ur(e,M,I),F&&fr(e,M,!0)}}return e}u(Cr,"traceMappings");function kt(s,e,n,i){if(!s.map)return pt(s.source,e,n,i,s.content,s.ignore);const o=er(s.map,e,n);return o==null?null:o.length===1?bt:kt(s.sources[o[1]],o[2],o[3],o.length===5?s.map.names[o[4]]:i)}u(kt,"originalPositionFor");function Sr(s){return Array.isArray(s)?s:[s]}u(Sr,"asArray");function vr(s,e){const n=Sr(s).map(c=>new lt(c,"")),i=n.pop();for(let c=0;c<n.length;c++)if(n[c].sources.length>1)throw new Error(`Transformation map ${c} must have exactly one source file.
14
- Did you specify these with the most recent transformation maps first?`);let o=yt(i,e,"",0);for(let c=n.length-1;c>=0;c--)o=wt(n[c],[o]);return o}u(vr,"buildSourceMapTree");function yt(s,e,n,i){const{resolvedSources:o,sourcesContent:c,ignoreList:l}=s,p=i+1,g=o.map((b,d)=>{const r={importer:n,depth:p,source:b||"",content:void 0,ignore:void 0},S=e(r.source,r),{source:A,content:E,ignore:I}=r;if(S)return yt(new lt(S,A),e,A,p);const M=E!==void 0?E:c?c[d]:null,F=I!==void 0?I:l?l.includes(d):!1;return yr(A,M,F)});return wt(s,g)}u(yt,"build");class xr{static{u(this,"SourceMap")}constructor(e,n){const i=n.decodedMappings?dt(e):hr(e);this.version=i.version,this.file=i.file,this.mappings=i.mappings,this.names=i.names,this.ignoreList=i.ignoreList,this.sourceRoot=i.sourceRoot,this.sources=i.sources,n.excludeContent||(this.sourcesContent=i.sourcesContent)}toString(){return JSON.stringify(this)}}function Ct(s,e,n){const i={excludeContent:!!n,decodedMappings:!1},o=vr(s,e);return new xr(Cr(o),i)}u(Ct,"remapping");const St=u((s,e,n)=>{const i=[],o={code:e};for(const c of n){const l=c(s,o.code);l&&(Object.assign(o,l),i.unshift(l.map))}return{...o,map:Ct(i,()=>null)}},"applyTransformersSync"),_r=u(async(s,e,n)=>{const i=[],o={code:e};for(const c of n){const l=await c(s,o.code);l&&(Object.assign(o,l),i.unshift(l.map))}return{...o,map:Ct(i,()=>null)}},"applyTransformers"),Er=u(s=>{const e=[];let n=!1,i=!0;for(let o=0;o<s.length;o+=1){let c=s[o];if(c==="\\"&&n){if(o+1===s.length)return e;o+=1,c=s[o]}else if(c===" "&&!n){i=!0;continue}else if(c==='"'){n=!n;continue}i?(e.push(c),i=!1):e[e.length-1]+=c}return e},"tokenizeNodeOptionsEnv"),vt=u((s,e,n)=>{for(let i=0;i<e.length;i+=1){const o=e[i];if(o.length<=1||o[0]!=="-")continue;const c=o[1]==="-"?o.indexOf("="):-1;let l=c===-1?o:o.slice(0,c);l.includes("_",2)&&(l=l.slice(0,2)+l.slice(2).replaceAll("_","-"));for(const p of s.forms){const[g,b]=p;if(l!==g||(b===3||b===5)&&c===-1)continue;const d=b===4||b===5,r=b>=3?0:b;let S=d?p[2]:"";r===0&&!d&&(c===-1?(i+=1,S=e[i]??"",S[0]==="\\"&&S[1]==="-"&&(S=S.slice(1))):S=o.slice(c+1)),n=s.fold(S,n,r);break}}return n},"scanSource"),Lr=u(s=>{let e=s.init();const n=process.env.NODE_OPTIONS;return n&&(e=vt(s,Er(n),e)),e=vt(s,process.execArgv,e),e},"getOptionValue"),Or=u((s,e,n)=>n===1,"setByEffect"),Ar=u((s,e)=>({forms:e,init:u(()=>s,"init"),fold:Or}),"booleanFlag"),Rr=Ar(!1,[["--inspect-brk-node",1],["--inspect-brk",1],["--inspect-wait",1],["--inspect",1],["--no-inspect",2]]),Ir=Object.freeze({target:`node${process.versions.node}`,loader:"default"}),Nr=Lr(Rr),Ne={...Ir,sourcemap:!0,sourcesContent:!!process.env.NODE_V8_COVERAGE||Nr,minifyWhitespace:!0,keepNames:!0},$e=u(s=>{const e=s.sourcefile;if(e){const n=z.extname(e.split("?")[0]);n?n===".cts"||n===".mts"?s.sourcefile=`${e.slice(0,-3)}ts`:n===".mjs"&&(s.sourcefile=`${e.slice(0,-3)}js`):s.sourcefile+=".js"}return n=>(n.map&&(s.sourcefile!==e&&(n.map=n.map.replace(JSON.stringify(s.sourcefile),JSON.stringify(e))),n.map=JSON.parse(n.map)),n)},"patchOptions"),Me=u(s=>{throw s.name="TransformError",delete s.errors,delete s.warnings,s},"formatEsbuildError"),$r=u((s,e)=>({...tn(nn)?{dirname:z.dirname(s),filename:s}:{},url:e}),"getImportMeta"),Mr=u((s,e)=>{if(!s.includes("import"))return!1;try{return oe(s,e)[0].some(n=>n.d===-2)}catch{return!0}},"hasImportMeta"),jr=u((s,e,n)=>{let i,o,c;if(e.startsWith("file://")){i=e;const r=new URL(e);o=Qt(r)}else[o,c]=e.split("?"),i=Zt(o)+(c?`?${c}`:"");const{cjsBanner:l,...p}=n??{},g={...Ne,format:"cjs",sourcefile:o,banner:`__filename=${JSON.stringify(o)};(()=>{${l??""}`,footer:"})()",platform:"node",...p};g.format==="cjs"&&!o.endsWith(".cjs")&&!o.endsWith(".cts")&&Mr(s,o)&&(g.define={...g.define,"import.meta":JSON.stringify($r(o,i))});const b=ve([s,i,JSON.stringify(g),Se,Oe].join("-"));let d=q.get(b);return d||(d=St(e,s,[(r,S)=>{const A=$e(g);let E;try{E=Fe(S,g)}catch(I){throw Me(I)}return A(E)},(r,S)=>ae(r,S,!0)]),q.set(b,d)),d},"transformSync"),Ur=u(async(s,e,n)=>{const i={...Ne,format:"esm",sourcefile:e,...n},o=ve([s,JSON.stringify(i),Se,Oe].join("-"));let c=q.get(o);return c||(c=await _r(e,s,[async(l,p)=>{const g=$e(i);let b;try{b=await Vt(p,i)}catch(d){throw Me(d)}return g(b)},(l,p)=>ae(l,p,!0)]),q.set(o,c)),c},"transform"),Tr=u((s,e,n)=>{const i={...Ne,format:"esm",sourcefile:e,...n},o=ve([s,JSON.stringify(i),Se,Oe].join("-"));let c=q.get(o);return c||(c=St(e,s,[(l,p)=>{const g=$e(i);let b;try{b=Fe(p,i)}catch(d){throw Me(d)}return g(b)},(l,p)=>ae(l,p,!0)]),q.set(o,c)),c},"transformEsmSync");export{jr as a,ae as b,Tr as c,ln as i,oe as p,Xe as r,Ur as t};
@@ -1 +0,0 @@
1
- var u=Object.defineProperty;var g=(s,n)=>u(s,"name",{value:n,configurable:!0});let t=!0;const l=typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{};let i=0;if(l.process&&l.process.env&&l.process.stdout){const{FORCE_COLOR:s,NODE_DISABLE_COLORS:n,NO_COLOR:r,TERM:o,COLORTERM:c}=l.process.env;n||r||s==="0"?t=!1:s==="1"||s==="2"||s==="3"?t=!0:o==="dumb"?t=!1:"CI"in l.process.env&&["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE","DRONE"].some(a=>a in l.process.env)?t=!0:t=process.stdout.isTTY,t&&(process.platform==="win32"||c&&(c==="truecolor"||c==="24bit")?i=3:o&&(o.endsWith("-256color")||o.endsWith("256"))?i=2:i=1)}let f={enabled:t,supportLevel:i};function e(s,n,r=1){const o=`\x1B[${s}m`,c=`\x1B[${n}m`,a=new RegExp(`\\x1b\\[${n}m`,"g");return p=>f.enabled&&f.supportLevel>=r?o+(""+p).replace(a,o)+c:""+p}g(e,"kolorist");const b=e(30,39),d=e(33,39),O=e(90,39),C=e(92,39),R=e(95,39),I=e(96,39),L=e(44,49),E=e(100,49),T=e(103,49);export{b as a,T as b,L as c,E as d,R as e,C as f,O as g,I as l,f as o,d as y};