agent-log-viewer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +124 -0
- package/bin/cli.mjs +479 -0
- package/bin/tailscale.mjs +193 -0
- package/dist/standalone/.next/BUILD_ID +1 -0
- package/dist/standalone/.next/app-path-routes-manifest.json +14 -0
- package/dist/standalone/.next/build-manifest.json +20 -0
- package/dist/standalone/.next/package.json +1 -0
- package/dist/standalone/.next/prerender-manifest.json +114 -0
- package/dist/standalone/.next/react-loadable-manifest.json +8 -0
- package/dist/standalone/.next/required-server-files.json +342 -0
- package/dist/standalone/.next/routes-manifest.json +117 -0
- package/dist/standalone/.next/server/app/_global-error/page.js +32 -0
- package/dist/standalone/.next/server/app/_global-error/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/_global-error.html +1 -0
- package/dist/standalone/.next/server/app/_global-error.meta +16 -0
- package/dist/standalone/.next/server/app/_global-error.rsc +14 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +14 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -0
- package/dist/standalone/.next/server/app/_not-found/page.js +2 -0
- package/dist/standalone/.next/server/app/_not-found/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/_not-found.html +1 -0
- package/dist/standalone/.next/server/app/_not-found.meta +16 -0
- package/dist/standalone/.next/server/app/_not-found.rsc +16 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +16 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -0
- package/dist/standalone/.next/server/app/api/access/route.js +1 -0
- package/dist/standalone/.next/server/app/api/access/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/access/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/files/route.js +1 -0
- package/dist/standalone/.next/server/app/api/files/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/files/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/log/route.js +1 -0
- package/dist/standalone/.next/server/app/api/log/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/log/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/proc/route.js +1 -0
- package/dist/standalone/.next/server/app/api/proc/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/proc/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route.js +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route.js +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/tmux/route.js +2 -0
- package/dist/standalone/.next/server/app/api/tmux/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/tmux/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route.js +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/favicon.ico/route.js +1 -0
- package/dist/standalone/.next/server/app/favicon.ico/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/favicon.ico.body +0 -0
- package/dist/standalone/.next/server/app/favicon.ico.meta +1 -0
- package/dist/standalone/.next/server/app/index.html +1 -0
- package/dist/standalone/.next/server/app/index.meta +14 -0
- package/dist/standalone/.next/server/app/index.rsc +15 -0
- package/dist/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/index.segments/_full.segment.rsc +15 -0
- package/dist/standalone/.next/server/app/index.segments/_head.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/index.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/index.segments/_tree.segment.rsc +2 -0
- package/dist/standalone/.next/server/app/page.js +3 -0
- package/dist/standalone/.next/server/app/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app-paths-manifest.json +14 -0
- package/dist/standalone/.next/server/chunks/319.js +45 -0
- package/dist/standalone/.next/server/chunks/344.js +1 -0
- package/dist/standalone/.next/server/chunks/445.js +18 -0
- package/dist/standalone/.next/server/chunks/459.js +1 -0
- package/dist/standalone/.next/server/chunks/813.js +1 -0
- package/dist/standalone/.next/server/chunks/918.js +1 -0
- package/dist/standalone/.next/server/chunks/998.js +1 -0
- package/dist/standalone/.next/server/functions-config-manifest.json +22 -0
- package/dist/standalone/.next/server/middleware-build-manifest.js +1 -0
- package/dist/standalone/.next/server/middleware-manifest.json +6 -0
- package/dist/standalone/.next/server/middleware-react-loadable-manifest.js +1 -0
- package/dist/standalone/.next/server/middleware.js +18 -0
- package/dist/standalone/.next/server/next-font-manifest.js +1 -0
- package/dist/standalone/.next/server/next-font-manifest.json +1 -0
- package/dist/standalone/.next/server/pages/404.html +1 -0
- package/dist/standalone/.next/server/pages/500.html +1 -0
- package/dist/standalone/.next/server/pages-manifest.json +4 -0
- package/dist/standalone/.next/server/prefetch-hints.json +1 -0
- package/dist/standalone/.next/server/server-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/server-reference-manifest.json +1 -0
- package/dist/standalone/.next/server/webpack-runtime.js +1 -0
- package/dist/standalone/.next/static/OlOoOx99h_Y7pD3fJA_ji/_buildManifest.js +1 -0
- package/dist/standalone/.next/static/OlOoOx99h_Y7pD3fJA_ji/_ssgManifest.js +1 -0
- package/dist/standalone/.next/static/chunks/206-33d2c732d1a7b380.js +1 -0
- package/dist/standalone/.next/static/chunks/4bd1b696-215e5051988c3dde.js +1 -0
- package/dist/standalone/.next/static/chunks/768.73ba102ef0b9391b.js +1 -0
- package/dist/standalone/.next/static/chunks/794-0fc36bf1952fbc29.js +32 -0
- package/dist/standalone/.next/static/chunks/app/_global-error/page-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/_not-found/page-51e53d11a3244389.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/access/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/files/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/log/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/proc/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/spawn/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/timeline/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/tmux/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/transcribe/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/layout-fdd4e6d70b3c92cb.js +1 -0
- package/dist/standalone/.next/static/chunks/app/page-6fed5a912688e46f.js +2 -0
- package/dist/standalone/.next/static/chunks/framework-93cda6578f6c76ec.js +1 -0
- package/dist/standalone/.next/static/chunks/main-3cec32f88450e0e3.js +5 -0
- package/dist/standalone/.next/static/chunks/main-app-518cea4217042452.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/app-error-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/forbidden-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/global-error-d958576418125130.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/not-found-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/unauthorized-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- package/dist/standalone/.next/static/chunks/webpack-7dc14fd5ff1227ce.js +1 -0
- package/dist/standalone/.next/static/css/6295a760ad8588f2.css +1 -0
- package/dist/standalone/node_modules/@next/env/dist/index.js +1 -0
- package/dist/standalone/node_modules/@next/env/package.json +35 -0
- package/dist/standalone/node_modules/@swc/helpers/_/_interop_require_default/package.json +4 -0
- package/dist/standalone/node_modules/@swc/helpers/_/_interop_require_wildcard/package.json +4 -0
- package/dist/standalone/node_modules/@swc/helpers/cjs/_interop_require_default.cjs +6 -0
- package/dist/standalone/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs +38 -0
- package/dist/standalone/node_modules/@swc/helpers/package.json +471 -0
- package/dist/standalone/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
- package/dist/standalone/node_modules/baseline-browser-mapping/package.json +68 -0
- package/dist/standalone/node_modules/caniuse-lite/data/agents.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/browsers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/aac.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/apng.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audio.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/av1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/avif.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/calc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/colr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/const.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid-lanes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-if.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/customizable-select.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/details.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/download.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eme.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eot.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es5.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flac.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/forms.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/heif.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/history.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ime.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/imports.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/json.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/let.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/loading-lazy-media.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/menu.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/meter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/midi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/opus.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/outline.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/picture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ping.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/portals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/progress.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/promises.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rem.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sni.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/stream.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/streams.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/template.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/touch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/url.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/video.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wav.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webm.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webp.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/woff.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/versionGroups.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/feature.js +81 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/versionGroups.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/package.json +34 -0
- package/dist/standalone/node_modules/client-only/index.js +0 -0
- package/dist/standalone/node_modules/client-only/package.json +19 -0
- package/dist/standalone/node_modules/nanoid/non-secure/index.cjs +24 -0
- package/dist/standalone/node_modules/nanoid/non-secure/package.json +6 -0
- package/dist/standalone/node_modules/nanoid/package.json +89 -0
- package/dist/standalone/node_modules/next/dist/build/adapter/setup-node-env.external.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/extract-const-value.js +220 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/get-page-static-info.js +636 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/parse-module.js +20 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/get-config.js +429 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/index.js +56 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/transform.js +103 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/util.js +20 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/commonjs.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-font-unsupported.js +36 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-page-config.js +104 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-page-disallow-re-export-all-exports.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-ssg-transform.js +345 -0
- package/dist/standalone/node_modules/next/dist/build/build-context.js +58 -0
- package/dist/standalone/node_modules/next/dist/build/create-compiler-aliases.js +438 -0
- package/dist/standalone/node_modules/next/dist/build/define-env.js +255 -0
- package/dist/standalone/node_modules/next/dist/build/duration-to-string.js +99 -0
- package/dist/standalone/node_modules/next/dist/build/entries.js +558 -0
- package/dist/standalone/node_modules/next/dist/build/file-classifier.js +76 -0
- package/dist/standalone/node_modules/next/dist/build/get-babel-config-file.js +35 -0
- package/dist/standalone/node_modules/next/dist/build/get-babel-loader-config.js +109 -0
- package/dist/standalone/node_modules/next/dist/build/get-static-info-including-layouts.js +81 -0
- package/dist/standalone/node_modules/next/dist/build/get-supported-browsers.js +38 -0
- package/dist/standalone/node_modules/next/dist/build/handle-externals.js +290 -0
- package/dist/standalone/node_modules/next/dist/build/load-entrypoint.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/load-jsconfig.js +162 -0
- package/dist/standalone/node_modules/next/dist/build/lockfile.js +241 -0
- package/dist/standalone/node_modules/next/dist/build/next-config-ts/require-hook.js +85 -0
- package/dist/standalone/node_modules/next/dist/build/next-config-ts/transpile-config.js +251 -0
- package/dist/standalone/node_modules/next/dist/build/next-dir-paths.js +37 -0
- package/dist/standalone/node_modules/next/dist/build/normalize-catchall-routes.js +76 -0
- package/dist/standalone/node_modules/next/dist/build/output/format.js +84 -0
- package/dist/standalone/node_modules/next/dist/build/output/index.js +186 -0
- package/dist/standalone/node_modules/next/dist/build/output/log.js +135 -0
- package/dist/standalone/node_modules/next/dist/build/output/store.js +204 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/fetch/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/fetch/whatwg-fetch.js +7 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object-assign.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/auto.js +4 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/implementation.js +4 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/polyfill.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/shim.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/polyfill-nomodule.js +1 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/process.js +5 -0
- package/dist/standalone/node_modules/next/dist/build/print-build-errors.js +72 -0
- package/dist/standalone/node_modules/next/dist/build/route-discovery.js +353 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/app-segment-config.js +162 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/app-segments.js +137 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/collect-root-param-keys.js +52 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/middleware/middleware-config.js +121 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/pages/pages-segment-config.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/sort-by-page-exts.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js +137 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/app.js +736 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/pages.js +169 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/utils.js +119 -0
- package/dist/standalone/node_modules/next/dist/build/swc/index.js +1348 -0
- package/dist/standalone/node_modules/next/dist/build/swc/install-bindings.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/swc/loaderWorkerPool.js +40 -0
- package/dist/standalone/node_modules/next/dist/build/swc/options.js +403 -0
- package/dist/standalone/node_modules/next/dist/build/utils.js +1216 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/cache-invalidation.js +91 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/base.js +82 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/index.js +573 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/client.js +49 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/file-resolve.js +21 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/getCssModuleLocalIdent.js +37 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/global.js +67 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/index.js +22 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/modules.js +88 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/next-font.js +63 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/messages.js +45 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/plugins.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/images/index.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/images/messages.js +16 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/helpers.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/index.js +47 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/utils.js +13 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/CssSyntaxError.js +32 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/camelcase.js +93 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js +288 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/index.js +36 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-icss-parser.js +105 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-import-parser.js +220 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-url-parser.js +314 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js +83 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/getUrl.js +23 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/utils.js +459 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/get-module-build-info.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/codegen.js +156 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/index.js +27 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/interface.js +17 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/loader.js +438 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/minify.js +94 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/utils.js +58 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-flight-css-loader.js +56 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-flight-loader/index.js +211 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js +61 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js +141 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Error.js +40 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Warning.js +35 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js +125 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/utils.js +86 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js +101 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/file-protocol.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/join-function.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/postcss.js +92 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/value-processor.js +97 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/utils.js +100 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin-utils.js +65 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin.js +183 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/copy-file-plugin.js +67 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/css-chunking-plugin.js +277 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/css-minimizer-plugin.js +92 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/deferred-entries-plugin.js +106 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/devtools-ignore-list-plugin.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/eval-source-map-dev-tool-plugin.js +191 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/flight-client-entry-plugin.js +801 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.js +433 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/force-complete-runtime.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/jsconfig-paths-plugin.js +219 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/memory-with-gc-cache-plugin.js +114 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/middleware-plugin.js +633 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/mini-css-extract-plugin.js +24 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/minify-webpack-plugin/src/index.js +188 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.js +120 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-trace-entrypoints-plugin.js +542 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-types-plugin/index.js +429 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-types-plugin/shared.js +14 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader.js +53 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/optional-peer-dependency-resolve-plugin.js +45 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.js +146 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/profiling-plugin.js +282 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/react-loadable-plugin.js +169 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/rspack-flight-client-entry-plugin.js +97 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/rspack-profiling-plugin.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/slow-module-detection-plugin.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.js +188 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/getModuleTrace.js +89 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/index.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parse-dynamic-code-evaluation-error.js +19 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseBabel.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseCss.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextAppLoaderError.js +26 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextFontError.js +33 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextInvalidImportError.js +26 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNotFoundError.js +180 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseScss.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/simpleWebpackError.js +18 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/webpackModuleError.js +138 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/stringify-request.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/utils.js +109 -0
- package/dist/standalone/node_modules/next/dist/build/webpack-config-rules/resolve.js +55 -0
- package/dist/standalone/node_modules/next/dist/build/webpack-config.js +2353 -0
- package/dist/standalone/node_modules/next/dist/cli/next-test.js +170 -0
- package/dist/standalone/node_modules/next/dist/client/add-base-path.js +24 -0
- package/dist/standalone/node_modules/next/dist/client/add-locale.js +25 -0
- package/dist/standalone/node_modules/next/dist/client/app-call-server.js +34 -0
- package/dist/standalone/node_modules/next/dist/client/app-find-source-map-url.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/assign-location.js +29 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-announcer.js +78 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-headers.js +138 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-instance.js +397 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-utils.js +62 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router.js +514 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/app-error.js +71 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/default.js +35 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/error-styles.js +165 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/global-error.js +100 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/global-not-found.js +31 -0
- package/dist/standalone/node_modules/next/dist/client/components/dev-root-http-access-fallback-boundary.js +52 -0
- package/dist/standalone/node_modules/next/dist/client/components/error-boundary.js +144 -0
- package/dist/standalone/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js +86 -0
- package/dist/standalone/node_modules/next/dist/client/components/errors/root-error-boundary.js +41 -0
- package/dist/standalone/node_modules/next/dist/client/components/forbidden.js +48 -0
- package/dist/standalone/node_modules/next/dist/client/components/handle-isr-error.js +30 -0
- package/dist/standalone/node_modules/next/dist/client/components/hooks-server-context.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js +125 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js +65 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js +72 -0
- package/dist/standalone/node_modules/next/dist/client/components/is-next-router-error.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/links.js +299 -0
- package/dist/standalone/node_modules/next/dist/client/components/match-segments.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/nav-failure-handler.js +61 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation-devtools.js +126 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation-untracked.js +67 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation.js +225 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation.react-server.js +75 -0
- package/dist/standalone/node_modules/next/dist/client/components/noop-head.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/components/not-found.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/readonly-url-search-params.js +41 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-boundary.js +107 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-error.js +43 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-status-code.js +24 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect.js +91 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js +201 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js +153 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js +457 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js +59 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js +1341 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/committed-state.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js +63 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js +56 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js +83 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js +62 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js +320 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js +58 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js +70 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/router-reducer.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/bfcache.js +128 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache-key.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache-map.js +305 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache.js +1933 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/lru.js +152 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/navigation-testing-lock.js +194 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/navigation.js +597 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/optimistic-routes.js +543 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/prefetch.js +31 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/scheduler.js +1249 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/types.js +69 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/vary-path.js +278 -0
- package/dist/standalone/node_modules/next/dist/client/components/static-generation-bailout.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/styles/access-error-styles.js +48 -0
- package/dist/standalone/node_modules/next/dist/client/components/unauthorized.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/components/unrecognized-action-error.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/components/unresolved-thenable.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.browser.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.js +25 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.server.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/use-action-queue.js +148 -0
- package/dist/standalone/node_modules/next/dist/client/detect-domain-locale.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/dev/debug-channel.js +172 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/app/hot-reloader-app.js +517 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/app/web-socket.js +238 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/get-socket-url.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/pages/hot-reloader-pages.js +452 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/pages/websocket.js +106 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/shared.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/turbopack-hot-reloader-common.js +128 -0
- package/dist/standalone/node_modules/next/dist/client/dev/report-hmr-latency.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/dev/runtime-error-handler.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/flight-data-helpers.js +232 -0
- package/dist/standalone/node_modules/next/dist/client/has-base-path.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/lib/console.js +177 -0
- package/dist/standalone/node_modules/next/dist/client/lib/javascript-url.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/lib/promise.js +53 -0
- package/dist/standalone/node_modules/next/dist/client/navigation-build-id.js +53 -0
- package/dist/standalone/node_modules/next/dist/client/normalize-trailing-slash.js +36 -0
- package/dist/standalone/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/react-client-callbacks/report-global-error.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/remove-base-path.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/remove-locale.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/request-idle-callback.js +44 -0
- package/dist/standalone/node_modules/next/dist/client/resolve-href.js +106 -0
- package/dist/standalone/node_modules/next/dist/client/route-loader.js +312 -0
- package/dist/standalone/node_modules/next/dist/client/route-params.js +247 -0
- package/dist/standalone/node_modules/next/dist/client/router.js +187 -0
- package/dist/standalone/node_modules/next/dist/client/script.js +348 -0
- package/dist/standalone/node_modules/next/dist/client/set-attributes-from-props.js +68 -0
- package/dist/standalone/node_modules/next/dist/client/trusted-types.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/with-router.js +37 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js +339 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/cookies/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/ponyfill/index.js +46 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/ponyfill/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/abort-controller.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/console.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/events.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/index.js +5 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/load.js +18713 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/stream.js +44 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/timers.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/url.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@hapi/accept/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@hapi/accept/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@modelcontextprotocol/sdk/server/mcp.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/@modelcontextprotocol/sdk/server/streamableHttp.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@napi-rs/triples/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@napi-rs/triples/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/constants.js +10 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/fontkit/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/format-available-values.js +9 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-css-from-google-fonts.js +28 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-font-file.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-resource.js +46 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/find-font-files-in-css.js +34 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/font-data.json +18866 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-fallback-font-override-metrics.js +62 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-font-axes.js +66 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-google-fonts-url.js +55 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-proxy-agent.js +23 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/google-fonts-metadata.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/loader.js +175 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/retry.js +17 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/sort-fonts-variant-values.js +26 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/validate-google-font-function-call.js +101 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/get-fallback-metrics-from-font-file.js +85 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/loader.js +77 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/pick-font-file-for-fallback-generation.js +85 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/validate-local-font-function-call.js +66 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/next-font-error.js +11 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/google/loader.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/local/loader.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/ReactRefreshRspackPlugin.js +18 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/ReactRefreshWebpackPlugin.js +137 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/ReactRefreshModule.runtime.js +69 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/RspackReactRefresh.js +86 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js +170 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/loader.js +21 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/rspack-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js +27 -0
- package/dist/standalone/node_modules/next/dist/compiled/@opentelemetry/api/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@opentelemetry/api/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/LICENSE +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/index.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/acorn/acorn.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/acorn/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/assert/assert.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/assert/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-retry/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-retry/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-sema/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-sema/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/bundle.js +227 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-block-hoist-plugin.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-config.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-normalize-file.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-normalize-opts.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-plugin-pass.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/generator.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/parser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/plugin-transform-define.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/plugin-transform-modules-commonjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/traverse.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/types.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel-packages/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel-packages/packages-bundle.js +335 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserify-zlib/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserify-zlib/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserslist/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserslist/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/buffer/index.js +9 -0
- package/dist/standalone/node_modules/next/dist/compiled/buffer/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/busboy/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/busboy/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/bytes/index.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/bytes/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ci-info/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ci-info/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/commander/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/commander/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/comment-json/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/comment-json/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/compression/index.js +58 -0
- package/dist/standalone/node_modules/next/dist/compiled/compression/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/conf/index.js +15 -0
- package/dist/standalone/node_modules/next/dist/compiled/conf/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/constants-browserify/constants.json +209 -0
- package/dist/standalone/node_modules/next/dist/compiled/constants-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-disposition/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-disposition/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-type/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-type/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cookie/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/cookie/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cross-spawn/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cross-spawn/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/crypto-browserify/index.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/crypto-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cssnano-simple/index.js +320 -0
- package/dist/standalone/node_modules/next/dist/compiled/data-uri-to-buffer/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/data-uri-to-buffer/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/debug/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/debug/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/devalue/devalue.umd.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/devalue/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/domain-browser/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/domain-browser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/edge-runtime/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/edge-runtime/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/events/events.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/events/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/find-up/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/find-up/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/fresh/index.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/fresh/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/glob/glob.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/glob/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/gzip-size/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/gzip-size/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy/index.js +34 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy-agent/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy-agent/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-proxy-agent/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-proxy-agent/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/icss-utils/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/icss-utils/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ignore-loader/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ignore-loader/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-detector/detector.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-size/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-size/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ipaddr.js/ipaddr.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ipaddr.js/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-animated/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-animated/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-docker/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-docker/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-wsl/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-wsl/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/processChild.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/threadChild.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/json5/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/json5/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jsonwebtoken/index.js +11 -0
- package/dist/standalone/node_modules/next/dist/compiled/jsonwebtoken/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils2/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils2/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lodash.curry/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lodash.curry/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lru-cache/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lru-cache/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/nanoid/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/nanoid/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/native-url/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/native-url/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/neo-async/async.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/neo-async/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-devtools/index.js +3835 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/pages-turbo.runtime.prod.js +20 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/pages.runtime.prod.js +20 -0
- package/dist/standalone/node_modules/next/dist/compiled/os-browserify/browser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/os-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-limit/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-limit/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-queue/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-queue/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-to-regexp/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-to-regexp/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/picomatch/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/picomatch/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-flexbugs-fixes/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-flexbugs-fixes/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-extract-imports/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-extract-imports/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-local-by-default/index.js +2 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-local-by-default/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-scope/index.js +2 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-scope/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-values/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-values/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-plugin-stub-for-cssnano-simple/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-preset-env/index.cjs +94 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-preset-env/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-scss/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-scss/scss-syntax.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-value-parser/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-value-parser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/process/browser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/process/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/punycode/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/punycode/punycode.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/querystring-es3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/querystring-es3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/raw-body/index.js +51 -0
- package/dist/standalone/node_modules/next/dist/compiled/raw-body/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js +133 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/cjs/react-is.production.js +130 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/package.json +26 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/babel.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-babel.development.js +842 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-babel.production.min.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js +658 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.production.min.js +10 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/package.json +39 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/runtime.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/regenerator-runtime/package.json +19 -0
- package/dist/standalone/node_modules/next/dist/compiled/regenerator-runtime/runtime.js +729 -0
- package/dist/standalone/node_modules/next/dist/compiled/safe-stable-stringify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/safe-stable-stringify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/sass-loader/cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/sass-loader/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/schema-utils3/index.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/schema-utils3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/semver/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/semver/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/send/index.js +70 -0
- package/dist/standalone/node_modules/next/dist/compiled/send/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/setimmediate/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/setimmediate/setImmediate.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/shell-quote/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/shell-quote/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map/source-map.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map08/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map08/source-map.js +3002 -0
- package/dist/standalone/node_modules/next/dist/compiled/stacktrace-parser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-http/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-http/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string-hash/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string-hash/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string_decoder/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string_decoder/string_decoder.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/strip-ansi/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/strip-ansi/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/superstruct/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/superstruct/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tar/index.min.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tar/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/text-table/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/text-table/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/timers-browserify/main.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/timers-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tty-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tty-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/unistore/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/unistore/unistore.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/util/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/util/util.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/vm-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/vm-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/watchpack/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/watchpack/watchpack.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/webpack-sources3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/webpack-sources3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ws/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ws/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod-validation-error/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod-validation-error/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/context.js +57 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/fetch.js +142 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/httpget.js +26 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/server-edge.js +32 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/server.js +62 -0
- package/dist/standalone/node_modules/next/dist/export/helpers/create-incremental-cache.js +61 -0
- package/dist/standalone/node_modules/next/dist/export/utils.js +24 -0
- package/dist/standalone/node_modules/next/dist/lib/batcher.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/build-custom-route.js +46 -0
- package/dist/standalone/node_modules/next/dist/lib/bundler.js +97 -0
- package/dist/standalone/node_modules/next/dist/lib/client-and-server-references.js +54 -0
- package/dist/standalone/node_modules/next/dist/lib/coalesced-function.js +39 -0
- package/dist/standalone/node_modules/next/dist/lib/compile-error.js +14 -0
- package/dist/standalone/node_modules/next/dist/lib/constants.js +420 -0
- package/dist/standalone/node_modules/next/dist/lib/create-client-router-filter.js +67 -0
- package/dist/standalone/node_modules/next/dist/lib/default-transpiled-packages.json +1 -0
- package/dist/standalone/node_modules/next/dist/lib/detached-promise.js +32 -0
- package/dist/standalone/node_modules/next/dist/lib/detect-typo.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/download-swc.js +183 -0
- package/dist/standalone/node_modules/next/dist/lib/error-telemetry-utils.js +42 -0
- package/dist/standalone/node_modules/next/dist/lib/fallback.js +100 -0
- package/dist/standalone/node_modules/next/dist/lib/fatal-error.js +14 -0
- package/dist/standalone/node_modules/next/dist/lib/file-exists.js +53 -0
- package/dist/standalone/node_modules/next/dist/lib/find-config.js +102 -0
- package/dist/standalone/node_modules/next/dist/lib/find-pages-dir.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/find-root.js +126 -0
- package/dist/standalone/node_modules/next/dist/lib/format-dynamic-import-path.js +24 -0
- package/dist/standalone/node_modules/next/dist/lib/format-server-error.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/framework/boundary-components.js +62 -0
- package/dist/standalone/node_modules/next/dist/lib/framework/boundary-constants.js +36 -0
- package/dist/standalone/node_modules/next/dist/lib/fs/rename.js +87 -0
- package/dist/standalone/node_modules/next/dist/lib/fs/write-atomic.js +28 -0
- package/dist/standalone/node_modules/next/dist/lib/generate-interception-routes-rewrites.js +52 -0
- package/dist/standalone/node_modules/next/dist/lib/get-network-host.js +44 -0
- package/dist/standalone/node_modules/next/dist/lib/get-project-dir.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/has-necessary-dependencies.js +49 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-cache-directory.js +66 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-online.js +50 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-pkg-manager.js +63 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-registry.js +45 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/install.js +83 -0
- package/dist/standalone/node_modules/next/dist/lib/install-dependencies.js +40 -0
- package/dist/standalone/node_modules/next/dist/lib/interop-default.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/is-api-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-app-page-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-app-route-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-edge-runtime.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/is-error.js +78 -0
- package/dist/standalone/node_modules/next/dist/lib/is-interception-route-rewrite.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/is-internal-component.js +36 -0
- package/dist/standalone/node_modules/next/dist/lib/is-serializable-props.js +106 -0
- package/dist/standalone/node_modules/next/dist/lib/known-edge-safe-packages.json +1 -0
- package/dist/standalone/node_modules/next/dist/lib/load-custom-routes.js +594 -0
- package/dist/standalone/node_modules/next/dist/lib/memory/trace.js +109 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/get-metadata-route.js +123 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/is-metadata-route.js +221 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/metadata-context.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/multi-file-writer.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/needs-experimental-react.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/non-nullable.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/normalize-path.js +21 -0
- package/dist/standalone/node_modules/next/dist/lib/oxford-comma-list.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/page-types.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/patch-incorrect-lockfile.js +185 -0
- package/dist/standalone/node_modules/next/dist/lib/pick.js +19 -0
- package/dist/standalone/node_modules/next/dist/lib/picocolors.js +177 -0
- package/dist/standalone/node_modules/next/dist/lib/realpath.js +20 -0
- package/dist/standalone/node_modules/next/dist/lib/recursive-delete.js +137 -0
- package/dist/standalone/node_modules/next/dist/lib/recursive-readdir.js +124 -0
- package/dist/standalone/node_modules/next/dist/lib/redirect-status.js +46 -0
- package/dist/standalone/node_modules/next/dist/lib/resolve-from.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/route-pattern-normalizer.js +107 -0
- package/dist/standalone/node_modules/next/dist/lib/scheduler.js +64 -0
- package/dist/standalone/node_modules/next/dist/lib/semver-noop.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/static-env.js +92 -0
- package/dist/standalone/node_modules/next/dist/lib/try-to-parse-path.js +67 -0
- package/dist/standalone/node_modules/next/dist/lib/turbopack-warning.js +185 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/diagnosticFormatter.js +243 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/getTypeScriptConfiguration.js +153 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/getTypeScriptIntent.js +52 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/missingDependencyError.js +27 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/runTypeCheck.js +149 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/type-paths.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/writeAppTypeDeclarations.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/writeConfigurationDefaults.js +395 -0
- package/dist/standalone/node_modules/next/dist/lib/url.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/verify-partytown-setup.js +115 -0
- package/dist/standalone/node_modules/next/dist/lib/verify-typescript-setup.js +228 -0
- package/dist/standalone/node_modules/next/dist/lib/wait.js +19 -0
- package/dist/standalone/node_modules/next/dist/lib/with-promise-cache.js +24 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/attach-nodejs-debugger-middleware.js +55 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/dev-indicator-middleware.js +42 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/devtools-config-middleware.js +82 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/font/get-dev-overlay-font-middleware.js +71 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/get-next-error-feedback-middleware.js +42 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/launch-editor.js +469 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/middleware-response.js +55 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/restart-dev-server-middleware.js +78 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/shared.js +57 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/console-error.js +47 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/deepmerge.js +41 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/devtools-config-schema.js +45 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/forward-logs-shared.js +56 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/react-18-hydration-error.js +68 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/react-19-hydration-error.js +95 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/webpack-module-path.js +47 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js +91 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/replay-ssr-only-errors.js +72 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js +76 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js +139 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/forward-logs-utils.js +95 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js +510 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js +159 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/terminal-logging-config.js +41 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/hydration-error-state.js +161 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-error-boundary.js +37 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.js +112 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/use-app-dev-rendering-indicator.js +34 -0
- package/dist/standalone/node_modules/next/dist/server/ReactDOMServerPages.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/accept-header.js +132 -0
- package/dist/standalone/node_modules/next/dist/server/after/after-context.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/after/awaiter.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/after/builtin-request-context.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/after/run-with-after.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/get-cookie-parser.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/index.js +201 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/node/parse-body.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/node/try-get-preview-data.js +86 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-handler.js +1027 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/after-task-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-prerender-utils.js +167 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-render-utils.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-scheduling.js +188 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render.js +4522 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/async-local-storage.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/cache-signal.js +181 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/console-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/console-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-component-styles-and-scripts.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-component-tree.js +870 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-error-handler.js +189 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-flight-router-state-from-loader-tree.js +102 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/csrf-protection.js +86 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/debug-channel-server.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/debug-channel-server.web.js +71 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-rendering.js +1144 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/encryption-utils-server.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/encryption-utils.js +93 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/flight-render-result.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-asset-query-string.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-css-inlined-link-tags.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-layer-assets.js +65 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-preloadable-fonts.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-script-nonce-from-header.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-short-dynamic-param-type.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/has-loading-component-in-tree.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-config.js +181 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-samples-client.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-samples.js +432 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/stream-utils.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/interop-default.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/make-get-server-inserted-html.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/manifests-singleton.js +264 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/metadata-insertion/create-server-inserted-metadata.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js +66 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/parse-and-validate-flight-router-state.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/postponed-state.js +157 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/prospective-render-utils.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/react-large-shell-error.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/react-server.node.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/render-css-resource.js +52 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/required-scripts.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/segment-explorer-path.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/server-inserted-html.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/staged-rendering.js +343 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stale-time.js +111 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stream-ops.js +106 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stream-ops.web.js +163 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/strip-flight-headers.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/types.js +65 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/use-flight-response.js +214 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/vary-params.js +336 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/walk-tree-with-flight-router-state.js +232 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js +280 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/draft-mode-provider.js +62 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/request-store.js +144 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/work-store.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/helpers.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/index.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/node.js +147 -0
- package/dist/standalone/node_modules/next/dist/server/base-server.js +1882 -0
- package/dist/standalone/node_modules/next/dist/server/body-streams.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/cache-dir.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/capsize-font-metrics.json +181516 -0
- package/dist/standalone/node_modules/next/dist/server/ci-info.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/client-component-renderer-logger.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/config-schema.js +727 -0
- package/dist/standalone/node_modules/next/dist/server/config-shared.js +369 -0
- package/dist/standalone/node_modules/next/dist/server/config-utils.js +185 -0
- package/dist/standalone/node_modules/next/dist/server/config.js +1545 -0
- package/dist/standalone/node_modules/next/dist/server/crypto-utils.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/file-logger.js +186 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/receive-logs.js +558 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/source-map.js +222 -0
- package/dist/standalone/node_modules/next/dist/server/dev/debug-channel.js +87 -0
- package/dist/standalone/node_modules/next/dist/server/dev/dev-indicator-server-state.js +15 -0
- package/dist/standalone/node_modules/next/dist/server/dev/get-source-map-from-file.js +100 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-middleware.js +274 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-rspack.js +171 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-shared-utils.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-turbopack.js +1480 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-types.js +58 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-webpack.js +1386 -0
- package/dist/standalone/node_modules/next/dist/server/dev/log-requests.js +149 -0
- package/dist/standalone/node_modules/next/dist/server/dev/messages.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/dev/middleware-turbopack.js +403 -0
- package/dist/standalone/node_modules/next/dist/server/dev/middleware-webpack.js +483 -0
- package/dist/standalone/node_modules/next/dist/server/dev/next-dev-server.js +731 -0
- package/dist/standalone/node_modules/next/dist/server/dev/node-stack-frames.js +72 -0
- package/dist/standalone/node_modules/next/dist/server/dev/on-demand-entry-handler.js +773 -0
- package/dist/standalone/node_modules/next/dist/server/dev/parse-version-info.js +108 -0
- package/dist/standalone/node_modules/next/dist/server/dev/require-cache.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/dev/serialized-errors.js +67 -0
- package/dist/standalone/node_modules/next/dist/server/dev/server-action-logger.js +37 -0
- package/dist/standalone/node_modules/next/dist/server/dev/static-paths-worker.js +105 -0
- package/dist/standalone/node_modules/next/dist/server/dev/turbopack-utils.js +687 -0
- package/dist/standalone/node_modules/next/dist/server/dynamic-rendering-utils.js +108 -0
- package/dist/standalone/node_modules/next/dist/server/font-utils.js +43 -0
- package/dist/standalone/node_modules/next/dist/server/get-app-route-from-entrypoint.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/get-route-from-entrypoint.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/image-optimizer.js +1240 -0
- package/dist/standalone/node_modules/next/dist/server/instrumentation/utils.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/internal-utils.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/is-private-ip.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/lib/app-dir-module.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/lib/app-info-log.js +132 -0
- package/dist/standalone/node_modules/next/dist/server/lib/async-callback-set.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cache-control.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cache-handlers/default.js +160 -0
- package/dist/standalone/node_modules/next/dist/server/lib/chrome-devtools-workspace.js +116 -0
- package/dist/standalone/node_modules/next/dist/server/lib/clone-response.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cpu-profile.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/lib/decode-query-path-parameter.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/lib/dedupe-fetch.js +163 -0
- package/dist/standalone/node_modules/next/dist/server/lib/dev-bundler-service.js +95 -0
- package/dist/standalone/node_modules/next/dist/server/lib/disk-lru-cache.external.js +57 -0
- package/dist/standalone/node_modules/next/dist/server/lib/encode-cache-tag.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/lib/etag.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/lib/experimental/create-env-definitions.js +48 -0
- package/dist/standalone/node_modules/next/dist/server/lib/experimental/ppr.js +47 -0
- package/dist/standalone/node_modules/next/dist/server/lib/find-page-file.js +147 -0
- package/dist/standalone/node_modules/next/dist/server/lib/fix-mojibake.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/lib/format-hostname.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/i18n-provider.js +129 -0
- package/dist/standalone/node_modules/next/dist/server/lib/implicit-tags.js +80 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js +335 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/index.js +501 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js +57 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js +73 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/lib/install-code-frame.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/lib/is-ipv6.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/lib/is-rsc-request.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/lib/lazy-result.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/lib/lru-cache.js +191 -0
- package/dist/standalone/node_modules/next/dist/server/lib/match-next-data-pathname.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/lib/mock-request.js +441 -0
- package/dist/standalone/node_modules/next/dist/server/lib/module-loader/node-module-loader.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/lib/node-fs-methods.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/lib/parse-stack.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/lib/patch-fetch.js +982 -0
- package/dist/standalone/node_modules/next/dist/server/lib/patch-set-header.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/lib/postponed-request-body.js +64 -0
- package/dist/standalone/node_modules/next/dist/server/lib/render-server.js +155 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-server.js +699 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/block-cross-site-dev.js +110 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/build-data-route.js +48 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/cache-life-type-utils.js +211 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/decode-path-params.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/filesystem.js +591 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js +89 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/is-postpone.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/proxy-request.js +118 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/resolve-routes.js +643 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/route-types-utils.js +286 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/router-server-context.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.js +970 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/typegen.js +858 -0
- package/dist/standalone/node_modules/next/dist/server/lib/server-action-request-meta.js +53 -0
- package/dist/standalone/node_modules/next/dist/server/lib/server-ipc/utils.js +83 -0
- package/dist/standalone/node_modules/next/dist/server/lib/source-maps.js +196 -0
- package/dist/standalone/node_modules/next/dist/server/lib/start-server.js +494 -0
- package/dist/standalone/node_modules/next/dist/server/lib/streaming-metadata.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/lib/to-route.js +37 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/constants.js +203 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/tracer.js +280 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/utils.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/utils.js +278 -0
- package/dist/standalone/node_modules/next/dist/server/load-components.js +179 -0
- package/dist/standalone/node_modules/next/dist/server/load-default-error-components.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/load-manifest.external.js +117 -0
- package/dist/standalone/node_modules/next/dist/server/match-bundle.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/get-mcp-middleware.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/get-or-create-mcp-server.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/mcp-telemetry-tracker.js +82 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-errors.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-logs.js +67 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-page-metadata.js +188 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-project-metadata.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-routes.js +136 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-server-action-by-id.js +121 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/next-instance-error-state.js +31 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/utils/browser-communication.js +90 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/utils/format-errors.js +137 -0
- package/dist/standalone/node_modules/next/dist/server/next-server.js +1429 -0
- package/dist/standalone/node_modules/next/dist/server/next-typescript.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/next.js +455 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-baseline.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-dim.external.js +301 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-exit.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-file.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/date.js +52 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/error-inspect.js +8 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js +577 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/global-behaviors.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/io-utils.js +195 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/node-crypto.js +103 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/process-error-handlers.js +91 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/random.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js +508 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/web-crypto.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/node-polyfill-crypto.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/absolute-filename-normalizer.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-bundle-path-normalizer.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-filename-normalizer.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-page-normalizer.js +40 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-pathname-normalizer.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/index.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/index.js +44 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-bundle-path-normalizer.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-filename-normalizer.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-page-normalizer.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-pathname-normalizer.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/locale-route-normalizer.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/normalizers.js +23 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/prefixing-normalizer.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/base-path.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/next-data.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/prefix.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/rsc.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/suffix.js +27 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/underscore-normalizer.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/wrap-normalizer-fn.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/patch-error-inspect.js +453 -0
- package/dist/standalone/node_modules/next/dist/server/pipe-readable.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/post-process.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/render-result.js +204 -0
- package/dist/standalone/node_modules/next/dist/server/render.js +1148 -0
- package/dist/standalone/node_modules/next/dist/server/request/fallback-params.js +95 -0
- package/dist/standalone/node_modules/next/dist/server/request-meta.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/require-hook.js +82 -0
- package/dist/standalone/node_modules/next/dist/server/require.js +109 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/index.js +311 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/types.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/utils.js +104 -0
- package/dist/standalone/node_modules/next/dist/server/resume-data-cache/cache-store.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/resume-data-cache/resume-data-cache.js +124 -0
- package/dist/standalone/node_modules/next/dist/server/revalidation-utils.js +157 -0
- package/dist/standalone/node_modules/next/dist/server/route-definitions/app-page-route-definition.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/route-kind.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-managers/default-route-matcher-manager.js +239 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-managers/dev-route-matcher-manager.js +120 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/app-page-route-matcher-provider.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/app-route-route-matcher-provider.js +43 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-page-route-matcher-provider.js +91 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-route-route-matcher-provider.js +112 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-api-route-matcher-provider.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-route-matcher-provider.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/file-cache-route-matcher-provider.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/batched-file-reader.js +106 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/default-file-reader.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/cached-route-matcher-provider.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/node-manifest-loader.js +34 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/server-manifest-loader.js +20 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/manifest-route-matcher-provider.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/pages-api-route-matcher-provider.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/pages-route-matcher-provider.js +64 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/app-page-route-matcher.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/app-route-route-matcher.js +15 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/locale-route-matcher.js +68 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/pages-api-route-matcher.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/pages-route-matcher.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/route-matcher.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/route-matches/pages-api-route-match.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.js +51 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.compiled.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.js +162 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.render.js +24 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/normalize-request-url.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.js +87 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.js +125 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/checks.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/builtin/_error.js +100 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.compiled.js +20 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.render.js +24 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/pages-handler.js +545 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/app-router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.js +102 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/hooks-client-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/image-config-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/server-inserted-html.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/route-module.js +660 -0
- package/dist/standalone/node_modules/next/dist/server/runtime-reacts.external.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/send-payload.js +88 -0
- package/dist/standalone/node_modules/next/dist/server/send-response.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/serve-static.js +66 -0
- package/dist/standalone/node_modules/next/dist/server/server-route-utils.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/server-utils.js +340 -0
- package/dist/standalone/node_modules/next/dist/server/setup-http-agent-env.js +31 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/encoded-tags.js +122 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js +918 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/uint8array-helpers.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/constant.js +98 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/index.js +199 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/client-boundary.js +97 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/config.js +512 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/entry.js +149 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/error.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/metadata.js +234 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/server-boundary.js +115 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/server.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/utils.js +212 -0
- package/dist/standalone/node_modules/next/dist/server/use-cache/constants.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/use-cache/handlers.js +121 -0
- package/dist/standalone/node_modules/next/dist/server/utils.js +73 -0
- package/dist/standalone/node_modules/next/dist/server/web/adapter.js +395 -0
- package/dist/standalone/node_modules/next/dist/server/web/error.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/web/get-edge-preview-props.js +23 -0
- package/dist/standalone/node_modules/next/dist/server/web/globals.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/web/http.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/web/next-url.js +199 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/context.js +462 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/fetch-inline-assets.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/index.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/resource-managers.js +88 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/sandbox.js +137 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/headers.js +192 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js +142 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.js +211 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/cookies.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/fetch-event.js +98 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/request.js +99 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/response.js +136 -0
- package/dist/standalone/node_modules/next/dist/server/web/utils.js +151 -0
- package/dist/standalone/node_modules/next/dist/server/web/web-on-close.js +87 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/action-revalidation-kind.js +31 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js +50 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/app-router-types.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/bloom-filter.js +85 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/constants.js +448 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/deep-freeze.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/deployment-id.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/dset.js +34 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/encode-uri-path.js +15 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/entry-constants.js +36 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/error-source.js +36 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/canary-only-config-error.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/code-frame.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/constants.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/empty-generate-static-params-error.js +24 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/hard-deprecated-config-error.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/escape-regexp.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/format-webpack-messages.js +184 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-hostname.js +23 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-rspack.js +35 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-webpack-bundler.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/hash.js +42 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/head.js +163 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js +60 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/html-context.shared-runtime.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/htmlescape.js +52 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +25 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/get-locale-redirect.js +59 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +54 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-blur-svg.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-config.js +77 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/invariant-error.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-internal.js +41 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-plain-object.js +42 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-thenable.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/isomorphic/path.js +14 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js +37 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/loadable-context.shared-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/loadable.shared-runtime.js +246 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/magic-identifier.js +218 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/match-local-pattern.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/match-remote-pattern.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/mitt.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/modern-browserslist-target.js +15 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/no-fallback-error.external.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/normalized-asset-prefix.js +28 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/absolute-path-to-page.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/get-page-paths.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js +23 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/remove-page-path-tail.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/promise-with-resolvers.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/adapters.js +136 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/router.js +1814 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/routes/app.js +134 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-locale.js +28 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/app-paths.js +62 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js +17 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js +70 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/compare-states.js +34 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js +43 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/escape-path-delimiters.js +16 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js +27 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/format-url.js +111 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +174 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js +52 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-route-from-asset-path.js +25 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +90 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/html-bots.js +17 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/index.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js +33 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +108 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js +53 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-bot.js +57 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-local-url.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.js +31 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/omit.js +21 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-path.js +33 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js +43 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-url.js +38 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/path-match.js +49 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js +292 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/querystring.js +79 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/relativize-url.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +21 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js +116 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js +118 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +113 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +45 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-regex.js +256 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +244 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js +99 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.js +32 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment.js +102 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js +35 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/server-reference-info.js +56 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/side-effect.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/size-limit.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/compilation-events.js +83 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/entry-key.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/internal-error.js +53 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/manifest-loader.js +498 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/utils.js +267 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils/reflect-utils.js +69 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils/warn-once.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils.js +207 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/zod.js +101 -0
- package/dist/standalone/node_modules/next/dist/telemetry/anonymous-meta.js +89 -0
- package/dist/standalone/node_modules/next/dist/telemetry/detached-flush.js +56 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/build.js +174 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/error-feedback.js +31 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/index.js +41 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/plugins.js +51 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/swc-load-failure.js +55 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/version.js +66 -0
- package/dist/standalone/node_modules/next/dist/telemetry/flush-telemetry.js +19 -0
- package/dist/standalone/node_modules/next/dist/telemetry/post-telemetry-payload.js +48 -0
- package/dist/standalone/node_modules/next/dist/telemetry/project-id.js +48 -0
- package/dist/standalone/node_modules/next/dist/telemetry/storage.js +301 -0
- package/dist/standalone/node_modules/next/dist/trace/index.js +58 -0
- package/dist/standalone/node_modules/next/dist/trace/report/index.js +37 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-json-build.js +40 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-json.js +165 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-telemetry.js +36 -0
- package/dist/standalone/node_modules/next/dist/trace/shared.js +39 -0
- package/dist/standalone/node_modules/next/dist/trace/trace.js +211 -0
- package/dist/standalone/node_modules/next/font/google/target.css +1 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/at-rule.js +25 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/comment.js +13 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/container.js +439 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/css-syntax-error.js +100 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/declaration.js +24 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/document.js +33 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/fromJSON.js +54 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/input.js +248 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/lazy-result.js +550 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/list.js +58 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/map-generator.js +359 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/no-work-result.js +135 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/node.js +381 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/parse.js +42 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/parser.js +610 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/postcss.js +101 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/previous-map.js +142 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/processor.js +67 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/result.js +42 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/root.js +61 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/rule.js +27 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/stringifier.js +353 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/stringify.js +11 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/symbols.js +5 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/tokenize.js +266 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/warn-once.js +13 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/warning.js +37 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/package.json +88 -0
- package/dist/standalone/node_modules/next/package.json +136 -0
- package/dist/standalone/node_modules/picocolors/package.json +25 -0
- package/dist/standalone/node_modules/picocolors/picocolors.js +75 -0
- package/dist/standalone/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/dist/standalone/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/dist/standalone/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/dist/standalone/node_modules/react/cjs/react.development.js +1284 -0
- package/dist/standalone/node_modules/react/cjs/react.production.js +542 -0
- package/dist/standalone/node_modules/react/compiler-runtime.js +14 -0
- package/dist/standalone/node_modules/react/index.js +7 -0
- package/dist/standalone/node_modules/react/jsx-dev-runtime.js +7 -0
- package/dist/standalone/node_modules/react/jsx-runtime.js +7 -0
- package/dist/standalone/node_modules/react/package.json +51 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +6603 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +6692 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.browser.production.js +7410 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.edge.production.js +7512 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.node.production.js +7707 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom.production.js +210 -0
- package/dist/standalone/node_modules/react-dom/index.js +38 -0
- package/dist/standalone/node_modules/react-dom/package.json +117 -0
- package/dist/standalone/node_modules/react-dom/server.browser.js +16 -0
- package/dist/standalone/node_modules/react-dom/server.edge.js +17 -0
- package/dist/standalone/node_modules/react-dom/server.js +3 -0
- package/dist/standalone/node_modules/react-dom/server.node.js +18 -0
- package/dist/standalone/node_modules/react-dom/static.js +3 -0
- package/dist/standalone/node_modules/react-dom/static.node.js +14 -0
- package/dist/standalone/node_modules/source-map-js/lib/array-set.js +121 -0
- package/dist/standalone/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/standalone/node_modules/source-map-js/lib/base64.js +67 -0
- package/dist/standalone/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/standalone/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/standalone/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-node.js +413 -0
- package/dist/standalone/node_modules/source-map-js/lib/util.js +594 -0
- package/dist/standalone/node_modules/source-map-js/package.json +71 -0
- package/dist/standalone/node_modules/source-map-js/source-map.js +8 -0
- package/dist/standalone/node_modules/styled-jsx/dist/index/index.js +499 -0
- package/dist/standalone/node_modules/styled-jsx/index.js +1 -0
- package/dist/standalone/node_modules/styled-jsx/package.json +132 -0
- package/dist/standalone/node_modules/styled-jsx/style.js +1 -0
- package/dist/standalone/package.json +54 -0
- package/dist/standalone/scripts/whisper_transcribe.py +41 -0
- package/dist/standalone/server.js +38 -0
- package/package.json +54 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{"use strict";var e={491:e=>{e.exports=require("assert")},300:e=>{e.exports=require("buffer")},361:e=>{e.exports=require("events")},147:e=>{e.exports=require("fs")},61:e=>{e.exports=require("node:assert")},5:e=>{e.exports=require("node:crypto")},673:e=>{e.exports=require("node:events")},561:e=>{e.exports=require("node:fs")},977:e=>{e.exports=require("node:fs/promises")},411:e=>{e.exports=require("node:path")},492:e=>{e.exports=require("node:stream")},915:e=>{e.exports=require("node:string_decoder")},17:e=>{e.exports=require("path")},796:e=>{e.exports=require("zlib")},590:(e,f,p)=>{var d=(e,f)=>()=>(f||e((f={exports:{}}).exports,f),f.exports);var m=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.Minipass=e.isWritable=e.isReadable=e.isStream=void 0;var m=typeof process=="object"&&process?process:{stdout:null,stderr:null},y=p(673),b=f(p(492)),v=p(915),bo=f=>!!f&&typeof f=="object"&&(f instanceof J||f instanceof b.default||(0,e.isReadable)(f)||(0,e.isWritable)(f));e.isStream=bo;var So=e=>!!e&&typeof e=="object"&&e instanceof y.EventEmitter&&typeof e.pipe=="function"&&e.pipe!==b.default.Writable.prototype.pipe;e.isReadable=So;var go=e=>!!e&&typeof e=="object"&&e instanceof y.EventEmitter&&typeof e.write=="function"&&typeof e.end=="function";e.isWritable=go;var _=Symbol("EOF"),w=Symbol("maybeEmitEnd"),g=Symbol("emittedEnd"),S=Symbol("emittingEnd"),O=Symbol("emittedError"),R=Symbol("closed"),k=Symbol("read"),P=Symbol("flush"),T=Symbol("flushChunk"),D=Symbol("encoding"),M=Symbol("decoder"),x=Symbol("flowing"),L=Symbol("paused"),A=Symbol("resume"),N=Symbol("buffer"),I=Symbol("pipes"),F=Symbol("bufferLength"),B=Symbol("bufferPush"),z=Symbol("bufferShift"),C=Symbol("objectMode"),j=Symbol("destroyed"),U=Symbol("error"),W=Symbol("emitData"),Z=Symbol("emitEnd"),H=Symbol("emitEnd2"),G=Symbol("async"),Y=Symbol("abort"),$=Symbol("aborted"),q=Symbol("signal"),V=Symbol("dataListeners"),K=Symbol("discarded"),pt=e=>Promise.resolve().then(e),Ro=e=>e(),Oo=e=>e==="end"||e==="finish"||e==="prefinish",vo=e=>e instanceof ArrayBuffer||!!e&&typeof e=="object"&&e.constructor&&e.constructor.name==="ArrayBuffer"&&e.byteLength>=0,To=e=>!Buffer.isBuffer(e)&&ArrayBuffer.isView(e),X=class{src;dest;opts;ondrain;constructor(e,f,p){this.src=e,this.dest=f,this.opts=p,this.ondrain=()=>e[A](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(e){}end(){this.unpipe(),this.opts.end&&this.dest.end()}},Q=class extends X{unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(e,f,p){super(e,f,p),this.proxyErrors=e=>this.dest.emit("error",e),e.on("error",this.proxyErrors)}},Do=e=>!!e.objectMode,Po=e=>!e.objectMode&&!!e.encoding&&e.encoding!=="buffer",J=class extends y.EventEmitter{[x]=!1;[L]=!1;[I]=[];[N]=[];[C];[D];[G];[M];[_]=!1;[g]=!1;[S]=!1;[R]=!1;[O]=null;[F]=0;[j]=!1;[q];[$]=!1;[V]=0;[K]=!1;writable=!0;readable=!0;constructor(...e){let f=e[0]||{};if(super(),f.objectMode&&typeof f.encoding=="string")throw new TypeError("Encoding and objectMode may not be used together");Do(f)?(this[C]=!0,this[D]=null):Po(f)?(this[D]=f.encoding,this[C]=!1):(this[C]=!1,this[D]=null),this[G]=!!f.async,this[M]=this[D]?new v.StringDecoder(this[D]):null,f&&f.debugExposeBuffer===!0&&Object.defineProperty(this,"buffer",{get:()=>this[N]}),f&&f.debugExposePipes===!0&&Object.defineProperty(this,"pipes",{get:()=>this[I]});let{signal:p}=f;p&&(this[q]=p,p.aborted?this[Y]():p.addEventListener("abort",(()=>this[Y]())))}get bufferLength(){return this[F]}get encoding(){return this[D]}set encoding(e){throw new Error("Encoding must be set at instantiation time")}setEncoding(e){throw new Error("Encoding must be set at instantiation time")}get objectMode(){return this[C]}set objectMode(e){throw new Error("objectMode must be set at instantiation time")}get async(){return this[G]}set async(e){this[G]=this[G]||!!e}[Y](){this[$]=!0,this.emit("abort",this[q]?.reason),this.destroy(this[q]?.reason)}get aborted(){return this[$]}set aborted(e){}write(e,f,p){if(this[$])return!1;if(this[_])throw new Error("write after end");if(this[j])return this.emit("error",Object.assign(new Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;typeof f=="function"&&(p=f,f="utf8"),f||(f="utf8");let m=this[G]?pt:Ro;if(!this[C]&&!Buffer.isBuffer(e)){if(To(e))e=Buffer.from(e.buffer,e.byteOffset,e.byteLength);else if(vo(e))e=Buffer.from(e);else if(typeof e!="string")throw new Error("Non-contiguous data written to non-objectMode stream")}return this[C]?(this[x]&&this[F]!==0&&this[P](!0),this[x]?this.emit("data",e):this[B](e),this[F]!==0&&this.emit("readable"),p&&m(p),this[x]):e.length?(typeof e=="string"&&!(f===this[D]&&!this[M]?.lastNeed)&&(e=Buffer.from(e,f)),Buffer.isBuffer(e)&&this[D]&&(e=this[M].write(e)),this[x]&&this[F]!==0&&this[P](!0),this[x]?this.emit("data",e):this[B](e),this[F]!==0&&this.emit("readable"),p&&m(p),this[x]):(this[F]!==0&&this.emit("readable"),p&&m(p),this[x])}read(e){if(this[j])return null;if(this[K]=!1,this[F]===0||e===0||e&&e>this[F])return this[w](),null;this[C]&&(e=null),this[N].length>1&&!this[C]&&(this[N]=[this[D]?this[N].join(""):Buffer.concat(this[N],this[F])]);let f=this[k](e||null,this[N][0]);return this[w](),f}[k](e,f){if(this[C])this[z]();else{let p=f;e===p.length||e===null?this[z]():typeof p=="string"?(this[N][0]=p.slice(e),f=p.slice(0,e),this[F]-=e):(this[N][0]=p.subarray(e),f=p.subarray(0,e),this[F]-=e)}return this.emit("data",f),!this[N].length&&!this[_]&&this.emit("drain"),f}end(e,f,p){return typeof e=="function"&&(p=e,e=void 0),typeof f=="function"&&(p=f,f="utf8"),e!==void 0&&this.write(e,f),p&&this.once("end",p),this[_]=!0,this.writable=!1,(this[x]||!this[L])&&this[w](),this}[A](){this[j]||(!this[V]&&!this[I].length&&(this[K]=!0),this[L]=!1,this[x]=!0,this.emit("resume"),this[N].length?this[P]():this[_]?this[w]():this.emit("drain"))}resume(){return this[A]()}pause(){this[x]=!1,this[L]=!0,this[K]=!1}get destroyed(){return this[j]}get flowing(){return this[x]}get paused(){return this[L]}[B](e){this[C]?this[F]+=1:this[F]+=e.length,this[N].push(e)}[z](){return this[C]?this[F]-=1:this[F]-=this[N][0].length,this[N].shift()}[P](e=!1){do{}while(this[T](this[z]())&&this[N].length);!e&&!this[N].length&&!this[_]&&this.emit("drain")}[T](e){return this.emit("data",e),this[x]}pipe(e,f){if(this[j])return e;this[K]=!1;let p=this[g];return f=f||{},e===m.stdout||e===m.stderr?f.end=!1:f.end=f.end!==!1,f.proxyErrors=!!f.proxyErrors,p?f.end&&e.end():(this[I].push(f.proxyErrors?new Q(this,e,f):new X(this,e,f)),this[G]?pt((()=>this[A]())):this[A]()),e}unpipe(e){let f=this[I].find((f=>f.dest===e));f&&(this[I].length===1?(this[x]&&this[V]===0&&(this[x]=!1),this[I]=[]):this[I].splice(this[I].indexOf(f),1),f.unpipe())}addListener(e,f){return this.on(e,f)}on(e,f){let p=super.on(e,f);if(e==="data")this[K]=!1,this[V]++,!this[I].length&&!this[x]&&this[A]();else if(e==="readable"&&this[F]!==0)super.emit("readable");else if(Oo(e)&&this[g])super.emit(e),this.removeAllListeners(e);else if(e==="error"&&this[O]){let e=f;this[G]?pt((()=>e.call(this,this[O]))):e.call(this,this[O])}return p}removeListener(e,f){return this.off(e,f)}off(e,f){let p=super.off(e,f);return e==="data"&&(this[V]=this.listeners("data").length,this[V]===0&&!this[K]&&!this[I].length&&(this[x]=!1)),p}removeAllListeners(e){let f=super.removeAllListeners(e);return(e==="data"||e===void 0)&&(this[V]=0,!this[K]&&!this[I].length&&(this[x]=!1)),f}get emittedEnd(){return this[g]}[w](){!this[S]&&!this[g]&&!this[j]&&this[N].length===0&&this[_]&&(this[S]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[R]&&this.emit("close"),this[S]=!1)}emit(e,...f){let p=f[0];if(e!=="error"&&e!=="close"&&e!==j&&this[j])return!1;if(e==="data")return!this[C]&&!p?!1:this[G]?(pt((()=>this[W](p))),!0):this[W](p);if(e==="end")return this[Z]();if(e==="close"){if(this[R]=!0,!this[g]&&!this[j])return!1;let e=super.emit("close");return this.removeAllListeners("close"),e}else if(e==="error"){this[O]=p,super.emit(U,p);let e=!this[q]||this.listeners("error").length?super.emit("error",p):!1;return this[w](),e}else if(e==="resume"){let e=super.emit("resume");return this[w](),e}else if(e==="finish"||e==="prefinish"){let f=super.emit(e);return this.removeAllListeners(e),f}let m=super.emit(e,...f);return this[w](),m}[W](e){for(let f of this[I])f.dest.write(e)===!1&&this.pause();let f=this[K]?!1:super.emit("data",e);return this[w](),f}[Z](){return this[g]?!1:(this[g]=!0,this.readable=!1,this[G]?(pt((()=>this[H]())),!0):this[H]())}[H](){if(this[M]){let e=this[M].end();if(e){for(let f of this[I])f.dest.write(e);this[K]||super.emit("data",e)}}for(let e of this[I])e.end();let e=super.emit("end");return this.removeAllListeners("end"),e}async collect(){let e=Object.assign([],{dataLength:0});this[C]||(e.dataLength=0);let f=this.promise();return this.on("data",(f=>{e.push(f),this[C]||(e.dataLength+=f.length)})),await f,e}async concat(){if(this[C])throw new Error("cannot concat in objectMode");let e=await this.collect();return this[D]?e.join(""):Buffer.concat(e,e.dataLength)}async promise(){return new Promise(((e,f)=>{this.on(j,(()=>f(new Error("stream destroyed")))),this.on("error",(e=>f(e))),this.on("end",(()=>e()))}))}[Symbol.asyncIterator](){this[K]=!1;let e=!1,t=async()=>(this.pause(),e=!0,{value:void 0,done:!0});return{next:()=>{if(e)return t();let f=this.read();if(f!==null)return Promise.resolve({done:!1,value:f});if(this[_])return t();let p,m,a=e=>{this.off("data",h),this.off("end",l),this.off(j,u),t(),m(e)},h=e=>{this.off("error",a),this.off("end",l),this.off(j,u),this.pause(),p({value:e,done:!!this[_]})},l=()=>{this.off("error",a),this.off("data",h),this.off(j,u),t(),p({done:!0,value:void 0})},u=()=>a(new Error("stream destroyed"));return new Promise(((e,f)=>{m=f,p=e,this.once(j,u),this.once("error",a),this.once("end",l),this.once("data",h)}))},throw:t,return:t,[Symbol.asyncIterator](){return this},[Symbol.asyncDispose]:async()=>{}}}[Symbol.iterator](){this[K]=!1;let e=!1,t=()=>(this.pause(),this.off(U,t),this.off(j,t),this.off("end",t),e=!0,{done:!0,value:void 0}),i=()=>{if(e)return t();let f=this.read();return f===null?t():{done:!1,value:f}};return this.once("end",t),this.once(U,t),this.once(j,t),{next:i,throw:t,return:t,[Symbol.iterator](){return this},[Symbol.dispose]:()=>{}}}destroy(e){if(this[j])return e?this.emit("error",e):this.emit(j),this;this[j]=!0,this[K]=!0,this[N].length=0,this[F]=0;let f=this;return typeof f.close=="function"&&!this[R]&&f.close(),e?this.emit("error",e):this.emit(j),this}static get isStream(){return e.isStream}};e.Minipass=J}));var y=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.WriteStreamSync=e.WriteStream=e.ReadStreamSync=e.ReadStream=void 0;var y=f(p(361)),b=f(p(147)),v=m(),_=b.default.writev,w=Symbol("_autoClose"),g=Symbol("_close"),S=Symbol("_ended"),O=Symbol("_fd"),R=Symbol("_finished"),k=Symbol("_flags"),P=Symbol("_flush"),T=Symbol("_handleChunk"),D=Symbol("_makeBuf"),M=Symbol("_mode"),x=Symbol("_needDrain"),L=Symbol("_onerror"),A=Symbol("_onopen"),N=Symbol("_onread"),I=Symbol("_onwrite"),F=Symbol("_open"),B=Symbol("_path"),z=Symbol("_pos"),C=Symbol("_queue"),j=Symbol("_read"),U=Symbol("_readSize"),W=Symbol("_reading"),Z=Symbol("_remain"),H=Symbol("_size"),G=Symbol("_write"),Y=Symbol("_writing"),$=Symbol("_defaultFlag"),q=Symbol("_errored"),V=class extends v.Minipass{[q]=!1;[O];[B];[U];[W]=!1;[H];[Z];[w];constructor(e,f){if(f=f||{},super(f),this.readable=!0,this.writable=!1,typeof e!="string")throw new TypeError("path must be a string");this[q]=!1,this[O]=typeof f.fd=="number"?f.fd:void 0,this[B]=e,this[U]=f.readSize||16*1024*1024,this[W]=!1,this[H]=typeof f.size=="number"?f.size:1/0,this[Z]=this[H],this[w]=typeof f.autoClose=="boolean"?f.autoClose:!0,typeof this[O]=="number"?this[j]():this[F]()}get fd(){return this[O]}get path(){return this[B]}write(){throw new TypeError("this is a readable stream")}end(){throw new TypeError("this is a readable stream")}[F](){b.default.open(this[B],"r",((e,f)=>this[A](e,f)))}[A](e,f){e?this[L](e):(this[O]=f,this.emit("open",f),this[j]())}[D](){return Buffer.allocUnsafe(Math.min(this[U],this[Z]))}[j](){if(!this[W]){this[W]=!0;let e=this[D]();if(e.length===0)return process.nextTick((()=>this[N](null,0,e)));b.default.read(this[O],e,0,e.length,null,((e,f,p)=>this[N](e,f,p)))}}[N](e,f,p){this[W]=!1,e?this[L](e):this[T](f,p)&&this[j]()}[g](){if(this[w]&&typeof this[O]=="number"){let e=this[O];this[O]=void 0,b.default.close(e,(e=>e?this.emit("error",e):this.emit("close")))}}[L](e){this[W]=!0,this[g](),this.emit("error",e)}[T](e,f){let p=!1;return this[Z]-=e,e>0&&(p=super.write(e<f.length?f.subarray(0,e):f)),(e===0||this[Z]<=0)&&(p=!1,this[g](),super.end()),p}emit(e,...f){switch(e){case"prefinish":case"finish":return!1;case"drain":return typeof this[O]=="number"&&this[j](),!1;case"error":return this[q]?!1:(this[q]=!0,super.emit(e,...f));default:return super.emit(e,...f)}}};e.ReadStream=V;var K=class extends V{[F](){let e=!0;try{this[A](null,b.default.openSync(this[B],"r")),e=!1}finally{e&&this[g]()}}[j](){let e=!0;try{if(!this[W]){this[W]=!0;do{let e=this[D](),f=e.length===0?0:b.default.readSync(this[O],e,0,e.length,null);if(!this[T](f,e))break}while(!0);this[W]=!1}e=!1}finally{e&&this[g]()}}[g](){if(this[w]&&typeof this[O]=="number"){let e=this[O];this[O]=void 0,b.default.closeSync(e),this.emit("close")}}};e.ReadStreamSync=K;var X=class extends y.default{readable=!1;writable=!0;[q]=!1;[Y]=!1;[S]=!1;[C]=[];[x]=!1;[B];[M];[w];[O];[$];[k];[R]=!1;[z];constructor(e,f){f=f||{},super(f),this[B]=e,this[O]=typeof f.fd=="number"?f.fd:void 0,this[M]=f.mode===void 0?438:f.mode,this[z]=typeof f.start=="number"?f.start:void 0,this[w]=typeof f.autoClose=="boolean"?f.autoClose:!0;let p=this[z]!==void 0?"r+":"w";this[$]=f.flags===void 0,this[k]=f.flags===void 0?p:f.flags,this[O]===void 0&&this[F]()}emit(e,...f){if(e==="error"){if(this[q])return!1;this[q]=!0}return super.emit(e,...f)}get fd(){return this[O]}get path(){return this[B]}[L](e){this[g](),this[Y]=!0,this.emit("error",e)}[F](){b.default.open(this[B],this[k],this[M],((e,f)=>this[A](e,f)))}[A](e,f){this[$]&&this[k]==="r+"&&e&&e.code==="ENOENT"?(this[k]="w",this[F]()):e?this[L](e):(this[O]=f,this.emit("open",f),this[Y]||this[P]())}end(e,f){return e&&this.write(e,f),this[S]=!0,!this[Y]&&!this[C].length&&typeof this[O]=="number"&&this[I](null,0),this}write(e,f){return typeof e=="string"&&(e=Buffer.from(e,f)),this[S]?(this.emit("error",new Error("write() after end()")),!1):this[O]===void 0||this[Y]||this[C].length?(this[C].push(e),this[x]=!0,!1):(this[Y]=!0,this[G](e),!0)}[G](e){b.default.write(this[O],e,0,e.length,this[z],((e,f)=>this[I](e,f)))}[I](e,f){e?this[L](e):(this[z]!==void 0&&typeof f=="number"&&(this[z]+=f),this[C].length?this[P]():(this[Y]=!1,this[S]&&!this[R]?(this[R]=!0,this[g](),this.emit("finish")):this[x]&&(this[x]=!1,this.emit("drain"))))}[P](){if(this[C].length===0)this[S]&&this[I](null,0);else if(this[C].length===1)this[G](this[C].pop());else{let e=this[C];this[C]=[],_(this[O],e,this[z],((e,f)=>this[I](e,f)))}}[g](){if(this[w]&&typeof this[O]=="number"){let e=this[O];this[O]=void 0,b.default.close(e,(e=>e?this.emit("error",e):this.emit("close")))}}};e.WriteStream=X;var Q=class extends X{[F](){let e;if(this[$]&&this[k]==="r+")try{e=b.default.openSync(this[B],this[k],this[M])}catch(e){if(e?.code==="ENOENT")return this[k]="w",this[F]();throw e}else e=b.default.openSync(this[B],this[k],this[M]);this[A](null,e)}[g](){if(this[w]&&typeof this[O]=="number"){let e=this[O];this[O]=void 0,b.default.closeSync(e),this.emit("close")}}[G](e){let f=!0;try{this[I](null,b.default.writeSync(this[O],e,0,e.length,this[z])),f=!1}finally{if(f)try{this[g]()}catch{}}}};e.WriteStreamSync=Q}));var b=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.dealias=e.isNoFile=e.isFile=e.isAsync=e.isSync=e.isAsyncNoFile=e.isSyncNoFile=e.isAsyncFile=e.isSyncFile=void 0;var f=new Map([["C","cwd"],["f","file"],["z","gzip"],["P","preservePaths"],["U","unlink"],["strip-components","strip"],["stripComponents","strip"],["keep-newer","newer"],["keepNewer","newer"],["keep-newer-files","newer"],["keepNewerFiles","newer"],["k","keep"],["keep-existing","keep"],["keepExisting","keep"],["m","noMtime"],["no-mtime","noMtime"],["p","preserveOwner"],["L","follow"],["h","follow"],["onentry","onReadEntry"]]),Io=e=>!!e.sync&&!!e.file;e.isSyncFile=Io;var Co=e=>!e.sync&&!!e.file;e.isAsyncFile=Co;var Fo=e=>!!e.sync&&!e.file;e.isSyncNoFile=Fo;var Bo=e=>!e.sync&&!e.file;e.isAsyncNoFile=Bo;var zo=e=>!!e.sync;e.isSync=zo;var ko=e=>!e.sync;e.isAsync=ko;var jo=e=>!!e.file;e.isFile=jo;var xo=e=>!e.file;e.isNoFile=xo;var Uo=e=>{let p=f.get(e);return p||e},qo=(e={})=>{if(!e)return{};let f={};for(let[p,m]of Object.entries(e)){let e=Uo(p);f[e]=m}return f.chmod===void 0&&f.noChmod===!1&&(f.chmod=!0),delete f.noChmod,f};e.dealias=qo}));var v=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.makeCommand=void 0;var f=b(),Wo=(e,p,m,y,b)=>Object.assign(((v=[],_,w)=>{Array.isArray(v)&&(_=v,v={}),typeof _=="function"&&(w=_,_=void 0),_?_=Array.from(_):_=[];let g=(0,f.dealias)(v);if(b?.(g,_),(0,f.isSyncFile)(g)){if(typeof w=="function")throw new TypeError("callback not supported for sync tar functions");return e(g,_)}else if((0,f.isAsyncFile)(g)){let e=p(g,_),f=w||void 0;return f?e.then((()=>f()),f):e}else if((0,f.isSyncNoFile)(g)){if(typeof w=="function")throw new TypeError("callback not supported for sync tar functions");return m(g,_)}else if((0,f.isAsyncNoFile)(g)){if(typeof w=="function")throw new TypeError("callback only supported with file option");return y(g,_)}else throw new Error("impossible options??")}),{syncFile:e,asyncFile:p,syncNoFile:m,asyncNoFile:y,validate:b});e.makeCommand=Wo}));var _=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.constants=void 0;var m=f(p(796)),y=m.default.constants||{ZLIB_VERNUM:4736};e.constants=Object.freeze(Object.assign(Object.create(null),{Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_VERSION_ERROR:-6,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,DEFLATE:1,INFLATE:2,GZIP:3,GUNZIP:4,DEFLATERAW:5,INFLATERAW:6,UNZIP:7,BROTLI_DECODE:8,BROTLI_ENCODE:9,Z_MIN_WINDOWBITS:8,Z_MAX_WINDOWBITS:15,Z_DEFAULT_WINDOWBITS:15,Z_MIN_CHUNK:64,Z_MAX_CHUNK:1/0,Z_DEFAULT_CHUNK:16384,Z_MIN_MEMLEVEL:1,Z_MAX_MEMLEVEL:9,Z_DEFAULT_MEMLEVEL:8,Z_MIN_LEVEL:-1,Z_MAX_LEVEL:9,Z_DEFAULT_LEVEL:-1,BROTLI_OPERATION_PROCESS:0,BROTLI_OPERATION_FLUSH:1,BROTLI_OPERATION_FINISH:2,BROTLI_OPERATION_EMIT_METADATA:3,BROTLI_MODE_GENERIC:0,BROTLI_MODE_TEXT:1,BROTLI_MODE_FONT:2,BROTLI_DEFAULT_MODE:0,BROTLI_MIN_QUALITY:0,BROTLI_MAX_QUALITY:11,BROTLI_DEFAULT_QUALITY:11,BROTLI_MIN_WINDOW_BITS:10,BROTLI_MAX_WINDOW_BITS:24,BROTLI_LARGE_MAX_WINDOW_BITS:30,BROTLI_DEFAULT_WINDOW:22,BROTLI_MIN_INPUT_BLOCK_BITS:16,BROTLI_MAX_INPUT_BLOCK_BITS:24,BROTLI_PARAM_MODE:0,BROTLI_PARAM_QUALITY:1,BROTLI_PARAM_LGWIN:2,BROTLI_PARAM_LGBLOCK:3,BROTLI_PARAM_DISABLE_LITERAL_CONTEXT_MODELING:4,BROTLI_PARAM_SIZE_HINT:5,BROTLI_PARAM_LARGE_WINDOW:6,BROTLI_PARAM_NPOSTFIX:7,BROTLI_PARAM_NDIRECT:8,BROTLI_DECODER_RESULT_ERROR:0,BROTLI_DECODER_RESULT_SUCCESS:1,BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT:2,BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT:3,BROTLI_DECODER_PARAM_DISABLE_RING_BUFFER_REALLOCATION:0,BROTLI_DECODER_PARAM_LARGE_WINDOW:1,BROTLI_DECODER_NO_ERROR:0,BROTLI_DECODER_SUCCESS:1,BROTLI_DECODER_NEEDS_MORE_INPUT:2,BROTLI_DECODER_NEEDS_MORE_OUTPUT:3,BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_NIBBLE:-1,BROTLI_DECODER_ERROR_FORMAT_RESERVED:-2,BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_META_NIBBLE:-3,BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_ALPHABET:-4,BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_SAME:-5,BROTLI_DECODER_ERROR_FORMAT_CL_SPACE:-6,BROTLI_DECODER_ERROR_FORMAT_HUFFMAN_SPACE:-7,BROTLI_DECODER_ERROR_FORMAT_CONTEXT_MAP_REPEAT:-8,BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_1:-9,BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_2:-10,BROTLI_DECODER_ERROR_FORMAT_TRANSFORM:-11,BROTLI_DECODER_ERROR_FORMAT_DICTIONARY:-12,BROTLI_DECODER_ERROR_FORMAT_WINDOW_BITS:-13,BROTLI_DECODER_ERROR_FORMAT_PADDING_1:-14,BROTLI_DECODER_ERROR_FORMAT_PADDING_2:-15,BROTLI_DECODER_ERROR_FORMAT_DISTANCE:-16,BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET:-19,BROTLI_DECODER_ERROR_INVALID_ARGUMENTS:-20,BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MODES:-21,BROTLI_DECODER_ERROR_ALLOC_TREE_GROUPS:-22,BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MAP:-25,BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_1:-26,BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_2:-27,BROTLI_DECODER_ERROR_ALLOC_BLOCK_TYPE_TREES:-30,BROTLI_DECODER_ERROR_UNREACHABLE:-31},y))}));var w=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),y=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),b=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var m=s(e),b=0;b<m.length;b++)m[b]!=="default"&&f(p,e,m[b]);return y(p,e),p}}(),v=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.ZstdDecompress=e.ZstdCompress=e.BrotliDecompress=e.BrotliCompress=e.Unzip=e.InflateRaw=e.DeflateRaw=e.Gunzip=e.Gzip=e.Inflate=e.Deflate=e.Zlib=e.ZlibError=e.constants=void 0;var w=v(p(491)),g=p(300),S=m(),O=b(p(796)),R=_(),k=_();Object.defineProperty(e,"constants",{enumerable:!0,get:function(){return k.constants}});var P=g.Buffer.concat,T=Object.getOwnPropertyDescriptor(g.Buffer,"concat"),ea=e=>e,D=T?.writable===!0||T?.set!==void 0?e=>{g.Buffer.concat=e?ea:P}:e=>{},M=Symbol("_superWrite"),x=class extends Error{code;errno;constructor(e,f){super("zlib: "+e.message,{cause:e}),this.code=e.code,this.errno=e.errno,this.code||(this.code="ZLIB_ERROR"),this.message="zlib: "+e.message,Error.captureStackTrace(this,f??this.constructor)}get name(){return"ZlibError"}};e.ZlibError=x;var L=Symbol("flushFlag"),A=class extends S.Minipass{#e=!1;#t=!1;#i;#r;#s;#n;#o;get sawError(){return this.#e}get handle(){return this.#n}get flushFlag(){return this.#i}constructor(e,f){if(!e||typeof e!="object")throw new TypeError("invalid options for ZlibBase constructor");if(super(e),this.#i=e.flush??0,this.#r=e.finishFlush??0,this.#s=e.fullFlushFlag??0,typeof O[f]!="function")throw new TypeError("Compression method not supported: "+f);try{this.#n=new O[f](e)}catch(e){throw new x(e,this.constructor)}this.#o=e=>{this.#e||(this.#e=!0,this.close(),this.emit("error",e))},this.#n?.on("error",(e=>this.#o(new x(e)))),this.once("end",(()=>this.close))}close(){this.#n&&(this.#n.close(),this.#n=void 0,this.emit("close"))}reset(){if(!this.#e)return(0,w.default)(this.#n,"zlib binding closed"),this.#n.reset?.()}flush(e){this.ended||(typeof e!="number"&&(e=this.#s),this.write(Object.assign(g.Buffer.alloc(0),{[L]:e})))}end(e,f,p){return typeof e=="function"&&(p=e,f=void 0,e=void 0),typeof f=="function"&&(p=f,f=void 0),e&&(f?this.write(e,f):this.write(e)),this.flush(this.#r),this.#t=!0,super.end(p)}get ended(){return this.#t}[M](e){return super.write(e)}write(e,f,p){if(typeof f=="function"&&(p=f,f="utf8"),typeof e=="string"&&(e=g.Buffer.from(e,f)),this.#e)return;(0,w.default)(this.#n,"zlib binding closed");let m=this.#n._handle,y=m.close;m.close=()=>{};let b=this.#n.close;this.#n.close=()=>{},D(!0);let v;try{let f=typeof e[L]=="number"?e[L]:this.#i;v=this.#n._processChunk(e,f),D(!1)}catch(e){D(!1),this.#o(new x(e,this.write))}finally{this.#n&&(this.#n._handle=m,m.close=y,this.#n.close=b,this.#n.removeAllListeners("error"))}this.#n&&this.#n.on("error",(e=>this.#o(new x(e,this.write))));let _;if(v)if(Array.isArray(v)&&v.length>0){let e=v[0];_=this[M](g.Buffer.from(e));for(let e=1;e<v.length;e++)_=this[M](v[e])}else _=this[M](g.Buffer.from(v));return p&&p(),_}},N=class extends A{#e;#t;constructor(e,f){e=e||{},e.flush=e.flush||R.constants.Z_NO_FLUSH,e.finishFlush=e.finishFlush||R.constants.Z_FINISH,e.fullFlushFlag=R.constants.Z_FULL_FLUSH,super(e,f),this.#e=e.level,this.#t=e.strategy}params(e,f){if(!this.sawError){if(!this.handle)throw new Error("cannot switch params when binding is closed");if(!this.handle.params)throw new Error("not supported in this implementation");if(this.#e!==e||this.#t!==f){this.flush(R.constants.Z_SYNC_FLUSH),(0,w.default)(this.handle,"zlib binding closed");let p=this.handle.flush;this.handle.flush=(e,f)=>{typeof e=="function"&&(f=e,e=this.flushFlag),this.flush(e),f?.()};try{this.handle.params(e,f)}finally{this.handle.flush=p}this.handle&&(this.#e=e,this.#t=f)}}}};e.Zlib=N;var I=class extends N{constructor(e){super(e,"Deflate")}};e.Deflate=I;var F=class extends N{constructor(e){super(e,"Inflate")}};e.Inflate=F;var B=class extends N{#e;constructor(e){super(e,"Gzip"),this.#e=e&&!!e.portable}[M](e){return this.#e?(this.#e=!1,e[9]=255,super[M](e)):super[M](e)}};e.Gzip=B;var z=class extends N{constructor(e){super(e,"Gunzip")}};e.Gunzip=z;var C=class extends N{constructor(e){super(e,"DeflateRaw")}};e.DeflateRaw=C;var j=class extends N{constructor(e){super(e,"InflateRaw")}};e.InflateRaw=j;var U=class extends N{constructor(e){super(e,"Unzip")}};e.Unzip=U;var W=class extends A{constructor(e,f){e=e||{},e.flush=e.flush||R.constants.BROTLI_OPERATION_PROCESS,e.finishFlush=e.finishFlush||R.constants.BROTLI_OPERATION_FINISH,e.fullFlushFlag=R.constants.BROTLI_OPERATION_FLUSH,super(e,f)}},Z=class extends W{constructor(e){super(e,"BrotliCompress")}};e.BrotliCompress=Z;var H=class extends W{constructor(e){super(e,"BrotliDecompress")}};e.BrotliDecompress=H;var G=class extends A{constructor(e,f){e=e||{},e.flush=e.flush||R.constants.ZSTD_e_continue,e.finishFlush=e.finishFlush||R.constants.ZSTD_e_end,e.fullFlushFlag=R.constants.ZSTD_e_flush,super(e,f)}},Y=class extends G{constructor(e){super(e,"ZstdCompress")}};e.ZstdCompress=Y;var $=class extends G{constructor(e){super(e,"ZstdDecompress")}};e.ZstdDecompress=$}));var g=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.parse=e.encode=void 0;var ta=(e,f)=>{if(Number.isSafeInteger(e))e<0?sa(e,f):ia(e,f);else throw Error("cannot encode number outside of javascript safe integer range");return f};e.encode=ta;var ia=(e,f)=>{f[0]=128;for(var p=f.length;p>1;p--)f[p-1]=e&255,e=Math.floor(e/256)},sa=(e,f)=>{f[0]=255;var p=!1;e=e*-1;for(var m=f.length;m>1;m--){var y=e&255;e=Math.floor(e/256),p?f[m-1]=Hr(y):y===0?f[m-1]=0:(p=!0,f[m-1]=Zr(y))}},ra=e=>{let f=e[0],p=f===128?oa(e.subarray(1,e.length)):f===255?na(e):null;if(p===null)throw Error("invalid base256 encoding");if(!Number.isSafeInteger(p))throw Error("parsed number outside of javascript safe integer range");return p};e.parse=ra;var na=e=>{for(var f=e.length,p=0,m=!1,y=f-1;y>-1;y--){var b=Number(e[y]),v;m?v=Hr(b):b===0?v=b:(m=!0,v=Zr(b)),v!==0&&(p-=v*Math.pow(256,f-y-1))}return p},oa=e=>{for(var f=e.length,p=0,m=f-1;m>-1;m--){var y=Number(e[m]);y!==0&&(p+=y*Math.pow(256,f-m-1))}return p},Hr=e=>(255^e)&255,Zr=e=>(255^e)+1&255}));var S=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.code=e.name=e.isName=e.isCode=void 0;var aa=f=>e.name.has(f);e.isCode=aa;var ha=f=>e.code.has(f);e.isName=ha;e.name=new Map([["0","File"],["","OldFile"],["1","Link"],["2","SymbolicLink"],["3","CharacterDevice"],["4","BlockDevice"],["5","Directory"],["6","FIFO"],["7","ContiguousFile"],["g","GlobalExtendedHeader"],["x","ExtendedHeader"],["A","SolarisACL"],["D","GNUDumpDir"],["I","Inode"],["K","NextFileHasLongLinkpath"],["L","NextFileHasLongPath"],["M","ContinuationFile"],["N","OldGnuLongPath"],["S","SparseFile"],["V","TapeVolumeHeader"],["X","OldExtendedHeader"]]);e.code=new Map(Array.from(e.name).map((e=>[e[1],e[0]])))}));var O=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),m=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),y=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var y=s(e),b=0;b<y.length;b++)y[b]!=="default"&&f(p,e,y[b]);return m(p,e),p}}();Object.defineProperty(e,"__esModule",{value:!0});e.Header=void 0;var b=p(411),v=y(g()),_=y(S()),w=class{cksumValid=!1;needPax=!1;nullBlock=!1;block;path;mode;uid;gid;size;cksum;#e="Unsupported";linkpath;uname;gname;devmaj=0;devmin=0;atime;ctime;mtime;charset;comment;constructor(e,f=0,p,m){Buffer.isBuffer(e)?this.decode(e,f||0,p,m):e&&this.#t(e)}decode(e,f,p,m){if(f||(f=0),!e||!(e.length>=f+512))throw new Error("need 512 bytes for header");this.path=p?.path??Ce(e,f,100),this.mode=p?.mode??m?.mode??be(e,f+100,8),this.uid=p?.uid??m?.uid??be(e,f+108,8),this.gid=p?.gid??m?.gid??be(e,f+116,8),this.size=p?.size??m?.size??be(e,f+124,12),this.mtime=p?.mtime??m?.mtime??Ds(e,f+136,12),this.cksum=be(e,f+148,12),m&&this.#t(m,!0),p&&this.#t(p);let y=Ce(e,f+156,1);if(_.isCode(y)&&(this.#e=y||"0"),this.#e==="0"&&this.path.slice(-1)==="/"&&(this.#e="5"),this.#e==="5"&&(this.size=0),this.linkpath=Ce(e,f+157,100),e.subarray(f+257,f+265).toString()==="ustar\x0000")if(this.uname=p?.uname??m?.uname??Ce(e,f+265,32),this.gname=p?.gname??m?.gname??Ce(e,f+297,32),this.devmaj=p?.devmaj??m?.devmaj??be(e,f+329,8)??0,this.devmin=p?.devmin??m?.devmin??be(e,f+337,8)??0,e[f+475]!==0){let p=Ce(e,f+345,155);this.path=p+"/"+this.path}else{let y=Ce(e,f+345,130);y&&(this.path=y+"/"+this.path),this.atime=p?.atime??m?.atime??Ds(e,f+476,12),this.ctime=p?.ctime??m?.ctime??Ds(e,f+488,12)}let b=256;for(let p=f;p<f+148;p++)b+=e[p];for(let p=f+156;p<f+512;p++)b+=e[p];this.cksumValid=b===this.cksum,this.cksum===void 0&&b===256&&(this.nullBlock=!0)}#t(e,f=!1){Object.assign(this,Object.fromEntries(Object.entries(e).filter((([e,p])=>!(p==null||e==="path"&&f||e==="linkpath"&&f||e==="global")))))}encode(e,f=0){if(e||(e=this.block=Buffer.alloc(512)),this.#e==="Unsupported"&&(this.#e="0"),!(e.length>=f+512))throw new Error("need 512 bytes for header");let p=this.ctime||this.atime?130:155,m=ca(this.path||"",p),y=m[0],b=m[1];this.needPax=!!m[2],this.needPax=Fe(e,f,100,y)||this.needPax,this.needPax=Se(e,f+100,8,this.mode)||this.needPax,this.needPax=Se(e,f+108,8,this.uid)||this.needPax,this.needPax=Se(e,f+116,8,this.gid)||this.needPax,this.needPax=Se(e,f+124,12,this.size)||this.needPax,this.needPax=Ps(e,f+136,12,this.mtime)||this.needPax,e[f+156]=this.#e.charCodeAt(0),this.needPax=Fe(e,f+157,100,this.linkpath)||this.needPax,e.write("ustar\x0000",f+257,8),this.needPax=Fe(e,f+265,32,this.uname)||this.needPax,this.needPax=Fe(e,f+297,32,this.gname)||this.needPax,this.needPax=Se(e,f+329,8,this.devmaj)||this.needPax,this.needPax=Se(e,f+337,8,this.devmin)||this.needPax,this.needPax=Fe(e,f+345,p,b)||this.needPax,e[f+475]!==0?this.needPax=Fe(e,f+345,155,b)||this.needPax:(this.needPax=Fe(e,f+345,130,b)||this.needPax,this.needPax=Ps(e,f+476,12,this.atime)||this.needPax,this.needPax=Ps(e,f+488,12,this.ctime)||this.needPax);let v=256;for(let p=f;p<f+148;p++)v+=e[p];for(let p=f+156;p<f+512;p++)v+=e[p];return this.cksum=v,Se(e,f+148,8,this.cksum),this.cksumValid=!0,this.needPax}get type(){return this.#e==="Unsupported"?this.#e:_.name.get(this.#e)}get typeKey(){return this.#e}set type(e){let f=String(_.code.get(e));if(_.isCode(f)||f==="Unsupported")this.#e=f;else if(_.isCode(e))this.#e=e;else throw new TypeError("invalid entry type: "+e)}};e.Header=w;var ca=(e,f)=>{let p=e,m="",y,v=b.posix.parse(e).root||".";if(Buffer.byteLength(p)<100)y=[p,m,!1];else{m=b.posix.dirname(p),p=b.posix.basename(p);do{Buffer.byteLength(p)<=100&&Buffer.byteLength(m)<=f?y=[p,m,!1]:Buffer.byteLength(p)>100&&Buffer.byteLength(m)<=f?y=[p.slice(0,99),m,!0]:(p=b.posix.join(b.posix.basename(m),p),m=b.posix.dirname(m))}while(m!==v&&y===void 0);y||(y=[e.slice(0,99),"",!0])}return y},Ce=(e,f,p)=>e.subarray(f,f+p).toString("utf8").replace(/\0.*/,""),Ds=(e,f,p)=>fa(be(e,f,p)),fa=e=>e===void 0?void 0:new Date(e*1e3),be=(e,f,p)=>Number(e[f])&128?v.parse(e.subarray(f,f+p)):ma(e,f,p),da=e=>isNaN(e)?void 0:e,ma=(e,f,p)=>da(parseInt(e.subarray(f,f+p).toString("utf8").replace(/\0.*$/,"").trim(),8)),O={12:8589934591,8:2097151},Se=(e,f,p,m)=>m===void 0?!1:m>O[p]||m<0?(v.encode(m,e.subarray(f,f+p)),!0):(_a(e,f,p,m),!1),_a=(e,f,p,m)=>e.write(wa(m,p),f,p,"ascii"),wa=(e,f)=>ya(Math.floor(e).toString(8),f),ya=(e,f)=>(e.length===f-1?e:new Array(f-e.length-1).join("0")+e+" ")+"\0",Ps=(e,f,p,m)=>m===void 0?!1:Se(e,f,p,m.getTime()/1e3),R=new Array(156).join("\0"),Fe=(e,f,p,m)=>m===void 0?!1:(e.write(m+R,f,p,"utf8"),m.length!==Buffer.byteLength(m)||m.length>p)}));var R=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.Pax=void 0;var f=p(411),m=O(),y=class s{atime;mtime;ctime;charset;comment;gid;uid;gname;uname;linkpath;dev;ino;nlink;path;size;mode;global;constructor(e,f=!1){this.atime=e.atime,this.charset=e.charset,this.comment=e.comment,this.ctime=e.ctime,this.dev=e.dev,this.gid=e.gid,this.global=f,this.gname=e.gname,this.ino=e.ino,this.linkpath=e.linkpath,this.mtime=e.mtime,this.nlink=e.nlink,this.path=e.path,this.size=e.size,this.uid=e.uid,this.uname=e.uname}encode(){let e=this.encodeBody();if(e==="")return Buffer.allocUnsafe(0);let p=Buffer.byteLength(e),y=512*Math.ceil(1+p/512),b=Buffer.allocUnsafe(y);for(let e=0;e<512;e++)b[e]=0;new m.Header({path:("PaxHeader/"+(0,f.basename)(this.path??"")).slice(0,99),mode:this.mode||420,uid:this.uid,gid:this.gid,size:p,mtime:this.mtime,type:this.global?"GlobalExtendedHeader":"ExtendedHeader",linkpath:"",uname:this.uname||"",gname:this.gname||"",devmaj:0,devmin:0,atime:this.atime,ctime:this.ctime}).encode(b),b.write(e,512,p,"utf8");for(let e=p+512;e<b.length;e++)b[e]=0;return b}encodeBody(){return this.encodeField("path")+this.encodeField("ctime")+this.encodeField("atime")+this.encodeField("dev")+this.encodeField("ino")+this.encodeField("nlink")+this.encodeField("charset")+this.encodeField("comment")+this.encodeField("gid")+this.encodeField("gname")+this.encodeField("linkpath")+this.encodeField("mtime")+this.encodeField("size")+this.encodeField("uid")+this.encodeField("uname")}encodeField(e){if(this[e]===void 0)return"";let f=this[e],p=f instanceof Date?f.getTime()/1e3:f,m=" "+(e==="dev"||e==="ino"||e==="nlink"?"SCHILY.":"")+e+"="+p+`\n`,y=Buffer.byteLength(m),b=Math.floor(Math.log(y)/Math.log(10))+1;return y+b>=Math.pow(10,b)&&(b+=1),b+y+m}static parse(e,f,p=!1){return new s(ga(Ra(e),f),p)}};e.Pax=y;var ga=(e,f)=>f?Object.assign({},f,e):e,Ra=e=>e.replace(/\n$/,"").split(`\n`).reduce(Oa,Object.create(null)),Oa=(e,f)=>{let p=parseInt(f,10);if(p!==Buffer.byteLength(f)+1)return e;f=f.slice((p+" ").length);let m=f.split("="),y=m.shift();if(!y)return e;let b=y.replace(/^SCHILY\.(dev|ino|nlink)/,"$1"),v=m.join("=");return e[b]=/^([A-Z]+\.)?([mac]|birth|creation)time$/.test(b)?new Date(Number(v)*1e3):/^[0-9]+$/.test(v)?+v:v,e}}));var k=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.normalizeWindowsPath=void 0;var f=process.env.TESTING_TAR_FAKE_PLATFORM||process.platform;e.normalizeWindowsPath=f!=="win32"?e=>e:e=>e&&e.replace(/\\/g,"/")}));var P=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.ReadEntry=void 0;var f=m(),p=k(),y=class extends f.Minipass{extended;globalExtended;header;startBlockSize;blockRemain;remain;type;meta=!1;ignore=!1;path;mode;uid;gid;uname;gname;size=0;mtime;atime;ctime;linkpath;dev;ino;nlink;invalid=!1;absolute;unsupported=!1;constructor(e,f,m){switch(super({}),this.pause(),this.extended=f,this.globalExtended=m,this.header=e,this.remain=e.size??0,this.startBlockSize=512*Math.ceil(this.remain/512),this.blockRemain=this.startBlockSize,this.type=e.type,this.type){case"File":case"OldFile":case"Link":case"SymbolicLink":case"CharacterDevice":case"BlockDevice":case"Directory":case"FIFO":case"ContiguousFile":case"GNUDumpDir":break;case"NextFileHasLongLinkpath":case"NextFileHasLongPath":case"OldGnuLongPath":case"GlobalExtendedHeader":case"ExtendedHeader":case"OldExtendedHeader":this.meta=!0;break;default:this.ignore=!0}if(!e.path)throw new Error("no path provided for tar.ReadEntry");this.path=(0,p.normalizeWindowsPath)(e.path),this.mode=e.mode,this.mode&&(this.mode=this.mode&4095),this.uid=e.uid,this.gid=e.gid,this.uname=e.uname,this.gname=e.gname,this.size=this.remain,this.mtime=e.mtime,this.atime=e.atime,this.ctime=e.ctime,this.linkpath=e.linkpath?(0,p.normalizeWindowsPath)(e.linkpath):void 0,this.uname=e.uname,this.gname=e.gname,f&&this.#e(f),m&&this.#e(m,!0)}write(e){let f=e.length;if(f>this.blockRemain)throw new Error("writing more to entry than is appropriate");let p=this.remain,m=this.blockRemain;return this.remain=Math.max(0,p-f),this.blockRemain=Math.max(0,m-f),this.ignore?!0:p>=f?super.write(e):super.write(e.subarray(0,p))}#e(e,f=!1){e.path&&(e.path=(0,p.normalizeWindowsPath)(e.path)),e.linkpath&&(e.linkpath=(0,p.normalizeWindowsPath)(e.linkpath)),Object.assign(this,Object.fromEntries(Object.entries(e).filter((([e,p])=>!(p==null||e==="path"&&f)))))}};e.ReadEntry=y}));var T=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.warnMethod=void 0;var Da=(e,f,p,m={})=>{e.file&&(m.file=e.file),e.cwd&&(m.cwd=e.cwd),m.code=p instanceof Error&&p.code||f,m.tarCode=f,!e.strict&&m.recoverable!==!1?(p instanceof Error&&(m=Object.assign(p,m),p=p.message),e.emit("warn",f,p,m)):p instanceof Error?e.emit("error",Object.assign(p,m)):e.emit("error",Object.assign(new Error(`${f}: ${p}`),m))};e.warnMethod=Da}));var D=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.Parser=void 0;var f=p(361),m=w(),y=O(),b=R(),v=P(),_=T(),g=1024*1024,S=Buffer.from([31,139]),k=Buffer.from([40,181,47,253]),D=Math.max(S.length,k.length),M=Symbol("state"),x=Symbol("writeEntry"),L=Symbol("readEntry"),A=Symbol("nextEntry"),N=Symbol("processEntry"),I=Symbol("extendedHeader"),F=Symbol("globalExtendedHeader"),B=Symbol("meta"),z=Symbol("emitMeta"),C=Symbol("buffer"),j=Symbol("queue"),U=Symbol("ended"),W=Symbol("emittedEnd"),Z=Symbol("emit"),H=Symbol("unzip"),G=Symbol("consumeChunk"),Y=Symbol("consumeChunkSub"),$=Symbol("consumeBody"),q=Symbol("consumeMeta"),V=Symbol("consumeHeader"),K=Symbol("consuming"),X=Symbol("bufferConcat"),Q=Symbol("maybeEnd"),J=Symbol("writing"),ee=Symbol("aborted"),te=Symbol("onDone"),ie=Symbol("sawValidEntry"),re=Symbol("sawNullBlock"),se=Symbol("sawEOF"),ne=Symbol("closeStream"),Ia=()=>!0,oe=class extends f.EventEmitter{file;strict;maxMetaEntrySize;filter;brotli;zstd;writable=!0;readable=!1;[j]=[];[C];[L];[x];[M]="begin";[B]="";[I];[F];[U]=!1;[H];[ee]=!1;[ie];[re]=!1;[se]=!1;[J]=!1;[K]=!1;[W]=!1;constructor(e={}){super(),this.file=e.file||"",this.on(te,(()=>{(this[M]==="begin"||this[ie]===!1)&&this.warn("TAR_BAD_ARCHIVE","Unrecognized archive format")})),e.ondone?this.on(te,e.ondone):this.on(te,(()=>{this.emit("prefinish"),this.emit("finish"),this.emit("end")})),this.strict=!!e.strict,this.maxMetaEntrySize=e.maxMetaEntrySize||g,this.filter=typeof e.filter=="function"?e.filter:Ia;let f=e.file&&(e.file.endsWith(".tar.br")||e.file.endsWith(".tbr"));this.brotli=!(e.gzip||e.zstd)&&e.brotli!==void 0?e.brotli:f?void 0:!1;let p=e.file&&(e.file.endsWith(".tar.zst")||e.file.endsWith(".tzst"));this.zstd=!(e.gzip||e.brotli)&&e.zstd!==void 0?e.zstd:p?!0:void 0,this.on("end",(()=>this[ne]())),typeof e.onwarn=="function"&&this.on("warn",e.onwarn),typeof e.onReadEntry=="function"&&this.on("entry",e.onReadEntry)}warn(e,f,p={}){(0,_.warnMethod)(this,e,f,p)}[V](e,f){this[ie]===void 0&&(this[ie]=!1);let p;try{p=new y.Header(e,f,this[I],this[F])}catch(e){return this.warn("TAR_ENTRY_INVALID",e)}if(p.nullBlock)this[re]?(this[se]=!0,this[M]==="begin"&&(this[M]="header"),this[Z]("eof")):(this[re]=!0,this[Z]("nullBlock"));else if(this[re]=!1,!p.cksumValid)this.warn("TAR_ENTRY_INVALID","checksum failure",{header:p});else if(!p.path)this.warn("TAR_ENTRY_INVALID","path is required",{header:p});else{let e=p.type;if(/^(Symbolic)?Link$/.test(e)&&!p.linkpath)this.warn("TAR_ENTRY_INVALID","linkpath required",{header:p});else if(!/^(Symbolic)?Link$/.test(e)&&!/^(Global)?ExtendedHeader$/.test(e)&&p.linkpath)this.warn("TAR_ENTRY_INVALID","linkpath forbidden",{header:p});else{let e=this[x]=new v.ReadEntry(p,this[I],this[F]);if(!this[ie])if(e.remain){let o=()=>{e.invalid||(this[ie]=!0)};e.on("end",o)}else this[ie]=!0;e.meta?e.size>this.maxMetaEntrySize?(e.ignore=!0,this[Z]("ignoredEntry",e),this[M]="ignore",e.resume()):e.size>0&&(this[B]="",e.on("data",(e=>this[B]+=e)),this[M]="meta"):(this[I]=void 0,e.ignore=e.ignore||!this.filter(e.path,e),e.ignore?(this[Z]("ignoredEntry",e),this[M]=e.remain?"ignore":"header",e.resume()):(e.remain?this[M]="body":(this[M]="header",e.end()),this[L]?this[j].push(e):(this[j].push(e),this[A]())))}}}[ne](){queueMicrotask((()=>this.emit("close")))}[N](e){let f=!0;if(!e)this[L]=void 0,f=!1;else if(Array.isArray(e)){let[f,...p]=e;this.emit(f,...p)}else this[L]=e,this.emit("entry",e),e.emittedEnd||(e.on("end",(()=>this[A]())),f=!1);return f}[A](){do{}while(this[N](this[j].shift()));if(!this[j].length){let e=this[L];!e||e.flowing||e.size===e.remain?this[J]||this.emit("drain"):e.once("drain",(()=>this.emit("drain")))}}[$](e,f){let p=this[x];if(!p)throw new Error("attempt to consume body without entry??");let m=p.blockRemain??0,y=m>=e.length&&f===0?e:e.subarray(f,f+m);return p.write(y),p.blockRemain||(this[M]="header",this[x]=void 0,p.end()),y.length}[q](e,f){let p=this[x],m=this[$](e,f);return!this[x]&&p&&this[z](p),m}[Z](e,f,p){!this[j].length&&!this[L]?this.emit(e,f,p):this[j].push([e,f,p])}[z](e){switch(this[Z]("meta",this[B]),e.type){case"ExtendedHeader":case"OldExtendedHeader":this[I]=b.Pax.parse(this[B],this[I],!1);break;case"GlobalExtendedHeader":this[F]=b.Pax.parse(this[B],this[F],!0);break;case"NextFileHasLongPath":case"OldGnuLongPath":{let e=this[I]??Object.create(null);this[I]=e,e.path=this[B].replace(/\0.*/,"");break}case"NextFileHasLongLinkpath":{let e=this[I]||Object.create(null);this[I]=e,e.linkpath=this[B].replace(/\0.*/,"");break}default:throw new Error("unknown meta: "+e.type)}}abort(e){this[ee]=!0,this.emit("abort",e),this.warn("TAR_ABORT",e,{recoverable:!1})}write(e,f,p){if(typeof f=="function"&&(p=f,f=void 0),typeof e=="string"&&(e=Buffer.from(e,typeof f=="string"?f:"utf8")),this[ee])return p?.(),!1;if((this[H]===void 0||this.brotli===void 0&&this[H]===!1)&&e){if(this[C]&&(e=Buffer.concat([this[C],e]),this[C]=void 0),e.length<D)return this[C]=e,p?.(),!0;for(let f=0;this[H]===void 0&&f<S.length;f++)e[f]!==S[f]&&(this[H]=!1);let f=!1;if(this[H]===!1&&this.zstd!==!1){f=!0;for(let p=0;p<k.length;p++)if(e[p]!==k[p]){f=!1;break}}let b=this.brotli===void 0&&!f;if(this[H]===!1&&b)if(e.length<512)if(this[U])this.brotli=!0;else return this[C]=e,p?.(),!0;else try{new y.Header(e.subarray(0,512)),this.brotli=!1}catch{this.brotli=!0}if(this[H]===void 0||this[H]===!1&&(this.brotli||f)){let y=this[U];this[U]=!1,this[H]=this[H]===void 0?new m.Unzip({}):f?new m.ZstdDecompress({}):new m.BrotliDecompress({}),this[H].on("data",(e=>this[G](e))),this[H].on("error",(e=>this.abort(e))),this[H].on("end",(()=>{this[U]=!0,this[G]()})),this[J]=!0;let b=!!this[H][y?"end":"write"](e);return this[J]=!1,p?.(),b}}this[J]=!0,this[H]?this[H].write(e):this[G](e),this[J]=!1;let b=this[j].length?!1:this[L]?this[L].flowing:!0;return!b&&!this[j].length&&this[L]?.once("drain",(()=>this.emit("drain"))),p?.(),b}[X](e){e&&!this[ee]&&(this[C]=this[C]?Buffer.concat([this[C],e]):e)}[Q](){if(this[U]&&!this[W]&&!this[ee]&&!this[K]){this[W]=!0;let e=this[x];if(e&&e.blockRemain){let f=this[C]?this[C].length:0;this.warn("TAR_BAD_ARCHIVE",`Truncated input (needed ${e.blockRemain} more bytes, only ${f} available)`,{entry:e}),this[C]&&e.write(this[C]),e.end()}this[Z](te)}}[G](e){if(this[K]&&e)this[X](e);else if(!e&&!this[C])this[Q]();else if(e){if(this[K]=!0,this[C]){this[X](e);let f=this[C];this[C]=void 0,this[Y](f)}else this[Y](e);for(;this[C]&&this[C]?.length>=512&&!this[ee]&&!this[se];){let e=this[C];this[C]=void 0,this[Y](e)}this[K]=!1}(!this[C]||this[U])&&this[Q]()}[Y](e){let f=0,p=e.length;for(;f+512<=p&&!this[ee]&&!this[se];)switch(this[M]){case"begin":case"header":this[V](e,f),f+=512;break;case"ignore":case"body":f+=this[$](e,f);break;case"meta":f+=this[q](e,f);break;default:throw new Error("invalid state: "+this[M])}f<p&&(this[C]?this[C]=Buffer.concat([e.subarray(f),this[C]]):this[C]=e.subarray(f))}end(e,f,p){return typeof e=="function"&&(p=e,f=void 0,e=void 0),typeof f=="function"&&(p=f,f=void 0),typeof e=="string"&&(e=Buffer.from(e,f)),p&&this.once("finish",p),this[ee]||(this[H]?(e&&this[H].write(e),this[H].end()):(this[U]=!0,(this.brotli===void 0||this.zstd===void 0)&&(e=e||Buffer.alloc(0)),e&&this.write(e),this[Q]())),this}};e.Parser=oe}));var M=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.stripTrailingSlashes=void 0;var Ca=e=>{let f=e.length-1,p=-1;for(;f>-1&&e.charAt(f)==="/";)p=f,f--;return p===-1?e:e.slice(0,p)};e.stripTrailingSlashes=Ca}));var x=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),m=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),b=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var y=s(e),b=0;b<y.length;b++)y[b]!=="default"&&f(p,e,y[b]);return m(p,e),p}}(),_=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.list=e.filesFilter=void 0;var w=b(y()),g=_(p(561)),S=p(17),O=v(),R=D(),k=M(),Ua=e=>{let f=e.onReadEntry;e.onReadEntry=f?e=>{f(e),e.resume()}:e=>e.resume()},qa=(e,f)=>{let p=new Map(f.map((e=>[(0,k.stripTrailingSlashes)(e),!0]))),m=e.filter,r=(e,f="")=>{let m=f||(0,S.parse)(e).root||".",y;if(e===m)y=!1;else{let f=p.get(e);f!==void 0?y=f:y=r((0,S.dirname)(e),m)}return p.set(e,y),y};e.filter=m?(e,f)=>m(e,f)&&r((0,k.stripTrailingSlashes)(e)):e=>r((0,k.stripTrailingSlashes)(e))};e.filesFilter=qa;var Wa=e=>{let f=new R.Parser(e),p=e.file,m;try{m=g.default.openSync(p,"r");let y=g.default.fstatSync(m),b=e.maxReadSize||16*1024*1024;if(y.size<b){let e=Buffer.allocUnsafe(y.size),p=g.default.readSync(m,e,0,y.size,0);f.end(p===e.byteLength?e:e.subarray(0,p))}else{let e=0,p=Buffer.allocUnsafe(b);for(;e<y.size;){let y=g.default.readSync(m,p,0,b,e);if(y===0)break;e+=y,f.write(p.subarray(0,y))}f.end()}}finally{if(typeof m=="number")try{g.default.closeSync(m)}catch{}}},Ha=(e,f)=>{let p=new R.Parser(e),m=e.maxReadSize||16*1024*1024,y=e.file;return new Promise(((e,f)=>{p.on("error",f),p.on("end",e),g.default.stat(y,((e,b)=>{if(e)f(e);else{let e=new w.ReadStream(y,{readSize:m,size:b.size});e.on("error",f),e.pipe(p)}}))}))};e.list=(0,O.makeCommand)(Wa,Ha,(e=>new R.Parser(e)),(e=>new R.Parser(e)),((f,p)=>{p?.length&&(0,e.filesFilter)(f,p),f.noResume||Ua(f)}))}));var L=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.modeFix=void 0;var Za=(e,f,p)=>(e&=4095,p&&(e=(e|384)&-19),f&&(e&256&&(e|=64),e&32&&(e|=8),e&4&&(e|=1)),e);e.modeFix=Za}));var A=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.stripAbsolutePath=void 0;var f=p(411),{isAbsolute:m,parse:y}=f.win32,Ka=e=>{let f="",p=y(e);for(;m(e)||p.root;){let m=e.charAt(0)==="/"&&e.slice(0,4)!=="//?/"?"/":p.root;e=e.slice(m.length),f+=m,p=y(e)}return[f,e]};e.stripAbsolutePath=Ka}));var N=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.decode=e.encode=void 0;var f=["|","<",">","?",":"],p=f.map((e=>String.fromCharCode(61440+e.charCodeAt(0)))),m=new Map(f.map(((e,f)=>[e,p[f]]))),y=new Map(p.map(((e,p)=>[e,f[p]]))),Xa=e=>f.reduce(((e,f)=>e.split(f).join(m.get(f))),e);e.encode=Xa;var Qa=e=>p.reduce(((e,f)=>e.split(f).join(y.get(f))),e);e.decode=Qa}));var I=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),y=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),v=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var m=s(e),b=0;b<m.length;b++)m[b]!=="default"&&f(p,e,m[b]);return y(p,e),p}}(),_=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.WriteEntryTar=e.WriteEntrySync=e.WriteEntry=void 0;var w=_(p(147)),g=m(),S=_(p(17)),P=O(),D=L(),x=k(),I=b(),F=R(),B=A(),z=M(),C=T(),j=v(N()),En=(e,f)=>f?(e=(0,x.normalizeWindowsPath)(e).replace(/^\.(\/|$)/,""),(0,z.stripTrailingSlashes)(f)+"/"+e):(0,x.normalizeWindowsPath)(e),U=16*1024*1024,W=Symbol("process"),Z=Symbol("file"),H=Symbol("directory"),G=Symbol("symlink"),Y=Symbol("hardlink"),$=Symbol("header"),q=Symbol("read"),V=Symbol("lstat"),K=Symbol("onlstat"),X=Symbol("onread"),Q=Symbol("onreadlink"),J=Symbol("openfile"),ee=Symbol("onopenfile"),te=Symbol("close"),ie=Symbol("mode"),re=Symbol("awaitDrain"),se=Symbol("ondrain"),ne=Symbol("prefix"),oe=class extends g.Minipass{path;portable;myuid=process.getuid&&process.getuid()||0;myuser=process.env.USER||"";maxReadSize;linkCache;statCache;preservePaths;cwd;strict;mtime;noPax;noMtime;prefix;fd;blockLen=0;blockRemain=0;buf;pos=0;remain=0;length=0;offset=0;win32;absolute;header;type;linkpath;stat;onWriteEntry;#e=!1;constructor(e,f={}){let p=(0,I.dealias)(f);super(),this.path=(0,x.normalizeWindowsPath)(e),this.portable=!!p.portable,this.maxReadSize=p.maxReadSize||U,this.linkCache=p.linkCache||new Map,this.statCache=p.statCache||new Map,this.preservePaths=!!p.preservePaths,this.cwd=(0,x.normalizeWindowsPath)(p.cwd||process.cwd()),this.strict=!!p.strict,this.noPax=!!p.noPax,this.noMtime=!!p.noMtime,this.mtime=p.mtime,this.prefix=p.prefix?(0,x.normalizeWindowsPath)(p.prefix):void 0,this.onWriteEntry=p.onWriteEntry,typeof p.onwarn=="function"&&this.on("warn",p.onwarn);let m=!1;if(!this.preservePaths){let[e,f]=(0,B.stripAbsolutePath)(this.path);e&&typeof f=="string"&&(this.path=f,m=e)}this.win32=!!p.win32||process.platform==="win32",this.win32&&(this.path=j.decode(this.path.replace(/\\/g,"/")),e=e.replace(/\\/g,"/")),this.absolute=(0,x.normalizeWindowsPath)(p.absolute||S.default.resolve(this.cwd,e)),this.path===""&&(this.path="./"),m&&this.warn("TAR_ENTRY_INFO",`stripping ${m} from absolute path`,{entry:this,path:m+this.path});let y=this.statCache.get(this.absolute);y?this[K](y):this[V]()}warn(e,f,p={}){return(0,C.warnMethod)(this,e,f,p)}emit(e,...f){return e==="error"&&(this.#e=!0),super.emit(e,...f)}[V](){w.default.lstat(this.absolute,((e,f)=>{if(e)return this.emit("error",e);this[K](f)}))}[K](e){this.statCache.set(this.absolute,e),this.stat=e,e.isFile()||(e.size=0),this.type=nh(e),this.emit("stat",e),this[W]()}[W](){switch(this.type){case"File":return this[Z]();case"Directory":return this[H]();case"SymbolicLink":return this[G]();default:return this.end()}}[ie](e){return(0,D.modeFix)(e,this.type==="Directory",this.portable)}[ne](e){return En(e,this.prefix)}[$](){if(!this.stat)throw new Error("cannot write header before stat");this.type==="Directory"&&this.portable&&(this.noMtime=!0),this.onWriteEntry?.(this),this.header=new P.Header({path:this[ne](this.path),linkpath:this.type==="Link"&&this.linkpath!==void 0?this[ne](this.linkpath):this.linkpath,mode:this[ie](this.stat.mode),uid:this.portable?void 0:this.stat.uid,gid:this.portable?void 0:this.stat.gid,size:this.stat.size,mtime:this.noMtime?void 0:this.mtime||this.stat.mtime,type:this.type==="Unsupported"?void 0:this.type,uname:this.portable?void 0:this.stat.uid===this.myuid?this.myuser:"",atime:this.portable?void 0:this.stat.atime,ctime:this.portable?void 0:this.stat.ctime}),this.header.encode()&&!this.noPax&&super.write(new F.Pax({atime:this.portable?void 0:this.header.atime,ctime:this.portable?void 0:this.header.ctime,gid:this.portable?void 0:this.header.gid,mtime:this.noMtime?void 0:this.mtime||this.header.mtime,path:this[ne](this.path),linkpath:this.type==="Link"&&this.linkpath!==void 0?this[ne](this.linkpath):this.linkpath,size:this.header.size,uid:this.portable?void 0:this.header.uid,uname:this.portable?void 0:this.header.uname,dev:this.portable?void 0:this.stat.dev,ino:this.portable?void 0:this.stat.ino,nlink:this.portable?void 0:this.stat.nlink}).encode());let e=this.header?.block;if(!e)throw new Error("failed to encode header");super.write(e)}[H](){if(!this.stat)throw new Error("cannot create directory entry without stat");this.path.slice(-1)!=="/"&&(this.path+="/"),this.stat.size=0,this[$](),this.end()}[G](){w.default.readlink(this.absolute,((e,f)=>{if(e)return this.emit("error",e);this[Q](f)}))}[Q](e){this.linkpath=(0,x.normalizeWindowsPath)(e),this[$](),this.end()}[Y](e){if(!this.stat)throw new Error("cannot create link entry without stat");this.type="Link",this.linkpath=(0,x.normalizeWindowsPath)(S.default.relative(this.cwd,e)),this.stat.size=0,this[$](),this.end()}[Z](){if(!this.stat)throw new Error("cannot create file entry without stat");if(this.stat.nlink>1){let e=`${this.stat.dev}:${this.stat.ino}`,f=this.linkCache.get(e);if(f?.indexOf(this.cwd)===0)return this[Y](f);this.linkCache.set(e,this.absolute)}if(this[$](),this.stat.size===0)return this.end();this[J]()}[J](){w.default.open(this.absolute,"r",((e,f)=>{if(e)return this.emit("error",e);this[ee](f)}))}[ee](e){if(this.fd=e,this.#e)return this[te]();if(!this.stat)throw new Error("should stat before calling onopenfile");this.blockLen=512*Math.ceil(this.stat.size/512),this.blockRemain=this.blockLen;let f=Math.min(this.blockLen,this.maxReadSize);this.buf=Buffer.allocUnsafe(f),this.offset=0,this.pos=0,this.remain=this.stat.size,this.length=this.buf.length,this[q]()}[q](){let{fd:e,buf:f,offset:p,length:m,pos:y}=this;if(e===void 0||f===void 0)throw new Error("cannot read file without first opening");w.default.read(e,f,p,m,y,((e,f)=>{if(e)return this[te]((()=>this.emit("error",e)));this[X](f)}))}[te](e=(()=>{})){this.fd!==void 0&&w.default.close(this.fd,e)}[X](e){if(e<=0&&this.remain>0){let e=Object.assign(new Error("encountered unexpected EOF"),{path:this.absolute,syscall:"read",code:"EOF"});return this[te]((()=>this.emit("error",e)))}if(e>this.remain){let e=Object.assign(new Error("did not encounter expected EOF"),{path:this.absolute,syscall:"read",code:"EOF"});return this[te]((()=>this.emit("error",e)))}if(!this.buf)throw new Error("should have created buffer prior to reading");if(e===this.remain)for(let f=e;f<this.length&&e<this.blockRemain;f++)this.buf[f+this.offset]=0,e++,this.remain++;let f=this.offset===0&&e===this.buf.length?this.buf:this.buf.subarray(this.offset,this.offset+e);this.write(f)?this[se]():this[re]((()=>this[se]()))}[re](e){this.once("drain",e)}write(e,f,p){if(typeof f=="function"&&(p=f,f=void 0),typeof e=="string"&&(e=Buffer.from(e,typeof f=="string"?f:"utf8")),this.blockRemain<e.length){let e=Object.assign(new Error("writing more data than expected"),{path:this.absolute});return this.emit("error",e)}return this.remain-=e.length,this.blockRemain-=e.length,this.pos+=e.length,this.offset+=e.length,super.write(e,null,p)}[se](){if(!this.remain)return this.blockRemain&&super.write(Buffer.alloc(this.blockRemain)),this[te]((e=>e?this.emit("error",e):this.end()));if(!this.buf)throw new Error("buffer lost somehow in ONDRAIN");this.offset>=this.length&&(this.buf=Buffer.allocUnsafe(Math.min(this.blockRemain,this.buf.length)),this.offset=0),this.length=this.buf.length-this.offset,this[q]()}};e.WriteEntry=oe;var ae=class extends oe{sync=!0;[V](){this[K](w.default.lstatSync(this.absolute))}[G](){this[Q](w.default.readlinkSync(this.absolute))}[J](){this[ee](w.default.openSync(this.absolute,"r"))}[q](){let e=!0;try{let{fd:f,buf:p,offset:m,length:y,pos:b}=this;if(f===void 0||p===void 0)throw new Error("fd and buf must be set in READ method");let v=w.default.readSync(f,p,m,y,b);this[X](v),e=!1}finally{if(e)try{this[te]((()=>{}))}catch{}}}[re](e){e()}[te](e=(()=>{})){this.fd!==void 0&&w.default.closeSync(this.fd),e()}};e.WriteEntrySync=ae;var he=class extends g.Minipass{blockLen=0;blockRemain=0;buf=0;pos=0;remain=0;length=0;preservePaths;portable;strict;noPax;noMtime;readEntry;type;prefix;path;mode;uid;gid;uname;gname;header;mtime;atime;ctime;linkpath;size;onWriteEntry;warn(e,f,p={}){return(0,C.warnMethod)(this,e,f,p)}constructor(e,f={}){let p=(0,I.dealias)(f);super(),this.preservePaths=!!p.preservePaths,this.portable=!!p.portable,this.strict=!!p.strict,this.noPax=!!p.noPax,this.noMtime=!!p.noMtime,this.onWriteEntry=p.onWriteEntry,this.readEntry=e;let{type:m}=e;if(m==="Unsupported")throw new Error("writing entry that should be ignored");this.type=m,this.type==="Directory"&&this.portable&&(this.noMtime=!0),this.prefix=p.prefix,this.path=(0,x.normalizeWindowsPath)(e.path),this.mode=e.mode!==void 0?this[ie](e.mode):void 0,this.uid=this.portable?void 0:e.uid,this.gid=this.portable?void 0:e.gid,this.uname=this.portable?void 0:e.uname,this.gname=this.portable?void 0:e.gname,this.size=e.size,this.mtime=this.noMtime?void 0:p.mtime||e.mtime,this.atime=this.portable?void 0:e.atime,this.ctime=this.portable?void 0:e.ctime,this.linkpath=e.linkpath!==void 0?(0,x.normalizeWindowsPath)(e.linkpath):void 0,typeof p.onwarn=="function"&&this.on("warn",p.onwarn);let y=!1;if(!this.preservePaths){let[e,f]=(0,B.stripAbsolutePath)(this.path);e&&typeof f=="string"&&(this.path=f,y=e)}this.remain=e.size,this.blockRemain=e.startBlockSize,this.onWriteEntry?.(this),this.header=new P.Header({path:this[ne](this.path),linkpath:this.type==="Link"&&this.linkpath!==void 0?this[ne](this.linkpath):this.linkpath,mode:this.mode,uid:this.portable?void 0:this.uid,gid:this.portable?void 0:this.gid,size:this.size,mtime:this.noMtime?void 0:this.mtime,type:this.type,uname:this.portable?void 0:this.uname,atime:this.portable?void 0:this.atime,ctime:this.portable?void 0:this.ctime}),y&&this.warn("TAR_ENTRY_INFO",`stripping ${y} from absolute path`,{entry:this,path:y+this.path}),this.header.encode()&&!this.noPax&&super.write(new F.Pax({atime:this.portable?void 0:this.atime,ctime:this.portable?void 0:this.ctime,gid:this.portable?void 0:this.gid,mtime:this.noMtime?void 0:this.mtime,path:this[ne](this.path),linkpath:this.type==="Link"&&this.linkpath!==void 0?this[ne](this.linkpath):this.linkpath,size:this.size,uid:this.portable?void 0:this.uid,uname:this.portable?void 0:this.uname,dev:this.portable?void 0:this.readEntry.dev,ino:this.portable?void 0:this.readEntry.ino,nlink:this.portable?void 0:this.readEntry.nlink}).encode());let b=this.header?.block;if(!b)throw new Error("failed to encode header");super.write(b),e.pipe(this)}[ne](e){return En(e,this.prefix)}[ie](e){return(0,D.modeFix)(e,this.type==="Directory",this.portable)}write(e,f,p){typeof f=="function"&&(p=f,f=void 0),typeof e=="string"&&(e=Buffer.from(e,typeof f=="string"?f:"utf8"));let m=e.length;if(m>this.blockRemain)throw new Error("writing more to entry than is appropriate");return this.blockRemain-=m,super.write(e,p)}end(e,f,p){return this.blockRemain&&super.write(Buffer.alloc(this.blockRemain)),typeof e=="function"&&(p=e,f=void 0,e=void 0),typeof f=="function"&&(p=f,f=void 0),typeof e=="string"&&(e=Buffer.from(e,f??"utf8")),p&&this.once("finish",p),e?super.end(e,p):super.end(p),this}};e.WriteEntryTar=he;var nh=e=>e.isFile()?"File":e.isDirectory()?"Directory":e.isSymbolicLink()?"SymbolicLink":"Unsupported"}));var F=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.Node=e.Yallist=void 0;var f=class s{tail;head;length=0;static create(e=[]){return new s(e)}constructor(e=[]){for(let f of e)this.push(f)}*[Symbol.iterator](){for(let e=this.head;e;e=e.next)yield e.value}removeNode(e){if(e.list!==this)throw new Error("removing node which does not belong to this list");let f=e.next,p=e.prev;return f&&(f.prev=p),p&&(p.next=f),e===this.head&&(this.head=f),e===this.tail&&(this.tail=p),this.length--,e.next=void 0,e.prev=void 0,e.list=void 0,f}unshiftNode(e){if(e===this.head)return;e.list&&e.list.removeNode(e);let f=this.head;e.list=this,e.next=f,f&&(f.prev=e),this.head=e,this.tail||(this.tail=e),this.length++}pushNode(e){if(e===this.tail)return;e.list&&e.list.removeNode(e);let f=this.tail;e.list=this,e.prev=f,f&&(f.next=e),this.tail=e,this.head||(this.head=e),this.length++}push(...e){for(let f=0,p=e.length;f<p;f++)ah(this,e[f]);return this.length}unshift(...e){for(var f=0,p=e.length;f<p;f++)hh(this,e[f]);return this.length}pop(){if(!this.tail)return;let e=this.tail.value,f=this.tail;return this.tail=this.tail.prev,this.tail?this.tail.next=void 0:this.head=void 0,f.list=void 0,this.length--,e}shift(){if(!this.head)return;let e=this.head.value,f=this.head;return this.head=this.head.next,this.head?this.head.prev=void 0:this.tail=void 0,f.list=void 0,this.length--,e}forEach(e,f){f=f||this;for(let p=this.head,m=0;p;m++)e.call(f,p.value,m,this),p=p.next}forEachReverse(e,f){f=f||this;for(let p=this.tail,m=this.length-1;p;m--)e.call(f,p.value,m,this),p=p.prev}get(e){let f=0,p=this.head;for(;p&&f<e;f++)p=p.next;if(f===e&&p)return p.value}getReverse(e){let f=0,p=this.tail;for(;p&&f<e;f++)p=p.prev;if(f===e&&p)return p.value}map(e,f){f=f||this;let p=new s;for(let m=this.head;m;)p.push(e.call(f,m.value,this)),m=m.next;return p}mapReverse(e,f){f=f||this;var p=new s;for(let m=this.tail;m;)p.push(e.call(f,m.value,this)),m=m.prev;return p}reduce(e,f){let p,m=this.head;if(arguments.length>1)p=f;else if(this.head)m=this.head.next,p=this.head.value;else throw new TypeError("Reduce of empty list with no initial value");for(var y=0;m;y++)p=e(p,m.value,y),m=m.next;return p}reduceReverse(e,f){let p,m=this.tail;if(arguments.length>1)p=f;else if(this.tail)m=this.tail.prev,p=this.tail.value;else throw new TypeError("Reduce of empty list with no initial value");for(let f=this.length-1;m;f--)p=e(p,m.value,f),m=m.prev;return p}toArray(){let e=new Array(this.length);for(let f=0,p=this.head;p;f++)e[f]=p.value,p=p.next;return e}toArrayReverse(){let e=new Array(this.length);for(let f=0,p=this.tail;p;f++)e[f]=p.value,p=p.prev;return e}slice(e=0,f=this.length){f<0&&(f+=this.length),e<0&&(e+=this.length);let p=new s;if(f<e||f<0)return p;e<0&&(e=0),f>this.length&&(f=this.length);let m=this.head,y=0;for(y=0;m&&y<e;y++)m=m.next;for(;m&&y<f;y++,m=m.next)p.push(m.value);return p}sliceReverse(e=0,f=this.length){f<0&&(f+=this.length),e<0&&(e+=this.length);let p=new s;if(f<e||f<0)return p;e<0&&(e=0),f>this.length&&(f=this.length);let m=this.length,y=this.tail;for(;y&&m>f;m--)y=y.prev;for(;y&&m>e;m--,y=y.prev)p.push(y.value);return p}splice(e,f=0,...p){e>this.length&&(e=this.length-1),e<0&&(e=this.length+e);let m=this.head;for(let f=0;m&&f<e;f++)m=m.next;let y=[];for(let e=0;m&&e<f;e++)y.push(m.value),m=this.removeNode(m);m?m!==this.tail&&(m=m.prev):m=this.tail;for(let e of p)m=oh(this,m,e);return y}reverse(){let e=this.head,f=this.tail;for(let f=e;f;f=f.prev){let e=f.prev;f.prev=f.next,f.next=e}return this.head=f,this.tail=e,this}};e.Yallist=f;function oh(e,f,m){let y=f,b=f?f.next:e.head,v=new p(m,y,b,e);return v.next===void 0&&(e.tail=v),v.prev===void 0&&(e.head=v),e.length++,v}function ah(e,f){e.tail=new p(f,e.tail,void 0,e),e.head||(e.head=e.tail),e.length++}function hh(e,f){e.head=new p(f,void 0,e.head,e),e.tail||(e.tail=e.head),e.length++}var p=class{list;next;prev;value;constructor(e,f,p,m){this.list=m,this.value=e,f?(f.next=this,this.prev=f):this.prev=void 0,p?(p.prev=this,this.next=p):this.next=void 0}};e.Node=p}));var B=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),y=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),b=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var m=s(e),b=0;b<m.length;b++)m[b]!=="default"&&f(p,e,m[b]);return y(p,e),p}}(),v=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.PackSync=e.Pack=e.PackJob=void 0;var _=v(p(147)),g=I(),S=class{path;absolute;entry;stat;readdir;pending=!1;ignore=!1;piped=!1;constructor(e,f){this.path=e||"./",this.absolute=f}};e.PackJob=S;var O=m(),R=b(w()),D=F(),M=P(),x=T(),L=Buffer.alloc(1024),A=Symbol("onStat"),N=Symbol("ended"),B=Symbol("queue"),z=Symbol("current"),C=Symbol("process"),j=Symbol("processing"),U=Symbol("processJob"),W=Symbol("jobs"),Z=Symbol("jobDone"),H=Symbol("addFSEntry"),G=Symbol("addTarEntry"),Y=Symbol("stat"),$=Symbol("readdir"),q=Symbol("onreaddir"),V=Symbol("pipe"),K=Symbol("entry"),X=Symbol("entryOpt"),Q=Symbol("writeEntryClass"),J=Symbol("write"),ee=Symbol("ondrain"),te=v(p(17)),ie=k(),re=class extends O.Minipass{sync=!1;opt;cwd;maxReadSize;preservePaths;strict;noPax;prefix;linkCache;statCache;file;portable;zip;readdirCache;noDirRecurse;follow;noMtime;mtime;filter;jobs;[Q];onWriteEntry;[B];[W]=0;[j]=!1;[N]=!1;constructor(e={}){if(super(),this.opt=e,this.file=e.file||"",this.cwd=e.cwd||process.cwd(),this.maxReadSize=e.maxReadSize,this.preservePaths=!!e.preservePaths,this.strict=!!e.strict,this.noPax=!!e.noPax,this.prefix=(0,ie.normalizeWindowsPath)(e.prefix||""),this.linkCache=e.linkCache||new Map,this.statCache=e.statCache||new Map,this.readdirCache=e.readdirCache||new Map,this.onWriteEntry=e.onWriteEntry,this[Q]=g.WriteEntry,typeof e.onwarn=="function"&&this.on("warn",e.onwarn),this.portable=!!e.portable,e.gzip||e.brotli||e.zstd){if((e.gzip?1:0)+(e.brotli?1:0)+(e.zstd?1:0)>1)throw new TypeError("gzip, brotli, zstd are mutually exclusive");if(e.gzip&&(typeof e.gzip!="object"&&(e.gzip={}),this.portable&&(e.gzip.portable=!0),this.zip=new R.Gzip(e.gzip)),e.brotli&&(typeof e.brotli!="object"&&(e.brotli={}),this.zip=new R.BrotliCompress(e.brotli)),e.zstd&&(typeof e.zstd!="object"&&(e.zstd={}),this.zip=new R.ZstdCompress(e.zstd)),!this.zip)throw new Error("impossible");let f=this.zip;f.on("data",(e=>super.write(e))),f.on("end",(()=>super.end())),f.on("drain",(()=>this[ee]())),this.on("resume",(()=>f.resume()))}else this.on("drain",this[ee]);this.noDirRecurse=!!e.noDirRecurse,this.follow=!!e.follow,this.noMtime=!!e.noMtime,e.mtime&&(this.mtime=e.mtime),this.filter=typeof e.filter=="function"?e.filter:()=>!0,this[B]=new D.Yallist,this[W]=0,this.jobs=Number(e.jobs)||4,this[j]=!1,this[N]=!1}[J](e){return super.write(e)}add(e){return this.write(e),this}end(e,f,p){return typeof e=="function"&&(p=e,e=void 0),typeof f=="function"&&(p=f,f=void 0),e&&this.add(e),this[N]=!0,this[C](),p&&p(),this}write(e){if(this[N])throw new Error("write after end");return e instanceof M.ReadEntry?this[G](e):this[H](e),this.flowing}[G](e){let f=(0,ie.normalizeWindowsPath)(te.default.resolve(this.cwd,e.path));if(!this.filter(e.path,e))e.resume();else{let p=new S(e.path,f);p.entry=new g.WriteEntryTar(e,this[X](p)),p.entry.on("end",(()=>this[Z](p))),this[W]+=1,this[B].push(p)}this[C]()}[H](e){let f=(0,ie.normalizeWindowsPath)(te.default.resolve(this.cwd,e));this[B].push(new S(e,f)),this[C]()}[Y](e){e.pending=!0,this[W]+=1;let f=this.follow?"stat":"lstat";_.default[f](e.absolute,((f,p)=>{e.pending=!1,this[W]-=1,f?this.emit("error",f):this[A](e,p)}))}[A](e,f){this.statCache.set(e.absolute,f),e.stat=f,this.filter(e.path,f)?f.isFile()&&f.nlink>1&&e===this[z]&&!this.linkCache.get(`${f.dev}:${f.ino}`)&&!this.sync&&this[U](e):e.ignore=!0,this[C]()}[$](e){e.pending=!0,this[W]+=1,_.default.readdir(e.absolute,((f,p)=>{if(e.pending=!1,this[W]-=1,f)return this.emit("error",f);this[q](e,p)}))}[q](e,f){this.readdirCache.set(e.absolute,f),e.readdir=f,this[C]()}[C](){if(!this[j]){this[j]=!0;for(let e=this[B].head;e&&this[W]<this.jobs;e=e.next)if(this[U](e.value),e.value.ignore){let f=e.next;this[B].removeNode(e),e.next=f}this[j]=!1,this[N]&&!this[B].length&&this[W]===0&&(this.zip?this.zip.end(L):(super.write(L),super.end()))}}get[z](){return this[B]&&this[B].head&&this[B].head.value}[Z](e){this[B].shift(),this[W]-=1,this[C]()}[U](e){if(!e.pending){if(e.entry){e===this[z]&&!e.piped&&this[V](e);return}if(!e.stat){let f=this.statCache.get(e.absolute);f?this[A](e,f):this[Y](e)}if(e.stat&&!e.ignore){if(!this.noDirRecurse&&e.stat.isDirectory()&&!e.readdir){let f=this.readdirCache.get(e.absolute);if(f?this[q](e,f):this[$](e),!e.readdir)return}if(e.entry=this[K](e),!e.entry){e.ignore=!0;return}e===this[z]&&!e.piped&&this[V](e)}}}[X](e){return{onwarn:(e,f,p)=>this.warn(e,f,p),noPax:this.noPax,cwd:this.cwd,absolute:e.absolute,preservePaths:this.preservePaths,maxReadSize:this.maxReadSize,strict:this.strict,portable:this.portable,linkCache:this.linkCache,statCache:this.statCache,noMtime:this.noMtime,mtime:this.mtime,prefix:this.prefix,onWriteEntry:this.onWriteEntry}}[K](e){this[W]+=1;try{return new this[Q](e.path,this[X](e)).on("end",(()=>this[Z](e))).on("error",(e=>this.emit("error",e)))}catch(e){this.emit("error",e)}}[ee](){this[z]&&this[z].entry&&this[z].entry.resume()}[V](e){e.piped=!0,e.readdir&&e.readdir.forEach((f=>{let p=e.path,m=p==="./"?"":p.replace(/\/*$/,"/");this[H](m+f)}));let f=e.entry,p=this.zip;if(!f)throw new Error("cannot pipe without source");p?f.on("data",(e=>{p.write(e)||f.pause()})):f.on("data",(e=>{super.write(e)||f.pause()}))}pause(){return this.zip&&this.zip.pause(),super.pause()}warn(e,f,p={}){(0,x.warnMethod)(this,e,f,p)}};e.Pack=re;var se=class extends re{sync=!0;constructor(e){super(e),this[Q]=g.WriteEntrySync}pause(){}resume(){}[Y](e){let f=this.follow?"statSync":"lstatSync";this[A](e,_.default[f](e.absolute))}[$](e){this[q](e,_.default.readdirSync(e.absolute))}[V](e){let f=e.entry,p=this.zip;if(e.readdir&&e.readdir.forEach((f=>{let p=e.path,m=p==="./"?"":p.replace(/\/*$/,"/");this[H](m+f)})),!f)throw new Error("Cannot pipe without source");p?f.on("data",(e=>{p.write(e)})):f.on("data",(e=>{super[J](e)}))}};e.PackSync=se}));var z=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.create=void 0;var m=y(),b=f(p(411)),_=x(),w=v(),g=B(),yh=(e,f)=>{let p=new g.PackSync(e),y=new m.WriteStreamSync(e.file,{mode:e.mode||438});p.pipe(y),Mn(p,f)},Eh=(e,f)=>{let p=new g.Pack(e),y=new m.WriteStream(e.file,{mode:e.mode||438});p.pipe(y);let b=new Promise(((e,f)=>{y.on("error",f),y.on("close",e),p.on("error",f)}));return Ln(p,f),b},Mn=(e,f)=>{f.forEach((f=>{f.charAt(0)==="@"?(0,_.list)({file:b.default.resolve(e.cwd,f.slice(1)),sync:!0,noResume:!0,onReadEntry:f=>e.add(f)}):e.add(f)})),e.end()},Ln=async(e,f)=>{for(let p=0;p<f.length;p++){let m=String(f[p]);m.charAt(0)==="@"?await(0,_.list)({file:b.default.resolve(String(e.cwd),m.slice(1)),noResume:!0,onReadEntry:f=>{e.add(f)}}):e.add(m)}e.end()},bh=(e,f)=>{let p=new g.PackSync(e);return Mn(p,f),p},Sh=(e,f)=>{let p=new g.Pack(e);return Ln(p,f),p};e.create=(0,w.makeCommand)(yh,Eh,bh,Sh,((e,f)=>{if(!f?.length)throw new TypeError("no paths specified to add to archive")}))}));var C=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.getWriteFlag=void 0;var m=f(p(147)),y=process.env.__FAKE_PLATFORM__||process.platform,b=y==="win32",{O_CREAT:v,O_TRUNC:_,O_WRONLY:w}=m.default.constants,g=Number(process.env.__FAKE_FS_O_FILENAME__)||m.default.constants.UV_FS_O_FILEMAP||0,S=b&&!!g,O=512*1024,R=g|_|v|w;e.getWriteFlag=S?e=>e<O?R:"w":()=>"w"}));var j=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.chownrSync=e.chownr=void 0;var m=f(p(561)),y=f(p(411)),dr=(e,f,p)=>{try{return m.default.lchownSync(e,f,p)}catch(e){if(e?.code!=="ENOENT")throw e}},Ci=(e,f,p,y)=>{m.default.lchown(e,f,p,(e=>{y(e&&e?.code!=="ENOENT"?e:null)}))},Lh=(f,p,m,b,v)=>{if(p.isDirectory())(0,e.chownr)(y.default.resolve(f,p.name),m,b,(e=>{if(e)return v(e);let _=y.default.resolve(f,p.name);Ci(_,m,b,v)}));else{let e=y.default.resolve(f,p.name);Ci(e,m,b,v)}},Ah=(e,f,p,y)=>{m.default.readdir(e,{withFileTypes:!0},((m,b)=>{if(m){if(m.code==="ENOENT")return y();if(m.code!=="ENOTDIR"&&m.code!=="ENOTSUP")return y(m)}if(m||!b.length)return Ci(e,f,p,y);let v=b.length,_=null,h=m=>{if(!_){if(m)return y(_=m);if(--v===0)return Ci(e,f,p,y)}};for(let m of b)Lh(e,m,f,p,h)}))};e.chownr=Ah;var Ih=(f,p,m,b)=>{p.isDirectory()&&(0,e.chownrSync)(y.default.resolve(f,p.name),m,b),dr(y.default.resolve(f,p.name),m,b)},Ch=(e,f,p)=>{let y;try{y=m.default.readdirSync(e,{withFileTypes:!0})}catch(m){let y=m;if(y?.code==="ENOENT")return;if(y?.code==="ENOTDIR"||y?.code==="ENOTSUP")return dr(e,f,p);throw y}for(let m of y)Ih(e,m,f,p);return dr(e,f,p)};e.chownrSync=Ch}));var U=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.CwdError=void 0;var f=class extends Error{path;code;syscall="chdir";constructor(e,f){super(`${f}: Cannot cd into '${e}'`),this.path=e,this.code=f}get name(){return"CwdError"}};e.CwdError=f}));var W=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.SymlinkError=void 0;var f=class extends Error{path;symlink;syscall="symlink";code="TAR_SYMLINK_ERROR";constructor(e,f){super("TAR_SYMLINK_ERROR: Cannot extract through symbolic link"),this.symlink=e,this.path=f}get name(){return"SymlinkError"}};e.SymlinkError=f}));var Z=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.mkdirSync=e.mkdir=void 0;var m=j(),y=f(p(561)),b=f(p(977)),v=f(p(411)),_=U(),w=k(),g=W(),Bh=(e,f)=>{y.default.stat(e,((p,m)=>{(p||!m.isDirectory())&&(p=new _.CwdError(e,p?.code||"ENOTDIR")),f(p)}))},zh=(e,f,p)=>{e=(0,w.normalizeWindowsPath)(e);let _=f.umask??18,g=f.mode|448,S=(g&_)!==0,O=f.uid,R=f.gid,k=typeof O=="number"&&typeof R=="number"&&(O!==f.processUid||R!==f.processGid),P=f.preserve,T=f.unlink,D=(0,w.normalizeWindowsPath)(f.cwd),E=(f,b)=>{f?p(f):b&&k?(0,m.chownr)(b,O,R,(e=>E(e))):S?y.default.chmod(e,g,p):p()};if(e===D)return Bh(e,E);if(P)return b.default.mkdir(e,{mode:g,recursive:!0}).then((e=>E(null,e??void 0)),E);let M=(0,w.normalizeWindowsPath)(v.default.relative(D,e)).split("/");wr(D,M,g,T,D,void 0,E)};e.mkdir=zh;var wr=(e,f,p,m,b,_,g)=>{if(!f.length)return g(null,_);let S=f.shift(),O=(0,w.normalizeWindowsPath)(v.default.resolve(e+"/"+S));y.default.mkdir(O,p,Un(O,f,p,m,b,_,g))},Un=(e,f,p,m,b,v,_)=>S=>{S?y.default.lstat(e,((O,R)=>{if(O)O.path=O.path&&(0,w.normalizeWindowsPath)(O.path),_(O);else if(R.isDirectory())wr(e,f,p,m,b,v,_);else if(m)y.default.unlink(e,(w=>{if(w)return _(w);y.default.mkdir(e,p,Un(e,f,p,m,b,v,_))}));else{if(R.isSymbolicLink())return _(new g.SymlinkError(e,e+"/"+f.join("/")));_(S)}})):(v=v||e,wr(e,f,p,m,b,v,_))},kh=e=>{let f=!1,p;try{f=y.default.statSync(e).isDirectory()}catch(e){p=e?.code}finally{if(!f)throw new _.CwdError(e,p??"ENOTDIR")}},jh=(e,f)=>{e=(0,w.normalizeWindowsPath)(e);let p=f.umask??18,b=f.mode|448,_=(b&p)!==0,S=f.uid,O=f.gid,R=typeof S=="number"&&typeof O=="number"&&(S!==f.processUid||O!==f.processGid),k=f.preserve,P=f.unlink,T=(0,w.normalizeWindowsPath)(f.cwd),c=f=>{f&&R&&(0,m.chownrSync)(f,S,O),_&&y.default.chmodSync(e,b)};if(e===T)return kh(T),c();if(k)return c(y.default.mkdirSync(e,{mode:b,recursive:!0})??void 0);let D=(0,w.normalizeWindowsPath)(v.default.relative(T,e)).split("/"),M;for(let e=D.shift(),f=T;e&&(f+="/"+e);e=D.shift()){f=(0,w.normalizeWindowsPath)(v.default.resolve(f));try{y.default.mkdirSync(f,b),M=M||f}catch{let e=y.default.lstatSync(f);if(e.isDirectory())continue;if(P){y.default.unlinkSync(f),y.default.mkdirSync(f,b),M=M||f;continue}else if(e.isSymbolicLink())return new g.SymlinkError(f,f+"/"+D.join("/"))}}return c(M)};e.mkdirSync=jh}));var H=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.normalizeUnicode=void 0;var f=Object.create(null),p=1e4,m=new Set,xh=e=>{m.has(e)?m.delete(e):f[e]=e.normalize("NFD").toLocaleLowerCase("en").toLocaleUpperCase("en"),m.add(e);let y=f[e],b=m.size-p;if(b>p/10){for(let e of m)if(m.delete(e),delete f[e],--b<=0)break}return y};e.normalizeUnicode=xh}));var G=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.PathReservations=void 0;var f=p(411),m=H(),y=M(),b=process.env.TESTING_TAR_FAKE_PLATFORM||process.platform,v=b==="win32",Zh=e=>e.split("/").slice(0,-1).reduce(((e,p)=>{let m=e[e.length-1];return m!==void 0&&(p=(0,f.join)(m,p)),e.push(p||"/"),e}),[]),_=class{#e=new Map;#t=new Map;#i=new Set;reserve(e,p){e=v?["win32 parallelization disabled"]:e.map((e=>(0,y.stripTrailingSlashes)((0,f.join)((0,m.normalizeUnicode)(e)))));let b=new Set(e.map((e=>Zh(e))).reduce(((e,f)=>e.concat(f))));this.#t.set(p,{dirs:b,paths:e});for(let f of e){let e=this.#e.get(f);e?e.push(p):this.#e.set(f,[p])}for(let e of b){let f=this.#e.get(e);if(!f)this.#e.set(e,[new Set([p])]);else{let e=f[f.length-1];e instanceof Set?e.add(p):f.push(new Set([p]))}}return this.#s(p)}#r(e){let f=this.#t.get(e);if(!f)throw new Error("function does not have any path reservations");return{paths:f.paths.map((e=>this.#e.get(e))),dirs:[...f.dirs].map((e=>this.#e.get(e)))}}check(e){let{paths:f,dirs:p}=this.#r(e);return f.every((f=>f&&f[0]===e))&&p.every((f=>f&&f[0]instanceof Set&&f[0].has(e)))}#s(e){return this.#i.has(e)||!this.check(e)?!1:(this.#i.add(e),e((()=>this.#n(e))),!0)}#n(e){if(!this.#i.has(e))return!1;let f=this.#t.get(e);if(!f)throw new Error("invalid reservation");let{paths:p,dirs:m}=f,y=new Set;for(let f of p){let p=this.#e.get(f);if(!p||p?.[0]!==e)continue;let m=p[1];if(!m){this.#e.delete(f);continue}if(p.shift(),typeof m=="function")y.add(m);else for(let e of m)y.add(e)}for(let f of m){let p=this.#e.get(f),m=p?.[0];if(!(!p||!(m instanceof Set)))if(m.size===1&&p.length===1){this.#e.delete(f);continue}else if(m.size===1){p.shift();let e=p[0];typeof e=="function"&&y.add(e)}else m.delete(e)}return this.#i.delete(e),y.forEach((e=>this.#s(e))),!0}};e.PathReservations=_}));var Y=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.umask=void 0;var Gh=()=>process.umask();e.umask=Gh}));var $=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),m=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),b=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var y=s(e),b=0;b<y.length;b++)y[b]!=="default"&&f(p,e,y[b]);return m(p,e),p}}(),v=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.UnpackSync=e.Unpack=void 0;var _=b(y()),w=v(p(61)),g=p(5),S=v(p(561)),O=v(p(411)),R=C(),P=Z(),T=k(),M=D(),x=A(),L=b(N()),I=G(),F=W(),B=Y(),z=Symbol("onEntry"),j=Symbol("checkFs"),U=Symbol("checkFs2"),H=Symbol("isReusable"),$=Symbol("makeFs"),q=Symbol("file"),V=Symbol("directory"),K=Symbol("link"),X=Symbol("symlink"),Q=Symbol("hardlink"),J=Symbol("ensureNoSymlink"),ee=Symbol("unsupported"),te=Symbol("checkPath"),ie=Symbol("stripAbsolutePath"),re=Symbol("mkdir"),se=Symbol("onError"),ne=Symbol("pending"),oe=Symbol("pend"),ae=Symbol("unpend"),he=Symbol("ended"),le=Symbol("maybeClose"),de=Symbol("skip"),ue=Symbol("doChown"),ce=Symbol("uid"),fe=Symbol("gid"),pe=Symbol("checkedCwd"),me=process.env.TESTING_TAR_FAKE_PLATFORM||process.platform,ye=me==="win32",ve=1024,sl=(e,f)=>{if(!ye)return S.default.unlink(e,f);let p=e+".DELETE."+(0,g.randomBytes)(16).toString("hex");S.default.rename(e,p,(e=>{if(e)return f(e);S.default.unlink(p,f)}))},rl=e=>{if(!ye)return S.default.unlinkSync(e);let f=e+".DELETE."+(0,g.randomBytes)(16).toString("hex");S.default.renameSync(e,f),S.default.unlinkSync(f)},io=(e,f,p)=>e!==void 0&&e===e>>>0?e:f!==void 0&&f===f>>>0?f:p,_e=class extends M.Parser{[he]=!1;[pe]=!1;[ne]=0;reservations=new I.PathReservations;transform;writable=!0;readable=!1;uid;gid;setOwner;preserveOwner;processGid;processUid;maxDepth;forceChown;win32;newer;keep;noMtime;preservePaths;unlink;cwd;strip;processUmask;umask;dmode;fmode;chmod;constructor(e={}){if(e.ondone=()=>{this[he]=!0,this[le]()},super(e),this.transform=e.transform,this.chmod=!!e.chmod,typeof e.uid=="number"||typeof e.gid=="number"){if(typeof e.uid!="number"||typeof e.gid!="number")throw new TypeError("cannot set owner without number uid and gid");if(e.preserveOwner)throw new TypeError("cannot preserve owner in archive and also set owner explicitly");this.uid=e.uid,this.gid=e.gid,this.setOwner=!0}else this.uid=void 0,this.gid=void 0,this.setOwner=!1;e.preserveOwner===void 0&&typeof e.uid!="number"?this.preserveOwner=!!(process.getuid&&process.getuid()===0):this.preserveOwner=!!e.preserveOwner,this.processUid=(this.preserveOwner||this.setOwner)&&process.getuid?process.getuid():void 0,this.processGid=(this.preserveOwner||this.setOwner)&&process.getgid?process.getgid():void 0,this.maxDepth=typeof e.maxDepth=="number"?e.maxDepth:ve,this.forceChown=e.forceChown===!0,this.win32=!!e.win32||ye,this.newer=!!e.newer,this.keep=!!e.keep,this.noMtime=!!e.noMtime,this.preservePaths=!!e.preservePaths,this.unlink=!!e.unlink,this.cwd=(0,T.normalizeWindowsPath)(O.default.resolve(e.cwd||process.cwd())),this.strip=Number(e.strip)||0,this.processUmask=this.chmod?typeof e.processUmask=="number"?e.processUmask:(0,B.umask)():0,this.umask=typeof e.umask=="number"?e.umask:this.processUmask,this.dmode=e.dmode||511&~this.umask,this.fmode=e.fmode||438&~this.umask,this.on("entry",(e=>this[z](e)))}warn(e,f,p={}){return(e==="TAR_BAD_ARCHIVE"||e==="TAR_ABORT")&&(p.recoverable=!1),super.warn(e,f,p)}[le](){this[he]&&this[ne]===0&&(this.emit("prefinish"),this.emit("finish"),this.emit("end"))}[ie](e,f){let p=e[f],{type:m}=e;if(!p||this.preservePaths)return!0;let[y,b]=(0,x.stripAbsolutePath)(p),v=b.replace(/\\/g,"/").split("/");if(v.includes("..")||ye&&/^[a-z]:\.\.$/i.test(v[0]??"")){if(f==="path"||m==="Link")return this.warn("TAR_ENTRY_ERROR",`${f} contains '..'`,{entry:e,[f]:p}),!1;{let m=O.default.posix.dirname(e.path),y=O.default.posix.normalize(O.default.posix.join(m,v.join("/")));if(y.startsWith("../")||y==="..")return this.warn("TAR_ENTRY_ERROR",`${f} escapes extraction directory`,{entry:e,[f]:p}),!1}}return y&&(e[f]=String(b),this.warn("TAR_ENTRY_INFO",`stripping ${y} from absolute ${f}`,{entry:e,[f]:p})),!0}[te](e){let f=(0,T.normalizeWindowsPath)(e.path),p=f.split("/");if(this.strip){if(p.length<this.strip)return!1;if(e.type==="Link"){let f=(0,T.normalizeWindowsPath)(String(e.linkpath)).split("/");if(f.length>=this.strip)e.linkpath=f.slice(this.strip).join("/");else return!1}p.splice(0,this.strip),e.path=p.join("/")}if(isFinite(this.maxDepth)&&p.length>this.maxDepth)return this.warn("TAR_ENTRY_ERROR","path excessively deep",{entry:e,path:f,depth:p.length,maxDepth:this.maxDepth}),!1;if(!this[ie](e,"path")||!this[ie](e,"linkpath"))return!1;if(O.default.isAbsolute(e.path)?e.absolute=(0,T.normalizeWindowsPath)(O.default.resolve(e.path)):e.absolute=(0,T.normalizeWindowsPath)(O.default.resolve(this.cwd,e.path)),!this.preservePaths&&typeof e.absolute=="string"&&e.absolute.indexOf(this.cwd+"/")!==0&&e.absolute!==this.cwd)return this.warn("TAR_ENTRY_ERROR","path escaped extraction target",{entry:e,path:(0,T.normalizeWindowsPath)(e.path),resolvedPath:e.absolute,cwd:this.cwd}),!1;if(e.absolute===this.cwd&&e.type!=="Directory"&&e.type!=="GNUDumpDir")return!1;if(this.win32){let{root:f}=O.default.win32.parse(String(e.absolute));e.absolute=f+L.encode(String(e.absolute).slice(f.length));let{root:p}=O.default.win32.parse(e.path);e.path=p+L.encode(e.path.slice(p.length))}return!0}[z](e){if(!this[te](e))return e.resume();switch(w.default.equal(typeof e.absolute,"string"),e.type){case"Directory":case"GNUDumpDir":e.mode&&(e.mode=e.mode|448);case"File":case"OldFile":case"ContiguousFile":case"Link":case"SymbolicLink":return this[j](e);default:return this[ee](e)}}[se](e,f){e.name==="CwdError"?this.emit("error",e):(this.warn("TAR_ENTRY_ERROR",e,{entry:f}),this[ae](),f.resume())}[re](e,f,p){(0,P.mkdir)((0,T.normalizeWindowsPath)(e),{uid:this.uid,gid:this.gid,processUid:this.processUid,processGid:this.processGid,umask:this.processUmask,preserve:this.preservePaths,unlink:this.unlink,cwd:this.cwd,mode:f},p)}[ue](e){return this.forceChown||this.preserveOwner&&(typeof e.uid=="number"&&e.uid!==this.processUid||typeof e.gid=="number"&&e.gid!==this.processGid)||typeof this.uid=="number"&&this.uid!==this.processUid||typeof this.gid=="number"&&this.gid!==this.processGid}[ce](e){return io(this.uid,e.uid,this.processUid)}[fe](e){return io(this.gid,e.gid,this.processGid)}[q](e,f){let p=typeof e.mode=="number"?e.mode&4095:this.fmode,m=new _.WriteStream(String(e.absolute),{flags:(0,R.getWriteFlag)(e.size),mode:p,autoClose:!1});m.on("error",(p=>{m.fd&&S.default.close(m.fd,(()=>{})),m.write=()=>!0,this[se](p,e),f()}));let y=1,o=p=>{if(p){m.fd&&S.default.close(m.fd,(()=>{})),this[se](p,e),f();return}--y===0&&m.fd!==void 0&&S.default.close(m.fd,(p=>{p?this[se](p,e):this[ae](),f()}))};m.on("finish",(()=>{let f=String(e.absolute),p=m.fd;if(typeof p=="number"&&e.mtime&&!this.noMtime){y++;let m=e.atime||new Date,b=e.mtime;S.default.futimes(p,m,b,(e=>e?S.default.utimes(f,m,b,(f=>o(f&&e))):o()))}if(typeof p=="number"&&this[ue](e)){y++;let m=this[ce](e),b=this[fe](e);typeof m=="number"&&typeof b=="number"&&S.default.fchown(p,m,b,(e=>e?S.default.chown(f,m,b,(f=>o(f&&e))):o()))}o()}));let b=this.transform&&this.transform(e)||e;b!==e&&(b.on("error",(p=>{this[se](p,e),f()})),e.pipe(b)),b.pipe(m)}[V](e,f){let p=typeof e.mode=="number"?e.mode&4095:this.dmode;this[re](String(e.absolute),p,(p=>{if(p){this[se](p,e),f();return}let m=1,o=()=>{--m===0&&(f(),this[ae](),e.resume())};e.mtime&&!this.noMtime&&(m++,S.default.utimes(String(e.absolute),e.atime||new Date,e.mtime,o)),this[ue](e)&&(m++,S.default.chown(String(e.absolute),Number(this[ce](e)),Number(this[fe](e)),o)),o()}))}[ee](e){e.unsupported=!0,this.warn("TAR_ENTRY_UNSUPPORTED",`unsupported entry type: ${e.type}`,{entry:e}),e.resume()}[X](e,f){let p=(0,T.normalizeWindowsPath)(O.default.relative(this.cwd,O.default.resolve(O.default.dirname(String(e.absolute)),String(e.linkpath)))).split("/");this[J](e,this.cwd,p,(()=>this[K](e,String(e.linkpath),"symlink",f)),(p=>{this[se](p,e),f()}))}[Q](e,f){let p=(0,T.normalizeWindowsPath)(O.default.resolve(this.cwd,String(e.linkpath))),m=(0,T.normalizeWindowsPath)(String(e.linkpath)).split("/");this[J](e,this.cwd,m,(()=>this[K](e,p,"link",f)),(p=>{this[se](p,e),f()}))}[J](e,f,p,m,y){let b=p.shift();if(this.preservePaths||b===void 0)return m();let v=O.default.resolve(f,b);S.default.lstat(v,((f,b)=>{if(f)return m();if(b?.isSymbolicLink())return y(new F.SymlinkError(v,O.default.resolve(v,p.join("/"))));this[J](e,v,p,m,y)}))}[oe](){this[ne]++}[ae](){this[ne]--,this[le]()}[de](e){this[ae](),e.resume()}[H](e,f){return e.type==="File"&&!this.unlink&&f.isFile()&&f.nlink<=1&&!ye}[j](e){this[oe]();let f=[e.path];e.linkpath&&f.push(e.linkpath),this.reservations.reserve(f,(f=>this[U](e,f)))}[U](e,f){let i=e=>{f(e)},r=()=>{this[re](this.cwd,this.dmode,(f=>{if(f){this[se](f,e),i();return}this[pe]=!0,n()}))},n=()=>{if(e.absolute!==this.cwd){let f=(0,T.normalizeWindowsPath)(O.default.dirname(String(e.absolute)));if(f!==this.cwd)return this[re](f,this.dmode,(f=>{if(f){this[se](f,e),i();return}o()}))}o()},o=()=>{S.default.lstat(String(e.absolute),((f,p)=>{if(p&&(this.keep||this.newer&&p.mtime>(e.mtime??p.mtime))){this[de](e),i();return}if(f||this[H](e,p))return this[$](null,e,i);if(p.isDirectory()){if(e.type==="Directory"){let f=this.chmod&&e.mode&&(p.mode&4095)!==e.mode,u=f=>this[$](f??null,e,i);return f?S.default.chmod(String(e.absolute),Number(e.mode),u):u()}if(e.absolute!==this.cwd)return S.default.rmdir(String(e.absolute),(f=>this[$](f??null,e,i)))}if(e.absolute===this.cwd)return this[$](null,e,i);sl(String(e.absolute),(f=>this[$](f??null,e,i)))}))};this[pe]?n():r()}[$](e,f,p){if(e){this[se](e,f),p();return}switch(f.type){case"File":case"OldFile":case"ContiguousFile":return this[q](f,p);case"Link":return this[Q](f,p);case"SymbolicLink":return this[X](f,p);case"Directory":case"GNUDumpDir":return this[V](f,p)}}[K](e,f,p,m){S.default[p](f,String(e.absolute),(f=>{f?this[se](f,e):(this[ae](),e.resume()),m()}))}};e.Unpack=_e;var Nt=e=>{try{return[null,e()]}catch(e){return[e,null]}},we=class extends _e{sync=!0;[$](e,f){return super[$](e,f,(()=>{}))}[j](e){if(!this[pe]){let f=this[re](this.cwd,this.dmode);if(f)return this[se](f,e);this[pe]=!0}if(e.absolute!==this.cwd){let f=(0,T.normalizeWindowsPath)(O.default.dirname(String(e.absolute)));if(f!==this.cwd){let p=this[re](f,this.dmode);if(p)return this[se](p,e)}}let[f,p]=Nt((()=>S.default.lstatSync(String(e.absolute))));if(p&&(this.keep||this.newer&&p.mtime>(e.mtime??p.mtime)))return this[de](e);if(f||this[H](e,p))return this[$](null,e);if(p.isDirectory()){if(e.type==="Directory"){let f=this.chmod&&e.mode&&(p.mode&4095)!==e.mode,[m]=f?Nt((()=>{S.default.chmodSync(String(e.absolute),Number(e.mode))})):[];return this[$](m,e)}let[f]=Nt((()=>S.default.rmdirSync(String(e.absolute))));this[$](f,e)}let[m]=e.absolute===this.cwd?[]:Nt((()=>rl(String(e.absolute))));this[$](m,e)}[q](e,f){let p=typeof e.mode=="number"?e.mode&4095:this.fmode,r=p=>{let y;try{S.default.closeSync(m)}catch(e){y=e}(p||y)&&this[se](p||y,e),f()},m;try{m=S.default.openSync(String(e.absolute),(0,R.getWriteFlag)(e.size),p)}catch(e){return r(e)}let y=this.transform&&this.transform(e)||e;y!==e&&(y.on("error",(f=>this[se](f,e))),e.pipe(y)),y.on("data",(e=>{try{S.default.writeSync(m,e,0,e.length)}catch(e){r(e)}})),y.on("end",(()=>{let f=null;if(e.mtime&&!this.noMtime){let p=e.atime||new Date,y=e.mtime;try{S.default.futimesSync(m,p,y)}catch(m){try{S.default.utimesSync(String(e.absolute),p,y)}catch{f=m}}}if(this[ue](e)){let p=this[ce](e),y=this[fe](e);try{S.default.fchownSync(m,Number(p),Number(y))}catch(m){try{S.default.chownSync(String(e.absolute),Number(p),Number(y))}catch{f=f||m}}}r(f)}))}[V](e,f){let p=typeof e.mode=="number"?e.mode&4095:this.dmode,m=this[re](String(e.absolute),p);if(m){this[se](m,e),f();return}if(e.mtime&&!this.noMtime)try{S.default.utimesSync(String(e.absolute),e.atime||new Date,e.mtime)}catch{}if(this[ue](e))try{S.default.chownSync(String(e.absolute),Number(this[ce](e)),Number(this[fe](e)))}catch{}f(),e.resume()}[re](e,f){try{return(0,P.mkdirSync)((0,T.normalizeWindowsPath)(e),{uid:this.uid,gid:this.gid,processUid:this.processUid,processGid:this.processGid,umask:this.processUmask,preserve:this.preservePaths,unlink:this.unlink,cwd:this.cwd,mode:f})}catch(e){return e}}[J](e,f,p,m,y){if(this.preservePaths||!p.length)return m();let b=f;for(let e of p){b=O.default.resolve(b,e);let[v,_]=Nt((()=>S.default.lstatSync(b)));if(v)return m();if(_.isSymbolicLink())return y(new F.SymlinkError(b,O.default.resolve(f,p.join("/"))))}m()}[K](e,f,p,m){let y=`${p}Sync`;try{S.default[y](f,String(e.absolute)),m(),e.resume()}catch(f){return this[se](f,e)}}};e.UnpackSync=we}));var q=d((e=>{"use strict";var f=e&&e.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),m=e&&e.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),b=e&&e.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var p={};if(e!=null)for(var y=s(e),b=0;b<y.length;b++)y[b]!=="default"&&f(p,e,y[b]);return m(p,e),p}}(),_=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.extract=void 0;var w=b(y()),g=_(p(561)),S=x(),O=v(),R=$(),cl=e=>{let f=new R.UnpackSync(e),p=e.file,m=g.default.statSync(p),y=e.maxReadSize||16*1024*1024;new w.ReadStreamSync(p,{readSize:y,size:m.size}).pipe(f)},fl=(e,f)=>{let p=new R.Unpack(e),m=e.maxReadSize||16*1024*1024,y=e.file;return new Promise(((e,f)=>{p.on("error",f),p.on("close",e),g.default.stat(y,((e,b)=>{if(e)f(e);else{let e=new w.ReadStream(y,{readSize:m,size:b.size});e.on("error",f),e.pipe(p)}}))}))};e.extract=(0,O.makeCommand)(cl,fl,(e=>new R.UnpackSync(e)),(e=>new R.Unpack(e)),((e,f)=>{f?.length&&(0,S.filesFilter)(e,f)}))}));var V=d((e=>{"use strict";var f=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0});e.replace=void 0;var m=y(),_=f(p(561)),w=f(p(411)),g=O(),S=x(),R=v(),k=b(),P=B(),pl=(e,f)=>{let p=new P.PackSync(e),m=!0,y,b;try{try{y=_.default.openSync(e.file,"r+")}catch(f){if(f?.code==="ENOENT")y=_.default.openSync(e.file,"w+");else throw f}let v=_.default.fstatSync(y),w=Buffer.alloc(512);e:for(b=0;b<v.size;b+=512){for(let e=0,f=0;e<512;e+=f){if(f=_.default.readSync(y,w,e,w.length-e,b+e),b===0&&w[0]===31&&w[1]===139)throw new Error("cannot append to compressed archives");if(!f)break e}let f=new g.Header(w);if(!f.cksumValid)break;let p=512*Math.ceil((f.size||0)/512);if(b+p+512>v.size)break;b+=p,e.mtimeCache&&f.mtime&&e.mtimeCache.set(String(f.path),f.mtime)}m=!1,_l(e,p,b,y,f)}finally{if(m)try{_.default.closeSync(y)}catch{}}},_l=(e,f,p,y,b)=>{let v=new m.WriteStreamSync(e.file,{fd:y,start:p});f.pipe(v),yl(f,b)},wl=(e,f)=>{f=Array.from(f);let p=new P.Pack(e),i=(f,p,m)=>{let h=(e,p)=>{e?_.default.close(f,(f=>m(e))):m(null,p)},y=0;if(p===0)return h(null,0);let b=0,v=Buffer.alloc(512),E=(m,w)=>{if(m||typeof w>"u")return h(m);if(b+=w,b<512&&w)return _.default.read(f,v,b,v.length-b,y+b,E);if(y===0&&v[0]===31&&v[1]===139)return h(new Error("cannot append to compressed archives"));if(b<512)return h(null,y);let S=new g.Header(v);if(!S.cksumValid)return h(null,y);let O=512*Math.ceil((S.size??0)/512);if(y+O+512>p||(y+=O+512,y>=p))return h(null,y);e.mtimeCache&&S.mtime&&e.mtimeCache.set(String(S.path),S.mtime),b=0,_.default.read(f,v,0,512,y,E)};_.default.read(f,v,0,512,y,E)};return new Promise(((y,b)=>{p.on("error",b);let v="r+",h=(w,g)=>{if(w&&w.code==="ENOENT"&&v==="r+")return v="w+",_.default.open(e.file,v,h);if(w||!g)return b(w);_.default.fstat(g,((v,w)=>{if(v)return _.default.close(g,(()=>b(v)));i(g,w.size,((v,_)=>{if(v)return b(v);let w=new m.WriteStream(e.file,{fd:g,start:_});p.pipe(w),w.on("error",b),w.on("close",y),El(p,f)}))}))};_.default.open(e.file,v,h)}))},yl=(e,f)=>{f.forEach((f=>{f.charAt(0)==="@"?(0,S.list)({file:w.default.resolve(e.cwd,f.slice(1)),sync:!0,noResume:!0,onReadEntry:f=>e.add(f)}):e.add(f)})),e.end()},El=async(e,f)=>{for(let p=0;p<f.length;p++){let m=String(f[p]);m.charAt(0)==="@"?await(0,S.list)({file:w.default.resolve(String(e.cwd),m.slice(1)),noResume:!0,onReadEntry:f=>e.add(f)}):e.add(m)}e.end()};e.replace=(0,R.makeCommand)(pl,wl,(()=>{throw new TypeError("file is required")}),(()=>{throw new TypeError("file is required")}),((e,f)=>{if(!(0,k.isFile)(e))throw new TypeError("file is required");if(e.gzip||e.brotli||e.zstd||e.file.endsWith(".br")||e.file.endsWith(".tbr"))throw new TypeError("cannot append to compressed archives");if(!f?.length)throw new TypeError("no paths specified to add/replace")}))}));var K=d((e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.update=void 0;var f=v(),p=V();e.update=(0,f.makeCommand)(p.replace.syncFile,p.replace.asyncFile,p.replace.syncNoFile,p.replace.asyncNoFile,((e,f=[])=>{p.replace.validate?.(e,f),Sl(e)}));var Sl=e=>{let f=e.filter;e.mtimeCache||(e.mtimeCache=new Map),e.filter=f?(p,m)=>f(p,m)&&!((e.mtimeCache?.get(p)??m.mtime??0)>(m.mtime??0)):(f,p)=>!((e.mtimeCache?.get(f)??p.mtime??0)>(p.mtime??0))}}));var X=f&&f.__createBinding||(Object.create?function(e,f,p,m){m===void 0&&(m=p);var y=Object.getOwnPropertyDescriptor(f,p);(!y||("get"in y?!f.__esModule:y.writable||y.configurable))&&(y={enumerable:!0,get:function(){return f[p]}}),Object.defineProperty(e,m,y)}:function(e,f,p,m){m===void 0&&(m=p),e[m]=f[p]}),Q=f&&f.__setModuleDefault||(Object.create?function(e,f){Object.defineProperty(e,"default",{enumerable:!0,value:f})}:function(e,f){e.default=f}),J=f&&f.__exportStar||function(e,f){for(var p in e)p!=="default"&&!Object.prototype.hasOwnProperty.call(f,p)&&X(f,e,p)},ee=f&&f.__importStar||function(){var s=function(e){return s=Object.getOwnPropertyNames||function(e){var f=[];for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(f[f.length]=p);return f},s(e)};return function(e){if(e&&e.__esModule)return e;var f={};if(e!=null)for(var p=s(e),m=0;m<p.length;m++)p[m]!=="default"&&X(f,e,p[m]);return Q(f,e),f}}();Object.defineProperty(f,"__esModule",{value:!0});f.u=f.types=f.r=f.t=f.x=f.c=void 0;J(z(),f);var te=z();Object.defineProperty(f,"c",{enumerable:!0,get:function(){return te.create}});J(q(),f);var ie=q();Object.defineProperty(f,"x",{enumerable:!0,get:function(){return ie.extract}});J(O(),f);J(x(),f);var re=x();Object.defineProperty(f,"t",{enumerable:!0,get:function(){return re.list}});J(B(),f);J(D(),f);J(R(),f);J(P(),f);J(V(),f);var se=V();Object.defineProperty(f,"r",{enumerable:!0,get:function(){return se.replace}});f.types=ee(S());J($(),f);J(K(),f);var ne=K();Object.defineProperty(f,"u",{enumerable:!0,get:function(){return ne.update}});J(I(),f)}};var f={};function __nccwpck_require__(p){var m=f[p];if(m!==undefined){return m.exports}var y=f[p]={exports:{}};var b=true;try{e[p](y,y.exports,__nccwpck_require__);b=false}finally{if(b)delete f[p]}return y.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var p=__nccwpck_require__(590);module.exports=p})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"tar","main":"index.min.js","author":"Isaac Z. Schlueter","license":"BlueOak-1.0.0"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{var r={286:r=>{r.exports=function(r,e){if(!e)e={};var n=e.hsep===undefined?" ":e.hsep;var t=e.align||[];var a=e.stringLength||function(r){return String(r).length};var i=reduce(r,(function(r,e){forEach(e,(function(e,n){var t=dotindex(e);if(!r[n]||t>r[n])r[n]=t}));return r}),[]);var u=map(r,(function(r){return map(r,(function(r,e){var n=String(r);if(t[e]==="."){var u=dotindex(n);var f=i[e]+(/\./.test(n)?1:2)-(a(n)-u);return n+Array(f).join(" ")}else return n}))}));var f=reduce(u,(function(r,e){forEach(e,(function(e,n){var t=a(e);if(!r[n]||t>r[n])r[n]=t}));return r}),[]);return map(u,(function(r){return map(r,(function(r,e){var n=f[e]-a(r)||0;var i=Array(Math.max(n+1,1)).join(" ");if(t[e]==="r"||t[e]==="."){return i+r}if(t[e]==="c"){return Array(Math.ceil(n/2+1)).join(" ")+r+Array(Math.floor(n/2+1)).join(" ")}return r+i})).join(n).replace(/\s+$/,"")})).join("\n")};function dotindex(r){var e=/\.[^.]*$/.exec(r);return e?e.index+1:r.length}function reduce(r,e,n){if(r.reduce)return r.reduce(e,n);var t=0;var a=arguments.length>=3?n:r[t++];for(;t<r.length;t++){e(a,r[t],t)}return a}function forEach(r,e){if(r.forEach)return r.forEach(e);for(var n=0;n<r.length;n++){e.call(r,r[n],n)}}function map(r,e){if(r.map)return r.map(e);var n=[];for(var t=0;t<r.length;t++){n.push(e.call(r,r[t],t))}return n}}};var e={};function __nccwpck_require__(n){var t=e[n];if(t!==undefined){return t.exports}var a=e[n]={exports:{}};var i=true;try{r[n](a,a.exports,__nccwpck_require__);i=false}finally{if(i)delete e[n]}return a.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var n=__nccwpck_require__(286);module.exports=n})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"text-table","main":"index.js","author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(){var e={845:function(e,t,i){var o=typeof global!=="undefined"&&global||typeof self!=="undefined"&&self||window;var n=Function.prototype.apply;t.setTimeout=function(){return new Timeout(n.call(setTimeout,o,arguments),clearTimeout)};t.setInterval=function(){return new Timeout(n.call(setInterval,o,arguments),clearInterval)};t.clearTimeout=t.clearInterval=function(e){if(e){e.close()}};function Timeout(e,t){this._id=e;this._clearFn=t}Timeout.prototype.unref=Timeout.prototype.ref=function(){};Timeout.prototype.close=function(){this._clearFn.call(o,this._id)};t.enroll=function(e,t){clearTimeout(e._idleTimeoutId);e._idleTimeout=t};t.unenroll=function(e){clearTimeout(e._idleTimeoutId);e._idleTimeout=-1};t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;if(t>=0){e._idleTimeoutId=setTimeout((function onTimeout(){if(e._onTimeout)e._onTimeout()}),t)}};i(505);t.setImmediate=typeof self!=="undefined"&&self.setImmediate||typeof global!=="undefined"&&global.setImmediate||this&&this.setImmediate;t.clearImmediate=typeof self!=="undefined"&&self.clearImmediate||typeof global!=="undefined"&&global.clearImmediate||this&&this.clearImmediate},505:function(e){"use strict";e.exports=require("next/dist/compiled/setimmediate")}};var t={};function __nccwpck_require__(i){var o=t[i];if(o!==undefined){return o.exports}var n=t[i]={exports:{}};var r=true;try{e[i].call(n.exports,n,n.exports,__nccwpck_require__);r=false}finally{if(r)delete t[i]}return n.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var i=__nccwpck_require__(845);module.exports=i})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"timers-browserify","main":"main.js","author":"J. Ryan Stinnett <jryans@gmail.com> (https://convolv.es/)","license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(){if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var e={};!function(){var t=e;t.isatty=function(){return false};function ReadStream(){throw new Error("tty.ReadStream is not implemented")}t.ReadStream=ReadStream;function WriteStream(){throw new Error("tty.WriteStream is not implemented")}t.WriteStream=WriteStream}();module.exports=e})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"tty-browserify","main":"index.js","author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"unistore","main":"unistore.js","author":"Jason Miller <jason@developit.ca>","license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{var t={882:t=>{function n(t,i){for(var _ in i)t[_]=i[_];return t}t.exports=function(t){var i=[];function u(t){for(var _=[],a=0;a<i.length;a++)i[a]===t?t=null:_.push(i[a]);i=_}function e(_,a,f){t=a?_:n(n({},t),_);for(var o=i,c=0;c<o.length;c++)o[c](t,f)}return t=t||{},{action:function(i){function r(t){e(t,!1,i)}return function(){for(var _=arguments,a=[t],f=0;f<arguments.length;f++)a.push(_[f]);var o=i.apply(this,a);if(null!=o)return o.then?o.then(r):r(o)}},setState:e,subscribe:function(t){return i.push(t),function(){u(t)}},unsubscribe:u,getState:function(){return t}}}}};var i={};function __nccwpck_require__(_){var a=i[_];if(a!==undefined){return a.exports}var f=i[_]={exports:{}};var o=true;try{t[_](f,f.exports,__nccwpck_require__);o=false}finally{if(o)delete i[_]}return f.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var _=__nccwpck_require__(882);module.exports=_})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"util","main":"util.js","author":{"name":"Joyent","url":"http://www.joyent.com"},"license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(){var r={8992:function(r){r.exports=function(r,e,n){if(r.filter)return r.filter(e,n);if(void 0===r||null===r)throw new TypeError;if("function"!=typeof e)throw new TypeError;var o=[];for(var i=0;i<r.length;i++){if(!t.call(r,i))continue;var a=r[i];if(e.call(n,a,i,r))o.push(a)}return o};var t=Object.prototype.hasOwnProperty},5555:function(r,t,e){"use strict";var n=e(1212);var o=e(1909);var i=e(8737);var a=e(8772);r.exports=a||n.call(i,o)},9905:function(r,t,e){"use strict";var n=e(1212);var o=e(1909);var i=e(5555);r.exports=function applyBind(){return i(n,o,arguments)}},1909:function(r){"use strict";r.exports=Function.prototype.apply},8737:function(r){"use strict";r.exports=Function.prototype.call},7152:function(r,t,e){"use strict";var n=e(1212);var o=e(8202);var i=e(8737);var a=e(5555);r.exports=function callBindBasic(r){if(r.length<1||typeof r[0]!=="function"){throw new o("a function is required")}return a(n,i,r)}},8772:function(r){"use strict";r.exports=typeof Reflect!=="undefined"&&Reflect&&Reflect.apply},516:function(r,t,e){"use strict";var n=e(3197);var o=e(9042);var i=o(n("String.prototype.indexOf"));r.exports=function callBoundIntrinsic(r,t){var e=n(r,!!t);if(typeof e==="function"&&i(r,".prototype.")>-1){return o(e)}return e}},9042:function(r,t,e){"use strict";var n=e(3143);var o=e(446);var i=e(7152);var a=e(9905);r.exports=function callBind(r){var t=i(arguments);var e=r.length-(arguments.length-1);return n(t,1+(e>0?e:0),true)};if(o){o(r.exports,"apply",{value:a})}else{r.exports.apply=a}},819:function(r,t,e){"use strict";var n=e(446);var o=e(5182);var i=e(8202);var a=e(3990);r.exports=function defineDataProperty(r,t,e){if(!r||typeof r!=="object"&&typeof r!=="function"){throw new i("`obj` must be an object or a function`")}if(typeof t!=="string"&&typeof t!=="symbol"){throw new i("`property` must be a string or a symbol`")}if(arguments.length>3&&typeof arguments[3]!=="boolean"&&arguments[3]!==null){throw new i("`nonEnumerable`, if provided, must be a boolean or null")}if(arguments.length>4&&typeof arguments[4]!=="boolean"&&arguments[4]!==null){throw new i("`nonWritable`, if provided, must be a boolean or null")}if(arguments.length>5&&typeof arguments[5]!=="boolean"&&arguments[5]!==null){throw new i("`nonConfigurable`, if provided, must be a boolean or null")}if(arguments.length>6&&typeof arguments[6]!=="boolean"){throw new i("`loose`, if provided, must be a boolean")}var f=arguments.length>3?arguments[3]:null;var u=arguments.length>4?arguments[4]:null;var s=arguments.length>5?arguments[5]:null;var c=arguments.length>6?arguments[6]:false;var p=!!a&&a(r,t);if(n){n(r,t,{configurable:s===null&&p?p.configurable:!s,enumerable:f===null&&p?p.enumerable:!f,value:e,writable:u===null&&p?p.writable:!u})}else if(c||!f&&!u&&!s){r[t]=e}else{throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.")}}},6211:function(r,t,e){"use strict";var n=e(7152);var o=e(3990);var i;try{i=[].__proto__===Array.prototype}catch(r){if(!r||typeof r!=="object"||!("code"in r)||r.code!=="ERR_PROTO_ACCESS"){throw r}}var a=!!i&&o&&o(Object.prototype,"__proto__");var f=Object;var u=f.getPrototypeOf;r.exports=a&&typeof a.get==="function"?n([a.get]):typeof u==="function"?function getDunder(r){return u(r==null?r:f(r))}:false},446:function(r){"use strict";var t=Object.defineProperty||false;if(t){try{t({},"a",{value:1})}catch(r){t=false}}r.exports=t},7181:function(r){"use strict";r.exports=EvalError},1545:function(r){"use strict";r.exports=Error},22:function(r){"use strict";r.exports=RangeError},2803:function(r){"use strict";r.exports=ReferenceError},5182:function(r){"use strict";r.exports=SyntaxError},8202:function(r){"use strict";r.exports=TypeError},3284:function(r){"use strict";r.exports=URIError},2811:function(r){"use strict";r.exports=Object},6144:function(r){var t=Object.prototype.hasOwnProperty;var e=Object.prototype.toString;r.exports=function forEach(r,n,o){if(e.call(n)!=="[object Function]"){throw new TypeError("iterator must be a function")}var i=r.length;if(i===+i){for(var a=0;a<i;a++){n.call(o,r[a],a,r)}}else{for(var f in r){if(t.call(r,f)){n.call(o,r[f],f,r)}}}}},3136:function(r){"use strict";var t="Function.prototype.bind called on incompatible ";var e=Object.prototype.toString;var n=Math.max;var o="[object Function]";var i=function concatty(r,t){var e=[];for(var n=0;n<r.length;n+=1){e[n]=r[n]}for(var o=0;o<t.length;o+=1){e[o+r.length]=t[o]}return e};var a=function slicy(r,t){var e=[];for(var n=t||0,o=0;n<r.length;n+=1,o+=1){e[o]=r[n]}return e};var joiny=function(r,t){var e="";for(var n=0;n<r.length;n+=1){e+=r[n];if(n+1<r.length){e+=t}}return e};r.exports=function bind(r){var f=this;if(typeof f!=="function"||e.apply(f)!==o){throw new TypeError(t+f)}var u=a(arguments,1);var s;var binder=function(){if(this instanceof s){var t=f.apply(this,i(u,arguments));if(Object(t)===t){return t}return this}return f.apply(r,i(u,arguments))};var c=n(0,f.length-u.length);var p=[];for(var y=0;y<c;y++){p[y]="$"+y}s=Function("binder","return function ("+joiny(p,",")+"){ return binder.apply(this,arguments); }")(binder);if(f.prototype){var l=function Empty(){};l.prototype=f.prototype;s.prototype=new l;l.prototype=null}return s}},1212:function(r,t,e){"use strict";var n=e(3136);r.exports=Function.prototype.bind||n},3197:function(r,t,e){"use strict";var n;var o=e(2811);var i=e(1545);var a=e(7181);var f=e(22);var u=e(2803);var s=e(5182);var c=e(8202);var p=e(3284);var y=e(7173);var l=e(847);var g=e(2916);var v=e(9882);var b=e(3291);var d=e(553);var m=e(8629);var h=Function;var getEvalledConstructor=function(r){try{return h('"use strict"; return ('+r+").constructor;")()}catch(r){}};var S=e(3990);var A=e(446);var throwTypeError=function(){throw new c};var w=S?function(){try{arguments.callee;return throwTypeError}catch(r){try{return S(arguments,"callee").get}catch(r){return throwTypeError}}}():throwTypeError;var O=e(4871)();var j=e(699);var P=e(7823);var x=e(7904);var B=e(1909);var E=e(8737);var T={};var I=typeof Uint8Array==="undefined"||!j?n:j(Uint8Array);var k={__proto__:null,"%AggregateError%":typeof AggregateError==="undefined"?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer==="undefined"?n:ArrayBuffer,"%ArrayIteratorPrototype%":O&&j?j([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":T,"%AsyncGenerator%":T,"%AsyncGeneratorFunction%":T,"%AsyncIteratorPrototype%":T,"%Atomics%":typeof Atomics==="undefined"?n:Atomics,"%BigInt%":typeof BigInt==="undefined"?n:BigInt,"%BigInt64Array%":typeof BigInt64Array==="undefined"?n:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array==="undefined"?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView==="undefined"?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":i,"%eval%":eval,"%EvalError%":a,"%Float16Array%":typeof Float16Array==="undefined"?n:Float16Array,"%Float32Array%":typeof Float32Array==="undefined"?n:Float32Array,"%Float64Array%":typeof Float64Array==="undefined"?n:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry==="undefined"?n:FinalizationRegistry,"%Function%":h,"%GeneratorFunction%":T,"%Int8Array%":typeof Int8Array==="undefined"?n:Int8Array,"%Int16Array%":typeof Int16Array==="undefined"?n:Int16Array,"%Int32Array%":typeof Int32Array==="undefined"?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":O&&j?j(j([][Symbol.iterator]())):n,"%JSON%":typeof JSON==="object"?JSON:n,"%Map%":typeof Map==="undefined"?n:Map,"%MapIteratorPrototype%":typeof Map==="undefined"||!O||!j?n:j((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":o,"%Object.getOwnPropertyDescriptor%":S,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise==="undefined"?n:Promise,"%Proxy%":typeof Proxy==="undefined"?n:Proxy,"%RangeError%":f,"%ReferenceError%":u,"%Reflect%":typeof Reflect==="undefined"?n:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set==="undefined"?n:Set,"%SetIteratorPrototype%":typeof Set==="undefined"||!O||!j?n:j((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer==="undefined"?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":O&&j?j(""[Symbol.iterator]()):n,"%Symbol%":O?Symbol:n,"%SyntaxError%":s,"%ThrowTypeError%":w,"%TypedArray%":I,"%TypeError%":c,"%Uint8Array%":typeof Uint8Array==="undefined"?n:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray==="undefined"?n:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array==="undefined"?n:Uint16Array,"%Uint32Array%":typeof Uint32Array==="undefined"?n:Uint32Array,"%URIError%":p,"%WeakMap%":typeof WeakMap==="undefined"?n:WeakMap,"%WeakRef%":typeof WeakRef==="undefined"?n:WeakRef,"%WeakSet%":typeof WeakSet==="undefined"?n:WeakSet,"%Function.prototype.call%":E,"%Function.prototype.apply%":B,"%Object.defineProperty%":A,"%Object.getPrototypeOf%":P,"%Math.abs%":y,"%Math.floor%":l,"%Math.max%":g,"%Math.min%":v,"%Math.pow%":b,"%Math.round%":d,"%Math.sign%":m,"%Reflect.getPrototypeOf%":x};if(j){try{null.error}catch(r){var F=j(j(r));k["%Error.prototype%"]=F}}var U=function doEval(r){var t;if(r==="%AsyncFunction%"){t=getEvalledConstructor("async function () {}")}else if(r==="%GeneratorFunction%"){t=getEvalledConstructor("function* () {}")}else if(r==="%AsyncGeneratorFunction%"){t=getEvalledConstructor("async function* () {}")}else if(r==="%AsyncGenerator%"){var e=doEval("%AsyncGeneratorFunction%");if(e){t=e.prototype}}else if(r==="%AsyncIteratorPrototype%"){var n=doEval("%AsyncGenerator%");if(n&&j){t=j(n.prototype)}}k[r]=t;return t};var M={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]};var _=e(1212);var D=e(3270);var R=_.call(E,Array.prototype.concat);var N=_.call(B,Array.prototype.splice);var W=_.call(E,String.prototype.replace);var V=_.call(E,String.prototype.slice);var C=_.call(E,RegExp.prototype.exec);var G=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;var z=/\\(\\)?/g;var $=function stringToPath(r){var t=V(r,0,1);var e=V(r,-1);if(t==="%"&&e!=="%"){throw new s("invalid intrinsic syntax, expected closing `%`")}else if(e==="%"&&t!=="%"){throw new s("invalid intrinsic syntax, expected opening `%`")}var n=[];W(r,G,(function(r,t,e,o){n[n.length]=e?W(o,z,"$1"):t||r}));return n};var J=function getBaseIntrinsic(r,t){var e=r;var n;if(D(M,e)){n=M[e];e="%"+n[0]+"%"}if(D(k,e)){var o=k[e];if(o===T){o=U(e)}if(typeof o==="undefined"&&!t){throw new c("intrinsic "+r+" exists, but is not available. Please file an issue!")}return{alias:n,name:e,value:o}}throw new s("intrinsic "+r+" does not exist!")};r.exports=function GetIntrinsic(r,t){if(typeof r!=="string"||r.length===0){throw new c("intrinsic name must be a non-empty string")}if(arguments.length>1&&typeof t!=="boolean"){throw new c('"allowMissing" argument must be a boolean')}if(C(/^%?[^%]*%?$/,r)===null){throw new s("`%` may not be present anywhere but at the beginning and end of the intrinsic name")}var e=$(r);var o=e.length>0?e[0]:"";var i=J("%"+o+"%",t);var a=i.name;var f=i.value;var u=false;var p=i.alias;if(p){o=p[0];N(e,R([0,1],p))}for(var y=1,l=true;y<e.length;y+=1){var g=e[y];var v=V(g,0,1);var b=V(g,-1);if((v==='"'||v==="'"||v==="`"||(b==='"'||b==="'"||b==="`"))&&v!==b){throw new s("property names with quotes must have matching quotes")}if(g==="constructor"||!l){u=true}o+="."+g;a="%"+o+"%";if(D(k,a)){f=k[a]}else if(f!=null){if(!(g in f)){if(!t){throw new c("base intrinsic for "+r+" exists, but the property is not available.")}return void n}if(S&&y+1>=e.length){var d=S(f,g);l=!!d;if(l&&"get"in d&&!("originalValue"in d.get)){f=d.get}else{f=f[g]}}else{l=D(f,g);f=f[g]}if(l&&!u){k[a]=f}}}return f}},7823:function(r,t,e){"use strict";var n=e(2811);r.exports=n.getPrototypeOf||null},7904:function(r){"use strict";r.exports=typeof Reflect!=="undefined"&&Reflect.getPrototypeOf||null},699:function(r,t,e){"use strict";var n=e(7904);var o=e(7823);var i=e(6211);r.exports=n?function getProto(r){return n(r)}:o?function getProto(r){if(!r||typeof r!=="object"&&typeof r!=="function"){throw new TypeError("getProto: not an object")}return o(r)}:i?function getProto(r){return i(r)}:null},4596:function(r){"use strict";r.exports=Object.getOwnPropertyDescriptor},3990:function(r,t,e){"use strict";var n=e(4596);if(n){try{n([],"length")}catch(r){n=null}}r.exports=n},7122:function(r,t,e){"use strict";var n=e(446);var o=function hasPropertyDescriptors(){return!!n};o.hasArrayLengthDefineBug=function hasArrayLengthDefineBug(){if(!n){return null}try{return n([],"length",{value:1}).length!==1}catch(r){return true}};r.exports=o},9942:function(r,t,e){"use strict";var n=typeof Symbol!=="undefined"&&Symbol;var o=e(3773);r.exports=function hasNativeSymbols(){if(typeof n!=="function"){return false}if(typeof Symbol!=="function"){return false}if(typeof n("foo")!=="symbol"){return false}if(typeof Symbol("bar")!=="symbol"){return false}return o()}},3773:function(r){"use strict";r.exports=function hasSymbols(){if(typeof Symbol!=="function"||typeof Object.getOwnPropertySymbols!=="function"){return false}if(typeof Symbol.iterator==="symbol"){return true}var r={};var t=Symbol("test");var e=Object(t);if(typeof t==="string"){return false}if(Object.prototype.toString.call(t)!=="[object Symbol]"){return false}if(Object.prototype.toString.call(e)!=="[object Symbol]"){return false}var n=42;r[t]=n;for(t in r){return false}if(typeof Object.keys==="function"&&Object.keys(r).length!==0){return false}if(typeof Object.getOwnPropertyNames==="function"&&Object.getOwnPropertyNames(r).length!==0){return false}var o=Object.getOwnPropertySymbols(r);if(o.length!==1||o[0]!==t){return false}if(!Object.prototype.propertyIsEnumerable.call(r,t)){return false}if(typeof Object.getOwnPropertyDescriptor==="function"){var i=Object.getOwnPropertyDescriptor(r,t);if(i.value!==n||i.enumerable!==true){return false}}return true}},4871:function(r,t,e){"use strict";var n=typeof Symbol!=="undefined"&&Symbol;var o=e(5960);r.exports=function hasNativeSymbols(){if(typeof n!=="function"){return false}if(typeof Symbol!=="function"){return false}if(typeof n("foo")!=="symbol"){return false}if(typeof Symbol("bar")!=="symbol"){return false}return o()}},5960:function(r){"use strict";r.exports=function hasSymbols(){if(typeof Symbol!=="function"||typeof Object.getOwnPropertySymbols!=="function"){return false}if(typeof Symbol.iterator==="symbol"){return true}var r={};var t=Symbol("test");var e=Object(t);if(typeof t==="string"){return false}if(Object.prototype.toString.call(t)!=="[object Symbol]"){return false}if(Object.prototype.toString.call(e)!=="[object Symbol]"){return false}var n=42;r[t]=n;for(var o in r){return false}if(typeof Object.keys==="function"&&Object.keys(r).length!==0){return false}if(typeof Object.getOwnPropertyNames==="function"&&Object.getOwnPropertyNames(r).length!==0){return false}var i=Object.getOwnPropertySymbols(r);if(i.length!==1||i[0]!==t){return false}if(!Object.prototype.propertyIsEnumerable.call(r,t)){return false}if(typeof Object.getOwnPropertyDescriptor==="function"){var a=Object.getOwnPropertyDescriptor(r,t);if(a.value!==n||a.enumerable!==true){return false}}return true}},3270:function(r,t,e){"use strict";var n=Function.prototype.call;var o=Object.prototype.hasOwnProperty;var i=e(1212);r.exports=i.call(n,o)},3782:function(r){if(typeof Object.create==="function"){r.exports=function inherits(r,t){if(t){r.super_=t;r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:false,writable:true,configurable:true}})}}}else{r.exports=function inherits(r,t){if(t){r.super_=t;var TempCtor=function(){};TempCtor.prototype=t.prototype;r.prototype=new TempCtor;r.prototype.constructor=r}}}},5157:function(r){"use strict";var t=typeof Symbol==="function"&&typeof Symbol.toStringTag==="symbol";var e=Object.prototype.toString;var n=function isArguments(r){if(t&&r&&typeof r==="object"&&Symbol.toStringTag in r){return false}return e.call(r)==="[object Arguments]"};var o=function isArguments(r){if(n(r)){return true}return r!==null&&typeof r==="object"&&typeof r.length==="number"&&r.length>=0&&e.call(r)!=="[object Array]"&&e.call(r.callee)==="[object Function]"};var i=function(){return n(arguments)}();n.isLegacyArguments=o;r.exports=i?n:o},3391:function(r){"use strict";var t=Object.prototype.toString;var e=Function.prototype.toString;var n=/^\s*(?:function)?\*/;var o=typeof Symbol==="function"&&typeof Symbol.toStringTag==="symbol";var i=Object.getPrototypeOf;var getGeneratorFunc=function(){if(!o){return false}try{return Function("return function*() {}")()}catch(r){}};var a=getGeneratorFunc();var f=a?i(a):{};r.exports=function isGeneratorFunction(r){if(typeof r!=="function"){return false}if(n.test(e.call(r))){return true}if(!o){var a=t.call(r);return a==="[object GeneratorFunction]"}return i(r)===f}},994:function(r,t,e){"use strict";var n=e(6144);var o=e(1349);var i=e(516);var a=i("Object.prototype.toString");var f=e(9942)();var u=f&&typeof Symbol.toStringTag==="symbol";var s=o();var c=i("Array.prototype.indexOf",true)||function indexOf(r,t){for(var e=0;e<r.length;e+=1){if(r[e]===t){return e}}return-1};var p=i("String.prototype.slice");var y={};var l=e(2154);var g=Object.getPrototypeOf;if(u&&l&&g){n(s,(function(r){var t=new global[r];if(!(Symbol.toStringTag in t)){throw new EvalError("this engine has support for Symbol.toStringTag, but "+r+" does not have the property! Please report this.")}var e=g(t);var n=l(e,Symbol.toStringTag);if(!n){var o=g(e);n=l(o,Symbol.toStringTag)}y[r]=n.get}))}var v=function tryAllTypedArrays(r){var t=false;n(y,(function(e,n){if(!t){try{t=e.call(r)===n}catch(r){}}}));return t};r.exports=function isTypedArray(r){if(!r||typeof r!=="object"){return false}if(!u){var t=p(a(r),8,-1);return c(s,t)>-1}if(!l){return false}return v(r)}},7173:function(r){"use strict";r.exports=Math.abs},847:function(r){"use strict";r.exports=Math.floor},219:function(r){"use strict";r.exports=Number.isNaN||function isNaN(r){return r!==r}},2916:function(r){"use strict";r.exports=Math.max},9882:function(r){"use strict";r.exports=Math.min},3291:function(r){"use strict";r.exports=Math.pow},553:function(r){"use strict";r.exports=Math.round},8629:function(r,t,e){"use strict";var n=e(219);r.exports=function sign(r){if(n(r)||r===0){return r}return r<0?-1:+1}},3143:function(r,t,e){"use strict";var n=e(3197);var o=e(819);var i=e(7122)();var a=e(3990);var f=e(8202);var u=n("%Math.floor%");r.exports=function setFunctionLength(r,t){if(typeof r!=="function"){throw new f("`fn` is not a function")}if(typeof t!=="number"||t<0||t>4294967295||u(t)!==t){throw new f("`length` must be a positive 32-bit integer")}var e=arguments.length>2&&!!arguments[2];var n=true;var s=true;if("length"in r&&a){var c=a(r,"length");if(c&&!c.configurable){n=false}if(c&&!c.writable){s=false}}if(n||s||!e){if(i){o(r,"length",t,true,true)}else{o(r,"length",t)}}return r}},2369:function(r){r.exports=function isBuffer(r){return r instanceof Buffer}},5584:function(r,t,e){"use strict";var n=e(5157);var o=e(3391);var i=e(1490);var a=e(994);function uncurryThis(r){return r.call.bind(r)}var f=typeof BigInt!=="undefined";var u=typeof Symbol!=="undefined";var s=uncurryThis(Object.prototype.toString);var c=uncurryThis(Number.prototype.valueOf);var p=uncurryThis(String.prototype.valueOf);var y=uncurryThis(Boolean.prototype.valueOf);if(f){var l=uncurryThis(BigInt.prototype.valueOf)}if(u){var g=uncurryThis(Symbol.prototype.valueOf)}function checkBoxedPrimitive(r,t){if(typeof r!=="object"){return false}try{t(r);return true}catch(r){return false}}t.isArgumentsObject=n;t.isGeneratorFunction=o;t.isTypedArray=a;function isPromise(r){return typeof Promise!=="undefined"&&r instanceof Promise||r!==null&&typeof r==="object"&&typeof r.then==="function"&&typeof r.catch==="function"}t.isPromise=isPromise;function isArrayBufferView(r){if(typeof ArrayBuffer!=="undefined"&&ArrayBuffer.isView){return ArrayBuffer.isView(r)}return a(r)||isDataView(r)}t.isArrayBufferView=isArrayBufferView;function isUint8Array(r){return i(r)==="Uint8Array"}t.isUint8Array=isUint8Array;function isUint8ClampedArray(r){return i(r)==="Uint8ClampedArray"}t.isUint8ClampedArray=isUint8ClampedArray;function isUint16Array(r){return i(r)==="Uint16Array"}t.isUint16Array=isUint16Array;function isUint32Array(r){return i(r)==="Uint32Array"}t.isUint32Array=isUint32Array;function isInt8Array(r){return i(r)==="Int8Array"}t.isInt8Array=isInt8Array;function isInt16Array(r){return i(r)==="Int16Array"}t.isInt16Array=isInt16Array;function isInt32Array(r){return i(r)==="Int32Array"}t.isInt32Array=isInt32Array;function isFloat32Array(r){return i(r)==="Float32Array"}t.isFloat32Array=isFloat32Array;function isFloat64Array(r){return i(r)==="Float64Array"}t.isFloat64Array=isFloat64Array;function isBigInt64Array(r){return i(r)==="BigInt64Array"}t.isBigInt64Array=isBigInt64Array;function isBigUint64Array(r){return i(r)==="BigUint64Array"}t.isBigUint64Array=isBigUint64Array;function isMapToString(r){return s(r)==="[object Map]"}isMapToString.working=typeof Map!=="undefined"&&isMapToString(new Map);function isMap(r){if(typeof Map==="undefined"){return false}return isMapToString.working?isMapToString(r):r instanceof Map}t.isMap=isMap;function isSetToString(r){return s(r)==="[object Set]"}isSetToString.working=typeof Set!=="undefined"&&isSetToString(new Set);function isSet(r){if(typeof Set==="undefined"){return false}return isSetToString.working?isSetToString(r):r instanceof Set}t.isSet=isSet;function isWeakMapToString(r){return s(r)==="[object WeakMap]"}isWeakMapToString.working=typeof WeakMap!=="undefined"&&isWeakMapToString(new WeakMap);function isWeakMap(r){if(typeof WeakMap==="undefined"){return false}return isWeakMapToString.working?isWeakMapToString(r):r instanceof WeakMap}t.isWeakMap=isWeakMap;function isWeakSetToString(r){return s(r)==="[object WeakSet]"}isWeakSetToString.working=typeof WeakSet!=="undefined"&&isWeakSetToString(new WeakSet);function isWeakSet(r){return isWeakSetToString(r)}t.isWeakSet=isWeakSet;function isArrayBufferToString(r){return s(r)==="[object ArrayBuffer]"}isArrayBufferToString.working=typeof ArrayBuffer!=="undefined"&&isArrayBufferToString(new ArrayBuffer);function isArrayBuffer(r){if(typeof ArrayBuffer==="undefined"){return false}return isArrayBufferToString.working?isArrayBufferToString(r):r instanceof ArrayBuffer}t.isArrayBuffer=isArrayBuffer;function isDataViewToString(r){return s(r)==="[object DataView]"}isDataViewToString.working=typeof ArrayBuffer!=="undefined"&&typeof DataView!=="undefined"&&isDataViewToString(new DataView(new ArrayBuffer(1),0,1));function isDataView(r){if(typeof DataView==="undefined"){return false}return isDataViewToString.working?isDataViewToString(r):r instanceof DataView}t.isDataView=isDataView;var v=typeof SharedArrayBuffer!=="undefined"?SharedArrayBuffer:undefined;function isSharedArrayBufferToString(r){return s(r)==="[object SharedArrayBuffer]"}function isSharedArrayBuffer(r){if(typeof v==="undefined"){return false}if(typeof isSharedArrayBufferToString.working==="undefined"){isSharedArrayBufferToString.working=isSharedArrayBufferToString(new v)}return isSharedArrayBufferToString.working?isSharedArrayBufferToString(r):r instanceof v}t.isSharedArrayBuffer=isSharedArrayBuffer;function isAsyncFunction(r){return s(r)==="[object AsyncFunction]"}t.isAsyncFunction=isAsyncFunction;function isMapIterator(r){return s(r)==="[object Map Iterator]"}t.isMapIterator=isMapIterator;function isSetIterator(r){return s(r)==="[object Set Iterator]"}t.isSetIterator=isSetIterator;function isGeneratorObject(r){return s(r)==="[object Generator]"}t.isGeneratorObject=isGeneratorObject;function isWebAssemblyCompiledModule(r){return s(r)==="[object WebAssembly.Module]"}t.isWebAssemblyCompiledModule=isWebAssemblyCompiledModule;function isNumberObject(r){return checkBoxedPrimitive(r,c)}t.isNumberObject=isNumberObject;function isStringObject(r){return checkBoxedPrimitive(r,p)}t.isStringObject=isStringObject;function isBooleanObject(r){return checkBoxedPrimitive(r,y)}t.isBooleanObject=isBooleanObject;function isBigIntObject(r){return f&&checkBoxedPrimitive(r,l)}t.isBigIntObject=isBigIntObject;function isSymbolObject(r){return u&&checkBoxedPrimitive(r,g)}t.isSymbolObject=isSymbolObject;function isBoxedPrimitive(r){return isNumberObject(r)||isStringObject(r)||isBooleanObject(r)||isBigIntObject(r)||isSymbolObject(r)}t.isBoxedPrimitive=isBoxedPrimitive;function isAnyArrayBuffer(r){return typeof Uint8Array!=="undefined"&&(isArrayBuffer(r)||isSharedArrayBuffer(r))}t.isAnyArrayBuffer=isAnyArrayBuffer;["isProxy","isExternal","isModuleNamespaceObject"].forEach((function(r){Object.defineProperty(t,r,{enumerable:false,value:function(){throw new Error(r+" is not supported in userland")}})}))},8177:function(r,t,e){var n=Object.getOwnPropertyDescriptors||function getOwnPropertyDescriptors(r){var t=Object.keys(r);var e={};for(var n=0;n<t.length;n++){e[t[n]]=Object.getOwnPropertyDescriptor(r,t[n])}return e};var o=/%[sdj%]/g;t.format=function(r){if(!isString(r)){var t=[];for(var e=0;e<arguments.length;e++){t.push(inspect(arguments[e]))}return t.join(" ")}var e=1;var n=arguments;var i=n.length;var a=String(r).replace(o,(function(r){if(r==="%%")return"%";if(e>=i)return r;switch(r){case"%s":return String(n[e++]);case"%d":return Number(n[e++]);case"%j":try{return JSON.stringify(n[e++])}catch(r){return"[Circular]"}default:return r}}));for(var f=n[e];e<i;f=n[++e]){if(isNull(f)||!isObject(f)){a+=" "+f}else{a+=" "+inspect(f)}}return a};t.deprecate=function(r,e){if(typeof process!=="undefined"&&process.noDeprecation===true){return r}if(typeof process==="undefined"){return function(){return t.deprecate(r,e).apply(this,arguments)}}var n=false;function deprecated(){if(!n){if(process.throwDeprecation){throw new Error(e)}else if(process.traceDeprecation){console.trace(e)}else{console.error(e)}n=true}return r.apply(this,arguments)}return deprecated};var i={};var a=/^$/;if(process.env.NODE_DEBUG){var f=process.env.NODE_DEBUG;f=f.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase();a=new RegExp("^"+f+"$","i")}t.debuglog=function(r){r=r.toUpperCase();if(!i[r]){if(a.test(r)){var e=process.pid;i[r]=function(){var n=t.format.apply(t,arguments);console.error("%s %d: %s",r,e,n)}}else{i[r]=function(){}}}return i[r]};function inspect(r,e){var n={seen:[],stylize:stylizeNoColor};if(arguments.length>=3)n.depth=arguments[2];if(arguments.length>=4)n.colors=arguments[3];if(isBoolean(e)){n.showHidden=e}else if(e){t._extend(n,e)}if(isUndefined(n.showHidden))n.showHidden=false;if(isUndefined(n.depth))n.depth=2;if(isUndefined(n.colors))n.colors=false;if(isUndefined(n.customInspect))n.customInspect=true;if(n.colors)n.stylize=stylizeWithColor;return formatValue(n,r,n.depth)}t.inspect=inspect;inspect.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]};inspect.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function stylizeWithColor(r,t){var e=inspect.styles[t];if(e){return"["+inspect.colors[e][0]+"m"+r+"["+inspect.colors[e][1]+"m"}else{return r}}function stylizeNoColor(r,t){return r}function arrayToHash(r){var t={};r.forEach((function(r,e){t[r]=true}));return t}function formatValue(r,e,n){if(r.customInspect&&e&&isFunction(e.inspect)&&e.inspect!==t.inspect&&!(e.constructor&&e.constructor.prototype===e)){var o=e.inspect(n,r);if(!isString(o)){o=formatValue(r,o,n)}return o}var i=formatPrimitive(r,e);if(i){return i}var a=Object.keys(e);var f=arrayToHash(a);if(r.showHidden){a=Object.getOwnPropertyNames(e)}if(isError(e)&&(a.indexOf("message")>=0||a.indexOf("description")>=0)){return formatError(e)}if(a.length===0){if(isFunction(e)){var u=e.name?": "+e.name:"";return r.stylize("[Function"+u+"]","special")}if(isRegExp(e)){return r.stylize(RegExp.prototype.toString.call(e),"regexp")}if(isDate(e)){return r.stylize(Date.prototype.toString.call(e),"date")}if(isError(e)){return formatError(e)}}var s="",c=false,p=["{","}"];if(isArray(e)){c=true;p=["[","]"]}if(isFunction(e)){var y=e.name?": "+e.name:"";s=" [Function"+y+"]"}if(isRegExp(e)){s=" "+RegExp.prototype.toString.call(e)}if(isDate(e)){s=" "+Date.prototype.toUTCString.call(e)}if(isError(e)){s=" "+formatError(e)}if(a.length===0&&(!c||e.length==0)){return p[0]+s+p[1]}if(n<0){if(isRegExp(e)){return r.stylize(RegExp.prototype.toString.call(e),"regexp")}else{return r.stylize("[Object]","special")}}r.seen.push(e);var l;if(c){l=formatArray(r,e,n,f,a)}else{l=a.map((function(t){return formatProperty(r,e,n,f,t,c)}))}r.seen.pop();return reduceToSingleString(l,s,p)}function formatPrimitive(r,t){if(isUndefined(t))return r.stylize("undefined","undefined");if(isString(t)){var e="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return r.stylize(e,"string")}if(isNumber(t))return r.stylize(""+t,"number");if(isBoolean(t))return r.stylize(""+t,"boolean");if(isNull(t))return r.stylize("null","null")}function formatError(r){return"["+Error.prototype.toString.call(r)+"]"}function formatArray(r,t,e,n,o){var i=[];for(var a=0,f=t.length;a<f;++a){if(hasOwnProperty(t,String(a))){i.push(formatProperty(r,t,e,n,String(a),true))}else{i.push("")}}o.forEach((function(o){if(!o.match(/^\d+$/)){i.push(formatProperty(r,t,e,n,o,true))}}));return i}function formatProperty(r,t,e,n,o,i){var a,f,u;u=Object.getOwnPropertyDescriptor(t,o)||{value:t[o]};if(u.get){if(u.set){f=r.stylize("[Getter/Setter]","special")}else{f=r.stylize("[Getter]","special")}}else{if(u.set){f=r.stylize("[Setter]","special")}}if(!hasOwnProperty(n,o)){a="["+o+"]"}if(!f){if(r.seen.indexOf(u.value)<0){if(isNull(e)){f=formatValue(r,u.value,null)}else{f=formatValue(r,u.value,e-1)}if(f.indexOf("\n")>-1){if(i){f=f.split("\n").map((function(r){return" "+r})).join("\n").substr(2)}else{f="\n"+f.split("\n").map((function(r){return" "+r})).join("\n")}}}else{f=r.stylize("[Circular]","special")}}if(isUndefined(a)){if(i&&o.match(/^\d+$/)){return f}a=JSON.stringify(""+o);if(a.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)){a=a.substr(1,a.length-2);a=r.stylize(a,"name")}else{a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'");a=r.stylize(a,"string")}}return a+": "+f}function reduceToSingleString(r,t,e){var n=0;var o=r.reduce((function(r,t){n++;if(t.indexOf("\n")>=0)n++;return r+t.replace(/\u001b\[\d\d?m/g,"").length+1}),0);if(o>60){return e[0]+(t===""?"":t+"\n ")+" "+r.join(",\n ")+" "+e[1]}return e[0]+t+" "+r.join(", ")+" "+e[1]}t.types=e(5584);function isArray(r){return Array.isArray(r)}t.isArray=isArray;function isBoolean(r){return typeof r==="boolean"}t.isBoolean=isBoolean;function isNull(r){return r===null}t.isNull=isNull;function isNullOrUndefined(r){return r==null}t.isNullOrUndefined=isNullOrUndefined;function isNumber(r){return typeof r==="number"}t.isNumber=isNumber;function isString(r){return typeof r==="string"}t.isString=isString;function isSymbol(r){return typeof r==="symbol"}t.isSymbol=isSymbol;function isUndefined(r){return r===void 0}t.isUndefined=isUndefined;function isRegExp(r){return isObject(r)&&objectToString(r)==="[object RegExp]"}t.isRegExp=isRegExp;t.types.isRegExp=isRegExp;function isObject(r){return typeof r==="object"&&r!==null}t.isObject=isObject;function isDate(r){return isObject(r)&&objectToString(r)==="[object Date]"}t.isDate=isDate;t.types.isDate=isDate;function isError(r){return isObject(r)&&(objectToString(r)==="[object Error]"||r instanceof Error)}t.isError=isError;t.types.isNativeError=isError;function isFunction(r){return typeof r==="function"}t.isFunction=isFunction;function isPrimitive(r){return r===null||typeof r==="boolean"||typeof r==="number"||typeof r==="string"||typeof r==="symbol"||typeof r==="undefined"}t.isPrimitive=isPrimitive;t.isBuffer=e(2369);function objectToString(r){return Object.prototype.toString.call(r)}function pad(r){return r<10?"0"+r.toString(10):r.toString(10)}var u=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function timestamp(){var r=new Date;var t=[pad(r.getHours()),pad(r.getMinutes()),pad(r.getSeconds())].join(":");return[r.getDate(),u[r.getMonth()],t].join(" ")}t.log=function(){console.log("%s - %s",timestamp(),t.format.apply(t,arguments))};t.inherits=e(3782);t._extend=function(r,t){if(!t||!isObject(t))return r;var e=Object.keys(t);var n=e.length;while(n--){r[e[n]]=t[e[n]]}return r};function hasOwnProperty(r,t){return Object.prototype.hasOwnProperty.call(r,t)}var s=typeof Symbol!=="undefined"?Symbol("util.promisify.custom"):undefined;t.promisify=function promisify(r){if(typeof r!=="function")throw new TypeError('The "original" argument must be of type Function');if(s&&r[s]){var t=r[s];if(typeof t!=="function"){throw new TypeError('The "util.promisify.custom" argument must be of type Function')}Object.defineProperty(t,s,{value:t,enumerable:false,writable:false,configurable:true});return t}function t(){var t,e;var n=new Promise((function(r,n){t=r;e=n}));var o=[];for(var i=0;i<arguments.length;i++){o.push(arguments[i])}o.push((function(r,n){if(r){e(r)}else{t(n)}}));try{r.apply(this,o)}catch(r){e(r)}return n}Object.setPrototypeOf(t,Object.getPrototypeOf(r));if(s)Object.defineProperty(t,s,{value:t,enumerable:false,writable:false,configurable:true});return Object.defineProperties(t,n(r))};t.promisify.custom=s;function callbackifyOnRejected(r,t){if(!r){var e=new Error("Promise was rejected with a falsy value");e.reason=r;r=e}return t(r)}function callbackify(r){if(typeof r!=="function"){throw new TypeError('The "original" argument must be of type Function')}function callbackified(){var t=[];for(var e=0;e<arguments.length;e++){t.push(arguments[e])}var n=t.pop();if(typeof n!=="function"){throw new TypeError("The last argument must be of type Function")}var o=this;var cb=function(){return n.apply(o,arguments)};r.apply(this,t).then((function(r){process.nextTick(cb.bind(null,null,r))}),(function(r){process.nextTick(callbackifyOnRejected.bind(null,r,cb))}))}Object.setPrototypeOf(callbackified,Object.getPrototypeOf(r));Object.defineProperties(callbackified,n(r));return callbackified}t.callbackify=callbackify},1490:function(r,t,e){"use strict";var n=e(6144);var o=e(1349);var i=e(516);var a=i("Object.prototype.toString");var f=e(9942)();var u=f&&typeof Symbol.toStringTag==="symbol";var s=o();var c=i("String.prototype.slice");var p={};var y=e(2154);var l=Object.getPrototypeOf;if(u&&y&&l){n(s,(function(r){if(typeof global[r]==="function"){var t=new global[r];if(!(Symbol.toStringTag in t)){throw new EvalError("this engine has support for Symbol.toStringTag, but "+r+" does not have the property! Please report this.")}var e=l(t);var n=y(e,Symbol.toStringTag);if(!n){var o=l(e);n=y(o,Symbol.toStringTag)}p[r]=n.get}}))}var g=function tryAllTypedArrays(r){var t=false;n(p,(function(e,n){if(!t){try{var o=e.call(r);if(o===n){t=o}}catch(r){}}}));return t};var v=e(994);r.exports=function whichTypedArray(r){if(!v(r)){return false}if(!u){return c(a(r),8,-1)}return g(r)}},1349:function(r,t,e){"use strict";var n=e(8992);r.exports=function availableTypedArrays(){return n(["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],(function(r){return typeof global[r]==="function"}))}},2154:function(r,t,e){"use strict";r.exports=e(3990)}};var t={};function __nccwpck_require__(e){var n=t[e];if(n!==undefined){return n.exports}var o=t[e]={exports:{}};var i=true;try{r[e](o,o.exports,__nccwpck_require__);i=false}finally{if(i)delete t[e]}return o.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var e=__nccwpck_require__(8177);module.exports=e})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(){var __webpack_modules__={950:function(__unused_webpack_module,exports){var indexOf=function(e,t){if(e.indexOf)return e.indexOf(t);else for(var r=0;r<e.length;r++){if(e[r]===t)return r}return-1};var Object_keys=function(e){if(Object.keys)return Object.keys(e);else{var t=[];for(var r in e)t.push(r);return t}};var forEach=function(e,t){if(e.forEach)return e.forEach(t);else for(var r=0;r<e.length;r++){t(e[r],r,e)}};var defineProp=function(){try{Object.defineProperty({},"_",{});return function(e,t,r){Object.defineProperty(e,t,{writable:true,enumerable:false,configurable:true,value:r})}}catch(e){return function(e,t,r){e[t]=r}}}();var globals=["Array","Boolean","Date","Error","EvalError","Function","Infinity","JSON","Math","NaN","Number","Object","RangeError","ReferenceError","RegExp","String","SyntaxError","TypeError","URIError","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","eval","isFinite","isNaN","parseFloat","parseInt","undefined","unescape"];function Context(){}Context.prototype={};var Script=exports.Script=function NodeScript(e){if(!(this instanceof Script))return new Script(e);this.code=e};Script.prototype.runInContext=function(e){if(!(e instanceof Context)){throw new TypeError("needs a 'context' argument.")}var t=document.createElement("iframe");if(!t.style)t.style={};t.style.display="none";document.body.appendChild(t);var r=t.contentWindow;var n=r.eval,o=r.execScript;if(!n&&o){o.call(r,"null");n=r.eval}forEach(Object_keys(e),(function(t){r[t]=e[t]}));forEach(globals,(function(t){if(e[t]){r[t]=e[t]}}));var c=Object_keys(r);var i=n.call(r,this.code);forEach(Object_keys(r),(function(t){if(t in e||indexOf(c,t)===-1){e[t]=r[t]}}));forEach(globals,(function(t){if(!(t in e)){defineProp(e,t,r[t])}}));document.body.removeChild(t);return i};Script.prototype.runInThisContext=function(){return eval(this.code)};Script.prototype.runInNewContext=function(e){var t=Script.createContext(e);var r=this.runInContext(t);if(e){forEach(Object_keys(t),(function(r){e[r]=t[r]}))}return r};forEach(Object_keys(Script.prototype),(function(e){exports[e]=Script[e]=function(t){var r=Script(t);return r[e].apply(r,[].slice.call(arguments,1))}}));exports.isContext=function(e){return e instanceof Context};exports.createScript=function(e){return exports.Script(e)};exports.createContext=Script.createContext=function(e){var t=new Context;if(typeof e==="object"){forEach(Object_keys(e),(function(r){t[r]=e[r]}))}return t}}};if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var __webpack_exports__={};__webpack_modules__[950](0,__webpack_exports__);module.exports=__webpack_exports__})();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"vm-browserify","main":"index.js","author":{"name":"James Halliday","email":"mail@substack.net","url":"http://substack.net"},"license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"watchpack","main":"watchpack.js","author":"Tobias Koppers @sokra","license":"MIT"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{var e={660:e=>{e.exports=function(e,t){if(typeof e!=="string"){throw new TypeError("Expected a string")}var i=String(e);var s="";var r=t?!!t.extended:false;var n=t?!!t.globstar:false;var c=false;var a=t&&typeof t.flags==="string"?t.flags:"";var o;for(var h=0,f=i.length;h<f;h++){o=i[h];switch(o){case"/":case"$":case"^":case"+":case".":case"(":case")":case"=":case"!":case"|":s+="\\"+o;break;case"?":if(r){s+=".";break}case"[":case"]":if(r){s+=o;break}case"{":if(r){c=true;s+="(";break}case"}":if(r){c=false;s+=")";break}case",":if(c){s+="|";break}s+="\\"+o;break;case"*":var l=i[h-1];var u=1;while(i[h+1]==="*"){u++;h++}var d=i[h+1];if(!n){s+=".*"}else{var p=u>1&&(l==="/"||l===undefined)&&(d==="/"||d===undefined);if(p){s+="((?:[^/]*(?:/|$))*)";h++}else{s+="([^/]*)"}}break;default:s+=o}}if(!a||!~a.indexOf("g")){s="^"+s+"$"}return new RegExp(s,a)}},567:e=>{"use strict";e.exports=clone;var t=Object.getPrototypeOf||function(e){return e.__proto__};function clone(e){if(e===null||typeof e!=="object")return e;if(e instanceof Object)var i={__proto__:t(e)};else var i=Object.create(null);Object.getOwnPropertyNames(e).forEach((function(t){Object.defineProperty(i,t,Object.getOwnPropertyDescriptor(e,t))}));return i}},450:(e,t,i)=>{var s=i(147);var r=i(164);var n=i(873);var c=i(567);var a=i(837);var o;var h;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){o=Symbol.for("graceful-fs.queue");h=Symbol.for("graceful-fs.previous")}else{o="___graceful-fs.queue";h="___graceful-fs.previous"}function noop(){}function publishQueue(e,t){Object.defineProperty(e,o,{get:function(){return t}})}var f=noop;if(a.debuglog)f=a.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))f=function(){var e=a.format.apply(a,arguments);e="GFS4: "+e.split(/\n/).join("\nGFS4: ");console.error(e)};if(!s[o]){var l=global[o]||[];publishQueue(s,l);s.close=function(e){function close(t,i){return e.call(s,t,(function(e){if(!e){resetQueue()}if(typeof i==="function")i.apply(this,arguments)}))}Object.defineProperty(close,h,{value:e});return close}(s.close);s.closeSync=function(e){function closeSync(t){e.apply(s,arguments);resetQueue()}Object.defineProperty(closeSync,h,{value:e});return closeSync}(s.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",(function(){f(s[o]);i(491).equal(s[o].length,0)}))}}if(!global[o]){publishQueue(global,s[o])}e.exports=patch(c(s));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!s.__patched){e.exports=patch(s);s.__patched=true}function patch(e){r(e);e.gracefulify=patch;e.createReadStream=createReadStream;e.createWriteStream=createWriteStream;var t=e.readFile;e.readFile=readFile;function readFile(e,i,s){if(typeof i==="function")s=i,i=null;return go$readFile(e,i,s);function go$readFile(e,i,s,r){return t(e,i,(function(t){if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readFile,[e,i,s],t,r||Date.now(),Date.now()]);else{if(typeof s==="function")s.apply(this,arguments)}}))}}var i=e.writeFile;e.writeFile=writeFile;function writeFile(e,t,s,r){if(typeof s==="function")r=s,s=null;return go$writeFile(e,t,s,r);function go$writeFile(e,t,s,r,n){return i(e,t,s,(function(i){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$writeFile,[e,t,s,r],i,n||Date.now(),Date.now()]);else{if(typeof r==="function")r.apply(this,arguments)}}))}}var s=e.appendFile;if(s)e.appendFile=appendFile;function appendFile(e,t,i,r){if(typeof i==="function")r=i,i=null;return go$appendFile(e,t,i,r);function go$appendFile(e,t,i,r,n){return s(e,t,i,(function(s){if(s&&(s.code==="EMFILE"||s.code==="ENFILE"))enqueue([go$appendFile,[e,t,i,r],s,n||Date.now(),Date.now()]);else{if(typeof r==="function")r.apply(this,arguments)}}))}}var c=e.copyFile;if(c)e.copyFile=copyFile;function copyFile(e,t,i,s){if(typeof i==="function"){s=i;i=0}return go$copyFile(e,t,i,s);function go$copyFile(e,t,i,s,r){return c(e,t,i,(function(n){if(n&&(n.code==="EMFILE"||n.code==="ENFILE"))enqueue([go$copyFile,[e,t,i,s],n,r||Date.now(),Date.now()]);else{if(typeof s==="function")s.apply(this,arguments)}}))}}var a=e.readdir;e.readdir=readdir;var o=/^v[0-5]\./;function readdir(e,t,i){if(typeof t==="function")i=t,t=null;var s=o.test(process.version)?function go$readdir(e,t,i,s){return a(e,fs$readdirCallback(e,t,i,s))}:function go$readdir(e,t,i,s){return a(e,t,fs$readdirCallback(e,t,i,s))};return s(e,t,i);function fs$readdirCallback(e,t,i,r){return function(n,c){if(n&&(n.code==="EMFILE"||n.code==="ENFILE"))enqueue([s,[e,t,i],n,r||Date.now(),Date.now()]);else{if(c&&c.sort)c.sort();if(typeof i==="function")i.call(this,n,c)}}}}if(process.version.substr(0,4)==="v0.8"){var h=n(e);ReadStream=h.ReadStream;WriteStream=h.WriteStream}var f=e.ReadStream;if(f){ReadStream.prototype=Object.create(f.prototype);ReadStream.prototype.open=ReadStream$open}var l=e.WriteStream;if(l){WriteStream.prototype=Object.create(l.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(e,"ReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"WriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});var u=ReadStream;Object.defineProperty(e,"FileReadStream",{get:function(){return u},set:function(e){u=e},enumerable:true,configurable:true});var d=WriteStream;Object.defineProperty(e,"FileWriteStream",{get:function(){return d},set:function(e){d=e},enumerable:true,configurable:true});function ReadStream(e,t){if(this instanceof ReadStream)return f.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var e=this;open(e.path,e.flags,e.mode,(function(t,i){if(t){if(e.autoClose)e.destroy();e.emit("error",t)}else{e.fd=i;e.emit("open",i);e.read()}}))}function WriteStream(e,t){if(this instanceof WriteStream)return l.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var e=this;open(e.path,e.flags,e.mode,(function(t,i){if(t){e.destroy();e.emit("error",t)}else{e.fd=i;e.emit("open",i)}}))}function createReadStream(t,i){return new e.ReadStream(t,i)}function createWriteStream(t,i){return new e.WriteStream(t,i)}var p=e.open;e.open=open;function open(e,t,i,s){if(typeof i==="function")s=i,i=null;return go$open(e,t,i,s);function go$open(e,t,i,s,r){return p(e,t,i,(function(n,c){if(n&&(n.code==="EMFILE"||n.code==="ENFILE"))enqueue([go$open,[e,t,i,s],n,r||Date.now(),Date.now()]);else{if(typeof s==="function")s.apply(this,arguments)}}))}}return e}function enqueue(e){f("ENQUEUE",e[0].name,e[1]);s[o].push(e);retry()}var u;function resetQueue(){var e=Date.now();for(var t=0;t<s[o].length;++t){if(s[o][t].length>2){s[o][t][3]=e;s[o][t][4]=e}}retry()}function retry(){clearTimeout(u);u=undefined;if(s[o].length===0)return;var e=s[o].shift();var t=e[0];var i=e[1];var r=e[2];var n=e[3];var c=e[4];if(n===undefined){f("RETRY",t.name,i);t.apply(null,i)}else if(Date.now()-n>=6e4){f("TIMEOUT",t.name,i);var a=i.pop();if(typeof a==="function")a.call(null,r)}else{var h=Date.now()-c;var l=Math.max(c-n,1);var d=Math.min(l*1.2,100);if(h>=d){f("RETRY",t.name,i);t.apply(null,i.concat([n]))}else{s[o].push(e)}}if(u===undefined){u=setTimeout(retry,0)}}},873:(e,t,i)=>{var s=i(781).Stream;e.exports=legacy;function legacy(e){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(t,i){if(!(this instanceof ReadStream))return new ReadStream(t,i);s.call(this);var r=this;this.path=t;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;i=i||{};var n=Object.keys(i);for(var c=0,a=n.length;c<a;c++){var o=n[c];this[o]=i[o]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick((function(){r._read()}));return}e.open(this.path,this.flags,this.mode,(function(e,t){if(e){r.emit("error",e);r.readable=false;return}r.fd=t;r.emit("open",t);r._read()}))}function WriteStream(t,i){if(!(this instanceof WriteStream))return new WriteStream(t,i);s.call(this);this.path=t;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;i=i||{};var r=Object.keys(i);for(var n=0,c=r.length;n<c;n++){var a=r[n];this[a]=i[a]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=e.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},164:(e,t,i)=>{var s=i(57);var r=process.cwd;var n=null;var c=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!n)n=r.call(process);return n};try{process.cwd()}catch(e){}if(typeof process.chdir==="function"){var a=process.chdir;process.chdir=function(e){n=null;a.call(process,e)};if(Object.setPrototypeOf)Object.setPrototypeOf(process.chdir,a)}e.exports=patch;function patch(e){if(s.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(e)}if(!e.lutimes){patchLutimes(e)}e.chown=chownFix(e.chown);e.fchown=chownFix(e.fchown);e.lchown=chownFix(e.lchown);e.chmod=chmodFix(e.chmod);e.fchmod=chmodFix(e.fchmod);e.lchmod=chmodFix(e.lchmod);e.chownSync=chownFixSync(e.chownSync);e.fchownSync=chownFixSync(e.fchownSync);e.lchownSync=chownFixSync(e.lchownSync);e.chmodSync=chmodFixSync(e.chmodSync);e.fchmodSync=chmodFixSync(e.fchmodSync);e.lchmodSync=chmodFixSync(e.lchmodSync);e.stat=statFix(e.stat);e.fstat=statFix(e.fstat);e.lstat=statFix(e.lstat);e.statSync=statFixSync(e.statSync);e.fstatSync=statFixSync(e.fstatSync);e.lstatSync=statFixSync(e.lstatSync);if(e.chmod&&!e.lchmod){e.lchmod=function(e,t,i){if(i)process.nextTick(i)};e.lchmodSync=function(){}}if(e.chown&&!e.lchown){e.lchown=function(e,t,i,s){if(s)process.nextTick(s)};e.lchownSync=function(){}}if(c==="win32"){e.rename=typeof e.rename!=="function"?e.rename:function(t){function rename(i,s,r){var n=Date.now();var c=0;t(i,s,(function CB(a){if(a&&(a.code==="EACCES"||a.code==="EPERM"||a.code==="EBUSY")&&Date.now()-n<6e4){setTimeout((function(){e.stat(s,(function(e,n){if(e&&e.code==="ENOENT")t(i,s,CB);else r(a)}))}),c);if(c<100)c+=10;return}if(r)r(a)}))}if(Object.setPrototypeOf)Object.setPrototypeOf(rename,t);return rename}(e.rename)}e.read=typeof e.read!=="function"?e.read:function(t){function read(i,s,r,n,c,a){var o;if(a&&typeof a==="function"){var h=0;o=function(f,l,u){if(f&&f.code==="EAGAIN"&&h<10){h++;return t.call(e,i,s,r,n,c,o)}a.apply(this,arguments)}}return t.call(e,i,s,r,n,c,o)}if(Object.setPrototypeOf)Object.setPrototypeOf(read,t);return read}(e.read);e.readSync=typeof e.readSync!=="function"?e.readSync:function(t){return function(i,s,r,n,c){var a=0;while(true){try{return t.call(e,i,s,r,n,c)}catch(e){if(e.code==="EAGAIN"&&a<10){a++;continue}throw e}}}}(e.readSync);function patchLchmod(e){e.lchmod=function(t,i,r){e.open(t,s.O_WRONLY|s.O_SYMLINK,i,(function(t,s){if(t){if(r)r(t);return}e.fchmod(s,i,(function(t){e.close(s,(function(e){if(r)r(t||e)}))}))}))};e.lchmodSync=function(t,i){var r=e.openSync(t,s.O_WRONLY|s.O_SYMLINK,i);var n=true;var c;try{c=e.fchmodSync(r,i);n=false}finally{if(n){try{e.closeSync(r)}catch(e){}}else{e.closeSync(r)}}return c}}function patchLutimes(e){if(s.hasOwnProperty("O_SYMLINK")&&e.futimes){e.lutimes=function(t,i,r,n){e.open(t,s.O_SYMLINK,(function(t,s){if(t){if(n)n(t);return}e.futimes(s,i,r,(function(t){e.close(s,(function(e){if(n)n(t||e)}))}))}))};e.lutimesSync=function(t,i,r){var n=e.openSync(t,s.O_SYMLINK);var c;var a=true;try{c=e.futimesSync(n,i,r);a=false}finally{if(a){try{e.closeSync(n)}catch(e){}}else{e.closeSync(n)}}return c}}else if(e.futimes){e.lutimes=function(e,t,i,s){if(s)process.nextTick(s)};e.lutimesSync=function(){}}}function chmodFix(t){if(!t)return t;return function(i,s,r){return t.call(e,i,s,(function(e){if(chownErOk(e))e=null;if(r)r.apply(this,arguments)}))}}function chmodFixSync(t){if(!t)return t;return function(i,s){try{return t.call(e,i,s)}catch(e){if(!chownErOk(e))throw e}}}function chownFix(t){if(!t)return t;return function(i,s,r,n){return t.call(e,i,s,r,(function(e){if(chownErOk(e))e=null;if(n)n.apply(this,arguments)}))}}function chownFixSync(t){if(!t)return t;return function(i,s,r){try{return t.call(e,i,s,r)}catch(e){if(!chownErOk(e))throw e}}}function statFix(t){if(!t)return t;return function(i,s,r){if(typeof s==="function"){r=s;s=null}function callback(e,t){if(t){if(t.uid<0)t.uid+=4294967296;if(t.gid<0)t.gid+=4294967296}if(r)r.apply(this,arguments)}return s?t.call(e,i,s,callback):t.call(e,i,callback)}}function statFixSync(t){if(!t)return t;return function(i,s){var r=s?t.call(e,i,s):t.call(e,i);if(r){if(r.uid<0)r.uid+=4294967296;if(r.gid<0)r.gid+=4294967296}return r}}function chownErOk(e){if(!e)return true;if(e.code==="ENOSYS")return true;var t=!process.getuid||process.getuid()!==0;if(t){if(e.code==="EINVAL"||e.code==="EPERM")return true}return false}}},377:(e,t,i)=>{"use strict";const s=i(361).EventEmitter;const r=i(450);const n=i(17);const c=i(384);const a=Object.freeze({});let o=2e3;const h=i(37).platform()==="darwin";const f=process.env.WATCHPACK_POLLING;const l=`${+f}`===f?+f:!!f&&f!=="false";function withoutCase(e){return e.toLowerCase()}function needCalls(e,t){return function(){if(--e===0){return t()}}}class Watcher extends s{constructor(e,t,i){super();this.directoryWatcher=e;this.path=t;this.startTime=i&&+i}checkStartTime(e,t){const i=this.startTime;if(typeof i!=="number")return!t;return i<=e}close(){this.emit("closed")}}class DirectoryWatcher extends s{constructor(e,t,i){super();if(l){i.poll=l}this.watcherManager=e;this.options=i;this.path=t;this.files=new Map;this.filesWithoutCase=new Map;this.directories=new Map;this.lastWatchEvent=0;this.initialScan=true;this.ignored=i.ignored||(()=>false);this.nestedWatching=false;this.polledWatching=typeof i.poll==="number"?i.poll:i.poll?5007:false;this.timeout=undefined;this.initialScanRemoved=new Set;this.initialScanFinished=undefined;this.watchers=new Map;this.parentWatcher=null;this.refs=0;this._activeEvents=new Map;this.closed=false;this.scanning=false;this.scanAgain=false;this.scanAgainInitial=false;this.createWatcher();this.doScan(true)}createWatcher(){try{if(this.polledWatching){this.watcher={close:()=>{if(this.timeout){clearTimeout(this.timeout);this.timeout=undefined}}}}else{if(h){this.watchInParentDirectory()}this.watcher=c.watch(this.path);this.watcher.on("change",this.onWatchEvent.bind(this));this.watcher.on("error",this.onWatcherError.bind(this))}}catch(e){this.onWatcherError(e)}}forEachWatcher(e,t){const i=this.watchers.get(withoutCase(e));if(i!==undefined){for(const e of i){t(e)}}}setMissing(e,t,i){if(this.initialScan){this.initialScanRemoved.add(e)}const s=this.directories.get(e);if(s){if(this.nestedWatching)s.close();this.directories.delete(e);this.forEachWatcher(e,(e=>e.emit("remove",i)));if(!t){this.forEachWatcher(this.path,(s=>s.emit("change",e,null,i,t)))}}const r=this.files.get(e);if(r){this.files.delete(e);const s=withoutCase(e);const r=this.filesWithoutCase.get(s)-1;if(r<=0){this.filesWithoutCase.delete(s);this.forEachWatcher(e,(e=>e.emit("remove",i)))}else{this.filesWithoutCase.set(s,r)}if(!t){this.forEachWatcher(this.path,(s=>s.emit("change",e,null,i,t)))}}}setFileTime(e,t,i,s,r){const n=Date.now();if(this.ignored(e))return;const c=this.files.get(e);let a,h;if(i){a=Math.min(n,t)+o;h=o}else{a=n;h=0;if(c&&c.timestamp===t&&t+o<n){return}}if(s&&c&&c.timestamp===t)return;this.files.set(e,{safeTime:a,accuracy:h,timestamp:t});if(!c){const s=withoutCase(e);const n=this.filesWithoutCase.get(s);this.filesWithoutCase.set(s,(n||0)+1);if(n!==undefined){this.doScan(false)}this.forEachWatcher(e,(e=>{if(!i||e.checkStartTime(a,i)){e.emit("change",t,r)}}))}else if(!i){this.forEachWatcher(e,(e=>e.emit("change",t,r)))}this.forEachWatcher(this.path,(t=>{if(!i||t.checkStartTime(a,i)){t.emit("change",e,a,r,i)}}))}setDirectory(e,t,i,s){if(this.ignored(e))return;if(e===this.path){if(!i){this.forEachWatcher(this.path,(r=>r.emit("change",e,t,s,i)))}}else{const r=this.directories.get(e);if(!r){const r=Date.now();if(this.nestedWatching){this.createNestedWatcher(e)}else{this.directories.set(e,true)}let n;if(i){n=Math.min(r,t)+o}else{n=r}this.forEachWatcher(e,(e=>{if(!i||e.checkStartTime(n,false)){e.emit("change",t,s)}}));this.forEachWatcher(this.path,(t=>{if(!i||t.checkStartTime(n,i)){t.emit("change",e,n,s,i)}}))}}}createNestedWatcher(e){const t=this.watcherManager.watchDirectory(e,1);t.on("change",((e,t,i,s)=>{this.forEachWatcher(this.path,(r=>{if(!s||r.checkStartTime(t,s)){r.emit("change",e,t,i,s)}}))}));this.directories.set(e,t)}setNestedWatching(e){if(this.nestedWatching!==!!e){this.nestedWatching=!!e;if(this.nestedWatching){for(const e of this.directories.keys()){this.createNestedWatcher(e)}}else{for(const[e,t]of this.directories){t.close();this.directories.set(e,true)}}}}watch(e,t){const i=withoutCase(e);let s=this.watchers.get(i);if(s===undefined){s=new Set;this.watchers.set(i,s)}this.refs++;const r=new Watcher(this,e,t);r.on("closed",(()=>{if(--this.refs<=0){this.close();return}s.delete(r);if(s.size===0){this.watchers.delete(i);if(this.path===e)this.setNestedWatching(false)}}));s.add(r);let n;if(e===this.path){this.setNestedWatching(true);n=this.lastWatchEvent;for(const e of this.files.values()){fixupEntryAccuracy(e);n=Math.max(n,e.safeTime)}}else{const t=this.files.get(e);if(t){fixupEntryAccuracy(t);n=t.safeTime}else{n=0}}if(n){if(n>=t){process.nextTick((()=>{if(this.closed)return;if(e===this.path){r.emit("change",e,n,"watch (outdated on attach)",true)}else{r.emit("change",n,"watch (outdated on attach)",true)}}))}}else if(this.initialScan){if(this.initialScanRemoved.has(e)){process.nextTick((()=>{if(this.closed)return;r.emit("remove")}))}}else if(!this.directories.has(e)&&r.checkStartTime(this.initialScanFinished,false)){process.nextTick((()=>{if(this.closed)return;r.emit("initial-missing","watch (missing on attach)")}))}return r}onWatchEvent(e,t){if(this.closed)return;if(!t){this.doScan(false);return}const i=n.join(this.path,t);if(this.ignored(i))return;if(this._activeEvents.get(t)===undefined){this._activeEvents.set(t,false);const checkStats=()=>{if(this.closed)return;this._activeEvents.set(t,false);r.lstat(i,((s,c)=>{if(this.closed)return;if(this._activeEvents.get(t)===true){process.nextTick(checkStats);return}this._activeEvents.delete(t);if(s){if(s.code!=="ENOENT"&&s.code!=="EPERM"&&s.code!=="EBUSY"){this.onStatsError(s)}else{if(t===n.basename(this.path)){if(!r.existsSync(this.path)){this.onDirectoryRemoved("stat failed")}}}}this.lastWatchEvent=Date.now();if(!c){this.setMissing(i,false,e)}else if(c.isDirectory()){this.setDirectory(i,+c.birthtime||1,false,e)}else if(c.isFile()||c.isSymbolicLink()){if(c.mtime){ensureFsAccuracy(c.mtime)}this.setFileTime(i,+c.mtime||+c.ctime||1,false,false,e)}}))};process.nextTick(checkStats)}else{this._activeEvents.set(t,true)}}onWatcherError(e){if(this.closed)return;if(e){if(e.code!=="EPERM"&&e.code!=="ENOENT"){console.error("Watchpack Error (watcher): "+e)}this.onDirectoryRemoved("watch error")}}onStatsError(e){if(e){console.error("Watchpack Error (stats): "+e)}}onScanError(e){if(e){console.error("Watchpack Error (initial scan): "+e)}this.onScanFinished()}onScanFinished(){if(this.polledWatching){this.timeout=setTimeout((()=>{if(this.closed)return;this.doScan(false)}),this.polledWatching)}}onDirectoryRemoved(e){if(this.watcher){this.watcher.close();this.watcher=null}this.watchInParentDirectory();const t=`directory-removed (${e})`;for(const e of this.directories.keys()){this.setMissing(e,null,t)}for(const e of this.files.keys()){this.setMissing(e,null,t)}}watchInParentDirectory(){if(!this.parentWatcher){const e=n.dirname(this.path);if(n.dirname(e)===e)return;this.parentWatcher=this.watcherManager.watchFile(this.path,1);this.parentWatcher.on("change",((e,t)=>{if(this.closed)return;if((!h||this.polledWatching)&&this.parentWatcher){this.parentWatcher.close();this.parentWatcher=null}if(!this.watcher){this.createWatcher();this.doScan(false);this.forEachWatcher(this.path,(i=>i.emit("change",this.path,e,t,false)))}}));this.parentWatcher.on("remove",(()=>{this.onDirectoryRemoved("parent directory removed")}))}}doScan(e){if(this.scanning){if(this.scanAgain){if(!e)this.scanAgainInitial=false}else{this.scanAgain=true;this.scanAgainInitial=e}return}this.scanning=true;if(this.timeout){clearTimeout(this.timeout);this.timeout=undefined}process.nextTick((()=>{if(this.closed)return;r.readdir(this.path,((t,i)=>{if(this.closed)return;if(t){if(t.code==="ENOENT"||t.code==="EPERM"){this.onDirectoryRemoved("scan readdir failed")}else{this.onScanError(t)}this.initialScan=false;this.initialScanFinished=Date.now();if(e){for(const e of this.watchers.values()){for(const t of e){if(t.checkStartTime(this.initialScanFinished,false)){t.emit("initial-missing","scan (parent directory missing in initial scan)")}}}}if(this.scanAgain){this.scanAgain=false;this.doScan(this.scanAgainInitial)}else{this.scanning=false}return}const s=new Set(i.map((e=>n.join(this.path,e.normalize("NFC")))));for(const t of this.files.keys()){if(!s.has(t)){this.setMissing(t,e,"scan (missing)")}}for(const t of this.directories.keys()){if(!s.has(t)){this.setMissing(t,e,"scan (missing)")}}if(this.scanAgain){this.scanAgain=false;this.doScan(e);return}const c=needCalls(s.size+1,(()=>{if(this.closed)return;this.initialScan=false;this.initialScanRemoved=null;this.initialScanFinished=Date.now();if(e){const e=new Map(this.watchers);e.delete(withoutCase(this.path));for(const t of s){e.delete(withoutCase(t))}for(const t of e.values()){for(const e of t){if(e.checkStartTime(this.initialScanFinished,false)){e.emit("initial-missing","scan (missing in initial scan)")}}}}if(this.scanAgain){this.scanAgain=false;this.doScan(this.scanAgainInitial)}else{this.scanning=false;this.onScanFinished()}}));for(const t of s){r.lstat(t,((i,s)=>{if(this.closed)return;if(i){if(i.code==="ENOENT"||i.code==="EPERM"||i.code==="EACCES"||i.code==="EBUSY"){this.setMissing(t,e,"scan ("+i.code+")")}else{this.onScanError(i)}c();return}if(s.isFile()||s.isSymbolicLink()){if(s.mtime){ensureFsAccuracy(s.mtime)}this.setFileTime(t,+s.mtime||+s.ctime||1,e,true,"scan (file)")}else if(s.isDirectory()){if(!e||!this.directories.has(t))this.setDirectory(t,+s.birthtime||1,e,"scan (dir)")}c()}))}c()}))}))}getTimes(){const e=Object.create(null);let t=this.lastWatchEvent;for(const[i,s]of this.files){fixupEntryAccuracy(s);t=Math.max(t,s.safeTime);e[i]=Math.max(s.safeTime,s.timestamp)}if(this.nestedWatching){for(const i of this.directories.values()){const s=i.directoryWatcher.getTimes();for(const i of Object.keys(s)){const r=s[i];t=Math.max(t,r);e[i]=r}}e[this.path]=t}if(!this.initialScan){for(const t of this.watchers.values()){for(const i of t){const t=i.path;if(!Object.prototype.hasOwnProperty.call(e,t)){e[t]=null}}}}return e}collectTimeInfoEntries(e,t){let i=this.lastWatchEvent;for(const[t,s]of this.files){fixupEntryAccuracy(s);i=Math.max(i,s.safeTime);e.set(t,s)}if(this.nestedWatching){for(const s of this.directories.values()){i=Math.max(i,s.directoryWatcher.collectTimeInfoEntries(e,t))}e.set(this.path,a);t.set(this.path,{safeTime:i})}else{for(const i of this.directories.keys()){e.set(i,a);if(!t.has(i))t.set(i,a)}e.set(this.path,a);t.set(this.path,a)}if(!this.initialScan){for(const t of this.watchers.values()){for(const i of t){const t=i.path;if(!e.has(t)){e.set(t,null)}}}}return i}close(){this.closed=true;this.initialScan=false;if(this.watcher){this.watcher.close();this.watcher=null}if(this.nestedWatching){for(const e of this.directories.values()){e.close()}this.directories.clear()}if(this.parentWatcher){this.parentWatcher.close();this.parentWatcher=null}this.emit("closed")}}e.exports=DirectoryWatcher;e.exports.EXISTANCE_ONLY_TIME_ENTRY=a;function fixupEntryAccuracy(e){if(e.accuracy>o){e.safeTime=e.safeTime-e.accuracy+o;e.accuracy=o}}function ensureFsAccuracy(e){if(!e)return;if(o>1&&e%1!==0)o=1;else if(o>10&&e%10!==0)o=10;else if(o>100&&e%100!==0)o=100;else if(o>1e3&&e%1e3!==0)o=1e3}},73:(e,t,i)=>{"use strict";const s=i(147);const r=i(17);const n=new Set(["EINVAL","ENOENT"]);if(process.platform==="win32")n.add("UNKNOWN");class LinkResolver{constructor(){this.cache=new Map}resolve(e){const t=this.cache.get(e);if(t!==undefined){return t}const i=r.dirname(e);if(i===e){const t=Object.freeze([e]);this.cache.set(e,t);return t}const c=this.resolve(i);let a=e;if(c[0]!==i){const t=r.basename(e);a=r.resolve(c[0],t)}try{const t=s.readlinkSync(a);const i=r.resolve(c[0],t);const n=this.resolve(i);let o;if(n.length>1&&c.length>1){const e=new Set(n);e.add(a);for(let t=1;t<c.length;t++){e.add(c[t])}o=Object.freeze(Array.from(e))}else if(c.length>1){o=c.slice();o[0]=n[0];o.push(a);Object.freeze(o)}else if(n.length>1){o=n.slice();o.push(a);Object.freeze(o)}else{o=Object.freeze([n[0],a])}this.cache.set(e,o);return o}catch(t){if(!n.has(t.code)){throw t}const i=c.slice();i[0]=a;Object.freeze(i);this.cache.set(e,i);return i}}}e.exports=LinkResolver},653:(e,t,i)=>{"use strict";const s=i(17);const r=i(377);class WatcherManager{constructor(e){this.options=e;this.directoryWatchers=new Map}getDirectoryWatcher(e){const t=this.directoryWatchers.get(e);if(t===undefined){const t=new r(this,e,this.options);this.directoryWatchers.set(e,t);t.on("closed",(()=>{this.directoryWatchers.delete(e)}));return t}return t}watchFile(e,t){const i=s.dirname(e);if(i===e)return null;return this.getDirectoryWatcher(i).watch(e,t)}watchDirectory(e,t){return this.getDirectoryWatcher(e).watch(e,t)}}const n=new WeakMap;e.exports=e=>{const t=n.get(e);if(t!==undefined)return t;const i=new WatcherManager(e);n.set(e,i);return i};e.exports.WatcherManager=WatcherManager},535:(e,t,i)=>{"use strict";const s=i(17);e.exports=(e,t)=>{const i=new Map;for(const[t,s]of e){i.set(t,{filePath:t,parent:undefined,children:undefined,entries:1,active:true,value:s})}let r=i.size;for(const e of i.values()){const t=s.dirname(e.filePath);if(t!==e.filePath){let s=i.get(t);if(s===undefined){s={filePath:t,parent:undefined,children:[e],entries:e.entries,active:false,value:undefined};i.set(t,s);e.parent=s}else{e.parent=s;if(s.children===undefined){s.children=[e]}else{s.children.push(e)}do{s.entries+=e.entries;s=s.parent}while(s)}}}while(r>t){const e=r-t;let s=undefined;let n=Infinity;for(const r of i.values()){if(r.entries<=1||!r.children||!r.parent)continue;if(r.children.length===0)continue;if(r.children.length===1&&!r.value)continue;const i=r.entries-1>=e?r.entries-1-e:e-r.entries+1+t*.3;if(i<n){s=r;n=i}}if(!s)break;const c=s.entries-1;s.active=true;s.entries=1;r-=c;let a=s.parent;while(a){a.entries-=c;a=a.parent}const o=new Set(s.children);for(const e of o){e.active=false;e.entries=0;if(e.children){for(const t of e.children)o.add(t)}}}const n=new Map;for(const e of i.values()){if(!e.active)continue;const t=new Map;const i=new Set([e]);for(const s of i){if(s.active&&s!==e)continue;if(s.value){if(Array.isArray(s.value)){for(const e of s.value){t.set(e,s.filePath)}}else{t.set(s.value,s.filePath)}}if(s.children){for(const e of s.children){i.add(e)}}}n.set(e.filePath,t)}return n}},384:(e,t,i)=>{"use strict";const s=i(147);const r=i(17);const{EventEmitter:n}=i(361);const c=i(535);const a=i(37).platform()==="darwin";const o=i(37).platform()==="win32";const h=a||o;const f=+process.env.WATCHPACK_WATCHER_LIMIT||(a?2e3:1e4);const l=!!process.env.WATCHPACK_RECURSIVE_WATCHER_LOGGING;let u=false;let d=0;const p=new Map;const m=new Map;const g=new Map;const y=new Map;class DirectWatcher{constructor(e){this.filePath=e;this.watchers=new Set;this.watcher=undefined;try{const t=s.watch(e);this.watcher=t;t.on("change",((e,t)=>{for(const i of this.watchers){i.emit("change",e,t)}}));t.on("error",(e=>{for(const t of this.watchers){t.emit("error",e)}}))}catch(e){process.nextTick((()=>{for(const t of this.watchers){t.emit("error",e)}}))}d++}add(e){y.set(e,this);this.watchers.add(e)}remove(e){this.watchers.delete(e);if(this.watchers.size===0){g.delete(this.filePath);d--;if(this.watcher)this.watcher.close()}}getWatchers(){return this.watchers}}class RecursiveWatcher{constructor(e){this.rootPath=e;this.mapWatcherToPath=new Map;this.mapPathToWatchers=new Map;this.watcher=undefined;try{const t=s.watch(e,{recursive:true});this.watcher=t;t.on("change",((e,t)=>{if(!t){if(l){process.stderr.write(`[watchpack] dispatch ${e} event in recursive watcher (${this.rootPath}) to all watchers\n`)}for(const t of this.mapWatcherToPath.keys()){t.emit("change",e)}}else{const i=r.dirname(t);const s=this.mapPathToWatchers.get(i);if(l){process.stderr.write(`[watchpack] dispatch ${e} event in recursive watcher (${this.rootPath}) for '${t}' to ${s?s.size:0} watchers\n`)}if(s===undefined)return;for(const i of s){i.emit("change",e,r.basename(t))}}}));t.on("error",(e=>{for(const t of this.mapWatcherToPath.keys()){t.emit("error",e)}}))}catch(e){process.nextTick((()=>{for(const t of this.mapWatcherToPath.keys()){t.emit("error",e)}}))}d++;if(l){process.stderr.write(`[watchpack] created recursive watcher at ${e}\n`)}}add(e,t){y.set(t,this);const i=e.slice(this.rootPath.length+1)||".";this.mapWatcherToPath.set(t,i);const s=this.mapPathToWatchers.get(i);if(s===undefined){const e=new Set;e.add(t);this.mapPathToWatchers.set(i,e)}else{s.add(t)}}remove(e){const t=this.mapWatcherToPath.get(e);if(!t)return;this.mapWatcherToPath.delete(e);const i=this.mapPathToWatchers.get(t);i.delete(e);if(i.size===0){this.mapPathToWatchers.delete(t)}if(this.mapWatcherToPath.size===0){m.delete(this.rootPath);d--;if(this.watcher)this.watcher.close();if(l){process.stderr.write(`[watchpack] closed recursive watcher at ${this.rootPath}\n`)}}}getWatchers(){return this.mapWatcherToPath}}class Watcher extends n{close(){if(p.has(this)){p.delete(this);return}const e=y.get(this);e.remove(this);y.delete(this)}}const createDirectWatcher=e=>{const t=g.get(e);if(t!==undefined)return t;const i=new DirectWatcher(e);g.set(e,i);return i};const createRecursiveWatcher=e=>{const t=m.get(e);if(t!==undefined)return t;const i=new RecursiveWatcher(e);m.set(e,i);return i};const execute=()=>{const e=new Map;const addWatcher=(t,i)=>{const s=e.get(i);if(s===undefined){e.set(i,t)}else if(Array.isArray(s)){s.push(t)}else{e.set(i,[s,t])}};for(const[e,t]of p){addWatcher(e,t)}p.clear();if(!h||f-d>=e.size){for(const[t,i]of e){const e=createDirectWatcher(t);if(Array.isArray(i)){for(const t of i)e.add(t)}else{e.add(i)}}return}for(const e of m.values()){for(const[t,i]of e.getWatchers()){addWatcher(t,r.join(e.rootPath,i))}}for(const e of g.values()){for(const t of e.getWatchers()){addWatcher(t,e.filePath)}}const t=c(e,f*.9);for(const[e,i]of t){if(i.size===1){for(const[e,t]of i){const i=createDirectWatcher(t);const s=y.get(e);if(s===i)continue;i.add(e);if(s!==undefined)s.remove(e)}}else{const t=new Set(i.values());if(t.size>1){const t=createRecursiveWatcher(e);for(const[e,s]of i){const i=y.get(e);if(i===t)continue;t.add(s,e);if(i!==undefined)i.remove(e)}}else{for(const e of t){const t=createDirectWatcher(e);for(const e of i.keys()){const i=y.get(e);if(i===t)continue;t.add(e);if(i!==undefined)i.remove(e)}}}}}};t.watch=e=>{const t=new Watcher;const i=g.get(e);if(i!==undefined){i.add(t);return t}let s=e;for(;;){const i=m.get(s);if(i!==undefined){i.add(e,t);return t}const n=r.dirname(s);if(n===s)break;s=n}p.set(t,e);if(!u)execute();return t};t.batch=e=>{u=true;try{e()}finally{u=false;execute()}};t.getNumberOfWatchers=()=>d},747:(e,t,i)=>{"use strict";const s=i(653);const r=i(73);const n=i(361).EventEmitter;const c=i(660);const a=i(384);const o=[];const h={};function addWatchersToSet(e,t){for(const i of e){const e=i.watcher;if(!t.has(e.directoryWatcher)){t.add(e.directoryWatcher)}}}const stringToRegexp=e=>{const t=c(e,{globstar:true,extended:true}).source;const i=t.slice(0,t.length-1)+"(?:$|\\/)";return i};const ignoredToFunction=e=>{if(Array.isArray(e)){const t=new RegExp(e.map((e=>stringToRegexp(e))).join("|"));return e=>t.test(e.replace(/\\/g,"/"))}else if(typeof e==="string"){const t=new RegExp(stringToRegexp(e));return e=>t.test(e.replace(/\\/g,"/"))}else if(e instanceof RegExp){return t=>e.test(t.replace(/\\/g,"/"))}else if(e instanceof Function){return e}else if(e){throw new Error(`Invalid option for 'ignored': ${e}`)}else{return()=>false}};const normalizeOptions=e=>({followSymlinks:!!e.followSymlinks,ignored:ignoredToFunction(e.ignored),poll:e.poll});const f=new WeakMap;const cachedNormalizeOptions=e=>{const t=f.get(e);if(t!==undefined)return t;const i=normalizeOptions(e);f.set(e,i);return i};class WatchpackFileWatcher{constructor(e,t,i){this.files=Array.isArray(i)?i:[i];this.watcher=t;t.on("initial-missing",(t=>{for(const i of this.files){if(!e._missing.has(i))e._onRemove(i,i,t)}}));t.on("change",((t,i)=>{for(const s of this.files){e._onChange(s,t,s,i)}}));t.on("remove",(t=>{for(const i of this.files){e._onRemove(i,i,t)}}))}update(e){if(!Array.isArray(e)){if(this.files.length!==1){this.files=[e]}else if(this.files[0]!==e){this.files[0]=e}}else{this.files=e}}close(){this.watcher.close()}}class WatchpackDirectoryWatcher{constructor(e,t,i){this.directories=Array.isArray(i)?i:[i];this.watcher=t;t.on("initial-missing",(t=>{for(const i of this.directories){e._onRemove(i,i,t)}}));t.on("change",((t,i,s)=>{for(const r of this.directories){e._onChange(r,i,t,s)}}));t.on("remove",(t=>{for(const i of this.directories){e._onRemove(i,i,t)}}))}update(e){if(!Array.isArray(e)){if(this.directories.length!==1){this.directories=[e]}else if(this.directories[0]!==e){this.directories[0]=e}}else{this.directories=e}}close(){this.watcher.close()}}class Watchpack extends n{constructor(e){super();if(!e)e=h;this.options=e;this.aggregateTimeout=typeof e.aggregateTimeout==="number"?e.aggregateTimeout:200;this.watcherOptions=cachedNormalizeOptions(e);this.watcherManager=s(this.watcherOptions);this.fileWatchers=new Map;this.directoryWatchers=new Map;this._missing=new Set;this.startTime=undefined;this.paused=false;this.aggregatedChanges=new Set;this.aggregatedRemovals=new Set;this.aggregateTimer=undefined;this._onTimeout=this._onTimeout.bind(this)}watch(e,t,i){let s,n,c,h;if(!t){({files:s=o,directories:n=o,missing:c=o,startTime:h}=e)}else{s=e;n=t;c=o;h=i}this.paused=false;const f=this.fileWatchers;const l=this.directoryWatchers;const u=this.watcherOptions.ignored;const filter=e=>!u(e);const addToMap=(e,t,i)=>{const s=e.get(t);if(s===undefined){e.set(t,i)}else if(Array.isArray(s)){s.push(i)}else{e.set(t,[s,i])}};const d=new Map;const p=new Map;const m=new Set;if(this.watcherOptions.followSymlinks){const e=new r;for(const t of s){if(filter(t)){for(const i of e.resolve(t)){if(t===i||filter(i)){addToMap(d,i,t)}}}}for(const t of c){if(filter(t)){for(const i of e.resolve(t)){if(t===i||filter(i)){m.add(t);addToMap(d,i,t)}}}}for(const t of n){if(filter(t)){let i=true;for(const s of e.resolve(t)){if(filter(s)){addToMap(i?p:d,s,t)}i=false}}}}else{for(const e of s){if(filter(e)){addToMap(d,e,e)}}for(const e of c){if(filter(e)){m.add(e);addToMap(d,e,e)}}for(const e of n){if(filter(e)){addToMap(p,e,e)}}}for(const[e,t]of f){const i=d.get(e);if(i===undefined){t.close();f.delete(e)}else{t.update(i);d.delete(e)}}for(const[e,t]of l){const i=p.get(e);if(i===undefined){t.close();l.delete(e)}else{t.update(i);p.delete(e)}}a.batch((()=>{for(const[e,t]of d){const i=this.watcherManager.watchFile(e,h);if(i){f.set(e,new WatchpackFileWatcher(this,i,t))}}for(const[e,t]of p){const i=this.watcherManager.watchDirectory(e,h);if(i){l.set(e,new WatchpackDirectoryWatcher(this,i,t))}}}));this._missing=m;this.startTime=h}close(){this.paused=true;if(this.aggregateTimer)clearTimeout(this.aggregateTimer);for(const e of this.fileWatchers.values())e.close();for(const e of this.directoryWatchers.values())e.close();this.fileWatchers.clear();this.directoryWatchers.clear()}pause(){this.paused=true;if(this.aggregateTimer)clearTimeout(this.aggregateTimer)}getTimes(){const e=new Set;addWatchersToSet(this.fileWatchers.values(),e);addWatchersToSet(this.directoryWatchers.values(),e);const t=Object.create(null);for(const i of e){const e=i.getTimes();for(const i of Object.keys(e))t[i]=e[i]}return t}getTimeInfoEntries(){const e=new Map;this.collectTimeInfoEntries(e,e);return e}collectTimeInfoEntries(e,t){const i=new Set;addWatchersToSet(this.fileWatchers.values(),i);addWatchersToSet(this.directoryWatchers.values(),i);const s={value:0};for(const r of i){r.collectTimeInfoEntries(e,t,s)}}getAggregated(){if(this.aggregateTimer){clearTimeout(this.aggregateTimer);this.aggregateTimer=undefined}const e=this.aggregatedChanges;const t=this.aggregatedRemovals;this.aggregatedChanges=new Set;this.aggregatedRemovals=new Set;return{changes:e,removals:t}}_onChange(e,t,i,s){i=i||e;if(!this.paused){this.emit("change",i,t,s);if(this.aggregateTimer)clearTimeout(this.aggregateTimer);this.aggregateTimer=setTimeout(this._onTimeout,this.aggregateTimeout)}this.aggregatedRemovals.delete(e);this.aggregatedChanges.add(e)}_onRemove(e,t,i){t=t||e;if(!this.paused){this.emit("remove",t,i);if(this.aggregateTimer)clearTimeout(this.aggregateTimer);this.aggregateTimer=setTimeout(this._onTimeout,this.aggregateTimeout)}this.aggregatedChanges.delete(e);this.aggregatedRemovals.add(e)}_onTimeout(){this.aggregateTimer=undefined;const e=this.aggregatedChanges;const t=this.aggregatedRemovals;this.aggregatedChanges=new Set;this.aggregatedRemovals=new Set;this.emit("aggregated",e,t)}}e.exports=Watchpack},491:e=>{"use strict";e.exports=require("assert")},57:e=>{"use strict";e.exports=require("constants")},361:e=>{"use strict";e.exports=require("events")},147:e=>{"use strict";e.exports=require("fs")},37:e=>{"use strict";e.exports=require("os")},17:e=>{"use strict";e.exports=require("path")},781:e=>{"use strict";e.exports=require("stream")},837:e=>{"use strict";e.exports=require("util")}};var t={};function __nccwpck_require__(i){var s=t[i];if(s!==undefined){return s.exports}var r=t[i]={exports:{}};var n=true;try{e[i](r,r.exports,__nccwpck_require__);n=false}finally{if(n)delete t[i]}return r.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var i=__nccwpck_require__(747);module.exports=i})();
|