From 78e46e478dc357ba7bf1e0dcde2eb11cf3ff00b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 22 Dec 2025 19:50:20 +0100 Subject: [PATCH 1/4] Added type checks in `icons-react` tests and ensured consistent dependency management in test packages. (#1439) --- package.json | 10 +- packages/icons-preact/package.json | 2 +- packages/icons-react-native/rollup.config.mjs | 40 + packages/icons-react/src/types.ts | 2 +- packages/icons-react/test.spec.tsx | 6 + packages/icons-svelte/test.spec.js | 44 +- packages/icons-vue/package.json | 2 +- pnpm-lock.yaml | 18872 +++++++++------- test/test-preact/package.json | 4 +- test/test-react-native/package.json | 4 +- test/test-react-native/src/App.tsx | 3 +- test/test-react-native/vite.config.ts | 29 +- test/test-react/package.json | 4 +- test/test-svelte/package.json | 2 +- test/test-vue/package.json | 6 +- turbo.json | 4 +- 16 files changed, 10356 insertions(+), 8678 deletions(-) diff --git a/package.json b/package.json index d766fbf3f..f4f88bf27 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "jsdom": "^24.0.0", "lodash.template": "4.5.0", "minimist": "1.2.8", - "sass": "^1.71.1", "openai": "^4.73.1", "parse-svg-path": "^0.1.2", "prettier": "^3.2.5", @@ -82,15 +81,16 @@ "rollup-plugin-license": "^3.2.0", "rollup-plugin-peer-deps-external": "2.2.4", "rollup-plugin-visualizer": "^5.12.0", + "sass": "^1.71.1", "slash": "^5.1.0", "svg-outline-stroke": "1.3.1", "svgo": "^3.2.0", "svgpath": "^2.6.0", "svgson": "^5.3.1", - "turbo": "^1.12.5", + "turbo": "^2.6.3", "typescript": "^5.3.3", - "vite": "^5.1.8", - "vitest": "^1.3.1" + "vite": "^7.3.0", + "vitest": "^4.0.16" }, "release-it": { "plugins": { @@ -113,7 +113,7 @@ "release": true } }, - "packageManager": "pnpm@8.15.9", + "packageManager": "pnpm@10.26.0", "pnpm": { "overrides": { "sharp": "^0.33.5" diff --git a/packages/icons-preact/package.json b/packages/icons-preact/package.json index 6e20a807a..59a8c208c 100644 --- a/packages/icons-preact/package.json +++ b/packages/icons-preact/package.json @@ -42,7 +42,7 @@ "preact": "^10.5.13" }, "devDependencies": { - "@preact/preset-vite": "^2.8.1", + "@preact/preset-vite": "^2.10.2", "@testing-library/preact": "^3.2.3", "preact": "^10.19.6" } diff --git a/packages/icons-react-native/rollup.config.mjs b/packages/icons-react-native/rollup.config.mjs index 89259f3be..1bec159c2 100644 --- a/packages/icons-react-native/rollup.config.mjs +++ b/packages/icons-react-native/rollup.config.mjs @@ -32,6 +32,46 @@ export default [ ], plugins: [dts()], }, + { + input: './src/icons/index.ts', + output: [ + { + dir: 'dist/icons', + format: 'es', + preserveModules: true, + preserveModulesRoot: 'src', + }, + ], + plugins: [ + dts({ + compilerOptions: { + declaration: true, + emitDeclarationOnly: true, + }, + }), + ], + external: ['react', 'react-native-svg'], + }, + { + input: './src/icons/index.ts', + output: [ + { + dir: 'dist/cjs/icons', + format: 'es', + preserveModules: true, + preserveModulesRoot: 'src', + }, + ], + plugins: [ + dts({ + compilerOptions: { + declaration: true, + emitDeclarationOnly: true, + }, + }), + ], + external: ['react', 'react-native-svg'], + }, ...getRollupConfig(pkg, outputFileName, bundles, { react: 'react', 'react-native-svg': 'react-native-svg', diff --git a/packages/icons-react/src/types.ts b/packages/icons-react/src/types.ts index 04a82ce83..eb54fa0a9 100644 --- a/packages/icons-react/src/types.ts +++ b/packages/icons-react/src/types.ts @@ -12,4 +12,4 @@ export interface IconProps extends Partial; -export type TablerIcon = ForwardRefExoticComponent & RefAttributes>; +export type TablerIcon = ForwardRefExoticComponent>; diff --git a/packages/icons-react/test.spec.tsx b/packages/icons-react/test.spec.tsx index 41b611fe1..5020040d2 100644 --- a/packages/icons-react/test.spec.tsx +++ b/packages/icons-react/test.spec.tsx @@ -1,6 +1,7 @@ import { describe, it, expect, afterEach, expectTypeOf } from 'vitest'; import { render, cleanup } from '@testing-library/react' import { IconAccessible, IconAccessibleFilled, createReactComponent } from "./src/tabler-icons-react" +import type { TablerIcon } from "./src/types" describe("React Icon component", () => { afterEach(() => { @@ -56,6 +57,11 @@ describe("React Icon component", () => { expectTypeOf(IconAccessible).toEqualTypeOf(createReactComponent('outline', 'accessible', 'Accessible', [])); }); + it('should match TablerIcon type', () => { + expectTypeOf(IconAccessible).toMatchTypeOf(); + expectTypeOf(IconAccessibleFilled).toMatchTypeOf(); + }); + it('should add title child element to svg when title prop is passed', () => { const { container } = render(); const svg = container.getElementsByTagName("svg")[0]; diff --git a/packages/icons-svelte/test.spec.js b/packages/icons-svelte/test.spec.js index d5f2eeaae..5a7496cf6 100644 --- a/packages/icons-svelte/test.spec.js +++ b/packages/icons-svelte/test.spec.js @@ -68,30 +68,28 @@ describe("Svelte Icon component", () => { it("should match snapshot", () => { const { container } = render(IconAccessible); expect(container.innerHTML).toMatchInlineSnapshot(` -
- + + + + + - - - - - - - -
+ + `); }); }); diff --git a/packages/icons-vue/package.json b/packages/icons-vue/package.json index 69115c3da..a618c7cb5 100644 --- a/packages/icons-vue/package.json +++ b/packages/icons-vue/package.json @@ -41,7 +41,7 @@ }, "devDependencies": { "@testing-library/vue": "^8.0.2", - "@vitejs/plugin-vue": "^5.0.4", + "@vitejs/plugin-vue": "^6.0.3", "@vue/compiler-sfc": "^3.4.20", "@vue/test-utils": "2.4.4", "vue": "^3.4.20" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9c768658d..d59ec3a27 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -20,16 +20,16 @@ importers: version: 2.0.1 '@atomico/rollup-plugin-sizes': specifier: ^1.1.4 - version: 1.1.4(rollup@4.50.2) + version: 1.1.4(rollup@4.53.3) '@release-it-plugins/workspaces': specifier: ^4.2.1 - version: 4.2.1(release-it@17.1.1) + version: 4.2.1(release-it@17.1.1(typescript@5.9.3)) '@rollup/plugin-node-resolve': specifier: ^16.0.1 - version: 16.0.1(rollup@4.50.2) + version: 16.0.3(rollup@4.53.3) '@testing-library/jest-dom': specifier: ^6.4.8 - version: 6.8.0 + version: 6.9.1 adm-zip: specifier: ^0.5.16 version: 0.5.16 @@ -50,7 +50,7 @@ importers: version: 0.20.2 fs-extra: specifier: ^11.2.0 - version: 11.3.1 + version: 11.3.2 glob: specifier: 10.3.16 version: 10.3.16 @@ -74,40 +74,40 @@ importers: version: 1.2.8 openai: specifier: ^4.73.1 - version: 4.104.0 + version: 4.104.0(encoding@0.1.13)(ws@8.18.3) parse-svg-path: specifier: ^0.1.2 version: 0.1.2 prettier: specifier: ^3.2.5 - version: 3.6.2 + version: 3.7.4 release-it: specifier: 17.1.1 - version: 17.1.1(typescript@5.9.2) + version: 17.1.1(typescript@5.9.3) rollup: specifier: ^4.12.1 - version: 4.50.2 + version: 4.53.3 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.2.3(rollup@4.50.2)(typescript@5.9.2) + version: 6.3.0(rollup@4.53.3)(typescript@5.9.3) rollup-plugin-esbuild: specifier: ^6.1.1 - version: 6.2.1(esbuild@0.20.2)(rollup@4.50.2) + version: 6.2.1(esbuild@0.20.2)(rollup@4.53.3) rollup-plugin-filesize: specifier: 10.0.0 version: 10.0.0 rollup-plugin-license: specifier: ^3.2.0 - version: 3.6.0(rollup@4.50.2) + version: 3.6.0(picomatch@4.0.3)(rollup@4.53.3) rollup-plugin-peer-deps-external: specifier: 2.2.4 - version: 2.2.4(rollup@4.50.2) + version: 2.2.4(rollup@4.53.3) rollup-plugin-visualizer: specifier: ^5.12.0 - version: 5.14.0(rollup@4.50.2) + version: 5.14.0(rollup@4.53.3) sass: specifier: ^1.71.1 - version: 1.92.1 + version: 1.96.0 slash: specifier: ^5.1.0 version: 5.1.0 @@ -124,17 +124,17 @@ importers: specifier: ^5.3.1 version: 5.3.1 turbo: - specifier: ^1.12.5 - version: 1.13.4 + specifier: ^2.6.3 + version: 2.6.3 typescript: specifier: ^5.3.3 - version: 5.9.2 + version: 5.9.3 vite: - specifier: ^5.1.8 - version: 5.4.20(sass@1.92.1) + specifier: ^7.3.0 + version: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) vitest: - specifier: ^1.3.1 - version: 1.6.1(jsdom@24.1.3)(sass@1.92.1) + specifier: ^4.0.16 + version: 4.0.16(@types/node@25.0.2)(jsdom@24.1.3)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) packages/icons: {} @@ -142,51 +142,51 @@ importers: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 packages/icons-pdf: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 packages/icons-png: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 packages/icons-preact: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@preact/preset-vite': - specifier: ^2.8.1 - version: 2.10.2(@babel/core@7.28.4)(preact@10.27.2)(vite@7.2.7) + specifier: ^2.10.2 + version: 2.10.2(@babel/core@7.28.5)(preact@10.28.0)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@testing-library/preact': specifier: ^3.2.3 - version: 3.2.4(preact@10.27.2) + version: 3.2.4(preact@10.28.0) preact: specifier: ^10.19.6 - version: 10.27.2 + version: 10.28.0 packages/icons-react: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(@types/react@18.2.60)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.1(@types/react@18.2.60)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@types/react': specifier: 18.2.60 version: 18.2.60 '@vitejs/plugin-react': specifier: ^4.2.1 - version: 4.7.0(vite@7.2.7) + version: 4.7.0(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) react: specifier: 18.2.0 version: 18.2.0 @@ -201,17 +201,17 @@ importers: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(@types/react@18.2.60)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.1(@types/react@18.2.60)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@types/react': specifier: 18.2.60 version: 18.2.60 '@vitejs/plugin-react': specifier: ^4.2.1 - version: 4.7.0(vite@7.2.7) + version: 4.7.0(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) react: specifier: 18.2.0 version: 18.2.0 @@ -220,10 +220,10 @@ importers: version: 18.2.0(react@18.2.0) react-native: specifier: ^0.73.5 - version: 0.73.11(@babel/core@7.28.4)(@babel/preset-env@7.28.3)(react@18.2.0) + version: 0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0) react-native-svg: specifier: ^15.0.0 - version: 15.13.0(react-native@0.73.11)(react@18.2.0) + version: 15.15.1(react-native@0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0) react-test-renderer: specifier: 18.2.0 version: 18.2.0(react@18.2.0) @@ -232,79 +232,79 @@ importers: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@solidjs/testing-library': specifier: ^0.8.6 - version: 0.8.10(solid-js@1.9.9) + version: 0.8.10(solid-js@1.9.10) rollup: specifier: ^4.12.0 - version: 4.50.2 + version: 4.53.3 rollup-preset-solid: specifier: ^2.0.1 - version: 2.0.1(solid-js@1.9.9) + version: 2.0.1(@types/babel__core@7.20.5)(solid-js@1.9.10) solid-js: specifier: ^1.8.15 - version: 1.9.9 + version: 1.9.10 vite-plugin-solid: specifier: ^2.10.1 - version: 2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@7.2.7) + version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) packages/icons-sprite: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 packages/icons-svelte: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@sveltejs/package': specifier: ^2.2.7 - version: 2.5.1(svelte@4.2.20)(typescript@5.9.2) + version: 2.5.7(svelte@4.2.20)(typescript@5.9.3) '@sveltejs/vite-plugin-svelte': specifier: ^3.0.2 - version: 3.1.2(svelte@4.2.20)(vite@5.4.20) + version: 3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@testing-library/svelte': specifier: ^4.2.1 version: 4.2.3(svelte@4.2.20) '@tsconfig/svelte': specifier: ^5.0.2 - version: 5.0.5 + version: 5.0.6 svelte: specifier: ^4.2.12 version: 4.2.20 svelte-check: specifier: ^3.6.5 - version: 3.8.6(sass@1.92.1)(svelte@4.2.20) + version: 3.8.6(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20) svelte-preprocess: specifier: ^5.1.3 - version: 5.1.4(sass@1.92.1)(svelte@4.2.20)(typescript@5.9.2) + version: 5.1.4(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20)(typescript@5.9.3) packages/icons-svelte-runes: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@sveltejs/package': specifier: ^2.3.7 - version: 2.5.1(svelte@5.46.0)(typescript@5.9.2) + version: 2.5.7(svelte@5.46.0)(typescript@5.9.3) '@sveltejs/vite-plugin-svelte': specifier: ^5.0.3 - version: 5.1.1(svelte@5.46.0)(vite@7.2.7) + version: 5.1.1(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@testing-library/jest-dom': specifier: ^6.6.3 - version: 6.8.0 + version: 6.9.1 '@testing-library/svelte': specifier: ^5.2.9 - version: 5.2.9(svelte@5.46.0)(vite@7.2.7)(vitest@3.2.4) + version: 5.2.9(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))(vitest@3.2.4(@types/node@25.0.2)(jsdom@25.0.1)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@tsconfig/svelte': specifier: ^5.0.4 - version: 5.0.5 + version: 5.0.6 jest-serializer-html: specifier: ^7.1.0 version: 7.1.0 @@ -316,44 +316,44 @@ importers: version: 5.46.0 svelte-check: specifier: ^4.3.4 - version: 4.3.4(svelte@5.46.0)(typescript@5.9.2) + version: 4.3.4(picomatch@4.0.3)(svelte@5.46.0)(typescript@5.9.3) typescript: specifier: ^5.7.3 - version: 5.9.2 + version: 5.9.3 vite: specifier: ^7.2.7 - version: 7.2.7(sass@1.92.1) + version: 7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) vitest: specifier: ^3.0.8 - version: 3.2.4(jsdom@25.0.1)(sass@1.92.1) + version: 3.2.4(@types/node@25.0.2)(jsdom@25.0.1)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) packages/icons-vue: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 devDependencies: '@testing-library/vue': specifier: ^8.0.2 - version: 8.1.0(@vue/compiler-sfc@3.5.21)(vue@3.5.21) + version: 8.1.0(@vue/compiler-sfc@3.5.25)(@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) '@vitejs/plugin-vue': - specifier: ^5.0.4 - version: 5.2.4(vite@5.4.20)(vue@3.5.21) + specifier: ^6.0.3 + version: 6.0.3(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) '@vue/compiler-sfc': specifier: ^3.4.20 - version: 3.5.21 + version: 3.5.25 '@vue/test-utils': specifier: 2.4.4 - version: 2.4.4(vue@3.5.21) + version: 2.4.4(@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) vue: specifier: ^3.4.20 - version: 3.5.21(typescript@5.9.2) + version: 3.5.25(typescript@5.9.3) packages/icons-webfont: dependencies: '@tabler/icons': specifier: 3.36.0 - version: link:../icons + version: 3.36.0 sharp: specifier: ^0.33.5 version: 0.33.5 @@ -363,7 +363,7 @@ importers: devDependencies: sass: specifier: ^1.71.1 - version: 1.92.1 + version: 1.96.0 svg2ttf: specifier: ^6.0.3 version: 6.0.3 @@ -380,20 +380,20 @@ importers: test/test-preact: dependencies: '@tabler/icons-preact': - specifier: 3.36.0 + specifier: workspace:* version: link:../../packages/icons-preact preact: specifier: ^10.19.6 - version: 10.27.2 + version: 10.28.0 devDependencies: '@preact/preset-vite': - specifier: ^2.8.1 - version: 2.10.2(@babel/core@7.28.4)(preact@10.27.2)(vite@7.2.7) + specifier: ^2.10.2 + version: 2.10.2(@babel/core@7.28.5)(preact@10.28.0)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) test/test-react: dependencies: '@tabler/icons-react': - specifier: 3.36.0 + specifier: workspace:* version: link:../../packages/icons-react react: specifier: ^18.2.0 @@ -409,13 +409,13 @@ importers: specifier: ^18.2.19 version: 18.3.7(@types/react@18.2.60) '@vitejs/plugin-react': - specifier: ^4.2.1 - version: 4.7.0(vite@7.2.7) + specifier: ^5.1.2 + version: 5.1.2(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) test/test-react-native: dependencies: '@tabler/icons-react-native': - specifier: 3.36.0 + specifier: workspace:* version: link:../../packages/icons-react-native react: specifier: ^18.2.0 @@ -431,27 +431,27 @@ importers: specifier: ^18.2.19 version: 18.3.7(@types/react@18.2.60) '@vitejs/plugin-react': - specifier: ^4.2.1 - version: 4.7.0(vite@7.2.7) + specifier: ^5.1.2 + version: 5.1.2(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) test/test-svelte: dependencies: '@tabler/icons-svelte': - specifier: 3.36.0 + specifier: workspace:* version: link:../../packages/icons-svelte devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^3.0.2 - version: 3.1.2(svelte@4.2.20)(vite@5.4.20) + version: 3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@tsconfig/svelte': specifier: ^5.0.2 - version: 5.0.5 + version: 5.0.6 svelte: specifier: ^4.2.12 version: 4.2.20 svelte-check: specifier: ^3.6.5 - version: 3.8.6(sass@1.92.1)(svelte@4.2.20) + version: 3.8.6(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20) tslib: specifier: ^2.6.2 version: 2.8.1 @@ -459,35 +459,7458 @@ importers: test/test-vue: dependencies: '@tabler/icons-vue': - specifier: 3.36.0 + specifier: workspace:* version: link:../../packages/icons-vue vue: specifier: ^3.4.20 - version: 3.5.21(typescript@5.9.2) + version: 3.5.25(typescript@5.9.3) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.4 - version: 5.2.4(vite@5.4.20)(vue@3.5.21) + specifier: ^6.0.3 + version: 6.0.3(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.9.2) + specifier: ^3.1.8 + version: 3.1.8(typescript@5.9.3) packages: - /@11ty/dependency-tree@2.0.1: + '@11ty/dependency-tree@2.0.1': resolution: {integrity: sha512-5R+DsT9LJ9tXiSQ4y+KLFppCkQyXhzAm1AIuBWE/sbU0hSXY5pkhoqQYEcPJQFg/nglL+wD55iv2j+7O96UAvg==} - dev: true - /@11ty/eleventy-dev-server@1.0.4: + '@11ty/eleventy-dev-server@1.0.4': resolution: {integrity: sha512-qVBmV2G1KF/0o5B/3fITlrrDHy4bONUI2YuN3/WJ3BNw4NU1d/we8XhKrlgq13nNvHoBx5czYp3LZt8qRG53Fg==} engines: {node: '>=14'} hasBin: true + + '@11ty/eleventy-utils@1.0.3': + resolution: {integrity: sha512-nULO91om7vQw4Y/UBjM8i7nJ1xl+/nyK4rImZ41lFxiY2d+XUz7ChAj1CDYFjrLZeu0utAYJTZ45LlcHTkUG4g==} + engines: {node: '>=12'} + + '@11ty/eleventy@2.0.1': + resolution: {integrity: sha512-t8XVUbCJByhVEa1RzO0zS2QzbL3wPY8ot1yUw9noqiSHxJWUwv6jiwm1/MZDPTYtkZH2ZHvdQIRQ5/SjG9XmLw==} + engines: {node: '>=14'} + hasBin: true + + '@11ty/lodash-custom@4.17.21': + resolution: {integrity: sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==} + engines: {node: '>=14'} + + '@adobe/css-tools@4.4.4': + resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@asamuzakjp/css-color@3.2.0': + resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + + '@atomico/rollup-plugin-sizes@1.1.4': + resolution: {integrity: sha512-ilxLw9hT+kWXIx8mYoAFLA2eIVfLrsnabPCaGo5Mkrj8qxhEkZvFddcnH2HTp/hDKFEIJRpZVpXecsPp3FOdRw==} + peerDependencies: + rollup: 1.x || 2.x + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.5': + resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.5': + resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.5': + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.28.5': + resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.28.5': + resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.5': + resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-environment-visitor@7.24.7': + resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.28.5': + resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.18.6': + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.27.1': + resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.28.3': + resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.4': + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5': + resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1': + resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3': + resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-class-properties@7.18.6': + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-export-default-from@7.27.1': + resolution: {integrity: sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-object-rest-spread@7.20.7': + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-default-from@7.27.1': + resolution: {integrity: sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-flow@7.27.1': + resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.27.1': + resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-arrow-functions@7.27.1': + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.28.0': + resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.27.1': + resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.27.1': + resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.28.5': + resolution: {integrity: sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.27.1': + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.28.3': + resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.28.4': + resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-computed-properties@7.27.1': + resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.28.5': + resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.27.1': + resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.27.1': + resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-dynamic-import@7.27.1': + resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-explicit-resource-management@7.28.0': + resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.28.5': + resolution: {integrity: sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.27.1': + resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-flow-strip-types@7.27.1': + resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.27.1': + resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.27.1': + resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.27.1': + resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.27.1': + resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.28.5': + resolution: {integrity: sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.27.1': + resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.28.5': + resolution: {integrity: sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.27.1': + resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.27.1': + resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': + resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.27.1': + resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.28.4': + resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.27.1': + resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.27.1': + resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.28.5': + resolution: {integrity: sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.27.7': + resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.27.1': + resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.27.1': + resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.27.1': + resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.28.0': + resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.27.1': + resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.27.1': + resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.28.4': + resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regexp-modifiers@7.27.1': + resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.28.5': + resolution: {integrity: sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.27.1': + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.27.1': + resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.27.1': + resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.27.1': + resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.27.1': + resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.28.5': + resolution: {integrity: sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.27.1': + resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.27.1': + resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.27.1': + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.27.1': + resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.28.5': + resolution: {integrity: sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-flow@7.27.1': + resolution: {integrity: sha512-ez3a2it5Fn6P54W8QkbfIyyIbxlXvcxyWHHvno1Wg0Ej5eiJY5hBb8ExttoIOJJk7V2dZE6prP7iby5q2aQ0Lg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-typescript@7.28.5': + resolution: {integrity: sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/register@7.28.3': + resolution: {integrity: sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.28.4': + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.5': + resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + engines: {node: '>=6.9.0'} + + '@csstools/color-helpers@5.1.0': + resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} + engines: {node: '>=18'} + + '@csstools/css-calc@2.1.4': + resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 + + '@csstools/css-color-parser@3.1.0': + resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 + + '@csstools/css-parser-algorithms@3.0.5': + resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} + engines: {node: '>=18'} + peerDependencies: + '@csstools/css-tokenizer': ^3.0.4 + + '@csstools/css-tokenizer@3.0.4': + resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} + engines: {node: '>=18'} + + '@emnapi/runtime@1.7.1': + resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} + + '@esbuild/aix-ppc64@0.20.2': + resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.27.2': + resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.20.2': + resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.27.2': + resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.15.18': + resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.20.2': + resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.27.2': + resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.20.2': + resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.27.2': + resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.20.2': + resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.27.2': + resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.20.2': + resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.27.2': + resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.20.2': + resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.27.2': + resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.20.2': + resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.2': + resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.20.2': + resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.27.2': + resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.20.2': + resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.27.2': + resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.20.2': + resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.27.2': + resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.15.18': + resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.20.2': + resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.27.2': + resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.20.2': + resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.27.2': + resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.20.2': + resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.27.2': + resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.20.2': + resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.2': + resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.20.2': + resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.27.2': + resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.20.2': + resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.27.2': + resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.27.2': + resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.20.2': + resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.2': + resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.27.2': + resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.20.2': + resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.2': + resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.27.2': + resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.20.2': + resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.27.2': + resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.20.2': + resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.27.2': + resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.20.2': + resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.27.2': + resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.20.2': + resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.27.2': + resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@iarna/toml@2.2.5': + resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} + + '@img/sharp-darwin-arm64@0.33.5': + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.33.5': + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.0.4': + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.0.4': + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.0.4': + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.5': + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.4': + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.4': + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.5': + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.5': + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.5': + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.5': + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.5': + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.5': + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.5': + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.5': + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.5': + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@isaacs/balanced-match@4.0.1': + resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} + engines: {node: 20 || >=22} + + '@isaacs/brace-expansion@5.0.0': + resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} + engines: {node: 20 || >=22} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/ttlcache@1.4.1': + resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} + engines: {node: '>=12'} + + '@jest/create-cache-key-function@29.7.0': + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jimp/bmp@0.14.0': + resolution: {integrity: sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/core@0.14.0': + resolution: {integrity: sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w==} + + '@jimp/custom@0.14.0': + resolution: {integrity: sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA==} + + '@jimp/gif@0.14.0': + resolution: {integrity: sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/jpeg@0.14.0': + resolution: {integrity: sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-blit@0.14.0': + resolution: {integrity: sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-blur@0.14.0': + resolution: {integrity: sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-circle@0.14.0': + resolution: {integrity: sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-color@0.14.0': + resolution: {integrity: sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-contain@0.14.0': + resolution: {integrity: sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-scale': '>=0.3.5' + + '@jimp/plugin-cover@0.14.0': + resolution: {integrity: sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-crop': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-scale': '>=0.3.5' + + '@jimp/plugin-crop@0.14.0': + resolution: {integrity: sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-displace@0.14.0': + resolution: {integrity: sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-dither@0.14.0': + resolution: {integrity: sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-fisheye@0.14.0': + resolution: {integrity: sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-flip@0.14.0': + resolution: {integrity: sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-rotate': '>=0.3.5' + + '@jimp/plugin-gaussian@0.14.0': + resolution: {integrity: sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-invert@0.14.0': + resolution: {integrity: sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-mask@0.14.0': + resolution: {integrity: sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-normalize@0.14.0': + resolution: {integrity: sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-print@0.14.0': + resolution: {integrity: sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + + '@jimp/plugin-resize@0.14.0': + resolution: {integrity: sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/plugin-rotate@0.14.0': + resolution: {integrity: sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit': '>=0.3.5' + '@jimp/plugin-crop': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + + '@jimp/plugin-scale@0.14.0': + resolution: {integrity: sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + + '@jimp/plugin-shadow@0.14.0': + resolution: {integrity: sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blur': '>=0.3.5' + '@jimp/plugin-resize': '>=0.3.5' + + '@jimp/plugin-threshold@0.14.0': + resolution: {integrity: sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + '@jimp/plugin-color': '>=0.8.0' + '@jimp/plugin-resize': '>=0.8.0' + + '@jimp/plugins@0.14.0': + resolution: {integrity: sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/png@0.14.0': + resolution: {integrity: sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/tiff@0.14.0': + resolution: {integrity: sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/types@0.14.0': + resolution: {integrity: sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ==} + peerDependencies: + '@jimp/custom': '>=0.3.5' + + '@jimp/utils@0.14.0': + resolution: {integrity: sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A==} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.11': + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + + '@ljharb/through@2.3.14': + resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==} + engines: {node: '>= 0.4'} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@npmcli/fs@2.1.2': + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/fs@3.1.1': + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/git@4.1.0': + resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/installed-package-contents@2.1.0': + resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + '@npmcli/move-file@2.0.1': + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/node-gyp@3.0.0': + resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/promise-spawn@6.0.2': + resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/run-script@6.0.2': + resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@octokit/auth-token@4.0.0': + resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} + engines: {node: '>= 18'} + + '@octokit/core@5.2.2': + resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==} + engines: {node: '>= 18'} + + '@octokit/endpoint@9.0.6': + resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==} + engines: {node: '>= 18'} + + '@octokit/graphql@7.1.1': + resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==} + engines: {node: '>= 18'} + + '@octokit/openapi-types@20.0.0': + resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} + + '@octokit/openapi-types@24.2.0': + resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} + + '@octokit/plugin-paginate-rest@9.2.2': + resolution: {integrity: sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-request-log@4.0.1': + resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-rest-endpoint-methods@10.4.1': + resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/request-error@5.1.1': + resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==} + engines: {node: '>= 18'} + + '@octokit/request@8.4.1': + resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==} + engines: {node: '>= 18'} + + '@octokit/rest@20.0.2': + resolution: {integrity: sha512-Ux8NDgEraQ/DMAU1PlAohyfBBXDwhnX2j33Z1nJNziqAfHi70PuxkFYIcIt8aIAxtRE7KVuKp8lSR8pA0J5iOQ==} + engines: {node: '>= 18'} + + '@octokit/types@12.6.0': + resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} + + '@octokit/types@13.10.0': + resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@parcel/watcher-android-arm64@2.5.1': + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.5.1': + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.5.1': + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.5.1': + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.1': + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm-musl@2.5.1': + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.5.1': + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.5.1': + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.5.1': + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.5.1': + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.1': + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.1': + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.1': + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} + engines: {node: '>= 10.0.0'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pnpm/config.env-replace@1.1.0': + resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} + engines: {node: '>=12.22.0'} + + '@pnpm/network.ca-file@1.0.2': + resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} + engines: {node: '>=12.22.0'} + + '@pnpm/npm-conf@2.3.1': + resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} + engines: {node: '>=12'} + + '@preact/preset-vite@2.10.2': + resolution: {integrity: sha512-K9wHlJOtkE+cGqlyQ5v9kL3Ge0Ql4LlIZjkUTL+1zf3nNdF88F9UZN6VTV8jdzBX9Fl7WSzeNMSDG7qECPmSmg==} + peerDependencies: + '@babel/core': 7.x + vite: 2.x || 3.x || 4.x || 5.x || 6.x || 7.x + + '@prefresh/babel-plugin@0.5.2': + resolution: {integrity: sha512-AOl4HG6dAxWkJ5ndPHBgBa49oo/9bOiJuRDKHLSTyH+Fd9x00shTXpdiTj1W41l6oQIwUOAgJeHMn4QwIDpHkA==} + + '@prefresh/core@1.5.9': + resolution: {integrity: sha512-IKBKCPaz34OFVC+adiQ2qaTF5qdztO2/4ZPf4KsRTgjKosWqxVXmEbxCiUydYZRY8GVie+DQlKzQr9gt6HQ+EQ==} + peerDependencies: + preact: ^10.0.0 || ^11.0.0-0 + + '@prefresh/utils@1.2.1': + resolution: {integrity: sha512-vq/sIuN5nYfYzvyayXI4C2QkprfNaHUQ9ZX+3xLD8nL3rWyzpxOm1+K7RtMbhd+66QcaISViK7amjnheQ/4WZw==} + + '@prefresh/vite@2.4.11': + resolution: {integrity: sha512-/XjURQqdRiCG3NpMmWqE9kJwrg9IchIOWHzulCfqg2sRe/8oQ1g5De7xrk9lbqPIQLn7ntBkKdqWXIj4E9YXyg==} + peerDependencies: + preact: ^10.4.0 || ^11.0.0-0 + vite: '>=2.0.0' + + '@react-native-community/cli-clean@12.3.7': + resolution: {integrity: sha512-BCYW77QqyxfhiMEBOoHyciJRNV6Rhz1RvclReIKnCA9wAwmoJBeu4Mu+AwiECA2bUITX16fvPt3NwDsSd1jwfQ==} + + '@react-native-community/cli-config@12.3.7': + resolution: {integrity: sha512-IU2UhO9yj1rEBNhHWGzIXpPDzha4hizLP/PUOrhR4BUf6RVPUWEp+e1PXNGR0qjIf6esu7OC7t6mLOhH0NUJEw==} + + '@react-native-community/cli-debugger-ui@12.3.7': + resolution: {integrity: sha512-UHUFrRdcjWSCdWG9KIp2QjuRIahBQnb9epnQI7JCq6NFbFHYfEI4rI7msjMn+gG8/tSwKTV2PTPuPmZ5wWlE7Q==} + + '@react-native-community/cli-doctor@12.3.7': + resolution: {integrity: sha512-gCamZztRoAyhciuQPqdz4Xe4t3gOdNsaADNd+rva+Rx8W2PoPeNv60i7/et06wlsn6B6Sh0/hMiAftJbiHDFkg==} + + '@react-native-community/cli-hermes@12.3.7': + resolution: {integrity: sha512-ezzeiSKjRXK2+i1AAe7NhhN9CEHrgtRmTn2MAdBpE++N8fH5EQZgxFcGgGdwGvns2fm9ivyyeVnI5eAYwvM+jg==} + + '@react-native-community/cli-platform-android@12.3.7': + resolution: {integrity: sha512-mOltF3cpjNdJb3WSFwEHc1GH4ibCcnOvQ34OdWyblKy9ijuvG5SjNTlYR/UW/CURaDi3OUKAhxQMTY5d27bzGQ==} + + '@react-native-community/cli-platform-ios@12.3.7': + resolution: {integrity: sha512-2WnVsMH4ORZIhBm/5nCms1NeeKG4KarNC7PMLmrXWXB/bibDcaNsjrJiqnmCUcpTEvTQTokRfoO7Aj6NM0Cqow==} + + '@react-native-community/cli-plugin-metro@12.3.7': + resolution: {integrity: sha512-ahEw0Vfnv2Nv/jdZ2QDuGjQ9l2SczO4lXjb3ubu5vEYNLyTw3jYsLMK6iES7YQ/ApQmKdG476HU1O9uZdpaYPg==} + + '@react-native-community/cli-server-api@12.3.7': + resolution: {integrity: sha512-LYETs3CCjrLn1ZU0kYv44TywiIl5IPFHZGeXhAh2TtgOk4mo3kvXxECDil9CdO3bmDra6qyiG61KHvzr8IrHdg==} + + '@react-native-community/cli-tools@12.3.7': + resolution: {integrity: sha512-7NL/1/i+wzd4fBr/FSr3ypR05tiU/Kv9l/M1sL1c6jfcDtWXAL90R161gQkQFK7shIQ8Idp0dQX1rq49tSyfQw==} + + '@react-native-community/cli-types@12.3.7': + resolution: {integrity: sha512-NFtUMyIrNfi3A5C1cjVKDVvYHvvOF7MnOMwdD8jm2NQKewQJrehKBh1eMuykKdqhWyZmuemD4KKhL8f4FxgG0w==} + + '@react-native-community/cli@12.3.7': + resolution: {integrity: sha512-7+mOhk+3+X3BjSJZZvYrDJynA00gPYTlvT28ZjiLlbuVGfqfNiBKaxuF7rty+gjjpch4iKGvLhIhSN5cuOsdHQ==} + engines: {node: '>=18'} + hasBin: true + + '@react-native/assets-registry@0.73.1': + resolution: {integrity: sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.73.4': + resolution: {integrity: sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==} + engines: {node: '>=18'} + + '@react-native/babel-preset@0.73.21': + resolution: {integrity: sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/codegen@0.73.3': + resolution: {integrity: sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/community-cli-plugin@0.73.18': + resolution: {integrity: sha512-RN8piDh/eF+QT6YYmrj3Zd9uiaDsRY/kMT0FYR42j8/M/boE4hs4Xn0u91XzT8CAkU9q/ilyo3wJsXIJo2teww==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.73.3': + resolution: {integrity: sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.73.8': + resolution: {integrity: sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.73.5': + resolution: {integrity: sha512-Orrn8J/kqzEuXudl96XcZk84ZcdIpn1ojjwGSuaSQSXNcCYbOXyt0RwtW5kjCqjgSzGnOMsJNZc5FDXHVq/WzA==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.73.1': + resolution: {integrity: sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.73.15': + resolution: {integrity: sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/normalize-colors@0.73.2': + resolution: {integrity: sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==} + + '@react-native/virtualized-lists@0.73.4': + resolution: {integrity: sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==} + engines: {node: '>=18'} + peerDependencies: + react-native: '*' + + '@release-it-plugins/workspaces@4.2.1': + resolution: {integrity: sha512-lZEARr5tqsFskTPHBLjmYxqfC/DJkWRc0Q/wjOODHW8rtYPhL1w2zv7fwvgSjhFmMp0OdsJOXzkcSkUDvc9NnA==} + engines: {node: '>= 16'} + peerDependencies: + release-it: ^14.0.0 || ^15.2.0 || ^16.0.0 || ^17.0.0 + + '@rolldown/pluginutils@1.0.0-beta.27': + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} + + '@rolldown/pluginutils@1.0.0-beta.53': + resolution: {integrity: sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==} + + '@rollup/plugin-babel@6.1.0': + resolution: {integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + rollup: + optional: true + + '@rollup/plugin-node-resolve@15.3.1': + resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-node-resolve@16.0.3': + resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-terser@0.1.0': + resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.x || ^3.x + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + + '@rollup/pluginutils@5.3.0': + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.53.3': + resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.53.3': + resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.53.3': + resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.53.3': + resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.53.3': + resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.53.3': + resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.53.3': + resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.53.3': + resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.53.3': + resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.53.3': + resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.53.3': + resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.53.3': + resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.53.3': + resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openharmony-arm64@4.53.3': + resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.53.3': + resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.53.3': + resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.53.3': + resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.53.3': + resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} + cpu: [x64] + os: [win32] + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sigstore/bundle@1.1.0': + resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/protobuf-specs@0.2.1': + resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/sign@1.0.0': + resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/tuf@1.0.3': + resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@5.6.0': + resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} + engines: {node: '>=14.16'} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sindresorhus/slugify@1.1.2': + resolution: {integrity: sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==} + engines: {node: '>=10'} + + '@sindresorhus/transliterate@0.1.2': + resolution: {integrity: sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==} + engines: {node: '>=10'} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@solidjs/testing-library@0.8.10': + resolution: {integrity: sha512-qdeuIerwyq7oQTIrrKvV0aL9aFeuwTd86VYD3afdq5HYEwoox1OBTJy4y8A3TFZr8oAR0nujYgCzY/8wgHGfeQ==} + engines: {node: '>= 14'} + peerDependencies: + '@solidjs/router': '>=0.9.0' + solid-js: '>=1.0.0' + peerDependenciesMeta: + '@solidjs/router': + optional: true + + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@sveltejs/acorn-typescript@1.0.8': + resolution: {integrity: sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==} + peerDependencies: + acorn: ^8.9.0 + + '@sveltejs/package@2.5.7': + resolution: {integrity: sha512-qqD9xa9H7TDiGFrF6rz7AirOR8k15qDK/9i4MIE8te4vWsv5GEogPks61rrZcLy+yWph+aI6pIj2MdoK3YI8AQ==} + engines: {node: ^16.14 || >=18} + hasBin: true + peerDependencies: + svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 + + '@sveltejs/vite-plugin-svelte-inspector@2.1.0': + resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^3.0.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + + '@sveltejs/vite-plugin-svelte-inspector@4.0.1': + resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^5.0.0 + svelte: ^5.0.0 + vite: ^6.0.0 + + '@sveltejs/vite-plugin-svelte@3.1.2': + resolution: {integrity: sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + + '@sveltejs/vite-plugin-svelte@5.1.1': + resolution: {integrity: sha512-Y1Cs7hhTc+a5E9Va/xwKlAJoariQyHY+5zBgCZg4PFWNYQ1nMN9sjK1zhw1gK69DuqVP++sht/1GZg1aRwmAXQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22} + peerDependencies: + svelte: ^5.0.0 + vite: ^6.0.0 + + '@szmarczak/http-timer@5.0.1': + resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} + engines: {node: '>=14.16'} + + '@tabler/icons@3.36.0': + resolution: {integrity: sha512-z9OfTEG6QbaQWM9KBOxxUdpgvMUn0atageXyiaSc2gmYm51ORO8Ua7eUcjlks+Dc0YMK4rrodAFdK9SfjJ4ZcA==} + + '@testing-library/dom@10.4.1': + resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} + engines: {node: '>=18'} + + '@testing-library/dom@8.20.1': + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + + '@testing-library/preact@3.2.4': + resolution: {integrity: sha512-F+kJ243LP6VmEK1M809unzTE/ijg+bsMNuiRN0JEDIJBELKKDNhdgC/WrUSZ7klwJvtlO3wQZ9ix+jhObG07Fg==} + engines: {node: '>= 12'} + peerDependencies: + preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' + + '@testing-library/react@14.3.1': + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@testing-library/svelte@4.2.3': + resolution: {integrity: sha512-8vM2+JSPc6wZWkO9ICPmHvzacjy8jBw+iVjmNs+0VsPV3AO3v4P8qCLWTaQ9nYW/e+IR1BCy3MM3Uqg21dlBkw==} + engines: {node: '>= 10'} + peerDependencies: + svelte: ^3 || ^4 || ^5 + + '@testing-library/svelte@5.2.9': + resolution: {integrity: sha512-p0Lg/vL1iEsEasXKSipvW9nBCtItQGhYvxL8OZ4w7/IDdC+LGoSJw4mMS5bndVFON/gWryitEhMr29AlO4FvBg==} + engines: {node: '>= 10'} + peerDependencies: + svelte: ^3 || ^4 || ^5 || ^5.0.0-next.0 + vite: '*' + vitest: '*' + peerDependenciesMeta: + vite: + optional: true + vitest: + optional: true + + '@testing-library/vue@8.1.0': + resolution: {integrity: sha512-ls4RiHO1ta4mxqqajWRh8158uFObVrrtAPoxk7cIp4HrnQUj/ScKzqz53HxYpG3X6Zb7H2v+0eTGLSoy8HQ2nA==} + engines: {node: '>=14'} + peerDependencies: + '@vue/compiler-sfc': '>= 3' + vue: '>= 3' + peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true + + '@thednp/dommatrix@2.0.12': + resolution: {integrity: sha512-eOshhlSShBXLfrMQqqhA450TppJXhKriaQdN43mmniOCMn9sD60QKF1Axsj7bKl339WH058LuGFS6H84njYH5w==} + engines: {node: '>=20', pnpm: '>=8.6.0'} + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/svelte@5.0.6': + resolution: {integrity: sha512-yGxYL0I9eETH1/DR9qVJey4DAsCdeau4a9wYPKuXfEhm8lFO8wg+LLYJjIpAm6Fw7HSlhepPhYPDop75485yWQ==} + + '@tufjs/canonical-json@1.0.0': + resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@tufjs/models@1.0.4': + resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.28.0': + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} + + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/minimatch@3.0.5': + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + + '@types/node-fetch@2.6.13': + resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==} + + '@types/node@16.9.1': + resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==} + + '@types/node@18.19.130': + resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==} + + '@types/node@25.0.2': + resolution: {integrity: sha512-gWEkeiyYE4vqjON/+Obqcoeffmk0NF15WSBwSs7zwVA2bAbTaE0SJ7P0WNGoJn8uE7fiaV5a7dKYIJriEqOrmA==} + + '@types/prop-types@15.7.15': + resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} + + '@types/pug@2.0.10': + resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} + + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} + peerDependencies: + '@types/react': ^18.0.0 + + '@types/react@18.2.60': + resolution: {integrity: sha512-dfiPj9+k20jJrLGOu9Nf6eqxm2EyJRrq2NvwOFsfbb7sFExZ9WELPs67UImHj3Ayxg8ruTtKtNnbjaF8olPq0A==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/sax@1.2.7': + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + + '@types/scheduler@0.26.0': + resolution: {integrity: sha512-WFHp9YUJQ6CKshqoC37iOlHnQSmxNc795UhB26CyBBttrN9svdIrUjl/NjnNmfcwtncN0h/0PPAFWv9ovP8mLA==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@15.0.20': + resolution: {integrity: sha512-KIkX+/GgfFitlASYCGoSF+T4XRXhOubJLhkLVtSfsRTe9jWMmuM2g28zQ41BtPTG7TRBb2xHW+LCNVE9QR/vsg==} + + '@types/yargs@17.0.35': + resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} + + '@vitejs/plugin-react@4.7.0': + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + + '@vitejs/plugin-react@5.1.2': + resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + + '@vitejs/plugin-vue@6.0.3': + resolution: {integrity: sha512-TlGPkLFLVOY3T7fZrwdvKpjprR3s4fxRln0ORDo1VQ7HHyxJwTlrjKU3kpVWTlaAjIEuCTokmjkZnr8Tpc925w==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + vue: ^3.2.25 + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/expect@4.0.16': + resolution: {integrity: sha512-eshqULT2It7McaJkQGLkPjPjNph+uevROGuIMJdG3V+0BSR2w9u6J9Lwu+E8cK5TETlfou8GRijhafIMhXsimA==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/mocker@4.0.16': + resolution: {integrity: sha512-yb6k4AZxJTB+q9ycAvsoxGn+j/po0UaPgajllBgt1PzoMAAmJGYFdDk0uCcRcxb3BrME34I6u8gHZTQlkqSZpg==} + peerDependencies: + msw: ^2.4.9 + vite: ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/pretty-format@4.0.16': + resolution: {integrity: sha512-eNCYNsSty9xJKi/UdVD8Ou16alu7AYiS2fCPRs0b1OdhJiV89buAXQLpTbe+X8V9L6qrs9CqyvU7OaAopJYPsA==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/runner@4.0.16': + resolution: {integrity: sha512-VWEDm5Wv9xEo80ctjORcTQRJ539EGPB3Pb9ApvVRAY1U/WkHXmmYISqU5E79uCwcW7xYUV38gwZD+RV755fu3Q==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + + '@vitest/snapshot@4.0.16': + resolution: {integrity: sha512-sf6NcrYhYBsSYefxnry+DR8n3UV4xWZwWxYbCJUt2YdvtqzSPR7VfGrY0zsv090DAbjFZsi7ZaMi1KnSRyK1XA==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/spy@4.0.16': + resolution: {integrity: sha512-4jIOWjKP0ZUaEmJm00E0cOBLU+5WE0BpeNr3XN6TEF05ltro6NJqHWxXD0kA8/Zc8Nh23AT8WQxwNG+WeROupw==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + + '@vitest/utils@4.0.16': + resolution: {integrity: sha512-h8z9yYhV3e1LEfaQ3zdypIrnAg/9hguReGZoS7Gl0aBG5xgA410zBqECqmaF/+RkTggRsfnzc1XaAHA6bmUufA==} + + '@volar/language-core@2.4.26': + resolution: {integrity: sha512-hH0SMitMxnB43OZpyF1IFPS9bgb2I3bpCh76m2WEK7BE0A0EzpYsRp0CCH2xNKshr7kacU5TQBLYn4zj7CG60A==} + + '@volar/source-map@2.4.26': + resolution: {integrity: sha512-JJw0Tt/kSFsIRmgTQF4JSt81AUSI1aEye5Zl65EeZ8H35JHnTvFGmpDOBn5iOxd48fyGE+ZvZBp5FcgAy/1Qhw==} + + '@volar/typescript@2.4.26': + resolution: {integrity: sha512-N87ecLD48Sp6zV9zID/5yuS1+5foj0DfuYGdQ6KHj/IbKvyKv1zNX6VCmnKYwtmHadEO6mFc2EKISiu3RDPAvA==} + + '@vue/compiler-core@3.5.25': + resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==} + + '@vue/compiler-dom@3.5.25': + resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==} + + '@vue/compiler-sfc@3.5.25': + resolution: {integrity: sha512-PUgKp2rn8fFsI++lF2sO7gwO2d9Yj57Utr5yEsDf3GNaQcowCLKL7sf+LvVFvtJDXUp/03+dC6f2+LCv5aK1ag==} + + '@vue/compiler-ssr@3.5.25': + resolution: {integrity: sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==} + + '@vue/language-core@3.1.8': + resolution: {integrity: sha512-PfwAW7BLopqaJbneChNL6cUOTL3GL+0l8paYP5shhgY5toBNidWnMXWM+qDwL7MC9+zDtzCF2enT8r6VPu64iw==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/reactivity@3.5.25': + resolution: {integrity: sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==} + + '@vue/runtime-core@3.5.25': + resolution: {integrity: sha512-Z751v203YWwYzy460bzsYQISDfPjHTl+6Zzwo/a3CsAf+0ccEjQ8c+0CdX1WsumRTHeywvyUFtW6KvNukT/smA==} + + '@vue/runtime-dom@3.5.25': + resolution: {integrity: sha512-a4WrkYFbb19i9pjkz38zJBg8wa/rboNERq3+hRRb0dHiJh13c+6kAbgqCPfMaJ2gg4weWD3APZswASOfmKwamA==} + + '@vue/server-renderer@3.5.25': + resolution: {integrity: sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==} + peerDependencies: + vue: 3.5.25 + + '@vue/shared@3.5.25': + resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==} + + '@vue/test-utils@2.4.4': + resolution: {integrity: sha512-8jkRxz8pNhClAf4Co4ZrpAoFISdvT3nuSkUlY6Ys6rmTpw3DMWG/X3mw3gQ7QJzgCZO9f+zuE2kW57fi09MW7Q==} + peerDependencies: + '@vue/server-renderer': ^3.0.1 + vue: ^3.0.1 + peerDependenciesMeta: + '@vue/server-renderer': + optional: true + + '@xmldom/xmldom@0.7.13': + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + deprecated: this version is no longer supported, please update to at least 0.8.* + + a-sync-waterfall@1.0.1: + resolution: {integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==} + + abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + adm-zip@0.5.16: + resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==} + engines: {node: '>=12.0'} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.4: + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} + engines: {node: '>= 14'} + + agentkeepalive@4.6.0: + resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} + engines: {node: '>= 8.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + alien-signals@3.1.1: + resolution: {integrity: sha512-ogkIWbVrLwKtHY6oOAXaYkAxP+cTH7V5FZ5+Tm4NZFd8VDZ6uNMDrfzqctTZ42eTMCSR3ne3otpcxmqSnFfPYA==} + + anser@1.4.10: + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-fragments@0.2.1: + resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + + ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + any-base@1.1.0: + resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==} + + any-promise@0.1.0: + resolution: {integrity: sha512-lqzY9o+BbeGHRCOyxQkt/Tgvz0IZhTmQiA+LxQW8wSNpcTbj8K+0cZiSEvbpNZZP9/11Gy7dnLO3GNWUXO4d1g==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + appdirsjs@1.2.7: + resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} + + aproba@2.1.0: + resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==} + + are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-differ@1.0.0: + resolution: {integrity: sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==} + engines: {node: '>=0.10.0'} + + array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + + array-union@1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array-uniq@1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} + + array.prototype.map@1.0.8: + resolution: {integrity: sha512-YocPM7bYYu2hXGxWpb5vwZ8cMeudNHYtYBcUDY4Z1GWa53qcnQMWSl25jeBHNzitjl9HW2AWW4ro/S/nftUaOQ==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + assert-never@1.4.0: + resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + + ast-types@0.15.2: + resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + engines: {node: '>=4'} + + astral-regex@1.0.0: + resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} + engines: {node: '>=4'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + + async-retry@1.3.3: + resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-jsx-dom-expressions@0.40.3: + resolution: {integrity: sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==} + peerDependencies: + '@babel/core': ^7.20.12 + + babel-plugin-polyfill-corejs2@0.4.14: + resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.13.0: + resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.5: + resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-transform-flow-enums@0.0.2: + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + + babel-plugin-transform-hook-names@1.0.2: + resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} + peerDependencies: + '@babel/core': ^7.12.10 + + babel-preset-solid@1.9.10: + resolution: {integrity: sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==} + peerDependencies: + '@babel/core': ^7.0.0 + solid-js: ^1.9.10 + peerDependenciesMeta: + solid-js: + optional: true + + babel-walk@3.0.0-canary-5: + resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} + engines: {node: '>= 10.0.0'} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + baseline-browser-mapping@2.9.7: + resolution: {integrity: sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==} + hasBin: true + + basic-ftp@5.0.5: + resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} + engines: {node: '>=10.0.0'} + + bcp-47-match@1.0.3: + resolution: {integrity: sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==} + + bcp-47-normalize@1.1.1: + resolution: {integrity: sha512-jWZ1Jdu3cs0EZdfCkS0UE9Gg01PtxnChjEBySeB+Zo6nkqtFfnvtoQQgP1qU1Oo4qgJgxhTI6Sf9y/pZIhPs0A==} + + bcp-47@1.0.8: + resolution: {integrity: sha512-Y9y1QNBBtYtv7hcmoX0tR+tUNSFZGZ6OL6vKPObq8BbOhkCoyayF6ogfLTgAli/KuAEbsYHYUNq2AQuY6IuLag==} + + before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + bmp-js@0.1.0: + resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + + boxen@7.1.1: + resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} + engines: {node: '>=14.16'} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + brotli-size@4.0.0: + resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==} + engines: {node: '>= 10.16.0'} + + browserslist@4.28.1: + resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-crc32@1.0.0: + resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} + engines: {node: '>=8.0.0'} + + buffer-equal@0.0.1: + resolution: {integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==} + engines: {node: '>=0.4.0'} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + cacache@17.1.4: + resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + cacheable-lookup@7.0.0: + resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} + engines: {node: '>=14.16'} + + cacheable-request@10.2.14: + resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} + engines: {node: '>=14.16'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + camelcase@7.0.1: + resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} + engines: {node: '>=14.16'} + + caniuse-lite@1.0.30001760: + resolution: {integrity: sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==} + + centra@2.7.0: + resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==} + + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} + engines: {node: '>=18'} + + chai@6.2.1: + resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==} + engines: {node: '>=18'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-parser@2.2.0: + resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + + cheerio-select@2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + + cheerio@1.1.2: + resolution: {integrity: sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==} + engines: {node: '>=20.18.1'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chokidar@5.0.0: + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + chrome-launcher@0.15.2: + resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + engines: {node: '>=12.13.0'} + hasBin: true + + chromium-edge-launcher@1.0.0: + resolution: {integrity: sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-width@4.1.0: + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + code-red@1.0.4: + resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + colors@1.4.0: + resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} + engines: {node: '>=0.1.90'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + command-exists@1.2.9: + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + + commenting@1.1.0: + resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression@1.8.1: + resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + configstore@6.0.0: + resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} + engines: {node: '>=12'} + + connect@3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + constantinople@4.0.1: + resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + core-js-compat@3.47.0: + resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + + crypto-random-string@4.0.0: + resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} + engines: {node: '>=12'} + + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + cssstyle@4.6.0: + resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} + engines: {node: '>=18'} + + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + + csv-parser@3.2.0: + resolution: {integrity: sha512-fgKbp+AJbn1h2dcAHKIdKNSSjfp43BZZykXsCjzALjKy80VXQNHPFJ6T9Afwdzoj24aMkq8GwDS7KGcDPpejrA==} + engines: {node: '>= 10'} + hasBin: true + + cubic2quad@1.2.1: + resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==} + + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + + data-uri-to-buffer@6.0.2: + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} + + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dayjs@1.11.19: + resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + dedent-js@1.0.1: + resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-rename-keys@0.2.1: + resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} + engines: {node: '>=0.10.0'} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-browser-id@5.0.1: + resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} + engines: {node: '>=18'} + + default-browser@5.4.0: + resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==} + engines: {node: '>=18'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + denodeify@1.2.1: + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dependency-graph@0.11.0: + resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} + engines: {node: '>= 0.6.0'} + + deprecated-react-native-prop-types@5.0.0: + resolution: {integrity: sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==} + engines: {node: '>=18'} + + deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + dev-ip@1.0.1: + resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==} + engines: {node: '>= 0.8.0'} + hasBin: true + + devalue@5.6.1: + resolution: {integrity: sha512-jDwizj+IlEZBunHcOuuFVBnIMPAEHvTsJj0BcIp94xYguLRVBcXO853px/MyIJvbVzWdsGvrRweIUWJw8hBP7A==} + + diffable-html@4.1.0: + resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==} + + doctypes@1.1.0: + resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + + dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@2.4.2: + resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + + dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} + + dotenv@16.6.1: + resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} + engines: {node: '>=12'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer@0.1.1: + resolution: {integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.5.267: + resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==} + + eleventy-sass@2.2.6: + resolution: {integrity: sha512-7OOFZ+A6BjWnpRRxP0UWvTdMUReVQUbusV1YhGQCAaEnWtQYTWzUq1EvyvfJfaWsPx7a26QHYGX8vYUNTACG/w==} + peerDependencies: + '@11ty/eleventy': ^1.0.0 || ^2.0.0-canary.12 || ^2.0.0-beta.1 + eleventy-plugin-clean: ^1.1.0 + eleventy-plugin-rev: ^2.0.0 + peerDependenciesMeta: + eleventy-plugin-clean: + optional: true + eleventy-plugin-rev: + optional: true + + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + encoding-sniffer@0.2.1: + resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + ensure-posix-path@1.1.1: + resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==} + + entities@1.1.2: + resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envinfo@7.21.0: + resolution: {integrity: sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow==} + engines: {node: '>=4'} + hasBin: true + + err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.4: + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + errorhandler@1.5.1: + resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} + engines: {node: '>= 0.8'} + + es-abstract@1.24.1: + resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==} + engines: {node: '>= 0.4'} + + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es6-promise@3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + + esbuild-android-64@0.15.18: + resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + esbuild-android-arm64@0.15.18: + resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + esbuild-darwin-64@0.15.18: + resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + esbuild-darwin-arm64@0.15.18: + resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + esbuild-freebsd-64@0.15.18: + resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + esbuild-freebsd-arm64@0.15.18: + resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + esbuild-linux-32@0.15.18: + resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + esbuild-linux-64@0.15.18: + resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + esbuild-linux-arm64@0.15.18: + resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + esbuild-linux-arm@0.15.18: + resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + esbuild-linux-mips64le@0.15.18: + resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + esbuild-linux-ppc64le@0.15.18: + resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + esbuild-linux-riscv64@0.15.18: + resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + esbuild-linux-s390x@0.15.18: + resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + esbuild-netbsd-64@0.15.18: + resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + esbuild-openbsd-64@0.15.18: + resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + esbuild-sunos-64@0.15.18: + resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + esbuild-windows-32@0.15.18: + resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + esbuild-windows-64@0.15.18: + resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + esbuild-windows-arm64@0.15.18: + resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + esbuild@0.15.18: + resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.20.2: + resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.27.2: + resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-goat@4.0.0: + resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} + engines: {node: '>=12'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + esm-env@1.2.2: + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esrap@2.2.1: + resolution: {integrity: sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + eventemitter3@2.0.3: + resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + exif-parser@0.1.12: + resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==} + + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + engines: {node: '>=12.0.0'} + + exponential-backoff@3.1.3: + resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-xml-parser@4.5.3: + resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==} + hasBin: true + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-type@9.0.0: + resolution: {integrity: sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==} + engines: {node: '>=6'} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + filesize@6.4.0: + resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==} + engines: {node: '>= 0.4.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + finalhandler@1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + + finalhandler@1.3.2: + resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flow-enums-runtime@0.0.6: + resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} + + flow-parser@0.206.0: + resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} + engines: {node: '>=0.4.0'} + + follow-redirects@1.15.11: + resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + form-data-encoder@1.7.2: + resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} + + form-data-encoder@2.1.4: + resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} + engines: {node: '>= 14.17'} + + form-data@4.0.5: + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} + + formdata-node@4.4.1: + resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} + engines: {node: '>= 12.20'} + + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-extra@11.3.2: + resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==} + engines: {node: '>=14.14'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + generator-function@2.0.1: + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.4.0: + resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.13.0: + resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==} + + get-uri@6.0.5: + resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} + engines: {node: '>= 14'} + + gifwrap@0.9.4: + resolution: {integrity: sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==} + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + git-url-parse@14.0.0: + resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob@10.3.16: + resolution: {integrity: sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==} + engines: {node: '>=16 || 14 >=14.18'} + hasBin: true + + glob@10.5.0: + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + hasBin: true + + glob@11.1.0: + resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} + engines: {node: 20 || >=22} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + + global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@14.0.1: + resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} + engines: {node: '>=18'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + got@12.6.1: + resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} + engines: {node: '>=14.16'} + + got@13.0.0: + resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} + engines: {node: '>=16'} + + graceful-fs@4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + + gzip-size@5.1.1: + resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==} + engines: {node: '>=6'} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + hamljs@0.6.2: + resolution: {integrity: sha512-/chXRp4WpL47I+HX1vCCdSbEXAljEG2FBMmgO7Am0bYsqgnEjreeWzUdX1onXqwZtcfgxbCg5WtEYYvuZ5muBg==} + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hermes-estree@0.15.0: + resolution: {integrity: sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==} + + hermes-estree@0.23.1: + resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} + + hermes-parser@0.15.0: + resolution: {integrity: sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==} + + hermes-parser@0.23.1: + resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} + + hermes-profile-transformer@0.0.6: + resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} + engines: {node: '>=8'} + + hosted-git-info@6.1.3: + resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + + html-entities@2.3.3: + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} + + html-minifier@4.0.0: + resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} + engines: {node: '>=6'} + hasBin: true + + htmlparser2@10.0.0: + resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} + + htmlparser2@3.10.1: + resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + + htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + http-equiv-refresh@1.0.0: + resolution: {integrity: sha512-TScO04soylRN9i/QdOdgZyhydXg9z6XdaGzEyOgDKycePeDeTT4KvigjBcI+tgfTlieLWauGORMq5F1eIDa+1w==} + engines: {node: '>= 0.10'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + http2-wrapper@2.2.1: + resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore-walk@6.0.5: + resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + image-q@4.0.0: + resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==} + + image-size@1.2.1: + resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==} + engines: {node: '>=16.x'} + hasBin: true + + immutable@5.1.4: + resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} + + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + import-lazy@4.0.0: + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + + inquirer@9.2.14: + resolution: {integrity: sha512-4ByIMt677Iz5AvjyKrDpzaepIyMewNvDcvwpVVRZNmy9dLakVoVgdCHZXbK1SlVJra1db0JZ6XkJyHsanpdrdQ==} + engines: {node: '>=18'} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ip-address@10.1.0: + resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==} + engines: {node: '>= 12'} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.4: + resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-expression@4.0.0: + resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + + is-generator-function@1.1.2: + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-in-ci@0.1.0: + resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==} + engines: {node: '>=18'} + hasBin: true + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + + is-json@2.0.1: + resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} + + is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-npm@6.1.0: + resolution: {integrity: sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-reference@3.0.3: + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.1: + resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-unicode-supported@1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} + + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@4.1.16: + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} + + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + iso-639-1@2.1.15: + resolution: {integrity: sha512-7c7mBznZu2ktfvyT582E2msM+Udc1EjOyhVRE/0ZsjD9LBtWSm23h3PtiRh2a35XoUsTQQjJXaJzuLjXsOdFDg==} + engines: {node: '>=6.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + issue-parser@6.0.0: + resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} + engines: {node: '>=10.13'} + + iterate-iterator@1.0.2: + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + + iterate-value@1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jackspeak@4.1.1: + resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} + engines: {node: 20 || >=22} + + jake@10.9.4: + resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==} + engines: {node: '>=10'} + hasBin: true + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-serializer-html@7.1.0: + resolution: {integrity: sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jimp@0.14.0: + resolution: {integrity: sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA==} + + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + + jpeg-js@0.4.4: + resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==} + + js-beautify@1.15.4: + resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==} + engines: {node: '>=14'} + hasBin: true + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-stringify@1.0.2: + resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + + js-yaml@3.14.2: + resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} + hasBin: true + + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} + hasBin: true + + jsc-android@250231.0.0: + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} + + jsc-safe-url@0.2.4: + resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + + jscodeshift@0.14.0: + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jsdom@24.1.3: + resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@25.0.1: + resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.2.0: + resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jstransformer@1.0.0: + resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} + + junk@1.0.3: + resolution: {integrity: sha512-3KF80UaaSSxo8jVnRYtMKNGFOoVPBdkkVPsw+Ad0y4oxKXPduS6G6iHkrf69yJVff/VAaYXkV42rtZ7daJxU3w==} + engines: {node: '>=0.10.0'} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + latest-version@7.0.0: + resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} + engines: {node: '>=14.16'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + lighthouse-logger@1.4.2: + resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linkify-it@4.0.1: + resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} + + liquidjs@10.24.0: + resolution: {integrity: sha512-TAUNAdgwaAXjjcUFuYVJm9kOVH7zc0mTKxsG9t9Lu4qdWjB2BEblyVIYpjWcmJLMGgiYqnGNJjpNMHx0gp/46A==} + engines: {node: '>=16'} + hasBin: true + + list-to-array@1.1.0: + resolution: {integrity: sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==} + + load-bmfont@1.4.2: + resolution: {integrity: sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==} + + locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash._reinterpolate@3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + + lodash.capitalize@4.2.1: + resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.deburr@4.1.0: + resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==} + + lodash.escaperegexp@4.1.2: + resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.isstring@4.0.1: + resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + + lodash.template@4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead. + + lodash.templatesettings@4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + + lodash.throttle@4.1.1: + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + + lodash.uniqby@4.7.0: + resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-symbols@6.0.0: + resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + engines: {node: '>=18'} + + logkitty@0.7.1: + resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} + hasBin: true + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} + + lower-case@1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + + lowercase-keys@3.0.0: + resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.2.4: + resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==} + engines: {node: 20 || >=22} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + luxon@3.7.2: + resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==} + engines: {node: '>=12'} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + macos-release@3.4.0: + resolution: {integrity: sha512-wpGPwyg/xrSp4H4Db4xYSeAr6+cFQGHfspHzDUdYxswDnUW0L5Ov63UuJiSr8NMSpyaChO4u1n0MXUvVPtrN6A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + make-fetch-happen@11.1.1: + resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + markdown-it@13.0.2: + resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==} + hasBin: true + + marky@1.3.0: + resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} + + matcher-collection@2.0.1: + resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} + engines: {node: 6.* || 8.* || >= 10.*} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + maximatch@0.1.0: + resolution: {integrity: sha512-9ORVtDUFk4u/NFfo0vG/ND/z7UQCVZBL539YW0+U1I7H1BkZwizcPx5foFv7LCPcBnm2U6RjFnQOsIvN4/Vm2A==} + engines: {node: '>=0.10.0'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + merge-anything@5.1.7: + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} + engines: {node: '>=12.13'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + metro-babel-transformer@0.80.12: + resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==} + engines: {node: '>=18'} + + metro-cache-key@0.80.12: + resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==} + engines: {node: '>=18'} + + metro-cache@0.80.12: + resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==} + engines: {node: '>=18'} + + metro-config@0.80.12: + resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==} + engines: {node: '>=18'} + + metro-core@0.80.12: + resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==} + engines: {node: '>=18'} + + metro-file-map@0.80.12: + resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==} + engines: {node: '>=18'} + + metro-minify-terser@0.80.12: + resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==} + engines: {node: '>=18'} + + metro-resolver@0.80.12: + resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==} + engines: {node: '>=18'} + + metro-runtime@0.80.12: + resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==} + engines: {node: '>=18'} + + metro-source-map@0.80.12: + resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==} + engines: {node: '>=18'} + + metro-symbolicate@0.80.12: + resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==} + engines: {node: '>=18'} + hasBin: true + + metro-transform-plugins@0.80.12: + resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==} + engines: {node: '>=18'} + + metro-transform-worker@0.80.12: + resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==} + engines: {node: '>=18'} + + metro@0.80.12: + resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==} + engines: {node: '>=18'} + hasBin: true + + microbuffer@1.0.0: + resolution: {integrity: sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + mimic-response@4.0.0: + resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + min-document@2.19.2: + resolution: {integrity: sha512-8S5I8db/uZN8r9HSLFVWPdJCvYOejMcEC82VIzNUc6Zkklf/d1gg2psfE79/vyhWOj4+J8MtwmoOz3TmvaGu5A==} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@10.1.1: + resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} + engines: {node: 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + + minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + minipass-fetch@3.0.5: + resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + + minipass-json-stream@1.0.2: + resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + + moo@0.5.2: + resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} + + morphdom@2.7.7: + resolution: {integrity: sha512-04GmsiBcalrSCNmzfo+UjU8tt3PhZJKzcOy+r1FlGA7/zri8wre3I1WkYN9PT3sIeIKfW9bpyElA+VzOg2E24g==} + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + + mustache@4.2.0: + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} + hasBin: true + + mute-stream@1.0.0: + resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + negotiator@0.6.4: + resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + + new-github-release-url@2.0.0: + resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + no-case@2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + + nocache@3.0.4: + resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} + engines: {node: '>=12.0.0'} + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + deprecated: Use your platform's native DOMException instead + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true + + node-html-parser@6.1.13: + resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + + node-stream-zip@1.15.0: + resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} + engines: {node: '>=0.12.0'} + + nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@5.0.0: + resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-url@8.1.0: + resolution: {integrity: sha512-X06Mfd/5aKsRHc0O0J5CUedwnPmnDtLF2+nq+KN9KSDlJHkPuh0JUviWjEWMe0SW/9TDdSLVPuk7L5gGTIA1/w==} + engines: {node: '>=14.16'} + + npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-install-checks@6.3.0: + resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-normalize-package-bin@3.0.1: + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-package-arg@10.1.0: + resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-packlist@7.0.4: + resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-pick-manifest@8.0.2: + resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-registry-fetch@14.0.5: + resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nullthrows@1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + + nunjucks@3.2.4: + resolution: {integrity: sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==} + engines: {node: '>= 6.9.0'} + hasBin: true + peerDependencies: + chokidar: ^3.3.0 + peerDependenciesMeta: + chokidar: + optional: true + + nwsapi@2.2.23: + resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==} + + ob1@0.80.12: + resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==} + engines: {node: '>=18'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} + + omggif@1.0.10: + resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.1.0: + resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open@10.0.3: + resolution: {integrity: sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==} + engines: {node: '>=18'} + + open@6.4.0: + resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} + engines: {node: '>=8'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + openai@4.104.0: + resolution: {integrity: sha512-p99EFNsA/yX6UhVO93f5kJsDRLAg+CTA2RBqdHK4RtK8u5IJw32Hyb2dTGKbnnFmnuoBv5r7Z2CURI9sGZpSuA==} + hasBin: true + peerDependencies: + ws: ^8.18.0 + zod: ^3.23.8 + peerDependenciesMeta: + ws: + optional: true + zod: + optional: true + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + ora@8.0.1: + resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} + engines: {node: '>=18'} + + os-name@5.1.0: + resolution: {integrity: sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-cancelable@3.0.0: + resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} + engines: {node: '>=12.20'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + pac-proxy-agent@7.2.0: + resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + engines: {node: '>= 14'} + + pac-resolver@7.0.1: + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-json@8.1.1: + resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} + engines: {node: '>=14.16'} + + package-name-regex@2.0.6: + resolution: {integrity: sha512-gFL35q7kbE/zBaPA3UKhp2vSzcPYx2ecbYuwv1ucE9Il6IIgBDweBlH8D68UFGZic2MkllKa2KHCfC1IQBQUYA==} + engines: {node: '>=12'} + + pacote@15.2.0: + resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + + param-case@2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-bmfont-ascii@1.0.6: + resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==} + + parse-bmfont-binary@1.0.6: + resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==} + + parse-bmfont-xml@1.1.6: + resolution: {integrity: sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==} + + parse-headers@2.0.6: + resolution: {integrity: sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-path@7.1.0: + resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==} + + parse-srcset@1.0.2: + resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} + + parse-svg-path@0.1.2: + resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5-htmlparser2-tree-adapter@7.1.0: + resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} + + parse5-parser-stream@7.1.2: + resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-root-regex@0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} + + path-root@0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.1: + resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==} + engines: {node: 20 || >=22} + + path-to-regexp@6.3.0: + resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + + periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + + phin@2.9.3: + resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + phin@3.7.1: + resolution: {integrity: sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==} + engines: {node: '>= 8'} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + pixelmatch@4.0.2: + resolution: {integrity: sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==} + hasBin: true + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + please-upgrade-node@3.2.0: + resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} + + pngjs@3.4.0: + resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} + engines: {node: '>=4.0.0'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + posthtml-parser@0.11.0: + resolution: {integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==} + engines: {node: '>=12'} + + posthtml-render@3.0.0: + resolution: {integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==} + engines: {node: '>=12'} + + posthtml-urls@1.0.0: + resolution: {integrity: sha512-CMJ0L009sGQVUuYM/g6WJdscsq6ooAwhUuF6CDlYPMLxKp2rmCYVebEU+wZGxnQstGJhZPMvXsRhtqekILd5/w==} + engines: {node: '>= 4'} + + posthtml@0.16.7: + resolution: {integrity: sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw==} + engines: {node: '>=12.0.0'} + + potrace@2.1.8: + resolution: {integrity: sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g==} + + preact@10.28.0: + resolution: {integrity: sha512-rytDAoiXr3+t6OIP3WGlDd0ouCUG1iCWzkcY3++Nreuoi17y6T5i/zRhe6uYfoVcxq6YU+sBtJouuRDsq8vvqA==} + + prettier@3.7.4: + resolution: {integrity: sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==} + engines: {node: '>=14'} + hasBin: true + + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + promise-each@2.2.0: + resolution: {integrity: sha512-67roqt1k3QDA41DZ8xi0V+rF3GoaMiX7QilbXu0vXimut+9RcKBNZ/t60xCRgcsihmNUsEjh48xLfNqOrKblUg==} + + promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + + promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + + promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} + + promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + protocols@2.0.2: + resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==} + + proxy-agent@6.4.0: + resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==} + engines: {node: '>= 14'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + pug-attrs@3.0.0: + resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} + + pug-code-gen@3.0.3: + resolution: {integrity: sha512-cYQg0JW0w32Ux+XTeZnBEeuWrAY7/HNE6TWnhiHGnnRYlCgyAUPoyh9KzCMa9WhcJlJ1AtQqpEYHc+vbCzA+Aw==} + + pug-error@2.1.0: + resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==} + + pug-filters@4.0.0: + resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} + + pug-lexer@5.0.1: + resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} + + pug-linker@4.0.0: + resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} + + pug-load@3.0.0: + resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} + + pug-parser@6.0.0: + resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} + + pug-runtime@3.0.1: + resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} + + pug-strip-comments@2.0.0: + resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} + + pug-walk@2.0.0: + resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} + + pug@3.0.3: + resolution: {integrity: sha512-uBi6kmc9f3SZ3PXxqcHiUZLmIXgfgWooKWXcwSGwQd2Zi5Rb0bT14+8CJjJgI8AB+nndLaNgHGrcc6bPIB665g==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pupa@3.3.0: + resolution: {integrity: sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==} + engines: {node: '>=12.20'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + queue@6.0.2: + resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-devtools-core@4.28.5: + resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} + + react-dom@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-native-svg@15.15.1: + resolution: {integrity: sha512-ZUD1xwc3Hwo4cOmOLumjJVoc7lEf9oQFlHnLmgccLC19fNm6LVEdtB+Cnip6gEi0PG3wfvVzskViEtrySQP8Fw==} + peerDependencies: + react: '*' + react-native: '*' + + react-native@0.73.11: + resolution: {integrity: sha512-yvQIX+ZXOHMFnhmwZ1fBpRI/53k+iLN8DxVf24Fx4ABU63RGAYfyCZC0/3W+5OUVx4KSIZUv4Tv+/NGIieBOwg==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + react: 18.2.0 + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} + engines: {node: '>=0.10.0'} + + react-refresh@0.18.0: + resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==} + engines: {node: '>=0.10.0'} + + react-shallow-renderer@16.15.0: + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + + react-test-renderer@18.2.0: + resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} + peerDependencies: + react: ^18.2.0 + + react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + + read-package-json-fast@3.0.2: + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + read-package-json@6.0.4: + resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + readdirp@5.0.0: + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} + engines: {node: '>= 20.19.0'} + + readline@1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + + recast@0.21.5: + resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + engines: {node: '>= 4'} + + rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + + recursive-copy@2.0.14: + resolution: {integrity: sha512-K8WNY8f8naTpfbA+RaXmkaQuD1IeW9EgNEfyGxSqqTQukpVtoOKros9jUqbpEsSw59YOmpd8nCBgtqJZy5nvog==} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regenerate-unicode-properties@10.2.2: + resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + regexpu-core@6.4.0: + resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==} + engines: {node: '>=4'} + + registry-auth-token@5.1.0: + resolution: {integrity: sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==} + engines: {node: '>=14'} + + registry-url@6.0.1: + resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} + engines: {node: '>=12'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.13.0: + resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} + hasBin: true + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + release-it@17.1.1: + resolution: {integrity: sha512-b+4Tu2eb5f2wIdIe5E9hre0evbMQrXp/kRq0natHsHYJVqu1Bd4/h2a+swFi0faGmC3cJdB16uYR6LscG9SchQ==} + engines: {node: '>=18'} + hasBin: true + + rename-keys@1.2.0: + resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} + engines: {node: '>= 0.8.0'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-package-path@3.1.0: + resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} + engines: {node: 10.* || >= 12} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve@1.22.11: + resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + engines: {node: '>= 0.4'} + hasBin: true + + responselike@3.0.0: + resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} + engines: {node: '>=14.16'} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup-plugin-dts@6.3.0: + resolution: {integrity: sha512-d0UrqxYd8KyZ6i3M2Nx7WOMy708qsV/7fTHMHxCMCBOAe3V/U7OMPu5GkX8hC+cmkHhzGnfeYongl1IgiooddA==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 + + rollup-plugin-esbuild@6.2.1: + resolution: {integrity: sha512-jTNOMGoMRhs0JuueJrJqbW8tOwxumaWYq+V5i+PD+8ecSCVkuX27tGW7BXqDgoULQ55rO7IdNxPcnsWtshz3AA==} + engines: {node: '>=14.18.0'} + peerDependencies: + esbuild: '>=0.18.0' + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup-plugin-filesize@10.0.0: + resolution: {integrity: sha512-JAYYhzCcmGjmCzo3LEHSDE3RAPHKIeBdpqRhiyZSv5o/3wFhktUOzYAWg/uUKyEu5dEaVaql6UOmaqHx1qKrZA==} + engines: {node: '>=16.0.0'} + + rollup-plugin-license@3.6.0: + resolution: {integrity: sha512-1ieLxTCaigI5xokIfszVDRoy6c/Wmlot1fDEnea7Q/WXSR8AqOjYljHDLObAx7nFxHC2mbxT3QnTSPhaic2IYw==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup-plugin-peer-deps-external@2.2.4: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + + rollup-plugin-visualizer@5.14.0: + resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + rolldown: 1.x + rollup: 2.x || 3.x || 4.x + peerDependenciesMeta: + rolldown: + optional: true + rollup: + optional: true + + rollup-preset-solid@2.0.1: + resolution: {integrity: sha512-CPJn3SqADlIxhAW3jwZuAFRyZcz7HPeUAz4f+6BzulxHnK4v6tgoTbMvk8vEsfsvHwiTmX93KHIKdf79aTdVSA==} + + rollup@3.29.5: + resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + + rollup@4.53.3: + resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rrweb-cssom@0.7.1: + resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + + rrweb-cssom@0.8.0: + resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} + + run-applescript@7.1.0: + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} + engines: {node: '>=18'} + + run-async@3.0.0: + resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sander@0.5.1: + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + + sass@1.96.0: + resolution: {integrity: sha512-8u4xqqUeugGNCYwr9ARNtQKTOj4KmYiJAVKXf2CTIivTCR51j96htbMKWDru8H5SaQWpyVgTfOF8Ylyf5pun1Q==} + engines: {node: '>=14.0.0'} + hasBin: true + + sax@1.4.3: + resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + scheduler@0.24.0-canary-efb381bbf-20230505: + resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} + + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + + semver-compare@1.0.0: + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} + + semver-diff@4.0.0: + resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} + engines: {node: '>=12'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + + send@0.19.0: + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} + engines: {node: '>= 0.8.0'} + + serialize-error@2.1.0: + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} + + seroval-plugins@1.3.3: + resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==} + engines: {node: '>=10'} + peerDependencies: + seroval: ^1.0 + + seroval@1.3.2: + resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==} + engines: {node: '>=10'} + + serve-static@1.16.2: + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + sharp@0.33.5: + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} + + shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sigstore@1.9.0: + resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + simple-code-frame@1.3.0: + resolution: {integrity: sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==} + + simple-string-table@1.0.0: + resolution: {integrity: sha512-iflPccjsYtTN+Rqj35v/G+i9A04g2HgOPkPp/B5evznUD4VZ4egi/qcFwrUHgGZwJMZz+Aq5elow4Qqsodfflw==} + + simple-swizzle@0.2.4: + resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@1.0.0: + resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} + engines: {node: '>=0.10.0'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slice-ansi@2.1.0: + resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} + engines: {node: '>=6'} + + slugify@1.6.6: + resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} + engines: {node: '>=8.0.0'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} + + socks@2.8.7: + resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + solid-js@1.9.10: + resolution: {integrity: sha512-Coz956cos/EPDlhs6+jsdTxKuJDPT7B5SVIWgABwROyxjY7Xbr8wkzD68Et+NxnV7DLJ3nJdAC2r9InuV/4Jew==} + + solid-refresh@0.6.3: + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} + peerDependencies: + solid-js: ^1.3 + + sorcery@0.11.1: + resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==} + hasBin: true + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + + spdx-compare@1.0.0: + resolution: {integrity: sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-expression-validate@2.0.0: + resolution: {integrity: sha512-b3wydZLM+Tc6CFvaRDBOF9d76oGIHNCLYFeHbftFXUWjnfZWganmDmvtM5sm1cRwJc/VDBMLyGGrsLFd1vOxbg==} + + spdx-license-ids@3.0.22: + resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + + spdx-ranges@2.1.1: + resolution: {integrity: sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==} + + spdx-satisfies@5.0.1: + resolution: {integrity: sha512-Nwor6W6gzFp8XX4neaKQ7ChV4wmpSh2sSDemMFSzHxpTw460jxFYeOn+jq4ybnSSw/5sc3pjka9MQPouksQNpw==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + ssri@10.0.6: + resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} + + ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + stack-trace@1.0.0-pre2: + resolution: {integrity: sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==} + engines: {node: '>=16'} + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + stacktrace-parser@0.1.11: + resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==} + engines: {node: '>=6'} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + statuses@2.0.2: + resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} + engines: {node: '>= 0.8'} + + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} + + stdin-discarder@0.2.2: + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + engines: {node: '>=18'} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} + engines: {node: '>=12'} + + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + + strnum@1.1.2: + resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} + + sudo-prompt@9.2.1: + resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svelte-check@3.8.6: + resolution: {integrity: sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==} + hasBin: true + peerDependencies: + svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + + svelte-check@4.3.4: + resolution: {integrity: sha512-DVWvxhBrDsd+0hHWKfjP99lsSXASeOhHJYyuKOFYJcP7ThfSCKgjVarE8XfuMWpS5JV3AlDf+iK1YGGo2TACdw==} + engines: {node: '>= 18.0.0'} + hasBin: true + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + typescript: '>=5.0.0' + + svelte-hmr@0.16.0: + resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + svelte: ^3.19.0 || ^4.0.0 + + svelte-preprocess@5.1.4: + resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==} + engines: {node: '>= 16.0.0'} + peerDependencies: + '@babel/core': ^7.10.2 + coffeescript: ^2.5.1 + less: ^3.11.3 || ^4.0.0 + postcss: ^7 || ^8 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + pug: ^3.0.0 + sass: ^1.26.8 + stylus: ^0.55.0 + sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 + svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' + peerDependenciesMeta: + '@babel/core': + optional: true + coffeescript: + optional: true + less: + optional: true + postcss: + optional: true + postcss-load-config: + optional: true + pug: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + typescript: + optional: true + + svelte2tsx@0.7.45: + resolution: {integrity: sha512-cSci+mYGygYBHIZLHlm/jYlEc1acjAHqaQaDFHdEBpUueM9kSTnPpvPtSl5VkJOU1qSJ7h1K+6F/LIUYiqC8VA==} + peerDependencies: + svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 + typescript: ^4.9.4 || ^5.0.0 + + svelte@4.2.20: + resolution: {integrity: sha512-eeEgGc2DtiUil5ANdtd8vPwt9AgaMdnuUFnPft9F5oMvU/FHu5IHFic+p1dR/UOB7XU2mX2yHW+NcTch4DCh5Q==} + engines: {node: '>=16'} + + svelte@5.46.0: + resolution: {integrity: sha512-ZhLtvroYxUxr+HQJfMZEDRsGsmU46x12RvAv/zi9584f5KOX7bUrEbhPJ7cKFmUvZTJXi/CFZUYwDC6M1FigPw==} + engines: {node: '>=18'} + + svg-outline-stroke@1.3.1: + resolution: {integrity: sha512-nfSJw3wFJCB8lVupuhD4SZjExZS72W2CF4QDr9tHRxXlbmTUqWKU3uDMMf3EIgryC6Pl458G+Ct9jesM5NUBXQ==} + engines: {node: '>=8'} + + svg-path-commander@2.1.11: + resolution: {integrity: sha512-wmQ6QA3Od+HOcpIzLjPlbv59+x3yd3V5W6xitUOvAHmqZpP7wVrRM2CHqEm5viHUbZu6PjzFsjbTEFtIeUxaNA==} + engines: {node: '>=16', pnpm: '>=8.6.0'} + + svg-pathdata@7.2.0: + resolution: {integrity: sha512-qd+AxqMpfRrRQaWb2SrNFvn69cvl6piqY8TxhYl2Li1g4/LO5F9NJb5wI4vNwRryqgSgD43gYKLm/w3ag1bKvQ==} + engines: {node: '>=20.11.1'} + + svg2ttf@6.0.3: + resolution: {integrity: sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==} + hasBin: true + + svgicons2svgfont@15.0.1: + resolution: {integrity: sha512-rE3BoIipD6DxBejPswalKRZZYA+7sy4miHqiHgXB0zI1xJD3gSCVrXh2R6Sdh9E4XDTxYp7gDxGW2W8DIBif/g==} + engines: {node: '>=20.11.1'} + hasBin: true + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + svgpath@2.6.0: + resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==} + + svgson@5.3.1: + resolution: {integrity: sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA==} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + terser@5.44.1: + resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==} + engines: {node: '>=10'} + hasBin: true + + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + timm@1.7.1: + resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyrainbow@3.0.3: + resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} + engines: {node: '>=14.0.0'} + + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + token-stream@1.0.0: + resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@5.1.1: + resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} + engines: {node: '>=18'} + + transformation-matrix@3.1.0: + resolution: {integrity: sha512-oYubRWTi2tYFHAL2J8DLvPIqIYcYZ0fSOi2vmSy042Ho4jBW2ce6VP7QfD44t65WQz6bw5w1Pk22J7lcUpaTKA==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + ttf2woff@3.0.0: + resolution: {integrity: sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg==} + hasBin: true + + tuf-js@1.1.7: + resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + turbo-darwin-64@2.6.3: + resolution: {integrity: sha512-BlJJDc1CQ7SK5Y5qnl7AzpkvKSnpkfPmnA+HeU/sgny3oHZckPV2776ebO2M33CYDSor7+8HQwaodY++IINhYg==} + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@2.6.3: + resolution: {integrity: sha512-MwVt7rBKiOK7zdYerenfCRTypefw4kZCue35IJga9CH1+S50+KTiCkT6LBqo0hHeoH2iKuI0ldTF2a0aB72z3w==} + cpu: [arm64] + os: [darwin] + + turbo-linux-64@2.6.3: + resolution: {integrity: sha512-cqpcw+dXxbnPtNnzeeSyWprjmuFVpHJqKcs7Jym5oXlu/ZcovEASUIUZVN3OGEM6Y/OTyyw0z09tOHNt5yBAVg==} + cpu: [x64] + os: [linux] + + turbo-linux-arm64@2.6.3: + resolution: {integrity: sha512-MterpZQmjXyr4uM7zOgFSFL3oRdNKeflY7nsjxJb2TklsYqiu3Z9pQ4zRVFFH8n0mLGna7MbQMZuKoWqqHb45w==} + cpu: [arm64] + os: [linux] + + turbo-windows-64@2.6.3: + resolution: {integrity: sha512-biDU70v9dLwnBdLf+daoDlNJVvqOOP8YEjqNipBHzgclbQlXbsi6Gqqelp5er81Qo3BiRgmTNx79oaZQTPb07Q==} + cpu: [x64] + os: [win32] + + turbo-windows-arm64@2.6.3: + resolution: {integrity: sha512-dDHVKpSeukah3VsI/xMEKeTnV9V9cjlpFSUs4bmsUiLu3Yv2ENlgVEZv65wxbeE0bh0jjpmElDT+P1KaCxArQQ==} + cpu: [arm64] + os: [win32] + + turbo@2.6.3: + resolution: {integrity: sha512-bf6YKUv11l5Xfcmg76PyWoy/e2vbkkxFNBGJSnfdSXQC33ZiUfutYh6IXidc5MhsnrFkWfdNNLyaRk+kHMLlwA==} + hasBin: true + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.7.1: + resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + + uc.micro@1.0.6: + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + + undici@7.16.0: + resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} + engines: {node: '>=20.18.1'} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.2.1: + resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.2.0: + resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==} + engines: {node: '>=4'} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-filename@3.0.0: + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-slug@4.0.0: + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + unique-string@3.0.0: + resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} + engines: {node: '>=12'} + + universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unplugin-utils@0.2.5: + resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} + engines: {node: '>=18.12.0'} + + upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + + update-browserslist-db@1.2.2: + resolution: {integrity: sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-notifier@7.0.0: + resolution: {integrity: sha512-Hv25Bh+eAbOLlsjJreVPOs4vd51rrtCrmhyOJtbpAojro34jS4KQaEp4/EvlHJX7jSO42VvEFpkastVyXyIsdQ==} + engines: {node: '>=18'} + + upper-case@1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + + url-join@5.0.0: + resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + utif@2.0.1: + resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + validate-peer-dependencies@1.2.0: + resolution: {integrity: sha512-nd2HUpKc6RWblPZQ2GDuI65sxJ2n/UqZwSBVtj64xlWjMx0m7ZB2m9b2JS3v1f+n9VWH/dd1CMhkHfP6pIdckA==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + + vite-plugin-solid@2.11.10: + resolution: {integrity: sha512-Yr1dQybmtDtDAHkii6hXuc1oVH9CPcS/Zb2jN/P36qqcrkNnVPsMTzQ06jyzFPFjj3U1IYKMVt/9ZqcwGCEbjw==} + peerDependencies: + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* + solid-js: ^1.7.2 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + peerDependenciesMeta: + '@testing-library/jest-dom': + optional: true + + vite-prerender-plugin@0.5.12: + resolution: {integrity: sha512-EiwhbMn+flg14EysbLTmZSzq8NGTxhytgK3bf4aGRF1evWLGwZiHiUJ1KZDvbxgKbMf2pG6fJWGEa3UZXOnR1g==} + peerDependencies: + vite: 5.x || 6.x || 7.x + + vite@7.2.7: + resolution: {integrity: sha512-ITcnkFeR3+fI8P1wMgItjGrR10170d8auB4EpMLPqmx6uxElH3a/hHGQabSHKdqd4FXWO1nFIp9rRn7JQ34ACQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vite@7.3.0: + resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitefu@0.2.5: + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + + vitefu@1.1.1: + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true + + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vitest@4.0.16: + resolution: {integrity: sha512-E4t7DJ9pESL6E3I8nFjPa4xGUd3PmiWDLsDztS2qXSJWfHtbQnwAWylaBvSNY48I3vr8PTqIZlyK8TE3V3CA4Q==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.0.16 + '@vitest/browser-preview': 4.0.16 + '@vitest/browser-webdriverio': 4.0.16 + '@vitest/ui': 4.0.16 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@opentelemetry/api': + optional: true + '@types/node': + optional: true + '@vitest/browser-playwright': + optional: true + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vlq@1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + + void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + + vscode-uri@3.1.0: + resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} + + vue-component-type-helpers@1.8.27: + resolution: {integrity: sha512-0vOfAtI67UjeO1G6UiX5Kd76CqaQ67wrRZiOe7UAb9Jm6GzlUr/fC7CV90XfwapJRjpCMaZFhv1V0ajWRmE9Dg==} + + vue-tsc@3.1.8: + resolution: {integrity: sha512-deKgwx6exIHeZwF601P1ktZKNF0bepaSN4jBU3AsbldPx9gylUc1JDxYppl82yxgkAgaz0Y0LCLOi+cXe9HMYA==} + hasBin: true + peerDependencies: + typescript: '>=5.0.0' + + vue@3.5.25: + resolution: {integrity: sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + walk-sync@2.2.0: + resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==} + engines: {node: 8.* || >= 10.*} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + warn-once@0.1.1: + resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} + + wawoff2@2.0.1: + resolution: {integrity: sha512-r0CEmvpH63r4T15ebFqeOjGqU4+EgTx4I510NtK35EMciSdcTxCw3Byy3JnBonz7iyIFZ0AbVo0bbFpEVuhCYA==} + hasBin: true + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + + web-streams-polyfill@4.0.0-beta.3: + resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} + engines: {node: '>= 14'} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@14.2.0: + resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} + engines: {node: '>=18'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + which@3.0.1: + resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + widest-line@4.0.1: + resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} + engines: {node: '>=12'} + + wildcard-match@5.1.2: + resolution: {integrity: sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ==} + + windows-release@5.1.1: + resolution: {integrity: sha512-NMD00arvqcq2nwqc5Q6KtrSRHK+fVD31erE5FEMahAw5PmVCgD7MUXodq3pdZSUkqA9Cda2iWx6s1XYwiJWRmw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + with@7.0.2: + resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} + engines: {node: '>= 10.0.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + ws@6.2.3: + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xdg-basedir@5.1.0: + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} + + xhr@2.6.0: + resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} + + xml-lexer@0.2.2: + resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xml-parse-from-string@1.0.1: + resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==} + + xml-reader@2.4.3: + resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} + + xml2js@0.5.0: + resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} + engines: {node: '>=4.0.0'} + + xmlbuilder@11.0.1: + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@2.8.2: + resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yerror@8.0.0: + resolution: {integrity: sha512-FemWD5/UqNm8ffj8oZIbjWXIF2KE0mZssggYpdaQkWDDgXBQ/35PNIxEuz6/YLn9o0kOxDBNJe8x8k9ljD7k/g==} + engines: {node: '>=18.16.0'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zimmerframe@1.1.4: + resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} + +snapshots: + + '@11ty/dependency-tree@2.0.1': {} + + '@11ty/eleventy-dev-server@1.0.4': dependencies: '@11ty/eleventy-utils': 1.0.3 chokidar: 3.6.0 debug: 4.4.3 dev-ip: 1.0.1 - finalhandler: 1.3.1 + finalhandler: 1.3.2 mime: 3.0.0 minimist: 1.2.8 morphdom: 2.7.7 @@ -498,19 +7921,12 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /@11ty/eleventy-utils@1.0.3: - resolution: {integrity: sha512-nULO91om7vQw4Y/UBjM8i7nJ1xl+/nyK4rImZ41lFxiY2d+XUz7ChAj1CDYFjrLZeu0utAYJTZ45LlcHTkUG4g==} - engines: {node: '>=12'} + '@11ty/eleventy-utils@1.0.3': dependencies: normalize-path: 3.0.0 - dev: true - /@11ty/eleventy@2.0.1: - resolution: {integrity: sha512-t8XVUbCJByhVEa1RzO0zS2QzbL3wPY8ot1yUw9noqiSHxJWUwv6jiwm1/MZDPTYtkZH2ZHvdQIRQ5/SjG9XmLw==} - engines: {node: '>=14'} - hasBin: true + '@11ty/eleventy@2.0.1': dependencies: '@11ty/dependency-tree': 2.0.1 '@11ty/eleventy-dev-server': 1.0.4 @@ -532,7 +7948,7 @@ packages: is-glob: 4.0.3 iso-639-1: 2.1.15 kleur: 4.1.5 - liquidjs: 10.21.1 + liquidjs: 10.24.0 luxon: 3.7.2 markdown-it: 13.0.2 micromatch: 4.0.8 @@ -544,83 +7960,60 @@ packages: nunjucks: 3.2.4(chokidar@3.6.0) path-to-regexp: 6.3.0 please-upgrade-node: 3.2.0 - posthtml: 0.16.6 + posthtml: 0.16.7 posthtml-urls: 1.0.0 pug: 3.0.3 recursive-copy: 2.0.14 - semver: 7.7.2 + semver: 7.7.3 slugify: 1.6.6 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - dev: true - /@11ty/lodash-custom@4.17.21: - resolution: {integrity: sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==} - engines: {node: '>=14'} - dev: true + '@11ty/lodash-custom@4.17.21': {} - /@adobe/css-tools@4.4.4: - resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==} - dev: true + '@adobe/css-tools@4.4.4': {} - /@ampproject/remapping@2.3.0: - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} + '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - dev: true - /@asamuzakjp/css-color@3.2.0: - resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + '@asamuzakjp/css-color@3.2.0': dependencies: - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) - '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 - dev: true - /@atomico/rollup-plugin-sizes@1.1.4(rollup@4.50.2): - resolution: {integrity: sha512-ilxLw9hT+kWXIx8mYoAFLA2eIVfLrsnabPCaGo5Mkrj8qxhEkZvFddcnH2HTp/hDKFEIJRpZVpXecsPp3FOdRw==} - peerDependencies: - rollup: 1.x || 2.x + '@atomico/rollup-plugin-sizes@1.1.4(rollup@4.53.3)': dependencies: brotli-size: 4.0.0 gzip-size: 5.1.1 - rollup: 4.50.2 + rollup: 4.53.3 simple-string-table: 1.0.0 - dev: true - /@babel/code-frame@7.27.1: - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} - engines: {node: '>=6.9.0'} + '@babel/code-frame@7.27.1': dependencies: - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 - dev: true - /@babel/compat-data@7.28.4: - resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} - engines: {node: '>=6.9.0'} - dev: true + '@babel/compat-data@7.28.5': {} - /@babel/core@7.28.4: - resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} - engines: {node: '>=6.9.0'} + '@babel/core@7.28.5': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helpers': 7.28.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3 @@ -629,2389 +8022,1251 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/generator@7.28.3: - resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} - engines: {node: '>=6.9.0'} + '@babel/generator@7.28.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - dev: true - /@babel/helper-annotate-as-pure@7.27.3: - resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} - engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.27.3': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@babel/helper-compilation-targets@7.27.2: - resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} - engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.27.2': dependencies: - '@babel/compat-data': 7.28.4 + '@babel/compat-data': 7.28.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.26.0 + browserslist: 4.28.1 lru-cache: 5.1.1 semver: 6.3.1 - dev: true - /@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 - regexpu-core: 6.3.1 + regexpu-core: 6.4.0 semver: 6.3.1 - dev: true - /@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4): - resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-environment-visitor@7.24.7: - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} - engines: {node: '>=6.9.0'} + '@babel/helper-environment-visitor@7.24.7': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@babel/helper-globals@7.28.0: - resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} - engines: {node: '>=6.9.0'} - dev: true + '@babel/helper-globals@7.28.0': {} - /@babel/helper-member-expression-to-functions@7.27.1: - resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} - engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.28.5': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-module-imports@7.18.6: - resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} - engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.18.6': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@babel/helper-module-imports@7.27.1: - resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} - engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-optimise-call-expression@7.27.1: - resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} - engines: {node: '>=6.9.0'} + '@babel/helper-optimise-call-expression@7.27.1': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@babel/helper-plugin-utils@7.27.1: - resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} - engines: {node: '>=6.9.0'} - dev: true + '@babel/helper-plugin-utils@7.27.1': {} - /@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.28.3 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/core': 7.28.5 + '@babel/helper-member-expression-to-functions': 7.28.5 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-skip-transparent-expression-wrappers@7.27.1: - resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} - engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-string-parser@7.27.1: - resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} - engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.27.1': {} - /@babel/helper-validator-identifier@7.27.1: - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} - engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.28.5': {} - /@babel/helper-validator-option@7.27.1: - resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} - engines: {node: '>=6.9.0'} - dev: true + '@babel/helper-validator-option@7.27.1': {} - /@babel/helper-wrap-function@7.28.3: - resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==} - engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.28.3': dependencies: '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/helpers@7.28.4: - resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} - engines: {node: '>=6.9.0'} + '@babel/helpers@7.28.4': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@babel/parser@7.28.4: - resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} - engines: {node: '>=6.0.0'} - hasBin: true + '@babel/parser@7.28.5': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 - /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.28.4): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.4): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.4): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4) - dev: true + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5) - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.4): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4) - dev: true + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.28.4): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.28.5)': dependencies: - '@babel/compat-data': 7.28.4 - '@babel/core': 7.28.4 + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) - dev: true + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.28.4): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4) - dev: true + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.4): - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - dev: true + '@babel/core': 7.28.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.4): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4): - resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) - '@babel/traverse': 7.28.4 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4): - resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 + '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4): - resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-globals': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) - '@babel/traverse': 7.28.4 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 - dev: true - /@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4): - resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4): - resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4) - dev: true + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5) - /@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4): - resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) - '@babel/traverse': 7.28.4 + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4): - resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.4): - resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/types': 7.28.4 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4): - resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4) - babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5) semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4): - resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4) + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5) '@babel/helper-plugin-utils': 7.27.1 - dev: true - /@babel/preset-env@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-env@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/compat-data': 7.28.4 - '@babel/core': 7.28.4 + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4) - '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) - '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4) - babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4) - babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4) - core-js-compat: 3.45.1 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.5) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.5) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.5) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.5) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.5) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.5) + '@babel/plugin-transform-exponentiation-operator': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.5) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.5) + '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.5) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.5) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5) + core-js-compat: 3.47.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/preset-flow@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-ez3a2it5Fn6P54W8QkbfIyyIbxlXvcxyWHHvno1Wg0Ej5eiJY5hBb8ExttoIOJJk7V2dZE6prP7iby5q2aQ0Lg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-flow@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4) - dev: true + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5) - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 esutils: 2.0.3 - dev: true - /@babel/preset-typescript@7.27.1(@babel/core@7.28.4): - resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-typescript@7.28.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /@babel/register@7.28.3(@babel/core@7.28.4): - resolution: {integrity: sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/register@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 pirates: 4.0.7 source-map-support: 0.5.21 - dev: true - /@babel/runtime@7.28.4: - resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} - engines: {node: '>=6.9.0'} - dev: true + '@babel/runtime@7.28.4': {} - /@babel/template@7.27.2: - resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} - engines: {node: '>=6.9.0'} + '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 - dev: true + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - /@babel/traverse@7.28.4: - resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.28.5': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /@babel/types@7.28.4: - resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} - engines: {node: '>=6.9.0'} + '@babel/types@7.28.5': dependencies: '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 - /@csstools/color-helpers@5.1.0: - resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} - engines: {node: '>=18'} - dev: true + '@csstools/color-helpers@5.1.0': {} - /@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4): - resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.5 - '@csstools/css-tokenizer': ^3.0.4 + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - dev: true - /@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4): - resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.5 - '@csstools/css-tokenizer': ^3.0.4 + '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/color-helpers': 5.1.0 - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - dev: true - /@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4): - resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-tokenizer': ^3.0.4 + '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/css-tokenizer': 3.0.4 - dev: true - /@csstools/css-tokenizer@3.0.4: - resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} - engines: {node: '>=18'} - dev: true + '@csstools/css-tokenizer@3.0.4': {} - /@emnapi/runtime@1.5.0: - resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} - requiresBuild: true + '@emnapi/runtime@1.7.1': dependencies: tslib: 2.8.1 optional: true - /@esbuild/aix-ppc64@0.20.2: - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: true - optional: true - - /@esbuild/aix-ppc64@0.21.5: - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: true - optional: true - - /@esbuild/aix-ppc64@0.25.12: - resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm64@0.20.2: - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm64@0.21.5: - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm64@0.25.12: - resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.15.18: - resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.20.2: - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.21.5: - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.25.12: - resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.20.2: - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.21.5: - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.25.12: - resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.20.2: - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.21.5: - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.25.12: - resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.20.2: - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.21.5: - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.25.12: - resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.20.2: - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.21.5: - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.25.12: - resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.20.2: - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.21.5: - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.25.12: - resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64@0.20.2: - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64@0.21.5: - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64@0.25.12: - resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.20.2: - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.21.5: - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.25.12: - resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.20.2: - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.21.5: - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.25.12: - resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.15.18: - resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.20.2: - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.21.5: - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.25.12: - resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.20.2: - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.21.5: - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.25.12: - resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.20.2: - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.21.5: - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.25.12: - resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.20.2: - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.21.5: - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.25.12: - resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.20.2: - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.21.5: - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.25.12: - resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.20.2: - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.21.5: - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.25.12: - resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-arm64@0.25.12: - resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.20.2: - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.21.5: - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.25.12: - resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-arm64@0.25.12: - resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.20.2: - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.21.5: - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.25.12: - resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openharmony-arm64@0.25.12: - resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openharmony] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.20.2: - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.21.5: - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.25.12: - resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.20.2: - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.21.5: - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.25.12: - resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.20.2: - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.21.5: - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.25.12: - resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.20.2: - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.21.5: - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.25.12: - resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@gar/promisify@1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - dev: true - - /@hapi/hoek@9.3.0: - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - dev: true - - /@hapi/topo@5.1.0: - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + '@esbuild/aix-ppc64@0.20.2': + optional: true + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/aix-ppc64@0.27.2': + optional: true + + '@esbuild/android-arm64@0.20.2': + optional: true + + '@esbuild/android-arm64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.27.2': + optional: true + + '@esbuild/android-arm@0.15.18': + optional: true + + '@esbuild/android-arm@0.20.2': + optional: true + + '@esbuild/android-arm@0.25.12': + optional: true + + '@esbuild/android-arm@0.27.2': + optional: true + + '@esbuild/android-x64@0.20.2': + optional: true + + '@esbuild/android-x64@0.25.12': + optional: true + + '@esbuild/android-x64@0.27.2': + optional: true + + '@esbuild/darwin-arm64@0.20.2': + optional: true + + '@esbuild/darwin-arm64@0.25.12': + optional: true + + '@esbuild/darwin-arm64@0.27.2': + optional: true + + '@esbuild/darwin-x64@0.20.2': + optional: true + + '@esbuild/darwin-x64@0.25.12': + optional: true + + '@esbuild/darwin-x64@0.27.2': + optional: true + + '@esbuild/freebsd-arm64@0.20.2': + optional: true + + '@esbuild/freebsd-arm64@0.25.12': + optional: true + + '@esbuild/freebsd-arm64@0.27.2': + optional: true + + '@esbuild/freebsd-x64@0.20.2': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.27.2': + optional: true + + '@esbuild/linux-arm64@0.20.2': + optional: true + + '@esbuild/linux-arm64@0.25.12': + optional: true + + '@esbuild/linux-arm64@0.27.2': + optional: true + + '@esbuild/linux-arm@0.20.2': + optional: true + + '@esbuild/linux-arm@0.25.12': + optional: true + + '@esbuild/linux-arm@0.27.2': + optional: true + + '@esbuild/linux-ia32@0.20.2': + optional: true + + '@esbuild/linux-ia32@0.25.12': + optional: true + + '@esbuild/linux-ia32@0.27.2': + optional: true + + '@esbuild/linux-loong64@0.15.18': + optional: true + + '@esbuild/linux-loong64@0.20.2': + optional: true + + '@esbuild/linux-loong64@0.25.12': + optional: true + + '@esbuild/linux-loong64@0.27.2': + optional: true + + '@esbuild/linux-mips64el@0.20.2': + optional: true + + '@esbuild/linux-mips64el@0.25.12': + optional: true + + '@esbuild/linux-mips64el@0.27.2': + optional: true + + '@esbuild/linux-ppc64@0.20.2': + optional: true + + '@esbuild/linux-ppc64@0.25.12': + optional: true + + '@esbuild/linux-ppc64@0.27.2': + optional: true + + '@esbuild/linux-riscv64@0.20.2': + optional: true + + '@esbuild/linux-riscv64@0.25.12': + optional: true + + '@esbuild/linux-riscv64@0.27.2': + optional: true + + '@esbuild/linux-s390x@0.20.2': + optional: true + + '@esbuild/linux-s390x@0.25.12': + optional: true + + '@esbuild/linux-s390x@0.27.2': + optional: true + + '@esbuild/linux-x64@0.20.2': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/linux-x64@0.27.2': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.27.2': + optional: true + + '@esbuild/netbsd-x64@0.20.2': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.27.2': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.27.2': + optional: true + + '@esbuild/openbsd-x64@0.20.2': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.27.2': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.27.2': + optional: true + + '@esbuild/sunos-x64@0.20.2': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.27.2': + optional: true + + '@esbuild/win32-arm64@0.20.2': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.27.2': + optional: true + + '@esbuild/win32-ia32@0.20.2': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.27.2': + optional: true + + '@esbuild/win32-x64@0.20.2': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@esbuild/win32-x64@0.27.2': + optional: true + + '@gar/promisify@1.1.3': {} + + '@hapi/hoek@9.3.0': {} + + '@hapi/topo@5.1.0': dependencies: '@hapi/hoek': 9.3.0 - dev: true - /@iarna/toml@2.2.5: - resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} - dev: true + '@iarna/toml@2.2.5': {} - /@img/sharp-darwin-arm64@0.33.5: - resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@img/sharp-darwin-arm64@0.33.5': optionalDependencies: '@img/sharp-libvips-darwin-arm64': 1.0.4 optional: true - /@img/sharp-darwin-x64@0.33.5: - resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@img/sharp-darwin-x64@0.33.5': optionalDependencies: '@img/sharp-libvips-darwin-x64': 1.0.4 optional: true - /@img/sharp-libvips-darwin-arm64@1.0.4: - resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@img/sharp-libvips-darwin-arm64@1.0.4': optional: true - /@img/sharp-libvips-darwin-x64@1.0.4: - resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@img/sharp-libvips-darwin-x64@1.0.4': optional: true - /@img/sharp-libvips-linux-arm64@1.0.4: - resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-arm64@1.0.4': optional: true - /@img/sharp-libvips-linux-arm@1.0.5: - resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} - cpu: [arm] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-arm@1.0.5': optional: true - /@img/sharp-libvips-linux-s390x@1.0.4: - resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-s390x@1.0.4': optional: true - /@img/sharp-libvips-linux-x64@1.0.4: - resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-x64@1.0.4': optional: true - /@img/sharp-libvips-linuxmusl-arm64@1.0.4: - resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': optional: true - /@img/sharp-libvips-linuxmusl-x64@1.0.4: - resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linuxmusl-x64@1.0.4': optional: true - /@img/sharp-linux-arm64@0.33.5: - resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-linux-arm64@0.33.5': optionalDependencies: '@img/sharp-libvips-linux-arm64': 1.0.4 optional: true - /@img/sharp-linux-arm@0.33.5: - resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm] - os: [linux] - requiresBuild: true + '@img/sharp-linux-arm@0.33.5': optionalDependencies: '@img/sharp-libvips-linux-arm': 1.0.5 optional: true - /@img/sharp-linux-s390x@0.33.5: - resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@img/sharp-linux-s390x@0.33.5': optionalDependencies: '@img/sharp-libvips-linux-s390x': 1.0.4 optional: true - /@img/sharp-linux-x64@0.33.5: - resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-linux-x64@0.33.5': optionalDependencies: '@img/sharp-libvips-linux-x64': 1.0.4 optional: true - /@img/sharp-linuxmusl-arm64@0.33.5: - resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-linuxmusl-arm64@0.33.5': optionalDependencies: '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 optional: true - /@img/sharp-linuxmusl-x64@0.33.5: - resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-linuxmusl-x64@0.33.5': optionalDependencies: '@img/sharp-libvips-linuxmusl-x64': 1.0.4 optional: true - /@img/sharp-wasm32@0.33.5: - resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [wasm32] - requiresBuild: true + '@img/sharp-wasm32@0.33.5': dependencies: - '@emnapi/runtime': 1.5.0 + '@emnapi/runtime': 1.7.1 optional: true - /@img/sharp-win32-ia32@0.33.5: - resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@img/sharp-win32-ia32@0.33.5': optional: true - /@img/sharp-win32-x64@0.33.5: - resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - cpu: [x64] - os: [win32] - requiresBuild: true + '@img/sharp-win32-x64@0.33.5': optional: true - /@isaacs/balanced-match@4.0.1: - resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} - engines: {node: 20 || >=22} - dev: true + '@isaacs/balanced-match@4.0.1': {} - /@isaacs/brace-expansion@5.0.0: - resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} - engines: {node: 20 || >=22} + '@isaacs/brace-expansion@5.0.0': dependencies: '@isaacs/balanced-match': 4.0.1 - dev: true - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 + string-width-cjs: string-width@4.2.3 strip-ansi: 7.1.2 - strip-ansi-cjs: /strip-ansi@6.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 - dev: true + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@isaacs/ttlcache@1.4.1: - resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} - engines: {node: '>=12'} - dev: true + '@isaacs/ttlcache@1.4.1': {} - /@jest/create-cache-key-function@29.7.0: - resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/create-cache-key-function@29.7.0': dependencies: '@jest/types': 29.6.3 - dev: true - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 24.4.0 + '@types/node': 25.0.2 jest-mock: 29.7.0 - dev: true - /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/fake-timers@29.7.0': dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 24.4.0 + '@types/node': 25.0.2 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 - dev: true - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/schemas@29.6.3': dependencies: '@sinclair/typebox': 0.27.8 - dev: true - /@jest/types@26.6.2: - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} + '@jest/types@26.6.2': dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.4.0 - '@types/yargs': 15.0.19 + '@types/node': 25.0.2 + '@types/yargs': 15.0.20 chalk: 4.1.2 - dev: true - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@29.6.3': dependencies: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.4.0 - '@types/yargs': 17.0.33 + '@types/node': 25.0.2 + '@types/yargs': 17.0.35 chalk: 4.1.2 - dev: true - /@jimp/bmp@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/bmp@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 bmp-js: 0.1.0 - dev: true - /@jimp/core@0.14.0: - resolution: {integrity: sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w==} + '@jimp/core@0.14.0': dependencies: '@babel/runtime': 7.28.4 '@jimp/utils': 0.14.0 @@ -3026,210 +9281,128 @@ packages: tinycolor2: 1.6.0 transitivePeerDependencies: - debug - dev: true - /@jimp/custom@0.14.0: - resolution: {integrity: sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA==} + '@jimp/custom@0.14.0': dependencies: '@babel/runtime': 7.28.4 '@jimp/core': 0.14.0 transitivePeerDependencies: - debug - dev: true - /@jimp/gif@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/gif@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 gifwrap: 0.9.4 omggif: 1.0.10 - dev: true - /@jimp/jpeg@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/jpeg@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 jpeg-js: 0.4.4 - dev: true - /@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-blur@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-blur@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-circle@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-circle@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-color@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-color@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 tinycolor2: 1.6.0 - dev: true - /@jimp/plugin-contain@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0)(@jimp/plugin-resize@0.14.0)(@jimp/plugin-scale@0.14.0): - resolution: {integrity: sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - '@jimp/plugin-scale': '>=0.3.5' + '@jimp/plugin-contain@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/plugin-blit': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0) + '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-cover@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-crop@0.14.0)(@jimp/plugin-resize@0.14.0)(@jimp/plugin-scale@0.14.0): - resolution: {integrity: sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-crop': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' - '@jimp/plugin-scale': '>=0.3.5' + '@jimp/plugin-cover@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/plugin-crop': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0) + '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-displace@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-displace@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-dither@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-dither@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-fisheye@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-fisheye@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-flip@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-rotate@0.14.0): - resolution: {integrity: sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-rotate': '>=0.3.5' + '@jimp/plugin-flip@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-rotate@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 - '@jimp/plugin-rotate': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0)(@jimp/plugin-crop@0.14.0)(@jimp/plugin-resize@0.14.0) + '@jimp/plugin-rotate': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-gaussian@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-gaussian@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-invert@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-invert@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-mask@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-mask@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-normalize@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-normalize@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-print@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0): - resolution: {integrity: sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' + '@jimp/plugin-print@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 @@ -3238,25 +9411,14 @@ packages: load-bmfont: 1.4.2 transitivePeerDependencies: - debug - dev: true - /@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-rotate@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0)(@jimp/plugin-crop@0.14.0)(@jimp/plugin-resize@0.14.0): - resolution: {integrity: sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blit': '>=0.3.5' - '@jimp/plugin-crop': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-rotate@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 @@ -3264,52 +9426,31 @@ packages: '@jimp/plugin-crop': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0): - resolution: {integrity: sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-shadow@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blur@0.14.0)(@jimp/plugin-resize@0.14.0): - resolution: {integrity: sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-blur': '>=0.3.5' - '@jimp/plugin-resize': '>=0.3.5' + '@jimp/plugin-shadow@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blur@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/plugin-blur': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugin-threshold@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-color@0.14.0)(@jimp/plugin-resize@0.14.0): - resolution: {integrity: sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' - '@jimp/plugin-color': '>=0.8.0' - '@jimp/plugin-resize': '>=0.8.0' + '@jimp/plugin-threshold@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-color@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/plugin-color': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) '@jimp/utils': 0.14.0 - dev: true - /@jimp/plugins@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/plugins@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 @@ -3317,53 +9458,41 @@ packages: '@jimp/plugin-blur': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-circle': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-color': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-contain': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0)(@jimp/plugin-resize@0.14.0)(@jimp/plugin-scale@0.14.0) - '@jimp/plugin-cover': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-crop@0.14.0)(@jimp/plugin-resize@0.14.0)(@jimp/plugin-scale@0.14.0) + '@jimp/plugin-contain': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))) + '@jimp/plugin-cover': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-scale@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))) '@jimp/plugin-crop': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-displace': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-dither': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-fisheye': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-flip': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-rotate@0.14.0) + '@jimp/plugin-flip': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-rotate@0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0))) '@jimp/plugin-gaussian': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-invert': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-mask': 0.14.0(@jimp/custom@0.14.0) '@jimp/plugin-normalize': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-print': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0) + '@jimp/plugin-print': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0)) '@jimp/plugin-resize': 0.14.0(@jimp/custom@0.14.0) - '@jimp/plugin-rotate': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0)(@jimp/plugin-crop@0.14.0)(@jimp/plugin-resize@0.14.0) - '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0) - '@jimp/plugin-shadow': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blur@0.14.0)(@jimp/plugin-resize@0.14.0) - '@jimp/plugin-threshold': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-color@0.14.0)(@jimp/plugin-resize@0.14.0) + '@jimp/plugin-rotate': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blit@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-crop@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) + '@jimp/plugin-scale': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) + '@jimp/plugin-shadow': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-blur@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) + '@jimp/plugin-threshold': 0.14.0(@jimp/custom@0.14.0)(@jimp/plugin-color@0.14.0(@jimp/custom@0.14.0))(@jimp/plugin-resize@0.14.0(@jimp/custom@0.14.0)) timm: 1.7.1 transitivePeerDependencies: - debug - dev: true - /@jimp/png@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/png@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 '@jimp/utils': 0.14.0 pngjs: 3.4.0 - dev: true - /@jimp/tiff@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/tiff@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 utif: 2.0.1 - dev: true - /@jimp/types@0.14.0(@jimp/custom@0.14.0): - resolution: {integrity: sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ==} - peerDependencies: - '@jimp/custom': '>=0.3.5' + '@jimp/types@0.14.0(@jimp/custom@0.14.0)': dependencies: '@babel/runtime': 7.28.4 '@jimp/bmp': 0.14.0(@jimp/custom@0.14.0) @@ -3373,97 +9502,62 @@ packages: '@jimp/png': 0.14.0(@jimp/custom@0.14.0) '@jimp/tiff': 0.14.0(@jimp/custom@0.14.0) timm: 1.7.1 - dev: true - /@jimp/utils@0.14.0: - resolution: {integrity: sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A==} + '@jimp/utils@0.14.0': dependencies: '@babel/runtime': 7.28.4 regenerator-runtime: 0.13.11 - dev: true - /@jridgewell/gen-mapping@0.3.13: - resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + '@jridgewell/gen-mapping@0.3.13': dependencies: '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 - dev: true - /@jridgewell/remapping@2.3.5: - resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/remapping@2.3.5': dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - dev: true - /@jridgewell/resolve-uri@3.1.2: - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - dev: true + '@jridgewell/resolve-uri@3.1.2': {} - /@jridgewell/source-map@0.3.11: - resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} + '@jridgewell/source-map@0.3.11': dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - dev: true - /@jridgewell/sourcemap-codec@1.5.5: - resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/sourcemap-codec@1.5.5': {} - /@jridgewell/trace-mapping@0.3.31: - resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - dev: true - /@ljharb/through@2.3.14: - resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==} - engines: {node: '>= 0.4'} + '@ljharb/through@2.3.14': dependencies: call-bind: 1.0.8 - dev: true - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - dev: true - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - dev: true + '@nodelib/fs.stat@2.0.5': {} - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.19.1 - dev: true - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/fs@2.1.2': dependencies: '@gar/promisify': 1.1.3 - semver: 7.7.2 - dev: true + semver: 7.7.3 - /@npmcli/fs@3.1.1: - resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/fs@3.1.1': dependencies: - semver: 7.7.2 - dev: true + semver: 7.7.3 - /@npmcli/git@4.1.0: - resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/git@4.1.0': dependencies: '@npmcli/promise-spawn': 6.0.2 lru-cache: 7.18.3 @@ -3471,45 +9565,28 @@ packages: proc-log: 3.0.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.7.2 + semver: 7.7.3 which: 3.0.1 transitivePeerDependencies: - bluebird - dev: true - /@npmcli/installed-package-contents@2.1.0: - resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + '@npmcli/installed-package-contents@2.1.0': dependencies: npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 - dev: true - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs + '@npmcli/move-file@2.0.1': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - dev: true - /@npmcli/node-gyp@3.0.0: - resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@npmcli/node-gyp@3.0.0': {} - /@npmcli/promise-spawn@6.0.2: - resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/promise-spawn@6.0.2': dependencies: which: 3.0.1 - dev: true - /@npmcli/run-script@6.0.2: - resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@npmcli/run-script@6.0.2': dependencies: '@npmcli/node-gyp': 3.0.0 '@npmcli/promise-spawn': 6.0.2 @@ -3519,16 +9596,10 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@octokit/auth-token@4.0.0: - resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} - engines: {node: '>= 18'} - dev: true + '@octokit/auth-token@4.0.0': {} - /@octokit/core@5.2.2: - resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==} - engines: {node: '>= 18'} + '@octokit/core@5.2.2': dependencies: '@octokit/auth-token': 4.0.0 '@octokit/graphql': 7.1.1 @@ -3537,228 +9608,106 @@ packages: '@octokit/types': 13.10.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - dev: true - /@octokit/endpoint@9.0.6: - resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==} - engines: {node: '>= 18'} + '@octokit/endpoint@9.0.6': dependencies: '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/graphql@7.1.1: - resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==} - engines: {node: '>= 18'} + '@octokit/graphql@7.1.1': dependencies: '@octokit/request': 8.4.1 '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/openapi-types@20.0.0: - resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} - dev: true + '@octokit/openapi-types@20.0.0': {} - /@octokit/openapi-types@24.2.0: - resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} - dev: true + '@octokit/openapi-types@24.2.0': {} - /@octokit/plugin-paginate-rest@9.2.2(@octokit/core@5.2.2): - resolution: {integrity: sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' + '@octokit/plugin-paginate-rest@9.2.2(@octokit/core@5.2.2)': dependencies: '@octokit/core': 5.2.2 '@octokit/types': 12.6.0 - dev: true - /@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2): - resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' + '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)': dependencies: '@octokit/core': 5.2.2 - dev: true - /@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.2.2): - resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' + '@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.2.2)': dependencies: '@octokit/core': 5.2.2 '@octokit/types': 12.6.0 - dev: true - /@octokit/request-error@5.1.1: - resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==} - engines: {node: '>= 18'} + '@octokit/request-error@5.1.1': dependencies: '@octokit/types': 13.10.0 deprecation: 2.3.1 once: 1.4.0 - dev: true - /@octokit/request@8.4.1: - resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==} - engines: {node: '>= 18'} + '@octokit/request@8.4.1': dependencies: '@octokit/endpoint': 9.0.6 '@octokit/request-error': 5.1.1 '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/rest@20.0.2: - resolution: {integrity: sha512-Ux8NDgEraQ/DMAU1PlAohyfBBXDwhnX2j33Z1nJNziqAfHi70PuxkFYIcIt8aIAxtRE7KVuKp8lSR8pA0J5iOQ==} - engines: {node: '>= 18'} + '@octokit/rest@20.0.2': dependencies: '@octokit/core': 5.2.2 '@octokit/plugin-paginate-rest': 9.2.2(@octokit/core@5.2.2) '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2) '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.2.2) - dev: true - /@octokit/types@12.6.0: - resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} + '@octokit/types@12.6.0': dependencies: '@octokit/openapi-types': 20.0.0 - dev: true - /@octokit/types@13.10.0: - resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} + '@octokit/types@13.10.0': dependencies: '@octokit/openapi-types': 24.2.0 - dev: true - /@one-ini/wasm@0.1.1: - resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - dev: true + '@one-ini/wasm@0.1.1': {} - /@parcel/watcher-android-arm64@2.5.1: - resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@parcel/watcher-android-arm64@2.5.1': optional: true - /@parcel/watcher-darwin-arm64@2.5.1: - resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@parcel/watcher-darwin-arm64@2.5.1': optional: true - /@parcel/watcher-darwin-x64@2.5.1: - resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@parcel/watcher-darwin-x64@2.5.1': optional: true - /@parcel/watcher-freebsd-x64@2.5.1: - resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@parcel/watcher-freebsd-x64@2.5.1': optional: true - /@parcel/watcher-linux-arm-glibc@2.5.1: - resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-arm-glibc@2.5.1': optional: true - /@parcel/watcher-linux-arm-musl@2.5.1: - resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-arm-musl@2.5.1': optional: true - /@parcel/watcher-linux-arm64-glibc@2.5.1: - resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-arm64-glibc@2.5.1': optional: true - /@parcel/watcher-linux-arm64-musl@2.5.1: - resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-arm64-musl@2.5.1': optional: true - /@parcel/watcher-linux-x64-glibc@2.5.1: - resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-x64-glibc@2.5.1': optional: true - /@parcel/watcher-linux-x64-musl@2.5.1: - resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@parcel/watcher-linux-x64-musl@2.5.1': optional: true - /@parcel/watcher-win32-arm64@2.5.1: - resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@parcel/watcher-win32-arm64@2.5.1': optional: true - /@parcel/watcher-win32-ia32@2.5.1: - resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} - engines: {node: '>= 10.0.0'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@parcel/watcher-win32-ia32@2.5.1': optional: true - /@parcel/watcher-win32-x64@2.5.1: - resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@parcel/watcher-win32-x64@2.5.1': optional: true - /@parcel/watcher@2.5.1: - resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} - engines: {node: '>= 10.0.0'} - requiresBuild: true + '@parcel/watcher@2.5.1': dependencies: detect-libc: 1.0.3 is-glob: 4.0.3 @@ -3778,105 +9727,70 @@ packages: '@parcel/watcher-win32-arm64': 2.5.1 '@parcel/watcher-win32-ia32': 2.5.1 '@parcel/watcher-win32-x64': 2.5.1 - dev: true optional: true - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - dev: true + '@pkgjs/parseargs@0.11.0': optional: true - /@pnpm/config.env-replace@1.1.0: - resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} - engines: {node: '>=12.22.0'} - dev: true + '@pnpm/config.env-replace@1.1.0': {} - /@pnpm/network.ca-file@1.0.2: - resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} - engines: {node: '>=12.22.0'} + '@pnpm/network.ca-file@1.0.2': dependencies: graceful-fs: 4.2.10 - dev: true - /@pnpm/npm-conf@2.3.1: - resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} - engines: {node: '>=12'} + '@pnpm/npm-conf@2.3.1': dependencies: '@pnpm/config.env-replace': 1.1.0 '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - dev: true - /@preact/preset-vite@2.10.2(@babel/core@7.28.4)(preact@10.27.2)(vite@7.2.7): - resolution: {integrity: sha512-K9wHlJOtkE+cGqlyQ5v9kL3Ge0Ql4LlIZjkUTL+1zf3nNdF88F9UZN6VTV8jdzBX9Fl7WSzeNMSDG7qECPmSmg==} - peerDependencies: - '@babel/core': 7.x - vite: 2.x || 3.x || 4.x || 5.x || 6.x || 7.x + '@preact/preset-vite@2.10.2(@babel/core@7.28.5)(preact@10.28.0)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.4) - '@prefresh/vite': 2.4.10(preact@10.27.2)(vite@7.2.7) + '@babel/core': 7.28.5 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.5) + '@prefresh/vite': 2.4.11(preact@10.28.0)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@rollup/pluginutils': 4.2.1 - babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.28.4) + babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.28.5) debug: 4.4.3 picocolors: 1.1.1 - vite: 7.2.7(sass@1.92.1) - vite-prerender-plugin: 0.5.12(vite@7.2.7) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vite-prerender-plugin: 0.5.12(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) transitivePeerDependencies: - preact - supports-color - dev: true - /@prefresh/babel-plugin@0.5.2: - resolution: {integrity: sha512-AOl4HG6dAxWkJ5ndPHBgBa49oo/9bOiJuRDKHLSTyH+Fd9x00shTXpdiTj1W41l6oQIwUOAgJeHMn4QwIDpHkA==} - dev: true + '@prefresh/babel-plugin@0.5.2': {} - /@prefresh/core@1.5.7(preact@10.27.2): - resolution: {integrity: sha512-AsyeitiPwG7UkT0mqgKzIDuydmYSKtBlzXEb5ymzskvxewcmVGRjQkcHDy6PCNBT7soAyHpQ0mPgXX4IeyOlUg==} - peerDependencies: - preact: ^10.0.0 || ^11.0.0-0 + '@prefresh/core@1.5.9(preact@10.28.0)': dependencies: - preact: 10.27.2 - dev: true + preact: 10.28.0 - /@prefresh/utils@1.2.1: - resolution: {integrity: sha512-vq/sIuN5nYfYzvyayXI4C2QkprfNaHUQ9ZX+3xLD8nL3rWyzpxOm1+K7RtMbhd+66QcaISViK7amjnheQ/4WZw==} - dev: true + '@prefresh/utils@1.2.1': {} - /@prefresh/vite@2.4.10(preact@10.27.2)(vite@7.2.7): - resolution: {integrity: sha512-lt+ODASOtXRWaPplp7/DlrgAaInnQYNvcpCglQBMx2OeJPyZ4IqPRaxsK77w96mWshjYwkqTsRSHoAM7aAn0ow==} - peerDependencies: - preact: ^10.4.0 || ^11.0.0-0 - vite: '>=2.0.0' + '@prefresh/vite@2.4.11(preact@10.28.0)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@prefresh/babel-plugin': 0.5.2 - '@prefresh/core': 1.5.7(preact@10.27.2) + '@prefresh/core': 1.5.9(preact@10.28.0) '@prefresh/utils': 1.2.1 '@rollup/pluginutils': 4.2.1 - preact: 10.27.2 - vite: 7.2.7(sass@1.92.1) + preact: 10.28.0 + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - dev: true - /@react-native-community/cli-clean@12.3.7: - resolution: {integrity: sha512-BCYW77QqyxfhiMEBOoHyciJRNV6Rhz1RvclReIKnCA9wAwmoJBeu4Mu+AwiECA2bUITX16fvPt3NwDsSd1jwfQ==} + '@react-native-community/cli-clean@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-config@12.3.7: - resolution: {integrity: sha512-IU2UhO9yj1rEBNhHWGzIXpPDzha4hizLP/PUOrhR4BUf6RVPUWEp+e1PXNGR0qjIf6esu7OC7t6mLOhH0NUJEw==} + '@react-native-community/cli-config@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 @@ -3884,54 +9798,46 @@ packages: joi: 17.13.3 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-debugger-ui@12.3.7: - resolution: {integrity: sha512-UHUFrRdcjWSCdWG9KIp2QjuRIahBQnb9epnQI7JCq6NFbFHYfEI4rI7msjMn+gG8/tSwKTV2PTPuPmZ5wWlE7Q==} + '@react-native-community/cli-debugger-ui@12.3.7': dependencies: serve-static: 1.16.2 transitivePeerDependencies: - supports-color - dev: true - /@react-native-community/cli-doctor@12.3.7: - resolution: {integrity: sha512-gCamZztRoAyhciuQPqdz4Xe4t3gOdNsaADNd+rva+Rx8W2PoPeNv60i7/et06wlsn6B6Sh0/hMiAftJbiHDFkg==} + '@react-native-community/cli-doctor@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-config': 12.3.7 - '@react-native-community/cli-platform-android': 12.3.7 - '@react-native-community/cli-platform-ios': 12.3.7 - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-config': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-platform-android': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.14.0 + envinfo: 7.21.0 execa: 5.1.1 hermes-profile-transformer: 0.0.6 node-stream-zip: 1.15.0 ora: 5.4.1 - semver: 7.7.2 + semver: 7.7.3 strip-ansi: 5.2.0 wcwidth: 1.0.1 - yaml: 2.8.1 + yaml: 2.8.2 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-hermes@12.3.7: - resolution: {integrity: sha512-ezzeiSKjRXK2+i1AAe7NhhN9CEHrgtRmTn2MAdBpE++N8fH5EQZgxFcGgGdwGvns2fm9ivyyeVnI5eAYwvM+jg==} + '@react-native-community/cli-hermes@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-platform-android': 12.3.7 - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-platform-android': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 hermes-profile-transformer: 0.0.6 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-platform-android@12.3.7: - resolution: {integrity: sha512-mOltF3cpjNdJb3WSFwEHc1GH4ibCcnOvQ34OdWyblKy9ijuvG5SjNTlYR/UW/CURaDi3OUKAhxQMTY5d27bzGQ==} + '@react-native-community/cli-platform-android@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 fast-xml-parser: 4.5.3 @@ -3939,12 +9845,10 @@ packages: logkitty: 0.7.1 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-platform-ios@12.3.7: - resolution: {integrity: sha512-2WnVsMH4ORZIhBm/5nCms1NeeKG4KarNC7PMLmrXWXB/bibDcaNsjrJiqnmCUcpTEvTQTokRfoO7Aj6NM0Cqow==} + '@react-native-community/cli-platform-ios@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) chalk: 4.1.2 execa: 5.1.1 fast-xml-parser: 4.5.3 @@ -3952,17 +9856,13 @@ packages: ora: 5.4.1 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-plugin-metro@12.3.7: - resolution: {integrity: sha512-ahEw0Vfnv2Nv/jdZ2QDuGjQ9l2SczO4lXjb3ubu5vEYNLyTw3jYsLMK6iES7YQ/ApQmKdG476HU1O9uZdpaYPg==} - dev: true + '@react-native-community/cli-plugin-metro@12.3.7': {} - /@react-native-community/cli-server-api@12.3.7: - resolution: {integrity: sha512-LYETs3CCjrLn1ZU0kYv44TywiIl5IPFHZGeXhAh2TtgOk4mo3kvXxECDil9CdO3bmDra6qyiG61KHvzr8IrHdg==} + '@react-native-community/cli-server-api@12.3.7(encoding@0.1.13)': dependencies: '@react-native-community/cli-debugger-ui': 12.3.7 - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) compression: 1.8.1 connect: 3.7.0 errorhandler: 1.5.1 @@ -3975,44 +9875,36 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@react-native-community/cli-tools@12.3.7: - resolution: {integrity: sha512-7NL/1/i+wzd4fBr/FSr3ypR05tiU/Kv9l/M1sL1c6jfcDtWXAL90R161gQkQFK7shIQ8Idp0dQX1rq49tSyfQw==} + '@react-native-community/cli-tools@12.3.7(encoding@0.1.13)': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 6.4.0 ora: 5.4.1 - semver: 7.7.2 + semver: 7.7.3 shell-quote: 1.8.3 sudo-prompt: 9.2.1 transitivePeerDependencies: - encoding - dev: true - /@react-native-community/cli-types@12.3.7: - resolution: {integrity: sha512-NFtUMyIrNfi3A5C1cjVKDVvYHvvOF7MnOMwdD8jm2NQKewQJrehKBh1eMuykKdqhWyZmuemD4KKhL8f4FxgG0w==} + '@react-native-community/cli-types@12.3.7': dependencies: joi: 17.13.3 - dev: true - /@react-native-community/cli@12.3.7: - resolution: {integrity: sha512-7+mOhk+3+X3BjSJZZvYrDJynA00gPYTlvT28ZjiLlbuVGfqfNiBKaxuF7rty+gjjpch4iKGvLhIhSN5cuOsdHQ==} - engines: {node: '>=18'} - hasBin: true + '@react-native-community/cli@12.3.7(encoding@0.1.13)': dependencies: - '@react-native-community/cli-clean': 12.3.7 - '@react-native-community/cli-config': 12.3.7 + '@react-native-community/cli-clean': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-config': 12.3.7(encoding@0.1.13) '@react-native-community/cli-debugger-ui': 12.3.7 - '@react-native-community/cli-doctor': 12.3.7 - '@react-native-community/cli-hermes': 12.3.7 + '@react-native-community/cli-doctor': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-hermes': 12.3.7(encoding@0.1.13) '@react-native-community/cli-plugin-metro': 12.3.7 - '@react-native-community/cli-server-api': 12.3.7 - '@react-native-community/cli-tools': 12.3.7 + '@react-native-community/cli-server-api': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) '@react-native-community/cli-types': 12.3.7 chalk: 4.1.2 commander: 9.5.0 @@ -4022,114 +9914,95 @@ packages: fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - dev: true - /@react-native/assets-registry@0.73.1: - resolution: {integrity: sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==} - engines: {node: '>=18'} - dev: true + '@react-native/assets-registry@0.73.1': {} - /@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==} - engines: {node: '>=18'} + '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.28.5(@babel/core@7.28.5))': dependencies: - '@react-native/codegen': 0.73.3(@babel/preset-env@7.28.3) + '@react-native/codegen': 0.73.3(@babel/preset-env@7.28.5(@babel/core@7.28.5)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - dev: true - /@react-native/babel-preset@0.73.21(@babel/core@7.28.4)(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' + '@react-native/babel-preset@0.73.21(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.28.4) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.28.4) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.4) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4) - '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.28.5) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.28.5) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.5) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.5) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.5) '@babel/template': 7.27.2 - '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.28.3) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4) + '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.28.5(@babel/core@7.28.5)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.5) react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/preset-env' - supports-color - dev: true - /@react-native/codegen@0.73.3(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==} - engines: {node: '>=18'} - peerDependencies: - '@babel/preset-env': ^7.1.6 + '@react-native/codegen@0.73.3(@babel/preset-env@7.28.5(@babel/core@7.28.5))': dependencies: - '@babel/parser': 7.28.4 - '@babel/preset-env': 7.28.3(@babel/core@7.28.4) + '@babel/parser': 7.28.5 + '@babel/preset-env': 7.28.5(@babel/core@7.28.5) flow-parser: 0.206.0 glob: 7.2.3 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.28.3) + jscodeshift: 0.14.0(@babel/preset-env@7.28.5(@babel/core@7.28.5)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - dev: true - /@react-native/community-cli-plugin@0.73.18(@babel/core@7.28.4)(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-RN8piDh/eF+QT6YYmrj3Zd9uiaDsRY/kMT0FYR42j8/M/boE4hs4Xn0u91XzT8CAkU9q/ilyo3wJsXIJo2teww==} - engines: {node: '>=18'} + '@react-native/community-cli-plugin@0.73.18(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)': dependencies: - '@react-native-community/cli-server-api': 12.3.7 - '@react-native-community/cli-tools': 12.3.7 - '@react-native/dev-middleware': 0.73.8 - '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.28.4)(@babel/preset-env@7.28.3) + '@react-native-community/cli-server-api': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-tools': 12.3.7(encoding@0.1.13) + '@react-native/dev-middleware': 0.73.8(encoding@0.1.13) + '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 metro-config: 0.80.12 metro-core: 0.80.12 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -4138,16 +10011,10 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@react-native/debugger-frontend@0.73.3: - resolution: {integrity: sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==} - engines: {node: '>=18'} - dev: true + '@react-native/debugger-frontend@0.73.3': {} - /@react-native/dev-middleware@0.73.8: - resolution: {integrity: sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==} - engines: {node: '>=18'} + '@react-native/dev-middleware@0.73.8(encoding@0.1.13)': dependencies: '@isaacs/ttlcache': 1.4.1 '@react-native/debugger-frontend': 0.73.3 @@ -4155,7 +10022,7 @@ packages: chromium-edge-launcher: 1.0.0 connect: 3.7.0 debug: 2.6.9 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 7.4.2 serve-static: 1.16.2 temp-dir: 2.0.0 @@ -4165,568 +10032,306 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@react-native/gradle-plugin@0.73.5: - resolution: {integrity: sha512-Orrn8J/kqzEuXudl96XcZk84ZcdIpn1ojjwGSuaSQSXNcCYbOXyt0RwtW5kjCqjgSzGnOMsJNZc5FDXHVq/WzA==} - engines: {node: '>=18'} - dev: true + '@react-native/gradle-plugin@0.73.5': {} - /@react-native/js-polyfills@0.73.1: - resolution: {integrity: sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==} - engines: {node: '>=18'} - dev: true + '@react-native/js-polyfills@0.73.1': {} - /@react-native/metro-babel-transformer@0.73.15(@babel/core@7.28.4)(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' + '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))': dependencies: - '@babel/core': 7.28.4 - '@react-native/babel-preset': 0.73.21(@babel/core@7.28.4)(@babel/preset-env@7.28.3) + '@babel/core': 7.28.5 + '@react-native/babel-preset': 0.73.21(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5)) hermes-parser: 0.15.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@babel/preset-env' - supports-color - dev: true - /@react-native/normalize-colors@0.73.2: - resolution: {integrity: sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==} - dev: true + '@react-native/normalize-colors@0.73.2': {} - /@react-native/virtualized-lists@0.73.4(react-native@0.73.11): - resolution: {integrity: sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==} - engines: {node: '>=18'} - peerDependencies: - react-native: '*' + '@react-native/virtualized-lists@0.73.4(react-native@0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0))': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.11(@babel/core@7.28.4)(@babel/preset-env@7.28.3)(react@18.2.0) - dev: true + react-native: 0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0) - /@release-it-plugins/workspaces@4.2.1(release-it@17.1.1): - resolution: {integrity: sha512-lZEARr5tqsFskTPHBLjmYxqfC/DJkWRc0Q/wjOODHW8rtYPhL1w2zv7fwvgSjhFmMp0OdsJOXzkcSkUDvc9NnA==} - engines: {node: '>= 16'} - peerDependencies: - release-it: ^14.0.0 || ^15.2.0 || ^16.0.0 || ^17.0.0 + '@release-it-plugins/workspaces@4.2.1(release-it@17.1.1(typescript@5.9.3))': dependencies: detect-indent: 6.1.0 detect-newline: 3.1.0 - release-it: 17.1.1(typescript@5.9.2) - semver: 7.7.2 + release-it: 17.1.1(typescript@5.9.3) + semver: 7.7.3 url-join: 4.0.1 validate-peer-dependencies: 1.2.0 walk-sync: 2.2.0 - yaml: 2.8.1 - dev: true + yaml: 2.8.2 - /@rolldown/pluginutils@1.0.0-beta.27: - resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} - dev: true + '@rolldown/pluginutils@1.0.0-beta.27': {} - /@rollup/plugin-babel@6.0.4(@babel/core@7.28.4)(rollup@3.29.5): - resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - rollup: - optional: true + '@rolldown/pluginutils@1.0.0-beta.53': {} + + '@rollup/plugin-babel@6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@3.29.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 '@rollup/pluginutils': 5.3.0(rollup@3.29.5) + optionalDependencies: + '@types/babel__core': 7.20.5 rollup: 3.29.5 transitivePeerDependencies: - supports-color - dev: true - /@rollup/plugin-node-resolve@15.3.1(rollup@3.29.5): - resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@15.3.1(rollup@3.29.5)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@3.29.5) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.10 + resolve: 1.22.11 + optionalDependencies: rollup: 3.29.5 - dev: true - /@rollup/plugin-node-resolve@16.0.1(rollup@4.50.2): - resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@16.0.3(rollup@4.53.3)': dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.50.2) + '@rollup/pluginutils': 5.3.0(rollup@4.53.3) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.10 - rollup: 4.50.2 - dev: true + resolve: 1.22.11 + optionalDependencies: + rollup: 4.53.3 - /@rollup/plugin-terser@0.1.0(rollup@3.29.5): - resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.x || ^3.x - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-terser@0.1.0(rollup@3.29.5)': dependencies: + terser: 5.44.1 + optionalDependencies: rollup: 3.29.5 - terser: 5.44.0 - dev: true - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - dev: true - /@rollup/pluginutils@5.3.0(rollup@3.29.5): - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.3.0(rollup@3.29.5)': dependencies: '@types/estree': 1.0.8 estree-walker: 2.0.2 picomatch: 4.0.3 + optionalDependencies: rollup: 3.29.5 - dev: true - /@rollup/pluginutils@5.3.0(rollup@4.50.2): - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.3.0(rollup@4.53.3)': dependencies: '@types/estree': 1.0.8 estree-walker: 2.0.2 picomatch: 4.0.3 - rollup: 4.50.2 - dev: true + optionalDependencies: + rollup: 4.53.3 - /@rollup/rollup-android-arm-eabi@4.50.2: - resolution: {integrity: sha512-uLN8NAiFVIRKX9ZQha8wy6UUs06UNSZ32xj6giK/rmMXAgKahwExvK6SsmgU5/brh4w/nSgj8e0k3c1HBQpa0A==} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm-eabi@4.53.3': optional: true - /@rollup/rollup-android-arm64@4.50.2: - resolution: {integrity: sha512-oEouqQk2/zxxj22PNcGSskya+3kV0ZKH+nQxuCCOGJ4oTXBdNTbv+f/E3c74cNLeMO1S5wVWacSws10TTSB77g==} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm64@4.53.3': optional: true - /@rollup/rollup-darwin-arm64@4.50.2: - resolution: {integrity: sha512-OZuTVTpj3CDSIxmPgGH8en/XtirV5nfljHZ3wrNwvgkT5DQLhIKAeuFSiwtbMto6oVexV0k1F1zqURPKf5rI1Q==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-arm64@4.53.3': optional: true - /@rollup/rollup-darwin-x64@4.50.2: - resolution: {integrity: sha512-Wa/Wn8RFkIkr1vy1k1PB//VYhLnlnn5eaJkfTQKivirOvzu5uVd2It01ukeQstMursuz7S1bU+8WW+1UPXpa8A==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-x64@4.53.3': optional: true - /@rollup/rollup-freebsd-arm64@4.50.2: - resolution: {integrity: sha512-QkzxvH3kYN9J1w7D1A+yIMdI1pPekD+pWx7G5rXgnIlQ1TVYVC6hLl7SOV9pi5q9uIDF9AuIGkuzcbF7+fAhow==} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-arm64@4.53.3': optional: true - /@rollup/rollup-freebsd-x64@4.50.2: - resolution: {integrity: sha512-dkYXB0c2XAS3a3jmyDkX4Jk0m7gWLFzq1C3qUnJJ38AyxIF5G/dyS4N9B30nvFseCfgtCEdbYFhk0ChoCGxPog==} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@rollup/rollup-freebsd-x64@4.53.3': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.50.2: - resolution: {integrity: sha512-9VlPY/BN3AgbukfVHAB8zNFWB/lKEuvzRo1NKev0Po8sYFKx0i+AQlCYftgEjcL43F2h9Ui1ZSdVBc4En/sP2w==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': optional: true - /@rollup/rollup-linux-arm-musleabihf@4.50.2: - resolution: {integrity: sha512-+GdKWOvsifaYNlIVf07QYan1J5F141+vGm5/Y8b9uCZnG/nxoGqgCmR24mv0koIWWuqvFYnbURRqw1lv7IBINw==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-musleabihf@4.53.3': optional: true - /@rollup/rollup-linux-arm64-gnu@4.50.2: - resolution: {integrity: sha512-df0Eou14ojtUdLQdPFnymEQteENwSJAdLf5KCDrmZNsy1c3YaCNaJvYsEUHnrg+/DLBH612/R0xd3dD03uz2dg==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-gnu@4.53.3': optional: true - /@rollup/rollup-linux-arm64-musl@4.50.2: - resolution: {integrity: sha512-iPeouV0UIDtz8j1YFR4OJ/zf7evjauqv7jQ/EFs0ClIyL+by++hiaDAfFipjOgyz6y6xbDvJuiU4HwpVMpRFDQ==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-musl@4.53.3': optional: true - /@rollup/rollup-linux-loong64-gnu@4.50.2: - resolution: {integrity: sha512-OL6KaNvBopLlj5fTa5D5bau4W82f+1TyTZRr2BdnfsrnQnmdxh4okMxR2DcDkJuh4KeoQZVuvHvzuD/lyLn2Kw==} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-loong64-gnu@4.53.3': optional: true - /@rollup/rollup-linux-ppc64-gnu@4.50.2: - resolution: {integrity: sha512-I21VJl1w6z/K5OTRl6aS9DDsqezEZ/yKpbqlvfHbW0CEF5IL8ATBMuUx6/mp683rKTK8thjs/0BaNrZLXetLag==} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-ppc64-gnu@4.53.3': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.50.2: - resolution: {integrity: sha512-Hq6aQJT/qFFHrYMjS20nV+9SKrXL2lvFBENZoKfoTH2kKDOJqff5OSJr4x72ZaG/uUn+XmBnGhfr4lwMRrmqCQ==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-gnu@4.53.3': optional: true - /@rollup/rollup-linux-riscv64-musl@4.50.2: - resolution: {integrity: sha512-82rBSEXRv5qtKyr0xZ/YMF531oj2AIpLZkeNYxmKNN6I2sVE9PGegN99tYDLK2fYHJITL1P2Lgb4ZXnv0PjQvw==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-musl@4.53.3': optional: true - /@rollup/rollup-linux-s390x-gnu@4.50.2: - resolution: {integrity: sha512-4Q3S3Hy7pC6uaRo9gtXUTJ+EKo9AKs3BXKc2jYypEcMQ49gDPFU2P1ariX9SEtBzE5egIX6fSUmbmGazwBVF9w==} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-s390x-gnu@4.53.3': optional: true - /@rollup/rollup-linux-x64-gnu@4.50.2: - resolution: {integrity: sha512-9Jie/At6qk70dNIcopcL4p+1UirusEtznpNtcq/u/C5cC4HBX7qSGsYIcG6bdxj15EYWhHiu02YvmdPzylIZlA==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-gnu@4.53.3': optional: true - /@rollup/rollup-linux-x64-musl@4.50.2: - resolution: {integrity: sha512-HPNJwxPL3EmhzeAnsWQCM3DcoqOz3/IC6de9rWfGR8ZCuEHETi9km66bH/wG3YH0V3nyzyFEGUZeL5PKyy4xvw==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-musl@4.53.3': optional: true - /@rollup/rollup-openharmony-arm64@4.50.2: - resolution: {integrity: sha512-nMKvq6FRHSzYfKLHZ+cChowlEkR2lj/V0jYj9JnGUVPL2/mIeFGmVM2mLaFeNa5Jev7W7TovXqXIG2d39y1KYA==} - cpu: [arm64] - os: [openharmony] - requiresBuild: true - dev: true + '@rollup/rollup-openharmony-arm64@4.53.3': optional: true - /@rollup/rollup-win32-arm64-msvc@4.50.2: - resolution: {integrity: sha512-eFUvvnTYEKeTyHEijQKz81bLrUQOXKZqECeiWH6tb8eXXbZk+CXSG2aFrig2BQ/pjiVRj36zysjgILkqarS2YA==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-arm64-msvc@4.53.3': optional: true - /@rollup/rollup-win32-ia32-msvc@4.50.2: - resolution: {integrity: sha512-cBaWmXqyfRhH8zmUxK3d3sAhEWLrtMjWBRwdMMHJIXSjvjLKvv49adxiEz+FJ8AP90apSDDBx2Tyd/WylV6ikA==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-ia32-msvc@4.53.3': optional: true - /@rollup/rollup-win32-x64-msvc@4.50.2: - resolution: {integrity: sha512-APwKy6YUhvZaEoHyM+9xqmTpviEI+9eL7LoCH+aLcvWYHJ663qG5zx7WzWZY+a9qkg5JtzcMyJ9z0WtQBMDmgA==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-x64-gnu@4.53.3': optional: true - /@sideway/address@4.1.5: - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + '@rollup/rollup-win32-x64-msvc@4.53.3': + optional: true + + '@sideway/address@4.1.5': dependencies: '@hapi/hoek': 9.3.0 - dev: true - /@sideway/formula@3.0.1: - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - dev: true + '@sideway/formula@3.0.1': {} - /@sideway/pinpoint@2.0.0: - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - dev: true + '@sideway/pinpoint@2.0.0': {} - /@sigstore/bundle@1.1.0: - resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@sigstore/bundle@1.1.0': dependencies: '@sigstore/protobuf-specs': 0.2.1 - dev: true - /@sigstore/protobuf-specs@0.2.1: - resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@sigstore/protobuf-specs@0.2.1': {} - /@sigstore/sign@1.0.0: - resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@sigstore/sign@1.0.0': dependencies: '@sigstore/bundle': 1.1.0 '@sigstore/protobuf-specs': 0.2.1 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color - dev: true - /@sigstore/tuf@1.0.3: - resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@sigstore/tuf@1.0.3': dependencies: '@sigstore/protobuf-specs': 0.2.1 tuf-js: 1.1.7 transitivePeerDependencies: - supports-color - dev: true - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - dev: true + '@sinclair/typebox@0.27.8': {} - /@sindresorhus/is@5.6.0: - resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} - engines: {node: '>=14.16'} - dev: true + '@sindresorhus/is@5.6.0': {} - /@sindresorhus/merge-streams@2.3.0: - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - dev: true + '@sindresorhus/merge-streams@2.3.0': {} - /@sindresorhus/slugify@1.1.2: - resolution: {integrity: sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==} - engines: {node: '>=10'} + '@sindresorhus/slugify@1.1.2': dependencies: '@sindresorhus/transliterate': 0.1.2 escape-string-regexp: 4.0.0 - dev: true - /@sindresorhus/transliterate@0.1.2: - resolution: {integrity: sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==} - engines: {node: '>=10'} + '@sindresorhus/transliterate@0.1.2': dependencies: escape-string-regexp: 2.0.0 lodash.deburr: 4.1.0 - dev: true - /@sinonjs/commons@3.0.1: - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 - dev: true - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + '@sinonjs/fake-timers@10.3.0': dependencies: '@sinonjs/commons': 3.0.1 - dev: true - /@solidjs/testing-library@0.8.10(solid-js@1.9.9): - resolution: {integrity: sha512-qdeuIerwyq7oQTIrrKvV0aL9aFeuwTd86VYD3afdq5HYEwoox1OBTJy4y8A3TFZr8oAR0nujYgCzY/8wgHGfeQ==} - engines: {node: '>= 14'} - peerDependencies: - '@solidjs/router': '>=0.9.0' - solid-js: '>=1.0.0' - peerDependenciesMeta: - '@solidjs/router': - optional: true + '@solidjs/testing-library@0.8.10(solid-js@1.9.10)': dependencies: '@testing-library/dom': 10.4.1 - solid-js: 1.9.9 - dev: true + solid-js: 1.9.10 - /@sveltejs/acorn-typescript@1.0.8(acorn@8.15.0): - resolution: {integrity: sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==} - peerDependencies: - acorn: ^8.9.0 + '@standard-schema/spec@1.1.0': {} + + '@sveltejs/acorn-typescript@1.0.8(acorn@8.15.0)': dependencies: acorn: 8.15.0 - dev: true - /@sveltejs/package@2.5.1(svelte@4.2.20)(typescript@5.9.2): - resolution: {integrity: sha512-n0XRW7H7rD2AbdDsTD1KjXBztU96eMMuxPYwL9C+ZS8H8M1mS5NgmqFaSe8wKR40RU1KjLsqSWMnzsxRfG2j+A==} - engines: {node: ^16.14 || >=18} - hasBin: true - peerDependencies: - svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 + '@sveltejs/package@2.5.7(svelte@4.2.20)(typescript@5.9.3)': dependencies: - chokidar: 4.0.3 + chokidar: 5.0.0 kleur: 4.1.5 sade: 1.8.1 - semver: 7.7.2 + semver: 7.7.3 svelte: 4.2.20 - svelte2tsx: 0.7.43(svelte@4.2.20)(typescript@5.9.2) + svelte2tsx: 0.7.45(svelte@4.2.20)(typescript@5.9.3) transitivePeerDependencies: - typescript - dev: true - /@sveltejs/package@2.5.1(svelte@5.46.0)(typescript@5.9.2): - resolution: {integrity: sha512-n0XRW7H7rD2AbdDsTD1KjXBztU96eMMuxPYwL9C+ZS8H8M1mS5NgmqFaSe8wKR40RU1KjLsqSWMnzsxRfG2j+A==} - engines: {node: ^16.14 || >=18} - hasBin: true - peerDependencies: - svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 + '@sveltejs/package@2.5.7(svelte@5.46.0)(typescript@5.9.3)': dependencies: - chokidar: 4.0.3 + chokidar: 5.0.0 kleur: 4.1.5 sade: 1.8.1 - semver: 7.7.2 + semver: 7.7.3 svelte: 5.46.0 - svelte2tsx: 0.7.43(svelte@5.46.0)(typescript@5.9.2) + svelte2tsx: 0.7.45(svelte@5.46.0)(typescript@5.9.3) transitivePeerDependencies: - typescript - dev: true - /@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2)(svelte@4.2.20)(vite@5.4.20): - resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==} - engines: {node: ^18.0.0 || >=20} - peerDependencies: - '@sveltejs/vite-plugin-svelte': ^3.0.0 - svelte: ^4.0.0 || ^5.0.0-next.0 - vite: ^5.0.0 + '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)))(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.20)(vite@5.4.20) + '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) debug: 4.4.3 svelte: 4.2.20 - vite: 5.4.20(sass@1.92.1) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - dev: true - /@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.1.1)(svelte@5.46.0)(vite@7.2.7): - resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22} - peerDependencies: - '@sveltejs/vite-plugin-svelte': ^5.0.0 - svelte: ^5.0.0 - vite: ^6.0.0 + '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.1.1(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)))(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 5.1.1(svelte@5.46.0)(vite@7.2.7) + '@sveltejs/vite-plugin-svelte': 5.1.1(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) debug: 4.4.3 svelte: 5.46.0 - vite: 7.2.7(sass@1.92.1) + vite: 7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - dev: true - /@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@5.4.20): - resolution: {integrity: sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==} - engines: {node: ^18.0.0 || >=20} - peerDependencies: - svelte: ^4.0.0 || ^5.0.0-next.0 - vite: ^5.0.0 + '@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2)(svelte@4.2.20)(vite@5.4.20) + '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)))(svelte@4.2.20)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) debug: 4.4.3 deepmerge: 4.3.1 kleur: 4.1.5 - magic-string: 0.30.19 + magic-string: 0.30.21 svelte: 4.2.20 svelte-hmr: 0.16.0(svelte@4.2.20) - vite: 5.4.20(sass@1.92.1) - vitefu: 0.2.5(vite@5.4.20) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vitefu: 0.2.5(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) transitivePeerDependencies: - supports-color - dev: true - /@sveltejs/vite-plugin-svelte@5.1.1(svelte@5.46.0)(vite@7.2.7): - resolution: {integrity: sha512-Y1Cs7hhTc+a5E9Va/xwKlAJoariQyHY+5zBgCZg4PFWNYQ1nMN9sjK1zhw1gK69DuqVP++sht/1GZg1aRwmAXQ==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22} - peerDependencies: - svelte: ^5.0.0 - vite: ^6.0.0 + '@sveltejs/vite-plugin-svelte@5.1.1(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.1.1)(svelte@5.46.0)(vite@7.2.7) + '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.1.1(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)))(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) debug: 4.4.3 deepmerge: 4.3.1 kleur: 4.1.5 - magic-string: 0.30.19 + magic-string: 0.30.21 svelte: 5.46.0 - vite: 7.2.7(sass@1.92.1) - vitefu: 1.1.1(vite@7.2.7) + vite: 7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vitefu: 1.1.1(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) transitivePeerDependencies: - supports-color - dev: true - /@szmarczak/http-timer@5.0.1: - resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} - engines: {node: '>=14.16'} + '@szmarczak/http-timer@5.0.1': dependencies: defer-to-connect: 2.0.1 - dev: true - /@testing-library/dom@10.4.1: - resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} - engines: {node: '>=18'} + '@tabler/icons@3.36.0': {} + + '@testing-library/dom@10.4.1': dependencies: '@babel/code-frame': 7.27.1 '@babel/runtime': 7.28.4 @@ -4736,11 +10341,8 @@ packages: lz-string: 1.5.0 picocolors: 1.1.1 pretty-format: 27.5.1 - dev: true - /@testing-library/dom@8.20.1: - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} + '@testing-library/dom@8.20.1': dependencies: '@babel/code-frame': 7.27.1 '@babel/runtime': 7.28.4 @@ -4750,11 +10352,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/dom@9.3.4: - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.27.1 '@babel/runtime': 7.28.4 @@ -4764,11 +10363,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/jest-dom@6.8.0: - resolution: {integrity: sha512-WgXcWzVM6idy5JaftTVC8Vs83NKRmGJz4Hqs4oyOuO2J4r/y79vvKZsb+CaGyCSEbUPI6OsewfPd0G1A0/TUZQ==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + '@testing-library/jest-dom@6.9.1': dependencies: '@adobe/css-tools': 4.4.4 aria-query: 5.3.2 @@ -4776,24 +10372,13 @@ packages: dom-accessibility-api: 0.6.3 picocolors: 1.1.1 redent: 3.0.0 - dev: true - /@testing-library/preact@3.2.4(preact@10.27.2): - resolution: {integrity: sha512-F+kJ243LP6VmEK1M809unzTE/ijg+bsMNuiRN0JEDIJBELKKDNhdgC/WrUSZ7klwJvtlO3wQZ9ix+jhObG07Fg==} - engines: {node: '>= 12'} - peerDependencies: - preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0' + '@testing-library/preact@3.2.4(preact@10.28.0)': dependencies: '@testing-library/dom': 8.20.1 - preact: 10.27.2 - dev: true + preact: 10.28.0 - /@testing-library/react@14.3.1(@types/react@18.2.60)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@testing-library/react@14.3.1(@types/react@18.2.60)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@babel/runtime': 7.28.4 '@testing-library/dom': 9.3.4 @@ -4802,1011 +10387,621 @@ packages: react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - dev: true - /@testing-library/svelte@4.2.3(svelte@4.2.20): - resolution: {integrity: sha512-8vM2+JSPc6wZWkO9ICPmHvzacjy8jBw+iVjmNs+0VsPV3AO3v4P8qCLWTaQ9nYW/e+IR1BCy3MM3Uqg21dlBkw==} - engines: {node: '>= 10'} - peerDependencies: - svelte: ^3 || ^4 || ^5 + '@testing-library/svelte@4.2.3(svelte@4.2.20)': dependencies: '@testing-library/dom': 9.3.4 svelte: 4.2.20 - dev: true - /@testing-library/svelte@5.2.9(svelte@5.46.0)(vite@7.2.7)(vitest@3.2.4): - resolution: {integrity: sha512-p0Lg/vL1iEsEasXKSipvW9nBCtItQGhYvxL8OZ4w7/IDdC+LGoSJw4mMS5bndVFON/gWryitEhMr29AlO4FvBg==} - engines: {node: '>= 10'} - peerDependencies: - svelte: ^3 || ^4 || ^5 || ^5.0.0-next.0 - vite: '*' - vitest: '*' - peerDependenciesMeta: - vite: - optional: true - vitest: - optional: true + '@testing-library/svelte@5.2.9(svelte@5.46.0)(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))(vitest@3.2.4(@types/node@25.0.2)(jsdom@25.0.1)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: '@testing-library/dom': 10.4.1 svelte: 5.46.0 - vite: 7.2.7(sass@1.92.1) - vitest: 3.2.4(jsdom@25.0.1)(sass@1.92.1) - dev: true + optionalDependencies: + vite: 7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vitest: 3.2.4(@types/node@25.0.2)(jsdom@25.0.1)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) - /@testing-library/vue@8.1.0(@vue/compiler-sfc@3.5.21)(vue@3.5.21): - resolution: {integrity: sha512-ls4RiHO1ta4mxqqajWRh8158uFObVrrtAPoxk7cIp4HrnQUj/ScKzqz53HxYpG3X6Zb7H2v+0eTGLSoy8HQ2nA==} - engines: {node: '>=14'} - peerDependencies: - '@vue/compiler-sfc': '>= 3' - vue: '>= 3' - peerDependenciesMeta: - '@vue/compiler-sfc': - optional: true + '@testing-library/vue@8.1.0(@vue/compiler-sfc@3.5.25)(@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3))': dependencies: '@babel/runtime': 7.28.4 '@testing-library/dom': 9.3.4 - '@vue/compiler-sfc': 3.5.21 - '@vue/test-utils': 2.4.4(vue@3.5.21) - vue: 3.5.21(typescript@5.9.2) + '@vue/test-utils': 2.4.4(@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) + vue: 3.5.25(typescript@5.9.3) + optionalDependencies: + '@vue/compiler-sfc': 3.5.25 transitivePeerDependencies: - '@vue/server-renderer' - dev: true - /@thednp/dommatrix@2.0.12: - resolution: {integrity: sha512-eOshhlSShBXLfrMQqqhA450TppJXhKriaQdN43mmniOCMn9sD60QKF1Axsj7bKl339WH058LuGFS6H84njYH5w==} - engines: {node: '>=20', pnpm: '>=8.6.0'} - dev: false + '@thednp/dommatrix@2.0.12': {} - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - dev: true + '@tootallnate/once@2.0.0': {} - /@tootallnate/quickjs-emscripten@0.23.0: - resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - dev: true + '@tootallnate/quickjs-emscripten@0.23.0': {} - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - dev: true + '@trysound/sax@0.2.0': {} - /@tsconfig/svelte@5.0.5: - resolution: {integrity: sha512-48fAnUjKye38FvMiNOj0J9I/4XlQQiZlpe9xaNPfe8vy2Y1hFBt8g1yqf2EGjVvHavo4jf2lC+TQyENCr4BJBQ==} - dev: true + '@tsconfig/svelte@5.0.6': {} - /@tufjs/canonical-json@1.0.0: - resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@tufjs/canonical-json@1.0.0': {} - /@tufjs/models@1.0.4: - resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@tufjs/models@1.0.4': dependencies: '@tufjs/canonical-json': 1.0.0 minimatch: 9.0.5 - dev: true - /@types/aria-query@5.0.4: - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - dev: true + '@types/aria-query@5.0.4': {} - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@types/babel__generator': 7.27.0 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.28.0 - dev: true - /@types/babel__generator@7.27.0: - resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + '@types/babel__generator@7.27.0': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 - dev: true + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - /@types/babel__traverse@7.28.0: - resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} + '@types/babel__traverse@7.28.0': dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /@types/chai@5.2.3: - resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 assertion-error: 2.0.1 - dev: true - /@types/deep-eql@4.0.2: - resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} - dev: true + '@types/deep-eql@4.0.2': {} - /@types/estree@1.0.8: - resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} - dev: true + '@types/estree@1.0.8': {} - /@types/http-cache-semantics@4.0.4: - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - dev: true + '@types/http-cache-semantics@4.0.4': {} - /@types/istanbul-lib-coverage@2.0.6: - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - dev: true + '@types/istanbul-lib-coverage@2.0.6': {} - /@types/istanbul-lib-report@3.0.3: - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - dev: true - /@types/istanbul-reports@3.0.4: - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 - dev: true - /@types/minimatch@3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - dev: true + '@types/minimatch@3.0.5': {} - /@types/node-fetch@2.6.13: - resolution: {integrity: sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==} + '@types/node-fetch@2.6.13': dependencies: - '@types/node': 18.19.124 - form-data: 4.0.4 - dev: true + '@types/node': 18.19.130 + form-data: 4.0.5 - /@types/node@16.9.1: - resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==} - dev: true + '@types/node@16.9.1': {} - /@types/node@18.19.124: - resolution: {integrity: sha512-hY4YWZFLs3ku6D2Gqo3RchTd9VRCcrjqp/I0mmohYeUVA5Y8eCXKJEasHxLAJVZRJuQogfd1GiJ9lgogBgKeuQ==} + '@types/node@18.19.130': dependencies: undici-types: 5.26.5 - dev: true - /@types/node@24.4.0: - resolution: {integrity: sha512-gUuVEAK4/u6F9wRLznPUU4WGUacSEBDPoC2TrBkw3GAnOLHBL45QdfHOXp1kJ4ypBGLxTOB+t7NJLpKoC3gznQ==} + '@types/node@25.0.2': dependencies: - undici-types: 7.11.0 - dev: true + undici-types: 7.16.0 - /@types/prop-types@15.7.15: - resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} - dev: true + '@types/prop-types@15.7.15': {} - /@types/pug@2.0.10: - resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} - dev: true + '@types/pug@2.0.10': {} - /@types/react-dom@18.3.7(@types/react@18.2.60): - resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} - peerDependencies: - '@types/react': ^18.0.0 + '@types/react-dom@18.3.7(@types/react@18.2.60)': dependencies: '@types/react': 18.2.60 - dev: true - /@types/react@18.2.60: - resolution: {integrity: sha512-dfiPj9+k20jJrLGOu9Nf6eqxm2EyJRrq2NvwOFsfbb7sFExZ9WELPs67UImHj3Ayxg8ruTtKtNnbjaF8olPq0A==} + '@types/react@18.2.60': dependencies: '@types/prop-types': 15.7.15 '@types/scheduler': 0.26.0 - csstype: 3.1.3 - dev: true + csstype: 3.2.3 - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - dev: true + '@types/resolve@1.20.2': {} - /@types/sax@1.2.7: - resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + '@types/sax@1.2.7': dependencies: - '@types/node': 24.4.0 - dev: true + '@types/node': 25.0.2 - /@types/scheduler@0.26.0: - resolution: {integrity: sha512-WFHp9YUJQ6CKshqoC37iOlHnQSmxNc795UhB26CyBBttrN9svdIrUjl/NjnNmfcwtncN0h/0PPAFWv9ovP8mLA==} - dev: true + '@types/scheduler@0.26.0': {} - /@types/stack-utils@2.0.3: - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - dev: true + '@types/stack-utils@2.0.3': {} - /@types/yargs-parser@21.0.3: - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - dev: true + '@types/yargs-parser@21.0.3': {} - /@types/yargs@15.0.19: - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + '@types/yargs@15.0.20': dependencies: '@types/yargs-parser': 21.0.3 - dev: true - /@types/yargs@17.0.33: - resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} + '@types/yargs@17.0.35': dependencies: '@types/yargs-parser': 21.0.3 - dev: true - /@vitejs/plugin-react@4.7.0(vite@7.2.7): - resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + '@vitejs/plugin-react@4.7.0(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5) '@rolldown/pluginutils': 1.0.0-beta.27 '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 7.2.7(sass@1.92.1) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - dev: true - /@vitejs/plugin-vue@5.2.4(vite@5.4.20)(vue@3.5.21): - resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==} - engines: {node: ^18.0.0 || >=20.0.0} - peerDependencies: - vite: ^5.0.0 || ^6.0.0 - vue: ^3.2.25 + '@vitejs/plugin-react@5.1.2(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: - vite: 5.4.20(sass@1.92.1) - vue: 3.5.21(typescript@5.9.2) - dev: true + '@babel/core': 7.28.5 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5) + '@rolldown/pluginutils': 1.0.0-beta.53 + '@types/babel__core': 7.20.5 + react-refresh: 0.18.0 + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + transitivePeerDependencies: + - supports-color - /@vitest/expect@1.6.1: - resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==} + '@vitejs/plugin-vue@6.0.3(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3))': dependencies: - '@vitest/spy': 1.6.1 - '@vitest/utils': 1.6.1 - chai: 4.5.0 - dev: true + '@rolldown/pluginutils': 1.0.0-beta.53 + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vue: 3.5.25(typescript@5.9.3) - /@vitest/expect@3.2.4: - resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + '@vitest/expect@3.2.4': dependencies: '@types/chai': 5.2.3 '@vitest/spy': 3.2.4 '@vitest/utils': 3.2.4 chai: 5.3.3 tinyrainbow: 2.0.0 - dev: true - /@vitest/mocker@3.2.4(vite@7.2.7): - resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} - peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true + '@vitest/expect@4.0.16': + dependencies: + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.0.16 + '@vitest/utils': 4.0.16 + chai: 6.2.1 + tinyrainbow: 3.0.3 + + '@vitest/mocker@3.2.4(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 - magic-string: 0.30.19 - vite: 7.2.7(sass@1.92.1) - dev: true + magic-string: 0.30.21 + optionalDependencies: + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) - /@vitest/pretty-format@3.2.4: - resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + '@vitest/mocker@4.0.16(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2))': + dependencies: + '@vitest/spy': 4.0.16 + estree-walker: 3.0.3 + magic-string: 0.30.21 + optionalDependencies: + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + + '@vitest/pretty-format@3.2.4': dependencies: tinyrainbow: 2.0.0 - dev: true - /@vitest/runner@1.6.1: - resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==} + '@vitest/pretty-format@4.0.16': dependencies: - '@vitest/utils': 1.6.1 - p-limit: 5.0.0 - pathe: 1.1.2 - dev: true + tinyrainbow: 3.0.3 - /@vitest/runner@3.2.4: - resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + '@vitest/runner@3.2.4': dependencies: '@vitest/utils': 3.2.4 pathe: 2.0.3 strip-literal: 3.1.0 - dev: true - /@vitest/snapshot@1.6.1: - resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==} + '@vitest/runner@4.0.16': dependencies: - magic-string: 0.30.19 - pathe: 1.1.2 - pretty-format: 29.7.0 - dev: true + '@vitest/utils': 4.0.16 + pathe: 2.0.3 - /@vitest/snapshot@3.2.4: - resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + '@vitest/snapshot@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 - magic-string: 0.30.19 + magic-string: 0.30.21 pathe: 2.0.3 - dev: true - /@vitest/spy@1.6.1: - resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==} + '@vitest/snapshot@4.0.16': dependencies: - tinyspy: 2.2.1 - dev: true + '@vitest/pretty-format': 4.0.16 + magic-string: 0.30.21 + pathe: 2.0.3 - /@vitest/spy@3.2.4: - resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + '@vitest/spy@3.2.4': dependencies: tinyspy: 4.0.4 - dev: true - /@vitest/utils@1.6.1: - resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==} - dependencies: - diff-sequences: 29.6.3 - estree-walker: 3.0.3 - loupe: 2.3.7 - pretty-format: 29.7.0 - dev: true + '@vitest/spy@4.0.16': {} - /@vitest/utils@3.2.4: - resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + '@vitest/utils@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 loupe: 3.2.1 tinyrainbow: 2.0.0 - dev: true - /@volar/language-core@1.11.1: - resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==} + '@vitest/utils@4.0.16': dependencies: - '@volar/source-map': 1.11.1 - dev: true + '@vitest/pretty-format': 4.0.16 + tinyrainbow: 3.0.3 - /@volar/source-map@1.11.1: - resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==} + '@volar/language-core@2.4.26': dependencies: - muggle-string: 0.3.1 - dev: true + '@volar/source-map': 2.4.26 - /@volar/typescript@1.11.1: - resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==} + '@volar/source-map@2.4.26': {} + + '@volar/typescript@2.4.26': dependencies: - '@volar/language-core': 1.11.1 + '@volar/language-core': 2.4.26 path-browserify: 1.0.1 - dev: true + vscode-uri: 3.1.0 - /@vue/compiler-core@3.5.21: - resolution: {integrity: sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==} + '@vue/compiler-core@3.5.25': dependencies: - '@babel/parser': 7.28.4 - '@vue/shared': 3.5.21 + '@babel/parser': 7.28.5 + '@vue/shared': 3.5.25 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - /@vue/compiler-dom@3.5.21: - resolution: {integrity: sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==} + '@vue/compiler-dom@3.5.25': dependencies: - '@vue/compiler-core': 3.5.21 - '@vue/shared': 3.5.21 + '@vue/compiler-core': 3.5.25 + '@vue/shared': 3.5.25 - /@vue/compiler-sfc@3.5.21: - resolution: {integrity: sha512-SXlyk6I5eUGBd2v8Ie7tF6ADHE9kCR6mBEuPyH1nUZ0h6Xx6nZI29i12sJKQmzbDyr2tUHMhhTt51Z6blbkTTQ==} + '@vue/compiler-sfc@3.5.25': dependencies: - '@babel/parser': 7.28.4 - '@vue/compiler-core': 3.5.21 - '@vue/compiler-dom': 3.5.21 - '@vue/compiler-ssr': 3.5.21 - '@vue/shared': 3.5.21 + '@babel/parser': 7.28.5 + '@vue/compiler-core': 3.5.25 + '@vue/compiler-dom': 3.5.25 + '@vue/compiler-ssr': 3.5.25 + '@vue/shared': 3.5.25 estree-walker: 2.0.2 - magic-string: 0.30.19 + magic-string: 0.30.21 postcss: 8.5.6 source-map-js: 1.2.1 - /@vue/compiler-ssr@3.5.21: - resolution: {integrity: sha512-vKQ5olH5edFZdf5ZrlEgSO1j1DMA4u23TVK5XR1uMhvwnYvVdDF0nHXJUblL/GvzlShQbjhZZ2uvYmDlAbgo9w==} + '@vue/compiler-ssr@3.5.25': dependencies: - '@vue/compiler-dom': 3.5.21 - '@vue/shared': 3.5.21 + '@vue/compiler-dom': 3.5.25 + '@vue/shared': 3.5.25 - /@vue/language-core@1.8.27(typescript@5.9.2): - resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@vue/language-core@3.1.8(typescript@5.9.3)': dependencies: - '@volar/language-core': 1.11.1 - '@volar/source-map': 1.11.1 - '@vue/compiler-dom': 3.5.21 - '@vue/shared': 3.5.21 - computeds: 0.0.1 - minimatch: 9.0.5 - muggle-string: 0.3.1 + '@volar/language-core': 2.4.26 + '@vue/compiler-dom': 3.5.25 + '@vue/shared': 3.5.25 + alien-signals: 3.1.1 + muggle-string: 0.4.1 path-browserify: 1.0.1 - typescript: 5.9.2 - vue-template-compiler: 2.7.16 - dev: true + picomatch: 4.0.3 + optionalDependencies: + typescript: 5.9.3 - /@vue/reactivity@3.5.21: - resolution: {integrity: sha512-3ah7sa+Cwr9iiYEERt9JfZKPw4A2UlbY8RbbnH2mGCE8NwHkhmlZt2VsH0oDA3P08X3jJd29ohBDtX+TbD9AsA==} + '@vue/reactivity@3.5.25': dependencies: - '@vue/shared': 3.5.21 + '@vue/shared': 3.5.25 - /@vue/runtime-core@3.5.21: - resolution: {integrity: sha512-+DplQlRS4MXfIf9gfD1BOJpk5RSyGgGXD/R+cumhe8jdjUcq/qlxDawQlSI8hCKupBlvM+3eS1se5xW+SuNAwA==} + '@vue/runtime-core@3.5.25': dependencies: - '@vue/reactivity': 3.5.21 - '@vue/shared': 3.5.21 + '@vue/reactivity': 3.5.25 + '@vue/shared': 3.5.25 - /@vue/runtime-dom@3.5.21: - resolution: {integrity: sha512-3M2DZsOFwM5qI15wrMmNF5RJe1+ARijt2HM3TbzBbPSuBHOQpoidE+Pa+XEaVN+czbHf81ETRoG1ltztP2em8w==} + '@vue/runtime-dom@3.5.25': dependencies: - '@vue/reactivity': 3.5.21 - '@vue/runtime-core': 3.5.21 - '@vue/shared': 3.5.21 - csstype: 3.1.3 + '@vue/reactivity': 3.5.25 + '@vue/runtime-core': 3.5.25 + '@vue/shared': 3.5.25 + csstype: 3.2.3 - /@vue/server-renderer@3.5.21(vue@3.5.21): - resolution: {integrity: sha512-qr8AqgD3DJPJcGvLcJKQo2tAc8OnXRcfxhOJCPF+fcfn5bBGz7VCcO7t+qETOPxpWK1mgysXvVT/j+xWaHeMWA==} - peerDependencies: - vue: 3.5.21 + '@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3))': dependencies: - '@vue/compiler-ssr': 3.5.21 - '@vue/shared': 3.5.21 - vue: 3.5.21(typescript@5.9.2) + '@vue/compiler-ssr': 3.5.25 + '@vue/shared': 3.5.25 + vue: 3.5.25(typescript@5.9.3) - /@vue/shared@3.5.21: - resolution: {integrity: sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==} + '@vue/shared@3.5.25': {} - /@vue/test-utils@2.4.4(vue@3.5.21): - resolution: {integrity: sha512-8jkRxz8pNhClAf4Co4ZrpAoFISdvT3nuSkUlY6Ys6rmTpw3DMWG/X3mw3gQ7QJzgCZO9f+zuE2kW57fi09MW7Q==} - peerDependencies: - '@vue/server-renderer': ^3.0.1 - vue: ^3.0.1 - peerDependenciesMeta: - '@vue/server-renderer': - optional: true + '@vue/test-utils@2.4.4(@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3))': dependencies: js-beautify: 1.15.4 - vue: 3.5.21(typescript@5.9.2) + vue: 3.5.25(typescript@5.9.3) vue-component-type-helpers: 1.8.27 - dev: true + optionalDependencies: + '@vue/server-renderer': 3.5.25(vue@3.5.25(typescript@5.9.3)) - /@xmldom/xmldom@0.7.13: - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - deprecated: this version is no longer supported, please update to at least 0.8.* - dev: true + '@xmldom/xmldom@0.7.13': {} - /a-sync-waterfall@1.0.1: - resolution: {integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==} - dev: true + a-sync-waterfall@1.0.1: {} - /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - dev: true + abbrev@1.1.1: {} - /abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + abbrev@2.0.0: {} - /abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} + abort-controller@3.0.0: dependencies: event-target-shim: 5.0.1 - dev: true - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - dev: true - /acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} - engines: {node: '>=0.4.0'} - dependencies: - acorn: 8.15.0 - dev: true + acorn@7.4.1: {} - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true + acorn@8.15.0: {} - /acorn@8.15.0: - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true + adm-zip@0.5.16: {} - /adm-zip@0.5.16: - resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==} - engines: {node: '>=12.0'} - dev: true - - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + agent-base@6.0.2: dependencies: debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /agent-base@7.1.4: - resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} - engines: {node: '>= 14'} - dev: true + agent-base@7.1.4: {} - /agentkeepalive@4.6.0: - resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} - engines: {node: '>= 8.0.0'} + agentkeepalive@4.6.0: dependencies: humanize-ms: 1.2.1 - dev: true - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - dev: true - /anser@1.4.10: - resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} - dev: true + alien-signals@3.1.1: {} - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + anser@1.4.10: {} + + ansi-align@3.0.1: dependencies: string-width: 4.2.3 - dev: true - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - dev: true - /ansi-fragments@0.2.1: - resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + ansi-fragments@0.2.1: dependencies: colorette: 1.4.0 slice-ansi: 2.1.0 strip-ansi: 5.2.0 - dev: true - /ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} - dev: true + ansi-regex@4.1.1: {} - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - dev: true + ansi-regex@5.0.1: {} - /ansi-regex@6.2.2: - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} - engines: {node: '>=12'} - dev: true + ansi-regex@6.2.2: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - dev: true - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - dev: true - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - dev: true + ansi-styles@5.2.0: {} - /ansi-styles@6.2.3: - resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} - engines: {node: '>=12'} - dev: true + ansi-styles@6.2.3: {} - /any-base@1.1.0: - resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==} - dev: true + any-base@1.1.0: {} - /any-promise@0.1.0: - resolution: {integrity: sha512-lqzY9o+BbeGHRCOyxQkt/Tgvz0IZhTmQiA+LxQW8wSNpcTbj8K+0cZiSEvbpNZZP9/11Gy7dnLO3GNWUXO4d1g==} - dev: true + any-promise@0.1.0: {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - dev: true - /appdirsjs@1.2.7: - resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} - dev: true + appdirsjs@1.2.7: {} - /aproba@2.1.0: - resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==} - dev: true + aproba@2.1.0: {} - /are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + are-we-there-yet@3.0.1: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - dev: true - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - dev: true - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true + argparse@2.0.1: {} - /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + aria-query@5.1.3: dependencies: deep-equal: 2.2.3 - dev: true - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.0: dependencies: dequal: 2.0.3 - dev: true - /aria-query@5.3.2: - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} - engines: {node: '>= 0.4'} - dev: true + aria-query@5.3.2: {} - /array-buffer-byte-length@1.0.2: - resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} - engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.2: dependencies: call-bound: 1.0.4 is-array-buffer: 3.0.5 - dev: true - /array-differ@1.0.0: - resolution: {integrity: sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==} - engines: {node: '>=0.10.0'} - dev: true + array-differ@1.0.0: {} - /array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - dev: true + array-differ@3.0.0: {} - /array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - dev: true + array-find-index@1.0.2: {} - /array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} + array-union@1.0.2: dependencies: array-uniq: 1.0.3 - dev: true - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - dev: true + array-union@2.1.0: {} - /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} - dev: true + array-uniq@1.0.3: {} - /array.prototype.map@1.0.8: - resolution: {integrity: sha512-YocPM7bYYu2hXGxWpb5vwZ8cMeudNHYtYBcUDY4Z1GWa53qcnQMWSl25jeBHNzitjl9HW2AWW4ro/S/nftUaOQ==} - engines: {node: '>= 0.4'} + array.prototype.map@1.0.8: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-array-method-boxes-properly: 1.0.0 es-object-atoms: 1.1.1 is-string: 1.1.1 - dev: true - /arraybuffer.prototype.slice@1.0.4: - resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.4: dependencies: array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 - dev: true - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true + arrify@1.0.1: {} - /arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - dev: true + arrify@2.0.1: {} - /asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - dev: true + asap@2.0.6: {} - /assert-never@1.4.0: - resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==} - dev: true + assert-never@1.4.0: {} - /assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - dev: true + assertion-error@2.0.1: {} - /assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} - engines: {node: '>=12'} - dev: true - - /ast-types@0.13.4: - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} - engines: {node: '>=4'} + ast-types@0.13.4: dependencies: tslib: 2.8.1 - dev: true - /ast-types@0.15.2: - resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} - engines: {node: '>=4'} + ast-types@0.15.2: dependencies: tslib: 2.8.1 - dev: true - /astral-regex@1.0.0: - resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} - engines: {node: '>=4'} - dev: true + astral-regex@1.0.0: {} - /async-function@1.0.0: - resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} - engines: {node: '>= 0.4'} - dev: true + async-function@1.0.0: {} - /async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - dev: true + async-limiter@1.0.1: {} - /async-retry@1.3.3: - resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} + async-retry@1.3.3: dependencies: retry: 0.13.1 - dev: true - /async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - dev: true + async@3.2.6: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - dev: true + asynckit@0.4.0: {} - /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.1.0 - dev: true - /axobject-query@4.1.0: - resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} - engines: {node: '>= 0.4'} - dev: true + axobject-query@4.1.0: {} - /babel-core@7.0.0-bridge.0(@babel/core@7.28.4): - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-core@7.0.0-bridge.0(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 - dev: true + '@babel/core': 7.28.5 - /babel-plugin-jsx-dom-expressions@0.40.1(@babel/core@7.28.4): - resolution: {integrity: sha512-b4iHuirqK7RgaMzB2Lsl7MqrlDgQtVRSSazyrmx7wB3T759ggGjod5Rkok5MfHjQXhR7tRPmdwoeGPqBnW2KfA==} - peerDependencies: - '@babel/core': ^7.20.12 + babel-plugin-jsx-dom-expressions@0.40.3(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/types': 7.28.4 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/types': 7.28.5 html-entities: 2.3.3 parse5: 7.3.0 - validate-html-nesting: 1.2.3 - dev: true - /babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4): - resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5): dependencies: - '@babel/compat-data': 7.28.4 - '@babel/core': 7.28.4 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) + '@babel/compat-data': 7.28.5 + '@babel/core': 7.28.5 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4): - resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) - core-js-compat: 3.45.1 + '@babel/core': 7.28.5 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) + core-js-compat: 3.47.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4): - resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5) transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.4): - resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.5): dependencies: - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.5) transitivePeerDependencies: - '@babel/core' - dev: true - /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.28.4): - resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} - peerDependencies: - '@babel/core': ^7.12.10 + babel-plugin-transform-hook-names@1.0.2(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 - dev: true + '@babel/core': 7.28.5 - /babel-preset-solid@1.9.9(@babel/core@7.28.4)(solid-js@1.9.9): - resolution: {integrity: sha512-pCnxWrciluXCeli/dj5PIEHgbNzim3evtTn12snjqqg8QZWJNMjH1AWIp4iG/tbVjqQ72aBEymMSagvmgxubXw==} - peerDependencies: - '@babel/core': ^7.0.0 - solid-js: ^1.9.8 - peerDependenciesMeta: - solid-js: - optional: true + babel-preset-solid@1.9.10(@babel/core@7.28.5)(solid-js@1.9.10): dependencies: - '@babel/core': 7.28.4 - babel-plugin-jsx-dom-expressions: 0.40.1(@babel/core@7.28.4) - solid-js: 1.9.9 - dev: true + '@babel/core': 7.28.5 + babel-plugin-jsx-dom-expressions: 0.40.3(@babel/core@7.28.5) + optionalDependencies: + solid-js: 1.9.10 - /babel-walk@3.0.0-canary-5: - resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} - engines: {node: '>= 10.0.0'} + babel-walk@3.0.0-canary-5: dependencies: - '@babel/types': 7.28.4 - dev: true + '@babel/types': 7.28.5 - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - dev: true + balanced-match@1.0.2: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - dev: true + base64-js@1.5.1: {} - /baseline-browser-mapping@2.8.4: - resolution: {integrity: sha512-L+YvJwGAgwJBV1p6ffpSTa2KRc69EeeYGYjRVWKs0GKrK+LON0GC0gV+rKSNtALEDvMDqkvCFq9r1r94/Gjwxw==} - hasBin: true - dev: true + baseline-browser-mapping@2.9.7: {} - /basic-ftp@5.0.5: - resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} - engines: {node: '>=10.0.0'} - dev: true + basic-ftp@5.0.5: {} - /bcp-47-match@1.0.3: - resolution: {integrity: sha512-LggQ4YTdjWQSKELZF5JwchnBa1u0pIQSZf5lSdOHEdbVP55h0qICA/FUp3+W99q0xqxYa1ZQizTUH87gecII5w==} - dev: true + bcp-47-match@1.0.3: {} - /bcp-47-normalize@1.1.1: - resolution: {integrity: sha512-jWZ1Jdu3cs0EZdfCkS0UE9Gg01PtxnChjEBySeB+Zo6nkqtFfnvtoQQgP1qU1Oo4qgJgxhTI6Sf9y/pZIhPs0A==} + bcp-47-normalize@1.1.1: dependencies: bcp-47: 1.0.8 bcp-47-match: 1.0.3 - dev: true - /bcp-47@1.0.8: - resolution: {integrity: sha512-Y9y1QNBBtYtv7hcmoX0tR+tUNSFZGZ6OL6vKPObq8BbOhkCoyayF6ogfLTgAli/KuAEbsYHYUNq2AQuY6IuLag==} + bcp-47@1.0.8: dependencies: is-alphabetical: 1.0.4 is-alphanumerical: 1.0.4 is-decimal: 1.0.4 - dev: true - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true + before-after-hook@2.2.3: {} - /binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} - dev: true + binary-extensions@2.3.0: {} - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /bmp-js@0.1.0: - resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==} - dev: true + bmp-js@0.1.0: {} - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: true + boolbase@1.0.0: {} - /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} + boxen@5.1.2: dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -5816,11 +11011,8 @@ packages: type-fest: 0.20.2 widest-line: 3.1.0 wrap-ansi: 7.0.0 - dev: true - /boxen@7.1.1: - resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} - engines: {node: '>=14.16'} + boxen@7.1.1: dependencies: ansi-align: 3.0.1 camelcase: 7.0.1 @@ -5830,94 +11022,56 @@ packages: type-fest: 2.19.0 widest-line: 4.0.1 wrap-ansi: 8.1.0 - dev: true - /brace-expansion@1.1.12: - resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + brace-expansion@1.1.12: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - dev: true - /brace-expansion@2.0.2: - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@2.0.2: dependencies: balanced-match: 1.0.2 - dev: true - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - dev: true - /brotli-size@4.0.0: - resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==} - engines: {node: '>= 10.16.0'} + brotli-size@4.0.0: dependencies: duplexer: 0.1.1 - dev: true - /browserslist@4.26.0: - resolution: {integrity: sha512-P9go2WrP9FiPwLv3zqRD/Uoxo0RSHjzFCiQz7d4vbmwNqQFo9T9WCeP/Qn5EbcKQY6DBbkxEXNcpJOmncNrb7A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.8.4 - caniuse-lite: 1.0.30001741 - electron-to-chromium: 1.5.218 - node-releases: 2.0.21 - update-browserslist-db: 1.1.3(browserslist@4.26.0) - dev: true + baseline-browser-mapping: 2.9.7 + caniuse-lite: 1.0.30001760 + electron-to-chromium: 1.5.267 + node-releases: 2.0.27 + update-browserslist-db: 1.2.2(browserslist@4.28.1) - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + bser@2.1.1: dependencies: node-int64: 0.4.0 - dev: true - /buffer-crc32@1.0.0: - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} - engines: {node: '>=8.0.0'} - dev: true + buffer-crc32@1.0.0: {} - /buffer-equal@0.0.1: - resolution: {integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==} - engines: {node: '>=0.4.0'} - dev: true + buffer-equal@0.0.1: {} - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - dev: true + buffer-from@1.1.2: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: true - /bundle-name@4.1.0: - resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} - engines: {node: '>=18'} + bundle-name@4.1.0: dependencies: run-applescript: 7.1.0 - dev: true - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - dev: true + bytes@3.1.2: {} - /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - dev: true + cac@6.7.14: {} - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + cacache@16.1.3: dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 @@ -5939,11 +11093,8 @@ packages: unique-filename: 2.0.1 transitivePeerDependencies: - bluebird - dev: true - /cacache@17.1.4: - resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + cacache@17.1.4: dependencies: '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 @@ -5957,16 +11108,10 @@ packages: ssri: 10.0.6 tar: 6.2.1 unique-filename: 3.0.0 - dev: true - /cacheable-lookup@7.0.0: - resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} - engines: {node: '>=14.16'} - dev: true + cacheable-lookup@7.0.0: {} - /cacheable-request@10.2.14: - resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} - engines: {node: '>=14.16'} + cacheable-request@10.2.14: dependencies: '@types/http-cache-semantics': 4.0.4 get-stream: 6.0.1 @@ -5975,152 +11120,81 @@ packages: mimic-response: 4.0.0 normalize-url: 8.1.0 responselike: 3.0.0 - dev: true - /call-bind-apply-helpers@1.0.2: - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} - engines: {node: '>= 0.4'} + call-bind-apply-helpers@1.0.2: dependencies: es-errors: 1.3.0 function-bind: 1.1.2 - dev: true - /call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} - engines: {node: '>= 0.4'} + call-bind@1.0.8: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 get-intrinsic: 1.3.0 set-function-length: 1.2.2 - dev: true - /call-bound@1.0.4: - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} - engines: {node: '>= 0.4'} + call-bound@1.0.4: dependencies: call-bind-apply-helpers: 1.0.2 get-intrinsic: 1.3.0 - dev: true - /caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} + caller-callsite@2.0.0: dependencies: callsites: 2.0.0 - dev: true - /caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} + caller-path@2.0.0: dependencies: caller-callsite: 2.0.0 - dev: true - /callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} - dev: true + callsites@2.0.0: {} - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - dev: true + callsites@3.1.0: {} - /camel-case@3.0.0: - resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + camel-case@3.0.0: dependencies: no-case: 2.3.2 upper-case: 1.1.3 - dev: true - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - dev: true + camelcase@5.3.1: {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - dev: true + camelcase@6.3.0: {} - /camelcase@7.0.1: - resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} - engines: {node: '>=14.16'} - dev: true + camelcase@7.0.1: {} - /caniuse-lite@1.0.30001741: - resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} - dev: true + caniuse-lite@1.0.30001760: {} - /centra@2.7.0: - resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==} + centra@2.7.0: dependencies: follow-redirects: 1.15.11 transitivePeerDependencies: - debug - dev: true - /chai@4.5.0: - resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} - engines: {node: '>=4'} - dependencies: - assertion-error: 1.1.0 - check-error: 1.0.3 - deep-eql: 4.1.4 - get-func-name: 2.0.2 - loupe: 2.3.7 - pathval: 1.1.1 - type-detect: 4.1.0 - dev: true - - /chai@5.3.3: - resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} - engines: {node: '>=18'} + chai@5.3.3: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 loupe: 3.2.1 pathval: 2.0.1 - dev: true - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chai@6.2.1: {} + + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - dev: true + chalk@5.3.0: {} - /character-parser@2.2.0: - resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} + character-parser@2.2.0: dependencies: is-regex: 1.2.1 - dev: true - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true + chardet@0.7.0: {} - /check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} - dependencies: - get-func-name: 2.0.2 - dev: true + check-error@2.1.1: {} - /check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} - dev: true - - /cheerio-select@2.1.0: - resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + cheerio-select@2.1.0: dependencies: boolbase: 1.0.0 css-select: 5.2.2 @@ -6128,11 +11202,8 @@ packages: domelementtype: 2.3.0 domhandler: 5.0.3 domutils: 3.2.2 - dev: true - /cheerio@1.1.2: - resolution: {integrity: sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==} - engines: {node: '>=20.18.1'} + cheerio@1.1.2: dependencies: cheerio-select: 2.1.0 dom-serializer: 2.0.0 @@ -6145,11 +11216,8 @@ packages: parse5-parser-stream: 7.1.2 undici: 7.16.0 whatwg-mimetype: 4.0.0 - dev: true - /chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -6160,37 +11228,29 @@ packages: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 - dev: true - /chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} - engines: {node: '>= 14.16.0'} + chokidar@4.0.3: dependencies: readdirp: 4.1.2 - dev: true - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - dev: true - - /chrome-launcher@0.15.2: - resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} - engines: {node: '>=12.13.0'} - hasBin: true + chokidar@5.0.0: dependencies: - '@types/node': 24.4.0 + readdirp: 5.0.0 + + chownr@2.0.0: {} + + chrome-launcher@0.15.2: + dependencies: + '@types/node': 25.0.2 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 transitivePeerDependencies: - supports-color - dev: true - /chromium-edge-launcher@1.0.0: - resolution: {integrity: sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==} + chromium-edge-launcher@1.0.0: dependencies: - '@types/node': 24.4.0 + '@types/node': 25.0.2 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -6198,217 +11258,120 @@ packages: rimraf: 3.0.2 transitivePeerDependencies: - supports-color - dev: true - /ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - dev: true + ci-info@2.0.0: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - dev: true + ci-info@3.9.0: {} - /clean-css@4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} + clean-css@4.2.4: dependencies: source-map: 0.6.1 - dev: true - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - dev: true + clean-stack@2.2.0: {} - /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} - dev: true + cli-boxes@2.2.1: {} - /cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: '>=10'} - dev: true + cli-boxes@3.0.0: {} - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 - dev: true - /cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + cli-cursor@4.0.0: dependencies: restore-cursor: 4.0.0 - dev: true - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.9.2: {} - /cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: '>= 12'} - dev: true + cli-width@4.1.0: {} - /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@6.0.0: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - dev: true + clone@1.0.4: {} - /clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - dev: true + clsx@2.1.1: {} - /code-red@1.0.4: - resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} + code-red@1.0.4: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 '@types/estree': 1.0.8 acorn: 8.15.0 estree-walker: 3.0.3 periscopic: 3.1.0 - dev: true - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - dev: true - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - dev: true + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + color-string@1.9.1: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.4 - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - dev: true + color-support@1.1.3: {} - /color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} + color@4.2.3: dependencies: color-convert: 2.0.1 color-string: 1.9.1 - /colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - dev: true + colorette@1.4.0: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - dev: true + colorette@2.0.20: {} - /colors@1.4.0: - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} - engines: {node: '>=0.1.90'} - dev: true + colors@1.4.0: {} - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - dev: true - /command-exists@1.2.9: - resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} - dev: true + command-exists@1.2.9: {} - /commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} - dev: true + commander@10.0.1: {} - /commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} - engines: {node: '>=18'} - dev: true + commander@12.1.0: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - dev: true + commander@2.20.3: {} - /commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} - dev: true + commander@5.1.0: {} - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - dev: true + commander@7.2.0: {} - /commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} - engines: {node: ^12.20.0 || >=14} - dev: true + commander@9.5.0: {} - /commenting@1.1.0: - resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==} - dev: true + commenting@1.1.0: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - dev: true + commondir@1.0.1: {} - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + compressible@2.0.18: dependencies: mime-db: 1.54.0 - dev: true - /compression@1.8.1: - resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} - engines: {node: '>= 0.8.0'} + compression@1.8.1: dependencies: bytes: 3.1.2 compressible: 2.0.18 @@ -6419,41 +11382,23 @@ packages: vary: 1.1.2 transitivePeerDependencies: - supports-color - dev: true - /computeds@0.0.1: - resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==} - dev: true + concat-map@0.0.1: {} - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - dev: true - - /confbox@0.1.8: - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} - dev: true - - /config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + config-chain@1.1.13: dependencies: ini: 1.3.8 proto-list: 1.2.4 - dev: true - /configstore@6.0.0: - resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} - engines: {node: '>=12'} + configstore@6.0.0: dependencies: dot-prop: 6.0.1 graceful-fs: 4.2.11 unique-string: 3.0.0 write-file-atomic: 3.0.3 xdg-basedir: 5.1.0 - dev: true - /connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} + connect@3.7.0: dependencies: debug: 2.6.9 finalhandler: 1.1.2 @@ -6461,261 +11406,142 @@ packages: utils-merge: 1.0.1 transitivePeerDependencies: - supports-color - dev: true - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - dev: true + console-control-strings@1.1.0: {} - /constantinople@4.0.1: - resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} + constantinople@4.0.1: dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 - dev: true + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true + convert-source-map@2.0.0: {} - /core-js-compat@3.45.1: - resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==} + core-js-compat@3.47.0: dependencies: - browserslist: 4.26.0 - dev: true + browserslist: 4.28.1 - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - dev: true + core-util-is@1.0.3: {} - /cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} + cosmiconfig@5.2.1: dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 - js-yaml: 3.14.1 + js-yaml: 3.14.2 parse-json: 4.0.0 - dev: true - /cosmiconfig@9.0.0(typescript@5.9.2): - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true + cosmiconfig@9.0.0(typescript@5.9.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 parse-json: 5.2.0 - typescript: 5.9.2 - dev: true + optionalDependencies: + typescript: 5.9.3 - /cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - dev: true - /crypto-js@4.2.0: - resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} - dev: false + crypto-js@4.2.0: {} - /crypto-random-string@4.0.0: - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: '>=12'} + crypto-random-string@4.0.0: dependencies: type-fest: 1.4.0 - dev: true - /css-select@5.2.2: - resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + css-select@5.2.2: dependencies: boolbase: 1.0.0 css-what: 6.2.2 domhandler: 5.0.3 domutils: 3.2.2 nth-check: 2.1.1 - dev: true - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + css-tree@1.1.3: dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - dev: true - /css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + css-tree@2.2.1: dependencies: mdn-data: 2.0.28 source-map-js: 1.2.1 - dev: true - /css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-tree@2.3.1: dependencies: mdn-data: 2.0.30 source-map-js: 1.2.1 - dev: true - /css-what@6.2.2: - resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} - engines: {node: '>= 6'} - dev: true + css-what@6.2.2: {} - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - dev: true + css.escape@1.5.1: {} - /csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + csso@5.0.5: dependencies: css-tree: 2.2.1 - dev: true - /cssstyle@4.6.0: - resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} - engines: {node: '>=18'} + cssstyle@4.6.0: dependencies: '@asamuzakjp/css-color': 3.2.0 rrweb-cssom: 0.8.0 - dev: true - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.2.3: {} - /csv-parser@3.2.0: - resolution: {integrity: sha512-fgKbp+AJbn1h2dcAHKIdKNSSjfp43BZZykXsCjzALjKy80VXQNHPFJ6T9Afwdzoj24aMkq8GwDS7KGcDPpejrA==} - engines: {node: '>= 10'} - hasBin: true - dev: true + csv-parser@3.2.0: {} - /cubic2quad@1.2.1: - resolution: {integrity: sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==} - dev: true + cubic2quad@1.2.1: {} - /data-uri-to-buffer@4.0.1: - resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} - engines: {node: '>= 12'} - dev: true + data-uri-to-buffer@4.0.1: {} - /data-uri-to-buffer@6.0.2: - resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} - engines: {node: '>= 14'} - dev: true + data-uri-to-buffer@6.0.2: {} - /data-urls@5.0.0: - resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} - engines: {node: '>=18'} + data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 whatwg-url: 14.2.0 - dev: true - /data-view-buffer@1.0.2: - resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} - engines: {node: '>= 0.4'} + data-view-buffer@1.0.2: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-data-view: 1.0.2 - dev: true - /data-view-byte-length@1.0.2: - resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} - engines: {node: '>= 0.4'} + data-view-byte-length@1.0.2: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-data-view: 1.0.2 - dev: true - /data-view-byte-offset@1.0.1: - resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} - engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.1: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-data-view: 1.0.2 - dev: true - /dayjs@1.11.18: - resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==} - dev: true + dayjs@1.11.19: {} - /de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} - dev: true - - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@2.6.9: dependencies: ms: 2.0.0 - dev: true - /debug@4.4.3: - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.4.3: dependencies: ms: 2.1.3 - dev: true - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - dev: true + decamelize@1.2.0: {} - /decimal.js@10.6.0: - resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} - dev: true + decimal.js@10.6.0: {} - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 - dev: true - /dedent-js@1.0.1: - resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} - dev: true + dedent-js@1.0.1: {} - /deep-eql@4.1.4: - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} - engines: {node: '>=6'} - dependencies: - type-detect: 4.1.0 - dev: true + deep-eql@5.0.2: {} - /deep-eql@5.0.2: - resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} - engines: {node: '>=6'} - dev: true - - /deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 @@ -6735,455 +11561,247 @@ packages: which-boxed-primitive: 1.1.1 which-collection: 1.0.2 which-typed-array: 1.1.19 - dev: true - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: true + deep-extend@0.6.0: {} - /deep-rename-keys@0.2.1: - resolution: {integrity: sha512-RHd9ABw4Fvk+gYDWqwOftG849x0bYOySl/RgX0tLI9i27ZIeSO91mLZJEp7oPHOMFqHvpgu21YptmDt0FYD/0A==} - engines: {node: '>=0.10.0'} + deep-rename-keys@0.2.1: dependencies: kind-of: 3.2.2 rename-keys: 1.2.0 - dev: true - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - dev: true + deepmerge@4.3.1: {} - /default-browser-id@5.0.0: - resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} - engines: {node: '>=18'} - dev: true + default-browser-id@5.0.1: {} - /default-browser@5.2.1: - resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} - engines: {node: '>=18'} + default-browser@5.4.0: dependencies: bundle-name: 4.1.0 - default-browser-id: 5.0.0 - dev: true + default-browser-id: 5.0.1 - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defaults@1.0.4: dependencies: clone: 1.0.4 - dev: true - /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dev: true + defer-to-connect@2.0.1: {} - /define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + define-data-property@1.1.4: dependencies: es-define-property: 1.0.1 es-errors: 1.3.0 gopd: 1.2.0 - dev: true - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - dev: true + define-lazy-prop@2.0.0: {} - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - dev: true + define-lazy-prop@3.0.0: {} - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - dev: true - /degenerator@5.0.1: - resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} - engines: {node: '>= 14'} + degenerator@5.0.1: dependencies: ast-types: 0.13.4 escodegen: 2.1.0 esprima: 4.0.1 - dev: true - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - dev: true + delayed-stream@1.0.0: {} - /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - dev: true + delegates@1.0.0: {} - /denodeify@1.2.1: - resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} - dev: true + denodeify@1.2.1: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - dev: true + depd@2.0.0: {} - /dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} - engines: {node: '>= 0.6.0'} - dev: true + dependency-graph@0.11.0: {} - /deprecated-react-native-prop-types@5.0.0: - resolution: {integrity: sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==} - engines: {node: '>=18'} + deprecated-react-native-prop-types@5.0.0: dependencies: '@react-native/normalize-colors': 0.73.2 invariant: 2.2.4 prop-types: 15.8.1 - dev: true - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true + deprecation@2.3.1: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + dequal@2.0.3: {} - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: true + destroy@1.2.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true + detect-indent@6.1.0: {} - /detect-libc@1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} - hasBin: true - requiresBuild: true - dev: true + detect-libc@1.0.3: optional: true - /detect-libc@2.1.0: - resolution: {integrity: sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==} - engines: {node: '>=8'} + detect-libc@2.1.2: {} - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - dev: true + detect-newline@3.1.0: {} - /dev-ip@1.0.1: - resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==} - engines: {node: '>= 0.8.0'} - hasBin: true - dev: true + dev-ip@1.0.1: {} - /devalue@5.6.1: - resolution: {integrity: sha512-jDwizj+IlEZBunHcOuuFVBnIMPAEHvTsJj0BcIp94xYguLRVBcXO853px/MyIJvbVzWdsGvrRweIUWJw8hBP7A==} - dev: true + devalue@5.6.1: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true - - /diffable-html@4.1.0: - resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==} + diffable-html@4.1.0: dependencies: htmlparser2: 3.10.1 - dev: true - /doctypes@1.1.0: - resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} - dev: true + doctypes@1.1.0: {} - /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - dev: true + dom-accessibility-api@0.5.16: {} - /dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dev: true + dom-accessibility-api@0.6.3: {} - /dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + dom-serializer@0.2.2: dependencies: domelementtype: 2.3.0 entities: 2.2.0 - dev: true - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dev: true - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - dev: true - /dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} - dev: true + dom-walk@0.1.2: {} - /domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - dev: true + domelementtype@1.3.1: {} - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: true + domelementtype@2.3.0: {} - /domhandler@2.4.2: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + domhandler@2.4.2: dependencies: domelementtype: 1.3.1 - dev: true - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + domhandler@4.3.1: dependencies: domelementtype: 2.3.0 - dev: true - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + domhandler@5.0.3: dependencies: domelementtype: 2.3.0 - dev: true - /domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + domutils@1.7.0: dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - dev: true - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - dev: true - /domutils@3.2.2: - resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + domutils@3.2.2: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - dev: true - /dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} + dot-prop@6.0.1: dependencies: is-obj: 2.0.0 - dev: true - /dotenv@16.6.1: - resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} - engines: {node: '>=12'} - dev: true + dotenv@16.6.1: {} - /dunder-proto@1.0.1: - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} - engines: {node: '>= 0.4'} + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 es-errors: 1.3.0 gopd: 1.2.0 - dev: true - /duplexer@0.1.1: - resolution: {integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==} - dev: true + duplexer@0.1.1: {} - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - dev: true + duplexer@0.1.2: {} - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true + eastasianwidth@0.2.0: {} - /editorconfig@1.0.4: - resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} - engines: {node: '>=14'} - hasBin: true + editorconfig@1.0.4: dependencies: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 - semver: 7.7.2 - dev: true + semver: 7.7.3 - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - dev: true + ee-first@1.1.1: {} - /ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true + ejs@3.1.10: dependencies: jake: 10.9.4 - dev: true - /electron-to-chromium@1.5.218: - resolution: {integrity: sha512-uwwdN0TUHs8u6iRgN8vKeWZMRll4gBkz+QMqdS7DDe49uiK68/UX92lFb61oiFPrpYZNeZIqa4bA7O6Aiasnzg==} - dev: true + electron-to-chromium@1.5.267: {} - /eleventy-sass@2.2.6(@11ty/eleventy@2.0.1): - resolution: {integrity: sha512-7OOFZ+A6BjWnpRRxP0UWvTdMUReVQUbusV1YhGQCAaEnWtQYTWzUq1EvyvfJfaWsPx7a26QHYGX8vYUNTACG/w==} - peerDependencies: - '@11ty/eleventy': ^1.0.0 || ^2.0.0-canary.12 || ^2.0.0-beta.1 - eleventy-plugin-clean: ^1.1.0 - eleventy-plugin-rev: ^2.0.0 - peerDependenciesMeta: - eleventy-plugin-clean: - optional: true - eleventy-plugin-rev: - optional: true + eleventy-sass@2.2.6(@11ty/eleventy@2.0.1): dependencies: '@11ty/eleventy': 2.0.1 debug: 4.4.3 kleur: 4.1.5 - sass: 1.92.1 + sass: 1.96.0 upath: 2.0.1 transitivePeerDependencies: - supports-color - dev: true - /emoji-regex@10.5.0: - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} - dev: true + emoji-regex@10.6.0: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true + emoji-regex@9.2.2: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - dev: true + encodeurl@1.0.2: {} - /encodeurl@2.0.0: - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} - engines: {node: '>= 0.8'} - dev: true + encodeurl@2.0.0: {} - /encoding-sniffer@0.2.1: - resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} + encoding-sniffer@0.2.1: dependencies: iconv-lite: 0.6.3 whatwg-encoding: 3.1.1 - dev: true - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 - dev: true optional: true - /ensure-posix-path@1.1.1: - resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==} - dev: true + ensure-posix-path@1.1.1: {} - /entities@1.1.2: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} - dev: true + entities@1.1.2: {} - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true + entities@2.2.0: {} - /entities@3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - dev: true + entities@3.0.1: {} - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + entities@4.5.0: {} - /entities@6.0.1: - resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} - engines: {node: '>=0.12'} - dev: true + entities@6.0.1: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - dev: true + env-paths@2.2.1: {} - /envinfo@7.14.0: - resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==} - engines: {node: '>=4'} - hasBin: true - dev: true + envinfo@7.21.0: {} - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true + err-code@2.0.3: {} - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true + errno@0.1.8: dependencies: prr: 1.0.1 - dev: true - /error-ex@1.3.4: - resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} + error-ex@1.3.4: dependencies: is-arrayish: 0.2.1 - dev: true - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + error-stack-parser@2.1.4: dependencies: stackframe: 1.3.4 - dev: true - /errorhandler@1.5.1: - resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} - engines: {node: '>= 0.8'} + errorhandler@1.5.1: dependencies: accepts: 1.3.8 escape-html: 1.0.3 - dev: true - /es-abstract@1.24.0: - resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} - engines: {node: '>= 0.4'} + es-abstract@1.24.1: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 @@ -7239,24 +11857,14 @@ packages: typed-array-length: 1.0.7 unbox-primitive: 1.1.0 which-typed-array: 1.1.19 - dev: true - /es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - dev: true + es-array-method-boxes-properly@1.0.0: {} - /es-define-property@1.0.1: - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} - engines: {node: '>= 0.4'} - dev: true + es-define-property@1.0.1: {} - /es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} - dev: true + es-errors@1.3.0: {} - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-get-iterator@1.1.3: dependencies: call-bind: 1.0.8 get-intrinsic: 1.3.0 @@ -7267,227 +11875,89 @@ packages: is-string: 1.1.1 isarray: 2.0.5 stop-iteration-iterator: 1.1.0 - dev: true - /es-module-lexer@1.7.0: - resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - dev: true + es-module-lexer@1.7.0: {} - /es-object-atoms@1.1.1: - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} - engines: {node: '>= 0.4'} + es-object-atoms@1.1.1: dependencies: es-errors: 1.3.0 - dev: true - /es-set-tostringtag@2.1.0: - resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} - engines: {node: '>= 0.4'} + es-set-tostringtag@2.1.0: dependencies: es-errors: 1.3.0 get-intrinsic: 1.3.0 has-tostringtag: 1.0.2 hasown: 2.0.2 - dev: true - /es-to-primitive@1.3.0: - resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} - engines: {node: '>= 0.4'} + es-to-primitive@1.3.0: dependencies: is-callable: 1.2.7 is-date-object: 1.1.0 is-symbol: 1.1.1 - dev: true - /es6-promise@3.3.1: - resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} - dev: true + es6-promise@3.3.1: {} - /esbuild-android-64@0.15.18: - resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true + esbuild-android-64@0.15.18: optional: true - /esbuild-android-arm64@0.15.18: - resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + esbuild-android-arm64@0.15.18: optional: true - /esbuild-darwin-64@0.15.18: - resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + esbuild-darwin-64@0.15.18: optional: true - /esbuild-darwin-arm64@0.15.18: - resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + esbuild-darwin-arm64@0.15.18: optional: true - /esbuild-freebsd-64@0.15.18: - resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + esbuild-freebsd-64@0.15.18: optional: true - /esbuild-freebsd-arm64@0.15.18: - resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true + esbuild-freebsd-arm64@0.15.18: optional: true - /esbuild-linux-32@0.15.18: - resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-32@0.15.18: optional: true - /esbuild-linux-64@0.15.18: - resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-64@0.15.18: optional: true - /esbuild-linux-arm64@0.15.18: - resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-arm64@0.15.18: optional: true - /esbuild-linux-arm@0.15.18: - resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-arm@0.15.18: optional: true - /esbuild-linux-mips64le@0.15.18: - resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-mips64le@0.15.18: optional: true - /esbuild-linux-ppc64le@0.15.18: - resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-ppc64le@0.15.18: optional: true - /esbuild-linux-riscv64@0.15.18: - resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-riscv64@0.15.18: optional: true - /esbuild-linux-s390x@0.15.18: - resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true + esbuild-linux-s390x@0.15.18: optional: true - /esbuild-netbsd-64@0.15.18: - resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true + esbuild-netbsd-64@0.15.18: optional: true - /esbuild-openbsd-64@0.15.18: - resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true + esbuild-openbsd-64@0.15.18: optional: true - /esbuild-sunos-64@0.15.18: - resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true + esbuild-sunos-64@0.15.18: optional: true - /esbuild-windows-32@0.15.18: - resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + esbuild-windows-32@0.15.18: optional: true - /esbuild-windows-64@0.15.18: - resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + esbuild-windows-64@0.15.18: optional: true - /esbuild-windows-arm64@0.15.18: - resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + esbuild-windows-arm64@0.15.18: optional: true - /esbuild@0.15.18: - resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.15.18: optionalDependencies: '@esbuild/android-arm': 0.15.18 '@esbuild/linux-loong64': 0.15.18 @@ -7511,13 +11981,8 @@ packages: esbuild-windows-32: 0.15.18 esbuild-windows-64: 0.15.18 esbuild-windows-arm64: 0.15.18 - dev: true - /esbuild@0.20.2: - resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.20.2: optionalDependencies: '@esbuild/aix-ppc64': 0.20.2 '@esbuild/android-arm': 0.20.2 @@ -7542,44 +12007,8 @@ packages: '@esbuild/win32-arm64': 0.20.2 '@esbuild/win32-ia32': 0.20.2 '@esbuild/win32-x64': 0.20.2 - dev: true - /esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 - dev: true - - /esbuild@0.25.12: - resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} - engines: {node: '>=18'} - hasBin: true - requiresBuild: true + esbuild@0.25.12: optionalDependencies: '@esbuild/aix-ppc64': 0.25.12 '@esbuild/android-arm': 0.25.12 @@ -7607,101 +12036,81 @@ packages: '@esbuild/win32-arm64': 0.25.12 '@esbuild/win32-ia32': 0.25.12 '@esbuild/win32-x64': 0.25.12 - dev: true - /escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} - dev: true + esbuild@0.27.2: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.2 + '@esbuild/android-arm': 0.27.2 + '@esbuild/android-arm64': 0.27.2 + '@esbuild/android-x64': 0.27.2 + '@esbuild/darwin-arm64': 0.27.2 + '@esbuild/darwin-x64': 0.27.2 + '@esbuild/freebsd-arm64': 0.27.2 + '@esbuild/freebsd-x64': 0.27.2 + '@esbuild/linux-arm': 0.27.2 + '@esbuild/linux-arm64': 0.27.2 + '@esbuild/linux-ia32': 0.27.2 + '@esbuild/linux-loong64': 0.27.2 + '@esbuild/linux-mips64el': 0.27.2 + '@esbuild/linux-ppc64': 0.27.2 + '@esbuild/linux-riscv64': 0.27.2 + '@esbuild/linux-s390x': 0.27.2 + '@esbuild/linux-x64': 0.27.2 + '@esbuild/netbsd-arm64': 0.27.2 + '@esbuild/netbsd-x64': 0.27.2 + '@esbuild/openbsd-arm64': 0.27.2 + '@esbuild/openbsd-x64': 0.27.2 + '@esbuild/openharmony-arm64': 0.27.2 + '@esbuild/sunos-x64': 0.27.2 + '@esbuild/win32-arm64': 0.27.2 + '@esbuild/win32-ia32': 0.27.2 + '@esbuild/win32-x64': 0.27.2 - /escape-goat@4.0.0: - resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} - engines: {node: '>=12'} - dev: true + escalade@3.2.0: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - dev: true + escape-goat@4.0.0: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - dev: true + escape-html@1.0.3: {} - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} - dev: true + escape-string-regexp@1.0.5: {} - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - dev: true + escape-string-regexp@2.0.0: {} - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + escape-string-regexp@4.0.0: {} + + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 esutils: 2.0.3 optionalDependencies: source-map: 0.6.1 - dev: true - /esm-env@1.2.2: - resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} - dev: true + esm-env@1.2.2: {} - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: true + esprima@4.0.1: {} - /esrap@2.2.1: - resolution: {integrity: sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==} + esrap@2.2.1: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 - dev: true - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - dev: true + estraverse@5.3.0: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + estree-walker@2.0.2: {} - /estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + estree-walker@3.0.3: dependencies: '@types/estree': 1.0.8 - dev: true - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - dev: true + esutils@2.0.3: {} - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - dev: true + etag@1.8.1: {} - /event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} - dev: true + event-target-shim@5.0.1: {} - /eventemitter3@2.0.3: - resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} - dev: true + eventemitter3@2.0.3: {} - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@5.1.1: dependencies: cross-spawn: 7.0.6 get-stream: 6.0.1 @@ -7712,11 +12121,8 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 - dev: true - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + execa@8.0.1: dependencies: cross-spawn: 7.0.6 get-stream: 8.0.1 @@ -7727,120 +12133,69 @@ packages: onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 - dev: true - /exif-parser@0.1.12: - resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==} - dev: true + exif-parser@0.1.12: {} - /expect-type@1.3.0: - resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} - engines: {node: '>=12.0.0'} - dev: true + expect-type@1.3.0: {} - /exponential-backoff@3.1.2: - resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==} - dev: true + exponential-backoff@3.1.3: {} - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + extend-shallow@2.0.1: dependencies: is-extendable: 0.1.1 - dev: true - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: true - /fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 - dev: true - /fast-xml-parser@4.5.3: - resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==} - hasBin: true + fast-xml-parser@4.5.3: dependencies: strnum: 1.1.2 - dev: true - /fastq@1.19.1: - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + fastq@1.19.1: dependencies: reusify: 1.1.0 - dev: true - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 - dev: true - /fdir@6.5.0(picomatch@4.0.3): - resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} - engines: {node: '>=12.0.0'} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - dependencies: + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: picomatch: 4.0.3 - dev: true - /fetch-blob@3.2.0: - resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} - engines: {node: ^12.20 || >= 14.13} + fetch-blob@3.2.0: dependencies: node-domexception: 1.0.0 web-streams-polyfill: 3.3.3 - dev: true - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - dev: true - /file-type@9.0.0: - resolution: {integrity: sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==} - engines: {node: '>=6'} - dev: true + file-type@9.0.0: {} - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: minimatch: 5.1.6 - dev: true - /filesize@6.4.0: - resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==} - engines: {node: '>= 0.4.0'} - dev: true + filesize@6.4.0: {} - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - dev: true - /finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} - engines: {node: '>= 0.8'} + finalhandler@1.1.2: dependencies: debug: 2.6.9 encodeurl: 1.0.2 @@ -7851,180 +12206,105 @@ packages: unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /finalhandler@1.3.1: - resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} - engines: {node: '>= 0.8'} + finalhandler@1.3.2: dependencies: debug: 2.6.9 encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 parseurl: 1.3.3 - statuses: 2.0.1 + statuses: 2.0.2 unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - dev: true - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - dev: true - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - dev: true - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - dev: true - /flow-enums-runtime@0.0.6: - resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} - dev: true + flow-enums-runtime@0.0.6: {} - /flow-parser@0.206.0: - resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} - engines: {node: '>=0.4.0'} - dev: true + flow-parser@0.206.0: {} - /follow-redirects@1.15.11: - resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: true + follow-redirects@1.15.11: {} - /for-each@0.3.5: - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} - engines: {node: '>= 0.4'} + for-each@0.3.5: dependencies: is-callable: 1.2.7 - dev: true - /foreground-child@3.3.1: - resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} - engines: {node: '>=14'} + foreground-child@3.3.1: dependencies: cross-spawn: 7.0.6 signal-exit: 4.1.0 - dev: true - /form-data-encoder@1.7.2: - resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} - dev: true + form-data-encoder@1.7.2: {} - /form-data-encoder@2.1.4: - resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} - engines: {node: '>= 14.17'} - dev: true + form-data-encoder@2.1.4: {} - /form-data@4.0.4: - resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} - engines: {node: '>= 6'} + form-data@4.0.5: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 es-set-tostringtag: 2.1.0 hasown: 2.0.2 mime-types: 2.1.35 - dev: true - /formdata-node@4.4.1: - resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} - engines: {node: '>= 12.20'} + formdata-node@4.4.1: dependencies: node-domexception: 1.0.0 web-streams-polyfill: 4.0.0-beta.3 - dev: true - /formdata-polyfill@4.0.10: - resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} - engines: {node: '>=12.20.0'} + formdata-polyfill@4.0.10: dependencies: fetch-blob: 3.2.0 - dev: true - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - dev: true + fresh@0.5.2: {} - /fs-extra@11.3.1: - resolution: {integrity: sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==} - engines: {node: '>=14.14'} + fs-extra@11.3.2: dependencies: graceful-fs: 4.2.11 jsonfile: 6.2.0 universalify: 2.0.1 - dev: true - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@2.1.0: dependencies: minipass: 3.3.6 - dev: true - /fs-minipass@3.0.3: - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + fs-minipass@3.0.3: dependencies: minipass: 7.1.2 - dev: true - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - dev: true + fs.realpath@1.0.0: {} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - dev: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - dev: true + function-bind@1.1.2: {} - /function.prototype.name@1.1.8: - resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.8: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 @@ -8032,16 +12312,10 @@ packages: functions-have-names: 1.2.3 hasown: 2.0.2 is-callable: 1.2.7 - dev: true - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - dev: true + functions-have-names@1.2.3: {} - /gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + gauge@4.0.4: dependencies: aproba: 2.1.0 color-support: 1.1.3 @@ -8051,30 +12325,16 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 - dev: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - dev: true + generator-function@2.0.1: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: true + gensync@1.0.0-beta.2: {} - /get-east-asian-width@1.4.0: - resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} - engines: {node: '>=18'} - dev: true + get-caller-file@2.0.5: {} - /get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - dev: true + get-east-asian-width@1.4.0: {} - /get-intrinsic@1.3.0: - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} - engines: {node: '>= 0.4'} + get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 @@ -8086,94 +12346,61 @@ packages: has-symbols: 1.1.0 hasown: 2.0.2 math-intrinsics: 1.1.0 - dev: true - /get-proto@1.0.1: - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} - engines: {node: '>= 0.4'} + get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - dev: true - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - dev: true + get-stream@6.0.1: {} - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - dev: true + get-stream@8.0.1: {} - /get-symbol-description@1.1.0: - resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} - engines: {node: '>= 0.4'} + get-symbol-description@1.1.0: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 get-intrinsic: 1.3.0 - dev: true - /get-tsconfig@4.10.1: - resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + get-tsconfig@4.13.0: dependencies: resolve-pkg-maps: 1.0.0 - dev: true - /get-uri@6.0.5: - resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} - engines: {node: '>= 14'} + get-uri@6.0.5: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /gifwrap@0.9.4: - resolution: {integrity: sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==} + gifwrap@0.9.4: dependencies: image-q: 4.0.0 omggif: 1.0.10 - dev: true - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + git-up@7.0.0: dependencies: is-ssh: 1.4.1 parse-url: 8.1.0 - dev: true - /git-url-parse@14.0.0: - resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} + git-url-parse@14.0.0: dependencies: git-up: 7.0.0 - dev: true - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - dev: true - /glob@10.3.16: - resolution: {integrity: sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==} - engines: {node: '>=16 || 14 >=14.18'} - hasBin: true + glob@10.3.16: dependencies: foreground-child: 3.3.1 jackspeak: 3.4.3 minimatch: 9.0.5 minipass: 7.1.2 path-scurry: 1.11.1 - dev: true - /glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} - hasBin: true + glob@10.5.0: dependencies: foreground-child: 3.3.1 jackspeak: 3.4.3 @@ -8181,24 +12408,17 @@ packages: minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 - dev: true - /glob@11.0.3: - resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==} - engines: {node: 20 || >=22} - hasBin: true + glob@11.1.0: dependencies: foreground-child: 3.3.1 jackspeak: 4.1.1 - minimatch: 10.0.3 + minimatch: 10.1.1 minipass: 7.1.2 package-json-from-dist: 1.0.1 - path-scurry: 2.0.0 - dev: true + path-scurry: 2.0.1 - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -8206,45 +12426,30 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + glob@8.1.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 - dev: true - /global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} + global-dirs@3.0.1: dependencies: ini: 2.0.0 - dev: true - /global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + global@4.4.0: dependencies: - min-document: 2.19.0 + min-document: 2.19.2 process: 0.11.10 - dev: true - /globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 gopd: 1.2.0 - dev: true - /globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} + globby@14.0.1: dependencies: '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.3 @@ -8252,16 +12457,10 @@ packages: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 - dev: true - /gopd@1.2.0: - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} - engines: {node: '>= 0.4'} - dev: true + gopd@1.2.0: {} - /got@12.6.1: - resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} - engines: {node: '>=14.16'} + got@12.6.1: dependencies: '@sindresorhus/is': 5.6.0 '@szmarczak/http-timer': 5.0.1 @@ -8274,11 +12473,8 @@ packages: lowercase-keys: 3.0.0 p-cancelable: 3.0.0 responselike: 3.0.0 - dev: true - /got@13.0.0: - resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} - engines: {node: '>=16'} + got@13.0.0: dependencies: '@sindresorhus/is': 5.6.0 '@szmarczak/http-timer': 5.0.1 @@ -8291,49 +12487,30 @@ packages: lowercase-keys: 3.0.0 p-cancelable: 3.0.0 responselike: 3.0.0 - dev: true - /graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - dev: true + graceful-fs@4.2.10: {} - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - dev: true + graceful-fs@4.2.11: {} - /gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} + gray-matter@4.0.3: dependencies: - js-yaml: 3.14.1 + js-yaml: 3.14.2 kind-of: 6.0.3 section-matter: 1.0.0 strip-bom-string: 1.0.0 - dev: true - /gzip-size@5.1.1: - resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==} - engines: {node: '>=6'} + gzip-size@5.1.1: dependencies: duplexer: 0.1.2 pify: 4.0.1 - dev: true - /gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} + gzip-size@6.0.0: dependencies: duplexer: 0.1.2 - dev: true - /hamljs@0.6.2: - resolution: {integrity: sha512-/chXRp4WpL47I+HX1vCCdSbEXAljEG2FBMmgO7Am0bYsqgnEjreeWzUdX1onXqwZtcfgxbCg5WtEYYvuZ5muBg==} - dev: true + hamljs@0.6.2: {} - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + handlebars@4.7.8: dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -8341,108 +12518,60 @@ packages: wordwrap: 1.0.0 optionalDependencies: uglify-js: 3.19.3 - dev: true - /has-bigints@1.1.0: - resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} - engines: {node: '>= 0.4'} - dev: true + has-bigints@1.1.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - dev: true + has-flag@4.0.0: {} - /has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.1 - dev: true - /has-proto@1.2.0: - resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} - engines: {node: '>= 0.4'} + has-proto@1.2.0: dependencies: dunder-proto: 1.0.1 - dev: true - /has-symbols@1.1.0: - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} - engines: {node: '>= 0.4'} - dev: true + has-symbols@1.1.0: {} - /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + has-tostringtag@1.0.2: dependencies: has-symbols: 1.1.0 - dev: true - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - dev: true + has-unicode@2.0.1: {} - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + hasown@2.0.2: dependencies: function-bind: 1.1.2 - dev: true - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - dev: true + he@1.2.0: {} - /hermes-estree@0.15.0: - resolution: {integrity: sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==} - dev: true + hermes-estree@0.15.0: {} - /hermes-estree@0.23.1: - resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} - dev: true + hermes-estree@0.23.1: {} - /hermes-parser@0.15.0: - resolution: {integrity: sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==} + hermes-parser@0.15.0: dependencies: hermes-estree: 0.15.0 - dev: true - /hermes-parser@0.23.1: - resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} + hermes-parser@0.23.1: dependencies: hermes-estree: 0.23.1 - dev: true - /hermes-profile-transformer@0.0.6: - resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} - engines: {node: '>=8'} + hermes-profile-transformer@0.0.6: dependencies: source-map: 0.7.6 - dev: true - /hosted-git-info@6.1.3: - resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hosted-git-info@6.1.3: dependencies: lru-cache: 7.18.3 - dev: true - /html-encoding-sniffer@4.0.0: - resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} - engines: {node: '>=18'} + html-encoding-sniffer@4.0.0: dependencies: whatwg-encoding: 3.1.1 - dev: true - /html-entities@2.3.3: - resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} - dev: true + html-entities@2.3.3: {} - /html-minifier@4.0.0: - resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} - engines: {node: '>=6'} - hasBin: true + html-minifier@4.0.0: dependencies: camel-case: 3.0.0 clean-css: 4.2.4 @@ -8451,19 +12580,15 @@ packages: param-case: 2.1.1 relateurl: 0.2.7 uglify-js: 3.19.3 - dev: true - /htmlparser2@10.0.0: - resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} + htmlparser2@10.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 domutils: 3.2.2 entities: 6.0.1 - dev: true - /htmlparser2@3.10.1: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + htmlparser2@3.10.1: dependencies: domelementtype: 1.3.1 domhandler: 2.4.2 @@ -8471,209 +12596,124 @@ packages: entities: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /htmlparser2@7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + htmlparser2@7.2.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 3.0.1 - dev: true - /http-cache-semantics@4.2.0: - resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} - dev: true + http-cache-semantics@4.2.0: {} - /http-equiv-refresh@1.0.0: - resolution: {integrity: sha512-TScO04soylRN9i/QdOdgZyhydXg9z6XdaGzEyOgDKycePeDeTT4KvigjBcI+tgfTlieLWauGORMq5F1eIDa+1w==} - engines: {node: '>= 0.10'} - dev: true + http-equiv-refresh@1.0.0: {} - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 setprototypeof: 1.2.0 statuses: 2.0.1 toidentifier: 1.0.1 - dev: true - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + http-proxy-agent@5.0.0: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /http-proxy-agent@7.0.2: - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} - engines: {node: '>= 14'} + http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /http2-wrapper@2.2.1: - resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} - engines: {node: '>=10.19.0'} + http2-wrapper@2.2.1: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: true - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /https-proxy-agent@7.0.6: - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} - engines: {node: '>= 14'} + https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 debug: 4.4.3 transitivePeerDependencies: - supports-color - dev: true - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - dev: true + human-signals@2.1.0: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - dev: true + human-signals@5.0.0: {} - /humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + humanize-ms@1.2.1: dependencies: ms: 2.1.3 - dev: true - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - dev: true - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - dev: true - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - dev: true + ieee754@1.2.1: {} - /ignore-walk@6.0.5: - resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ignore-walk@6.0.5: dependencies: minimatch: 9.0.5 - dev: true - /ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} - dev: true + ignore@5.3.2: {} - /image-q@4.0.0: - resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==} + image-q@4.0.0: dependencies: '@types/node': 16.9.1 - dev: true - /image-size@1.2.1: - resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==} - engines: {node: '>=16.x'} - hasBin: true + image-size@1.2.1: dependencies: queue: 6.0.2 - dev: true - /immutable@5.1.3: - resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==} - dev: true + immutable@5.1.4: {} - /import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} + import-fresh@2.0.0: dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - dev: true - /import-fresh@3.3.1: - resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} - engines: {node: '>=6'} + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - dev: true - /import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - dev: true + import-lazy@4.0.0: {} - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - dev: true + imurmurhash@0.1.4: {} - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - dev: true + indent-string@4.0.0: {} - /infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - dev: true + infer-owner@1.0.4: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - dev: true - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: true + inherits@2.0.4: {} - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: true + ini@1.3.8: {} - /ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} - dev: true + ini@2.0.0: {} - /inquirer@9.2.14: - resolution: {integrity: sha512-4ByIMt677Iz5AvjyKrDpzaepIyMewNvDcvwpVVRZNmy9dLakVoVgdCHZXbK1SlVJra1db0JZ6XkJyHsanpdrdQ==} - engines: {node: '>=18'} + inquirer@9.2.14: dependencies: '@ljharb/through': 2.3.14 ansi-escapes: 4.3.2 @@ -8690,534 +12730,296 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true - /internal-slot@1.1.0: - resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} - engines: {node: '>= 0.4'} + internal-slot@1.1.0: dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.1.0 - dev: true - /interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - dev: true + interpret@1.4.0: {} - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + invariant@2.2.4: dependencies: loose-envify: 1.4.0 - dev: true - /ip-address@10.0.1: - resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==} - engines: {node: '>= 12'} - dev: true + ip-address@10.1.0: {} - /is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - dev: true + is-alphabetical@1.0.4: {} - /is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + is-alphanumerical@1.0.4: dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - dev: true - /is-arguments@1.2.0: - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} - engines: {node: '>= 0.4'} + is-arguments@1.2.0: dependencies: call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: true - /is-array-buffer@3.0.5: - resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} - engines: {node: '>= 0.4'} + is-array-buffer@3.0.5: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 get-intrinsic: 1.3.0 - dev: true - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - dev: true + is-arrayish@0.2.1: {} - /is-arrayish@0.3.4: - resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} + is-arrayish@0.3.4: {} - /is-async-function@2.1.1: - resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} - engines: {node: '>= 0.4'} + is-async-function@2.1.1: dependencies: async-function: 1.0.0 call-bound: 1.0.4 get-proto: 1.0.1 has-tostringtag: 1.0.2 safe-regex-test: 1.1.0 - dev: true - /is-bigint@1.1.0: - resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} - engines: {node: '>= 0.4'} + is-bigint@1.1.0: dependencies: has-bigints: 1.1.0 - dev: true - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 - dev: true - /is-boolean-object@1.2.2: - resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} - engines: {node: '>= 0.4'} + is-boolean-object@1.2.2: dependencies: call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: true - /is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - dev: true + is-buffer@1.1.6: {} - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - dev: true + is-callable@1.2.7: {} - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true + is-ci@3.0.1: dependencies: ci-info: 3.9.0 - dev: true - /is-core-module@2.16.1: - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} - engines: {node: '>= 0.4'} + is-core-module@2.16.1: dependencies: hasown: 2.0.2 - dev: true - /is-data-view@1.0.2: - resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} - engines: {node: '>= 0.4'} + is-data-view@1.0.2: dependencies: call-bound: 1.0.4 get-intrinsic: 1.3.0 is-typed-array: 1.1.15 - dev: true - /is-date-object@1.1.0: - resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} - engines: {node: '>= 0.4'} + is-date-object@1.1.0: dependencies: call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: true - /is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} - dev: true + is-decimal@1.0.4: {} - /is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} - dev: true + is-directory@0.3.1: {} - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - dev: true + is-docker@2.2.1: {} - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - dev: true + is-docker@3.0.0: {} - /is-expression@4.0.0: - resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} + is-expression@4.0.0: dependencies: acorn: 7.4.1 object-assign: 4.1.1 - dev: true - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - dev: true + is-extendable@0.1.1: {} - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - dev: true + is-extglob@2.1.1: {} - /is-finalizationregistry@1.1.1: - resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} - engines: {node: '>= 0.4'} + is-finalizationregistry@1.1.1: dependencies: call-bound: 1.0.4 - dev: true - /is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - dev: true + is-fullwidth-code-point@2.0.0: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - dev: true + is-fullwidth-code-point@3.0.0: {} - /is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - dev: true + is-function@1.0.2: {} - /is-generator-function@1.1.0: - resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} - engines: {node: '>= 0.4'} + is-generator-function@1.1.2: dependencies: call-bound: 1.0.4 + generator-function: 2.0.1 get-proto: 1.0.1 has-tostringtag: 1.0.2 safe-regex-test: 1.1.0 - dev: true - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - dev: true - /is-in-ci@0.1.0: - resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==} - engines: {node: '>=18'} - hasBin: true - dev: true + is-in-ci@0.1.0: {} - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true + is-inside-container@1.0.0: dependencies: is-docker: 3.0.0 - dev: true - /is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} + is-installed-globally@0.4.0: dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - dev: true - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - dev: true + is-interactive@1.0.0: {} - /is-interactive@2.0.0: - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} - engines: {node: '>=12'} - dev: true + is-interactive@2.0.0: {} - /is-json@2.0.1: - resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} - dev: true + is-json@2.0.1: {} - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true + is-lambda@1.0.1: {} - /is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} - dev: true + is-map@2.0.3: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - dev: true + is-module@1.0.0: {} - /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - dev: true + is-negative-zero@2.0.3: {} - /is-npm@6.1.0: - resolution: {integrity: sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + is-npm@6.1.0: {} - /is-number-object@1.1.1: - resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} - engines: {node: '>= 0.4'} + is-number-object@1.1.1: dependencies: call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: true - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - dev: true + is-number@7.0.0: {} - /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - dev: true + is-obj@2.0.0: {} - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true + is-path-inside@3.0.3: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - dev: true - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - dev: true + is-potential-custom-element-name@1.0.1: {} - /is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - dev: true + is-promise@2.2.2: {} - /is-reference@3.0.3: - resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + is-reference@3.0.3: dependencies: '@types/estree': 1.0.8 - dev: true - /is-regex@1.2.1: - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} - engines: {node: '>= 0.4'} + is-regex@1.2.1: dependencies: call-bound: 1.0.4 gopd: 1.2.0 has-tostringtag: 1.0.2 hasown: 2.0.2 - dev: true - /is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} - dev: true + is-set@2.0.3: {} - /is-shared-array-buffer@1.0.4: - resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} - engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.4: dependencies: call-bound: 1.0.4 - dev: true - /is-ssh@1.4.1: - resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==} + is-ssh@1.4.1: dependencies: protocols: 2.0.2 - dev: true - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - dev: true + is-stream@2.0.1: {} - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + is-stream@3.0.0: {} - /is-string@1.1.1: - resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} - engines: {node: '>= 0.4'} + is-string@1.1.1: dependencies: call-bound: 1.0.4 has-tostringtag: 1.0.2 - dev: true - /is-symbol@1.1.1: - resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} - engines: {node: '>= 0.4'} + is-symbol@1.1.1: dependencies: call-bound: 1.0.4 has-symbols: 1.1.0 safe-regex-test: 1.1.0 - dev: true - /is-typed-array@1.1.15: - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.15: dependencies: which-typed-array: 1.1.19 - dev: true - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - dev: true + is-typedarray@1.0.0: {} - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true + is-unicode-supported@0.1.0: {} - /is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} - dev: true + is-unicode-supported@1.3.0: {} - /is-unicode-supported@2.1.0: - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} - engines: {node: '>=18'} - dev: true + is-unicode-supported@2.1.0: {} - /is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} - dev: true + is-weakmap@2.0.2: {} - /is-weakref@1.1.1: - resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} - engines: {node: '>= 0.4'} + is-weakref@1.1.1: dependencies: call-bound: 1.0.4 - dev: true - /is-weakset@2.0.4: - resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} - engines: {node: '>= 0.4'} + is-weakset@2.0.4: dependencies: call-bound: 1.0.4 get-intrinsic: 1.3.0 - dev: true - /is-what@4.1.16: - resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} - engines: {node: '>=12.13'} - dev: true + is-what@4.1.16: {} - /is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} - dev: true + is-wsl@1.1.0: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - dev: true - /is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} - engines: {node: '>=16'} + is-wsl@3.1.0: dependencies: is-inside-container: 1.0.0 - dev: true - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - dev: true + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - dev: true + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true + isexe@2.0.0: {} - /iso-639-1@2.1.15: - resolution: {integrity: sha512-7c7mBznZu2ktfvyT582E2msM+Udc1EjOyhVRE/0ZsjD9LBtWSm23h3PtiRh2a35XoUsTQQjJXaJzuLjXsOdFDg==} - engines: {node: '>=6.0'} - dev: true + iso-639-1@2.1.15: {} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: true + isobject@3.0.1: {} - /issue-parser@6.0.0: - resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} - engines: {node: '>=10.13'} + issue-parser@6.0.0: dependencies: lodash.capitalize: 4.2.1 lodash.escaperegexp: 4.1.2 lodash.isplainobject: 4.0.6 lodash.isstring: 4.0.1 lodash.uniqby: 4.7.0 - dev: true - /iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} - dev: true + iterate-iterator@1.0.2: {} - /iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + iterate-value@1.0.2: dependencies: es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 - dev: true - /jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - dev: true - /jackspeak@4.1.1: - resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} - engines: {node: 20 || >=22} + jackspeak@4.1.1: dependencies: '@isaacs/cliui': 8.0.2 - dev: true - /jake@10.9.4: - resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==} - engines: {node: '>=10'} - hasBin: true + jake@10.9.4: dependencies: async: 3.2.6 filelist: 1.0.4 picocolors: 1.1.1 - dev: true - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 24.4.0 + '@types/node': 25.0.2 jest-mock: 29.7.0 jest-util: 29.7.0 - dev: true - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true + jest-get-type@29.6.3: {} - /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@29.7.0: dependencies: '@babel/code-frame': 7.27.1 '@jest/types': 29.6.3 @@ -9228,38 +13030,27 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 - dev: true - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 24.4.0 + '@types/node': 25.0.2 jest-util: 29.7.0 - dev: true - /jest-serializer-html@7.1.0: - resolution: {integrity: sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==} + jest-serializer-html@7.1.0: dependencies: diffable-html: 4.1.0 - dev: true - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 24.4.0 + '@types/node': 25.0.2 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true - /jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 camelcase: 6.3.0 @@ -9267,20 +13058,15 @@ packages: jest-get-type: 29.6.3 leven: 3.1.0 pretty-format: 29.7.0 - dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.7.0: dependencies: - '@types/node': 24.4.0 + '@types/node': 25.0.2 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jimp@0.14.0: - resolution: {integrity: sha512-8BXU+J8+SPmwwyq9ELihpSV4dWPTiOKBWCEgtkbnxxAVMjXdf3yGmyaLSshBfXc8sP/JQ9OZj5R8nZzz2wPXgA==} + jimp@0.14.0: dependencies: '@babel/runtime': 7.28.4 '@jimp/custom': 0.14.0 @@ -9289,90 +13075,59 @@ packages: regenerator-runtime: 0.13.11 transitivePeerDependencies: - debug - dev: true - /joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + joi@17.13.3: dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.5 '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - dev: true - /jpeg-js@0.4.4: - resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==} - dev: true + jpeg-js@0.4.4: {} - /js-beautify@1.15.4: - resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==} - engines: {node: '>=14'} - hasBin: true + js-beautify@1.15.4: dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 - glob: 10.4.5 + glob: 10.5.0 js-cookie: 3.0.5 nopt: 7.2.1 - dev: true - /js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} - dev: true + js-cookie@3.0.5: {} - /js-stringify@1.0.2: - resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} - dev: true + js-stringify@1.0.2: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-tokens@9.0.1: - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} - dev: true + js-tokens@9.0.1: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-yaml@3.14.2: dependencies: argparse: 1.0.10 esprima: 4.0.1 - dev: true - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.1: dependencies: argparse: 2.0.1 - dev: true - /jsc-android@250231.0.0: - resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} - dev: true + jsc-android@250231.0.0: {} - /jsc-safe-url@0.2.4: - resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} - dev: true + jsc-safe-url@0.2.4: {} - /jscodeshift@0.14.0(@babel/preset-env@7.28.3): - resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 + jscodeshift@0.14.0(@babel/preset-env@7.28.5(@babel/core@7.28.5)): dependencies: - '@babel/core': 7.28.4 - '@babel/parser': 7.28.4 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.4) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.4) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4) - '@babel/preset-env': 7.28.3(@babel/core@7.28.4) - '@babel/preset-flow': 7.27.1(@babel/core@7.28.4) - '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) - '@babel/register': 7.28.3(@babel/core@7.28.4) - babel-core: 7.0.0-bridge.0(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/parser': 7.28.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.5) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5) + '@babel/preset-env': 7.28.5(@babel/core@7.28.5) + '@babel/preset-flow': 7.27.1(@babel/core@7.28.5) + '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) + '@babel/register': 7.28.3(@babel/core@7.28.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.28.5) chalk: 4.1.2 flow-parser: 0.206.0 graceful-fs: 4.2.11 @@ -9384,26 +13139,18 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: true - /jsdom@24.1.3: - resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==} - engines: {node: '>=18'} - peerDependencies: - canvas: ^2.11.2 - peerDependenciesMeta: - canvas: - optional: true + jsdom@24.1.3: dependencies: cssstyle: 4.6.0 data-urls: 5.0.0 decimal.js: 10.6.0 - form-data: 4.0.4 + form-data: 4.0.5 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.22 + nwsapi: 2.2.23 parse5: 7.3.0 rrweb-cssom: 0.7.1 saxes: 6.0.0 @@ -9420,26 +13167,18 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jsdom@25.0.1: - resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} - engines: {node: '>=18'} - peerDependencies: - canvas: ^2.11.2 - peerDependenciesMeta: - canvas: - optional: true + jsdom@25.0.1: dependencies: cssstyle: 4.6.0 data-urls: 5.0.0 decimal.js: 10.6.0 - form-data: 4.0.4 + form-data: 4.0.5 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.22 + nwsapi: 2.2.23 parse5: 7.3.0 rrweb-cssom: 0.7.1 saxes: 6.0.0 @@ -9456,151 +13195,80 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - dev: true + jsesc@3.1.0: {} - /jsesc@3.1.0: - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} - engines: {node: '>=6'} - hasBin: true - dev: true + json-buffer@3.0.1: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - dev: true + json-parse-better-errors@1.0.2: {} - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - dev: true + json-parse-even-better-errors@2.3.1: {} - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - dev: true + json-parse-even-better-errors@3.0.2: {} - /json-parse-even-better-errors@3.0.2: - resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + json5@2.2.3: {} - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - dev: true - - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonfile@6.2.0: - resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + jsonfile@6.2.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - dev: true + jsonparse@1.3.1: {} - /jstransformer@1.0.0: - resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} + jstransformer@1.0.0: dependencies: is-promise: 2.2.2 promise: 7.3.1 - dev: true - /junk@1.0.3: - resolution: {integrity: sha512-3KF80UaaSSxo8jVnRYtMKNGFOoVPBdkkVPsw+Ad0y4oxKXPduS6G6iHkrf69yJVff/VAaYXkV42rtZ7daJxU3w==} - engines: {node: '>=0.10.0'} - dev: true + junk@1.0.3: {} - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - dev: true - /kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} + kind-of@3.2.2: dependencies: is-buffer: 1.1.6 - dev: true - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - dev: true + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - dev: true + kleur@3.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true + kleur@4.1.5: {} - /kolorist@1.8.0: - resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} - dev: true + kolorist@1.8.0: {} - /latest-version@7.0.0: - resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} - engines: {node: '>=14.16'} + latest-version@7.0.0: dependencies: package-json: 8.1.1 - dev: true - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - dev: true + leven@3.1.0: {} - /lighthouse-logger@1.4.2: - resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + lighthouse-logger@1.4.2: dependencies: debug: 2.6.9 marky: 1.3.0 transitivePeerDependencies: - supports-color - dev: true - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - dev: true + lines-and-columns@1.2.4: {} - /linkify-it@4.0.1: - resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} + linkify-it@4.0.1: dependencies: uc.micro: 1.0.6 - dev: true - /liquidjs@10.21.1: - resolution: {integrity: sha512-NZXmCwv3RG5nire3fmIn9HsOyJX3vo+ptp0yaXUHAMzSNBhx74Hm+dAGJvscUA6lNqbLuYfXgNavRQ9UbUJhQQ==} - engines: {node: '>=14'} - hasBin: true + liquidjs@10.24.0: dependencies: commander: 10.0.1 - dev: true - /list-to-array@1.1.0: - resolution: {integrity: sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==} - dev: true + list-to-array@1.1.0: {} - /load-bmfont@1.4.2: - resolution: {integrity: sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==} + load-bmfont@1.4.2: dependencies: buffer-equal: 0.0.1 mime: 1.6.0 @@ -9612,210 +13280,107 @@ packages: xtend: 4.0.2 transitivePeerDependencies: - debug - dev: true - /local-pkg@0.5.1: - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} - engines: {node: '>=14'} - dependencies: - mlly: 1.8.0 - pkg-types: 1.3.1 - dev: true + locate-character@3.0.0: {} - /locate-character@3.0.0: - resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} - dev: true - - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - dev: true - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - dev: true - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - dev: true - /lodash._reinterpolate@3.0.0: - resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} - dev: true + lodash._reinterpolate@3.0.0: {} - /lodash.capitalize@4.2.1: - resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} - dev: true + lodash.capitalize@4.2.1: {} - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: true + lodash.debounce@4.0.8: {} - /lodash.deburr@4.1.0: - resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==} - dev: true + lodash.deburr@4.1.0: {} - /lodash.escaperegexp@4.1.2: - resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} - dev: true + lodash.escaperegexp@4.1.2: {} - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - dev: true + lodash.isplainobject@4.0.6: {} - /lodash.isstring@4.0.1: - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} - dev: true + lodash.isstring@4.0.1: {} - /lodash.template@4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} - deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead. + lodash.template@4.5.0: dependencies: lodash._reinterpolate: 3.0.0 lodash.templatesettings: 4.2.0 - dev: true - /lodash.templatesettings@4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + lodash.templatesettings@4.2.0: dependencies: lodash._reinterpolate: 3.0.0 - dev: true - /lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} - dev: true + lodash.throttle@4.1.1: {} - /lodash.uniqby@4.7.0: - resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} - dev: true + lodash.uniqby@4.7.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - dev: true + lodash@4.17.21: {} - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: true - /log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} - engines: {node: '>=18'} + log-symbols@6.0.0: dependencies: chalk: 5.3.0 is-unicode-supported: 1.3.0 - dev: true - /logkitty@0.7.1: - resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} - hasBin: true + logkitty@0.7.1: dependencies: ansi-fragments: 0.2.1 - dayjs: 1.11.18 + dayjs: 1.11.19 yargs: 15.4.1 - dev: true - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - dependencies: - get-func-name: 2.0.2 - dev: true + loupe@3.2.1: {} - /loupe@3.2.1: - resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} - dev: true + lower-case@1.1.4: {} - /lower-case@1.1.4: - resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} - dev: true + lowercase-keys@3.0.0: {} - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - dependencies: - tslib: 2.8.1 - dev: true + lru-cache@10.4.3: {} - /lowercase-keys@3.0.0: - resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + lru-cache@11.2.4: {} - /lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - dev: true - - /lru-cache@11.2.1: - resolution: {integrity: sha512-r8LA6i4LP4EeWOhqBaZZjDWwehd1xUJPCJd9Sv300H0ZmcUER4+JPh7bqqZeqs1o5pgtgvXm+d9UGrB5zZGDiQ==} - engines: {node: 20 || >=22} - dev: true - - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - dev: true - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - dev: true - /lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - dev: true + lru-cache@7.18.3: {} - /luxon@3.7.2: - resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==} - engines: {node: '>=12'} - dev: true + luxon@3.7.2: {} - /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - dev: true + lz-string@1.5.0: {} - /macos-release@3.4.0: - resolution: {integrity: sha512-wpGPwyg/xrSp4H4Db4xYSeAr6+cFQGHfspHzDUdYxswDnUW0L5Ov63UuJiSr8NMSpyaChO4u1n0MXUvVPtrN6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + macos-release@3.4.0: {} - /magic-string@0.30.19: - resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + magic-string@0.30.21: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 - dev: true - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + make-fetch-happen@10.2.1: dependencies: agentkeepalive: 4.6.0 cacache: 16.1.3 @@ -9836,11 +13401,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /make-fetch-happen@11.1.1: - resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + make-fetch-happen@11.1.1: dependencies: agentkeepalive: 4.6.0 cacache: 17.1.4 @@ -9859,119 +13421,73 @@ packages: ssri: 10.0.6 transitivePeerDependencies: - supports-color - dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + makeerror@1.0.12: dependencies: tmpl: 1.0.5 - dev: true - /markdown-it@13.0.2: - resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==} - hasBin: true + markdown-it@13.0.2: dependencies: argparse: 2.0.1 entities: 3.0.1 linkify-it: 4.0.1 mdurl: 1.0.1 uc.micro: 1.0.6 - dev: true - /marky@1.3.0: - resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} - dev: true + marky@1.3.0: {} - /matcher-collection@2.0.1: - resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} - engines: {node: 6.* || 8.* || >= 10.*} + matcher-collection@2.0.1: dependencies: '@types/minimatch': 3.0.5 minimatch: 3.1.2 - dev: true - /math-intrinsics@1.1.0: - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} - engines: {node: '>= 0.4'} - dev: true + math-intrinsics@1.1.0: {} - /maximatch@0.1.0: - resolution: {integrity: sha512-9ORVtDUFk4u/NFfo0vG/ND/z7UQCVZBL539YW0+U1I7H1BkZwizcPx5foFv7LCPcBnm2U6RjFnQOsIvN4/Vm2A==} - engines: {node: '>=0.10.0'} + maximatch@0.1.0: dependencies: array-differ: 1.0.0 array-union: 1.0.2 arrify: 1.0.1 minimatch: 3.1.2 - dev: true - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - dev: true + mdn-data@2.0.14: {} - /mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - dev: true + mdn-data@2.0.28: {} - /mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - dev: true + mdn-data@2.0.30: {} - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - dev: true + mdurl@1.0.1: {} - /memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - dev: true + memoize-one@5.2.1: {} - /merge-anything@5.1.7: - resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} - engines: {node: '>=12.13'} + merge-anything@5.1.7: dependencies: is-what: 4.1.16 - dev: true - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - dev: true + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - dev: true + merge2@1.4.1: {} - /metro-babel-transformer@0.80.12: - resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==} - engines: {node: '>=18'} + metro-babel-transformer@0.80.12: dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 flow-enums-runtime: 0.0.6 hermes-parser: 0.23.1 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - dev: true - /metro-cache-key@0.80.12: - resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==} - engines: {node: '>=18'} + metro-cache-key@0.80.12: dependencies: flow-enums-runtime: 0.0.6 - dev: true - /metro-cache@0.80.12: - resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==} - engines: {node: '>=18'} + metro-cache@0.80.12: dependencies: - exponential-backoff: 3.1.2 + exponential-backoff: 3.1.3 flow-enums-runtime: 0.0.6 metro-core: 0.80.12 - dev: true - /metro-config@0.80.12: - resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==} - engines: {node: '>=18'} + metro-config@0.80.12: dependencies: connect: 3.7.0 cosmiconfig: 5.2.1 @@ -9985,20 +13501,14 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /metro-core@0.80.12: - resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==} - engines: {node: '>=18'} + metro-core@0.80.12: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 metro-resolver: 0.80.12 - dev: true - /metro-file-map@0.80.12: - resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==} - engines: {node: '>=18'} + metro-file-map@0.80.12: dependencies: anymatch: 3.1.3 debug: 2.6.9 @@ -10015,37 +13525,25 @@ packages: fsevents: 2.3.3 transitivePeerDependencies: - supports-color - dev: true - /metro-minify-terser@0.80.12: - resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==} - engines: {node: '>=18'} + metro-minify-terser@0.80.12: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.44.0 - dev: true + terser: 5.44.1 - /metro-resolver@0.80.12: - resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==} - engines: {node: '>=18'} + metro-resolver@0.80.12: dependencies: flow-enums-runtime: 0.0.6 - dev: true - /metro-runtime@0.80.12: - resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==} - engines: {node: '>=18'} + metro-runtime@0.80.12: dependencies: '@babel/runtime': 7.28.4 flow-enums-runtime: 0.0.6 - dev: true - /metro-source-map@0.80.12: - resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==} - engines: {node: '>=18'} + metro-source-map@0.80.12: dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 flow-enums-runtime: 0.0.6 invariant: 2.2.4 metro-symbolicate: 0.80.12 @@ -10055,12 +13553,8 @@ packages: vlq: 1.0.1 transitivePeerDependencies: - supports-color - dev: true - /metro-symbolicate@0.80.12: - resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==} - engines: {node: '>=18'} - hasBin: true + metro-symbolicate@0.80.12: dependencies: flow-enums-runtime: 0.0.6 invariant: 2.2.4 @@ -10071,30 +13565,24 @@ packages: vlq: 1.0.1 transitivePeerDependencies: - supports-color - dev: true - /metro-transform-plugins@0.80.12: - resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==} - engines: {node: '>=18'} + metro-transform-plugins@0.80.12: dependencies: - '@babel/core': 7.28.4 - '@babel/generator': 7.28.3 + '@babel/core': 7.28.5 + '@babel/generator': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - dev: true - /metro-transform-worker@0.80.12: - resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==} - engines: {node: '>=18'} + metro-transform-worker@0.80.12: dependencies: - '@babel/core': 7.28.4 - '@babel/generator': 7.28.3 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/core': 7.28.5 + '@babel/generator': 7.28.5 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 flow-enums-runtime: 0.0.6 metro: 0.80.12 metro-babel-transformer: 0.80.12 @@ -10108,20 +13596,16 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /metro@0.80.12: - resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==} - engines: {node: '>=18'} - hasBin: true + metro@0.80.12: dependencies: '@babel/code-frame': 7.27.1 - '@babel/core': 7.28.4 - '@babel/generator': 7.28.3 - '@babel/parser': 7.28.4 + '@babel/core': 7.28.5 + '@babel/generator': 7.28.5 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -10161,497 +13645,265 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /microbuffer@1.0.0: - resolution: {integrity: sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA==} - dev: true + microbuffer@1.0.0: {} - /micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - dev: true - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - dev: true + mime-db@1.52.0: {} - /mime-db@1.54.0: - resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} - engines: {node: '>= 0.6'} - dev: true + mime-db@1.54.0: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - dev: true - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: true + mime@1.6.0: {} - /mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - dev: true + mime@2.6.0: {} - /mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true - dev: true + mime@3.0.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - dev: true + mimic-fn@2.1.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - dev: true + mimic-fn@4.0.0: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: true + mimic-response@3.1.0: {} - /mimic-response@4.0.0: - resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + mimic-response@4.0.0: {} - /min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + min-document@2.19.2: dependencies: dom-walk: 0.1.2 - dev: true - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true + min-indent@1.0.1: {} - /minimatch@10.0.3: - resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} - engines: {node: 20 || >=22} + minimatch@10.1.1: dependencies: '@isaacs/brace-expansion': 5.0.0 - dev: true - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.12 - dev: true - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.2 - dev: true - /minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.1: dependencies: brace-expansion: 2.0.2 - dev: true - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.2 - dev: true - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true + minimist@1.2.8: {} - /minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} + minipass-collect@1.0.2: dependencies: minipass: 3.3.6 - dev: true - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + minipass-fetch@2.1.2: dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 - dev: true - /minipass-fetch@3.0.5: - resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + minipass-fetch@3.0.5: dependencies: minipass: 7.1.2 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 - dev: true - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} + minipass-flush@1.0.5: dependencies: minipass: 3.3.6 - dev: true - /minipass-json-stream@1.0.2: - resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==} + minipass-json-stream@1.0.2: dependencies: jsonparse: 1.3.1 minipass: 3.3.6 - dev: true - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + minipass-pipeline@1.2.4: dependencies: minipass: 3.3.6 - dev: true - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} + minipass-sized@1.0.3: dependencies: minipass: 3.3.6 - dev: true - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - dev: true - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - dev: true + minipass@5.0.0: {} - /minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - dev: true + minipass@7.1.2: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - dev: true - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mkdirp@0.5.6: dependencies: minimist: 1.2.8 - dev: true - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - dev: true + mkdirp@1.0.4: {} - /mlly@1.8.0: - resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} - dependencies: - acorn: 8.15.0 - pathe: 2.0.3 - pkg-types: 1.3.1 - ufo: 1.6.1 - dev: true + moment@2.30.1: {} - /moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} - dev: true + moo@0.5.2: {} - /moo@0.5.2: - resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} - dev: true + morphdom@2.7.7: {} - /morphdom@2.7.7: - resolution: {integrity: sha512-04GmsiBcalrSCNmzfo+UjU8tt3PhZJKzcOy+r1FlGA7/zri8wre3I1WkYN9PT3sIeIKfW9bpyElA+VzOg2E24g==} - dev: true + mri@1.2.0: {} - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: true + ms@2.0.0: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - dev: true + ms@2.1.3: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - dev: true + muggle-string@0.4.1: {} - /muggle-string@0.3.1: - resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==} - dev: true - - /multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} + multimatch@5.0.0: dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - dev: true - /mustache@4.2.0: - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true - dev: true + mustache@4.2.0: {} - /mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + mute-stream@1.0.0: {} - /nanoid@3.3.11: - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.11: {} - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - dev: true + negotiator@0.6.3: {} - /negotiator@0.6.4: - resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} - engines: {node: '>= 0.6'} - dev: true + negotiator@0.6.4: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - dev: true + neo-async@2.6.2: {} - /netmask@2.0.2: - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} - engines: {node: '>= 0.4.0'} - dev: true + netmask@2.0.2: {} - /new-github-release-url@2.0.0: - resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + new-github-release-url@2.0.0: dependencies: type-fest: 2.19.0 - dev: true - /no-case@2.3.2: - resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + no-case@2.3.2: dependencies: lower-case: 1.1.4 - dev: true - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - dependencies: - lower-case: 2.0.2 - tslib: 2.8.1 - dev: true + nocache@3.0.4: {} - /nocache@3.0.4: - resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} - engines: {node: '>=12.0.0'} - dev: true + node-abort-controller@3.1.1: {} - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: true - - /node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} - requiresBuild: true - dev: true + node-addon-api@7.1.1: optional: true - /node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - dev: true - /node-domexception@1.0.0: - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} - engines: {node: '>=10.5.0'} - deprecated: Use your platform's native DOMException instead - dev: true + node-domexception@1.0.0: {} - /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 - dev: true + optionalDependencies: + encoding: 0.1.13 - /node-fetch@3.3.2: - resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + node-fetch@3.3.2: dependencies: data-uri-to-buffer: 4.0.1 fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 - dev: true - /node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true + node-gyp@9.4.1: dependencies: env-paths: 2.2.1 - exponential-backoff: 3.1.2 + exponential-backoff: 3.1.3 glob: 7.2.3 graceful-fs: 4.2.11 make-fetch-happen: 10.2.1 nopt: 6.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.7.2 + semver: 7.7.3 tar: 6.2.1 which: 2.0.2 transitivePeerDependencies: - bluebird - supports-color - dev: true - /node-html-parser@6.1.13: - resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} + node-html-parser@6.1.13: dependencies: css-select: 5.2.2 he: 1.2.0 - dev: true - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - dev: true + node-int64@0.4.0: {} - /node-releases@2.0.21: - resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} - dev: true + node-releases@2.0.27: {} - /node-stream-zip@1.15.0: - resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} - engines: {node: '>=0.12.0'} - dev: true + node-stream-zip@1.15.0: {} - /nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + nopt@6.0.0: dependencies: abbrev: 1.1.1 - dev: true - /nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + nopt@7.2.1: dependencies: abbrev: 2.0.0 - dev: true - /normalize-package-data@5.0.0: - resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + normalize-package-data@5.0.0: dependencies: hosted-git-info: 6.1.3 is-core-module: 2.16.1 - semver: 7.7.2 + semver: 7.7.3 validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - dev: true + normalize-path@3.0.0: {} - /normalize-url@8.1.0: - resolution: {integrity: sha512-X06Mfd/5aKsRHc0O0J5CUedwnPmnDtLF2+nq+KN9KSDlJHkPuh0JUviWjEWMe0SW/9TDdSLVPuk7L5gGTIA1/w==} - engines: {node: '>=14.16'} - dev: true + normalize-url@8.1.0: {} - /npm-bundled@3.0.1: - resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-bundled@3.0.1: dependencies: npm-normalize-package-bin: 3.0.1 - dev: true - /npm-install-checks@6.3.0: - resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-install-checks@6.3.0: dependencies: - semver: 7.7.2 - dev: true + semver: 7.7.3 - /npm-normalize-package-bin@3.0.1: - resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + npm-normalize-package-bin@3.0.1: {} - /npm-package-arg@10.1.0: - resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-package-arg@10.1.0: dependencies: hosted-git-info: 6.1.3 proc-log: 3.0.0 - semver: 7.7.2 + semver: 7.7.3 validate-npm-package-name: 5.0.1 - dev: true - /npm-packlist@7.0.4: - resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-packlist@7.0.4: dependencies: ignore-walk: 6.0.5 - dev: true - /npm-pick-manifest@8.0.2: - resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-pick-manifest@8.0.2: dependencies: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 npm-package-arg: 10.1.0 - semver: 7.7.2 - dev: true + semver: 7.7.3 - /npm-registry-fetch@14.0.5: - resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-registry-fetch@14.0.5: dependencies: make-fetch-happen: 11.1.1 minipass: 5.0.0 @@ -10662,96 +13914,54 @@ packages: proc-log: 3.0.0 transitivePeerDependencies: - supports-color - dev: true - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - dev: true - /npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 - dev: true - /npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + npmlog@6.0.2: dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 - dev: true - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - dev: true - /nullthrows@1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - dev: true + nullthrows@1.1.1: {} - /nunjucks@3.2.4(chokidar@3.6.0): - resolution: {integrity: sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==} - engines: {node: '>= 6.9.0'} - hasBin: true - peerDependencies: - chokidar: ^3.3.0 - peerDependenciesMeta: - chokidar: - optional: true + nunjucks@3.2.4(chokidar@3.6.0): dependencies: a-sync-waterfall: 1.0.1 asap: 2.0.6 - chokidar: 3.6.0 commander: 5.1.0 - dev: true + optionalDependencies: + chokidar: 3.6.0 - /nwsapi@2.2.22: - resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==} - dev: true + nwsapi@2.2.23: {} - /ob1@0.80.12: - resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==} - engines: {node: '>=18'} + ob1@0.80.12: dependencies: flow-enums-runtime: 0.0.6 - dev: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - dev: true + object-assign@4.1.1: {} - /object-inspect@1.13.4: - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} - engines: {node: '>= 0.4'} - dev: true + object-inspect@1.13.4: {} - /object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + object-is@1.1.6: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - dev: true - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - dev: true + object-keys@1.1.1: {} - /object.assign@4.1.7: - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} - engines: {node: '>= 0.4'} + object.assign@4.1.7: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 @@ -10759,111 +13969,70 @@ packages: es-object-atoms: 1.1.1 has-symbols: 1.1.0 object-keys: 1.1.1 - dev: true - /omggif@1.0.10: - resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==} - dev: true + obug@2.1.1: {} - /on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} + omggif@1.0.10: {} + + on-finished@2.3.0: dependencies: ee-first: 1.1.1 - dev: true - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - dev: true - /on-headers@1.1.0: - resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==} - engines: {node: '>= 0.8'} - dev: true + on-headers@1.1.0: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - dev: true - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - dev: true - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - dev: true - /open@10.0.3: - resolution: {integrity: sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==} - engines: {node: '>=18'} + open@10.0.3: dependencies: - default-browser: 5.2.1 + default-browser: 5.4.0 define-lazy-prop: 3.0.0 is-inside-container: 1.0.0 is-wsl: 3.1.0 - dev: true - /open@6.4.0: - resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} - engines: {node: '>=8'} + open@6.4.0: dependencies: is-wsl: 1.1.0 - dev: true - /open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} + open@7.4.2: dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /openai@4.104.0: - resolution: {integrity: sha512-p99EFNsA/yX6UhVO93f5kJsDRLAg+CTA2RBqdHK4RtK8u5IJw32Hyb2dTGKbnnFmnuoBv5r7Z2CURI9sGZpSuA==} - hasBin: true - peerDependencies: - ws: ^8.18.0 - zod: ^3.23.8 - peerDependenciesMeta: - ws: - optional: true - zod: - optional: true + openai@4.104.0(encoding@0.1.13)(ws@8.18.3): dependencies: - '@types/node': 18.19.124 + '@types/node': 18.19.130 '@types/node-fetch': 2.6.13 abort-controller: 3.0.0 agentkeepalive: 4.6.0 form-data-encoder: 1.7.2 formdata-node: 4.4.1 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) + optionalDependencies: + ws: 8.18.3 transitivePeerDependencies: - encoding - dev: true - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -10874,11 +14043,8 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /ora@8.0.1: - resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} - engines: {node: '>=18'} + ora@8.0.1: dependencies: chalk: 5.3.0 cli-cursor: 4.0.0 @@ -10889,92 +14055,49 @@ packages: stdin-discarder: 0.2.2 string-width: 7.2.0 strip-ansi: 7.1.2 - dev: true - /os-name@5.1.0: - resolution: {integrity: sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + os-name@5.1.0: dependencies: macos-release: 3.4.0 windows-release: 5.1.1 - dev: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true + os-tmpdir@1.0.2: {} - /own-keys@1.0.1: - resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} - engines: {node: '>= 0.4'} + own-keys@1.0.1: dependencies: get-intrinsic: 1.3.0 object-keys: 1.1.1 safe-push-apply: 1.0.0 - dev: true - /p-cancelable@3.0.0: - resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} - engines: {node: '>=12.20'} - dev: true + p-cancelable@3.0.0: {} - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - dev: true - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - dev: true - /p-limit@5.0.0: - resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} - engines: {node: '>=18'} - dependencies: - yocto-queue: 1.2.1 - dev: true - - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - dev: true - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - dev: true - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - dev: true - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - dev: true - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - dev: true + p-try@2.2.0: {} - /pac-proxy-agent@7.2.0: - resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} - engines: {node: '>= 14'} + pac-proxy-agent@7.2.0: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.4 @@ -10986,39 +14109,24 @@ packages: socks-proxy-agent: 8.0.5 transitivePeerDependencies: - supports-color - dev: true - /pac-resolver@7.0.1: - resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} - engines: {node: '>= 14'} + pac-resolver@7.0.1: dependencies: degenerator: 5.0.1 netmask: 2.0.2 - dev: true - /package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - dev: true + package-json-from-dist@1.0.1: {} - /package-json@8.1.1: - resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} - engines: {node: '>=14.16'} + package-json@8.1.1: dependencies: got: 12.6.1 registry-auth-token: 5.1.0 registry-url: 6.0.1 - semver: 7.7.2 - dev: true + semver: 7.6.0 - /package-name-regex@2.0.6: - resolution: {integrity: sha512-gFL35q7kbE/zBaPA3UKhp2vSzcPYx2ecbYuwv1ucE9Il6IIgBDweBlH8D68UFGZic2MkllKa2KHCfC1IQBQUYA==} - engines: {node: '>=12'} - dev: true + package-name-regex@2.0.6: {} - /pacote@15.2.0: - resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + pacote@15.2.0: dependencies: '@npmcli/git': 4.1.0 '@npmcli/installed-package-contents': 2.1.0 @@ -11041,461 +14149,252 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} - dev: true + pako@1.0.11: {} - /param-case@2.1.1: - resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + param-case@2.1.1: dependencies: no-case: 2.3.2 - dev: true - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - dev: true - /parse-bmfont-ascii@1.0.6: - resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==} - dev: true + parse-bmfont-ascii@1.0.6: {} - /parse-bmfont-binary@1.0.6: - resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==} - dev: true + parse-bmfont-binary@1.0.6: {} - /parse-bmfont-xml@1.1.6: - resolution: {integrity: sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==} + parse-bmfont-xml@1.1.6: dependencies: xml-parse-from-string: 1.0.1 xml2js: 0.5.0 - dev: true - /parse-headers@2.0.6: - resolution: {integrity: sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==} - dev: true + parse-headers@2.0.6: {} - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + parse-json@4.0.0: dependencies: error-ex: 1.3.4 json-parse-better-errors: 1.0.2 - dev: true - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: '@babel/code-frame': 7.27.1 error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - dev: true - /parse-path@7.1.0: - resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==} + parse-path@7.1.0: dependencies: protocols: 2.0.2 - dev: true - /parse-srcset@1.0.2: - resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} - dev: true + parse-srcset@1.0.2: {} - /parse-svg-path@0.1.2: - resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==} - dev: true + parse-svg-path@0.1.2: {} - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + parse-url@8.1.0: dependencies: parse-path: 7.1.0 - dev: true - /parse5-htmlparser2-tree-adapter@7.1.0: - resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} + parse5-htmlparser2-tree-adapter@7.1.0: dependencies: domhandler: 5.0.3 parse5: 7.3.0 - dev: true - /parse5-parser-stream@7.1.2: - resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} + parse5-parser-stream@7.1.2: dependencies: parse5: 7.3.0 - dev: true - /parse5@7.3.0: - resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + parse5@7.3.0: dependencies: entities: 6.0.1 - dev: true - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - dev: true + parseurl@1.3.3: {} - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - dependencies: - no-case: 3.0.4 - tslib: 2.8.1 - dev: true + path-browserify@1.0.1: {} - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - dev: true + path-exists@3.0.0: {} - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - dev: true + path-exists@4.0.0: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - dev: true + path-is-absolute@1.0.1: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - dev: true + path-key@3.1.1: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - dev: true + path-key@4.0.0: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - dev: true + path-parse@1.0.7: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: true + path-root-regex@0.1.2: {} - /path-root-regex@0.1.2: - resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} - engines: {node: '>=0.10.0'} - dev: true - - /path-root@0.1.1: - resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} - engines: {node: '>=0.10.0'} + path-root@0.1.1: dependencies: path-root-regex: 0.1.2 - dev: true - /path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - dev: true - /path-scurry@2.0.0: - resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} - engines: {node: 20 || >=22} + path-scurry@2.0.1: dependencies: - lru-cache: 11.2.1 + lru-cache: 11.2.4 minipass: 7.1.2 - dev: true - /path-to-regexp@6.3.0: - resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} - dev: true + path-to-regexp@6.3.0: {} - /path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - dev: true + path-type@5.0.0: {} - /pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - dev: true + pathe@2.0.3: {} - /pathe@2.0.3: - resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - dev: true + pathval@2.0.1: {} - /pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - dev: true - - /pathval@2.0.1: - resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} - engines: {node: '>= 14.16'} - dev: true - - /periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + periscopic@3.1.0: dependencies: '@types/estree': 1.0.8 estree-walker: 3.0.3 is-reference: 3.0.3 - dev: true - /phin@2.9.3: - resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + phin@2.9.3: {} - /phin@3.7.1: - resolution: {integrity: sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==} - engines: {node: '>= 8'} + phin@3.7.1: dependencies: centra: 2.7.0 transitivePeerDependencies: - debug - dev: true - /picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + picocolors@1.1.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - dev: true + picomatch@2.3.1: {} - /picomatch@4.0.3: - resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} - engines: {node: '>=12'} - dev: true + picomatch@4.0.3: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - dev: true + pify@2.3.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - dev: true + pify@4.0.1: {} - /pirates@4.0.7: - resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} - engines: {node: '>= 6'} - dev: true + pirates@4.0.7: {} - /pixelmatch@4.0.2: - resolution: {integrity: sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==} - hasBin: true + pixelmatch@4.0.2: dependencies: pngjs: 3.4.0 - dev: true - /pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - dev: true - /pkg-types@1.3.1: - resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} - dependencies: - confbox: 0.1.8 - mlly: 1.8.0 - pathe: 2.0.3 - dev: true - - /please-upgrade-node@3.2.0: - resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} + please-upgrade-node@3.2.0: dependencies: semver-compare: 1.0.0 - dev: true - /pngjs@3.4.0: - resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} - engines: {node: '>=4.0.0'} - dev: true + pngjs@3.4.0: {} - /possible-typed-array-names@1.1.0: - resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} - engines: {node: '>= 0.4'} - dev: true + possible-typed-array-names@1.1.0: {} - /postcss@8.5.6: - resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.5.6: dependencies: nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 - /posthtml-parser@0.11.0: - resolution: {integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==} - engines: {node: '>=12'} + posthtml-parser@0.11.0: dependencies: htmlparser2: 7.2.0 - dev: true - /posthtml-render@3.0.0: - resolution: {integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==} - engines: {node: '>=12'} + posthtml-render@3.0.0: dependencies: is-json: 2.0.1 - dev: true - /posthtml-urls@1.0.0: - resolution: {integrity: sha512-CMJ0L009sGQVUuYM/g6WJdscsq6ooAwhUuF6CDlYPMLxKp2rmCYVebEU+wZGxnQstGJhZPMvXsRhtqekILd5/w==} - engines: {node: '>= 4'} + posthtml-urls@1.0.0: dependencies: http-equiv-refresh: 1.0.0 list-to-array: 1.1.0 parse-srcset: 1.0.2 promise-each: 2.2.0 - dev: true - /posthtml@0.16.6: - resolution: {integrity: sha512-JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ==} - engines: {node: '>=12.0.0'} + posthtml@0.16.7: dependencies: posthtml-parser: 0.11.0 posthtml-render: 3.0.0 - dev: true - /potrace@2.1.8: - resolution: {integrity: sha512-V9hI7UMJyEhNZjM8CbZaP/804ZRLgzWkCS9OOYnEZkszzj3zKR/erRdj0uFMcN3pp6x4B+AIZebmkQgGRinG/g==} + potrace@2.1.8: dependencies: jimp: 0.14.0 transitivePeerDependencies: - debug - dev: true - /preact@10.27.2: - resolution: {integrity: sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==} + preact@10.28.0: {} - /prettier@3.6.2: - resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} - engines: {node: '>=14'} - hasBin: true - dev: true + prettier@3.7.4: {} - /pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} + pretty-format@26.6.2: dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 - dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 - dev: true - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 - dev: true - /proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + proc-log@3.0.0: {} - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - dev: true + process-nextick-args@2.0.1: {} - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - dev: true + process@0.11.10: {} - /promise-each@2.2.0: - resolution: {integrity: sha512-67roqt1k3QDA41DZ8xi0V+rF3GoaMiX7QilbXu0vXimut+9RcKBNZ/t60xCRgcsihmNUsEjh48xLfNqOrKblUg==} + promise-each@2.2.0: dependencies: any-promise: 0.1.0 - dev: true - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dev: true + promise-inflight@1.0.1: {} - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + promise-retry@2.0.1: dependencies: err-code: 2.0.3 retry: 0.12.0 - dev: true - /promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} + promise.allsettled@1.0.7: dependencies: array.prototype.map: 1.0.8 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 get-intrinsic: 1.3.0 iterate-value: 1.0.2 - dev: true - /promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + promise@7.3.1: dependencies: asap: 2.0.6 - dev: true - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + promise@8.3.0: dependencies: asap: 2.0.6 - dev: true - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - dev: true - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - dev: true - /proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - dev: true + proto-list@1.2.4: {} - /protocols@2.0.2: - resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==} - dev: true + protocols@2.0.2: {} - /proxy-agent@6.4.0: - resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==} - engines: {node: '>= 14'} + proxy-agent@6.4.0: dependencies: agent-base: 7.1.4 debug: 4.4.3 @@ -11507,32 +14406,22 @@ packages: socks-proxy-agent: 8.0.5 transitivePeerDependencies: - supports-color - dev: true - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - dev: true + proxy-from-env@1.1.0: {} - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - dev: true + prr@1.0.1: {} - /psl@1.15.0: - resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + psl@1.15.0: dependencies: punycode: 2.3.1 - dev: true - /pug-attrs@3.0.0: - resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} + pug-attrs@3.0.0: dependencies: constantinople: 4.0.1 js-stringify: 1.0.2 pug-runtime: 3.0.1 - dev: true - /pug-code-gen@3.0.3: - resolution: {integrity: sha512-cYQg0JW0w32Ux+XTeZnBEeuWrAY7/HNE6TWnhiHGnnRYlCgyAUPoyh9KzCMa9WhcJlJ1AtQqpEYHc+vbCzA+Aw==} + pug-code-gen@3.0.3: dependencies: constantinople: 4.0.1 doctypes: 1.1.0 @@ -11542,67 +14431,47 @@ packages: pug-runtime: 3.0.1 void-elements: 3.1.0 with: 7.0.2 - dev: true - /pug-error@2.1.0: - resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==} - dev: true + pug-error@2.1.0: {} - /pug-filters@4.0.0: - resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} + pug-filters@4.0.0: dependencies: constantinople: 4.0.1 jstransformer: 1.0.0 pug-error: 2.1.0 pug-walk: 2.0.0 - resolve: 1.22.10 - dev: true + resolve: 1.22.11 - /pug-lexer@5.0.1: - resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} + pug-lexer@5.0.1: dependencies: character-parser: 2.2.0 is-expression: 4.0.0 pug-error: 2.1.0 - dev: true - /pug-linker@4.0.0: - resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} + pug-linker@4.0.0: dependencies: pug-error: 2.1.0 pug-walk: 2.0.0 - dev: true - /pug-load@3.0.0: - resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} + pug-load@3.0.0: dependencies: object-assign: 4.1.1 pug-walk: 2.0.0 - dev: true - /pug-parser@6.0.0: - resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} + pug-parser@6.0.0: dependencies: pug-error: 2.1.0 token-stream: 1.0.0 - dev: true - /pug-runtime@3.0.1: - resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} - dev: true + pug-runtime@3.0.1: {} - /pug-strip-comments@2.0.0: - resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} + pug-strip-comments@2.0.0: dependencies: pug-error: 2.1.0 - dev: true - /pug-walk@2.0.0: - resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} - dev: true + pug-walk@2.0.0: {} - /pug@3.0.3: - resolution: {integrity: sha512-uBi6kmc9f3SZ3PXxqcHiUZLmIXgfgWooKWXcwSGwQd2Zi5Rb0bT14+8CJjJgI8AB+nndLaNgHGrcc6bPIB665g==} + pug@3.0.3: dependencies: pug-code-gen: 3.0.3 pug-filters: 4.0.0 @@ -11612,116 +14481,73 @@ packages: pug-parser: 6.0.0 pug-runtime: 3.0.1 pug-strip-comments: 2.0.0 - dev: true - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - dev: true + punycode@2.3.1: {} - /pupa@3.1.0: - resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} - engines: {node: '>=12.20'} + pupa@3.3.0: dependencies: escape-goat: 4.0.0 - dev: true - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - dev: true + querystringify@2.2.0: {} - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - dev: true + queue-microtask@1.2.3: {} - /queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + queue@6.0.2: dependencies: inherits: 2.0.4 - dev: true - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true + quick-lru@5.1.1: {} - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - dev: true + range-parser@1.2.1: {} - /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true + rc@1.2.8: dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 - dev: true - /react-devtools-core@4.28.5: - resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} + react-devtools-core@4.28.5: dependencies: shell-quote: 1.8.3 ws: 7.5.10 transitivePeerDependencies: - bufferutil - utf-8-validate - dev: true - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: ^18.2.0 + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 react: 18.2.0 scheduler: 0.23.2 - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: true + react-is@16.13.1: {} - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - dev: true + react-is@17.0.2: {} - /react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - dev: true + react-is@18.3.1: {} - /react-native-svg@15.13.0(react-native@0.73.11)(react@18.2.0): - resolution: {integrity: sha512-/YPK+PAAXg4T0x2d2vYPvqqAhOYid2bRKxUVT7STIyd1p2JxWmsGQkfZxXCkEFN7TwLfIyVlT5RimT91Pj/qXw==} - peerDependencies: - react: '*' - react-native: '*' + react-native-svg@15.15.1(react-native@0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0))(react@18.2.0): dependencies: css-select: 5.2.2 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.73.11(@babel/core@7.28.4)(@babel/preset-env@7.28.3)(react@18.2.0) + react-native: 0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0) warn-once: 0.1.1 - dev: true - /react-native@0.73.11(@babel/core@7.28.4)(@babel/preset-env@7.28.3)(react@18.2.0): - resolution: {integrity: sha512-yvQIX+ZXOHMFnhmwZ1fBpRI/53k+iLN8DxVf24Fx4ABU63RGAYfyCZC0/3W+5OUVx4KSIZUv4Tv+/NGIieBOwg==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - react: 18.2.0 + react-native@0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 12.3.7 - '@react-native-community/cli-platform-android': 12.3.7 - '@react-native-community/cli-platform-ios': 12.3.7 + '@react-native-community/cli': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-platform-android': 12.3.7(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 12.3.7(encoding@0.1.13) '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3(@babel/preset-env@7.28.3) - '@react-native/community-cli-plugin': 0.73.18(@babel/core@7.28.4)(@babel/preset-env@7.28.3) + '@react-native/codegen': 0.73.3(@babel/preset-env@7.28.5(@babel/core@7.28.5)) + '@react-native/community-cli-plugin': 0.73.18(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13) '@react-native/gradle-plugin': 0.73.5 '@react-native/js-polyfills': 0.73.1 '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.11) + '@react-native/virtualized-lists': 0.73.4(react-native@0.73.11(@babel/core@7.28.5)(@babel/preset-env@7.28.5(@babel/core@7.28.5))(encoding@0.1.13)(react@18.2.0)) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -11757,66 +14583,43 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.14.2: {} - /react-refresh@0.17.0: - resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.17.0: {} - /react-shallow-renderer@16.15.0(react@18.2.0): - resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-refresh@0.18.0: {} + + react-shallow-renderer@16.15.0(react@18.2.0): dependencies: object-assign: 4.1.1 react: 18.2.0 react-is: 18.3.1 - dev: true - /react-test-renderer@18.2.0(react@18.2.0): - resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} - peerDependencies: - react: ^18.2.0 + react-test-renderer@18.2.0(react@18.2.0): dependencies: react: 18.2.0 react-is: 18.3.1 react-shallow-renderer: 16.15.0(react@18.2.0) scheduler: 0.23.2 - dev: true - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + react@18.2.0: dependencies: loose-envify: 1.4.0 - /read-package-json-fast@3.0.2: - resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + read-package-json-fast@3.0.2: dependencies: json-parse-even-better-errors: 3.0.2 npm-normalize-package-bin: 3.0.1 - dev: true - /read-package-json@6.0.4: - resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + read-package-json@6.0.4: dependencies: glob: 10.3.16 json-parse-even-better-errors: 3.0.2 normalize-package-data: 5.0.0 npm-normalize-package-bin: 3.0.1 - dev: true - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -11825,52 +14628,35 @@ packages: safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 - dev: true - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - dev: true - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - dev: true - /readdirp@4.1.2: - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} - engines: {node: '>= 14.18.0'} - dev: true + readdirp@4.1.2: {} - /readline@1.3.0: - resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} - dev: true + readdirp@5.0.0: {} - /recast@0.21.5: - resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} - engines: {node: '>= 4'} + readline@1.3.0: {} + + recast@0.21.5: dependencies: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.8.1 - dev: true - /rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} + rechoir@0.6.2: dependencies: - resolve: 1.22.10 - dev: true + resolve: 1.22.11 - /recursive-copy@2.0.14: - resolution: {integrity: sha512-K8WNY8f8naTpfbA+RaXmkaQuD1IeW9EgNEfyGxSqqTQukpVtoOKros9jUqbpEsSw59YOmpd8nCBgtqJZy5nvog==} + recursive-copy@2.0.14: dependencies: errno: 0.1.8 graceful-fs: 4.2.11 @@ -11881,48 +14667,32 @@ packages: promise: 7.3.1 rimraf: 2.7.1 slash: 1.0.0 - dev: true - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - dev: true - /reflect.getprototypeof@1.0.10: - resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} - engines: {node: '>= 0.4'} + reflect.getprototypeof@1.0.10: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 get-proto: 1.0.1 which-builtin-type: 1.2.1 - dev: true - /regenerate-unicode-properties@10.2.2: - resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.2.2: dependencies: regenerate: 1.4.2 - dev: true - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: true + regenerate@1.4.2: {} - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - dev: true + regenerator-runtime@0.13.11: {} - /regexp.prototype.flags@1.5.4: - resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} - engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.4: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 @@ -11930,60 +14700,39 @@ packages: get-proto: 1.0.1 gopd: 1.2.0 set-function-name: 2.0.2 - dev: true - /regexpu-core@6.3.1: - resolution: {integrity: sha512-DzcswPr252wEr7Qz8AyAVbfyBDKLoYp6eRA1We2Fa9qirRFSdtkP5sHr3yglDKy2BbA0fd2T+j/CUSKes3FeVQ==} - engines: {node: '>=4'} + regexpu-core@6.4.0: dependencies: regenerate: 1.4.2 regenerate-unicode-properties: 10.2.2 regjsgen: 0.8.0 - regjsparser: 0.12.0 + regjsparser: 0.13.0 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.2.1 - dev: true - /registry-auth-token@5.1.0: - resolution: {integrity: sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==} - engines: {node: '>=14'} + registry-auth-token@5.1.0: dependencies: '@pnpm/npm-conf': 2.3.1 - dev: true - /registry-url@6.0.1: - resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} - engines: {node: '>=12'} + registry-url@6.0.1: dependencies: rc: 1.2.8 - dev: true - /regjsgen@0.8.0: - resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} - dev: true + regjsgen@0.8.0: {} - /regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} - hasBin: true + regjsparser@0.13.0: dependencies: - jsesc: 3.0.2 - dev: true + jsesc: 3.1.0 - /relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - dev: true + relateurl@0.2.7: {} - /release-it@17.1.1(typescript@5.9.2): - resolution: {integrity: sha512-b+4Tu2eb5f2wIdIe5E9hre0evbMQrXp/kRq0natHsHYJVqu1Bd4/h2a+swFi0faGmC3cJdB16uYR6LscG9SchQ==} - engines: {node: '>=18'} - hasBin: true + release-it@17.1.1(typescript@5.9.3): dependencies: '@iarna/toml': 2.2.5 '@octokit/rest': 20.0.2 async-retry: 1.3.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.9.2) + cosmiconfig: 9.0.0(typescript@5.9.3) execa: 8.0.1 git-url-parse: 14.0.0 globby: 14.0.1 @@ -12009,158 +14758,86 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /rename-keys@1.2.0: - resolution: {integrity: sha512-U7XpAktpbSgHTRSNRrjKSrjYkZKuhUukfoBlXWXUExCAqhzh1TU3BDRAfJmarcl5voKS+pbKU9MvyLWKZ4UEEg==} - engines: {node: '>= 0.8.0'} - dev: true + rename-keys@1.2.0: {} - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - dev: true + require-directory@2.1.1: {} - /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - dev: true + require-main-filename@2.0.0: {} - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - dev: true + requires-port@1.0.0: {} - /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: true + resolve-alpn@1.2.1: {} - /resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - dev: true + resolve-from@3.0.0: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - dev: true + resolve-from@4.0.0: {} - /resolve-package-path@3.1.0: - resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} - engines: {node: 10.* || >= 12} + resolve-package-path@3.1.0: dependencies: path-root: 0.1.1 - resolve: 1.22.10 - dev: true + resolve: 1.22.11 - /resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - dev: true + resolve-pkg-maps@1.0.0: {} - /resolve@1.22.10: - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} - engines: {node: '>= 0.4'} - hasBin: true + resolve@1.22.11: dependencies: is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /responselike@3.0.0: - resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} - engines: {node: '>=14.16'} + responselike@3.0.0: dependencies: lowercase-keys: 3.0.0 - dev: true - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + restore-cursor@4.0.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - dev: true + retry@0.12.0: {} - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - dev: true + retry@0.13.1: {} - /reusify@1.1.0: - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - dev: true + reusify@1.1.0: {} - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.3 - dev: true - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.7.1: dependencies: glob: 7.2.3 - dev: true - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - dev: true - /rollup-plugin-dts@6.2.3(rollup@4.50.2)(typescript@5.9.2): - resolution: {integrity: sha512-UgnEsfciXSPpASuOelix7m4DrmyQgiaWBnvI0TM4GxuDh5FkqW8E5hu57bCxXB90VvR1WNfLV80yEDN18UogSA==} - engines: {node: '>=16'} - peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 + rollup-plugin-dts@6.3.0(rollup@4.53.3)(typescript@5.9.3): dependencies: - magic-string: 0.30.19 - rollup: 4.50.2 - typescript: 5.9.2 + magic-string: 0.30.21 + rollup: 4.53.3 + typescript: 5.9.3 optionalDependencies: '@babel/code-frame': 7.27.1 - dev: true - /rollup-plugin-esbuild@6.2.1(esbuild@0.20.2)(rollup@4.50.2): - resolution: {integrity: sha512-jTNOMGoMRhs0JuueJrJqbW8tOwxumaWYq+V5i+PD+8ecSCVkuX27tGW7BXqDgoULQ55rO7IdNxPcnsWtshz3AA==} - engines: {node: '>=14.18.0'} - peerDependencies: - esbuild: '>=0.18.0' - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-plugin-esbuild@6.2.1(esbuild@0.20.2)(rollup@4.53.3): dependencies: debug: 4.4.3 es-module-lexer: 1.7.0 esbuild: 0.20.2 - get-tsconfig: 4.10.1 - rollup: 4.50.2 + get-tsconfig: 4.13.0 + rollup: 4.53.3 unplugin-utils: 0.2.5 transitivePeerDependencies: - supports-color - dev: true - /rollup-plugin-filesize@10.0.0: - resolution: {integrity: sha512-JAYYhzCcmGjmCzo3LEHSDE3RAPHKIeBdpqRhiyZSv5o/3wFhktUOzYAWg/uUKyEu5dEaVaql6UOmaqHx1qKrZA==} - engines: {node: '>=16.0.0'} + rollup-plugin-filesize@10.0.0: dependencies: '@babel/runtime': 7.28.4 boxen: 5.1.2 @@ -12169,69 +14846,47 @@ packages: filesize: 6.4.0 gzip-size: 6.0.0 pacote: 15.2.0 - terser: 5.44.0 + terser: 5.44.1 transitivePeerDependencies: - bluebird - supports-color - dev: true - /rollup-plugin-license@3.6.0(rollup@4.50.2): - resolution: {integrity: sha512-1ieLxTCaigI5xokIfszVDRoy6c/Wmlot1fDEnea7Q/WXSR8AqOjYljHDLObAx7nFxHC2mbxT3QnTSPhaic2IYw==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-plugin-license@3.6.0(picomatch@4.0.3)(rollup@4.53.3): dependencies: commenting: 1.1.0 fdir: 6.5.0(picomatch@4.0.3) lodash: 4.17.21 - magic-string: 0.30.19 + magic-string: 0.30.21 moment: 2.30.1 package-name-regex: 2.0.6 - rollup: 4.50.2 + rollup: 4.53.3 spdx-expression-validate: 2.0.0 spdx-satisfies: 5.0.1 transitivePeerDependencies: - picomatch - dev: true - /rollup-plugin-peer-deps-external@2.2.4(rollup@4.50.2): - resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} - peerDependencies: - rollup: '*' + rollup-plugin-peer-deps-external@2.2.4(rollup@4.53.3): dependencies: - rollup: 4.50.2 - dev: true + rollup: 4.53.3 - /rollup-plugin-visualizer@5.14.0(rollup@4.50.2): - resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - rolldown: 1.x - rollup: 2.x || 3.x || 4.x - peerDependenciesMeta: - rolldown: - optional: true - rollup: - optional: true + rollup-plugin-visualizer@5.14.0(rollup@4.53.3): dependencies: open: 8.4.2 picomatch: 4.0.3 - rollup: 4.50.2 source-map: 0.7.6 yargs: 17.7.2 - dev: true + optionalDependencies: + rollup: 4.53.3 - /rollup-preset-solid@2.0.1(solid-js@1.9.9): - resolution: {integrity: sha512-CPJn3SqADlIxhAW3jwZuAFRyZcz7HPeUAz4f+6BzulxHnK4v6tgoTbMvk8vEsfsvHwiTmX93KHIKdf79aTdVSA==} + rollup-preset-solid@2.0.1(@types/babel__core@7.20.5)(solid-js@1.9.10): dependencies: - '@babel/core': 7.28.4 - '@babel/preset-env': 7.28.3(@babel/core@7.28.4) - '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) - '@rollup/plugin-babel': 6.0.4(@babel/core@7.28.4)(rollup@3.29.5) + '@babel/core': 7.28.5 + '@babel/preset-env': 7.28.5(@babel/core@7.28.5) + '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@3.29.5) '@rollup/plugin-node-resolve': 15.3.1(rollup@3.29.5) '@rollup/plugin-terser': 0.1.0(rollup@3.29.5) - babel-preset-solid: 1.9.9(@babel/core@7.28.4)(solid-js@1.9.9) + babel-preset-solid: 1.9.10(@babel/core@7.28.5)(solid-js@1.9.10) colorette: 2.0.20 esbuild: 0.15.18 merge-anything: 5.1.7 @@ -12241,212 +14896,137 @@ packages: - '@types/babel__core' - solid-js - supports-color - dev: true - /rollup@3.29.5: - resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true + rollup@3.29.5: optionalDependencies: fsevents: 2.3.3 - dev: true - /rollup@4.50.2: - resolution: {integrity: sha512-BgLRGy7tNS9H66aIMASq1qSYbAAJV6Z6WR4QYTvj5FgF15rZ/ympT1uixHXwzbZUBDbkvqUI1KR0fH1FhMaQ9w==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.53.3: dependencies: '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.50.2 - '@rollup/rollup-android-arm64': 4.50.2 - '@rollup/rollup-darwin-arm64': 4.50.2 - '@rollup/rollup-darwin-x64': 4.50.2 - '@rollup/rollup-freebsd-arm64': 4.50.2 - '@rollup/rollup-freebsd-x64': 4.50.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.50.2 - '@rollup/rollup-linux-arm-musleabihf': 4.50.2 - '@rollup/rollup-linux-arm64-gnu': 4.50.2 - '@rollup/rollup-linux-arm64-musl': 4.50.2 - '@rollup/rollup-linux-loong64-gnu': 4.50.2 - '@rollup/rollup-linux-ppc64-gnu': 4.50.2 - '@rollup/rollup-linux-riscv64-gnu': 4.50.2 - '@rollup/rollup-linux-riscv64-musl': 4.50.2 - '@rollup/rollup-linux-s390x-gnu': 4.50.2 - '@rollup/rollup-linux-x64-gnu': 4.50.2 - '@rollup/rollup-linux-x64-musl': 4.50.2 - '@rollup/rollup-openharmony-arm64': 4.50.2 - '@rollup/rollup-win32-arm64-msvc': 4.50.2 - '@rollup/rollup-win32-ia32-msvc': 4.50.2 - '@rollup/rollup-win32-x64-msvc': 4.50.2 + '@rollup/rollup-android-arm-eabi': 4.53.3 + '@rollup/rollup-android-arm64': 4.53.3 + '@rollup/rollup-darwin-arm64': 4.53.3 + '@rollup/rollup-darwin-x64': 4.53.3 + '@rollup/rollup-freebsd-arm64': 4.53.3 + '@rollup/rollup-freebsd-x64': 4.53.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 + '@rollup/rollup-linux-arm-musleabihf': 4.53.3 + '@rollup/rollup-linux-arm64-gnu': 4.53.3 + '@rollup/rollup-linux-arm64-musl': 4.53.3 + '@rollup/rollup-linux-loong64-gnu': 4.53.3 + '@rollup/rollup-linux-ppc64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-musl': 4.53.3 + '@rollup/rollup-linux-s390x-gnu': 4.53.3 + '@rollup/rollup-linux-x64-gnu': 4.53.3 + '@rollup/rollup-linux-x64-musl': 4.53.3 + '@rollup/rollup-openharmony-arm64': 4.53.3 + '@rollup/rollup-win32-arm64-msvc': 4.53.3 + '@rollup/rollup-win32-ia32-msvc': 4.53.3 + '@rollup/rollup-win32-x64-gnu': 4.53.3 + '@rollup/rollup-win32-x64-msvc': 4.53.3 fsevents: 2.3.3 - dev: true - /rrweb-cssom@0.7.1: - resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} - dev: true + rrweb-cssom@0.7.1: {} - /rrweb-cssom@0.8.0: - resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} - dev: true + rrweb-cssom@0.8.0: {} - /run-applescript@7.1.0: - resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} - engines: {node: '>=18'} - dev: true + run-applescript@7.1.0: {} - /run-async@3.0.0: - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} - engines: {node: '>=0.12.0'} - dev: true + run-async@3.0.0: {} - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - dev: true - /rxjs@7.8.2: - resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + rxjs@7.8.2: dependencies: tslib: 2.8.1 - dev: true - /sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} + sade@1.8.1: dependencies: mri: 1.2.0 - dev: true - /safe-array-concat@1.1.3: - resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.3: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 get-intrinsic: 1.3.0 has-symbols: 1.1.0 isarray: 2.0.5 - dev: true - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - dev: true + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: true + safe-buffer@5.2.1: {} - /safe-push-apply@1.0.0: - resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} - engines: {node: '>= 0.4'} + safe-push-apply@1.0.0: dependencies: es-errors: 1.3.0 isarray: 2.0.5 - dev: true - /safe-regex-test@1.1.0: - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} - engines: {node: '>= 0.4'} + safe-regex-test@1.1.0: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-regex: 1.2.1 - dev: true - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - dev: true + safer-buffer@2.1.2: {} - /sander@0.5.1: - resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + sander@0.5.1: dependencies: es6-promise: 3.3.1 graceful-fs: 4.2.11 mkdirp: 0.5.6 rimraf: 2.7.1 - dev: true - /sass@1.92.1: - resolution: {integrity: sha512-ffmsdbwqb3XeyR8jJR6KelIXARM9bFQe8A6Q3W4Klmwy5Ckd5gz7jgUNHo4UOqutU5Sk1DtKLbpDP0nLCg1xqQ==} - engines: {node: '>=14.0.0'} - hasBin: true + sass@1.96.0: dependencies: chokidar: 4.0.3 - immutable: 5.1.3 + immutable: 5.1.4 source-map-js: 1.2.1 optionalDependencies: '@parcel/watcher': 2.5.1 - dev: true - /sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - dev: true + sax@1.4.3: {} - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - dev: true - /scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 - /scheduler@0.24.0-canary-efb381bbf-20230505: - resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + scheduler@0.24.0-canary-efb381bbf-20230505: dependencies: loose-envify: 1.4.0 - dev: true - /section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} + scule@1.3.0: {} + + section-matter@1.0.0: dependencies: extend-shallow: 2.0.1 kind-of: 6.0.3 - dev: true - /semver-compare@1.0.0: - resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} - dev: true + semver-compare@1.0.0: {} - /semver-diff@4.0.0: - resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} - engines: {node: '>=12'} + semver-diff@4.0.0: dependencies: - semver: 7.7.2 - dev: true + semver: 7.6.0 - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - dev: true + semver@5.7.2: {} - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - dev: true + semver@6.3.1: {} - /semver@7.6.0: - resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} - engines: {node: '>=10'} - hasBin: true + semver@7.6.0: dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} - engines: {node: '>=10'} - hasBin: true + semver@7.7.3: {} - /send@0.19.0: - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} - engines: {node: '>= 0.8.0'} + send@0.19.0: dependencies: debug: 2.6.9 depd: 2.0.0 @@ -12463,30 +15043,16 @@ packages: statuses: 2.0.1 transitivePeerDependencies: - supports-color - dev: true - /serialize-error@2.1.0: - resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} - engines: {node: '>=0.10.0'} - dev: true + serialize-error@2.1.0: {} - /seroval-plugins@1.3.3(seroval@1.3.2): - resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==} - engines: {node: '>=10'} - peerDependencies: - seroval: ^1.0 + seroval-plugins@1.3.3(seroval@1.3.2): dependencies: seroval: 1.3.2 - dev: true - /seroval@1.3.2: - resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==} - engines: {node: '>=10'} - dev: true + seroval@1.3.2: {} - /serve-static@1.16.2: - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} - engines: {node: '>= 0.8.0'} + serve-static@1.16.2: dependencies: encodeurl: 2.0.0 escape-html: 1.0.3 @@ -12494,15 +15060,10 @@ packages: send: 0.19.0 transitivePeerDependencies: - supports-color - dev: true - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - dev: true + set-blocking@2.0.0: {} - /set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -12510,46 +15071,31 @@ packages: get-intrinsic: 1.3.0 gopd: 1.2.0 has-property-descriptors: 1.0.2 - dev: true - /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + set-function-name@2.0.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - dev: true - /set-proto@1.0.0: - resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} - engines: {node: '>= 0.4'} + set-proto@1.0.0: dependencies: dunder-proto: 1.0.1 es-errors: 1.3.0 es-object-atoms: 1.1.1 - dev: true - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - dev: true + setprototypeof@1.2.0: {} - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - dev: true - /sharp@0.33.5: - resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - requiresBuild: true + sharp@0.33.5: dependencies: color: 4.2.3 - detect-libc: 2.1.0 - semver: 7.7.2 + detect-libc: 2.1.2 + semver: 7.7.3 optionalDependencies: '@img/sharp-darwin-arm64': 0.33.5 '@img/sharp-darwin-x64': 0.33.5 @@ -12571,90 +15117,55 @@ packages: '@img/sharp-win32-ia32': 0.33.5 '@img/sharp-win32-x64': 0.33.5 - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - dev: true - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - dev: true + shebang-regex@3.0.0: {} - /shell-quote@1.8.3: - resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} - engines: {node: '>= 0.4'} - dev: true + shell-quote@1.8.3: {} - /shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true + shelljs@0.8.5: dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 - dev: true - /side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} - engines: {node: '>= 0.4'} + side-channel-list@1.0.0: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 - dev: true - /side-channel-map@1.0.1: - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} - engines: {node: '>= 0.4'} + side-channel-map@1.0.1: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 get-intrinsic: 1.3.0 object-inspect: 1.13.4 - dev: true - /side-channel-weakmap@1.0.2: - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} - engines: {node: '>= 0.4'} + side-channel-weakmap@1.0.2: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 get-intrinsic: 1.3.0 object-inspect: 1.13.4 side-channel-map: 1.0.1 - dev: true - /side-channel@1.1.0: - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} - engines: {node: '>= 0.4'} + side-channel@1.1.0: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 side-channel-list: 1.0.0 side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 - dev: true - /siginfo@2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} - dev: true + siginfo@2.0.0: {} - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: true + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - dev: true + signal-exit@4.1.0: {} - /sigstore@1.9.0: - resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + sigstore@1.9.0: dependencies: '@sigstore/bundle': 1.1.0 '@sigstore/protobuf-specs': 0.2.1 @@ -12663,447 +15174,266 @@ packages: make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color - dev: true - /simple-code-frame@1.3.0: - resolution: {integrity: sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==} + simple-code-frame@1.3.0: dependencies: kolorist: 1.8.0 - dev: true - /simple-string-table@1.0.0: - resolution: {integrity: sha512-iflPccjsYtTN+Rqj35v/G+i9A04g2HgOPkPp/B5evznUD4VZ4egi/qcFwrUHgGZwJMZz+Aq5elow4Qqsodfflw==} - dev: true + simple-string-table@1.0.0: {} - /simple-swizzle@0.2.4: - resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} + simple-swizzle@0.2.4: dependencies: is-arrayish: 0.3.4 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - dev: true + sisteransi@1.0.5: {} - /slash@1.0.0: - resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} - engines: {node: '>=0.10.0'} - dev: true + slash@1.0.0: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - dev: true + slash@3.0.0: {} - /slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - dev: true + slash@5.1.0: {} - /slice-ansi@2.1.0: - resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} - engines: {node: '>=6'} + slice-ansi@2.1.0: dependencies: ansi-styles: 3.2.1 astral-regex: 1.0.0 is-fullwidth-code-point: 2.0.0 - dev: true - /slugify@1.6.6: - resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} - engines: {node: '>=8.0.0'} - dev: true + slugify@1.6.6: {} - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true + smart-buffer@4.2.0: {} - /socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} + socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 debug: 4.4.3 socks: 2.8.7 transitivePeerDependencies: - supports-color - dev: true - /socks-proxy-agent@8.0.5: - resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} - engines: {node: '>= 14'} + socks-proxy-agent@8.0.5: dependencies: agent-base: 7.1.4 debug: 4.4.3 socks: 2.8.7 transitivePeerDependencies: - supports-color - dev: true - /socks@2.8.7: - resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + socks@2.8.7: dependencies: - ip-address: 10.0.1 + ip-address: 10.1.0 smart-buffer: 4.2.0 - dev: true - /solid-js@1.9.9: - resolution: {integrity: sha512-A0ZBPJQldAeGCTW0YRYJmt7RCeh5rbFfPZ2aOttgYnctHE7HgKeHCBB/PVc2P7eOfmNXqMFFFoYYdm3S4dcbkA==} + solid-js@1.9.10: dependencies: - csstype: 3.1.3 + csstype: 3.2.3 seroval: 1.3.2 seroval-plugins: 1.3.3(seroval@1.3.2) - dev: true - /solid-refresh@0.6.3(solid-js@1.9.9): - resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} - peerDependencies: - solid-js: ^1.3 + solid-refresh@0.6.3(solid-js@1.9.10): dependencies: - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-module-imports': 7.27.1 - '@babel/types': 7.28.4 - solid-js: 1.9.9 + '@babel/types': 7.28.5 + solid-js: 1.9.10 transitivePeerDependencies: - supports-color - dev: true - /sorcery@0.11.1: - resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==} - hasBin: true + sorcery@0.11.1: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 buffer-crc32: 1.0.0 minimist: 1.2.8 sander: 0.5.1 - dev: true - /source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} + source-map-js@1.2.1: {} - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} - dev: true + source-map@0.5.7: {} - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - dev: true + source-map@0.6.1: {} - /source-map@0.7.6: - resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} - engines: {node: '>= 12'} - dev: true + source-map@0.7.6: {} - /spdx-compare@1.0.0: - resolution: {integrity: sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A==} + spdx-compare@1.0.0: dependencies: array-find-index: 1.0.2 spdx-expression-parse: 3.0.1 spdx-ranges: 2.1.1 - dev: true - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.22 - dev: true - /spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - dev: true + spdx-exceptions@2.5.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 - dev: true - /spdx-expression-validate@2.0.0: - resolution: {integrity: sha512-b3wydZLM+Tc6CFvaRDBOF9d76oGIHNCLYFeHbftFXUWjnfZWganmDmvtM5sm1cRwJc/VDBMLyGGrsLFd1vOxbg==} + spdx-expression-validate@2.0.0: dependencies: spdx-expression-parse: 3.0.1 - dev: true - /spdx-license-ids@3.0.22: - resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} - dev: true + spdx-license-ids@3.0.22: {} - /spdx-ranges@2.1.1: - resolution: {integrity: sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA==} - dev: true + spdx-ranges@2.1.1: {} - /spdx-satisfies@5.0.1: - resolution: {integrity: sha512-Nwor6W6gzFp8XX4neaKQ7ChV4wmpSh2sSDemMFSzHxpTw460jxFYeOn+jq4ybnSSw/5sc3pjka9MQPouksQNpw==} + spdx-satisfies@5.0.1: dependencies: spdx-compare: 1.0.0 spdx-expression-parse: 3.0.1 spdx-ranges: 2.1.1 - dev: true - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - dev: true + sprintf-js@1.0.3: {} - /ssri@10.0.6: - resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ssri@10.0.6: dependencies: minipass: 7.1.2 - dev: true - /ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} + ssri@8.0.1: dependencies: minipass: 3.3.6 - dev: true - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ssri@9.0.1: dependencies: minipass: 3.3.6 - dev: true - /stack-trace@1.0.0-pre2: - resolution: {integrity: sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==} - engines: {node: '>=16'} - dev: true + stack-trace@1.0.0-pre2: {} - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 - dev: true - /stackback@0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - dev: true + stackback@0.0.2: {} - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - dev: true + stackframe@1.3.4: {} - /stacktrace-parser@0.1.11: - resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==} - engines: {node: '>=6'} + stacktrace-parser@0.1.11: dependencies: type-fest: 0.7.1 - dev: true - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - dev: true + statuses@1.5.0: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - dev: true + statuses@2.0.1: {} - /std-env@3.9.0: - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} - dev: true + statuses@2.0.2: {} - /stdin-discarder@0.2.2: - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} - engines: {node: '>=18'} - dev: true + std-env@3.10.0: {} - /stop-iteration-iterator@1.1.0: - resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} - engines: {node: '>= 0.4'} + stdin-discarder@0.2.2: {} + + stop-iteration-iterator@1.1.0: dependencies: es-errors: 1.3.0 internal-slot: 1.1.0 - dev: true - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - dev: true - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.2 - dev: true - /string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} - engines: {node: '>=18'} + string-width@7.2.0: dependencies: - emoji-regex: 10.5.0 + emoji-regex: 10.6.0 get-east-asian-width: 1.4.0 strip-ansi: 7.1.2 - dev: true - /string.prototype.trim@1.2.10: - resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} - engines: {node: '>= 0.4'} + string.prototype.trim@1.2.10: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 has-property-descriptors: 1.0.2 - dev: true - /string.prototype.trimend@1.0.9: - resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} - engines: {node: '>= 0.4'} + string.prototype.trimend@1.0.9: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 es-object-atoms: 1.1.1 - dev: true - /string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 es-object-atoms: 1.1.1 - dev: true - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - dev: true - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - dev: true - /strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} + strip-ansi@5.2.0: dependencies: ansi-regex: 4.1.1 - dev: true - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - dev: true - /strip-ansi@7.1.2: - resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} - engines: {node: '>=12'} + strip-ansi@7.1.2: dependencies: ansi-regex: 6.2.2 - dev: true - /strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} - dev: true + strip-bom-string@1.0.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - dev: true + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - dev: true + strip-final-newline@3.0.0: {} - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - dev: true - /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - dev: true + strip-json-comments@2.0.1: {} - /strip-literal@2.1.1: - resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} + strip-literal@3.1.0: dependencies: js-tokens: 9.0.1 - dev: true - /strip-literal@3.1.0: - resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} - dependencies: - js-tokens: 9.0.1 - dev: true + strnum@1.1.2: {} - /strnum@1.1.2: - resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} - dev: true + sudo-prompt@9.2.1: {} - /sudo-prompt@9.2.1: - resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true - - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - dev: true - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - dev: true - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - dev: true + supports-preserve-symlinks-flag@1.0.0: {} - /svelte-check@3.8.6(sass@1.92.1)(svelte@4.2.20): - resolution: {integrity: sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==} - hasBin: true - peerDependencies: - svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + svelte-check@3.8.6(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20): dependencies: '@jridgewell/trace-mapping': 0.3.31 chokidar: 3.6.0 picocolors: 1.1.1 sade: 1.8.1 svelte: 4.2.20 - svelte-preprocess: 5.1.4(sass@1.92.1)(svelte@4.2.20)(typescript@5.9.2) - typescript: 5.9.2 + svelte-preprocess: 5.1.4(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20)(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -13114,15 +15444,8 @@ packages: - sass - stylus - sugarss - dev: true - /svelte-check@4.3.4(svelte@5.46.0)(typescript@5.9.2): - resolution: {integrity: sha512-DVWvxhBrDsd+0hHWKfjP99lsSXASeOhHJYyuKOFYJcP7ThfSCKgjVarE8XfuMWpS5JV3AlDf+iK1YGGo2TACdw==} - engines: {node: '>= 18.0.0'} - hasBin: true - peerDependencies: - svelte: ^4.0.0 || ^5.0.0-next.0 - typescript: '>=5.0.0' + svelte-check@4.3.4(picomatch@4.0.3)(svelte@5.46.0)(typescript@5.9.3): dependencies: '@jridgewell/trace-mapping': 0.3.31 chokidar: 4.0.3 @@ -13130,95 +15453,44 @@ packages: picocolors: 1.1.1 sade: 1.8.1 svelte: 5.46.0 - typescript: 5.9.2 + typescript: 5.9.3 transitivePeerDependencies: - picomatch - dev: true - /svelte-hmr@0.16.0(svelte@4.2.20): - resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==} - engines: {node: ^12.20 || ^14.13.1 || >= 16} - peerDependencies: - svelte: ^3.19.0 || ^4.0.0 + svelte-hmr@0.16.0(svelte@4.2.20): dependencies: svelte: 4.2.20 - dev: true - /svelte-preprocess@5.1.4(sass@1.92.1)(svelte@4.2.20)(typescript@5.9.2): - resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==} - engines: {node: '>= 16.0.0'} - requiresBuild: true - peerDependencies: - '@babel/core': ^7.10.2 - coffeescript: ^2.5.1 - less: ^3.11.3 || ^4.0.0 - postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 - pug: ^3.0.0 - sass: ^1.26.8 - stylus: ^0.55.0 - sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 - svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 - typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' - peerDependenciesMeta: - '@babel/core': - optional: true - coffeescript: - optional: true - less: - optional: true - postcss: - optional: true - postcss-load-config: - optional: true - pug: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - typescript: - optional: true + svelte-preprocess@5.1.4(@babel/core@7.28.5)(postcss@8.5.6)(pug@3.0.3)(sass@1.96.0)(svelte@4.2.20)(typescript@5.9.3): dependencies: '@types/pug': 2.0.10 detect-indent: 6.1.0 - magic-string: 0.30.19 - sass: 1.92.1 + magic-string: 0.30.21 sorcery: 0.11.1 strip-indent: 3.0.0 svelte: 4.2.20 - typescript: 5.9.2 - dev: true + optionalDependencies: + '@babel/core': 7.28.5 + postcss: 8.5.6 + pug: 3.0.3 + sass: 1.96.0 + typescript: 5.9.3 - /svelte2tsx@0.7.43(svelte@4.2.20)(typescript@5.9.2): - resolution: {integrity: sha512-TtxMuk520th4ZEvUQrhbDAyyQ1I+kc5dZCA4ChOLlbVXZfqenrY45iTH27DpLyx/u4STEz8O3hkGm5goTS8JhQ==} - peerDependencies: - svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 - typescript: ^4.9.4 || ^5.0.0 + svelte2tsx@0.7.45(svelte@4.2.20)(typescript@5.9.3): dependencies: dedent-js: 1.0.1 - pascal-case: 3.1.2 + scule: 1.3.0 svelte: 4.2.20 - typescript: 5.9.2 - dev: true + typescript: 5.9.3 - /svelte2tsx@0.7.43(svelte@5.46.0)(typescript@5.9.2): - resolution: {integrity: sha512-TtxMuk520th4ZEvUQrhbDAyyQ1I+kc5dZCA4ChOLlbVXZfqenrY45iTH27DpLyx/u4STEz8O3hkGm5goTS8JhQ==} - peerDependencies: - svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 - typescript: ^4.9.4 || ^5.0.0 + svelte2tsx@0.7.45(svelte@5.46.0)(typescript@5.9.3): dependencies: dedent-js: 1.0.1 - pascal-case: 3.1.2 + scule: 1.3.0 svelte: 5.46.0 - typescript: 5.9.2 - dev: true + typescript: 5.9.3 - /svelte@4.2.20: - resolution: {integrity: sha512-eeEgGc2DtiUil5ANdtd8vPwt9AgaMdnuUFnPft9F5oMvU/FHu5IHFic+p1dR/UOB7XU2mX2yHW+NcTch4DCh5Q==} - engines: {node: '>=16'} + svelte@4.2.20: dependencies: '@ampproject/remapping': 2.3.0 '@jridgewell/sourcemap-codec': 1.5.5 @@ -13232,13 +15504,10 @@ packages: estree-walker: 3.0.3 is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.19 + magic-string: 0.30.21 periscopic: 3.1.0 - dev: true - /svelte@5.46.0: - resolution: {integrity: sha512-ZhLtvroYxUxr+HQJfMZEDRsGsmU46x12RvAv/zi9584f5KOX7bUrEbhPJ7cKFmUvZTJXi/CFZUYwDC6M1FigPw==} - engines: {node: '>=18'} + svelte@5.46.0: dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -13253,35 +15522,23 @@ packages: esrap: 2.2.1 is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.19 + magic-string: 0.30.21 zimmerframe: 1.1.4 - dev: true - /svg-outline-stroke@1.3.1: - resolution: {integrity: sha512-nfSJw3wFJCB8lVupuhD4SZjExZS72W2CF4QDr9tHRxXlbmTUqWKU3uDMMf3EIgryC6Pl458G+Ct9jesM5NUBXQ==} - engines: {node: '>=8'} + svg-outline-stroke@1.3.1: dependencies: potrace: 2.1.8 sharp: 0.33.5 transitivePeerDependencies: - debug - dev: true - /svg-path-commander@2.1.11: - resolution: {integrity: sha512-wmQ6QA3Od+HOcpIzLjPlbv59+x3yd3V5W6xitUOvAHmqZpP7wVrRM2CHqEm5viHUbZu6PjzFsjbTEFtIeUxaNA==} - engines: {node: '>=16', pnpm: '>=8.6.0'} + svg-path-commander@2.1.11: dependencies: '@thednp/dommatrix': 2.0.12 - dev: false - /svg-pathdata@7.2.0: - resolution: {integrity: sha512-qd+AxqMpfRrRQaWb2SrNFvn69cvl6piqY8TxhYl2Li1g4/LO5F9NJb5wI4vNwRryqgSgD43gYKLm/w3ag1bKvQ==} - engines: {node: '>=20.11.1'} - dev: true + svg-pathdata@7.2.0: {} - /svg2ttf@6.0.3: - resolution: {integrity: sha512-CgqMyZrbOPpc+WqH7aga4JWkDPso23EgypLsbQ6gN3uoPWwwiLjXvzgrwGADBExvCRJrWFzAeK1bSoSpE7ixSQ==} - hasBin: true + svg2ttf@6.0.3: dependencies: '@xmldom/xmldom': 0.7.13 argparse: 2.0.1 @@ -13289,29 +15546,21 @@ packages: lodash: 4.17.21 microbuffer: 1.0.0 svgpath: 2.6.0 - dev: true - /svgicons2svgfont@15.0.1: - resolution: {integrity: sha512-rE3BoIipD6DxBejPswalKRZZYA+7sy4miHqiHgXB0zI1xJD3gSCVrXh2R6Sdh9E4XDTxYp7gDxGW2W8DIBif/g==} - engines: {node: '>=20.11.1'} - hasBin: true + svgicons2svgfont@15.0.1: dependencies: '@types/sax': 1.2.7 commander: 12.1.0 debug: 4.4.3 - glob: 11.0.3 - sax: 1.4.1 + glob: 11.1.0 + sax: 1.4.3 svg-pathdata: 7.2.0 transformation-matrix: 3.1.0 yerror: 8.0.0 transitivePeerDependencies: - supports-color - dev: true - /svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true + svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -13320,26 +15569,17 @@ packages: css-what: 6.2.2 csso: 5.0.5 picocolors: 1.1.1 - dev: true - /svgpath@2.6.0: - resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==} - dev: true + svgpath@2.6.0: {} - /svgson@5.3.1: - resolution: {integrity: sha512-qdPgvUNWb40gWktBJnbJRelWcPzkLed/ShhnRsjbayXz8OtdPOzbil9jtiZdrYvSDumAz/VNQr6JaNfPx/gvPA==} + svgson@5.3.1: dependencies: deep-rename-keys: 0.2.1 xml-reader: 2.4.3 - dev: true - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - dev: true + symbol-tree@3.2.4: {} - /tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + tar@6.2.1: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -13347,301 +15587,158 @@ packages: minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 - dev: true - /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - dev: true + temp-dir@2.0.0: {} - /temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + temp@0.8.4: dependencies: rimraf: 2.6.3 - dev: true - /terser@5.44.0: - resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} - engines: {node: '>=10'} - hasBin: true + terser@5.44.1: dependencies: '@jridgewell/source-map': 0.3.11 acorn: 8.15.0 commander: 2.20.3 source-map-support: 0.5.21 - dev: true - /throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - dev: true + throat@5.0.0: {} - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + through2@2.0.5: dependencies: readable-stream: 2.3.8 xtend: 4.0.2 - dev: true - /timm@1.7.1: - resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==} - dev: true + timm@1.7.1: {} - /tinybench@2.9.0: - resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - dev: true + tinybench@2.9.0: {} - /tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - dev: true + tinycolor2@1.6.0: {} - /tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - dev: true + tinyexec@0.3.2: {} - /tinyglobby@0.2.15: - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} - engines: {node: '>=12.0.0'} + tinyexec@1.0.2: {} + + tinyglobby@0.2.15: dependencies: fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 - dev: true - /tinypool@0.8.4: - resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} - engines: {node: '>=14.0.0'} - dev: true + tinypool@1.1.1: {} - /tinypool@1.1.1: - resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} - engines: {node: ^18.0.0 || >=20.0.0} - dev: true + tinyrainbow@2.0.0: {} - /tinyrainbow@2.0.0: - resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} - engines: {node: '>=14.0.0'} - dev: true + tinyrainbow@3.0.3: {} - /tinyspy@2.2.1: - resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} - engines: {node: '>=14.0.0'} - dev: true + tinyspy@4.0.4: {} - /tinyspy@4.0.4: - resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} - engines: {node: '>=14.0.0'} - dev: true + tldts-core@6.1.86: {} - /tldts-core@6.1.86: - resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} - dev: true - - /tldts@6.1.86: - resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} - hasBin: true + tldts@6.1.86: dependencies: tldts-core: 6.1.86 - dev: true - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: true - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - dev: true + tmpl@1.0.5: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - dev: true - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - dev: true + toidentifier@1.0.1: {} - /token-stream@1.0.0: - resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} - dev: true + token-stream@1.0.0: {} - /tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@4.1.4: dependencies: psl: 1.15.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 - dev: true - /tough-cookie@5.1.2: - resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} - engines: {node: '>=16'} + tough-cookie@5.1.2: dependencies: tldts: 6.1.86 - dev: true - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true + tr46@0.0.3: {} - /tr46@5.1.1: - resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} - engines: {node: '>=18'} + tr46@5.1.1: dependencies: punycode: 2.3.1 - dev: true - /transformation-matrix@3.1.0: - resolution: {integrity: sha512-oYubRWTi2tYFHAL2J8DLvPIqIYcYZ0fSOi2vmSy042Ho4jBW2ce6VP7QfD44t65WQz6bw5w1Pk22J7lcUpaTKA==} - dev: true + transformation-matrix@3.1.0: {} - /tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tslib@2.8.1: {} - /ttf2woff@3.0.0: - resolution: {integrity: sha512-OvmFcj70PhmAsVQKfC15XoKH55cRWuaRzvr2fpTNhTNer6JBpG8n6vOhRrIgxMjcikyYt88xqYXMMVapJ4Rjvg==} - hasBin: true + ttf2woff@3.0.0: dependencies: argparse: 2.0.1 pako: 1.0.11 - dev: true - /tuf-js@1.1.7: - resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + tuf-js@1.1.7: dependencies: '@tufjs/models': 1.0.4 debug: 4.4.3 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color - dev: true - /turbo-darwin-64@1.13.4: - resolution: {integrity: sha512-A0eKd73R7CGnRinTiS7txkMElg+R5rKFp9HV7baDiEL4xTG1FIg/56Vm7A5RVgg8UNgG2qNnrfatJtb+dRmNdw==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-64@2.6.3: optional: true - /turbo-darwin-arm64@1.13.4: - resolution: {integrity: sha512-eG769Q0NF6/Vyjsr3mKCnkG/eW6dKMBZk6dxWOdrHfrg6QgfkBUk0WUUujzdtVPiUIvsh4l46vQrNVd9EOtbyA==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-arm64@2.6.3: optional: true - /turbo-linux-64@1.13.4: - resolution: {integrity: sha512-Bq0JphDeNw3XEi+Xb/e4xoKhs1DHN7OoLVUbTIQz+gazYjigVZvtwCvgrZI7eW9Xo1eOXM2zw2u1DGLLUfmGkQ==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-64@2.6.3: optional: true - /turbo-linux-arm64@1.13.4: - resolution: {integrity: sha512-BJcXw1DDiHO/okYbaNdcWN6szjXyHWx9d460v6fCHY65G8CyqGU3y2uUTPK89o8lq/b2C8NK0yZD+Vp0f9VoIg==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-arm64@2.6.3: optional: true - /turbo-windows-64@1.13.4: - resolution: {integrity: sha512-OFFhXHOFLN7A78vD/dlVuuSSVEB3s9ZBj18Tm1hk3aW1HTWTuAw0ReN6ZNlVObZUHvGy8d57OAGGxf2bT3etQw==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-64@2.6.3: optional: true - /turbo-windows-arm64@1.13.4: - resolution: {integrity: sha512-u5A+VOKHswJJmJ8o8rcilBfU5U3Y1TTAfP9wX8bFh8teYF1ghP0EhtMRLjhtp6RPa+XCxHHVA2CiC3gbh5eg5g==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-arm64@2.6.3: optional: true - /turbo@1.13.4: - resolution: {integrity: sha512-1q7+9UJABuBAHrcC4Sxp5lOqYS5mvxRrwa33wpIyM18hlOCpRD/fTJNxZ0vhbMcJmz15o9kkVm743mPn7p6jpQ==} - hasBin: true + turbo@2.6.3: optionalDependencies: - turbo-darwin-64: 1.13.4 - turbo-darwin-arm64: 1.13.4 - turbo-linux-64: 1.13.4 - turbo-linux-arm64: 1.13.4 - turbo-windows-64: 1.13.4 - turbo-windows-arm64: 1.13.4 - dev: true + turbo-darwin-64: 2.6.3 + turbo-darwin-arm64: 2.6.3 + turbo-linux-64: 2.6.3 + turbo-linux-arm64: 2.6.3 + turbo-windows-64: 2.6.3 + turbo-windows-arm64: 2.6.3 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - dev: true + type-detect@4.0.8: {} - /type-detect@4.1.0: - resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} - engines: {node: '>=4'} - dev: true + type-fest@0.20.2: {} - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - dev: true + type-fest@0.21.3: {} - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - dev: true + type-fest@0.7.1: {} - /type-fest@0.7.1: - resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} - engines: {node: '>=8'} - dev: true + type-fest@1.4.0: {} - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: true + type-fest@2.19.0: {} - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - dev: true - - /typed-array-buffer@1.0.3: - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.3: dependencies: call-bound: 1.0.4 es-errors: 1.3.0 is-typed-array: 1.1.15 - dev: true - /typed-array-byte-length@1.0.3: - resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.3: dependencies: call-bind: 1.0.8 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 is-typed-array: 1.1.15 - dev: true - /typed-array-byte-offset@1.0.4: - resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 @@ -13650,11 +15747,8 @@ packages: has-proto: 1.2.0 is-typed-array: 1.1.15 reflect.getprototypeof: 1.0.10 - dev: true - /typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} - engines: {node: '>= 0.4'} + typed-array-length@1.0.7: dependencies: call-bind: 1.0.8 for-each: 0.3.5 @@ -13662,176 +15756,89 @@ packages: is-typed-array: 1.1.15 possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 - dev: true - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 - dev: true - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true + typescript@4.9.5: {} - /typescript@5.9.2: - resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} - engines: {node: '>=14.17'} - hasBin: true + typescript@5.9.3: {} - /uc.micro@1.0.6: - resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - dev: true + uc.micro@1.0.6: {} - /ufo@1.6.1: - resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} - dev: true + uglify-js@3.19.3: {} - /uglify-js@3.19.3: - resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} - engines: {node: '>=0.8.0'} - hasBin: true - dev: true - - /unbox-primitive@1.1.0: - resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} - engines: {node: '>= 0.4'} + unbox-primitive@1.1.0: dependencies: call-bound: 1.0.4 has-bigints: 1.1.0 has-symbols: 1.1.0 which-boxed-primitive: 1.1.1 - dev: true - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - dev: true + undici-types@5.26.5: {} - /undici-types@7.11.0: - resolution: {integrity: sha512-kt1ZriHTi7MU+Z/r9DOdAI3ONdaR3M3csEaRc6ewa4f4dTvX4cQCbJ4NkEn0ohE4hHtq85+PhPSTY+pO/1PwgA==} - dev: true + undici-types@7.16.0: {} - /undici@7.16.0: - resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} - engines: {node: '>=20.18.1'} - dev: true + undici@7.16.0: {} - /unicode-canonical-property-names-ecmascript@2.0.1: - resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} - engines: {node: '>=4'} - dev: true + unicode-canonical-property-names-ecmascript@2.0.1: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.2.0 - dev: true - /unicode-match-property-value-ecmascript@2.2.1: - resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==} - engines: {node: '>=4'} - dev: true + unicode-match-property-value-ecmascript@2.2.1: {} - /unicode-property-aliases-ecmascript@2.2.0: - resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==} - engines: {node: '>=4'} - dev: true + unicode-property-aliases-ecmascript@2.2.0: {} - /unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - dev: true + unicorn-magic@0.1.0: {} - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-filename@2.0.1: dependencies: unique-slug: 3.0.0 - dev: true - /unique-filename@3.0.0: - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + unique-filename@3.0.0: dependencies: unique-slug: 4.0.0 - dev: true - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-slug@3.0.0: dependencies: imurmurhash: 0.1.4 - dev: true - /unique-slug@4.0.0: - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + unique-slug@4.0.0: dependencies: imurmurhash: 0.1.4 - dev: true - /unique-string@3.0.0: - resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} - engines: {node: '>=12'} + unique-string@3.0.0: dependencies: crypto-random-string: 4.0.0 - dev: true - /universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - dev: true + universal-user-agent@6.0.1: {} - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: true + universalify@0.1.2: {} - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true + universalify@0.2.0: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - dev: true + universalify@2.0.1: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - dev: true + unpipe@1.0.0: {} - /unplugin-utils@0.2.5: - resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} - engines: {node: '>=18.12.0'} + unplugin-utils@0.2.5: dependencies: pathe: 2.0.3 picomatch: 4.0.3 - dev: true - /upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - dev: true + upath@2.0.1: {} - /update-browserslist-db@1.1.3(browserslist@4.26.0): - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.2.2(browserslist@4.28.1): dependencies: - browserslist: 4.26.0 + browserslist: 4.28.1 escalade: 3.2.0 picocolors: 1.1.1 - dev: true - /update-notifier@7.0.0: - resolution: {integrity: sha512-Hv25Bh+eAbOLlsjJreVPOs4vd51rrtCrmhyOJtbpAojro34jS4KQaEp4/EvlHJX7jSO42VvEFpkastVyXyIsdQ==} - engines: {node: '>=18'} + update-notifier@7.0.0: dependencies: boxen: 7.1.1 chalk: 5.3.0 @@ -13841,107 +15848,51 @@ packages: is-installed-globally: 0.4.0 is-npm: 6.1.0 latest-version: 7.0.0 - pupa: 3.1.0 + pupa: 3.3.0 semver: 7.6.0 semver-diff: 4.0.0 xdg-basedir: 5.1.0 - dev: true - /upper-case@1.1.3: - resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} - dev: true + upper-case@1.1.3: {} - /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - dev: true + url-join@4.0.1: {} - /url-join@5.0.0: - resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + url-join@5.0.0: {} - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - dev: true - /utif@2.0.1: - resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==} + utif@2.0.1: dependencies: pako: 1.0.11 - dev: true - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - dev: true + util-deprecate@1.0.2: {} - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - dev: true + utils-merge@1.0.1: {} - /validate-html-nesting@1.2.3: - resolution: {integrity: sha512-kdkWdCl6eCeLlRShJKbjVOU2kFKxMF8Ghu50n+crEoyx+VKm3FxAxF9z4DCy6+bbTOqNW0+jcIYRnjoIRzigRw==} - dev: true - - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - dev: true - /validate-npm-package-name@5.0.1: - resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + validate-npm-package-name@5.0.1: {} - /validate-peer-dependencies@1.2.0: - resolution: {integrity: sha512-nd2HUpKc6RWblPZQ2GDuI65sxJ2n/UqZwSBVtj64xlWjMx0m7ZB2m9b2JS3v1f+n9VWH/dd1CMhkHfP6pIdckA==} + validate-peer-dependencies@1.2.0: dependencies: resolve-package-path: 3.1.0 - semver: 7.7.2 - dev: true + semver: 7.7.3 - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - dev: true + vary@1.1.2: {} - /vite-node@1.6.1(sass@1.92.1): - resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - dependencies: - cac: 6.7.14 - debug: 4.4.3 - pathe: 1.1.2 - picocolors: 1.1.1 - vite: 5.4.20(sass@1.92.1) - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - dev: true - - /vite-node@3.2.4(sass@1.92.1): - resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true + vite-node@3.2.4(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.2.7(sass@1.92.1) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - jiti @@ -13955,245 +15906,79 @@ packages: - terser - tsx - yaml - dev: true - /vite-plugin-solid@2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@7.2.7): - resolution: {integrity: sha512-hFrCxBfv3B1BmFqnJF4JOCYpjrmi/zwyeKjcomQ0khh8HFyQ8SbuBWQ7zGojfrz6HUOBFrJBNySDi/JgAHytWg==} - peerDependencies: - '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* - solid-js: ^1.7.2 - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - peerDependenciesMeta: - '@testing-library/jest-dom': - optional: true + vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)): dependencies: - '@babel/core': 7.28.4 - '@testing-library/jest-dom': 6.8.0 + '@babel/core': 7.28.5 '@types/babel__core': 7.20.5 - babel-preset-solid: 1.9.9(@babel/core@7.28.4)(solid-js@1.9.9) + babel-preset-solid: 1.9.10(@babel/core@7.28.5)(solid-js@1.9.10) merge-anything: 5.1.7 - solid-js: 1.9.9 - solid-refresh: 0.6.3(solid-js@1.9.9) - vite: 7.2.7(sass@1.92.1) - vitefu: 1.1.1(vite@7.2.7) + solid-js: 1.9.10 + solid-refresh: 0.6.3(solid-js@1.9.10) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vitefu: 1.1.1(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) + optionalDependencies: + '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: - supports-color - dev: true - /vite-prerender-plugin@0.5.12(vite@7.2.7): - resolution: {integrity: sha512-EiwhbMn+flg14EysbLTmZSzq8NGTxhytgK3bf4aGRF1evWLGwZiHiUJ1KZDvbxgKbMf2pG6fJWGEa3UZXOnR1g==} - peerDependencies: - vite: 5.x || 6.x || 7.x + vite-prerender-plugin@0.5.12(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)): dependencies: kolorist: 1.8.0 - magic-string: 0.30.19 + magic-string: 0.30.21 node-html-parser: 6.1.13 simple-code-frame: 1.3.0 source-map: 0.7.6 stack-trace: 1.0.0-pre2 - vite: 7.2.7(sass@1.92.1) - dev: true + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) - /vite@5.4.20(sass@1.92.1): - resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: 0.21.5 - postcss: 8.5.6 - rollup: 4.50.2 - sass: 1.92.1 - optionalDependencies: - fsevents: 2.3.3 - dev: true - - /vite@7.2.7(sass@1.92.1): - resolution: {integrity: sha512-ITcnkFeR3+fI8P1wMgItjGrR10170d8auB4EpMLPqmx6uxElH3a/hHGQabSHKdqd4FXWO1nFIp9rRn7JQ34ACQ==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - peerDependencies: - '@types/node': ^20.19.0 || >=22.12.0 - jiti: '>=1.21.0' - less: ^4.0.0 - lightningcss: ^1.21.0 - sass: ^1.70.0 - sass-embedded: ^1.70.0 - stylus: '>=0.54.8' - sugarss: ^5.0.0 - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true + vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.50.2 - sass: 1.92.1 + rollup: 4.53.3 tinyglobby: 0.2.15 optionalDependencies: + '@types/node': 25.0.2 fsevents: 2.3.3 - dev: true + sass: 1.96.0 + terser: 5.44.1 + yaml: 2.8.2 - /vitefu@0.2.5(vite@5.4.20): - resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - vite: - optional: true + vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2): dependencies: - vite: 5.4.20(sass@1.92.1) - dev: true + esbuild: 0.27.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.53.3 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 25.0.2 + fsevents: 2.3.3 + sass: 1.96.0 + terser: 5.44.1 + yaml: 2.8.2 - /vitefu@1.1.1(vite@7.2.7): - resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 - peerDependenciesMeta: - vite: - optional: true - dependencies: - vite: 7.2.7(sass@1.92.1) - dev: true + vitefu@0.2.5(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)): + optionalDependencies: + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) - /vitest@1.6.1(jsdom@24.1.3)(sass@1.92.1): - resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 1.6.1 - '@vitest/ui': 1.6.1 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - dependencies: - '@vitest/expect': 1.6.1 - '@vitest/runner': 1.6.1 - '@vitest/snapshot': 1.6.1 - '@vitest/spy': 1.6.1 - '@vitest/utils': 1.6.1 - acorn-walk: 8.3.4 - chai: 4.5.0 - debug: 4.4.3 - execa: 8.0.1 - jsdom: 24.1.3 - local-pkg: 0.5.1 - magic-string: 0.30.19 - pathe: 1.1.2 - picocolors: 1.1.1 - std-env: 3.9.0 - strip-literal: 2.1.1 - tinybench: 2.9.0 - tinypool: 0.8.4 - vite: 5.4.20(sass@1.92.1) - vite-node: 1.6.1(sass@1.92.1) - why-is-node-running: 2.3.0 - transitivePeerDependencies: - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - dev: true + vitefu@1.1.1(vite@7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)): + optionalDependencies: + vite: 7.2.7(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) - /vitest@3.2.4(jsdom@25.0.1)(sass@1.92.1): - resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@types/debug': ^4.1.12 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.2.4 - '@vitest/ui': 3.2.4 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/debug': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true + vitefu@1.1.1(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)): + optionalDependencies: + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + + vitest@3.2.4(@types/node@25.0.2)(jsdom@25.0.1)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2): dependencies: '@types/chai': 5.2.3 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.2.7) + '@vitest/mocker': 3.2.4(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -14202,19 +15987,21 @@ packages: chai: 5.3.3 debug: 4.4.3 expect-type: 1.3.0 - jsdom: 25.0.1 - magic-string: 0.30.19 + magic-string: 0.30.21 pathe: 2.0.3 picomatch: 4.0.3 - std-env: 3.9.0 + std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.2.7(sass@1.92.1) - vite-node: 3.2.4(sass@1.92.1) + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 25.0.2 + jsdom: 25.0.1 transitivePeerDependencies: - jiti - less @@ -14228,159 +16015,129 @@ packages: - terser - tsx - yaml - dev: true - /vlq@1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} - dev: true - - /void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} - dev: true - - /vue-component-type-helpers@1.8.27: - resolution: {integrity: sha512-0vOfAtI67UjeO1G6UiX5Kd76CqaQ67wrRZiOe7UAb9Jm6GzlUr/fC7CV90XfwapJRjpCMaZFhv1V0ajWRmE9Dg==} - dev: true - - /vue-template-compiler@2.7.16: - resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} + vitest@4.0.16(@types/node@25.0.2)(jsdom@24.1.3)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2): dependencies: - de-indent: 1.0.2 - he: 1.2.0 - dev: true + '@vitest/expect': 4.0.16 + '@vitest/mocker': 4.0.16(vite@7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2)) + '@vitest/pretty-format': 4.0.16 + '@vitest/runner': 4.0.16 + '@vitest/snapshot': 4.0.16 + '@vitest/spy': 4.0.16 + '@vitest/utils': 4.0.16 + es-module-lexer: 1.7.0 + expect-type: 1.3.0 + magic-string: 0.30.21 + obug: 2.1.1 + pathe: 2.0.3 + picomatch: 4.0.3 + std-env: 3.10.0 + tinybench: 2.9.0 + tinyexec: 1.0.2 + tinyglobby: 0.2.15 + tinyrainbow: 3.0.3 + vite: 7.3.0(@types/node@25.0.2)(sass@1.96.0)(terser@5.44.1)(yaml@2.8.2) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 25.0.2 + jsdom: 24.1.3 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - terser + - tsx + - yaml - /vue-tsc@1.8.27(typescript@5.9.2): - resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==} - hasBin: true - peerDependencies: - typescript: '*' + vlq@1.0.1: {} + + void-elements@3.1.0: {} + + vscode-uri@3.1.0: {} + + vue-component-type-helpers@1.8.27: {} + + vue-tsc@3.1.8(typescript@5.9.3): dependencies: - '@volar/typescript': 1.11.1 - '@vue/language-core': 1.8.27(typescript@5.9.2) - semver: 7.7.2 - typescript: 5.9.2 - dev: true + '@volar/typescript': 2.4.26 + '@vue/language-core': 3.1.8(typescript@5.9.3) + typescript: 5.9.3 - /vue@3.5.21(typescript@5.9.2): - resolution: {integrity: sha512-xxf9rum9KtOdwdRkiApWL+9hZEMWE90FHh8yS1+KJAiWYh+iGWV1FquPjoO9VUHQ+VIhsCXNNyZ5Sf4++RVZBA==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + vue@3.5.25(typescript@5.9.3): dependencies: - '@vue/compiler-dom': 3.5.21 - '@vue/compiler-sfc': 3.5.21 - '@vue/runtime-dom': 3.5.21 - '@vue/server-renderer': 3.5.21(vue@3.5.21) - '@vue/shared': 3.5.21 - typescript: 5.9.2 + '@vue/compiler-dom': 3.5.25 + '@vue/compiler-sfc': 3.5.25 + '@vue/runtime-dom': 3.5.25 + '@vue/server-renderer': 3.5.25(vue@3.5.25(typescript@5.9.3)) + '@vue/shared': 3.5.25 + optionalDependencies: + typescript: 5.9.3 - /w3c-xmlserializer@5.0.0: - resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} - engines: {node: '>=18'} + w3c-xmlserializer@5.0.0: dependencies: xml-name-validator: 5.0.0 - dev: true - /walk-sync@2.2.0: - resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==} - engines: {node: 8.* || >= 10.*} + walk-sync@2.2.0: dependencies: '@types/minimatch': 3.0.5 ensure-posix-path: 1.1.1 matcher-collection: 2.0.1 minimatch: 3.1.2 - dev: true - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + walker@1.0.8: dependencies: makeerror: 1.0.12 - dev: true - /warn-once@0.1.1: - resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} - dev: true + warn-once@0.1.1: {} - /wawoff2@2.0.1: - resolution: {integrity: sha512-r0CEmvpH63r4T15ebFqeOjGqU4+EgTx4I510NtK35EMciSdcTxCw3Byy3JnBonz7iyIFZ0AbVo0bbFpEVuhCYA==} - hasBin: true + wawoff2@2.0.1: dependencies: argparse: 2.0.1 - dev: true - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - dev: true - /web-streams-polyfill@3.3.3: - resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} - engines: {node: '>= 8'} - dev: true + web-streams-polyfill@3.3.3: {} - /web-streams-polyfill@4.0.0-beta.3: - resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} - engines: {node: '>= 14'} - dev: true + web-streams-polyfill@4.0.0-beta.3: {} - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true + webidl-conversions@3.0.1: {} - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true + webidl-conversions@7.0.0: {} - /whatwg-encoding@3.1.1: - resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} - engines: {node: '>=18'} + whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 - dev: true - /whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - dev: true + whatwg-fetch@3.6.20: {} - /whatwg-mimetype@4.0.0: - resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} - engines: {node: '>=18'} - dev: true + whatwg-mimetype@4.0.0: {} - /whatwg-url@14.2.0: - resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} - engines: {node: '>=18'} + whatwg-url@14.2.0: dependencies: tr46: 5.1.1 webidl-conversions: 7.0.0 - dev: true - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true - /which-boxed-primitive@1.1.1: - resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} - engines: {node: '>= 0.4'} + which-boxed-primitive@1.1.1: dependencies: is-bigint: 1.1.0 is-boolean-object: 1.2.2 is-number-object: 1.1.1 is-string: 1.1.1 is-symbol: 1.1.1 - dev: true - /which-builtin-type@1.2.1: - resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} - engines: {node: '>= 0.4'} + which-builtin-type@1.2.1: dependencies: call-bound: 1.0.4 function.prototype.name: 1.1.8 @@ -14388,32 +16145,24 @@ packages: is-async-function: 2.1.1 is-date-object: 1.1.0 is-finalizationregistry: 1.1.1 - is-generator-function: 1.1.0 + is-generator-function: 1.1.2 is-regex: 1.2.1 is-weakref: 1.1.1 isarray: 2.0.5 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 which-typed-array: 1.1.19 - dev: true - /which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + which-collection@1.0.2: dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 is-weakset: 2.0.4 - dev: true - /which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - dev: true + which-module@2.0.1: {} - /which-typed-array@1.1.19: - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} - engines: {node: '>= 0.4'} + which-typed-array@1.1.19: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 @@ -14422,263 +16171,139 @@ packages: get-proto: 1.0.1 gopd: 1.2.0 has-tostringtag: 1.0.2 - dev: true - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - dev: true - /which@3.0.1: - resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + which@3.0.1: dependencies: isexe: 2.0.0 - dev: true - /why-is-node-running@2.3.0: - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} - engines: {node: '>=8'} - hasBin: true + why-is-node-running@2.3.0: dependencies: siginfo: 2.0.0 stackback: 0.0.2 - dev: true - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + wide-align@1.1.5: dependencies: string-width: 4.2.3 - dev: true - /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} + widest-line@3.1.0: dependencies: string-width: 4.2.3 - dev: true - /widest-line@4.0.1: - resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} - engines: {node: '>=12'} + widest-line@4.0.1: dependencies: string-width: 5.1.2 - dev: true - /wildcard-match@5.1.2: - resolution: {integrity: sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ==} - dev: true + wildcard-match@5.1.2: {} - /windows-release@5.1.1: - resolution: {integrity: sha512-NMD00arvqcq2nwqc5Q6KtrSRHK+fVD31erE5FEMahAw5PmVCgD7MUXodq3pdZSUkqA9Cda2iWx6s1XYwiJWRmw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + windows-release@5.1.1: dependencies: execa: 5.1.1 - dev: true - /with@7.0.2: - resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} - engines: {node: '>= 10.0.0'} + with@7.0.2: dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 assert-never: 1.4.0 babel-walk: 3.0.0-canary-5 - dev: true - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - dev: true + wordwrap@1.0.0: {} - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.3 string-width: 5.1.2 strip-ansi: 7.1.2 - dev: true - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: true - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + write-file-atomic@3.0.3: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - dev: true - /ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@6.2.3: dependencies: async-limiter: 1.0.1 - dev: true - /ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true + ws@7.5.10: {} - /ws@8.18.3: - resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true + ws@8.18.3: {} - /xdg-basedir@5.1.0: - resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} - engines: {node: '>=12'} - dev: true + xdg-basedir@5.1.0: {} - /xhr@2.6.0: - resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} + xhr@2.6.0: dependencies: global: 4.4.0 is-function: 1.0.2 parse-headers: 2.0.6 xtend: 4.0.2 - dev: true - /xml-lexer@0.2.2: - resolution: {integrity: sha512-G0i98epIwiUEiKmMcavmVdhtymW+pCAohMRgybyIME9ygfVu8QheIi+YoQh3ngiThsT0SQzJT4R0sKDEv8Ou0w==} + xml-lexer@0.2.2: dependencies: eventemitter3: 2.0.3 - dev: true - /xml-name-validator@5.0.0: - resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} - engines: {node: '>=18'} - dev: true + xml-name-validator@5.0.0: {} - /xml-parse-from-string@1.0.1: - resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==} - dev: true + xml-parse-from-string@1.0.1: {} - /xml-reader@2.4.3: - resolution: {integrity: sha512-xWldrIxjeAMAu6+HSf9t50ot1uL5M+BtOidRCWHXIeewvSeIpscWCsp4Zxjk8kHHhdqFBrfK8U0EJeCcnyQ/gA==} + xml-reader@2.4.3: dependencies: eventemitter3: 2.0.3 xml-lexer: 0.2.2 - dev: true - /xml2js@0.5.0: - resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} - engines: {node: '>=4.0.0'} + xml2js@0.5.0: dependencies: - sax: 1.4.1 + sax: 1.4.3 xmlbuilder: 11.0.1 - dev: true - /xmlbuilder@11.0.1: - resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} - engines: {node: '>=4.0'} - dev: true + xmlbuilder@11.0.1: {} - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - dev: true + xmlchars@2.2.0: {} - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - dev: true + xtend@4.0.2: {} - /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - dev: true + y18n@4.0.3: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: true + y18n@5.0.8: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true + yallist@3.1.1: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - dev: true + yallist@4.0.0: {} - /yaml@2.8.1: - resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} - engines: {node: '>= 14.6'} - hasBin: true - dev: true + yaml@2.8.2: {} - /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: true - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - dev: true + yargs-parser@21.1.1: {} - /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -14691,11 +16316,8 @@ packages: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: true - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.2.0 @@ -14704,23 +16326,9 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: true - /yerror@8.0.0: - resolution: {integrity: sha512-FemWD5/UqNm8ffj8oZIbjWXIF2KE0mZssggYpdaQkWDDgXBQ/35PNIxEuz6/YLn9o0kOxDBNJe8x8k9ljD7k/g==} - engines: {node: '>=18.16.0'} - dev: true + yerror@8.0.0: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - dev: true + yocto-queue@0.1.0: {} - /yocto-queue@1.2.1: - resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} - engines: {node: '>=12.20'} - dev: true - - /zimmerframe@1.1.4: - resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} - dev: true + zimmerframe@1.1.4: {} diff --git a/test/test-preact/package.json b/test/test-preact/package.json index cbb0046ee..ed1d0deca 100644 --- a/test/test-preact/package.json +++ b/test/test-preact/package.json @@ -10,10 +10,10 @@ "clean": "rm -rf dist" }, "dependencies": { - "@tabler/icons-preact": "3.36.0", + "@tabler/icons-preact": "workspace:*", "preact": "^10.19.6" }, "devDependencies": { - "@preact/preset-vite": "^2.8.1" + "@preact/preset-vite": "^2.10.2" } } diff --git a/test/test-react-native/package.json b/test/test-react-native/package.json index 8ebc454fc..9319fd397 100644 --- a/test/test-react-native/package.json +++ b/test/test-react-native/package.json @@ -10,13 +10,13 @@ "clean": "rm -rf dist" }, "dependencies": { - "@tabler/icons-react-native": "3.36.0", + "@tabler/icons-react-native": "workspace:*", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@types/react": "^18.2.60", "@types/react-dom": "^18.2.19", - "@vitejs/plugin-react": "^4.2.1" + "@vitejs/plugin-react": "^5.1.2" } } diff --git a/test/test-react-native/src/App.tsx b/test/test-react-native/src/App.tsx index 2cd073709..cd0fb482d 100644 --- a/test/test-react-native/src/App.tsx +++ b/test/test-react-native/src/App.tsx @@ -1,7 +1,6 @@ import { useState } from 'react' import './App.css' -import { IconAd, IconAdOff } from '@tabler/icons-react-native'; -import IconAdFilled from '@tabler/icons-react-native/IconAdFilled' +import { IconAd, IconAdOff, IconAdFilled } from '@tabler/icons-react-native'; function App() { const [active, setActive] = useState(false) diff --git a/test/test-react-native/vite.config.ts b/test/test-react-native/vite.config.ts index 5a33944a9..69caf5d68 100644 --- a/test/test-react-native/vite.config.ts +++ b/test/test-react-native/vite.config.ts @@ -3,5 +3,32 @@ import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react()], + plugins: [ + react(), + { + name: 'exclude-react-native', + resolveId(id) { + if (id === 'react-native' || id.startsWith('react-native/')) { + return { id: 'react-native', external: true } + } + if (id === 'react-native-svg') { + return { id: 'react-native-svg', external: true } + } + }, + }, + ], + optimizeDeps: { + exclude: ['react-native', 'react-native-svg'], + }, + build: { + rollupOptions: { + external: (id) => { + return id === 'react-native' || id === 'react-native-svg' || id.startsWith('react-native/') + }, + }, + commonjsOptions: { + exclude: ['react-native', 'react-native-svg'], + transformMixedEsModules: true, + }, + }, }) diff --git a/test/test-react/package.json b/test/test-react/package.json index 5721e9a50..e91f9f79c 100644 --- a/test/test-react/package.json +++ b/test/test-react/package.json @@ -10,13 +10,13 @@ "clean": "rm -rf dist" }, "dependencies": { - "@tabler/icons-react": "3.36.0", + "@tabler/icons-react": "workspace:*", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@types/react": "^18.2.60", "@types/react-dom": "^18.2.19", - "@vitejs/plugin-react": "^4.2.1" + "@vitejs/plugin-react": "^5.1.2" } } diff --git a/test/test-svelte/package.json b/test/test-svelte/package.json index 9d8c157b7..299eaa27d 100644 --- a/test/test-svelte/package.json +++ b/test/test-svelte/package.json @@ -11,7 +11,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@tabler/icons-svelte": "3.36.0" + "@tabler/icons-svelte": "workspace:*" }, "devDependencies": { "@sveltejs/vite-plugin-svelte": "^3.0.2", diff --git a/test/test-vue/package.json b/test/test-vue/package.json index 8d2bd4eb1..01c50dbb9 100644 --- a/test/test-vue/package.json +++ b/test/test-vue/package.json @@ -11,10 +11,10 @@ }, "dependencies": { "vue": "^3.4.20", - "@tabler/icons-vue": "3.36.0" + "@tabler/icons-vue": "workspace:*" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.4", - "vue-tsc": "^1.8.27" + "@vitejs/plugin-vue": "^6.0.3", + "vue-tsc": "^3.1.8" } } diff --git a/turbo.json b/turbo.json index 3095c3119..789efd618 100644 --- a/turbo.json +++ b/turbo.json @@ -1,8 +1,8 @@ { "$schema": "https://turbo.build/schema.json", - "pipeline": { + "tasks": { "build": { - "outputs": ["dist/**", "src/icons/**"], + "outputs": ["dist/**", "src/icons/**", "icons/**", "icons.json", "tabler-nodes-*.json", "categories/**", "docs/**"], "dependsOn": ["^build"], "inputs": ["../../icons/**"] }, From 67ede20ca52fadc2322c9ffe22e54c8073210b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 22 Dec 2025 23:43:52 +0100 Subject: [PATCH 2/4] Add validation rules and icon optimizations (#1440) --- .build/helpers.mjs | 8 +- .build/optimize.mjs | 22 +- .build/validate-icons.mjs | 65 + .gitignore | 1 - aliases.json | 3 +- icons/filled/accessible.svg | 2 +- icons/filled/archive.svg | 2 +- icons/filled/bounce-left.svg | 2 +- icons/filled/bounce-right.svg | 2 +- icons/filled/circle-key.svg | 2 +- icons/filled/circle-plus.svg | 2 +- icons/filled/columns-3.svg | 2 +- icons/filled/compass.svg | 2 +- icons/filled/credit-card.svg | 2 +- icons/filled/dice-1.svg | 2 +- icons/filled/dice-2.svg | 2 +- icons/filled/dice-3.svg | 2 +- icons/filled/dice-4.svg | 2 +- icons/filled/dice-5.svg | 2 +- icons/filled/dice-6.svg | 2 +- icons/filled/dice.svg | 2 +- icons/filled/eye.svg | 2 +- icons/filled/layout-board-split.svg | 2 +- icons/filled/map-pin.svg | 2 +- icons/filled/section.svg | 2 +- icons/filled/settings.svg | 2 +- icons/filled/shopping-cart.svg | 2 +- icons/filled/trophy.svg | 2 +- icons/filled/yin-yang.svg | 4 +- icons/outline/a-b-2.svg | 4 +- icons/outline/accessible.svg | 4 +- icons/outline/ad-2.svg | 2 +- icons/outline/ad-circle.svg | 4 +- icons/outline/ad.svg | 2 +- icons/outline/address-book.svg | 4 +- icons/outline/adjustments-alt.svg | 6 +- icons/outline/adjustments-cancel.svg | 2 +- icons/outline/adjustments-cog.svg | 2 +- icons/outline/adjustments-heart.svg | 2 +- icons/outline/adjustments-horizontal.svg | 6 +- icons/outline/adjustments-pin.svg | 2 +- icons/outline/adjustments-search.svg | 2 +- icons/outline/adjustments-star.svg | 2 +- icons/outline/aerial-lift.svg | 5 +- icons/outline/affiliate.svg | 8 +- icons/outline/air-balloon.svg | 6 +- icons/outline/air-conditioning-disabled.svg | 2 +- icons/outline/air-conditioning.svg | 2 +- icons/outline/air-traffic-control.svg | 2 +- icons/outline/alarm-minus.svg | 2 +- icons/outline/alarm-plus.svg | 2 +- icons/outline/alarm-smoke.svg | 2 +- icons/outline/alarm-snooze.svg | 2 +- icons/outline/alarm.svg | 2 +- icons/outline/album.svg | 2 +- icons/outline/alert-hexagon.svg | 2 +- icons/outline/alert-octagon.svg | 2 +- icons/outline/alert-square-rounded.svg | 2 +- icons/outline/alert-square.svg | 2 +- icons/outline/alert-triangle.svg | 2 +- icons/outline/alien.svg | 2 +- icons/outline/align-box-bottom-center.svg | 2 +- icons/outline/align-box-bottom-left.svg | 2 +- icons/outline/align-box-bottom-right.svg | 2 +- icons/outline/align-box-center-bottom.svg | 2 +- icons/outline/align-box-center-middle.svg | 2 +- icons/outline/align-box-center-stretch.svg | 2 +- icons/outline/align-box-center-top.svg | 2 +- icons/outline/align-box-left-bottom.svg | 2 +- icons/outline/align-box-left-middle.svg | 2 +- icons/outline/align-box-left-stretch.svg | 2 +- icons/outline/align-box-left-top.svg | 2 +- icons/outline/align-box-right-bottom.svg | 2 +- icons/outline/align-box-right-middle.svg | 2 +- icons/outline/align-box-right-stretch.svg | 2 +- icons/outline/align-box-right-top.svg | 2 +- icons/outline/align-box-top-center.svg | 2 +- icons/outline/align-box-top-left.svg | 2 +- icons/outline/align-box-top-right.svg | 2 +- icons/outline/alphabet-greek.svg | 2 +- icons/outline/alphabet-korean.svg | 2 +- icons/outline/alphabet-latin.svg | 2 +- icons/outline/ambulance.svg | 4 +- icons/outline/analyze-off.svg | 2 +- icons/outline/analyze.svg | 6 +- icons/outline/anchor.svg | 2 +- icons/outline/aperture.svg | 2 +- icons/outline/app-window.svg | 2 +- icons/outline/apps-off.svg | 2 +- icons/outline/apps.svg | 6 +- icons/outline/archery-arrow.svg | 2 +- icons/outline/archive.svg | 2 +- icons/outline/armchair.svg | 2 +- icons/outline/arrow-autofit-content.svg | 2 +- icons/outline/arrow-badge-down.svg | 2 +- icons/outline/arrow-badge-left.svg | 2 +- icons/outline/arrow-badge-right.svg | 2 +- icons/outline/arrow-badge-up.svg | 2 +- icons/outline/arrow-big-down-line.svg | 2 +- icons/outline/arrow-big-down-lines.svg | 2 +- icons/outline/arrow-big-down.svg | 2 +- icons/outline/arrow-big-left-line.svg | 2 +- icons/outline/arrow-big-left-lines.svg | 2 +- icons/outline/arrow-big-left.svg | 2 +- icons/outline/arrow-big-right-line.svg | 2 +- icons/outline/arrow-big-right-lines.svg | 2 +- icons/outline/arrow-big-right.svg | 2 +- icons/outline/arrow-big-up-line.svg | 2 +- icons/outline/arrow-big-up-lines.svg | 2 +- icons/outline/arrow-big-up.svg | 2 +- icons/outline/arrow-down-rhombus.svg | 2 +- icons/outline/arrow-down-square.svg | 2 +- icons/outline/arrow-guide.svg | 2 +- icons/outline/arrow-left-circle.svg | 2 +- icons/outline/arrow-left-rhombus.svg | 2 +- icons/outline/arrow-left-square.svg | 2 +- icons/outline/arrow-move-down.svg | 2 +- icons/outline/arrow-move-left.svg | 2 +- icons/outline/arrow-move-right.svg | 2 +- icons/outline/arrow-move-up.svg | 2 +- icons/outline/arrow-right-circle.svg | 2 +- icons/outline/arrow-right-rhombus.svg | 2 +- icons/outline/arrow-right-square.svg | 2 +- icons/outline/arrow-rotary-first-left.svg | 2 +- icons/outline/arrow-rotary-first-right.svg | 2 +- icons/outline/arrow-rotary-last-left.svg | 2 +- icons/outline/arrow-rotary-last-right.svg | 2 +- icons/outline/arrow-rotary-left.svg | 2 +- icons/outline/arrow-rotary-right.svg | 2 +- icons/outline/arrow-rotary-straight.svg | 2 +- icons/outline/arrow-up-rhombus.svg | 2 +- icons/outline/arrow-up-square.svg | 2 +- icons/outline/artboard.svg | 2 +- icons/outline/article.svg | 2 +- icons/outline/aspect-ratio.svg | 2 +- icons/outline/assembly.svg | 4 +- icons/outline/asset.svg | 8 +- icons/outline/at.svg | 2 +- icons/outline/atom-2.svg | 2 +- icons/outline/augmented-reality-2.svg | 2 +- icons/outline/augmented-reality.svg | 2 +- icons/outline/automatic-gearbox.svg | 4 +- icons/outline/automation.svg | 2 +- icons/outline/avocado.svg | 4 +- icons/outline/award.svg | 2 +- icons/outline/axe.svg | 2 +- icons/outline/baby-bottle.svg | 2 +- icons/outline/baby-carriage.svg | 4 +- icons/outline/backhoe.svg | 6 +- icons/outline/backpack.svg | 2 +- icons/outline/backspace.svg | 2 +- icons/outline/badge-2k.svg | 2 +- icons/outline/badge-3d.svg | 4 +- icons/outline/badge-3k.svg | 2 +- icons/outline/badge-4k.svg | 2 +- icons/outline/badge-5k.svg | 2 +- icons/outline/badge-8k.svg | 4 +- icons/outline/badge-ad.svg | 4 +- icons/outline/badge-ar.svg | 2 +- icons/outline/badge-cc.svg | 2 +- icons/outline/badge-hd.svg | 4 +- icons/outline/badge-sd.svg | 4 +- icons/outline/badge-tm.svg | 2 +- icons/outline/badge-vo.svg | 4 +- icons/outline/badge-vr.svg | 2 +- icons/outline/badge-wc.svg | 2 +- icons/outline/badge.svg | 2 +- icons/outline/badges.svg | 4 +- icons/outline/baguette.svg | 2 +- icons/outline/ball-baseball.svg | 2 +- icons/outline/ball-basketball.svg | 2 +- icons/outline/ball-bowling.svg | 2 +- icons/outline/ball-football-off.svg | 2 +- icons/outline/ball-football.svg | 4 +- icons/outline/ball-tennis.svg | 2 +- icons/outline/ball-volleyball.svg | 2 +- icons/outline/ballpen.svg | 2 +- icons/outline/ban.svg | 2 +- icons/outline/barbell.svg | 4 +- icons/outline/barcode-off.svg | 2 +- icons/outline/barcode.svg | 4 +- icons/outline/barrel.svg | 2 +- icons/outline/barrier-block.svg | 2 +- icons/outline/basket-cancel.svg | 2 +- icons/outline/basket-cog.svg | 2 +- icons/outline/basket-heart.svg | 2 +- icons/outline/basket-pin.svg | 2 +- icons/outline/basket-question.svg | 2 +- icons/outline/basket-search.svg | 2 +- icons/outline/basket-star.svg | 2 +- icons/outline/basket.svg | 2 +- icons/outline/bat.svg | 2 +- icons/outline/bath.svg | 2 +- icons/outline/battery-automotive.svg | 2 +- icons/outline/battery-charging-2.svg | 2 +- icons/outline/battery-eco.svg | 2 +- icons/outline/battery-vertical-charging-2.svg | 2 +- icons/outline/battery-vertical-eco.svg | 2 +- icons/outline/beach.svg | 2 +- icons/outline/bed-flat.svg | 4 +- icons/outline/bed.svg | 4 +- icons/outline/beer.svg | 2 +- icons/outline/bell-cancel.svg | 2 +- icons/outline/bell-cog.svg | 2 +- icons/outline/bell-heart.svg | 2 +- icons/outline/bell-pin.svg | 2 +- icons/outline/bell-ringing-2.svg | 2 +- icons/outline/bell-school.svg | 4 +- icons/outline/bell-search.svg | 2 +- icons/outline/bell-star.svg | 2 +- icons/outline/bible.svg | 2 +- icons/outline/bike-off.svg | 4 +- icons/outline/bike.svg | 6 +- icons/outline/binary-off.svg | 4 +- icons/outline/binary-tree-2.svg | 8 +- icons/outline/binary-tree.svg | 10 +- icons/outline/binary.svg | 4 +- icons/outline/binoculars.svg | 6 +- icons/outline/biohazard.svg | 2 +- icons/outline/blade.svg | 4 +- icons/outline/blend-mode.svg | 4 +- icons/outline/blender.svg | 2 +- icons/outline/blocks.svg | 2 +- icons/outline/blur.svg | 2 +- icons/outline/bmp.svg | 2 +- icons/outline/body-scan.svg | 2 +- icons/outline/bold.svg | 2 +- icons/outline/bomb.svg | 2 +- icons/outline/bone.svg | 2 +- icons/outline/bong.svg | 2 +- icons/outline/book-2.svg | 2 +- icons/outline/bookmark-edit.svg | 2 +- icons/outline/bookmark.svg | 2 +- icons/outline/bookmarks.svg | 2 +- icons/outline/books.svg | 6 +- icons/outline/border-all.svg | 2 +- icons/outline/border-outer.svg | 2 +- icons/outline/bottle-off.svg | 2 +- icons/outline/bottle.svg | 2 +- icons/outline/bounce-left.svg | 2 +- icons/outline/bounce-right.svg | 2 +- icons/outline/bow.svg | 2 +- icons/outline/bowl-chopsticks.svg | 2 +- icons/outline/bowl-spoon.svg | 2 +- icons/outline/bowl.svg | 2 +- icons/outline/box-align-bottom-left.svg | 2 +- icons/outline/box-align-bottom-right.svg | 2 +- icons/outline/box-align-bottom.svg | 2 +- icons/outline/box-align-left.svg | 2 +- icons/outline/box-align-right.svg | 2 +- icons/outline/box-align-top-left.svg | 2 +- icons/outline/box-align-top-right.svg | 2 +- icons/outline/box-align-top.svg | 2 +- icons/outline/box-margin.svg | 2 +- icons/outline/box-model-2.svg | 4 +- icons/outline/box-model.svg | 4 +- icons/outline/box-multiple-0.svg | 4 +- icons/outline/box-multiple-1.svg | 2 +- icons/outline/box-multiple-2.svg | 2 +- icons/outline/box-multiple-3.svg | 2 +- icons/outline/box-multiple-4.svg | 2 +- icons/outline/box-multiple-5.svg | 2 +- icons/outline/box-multiple-6.svg | 4 +- icons/outline/box-multiple-7.svg | 2 +- icons/outline/box-multiple-8.svg | 6 +- icons/outline/box-multiple-9.svg | 4 +- icons/outline/box-multiple.svg | 2 +- icons/outline/box-padding.svg | 2 +- icons/outline/braille.svg | 6 +- icons/outline/brand-4chan.svg | 10 +- icons/outline/brand-abstract.svg | 4 +- icons/outline/brand-adobe-after-effect.svg | 2 +- icons/outline/brand-adobe-indesign.svg | 5 +- icons/outline/brand-adobe-photoshop.svg | 2 +- ...e-premier.svg => brand-adobe-premiere.svg} | 2 +- icons/outline/brand-adobe-xd.svg | 5 +- icons/outline/brand-adobe.svg | 2 +- icons/outline/brand-adonis-js.svg | 4 +- icons/outline/brand-airbnb.svg | 2 +- icons/outline/brand-airtable.svg | 6 +- icons/outline/brand-alipay.svg | 2 +- icons/outline/brand-alpine-js.svg | 2 +- icons/outline/brand-amd.svg | 4 +- icons/outline/brand-amie.svg | 2 +- icons/outline/brand-amigo.svg | 4 +- icons/outline/brand-among-us.svg | 2 +- icons/outline/brand-angular.svg | 2 +- icons/outline/brand-ansible.svg | 2 +- icons/outline/brand-ao3.svg | 2 +- icons/outline/brand-appgallery.svg | 2 +- icons/outline/brand-apple-arcade.svg | 4 +- icons/outline/brand-apple-news.svg | 6 +- icons/outline/brand-apple-podcast.svg | 4 +- icons/outline/brand-apple.svg | 2 +- icons/outline/brand-appstore.svg | 2 +- icons/outline/brand-asana.svg | 6 +- icons/outline/brand-auth0.svg | 4 +- icons/outline/brand-azure.svg | 4 +- icons/outline/brand-backbone.svg | 4 +- icons/outline/brand-badoo.svg | 2 +- icons/outline/brand-baidu.svg | 10 +- icons/outline/brand-bandcamp.svg | 2 +- icons/outline/brand-beats.svg | 4 +- icons/outline/brand-bilibili.svg | 2 +- icons/outline/brand-binance.svg | 10 +- icons/outline/brand-bing.svg | 2 +- icons/outline/brand-bitbucket.svg | 4 +- icons/outline/brand-blackberry.svg | 14 +- icons/outline/brand-blender.svg | 4 +- icons/outline/brand-blogger.svg | 6 +- icons/outline/brand-bluesky.svg | 2 +- icons/outline/brand-booking.svg | 2 +- icons/outline/brand-bootstrap.svg | 2 +- icons/outline/brand-bulma.svg | 2 +- icons/outline/brand-bumble.svg | 2 +- icons/outline/brand-cake.svg | 2 +- icons/outline/brand-cakephp.svg | 6 +- icons/outline/brand-carbon.svg | 2 +- icons/outline/brand-cashapp.svg | 2 +- icons/outline/brand-chrome.svg | 4 +- icons/outline/brand-cinema-4d.svg | 2 +- icons/outline/brand-citymapper.svg | 4 +- icons/outline/brand-cloudflare.svg | 2 +- icons/outline/brand-codesandbox.svg | 2 +- icons/outline/brand-cohost.svg | 4 +- icons/outline/brand-coinbase.svg | 2 +- icons/outline/brand-coreos.svg | 2 +- icons/outline/brand-couchdb.svg | 2 +- icons/outline/brand-couchsurfing.svg | 2 +- icons/outline/brand-crunchbase.svg | 4 +- icons/outline/brand-css3.svg | 2 +- icons/outline/brand-ctemplar.svg | 2 +- icons/outline/brand-cucumber.svg | 2 +- icons/outline/brand-dcos.svg | 2 +- icons/outline/brand-debian.svg | 2 +- icons/outline/brand-deezer.svg | 20 +- icons/outline/brand-deliveroo.svg | 6 +- icons/outline/brand-deno.svg | 2 +- icons/outline/brand-denodo.svg | 14 +- icons/outline/brand-deviantart.svg | 2 +- icons/outline/brand-dingtalk.svg | 4 +- icons/outline/brand-disqus.svg | 4 +- icons/outline/brand-django.svg | 2 +- icons/outline/brand-docker.svg | 14 +- icons/outline/brand-doctrine.svg | 2 +- icons/outline/brand-dolby-digital.svg | 4 +- icons/outline/brand-douban.svg | 2 +- icons/outline/brand-dribbble.svg | 2 +- icons/outline/brand-dropbox.svg | 2 +- icons/outline/brand-drops.svg | 4 +- icons/outline/brand-drupal.svg | 4 +- icons/outline/brand-elastic.svg | 2 +- icons/outline/brand-electronic-arts.svg | 2 +- icons/outline/brand-envato.svg | 4 +- icons/outline/brand-etsy.svg | 2 +- icons/outline/brand-feedly.svg | 2 +- icons/outline/brand-figma.svg | 4 +- icons/outline/brand-filezilla.svg | 2 +- icons/outline/brand-finder.svg | 2 +- icons/outline/brand-fiverr.svg | 2 +- icons/outline/brand-flickr.svg | 4 +- icons/outline/brand-flightradar24.svg | 6 +- icons/outline/brand-flipboard.svg | 2 +- icons/outline/brand-flutter.svg | 4 +- icons/outline/brand-fortnite.svg | 2 +- icons/outline/brand-foursquare.svg | 2 +- icons/outline/brand-funimation.svg | 4 +- icons/outline/brand-gatsby.svg | 2 +- icons/outline/brand-git.svg | 8 +- icons/outline/brand-github-copilot.svg | 4 +- icons/outline/brand-gitlab.svg | 2 +- icons/outline/brand-gmail.svg | 4 +- icons/outline/brand-golang.svg | 2 +- icons/outline/brand-google-analytics.svg | 6 +- icons/outline/brand-google-big-query.svg | 4 +- icons/outline/brand-google-drive.svg | 4 +- icons/outline/brand-google-home.svg | 2 +- icons/outline/brand-google-maps.svg | 4 +- icons/outline/brand-google-one.svg | 4 +- icons/outline/brand-google-photos.svg | 8 +- icons/outline/brand-google-play.svg | 2 +- icons/outline/brand-google.svg | 2 +- icons/outline/brand-grammarly.svg | 2 +- icons/outline/brand-graphql.svg | 4 +- icons/outline/brand-grindr.svg | 6 +- icons/outline/brand-guardian.svg | 2 +- icons/outline/brand-gumroad.svg | 2 +- icons/outline/brand-hackerrank.svg | 4 +- icons/outline/brand-hbo.svg | 6 +- icons/outline/brand-headlessui.svg | 4 +- icons/outline/brand-hexo.svg | 2 +- icons/outline/brand-hipchat.svg | 2 +- icons/outline/brand-html5.svg | 2 +- icons/outline/brand-inertia.svg | 4 +- icons/outline/brand-instagram.svg | 2 +- icons/outline/brand-intercom.svg | 2 +- icons/outline/brand-itch.svg | 2 +- icons/outline/brand-javascript.svg | 2 +- icons/outline/brand-juejin.svg | 2 +- icons/outline/brand-kako-talk.svg | 2 +- icons/outline/brand-kbin.svg | 2 +- icons/outline/brand-kick.svg | 2 +- icons/outline/brand-kickstarter.svg | 2 +- icons/outline/brand-laravel.svg | 2 +- icons/outline/brand-letterboxd.svg | 8 +- icons/outline/brand-line.svg | 2 +- icons/outline/brand-linkedin.svg | 2 +- icons/outline/brand-linqpad.svg | 2 +- icons/outline/brand-livewire.svg | 8 +- icons/outline/brand-mailgun.svg | 6 +- icons/outline/brand-mantine.svg | 2 +- icons/outline/brand-mastercard.svg | 4 +- icons/outline/brand-mastodon.svg | 2 +- icons/outline/brand-medium.svg | 2 +- icons/outline/brand-mercedes.svg | 2 +- icons/outline/brand-meta.svg | 4 +- icons/outline/brand-metabrainz.svg | 4 +- icons/outline/brand-minecraft.svg | 4 +- icons/outline/brand-miniprogram.svg | 2 +- icons/outline/brand-mixpanel.svg | 6 +- icons/outline/brand-monday.svg | 6 +- icons/outline/brand-mongodb.svg | 2 +- icons/outline/brand-my-oppo.svg | 2 +- icons/outline/brand-national-geographic.svg | 2 +- icons/outline/brand-nem.svg | 2 +- icons/outline/brand-netbeans.svg | 4 +- icons/outline/brand-netease-music.svg | 2 +- icons/outline/brand-netflix.svg | 2 +- icons/outline/brand-nexo.svg | 2 +- icons/outline/brand-nextcloud.svg | 6 +- icons/outline/brand-notion.svg | 2 +- icons/outline/brand-npm.svg | 2 +- icons/outline/brand-nuxt.svg | 2 +- icons/outline/brand-oauth.svg | 4 +- icons/outline/brand-office.svg | 2 +- icons/outline/brand-ok-ru.svg | 4 +- icons/outline/brand-onedrive.svg | 2 +- icons/outline/brand-onlyfans.svg | 4 +- icons/outline/brand-open-source.svg | 2 +- icons/outline/brand-openvpn.svg | 2 +- icons/outline/brand-opera.svg | 4 +- icons/outline/brand-parsinta.svg | 2 +- icons/outline/brand-patreon.svg | 2 +- icons/outline/brand-paypal.svg | 2 +- icons/outline/brand-paypay.svg | 2 +- icons/outline/brand-peanut.svg | 2 +- icons/outline/brand-pepsi.svg | 2 +- icons/outline/brand-php.svg | 2 +- icons/outline/brand-picsart.svg | 4 +- icons/outline/brand-pinterest.svg | 2 +- icons/outline/brand-planetscale.svg | 4 +- icons/outline/brand-pnpm.svg | 16 +- icons/outline/brand-powershell.svg | 2 +- icons/outline/brand-printables.svg | 2 +- icons/outline/brand-prisma.svg | 2 +- icons/outline/brand-producthunt.svg | 2 +- icons/outline/brand-pushbullet.svg | 4 +- icons/outline/brand-qq.svg | 6 +- icons/outline/brand-radix-ui.svg | 6 +- icons/outline/brand-react.svg | 2 +- icons/outline/brand-reason.svg | 2 +- icons/outline/brand-reddit.svg | 8 +- icons/outline/brand-redhat.svg | 2 +- icons/outline/brand-redux.svg | 6 +- icons/outline/brand-revolut.svg | 4 +- icons/outline/brand-rumble.svg | 4 +- icons/outline/brand-rust.svg | 4 +- icons/outline/brand-safari.svg | 2 +- icons/outline/brand-samsungpass.svg | 2 +- icons/outline/brand-sass.svg | 2 +- icons/outline/brand-sharik.svg | 2 +- icons/outline/brand-shazam.svg | 2 +- icons/outline/brand-shopee.svg | 2 +- icons/outline/brand-sketch.svg | 2 +- icons/outline/brand-skype.svg | 2 +- icons/outline/brand-snapchat.svg | 2 +- icons/outline/brand-snapseed.svg | 2 +- icons/outline/brand-snowflake.svg | 2 +- icons/outline/brand-socket-io.svg | 6 +- icons/outline/brand-solidjs.svg | 2 +- icons/outline/brand-soundcloud.svg | 2 +- icons/outline/brand-spacehey.svg | 6 +- icons/outline/brand-spotify.svg | 2 +- icons/outline/brand-stackshare.svg | 6 +- icons/outline/brand-steam.svg | 4 +- icons/outline/brand-storj.svg | 16 +- icons/outline/brand-storybook.svg | 2 +- icons/outline/brand-storytel.svg | 2 +- icons/outline/brand-stripe.svg | 2 +- icons/outline/brand-sublime-text.svg | 4 +- icons/outline/brand-sugarizer.svg | 4 +- icons/outline/brand-supabase.svg | 2 +- icons/outline/brand-superhuman.svg | 2 +- icons/outline/brand-supernova.svg | 2 +- icons/outline/brand-surfshark.svg | 2 +- icons/outline/brand-swift.svg | 2 +- icons/outline/brand-symfony.svg | 2 +- icons/outline/brand-tabler.svg | 2 +- icons/outline/brand-tabnine.svg | 2 +- icons/outline/brand-tailwind.svg | 2 +- icons/outline/brand-teams.svg | 2 +- icons/outline/brand-ted.svg | 2 +- icons/outline/brand-tesla.svg | 2 +- icons/outline/brand-tether.svg | 2 +- icons/outline/brand-thingiverse.svg | 2 +- icons/outline/brand-threejs.svg | 4 +- icons/outline/brand-tidal.svg | 2 +- icons/outline/brand-tiktok.svg | 2 +- icons/outline/brand-tinder.svg | 2 +- icons/outline/brand-topbuzz.svg | 2 +- icons/outline/brand-torchain.svg | 4 +- icons/outline/brand-toyota.svg | 4 +- icons/outline/brand-trello.svg | 6 +- icons/outline/brand-tripadvisor.svg | 8 +- icons/outline/brand-twilio.svg | 10 +- icons/outline/brand-twitch.svg | 2 +- icons/outline/brand-twitter.svg | 2 +- icons/outline/brand-typescript.svg | 2 +- icons/outline/brand-uber.svg | 4 +- icons/outline/brand-ubuntu.svg | 6 +- icons/outline/brand-unsplash.svg | 3 +- icons/outline/brand-valorant.svg | 4 +- icons/outline/brand-vercel.svg | 2 +- icons/outline/brand-vimeo.svg | 2 +- icons/outline/brand-vinted.svg | 2 +- icons/outline/brand-visual-studio.svg | 2 +- icons/outline/brand-vite.svg | 2 +- icons/outline/brand-vk.svg | 2 +- icons/outline/brand-vlc.svg | 2 +- icons/outline/brand-volkswagen.svg | 2 +- icons/outline/brand-vsco.svg | 4 +- icons/outline/brand-vscode.svg | 2 +- icons/outline/brand-waze.svg | 4 +- icons/outline/brand-webflow.svg | 2 +- icons/outline/brand-wechat.svg | 2 +- icons/outline/brand-weibo.svg | 2 +- icons/outline/brand-windows.svg | 2 +- icons/outline/brand-wordpress.svg | 4 +- icons/outline/brand-x.svg | 2 +- icons/outline/brand-xamarin.svg | 2 +- icons/outline/brand-xbox.svg | 2 +- icons/outline/brand-yarn.svg | 2 +- icons/outline/brand-yatse.svg | 2 +- icons/outline/brand-ycombinator.svg | 2 +- icons/outline/brand-youtube-kids.svg | 4 +- icons/outline/brand-youtube.svg | 4 +- icons/outline/brand-zalando.svg | 2 +- icons/outline/brand-zeit.svg | 2 +- icons/outline/brand-zhihu.svg | 2 +- icons/outline/brand-zoom.svg | 4 +- icons/outline/brand-zulip.svg | 4 +- icons/outline/brand-zwift.svg | 2 +- icons/outline/bread.svg | 2 +- icons/outline/briefcase-2.svg | 2 +- icons/outline/briefcase.svg | 2 +- icons/outline/brightness-2.svg | 4 +- icons/outline/brightness-auto.svg | 2 +- icons/outline/brightness-down.svg | 2 +- icons/outline/brightness-half.svg | 4 +- icons/outline/brightness-up.svg | 2 +- icons/outline/brightness.svg | 2 +- icons/outline/broadcast.svg | 2 +- icons/outline/browser-check.svg | 2 +- icons/outline/browser-x.svg | 2 +- icons/outline/browser.svg | 2 +- icons/outline/brush-off.svg | 2 +- icons/outline/bucket-droplet.svg | 4 +- icons/outline/bucket.svg | 2 +- icons/outline/building-broadcast-tower.svg | 2 +- icons/outline/building-carousel.svg | 12 +- icons/outline/building-castle.svg | 2 +- icons/outline/building-cog.svg | 2 +- icons/outline/building-cottage.svg | 2 +- icons/outline/building-estate.svg | 2 +- icons/outline/building-fortress.svg | 14 +- icons/outline/building-lighthouse.svg | 2 +- icons/outline/building-mosque.svg | 4 +- icons/outline/building-stadium.svg | 2 +- icons/outline/building-tunnel.svg | 4 +- icons/outline/building-wind-turbine.svg | 2 +- icons/outline/buildings.svg | 16 +- icons/outline/burger.svg | 4 +- icons/outline/bus-off.svg | 2 +- icons/outline/bus-stop.svg | 4 +- icons/outline/bus.svg | 4 +- icons/outline/businessplan.svg | 2 +- icons/outline/butterfly.svg | 2 +- icons/outline/cake-roll.svg | 2 +- icons/outline/cake.svg | 4 +- icons/outline/calculator.svg | 4 +- icons/outline/calendar-cancel.svg | 2 +- icons/outline/calendar-clock.svg | 2 +- icons/outline/calendar-cog.svg | 2 +- icons/outline/calendar-dot.svg | 2 +- icons/outline/calendar-due.svg | 4 +- icons/outline/calendar-event.svg | 4 +- icons/outline/calendar-heart.svg | 2 +- icons/outline/calendar-month.svg | 2 +- icons/outline/calendar-pin.svg | 2 +- icons/outline/calendar-sad.svg | 2 +- icons/outline/calendar-search.svg | 2 +- icons/outline/calendar-smile.svg | 2 +- icons/outline/calendar-star.svg | 2 +- icons/outline/calendar-stats.svg | 2 +- icons/outline/calendar-time.svg | 2 +- icons/outline/calendar-user.svg | 2 +- icons/outline/calendar-week.svg | 2 +- icons/outline/calendar.svg | 2 +- icons/outline/camera-cancel.svg | 2 +- icons/outline/camera-cog.svg | 2 +- icons/outline/camera-heart.svg | 2 +- icons/outline/camera-pin.svg | 2 +- icons/outline/camera-search.svg | 2 +- icons/outline/camera-star.svg | 2 +- icons/outline/camera-up.svg | 2 +- icons/outline/campfire.svg | 2 +- icons/outline/candle.svg | 4 +- icons/outline/candy.svg | 2 +- icons/outline/cannabis.svg | 2 +- icons/outline/capsule-horizontal.svg | 2 +- icons/outline/capsule.svg | 2 +- icons/outline/capture.svg | 2 +- icons/outline/car-4wd.svg | 8 +- icons/outline/car-crane.svg | 4 +- icons/outline/car-crash.svg | 2 +- icons/outline/car-fan-1.svg | 6 +- icons/outline/car-fan-2.svg | 6 +- icons/outline/car-fan-3.svg | 6 +- icons/outline/car-fan-auto.svg | 6 +- icons/outline/car-fan.svg | 8 +- icons/outline/car-off.svg | 2 +- icons/outline/car-turbine.svg | 4 +- icons/outline/car.svg | 4 +- icons/outline/caravan.svg | 2 +- icons/outline/cardboards-off.svg | 4 +- icons/outline/cardboards.svg | 6 +- icons/outline/cards.svg | 2 +- icons/outline/carousel-horizontal.svg | 2 +- icons/outline/carousel-vertical.svg | 2 +- icons/outline/carrot-off.svg | 4 +- icons/outline/carrot.svg | 6 +- icons/outline/cash-banknote-edit.svg | 2 +- icons/outline/cash-banknote-heart.svg | 2 +- icons/outline/cash-banknote.svg | 2 +- icons/outline/cash-edit.svg | 2 +- icons/outline/cash-heart.svg | 2 +- icons/outline/cash.svg | 2 +- icons/outline/cat.svg | 4 +- icons/outline/category-2.svg | 8 +- icons/outline/category-minus.svg | 5 +- icons/outline/category-plus.svg | 5 +- icons/outline/category.svg | 8 +- icons/outline/cell-signal-1.svg | 2 +- icons/outline/cell-signal-2.svg | 2 +- icons/outline/cell-signal-3.svg | 2 +- icons/outline/cell-signal-4.svg | 2 +- icons/outline/cell-signal-5.svg | 2 +- icons/outline/cell.svg | 2 +- icons/outline/certificate-2.svg | 2 +- icons/outline/certificate.svg | 2 +- icons/outline/chalkboard.svg | 2 +- icons/outline/chart-arcs-3.svg | 2 +- icons/outline/chart-arcs.svg | 2 +- icons/outline/chart-bar-off.svg | 2 +- icons/outline/chart-bar-popular.svg | 6 +- icons/outline/chart-bar.svg | 6 +- icons/outline/chart-bubble.svg | 6 +- icons/outline/chart-candle.svg | 6 +- icons/outline/chart-circles.svg | 4 +- icons/outline/chart-donut-2.svg | 4 +- icons/outline/chart-donut-3.svg | 4 +- icons/outline/chart-donut-4.svg | 4 +- icons/outline/chart-dots-2.svg | 6 +- icons/outline/chart-dots-3.svg | 8 +- icons/outline/chart-dots.svg | 6 +- icons/outline/chart-grid-dots.svg | 8 +- icons/outline/chart-infographic.svg | 2 +- icons/outline/chart-pie-2.svg | 2 +- icons/outline/chart-pie-3.svg | 2 +- icons/outline/chart-pie-4.svg | 2 +- icons/outline/chart-radar.svg | 4 +- icons/outline/chart-treemap.svg | 2 +- icons/outline/checkup-list.svg | 2 +- icons/outline/chef-hat.svg | 2 +- icons/outline/cherry.svg | 4 +- icons/outline/chess-bishop.svg | 6 +- icons/outline/chess-king.svg | 4 +- icons/outline/chess-knight.svg | 4 +- icons/outline/chess-queen.svg | 8 +- icons/outline/chess-rook.svg | 2 +- icons/outline/chess.svg | 4 +- icons/outline/chisel.svg | 4 +- icons/outline/christmas-ball.svg | 2 +- icons/outline/christmas-tree.svg | 2 +- icons/outline/circle-caret-down.svg | 4 +- icons/outline/circle-caret-left.svg | 4 +- icons/outline/circle-caret-right.svg | 4 +- icons/outline/circle-caret-up.svg | 4 +- icons/outline/circle-check.svg | 2 +- icons/outline/circle-chevron-down.svg | 2 +- icons/outline/circle-chevron-left.svg | 2 +- icons/outline/circle-chevron-right.svg | 2 +- icons/outline/circle-chevron-up.svg | 2 +- icons/outline/circle-chevrons-down.svg | 2 +- icons/outline/circle-chevrons-left.svg | 2 +- icons/outline/circle-chevrons-right.svg | 2 +- icons/outline/circle-chevrons-up.svg | 2 +- icons/outline/circle-dashed-letter-b.svg | 2 +- icons/outline/circle-dashed-letter-d.svg | 2 +- icons/outline/circle-dashed-number-0.svg | 2 +- icons/outline/circle-dot.svg | 4 +- icons/outline/circle-dotted-letter-b.svg | 2 +- icons/outline/circle-dotted-letter-d.svg | 2 +- icons/outline/circle-half-2.svg | 2 +- icons/outline/circle-half-vertical.svg | 2 +- icons/outline/circle-half.svg | 2 +- icons/outline/circle-key.svg | 4 +- icons/outline/circle-letter-a.svg | 2 +- icons/outline/circle-letter-b.svg | 4 +- icons/outline/circle-letter-c.svg | 2 +- icons/outline/circle-letter-d.svg | 4 +- icons/outline/circle-letter-e.svg | 2 +- icons/outline/circle-letter-f.svg | 2 +- icons/outline/circle-letter-g.svg | 2 +- icons/outline/circle-letter-h.svg | 2 +- icons/outline/circle-letter-i.svg | 2 +- icons/outline/circle-letter-j.svg | 2 +- icons/outline/circle-letter-k.svg | 2 +- icons/outline/circle-letter-l.svg | 2 +- icons/outline/circle-letter-m.svg | 2 +- icons/outline/circle-letter-n.svg | 2 +- icons/outline/circle-letter-o.svg | 4 +- icons/outline/circle-letter-p.svg | 2 +- icons/outline/circle-letter-q.svg | 4 +- icons/outline/circle-letter-r.svg | 2 +- icons/outline/circle-letter-s.svg | 2 +- icons/outline/circle-letter-t.svg | 2 +- icons/outline/circle-letter-u.svg | 2 +- icons/outline/circle-letter-v.svg | 2 +- icons/outline/circle-letter-w.svg | 2 +- icons/outline/circle-letter-x.svg | 2 +- icons/outline/circle-letter-y.svg | 2 +- icons/outline/circle-letter-z.svg | 2 +- icons/outline/circle-minus.svg | 2 +- icons/outline/circle-number-0.svg | 4 +- icons/outline/circle-number-1.svg | 2 +- icons/outline/circle-number-2.svg | 2 +- icons/outline/circle-number-3.svg | 2 +- icons/outline/circle-number-4.svg | 2 +- icons/outline/circle-number-5.svg | 2 +- icons/outline/circle-number-6.svg | 2 +- icons/outline/circle-number-7.svg | 2 +- icons/outline/circle-number-8.svg | 2 +- icons/outline/circle-number-9.svg | 2 +- icons/outline/circle-rectangle.svg | 4 +- icons/outline/circle-square.svg | 4 +- icons/outline/circle-triangle.svg | 4 +- icons/outline/circle-x.svg | 2 +- icons/outline/circle.svg | 2 +- icons/outline/circles.svg | 6 +- icons/outline/circuit-ammeter.svg | 2 +- icons/outline/circuit-bulb.svg | 2 +- icons/outline/circuit-changeover.svg | 6 +- icons/outline/circuit-diode-zener.svg | 2 +- icons/outline/circuit-diode.svg | 2 +- icons/outline/circuit-ground-digital.svg | 2 +- icons/outline/circuit-motor.svg | 2 +- icons/outline/circuit-pushbutton.svg | 4 +- icons/outline/circuit-switch-closed.svg | 4 +- icons/outline/circuit-switch-open.svg | 4 +- icons/outline/circuit-voltmeter.svg | 2 +- icons/outline/clipboard-check.svg | 2 +- icons/outline/clipboard-copy.svg | 2 +- icons/outline/clipboard-data.svg | 2 +- icons/outline/clipboard-heart.svg | 4 +- icons/outline/clipboard-list.svg | 2 +- icons/outline/clipboard-plus.svg | 2 +- icons/outline/clipboard-search.svg | 2 +- icons/outline/clipboard-smile.svg | 2 +- icons/outline/clipboard-text.svg | 2 +- icons/outline/clipboard-typography.svg | 2 +- icons/outline/clipboard-x.svg | 2 +- icons/outline/clipboard.svg | 2 +- icons/outline/clock-2.svg | 2 +- icons/outline/clock-cancel.svg | 2 +- icons/outline/clock-cog.svg | 2 +- icons/outline/clock-edit.svg | 2 +- icons/outline/clock-heart.svg | 2 +- icons/outline/clock-hour-1.svg | 2 +- icons/outline/clock-hour-10.svg | 2 +- icons/outline/clock-hour-11.svg | 2 +- icons/outline/clock-hour-12.svg | 2 +- icons/outline/clock-hour-2.svg | 2 +- icons/outline/clock-hour-3.svg | 2 +- icons/outline/clock-hour-4.svg | 2 +- icons/outline/clock-hour-5.svg | 2 +- icons/outline/clock-hour-6.svg | 2 +- icons/outline/clock-hour-7.svg | 2 +- icons/outline/clock-hour-8.svg | 2 +- icons/outline/clock-hour-9.svg | 2 +- icons/outline/clock-pin.svg | 2 +- icons/outline/clock-play.svg | 2 +- icons/outline/clock-record.svg | 2 +- icons/outline/clock-search.svg | 2 +- icons/outline/clock-shield.svg | 2 +- icons/outline/clock-star.svg | 2 +- icons/outline/clock-stop.svg | 2 +- icons/outline/clothes-rack-off.svg | 2 +- icons/outline/clothes-rack.svg | 2 +- icons/outline/cloud-cancel.svg | 2 +- icons/outline/cloud-cog.svg | 2 +- icons/outline/cloud-data-connection.svg | 4 +- icons/outline/cloud-heart.svg | 2 +- icons/outline/cloud-lock-open.svg | 2 +- icons/outline/cloud-lock.svg | 2 +- icons/outline/cloud-pin.svg | 2 +- icons/outline/cloud-search.svg | 2 +- icons/outline/cloud-star.svg | 2 +- icons/outline/clover-2.svg | 4 +- icons/outline/clover.svg | 8 +- icons/outline/clubs.svg | 2 +- icons/outline/code-circle-2.svg | 2 +- icons/outline/code-circle.svg | 2 +- icons/outline/code-variable.svg | 2 +- icons/outline/coffee.svg | 2 +- icons/outline/coffin.svg | 2 +- icons/outline/coin-bitcoin.svg | 2 +- icons/outline/coin-euro.svg | 2 +- icons/outline/coin-monero.svg | 2 +- icons/outline/coin-pound.svg | 2 +- icons/outline/coin-rupee.svg | 2 +- icons/outline/coin-yen.svg | 2 +- icons/outline/coin-yuan.svg | 2 +- icons/outline/coin.svg | 2 +- icons/outline/coins.svg | 4 +- icons/outline/color-filter.svg | 2 +- icons/outline/color-picker.svg | 2 +- icons/outline/column-insert-left.svg | 2 +- icons/outline/column-insert-right.svg | 2 +- icons/outline/column-remove.svg | 2 +- icons/outline/columns-1.svg | 2 +- icons/outline/columns-2.svg | 3 +- icons/outline/columns-3.svg | 4 +- icons/outline/comet.svg | 2 +- icons/outline/compass.svg | 2 +- icons/outline/components-off.svg | 4 +- icons/outline/components.svg | 8 +- icons/outline/confetti-off.svg | 2 +- icons/outline/confetti.svg | 2 +- icons/outline/container.svg | 2 +- icons/outline/contract.svg | 2 +- icons/outline/contrast-2.svg | 2 +- icons/outline/contrast.svg | 2 +- icons/outline/cooker.svg | 2 +- icons/outline/cookie-man.svg | 3 +- icons/outline/cookie.svg | 1 - icons/outline/copy-check.svg | 3 +- icons/outline/copy-minus.svg | 3 +- icons/outline/copy-plus.svg | 3 +- icons/outline/copy-x.svg | 3 +- icons/outline/copy.svg | 2 +- icons/outline/copyleft.svg | 2 +- icons/outline/copyright.svg | 2 +- icons/outline/cpu-2.svg | 2 +- icons/outline/cpu.svg | 4 +- icons/outline/creative-commons-by.svg | 6 +- icons/outline/creative-commons-nc.svg | 2 +- icons/outline/creative-commons-nd.svg | 2 +- icons/outline/creative-commons-sa.svg | 2 +- icons/outline/creative-commons-zero.svg | 4 +- icons/outline/creative-commons.svg | 2 +- icons/outline/credit-card.svg | 2 +- icons/outline/cricket.svg | 2 +- icons/outline/crop-1-1.svg | 2 +- icons/outline/crop-16-9.svg | 2 +- icons/outline/crop-3-2.svg | 2 +- icons/outline/crop-5-4.svg | 2 +- icons/outline/crop-7-5.svg | 2 +- icons/outline/crop-landscape.svg | 2 +- icons/outline/crop-portrait.svg | 2 +- icons/outline/cross.svg | 2 +- icons/outline/crown.svg | 2 +- icons/outline/crutches.svg | 2 +- icons/outline/crystal-ball.svg | 2 +- icons/outline/cube-send.svg | 2 +- icons/outline/cube-unfolded.svg | 2 +- icons/outline/cube.svg | 2 +- icons/outline/cup.svg | 2 +- icons/outline/curling.svg | 2 +- icons/outline/currency-dollar-brunei.svg | 2 +- icons/outline/currency-dong.svg | 2 +- icons/outline/currency-ethereum.svg | 4 +- icons/outline/currency-quetzal.svg | 2 +- icons/outline/currency-ripple.svg | 6 +- icons/outline/currency-solana.svg | 2 +- icons/outline/currency-som.svg | 2 +- icons/outline/currency-taka.svg | 2 +- icons/outline/currency.svg | 2 +- icons/outline/current-location.svg | 4 +- icons/outline/cut.svg | 4 +- icons/outline/cylinder-plus.svg | 2 +- icons/outline/cylinder.svg | 2 +- icons/outline/dashboard.svg | 4 +- icons/outline/database-cog.svg | 2 +- icons/outline/database-edit.svg | 2 +- icons/outline/database-heart.svg | 2 +- icons/outline/database-search.svg | 2 +- icons/outline/database-star.svg | 2 +- icons/outline/database.svg | 2 +- icons/outline/decimal.svg | 4 +- icons/outline/delta.svg | 2 +- icons/outline/dental-broken.svg | 2 +- icons/outline/dental.svg | 2 +- icons/outline/details.svg | 2 +- icons/outline/device-airpods-case.svg | 2 +- icons/outline/device-airpods.svg | 4 +- icons/outline/device-analytics.svg | 2 +- icons/outline/device-audio-tape.svg | 6 +- icons/outline/device-camera-phone.svg | 2 +- icons/outline/device-cctv.svg | 4 +- icons/outline/device-computer-camera.svg | 4 +- icons/outline/device-desktop-analytics.svg | 2 +- icons/outline/device-desktop-cancel.svg | 2 +- icons/outline/device-desktop-cog.svg | 2 +- icons/outline/device-desktop-heart.svg | 2 +- icons/outline/device-desktop-pin.svg | 2 +- icons/outline/device-desktop-search.svg | 2 +- icons/outline/device-desktop-star.svg | 2 +- icons/outline/device-desktop.svg | 2 +- icons/outline/device-floppy.svg | 2 +- icons/outline/device-gamepad-2.svg | 2 +- icons/outline/device-gamepad-3.svg | 8 +- icons/outline/device-gamepad.svg | 2 +- icons/outline/device-heart-monitor.svg | 2 +- icons/outline/device-imac-cancel.svg | 2 +- icons/outline/device-imac-cog.svg | 2 +- icons/outline/device-imac-heart.svg | 2 +- icons/outline/device-imac-pin.svg | 2 +- icons/outline/device-imac-search.svg | 2 +- icons/outline/device-imac-star.svg | 2 +- icons/outline/device-imac.svg | 2 +- icons/outline/device-ipad-cancel.svg | 2 +- icons/outline/device-ipad-cog.svg | 2 +- icons/outline/device-ipad-heart.svg | 2 +- .../outline/device-ipad-horizontal-cancel.svg | 2 +- icons/outline/device-ipad-horizontal-cog.svg | 2 +- .../outline/device-ipad-horizontal-heart.svg | 2 +- icons/outline/device-ipad-horizontal-pin.svg | 2 +- .../outline/device-ipad-horizontal-search.svg | 2 +- icons/outline/device-ipad-horizontal-star.svg | 2 +- icons/outline/device-ipad-horizontal.svg | 2 +- icons/outline/device-ipad-pin.svg | 2 +- icons/outline/device-ipad-search.svg | 2 +- icons/outline/device-ipad-star.svg | 2 +- icons/outline/device-ipad.svg | 2 +- icons/outline/device-landline-phone.svg | 4 +- icons/outline/device-laptop.svg | 2 +- icons/outline/device-mobile-cancel.svg | 2 +- icons/outline/device-mobile-charging.svg | 2 +- icons/outline/device-mobile-cog.svg | 2 +- icons/outline/device-mobile-heart.svg | 2 +- icons/outline/device-mobile-message.svg | 2 +- icons/outline/device-mobile-pin.svg | 2 +- icons/outline/device-mobile-rotated.svg | 2 +- icons/outline/device-mobile-search.svg | 2 +- icons/outline/device-mobile-star.svg | 2 +- icons/outline/device-mobile-vibration.svg | 2 +- icons/outline/device-mobile.svg | 2 +- icons/outline/device-nintendo-off.svg | 2 +- icons/outline/device-nintendo.svg | 8 +- icons/outline/device-remote.svg | 4 +- icons/outline/device-sd-card.svg | 2 +- icons/outline/device-sim-1.svg | 2 +- icons/outline/device-sim-2.svg | 2 +- icons/outline/device-sim-3.svg | 2 +- icons/outline/device-sim.svg | 2 +- icons/outline/device-speaker.svg | 4 +- icons/outline/device-tablet-cancel.svg | 2 +- icons/outline/device-tablet-cog.svg | 2 +- icons/outline/device-tablet-heart.svg | 2 +- icons/outline/device-tablet-pin.svg | 2 +- icons/outline/device-tablet-search.svg | 2 +- icons/outline/device-tablet-star.svg | 2 +- icons/outline/device-tablet.svg | 2 +- icons/outline/device-tv-old.svg | 2 +- icons/outline/device-tv.svg | 2 +- icons/outline/device-unknown.svg | 2 +- icons/outline/device-usb.svg | 2 +- icons/outline/device-vision-pro.svg | 2 +- icons/outline/device-watch-cancel.svg | 2 +- icons/outline/device-watch-cog.svg | 2 +- icons/outline/device-watch-heart.svg | 2 +- icons/outline/device-watch-pin.svg | 2 +- icons/outline/device-watch-search.svg | 2 +- icons/outline/device-watch-star.svg | 2 +- icons/outline/device-watch-stats-2.svg | 2 +- icons/outline/device-watch-stats.svg | 2 +- icons/outline/device-watch.svg | 2 +- icons/outline/devices-2.svg | 4 +- icons/outline/devices-cancel.svg | 2 +- icons/outline/devices-cog.svg | 2 +- icons/outline/devices-heart.svg | 2 +- icons/outline/devices-pc.svg | 4 +- icons/outline/devices-pin.svg | 2 +- icons/outline/devices-search.svg | 2 +- icons/outline/devices-star.svg | 2 +- icons/outline/devices.svg | 2 +- icons/outline/diabolo-plus.svg | 2 +- icons/outline/diabolo.svg | 2 +- icons/outline/dialpad-off.svg | 6 +- icons/outline/dialpad.svg | 14 +- icons/outline/diamonds.svg | 2 +- icons/outline/diaper.svg | 2 +- icons/outline/dice-1.svg | 4 +- icons/outline/dice-2.svg | 6 +- icons/outline/dice-3.svg | 8 +- icons/outline/dice-4.svg | 10 +- icons/outline/dice-5.svg | 12 +- icons/outline/dice-6.svg | 14 +- icons/outline/dice.svg | 10 +- icons/outline/dimensions.svg | 2 +- icons/outline/direction-sign.svg | 2 +- icons/outline/directions.svg | 4 +- icons/outline/disabled-2.svg | 2 +- icons/outline/disabled.svg | 2 +- icons/outline/disc.svg | 4 +- icons/outline/discount.svg | 6 +- icons/outline/divide.svg | 4 +- icons/outline/dna.svg | 2 +- icons/outline/dog-bowl.svg | 2 +- icons/outline/dog.svg | 6 +- icons/outline/dots-circle-horizontal.svg | 2 +- icons/outline/dots-diagonal-2.svg | 6 +- icons/outline/dots-diagonal.svg | 6 +- icons/outline/dots-vertical.svg | 6 +- icons/outline/dots.svg | 6 +- icons/outline/drag-drop-2.svg | 2 +- icons/outline/drone.svg | 2 +- icons/outline/drop-circle.svg | 4 +- icons/outline/droplet-cancel.svg | 2 +- icons/outline/droplet-cog.svg | 2 +- icons/outline/droplet-half-2.svg | 2 +- icons/outline/droplet-half.svg | 2 +- icons/outline/droplet-heart.svg | 2 +- icons/outline/droplet-pin.svg | 2 +- icons/outline/droplet-search.svg | 2 +- icons/outline/droplet-star.svg | 2 +- icons/outline/droplet.svg | 2 +- icons/outline/droplets.svg | 6 +- icons/outline/dual-screen.svg | 2 +- icons/outline/e-passport.svg | 4 +- icons/outline/ease-in-control-point.svg | 2 +- icons/outline/ease-in-out-control-points.svg | 4 +- icons/outline/ease-out-control-point.svg | 2 +- icons/outline/edit-circle.svg | 2 +- icons/outline/edit.svg | 2 +- icons/outline/egg-cracked.svg | 2 +- icons/outline/egg-fried.svg | 4 +- icons/outline/egg.svg | 2 +- icons/outline/eggs.svg | 2 +- icons/outline/elevator.svg | 2 +- icons/outline/emergency-bed.svg | 4 +- icons/outline/empathize.svg | 4 +- icons/outline/engine.svg | 2 +- icons/outline/escalator-down.svg | 2 +- icons/outline/escalator-up.svg | 2 +- icons/outline/escalator.svg | 2 +- icons/outline/exchange-off.svg | 4 +- icons/outline/exchange.svg | 4 +- icons/outline/exclamation-circle.svg | 2 +- icons/outline/explicit.svg | 2 +- icons/outline/exposure-0.svg | 2 +- icons/outline/exposure.svg | 2 +- icons/outline/eye-cancel.svg | 2 +- icons/outline/eye-cog.svg | 2 +- icons/outline/eye-edit.svg | 2 +- icons/outline/eye-heart.svg | 2 +- icons/outline/eye-pin.svg | 2 +- icons/outline/eye-search.svg | 2 +- icons/outline/eye-star.svg | 2 +- icons/outline/eyeglass-2.svg | 4 +- icons/outline/face-mask.svg | 2 +- icons/outline/fall.svg | 2 +- icons/outline/favicon.svg | 4 +- icons/outline/fence.svg | 2 +- icons/outline/ferry.svg | 2 +- icons/outline/fidget-spinner.svg | 2 +- icons/outline/file-3d.svg | 4 +- icons/outline/file-alert.svg | 2 +- icons/outline/file-analytics.svg | 2 +- icons/outline/file-arrow-left.svg | 2 +- icons/outline/file-arrow-right.svg | 2 +- icons/outline/file-barcode.svg | 6 +- icons/outline/file-certificate.svg | 2 +- icons/outline/file-chart.svg | 4 +- icons/outline/file-check.svg | 2 +- icons/outline/file-code-2.svg | 2 +- icons/outline/file-code.svg | 2 +- icons/outline/file-cv.svg | 2 +- icons/outline/file-database.svg | 4 +- icons/outline/file-delta.svg | 4 +- icons/outline/file-description.svg | 2 +- icons/outline/file-diff.svg | 2 +- icons/outline/file-digit.svg | 4 +- icons/outline/file-dislike.svg | 4 +- icons/outline/file-dollar.svg | 2 +- icons/outline/file-dots.svg | 2 +- icons/outline/file-download.svg | 2 +- icons/outline/file-euro.svg | 2 +- icons/outline/file-function.svg | 2 +- icons/outline/file-horizontal.svg | 2 +- icons/outline/file-info.svg | 2 +- icons/outline/file-invoice.svg | 2 +- icons/outline/file-lambda.svg | 2 +- icons/outline/file-like.svg | 4 +- icons/outline/file-minus.svg | 2 +- icons/outline/file-music.svg | 4 +- icons/outline/file-neutral.svg | 2 +- icons/outline/file-pencil.svg | 4 +- icons/outline/file-percent.svg | 2 +- icons/outline/file-phone.svg | 2 +- icons/outline/file-plus.svg | 2 +- icons/outline/file-power.svg | 2 +- icons/outline/file-report.svg | 2 +- icons/outline/file-rss.svg | 2 +- icons/outline/file-sad.svg | 2 +- icons/outline/file-scissors.svg | 6 +- icons/outline/file-search.svg | 2 +- icons/outline/file-settings.svg | 4 +- icons/outline/file-signal.svg | 2 +- icons/outline/file-smile.svg | 2 +- icons/outline/file-spreadsheet.svg | 4 +- icons/outline/file-star.svg | 4 +- icons/outline/file-text.svg | 2 +- icons/outline/file-time.svg | 4 +- icons/outline/file-type-bmp.svg | 2 +- icons/outline/file-type-doc.svg | 4 +- icons/outline/file-type-docx.svg | 4 +- icons/outline/file-type-pdf.svg | 2 +- icons/outline/file-type-sql.svg | 2 +- icons/outline/file-typography.svg | 2 +- icons/outline/file-unknown.svg | 2 +- icons/outline/file-upload.svg | 2 +- icons/outline/file-vector.svg | 6 +- icons/outline/file-x.svg | 2 +- icons/outline/file-zip.svg | 2 +- icons/outline/file.svg | 2 +- icons/outline/files.svg | 2 +- icons/outline/filter-2-cancel.svg | 2 +- icons/outline/filter-2-edit.svg | 2 +- icons/outline/filter-2-pin.svg | 2 +- icons/outline/filter-2-search.svg | 2 +- icons/outline/filter-2-spark.svg | 2 +- icons/outline/filter-cancel.svg | 2 +- icons/outline/filter-cog.svg | 2 +- icons/outline/filter-edit.svg | 2 +- icons/outline/filter-exclamation.svg | 2 +- icons/outline/filter-heart.svg | 2 +- icons/outline/filter-pin.svg | 2 +- icons/outline/filter-search.svg | 2 +- icons/outline/filter-star.svg | 2 +- icons/outline/filter.svg | 2 +- icons/outline/filters.svg | 2 +- icons/outline/fire-extinguisher.svg | 2 +- icons/outline/fire-hydrant.svg | 2 +- icons/outline/firetruck.svg | 4 +- icons/outline/first-aid-kit.svg | 2 +- icons/outline/fish-hook-off.svg | 2 +- icons/outline/fish-hook.svg | 2 +- icons/outline/flag-cancel.svg | 2 +- icons/outline/flag-cog.svg | 2 +- icons/outline/flag-heart.svg | 2 +- icons/outline/flag-pin.svg | 2 +- icons/outline/flag-search.svg | 2 +- icons/outline/flag-star.svg | 2 +- icons/outline/flag.svg | 2 +- icons/outline/flame.svg | 2 +- icons/outline/flare.svg | 2 +- icons/outline/flask-2.svg | 2 +- icons/outline/flip-flops.svg | 4 +- icons/outline/float-center.svg | 2 +- icons/outline/float-left.svg | 2 +- icons/outline/float-none.svg | 2 +- icons/outline/float-right.svg | 2 +- icons/outline/flower.svg | 4 +- icons/outline/focus-2.svg | 4 +- icons/outline/focus-centered.svg | 2 +- icons/outline/focus.svg | 4 +- icons/outline/folder-cancel.svg | 2 +- icons/outline/folder-cog.svg | 2 +- icons/outline/folder-heart.svg | 2 +- icons/outline/folder-pin.svg | 2 +- icons/outline/folder-root.svg | 2 +- icons/outline/folder-search.svg | 2 +- icons/outline/folder-star.svg | 2 +- icons/outline/forbid-2.svg | 2 +- icons/outline/forbid.svg | 2 +- icons/outline/forklift.svg | 4 +- icons/outline/fountain.svg | 2 +- icons/outline/free-rights.svg | 2 +- icons/outline/freeze-column.svg | 2 +- icons/outline/freeze-row-column.svg | 2 +- icons/outline/freeze-row.svg | 2 +- icons/outline/fridge.svg | 2 +- icons/outline/friends-off.svg | 2 +- icons/outline/friends.svg | 4 +- icons/outline/frustum.svg | 2 +- icons/outline/function.svg | 2 +- icons/outline/garden-cart.svg | 2 +- icons/outline/gauge.svg | 4 +- icons/outline/gavel.svg | 2 +- icons/outline/gender-agender.svg | 2 +- icons/outline/gender-androgyne.svg | 2 +- icons/outline/gender-bigender.svg | 2 +- icons/outline/gender-demiboy.svg | 2 +- icons/outline/gender-demigirl.svg | 2 +- icons/outline/gender-epicene.svg | 2 +- icons/outline/gender-female.svg | 2 +- icons/outline/gender-femme.svg | 2 +- icons/outline/gender-genderfluid.svg | 2 +- icons/outline/gender-genderless.svg | 2 +- icons/outline/gender-genderqueer.svg | 2 +- icons/outline/gender-hermaphrodite.svg | 2 +- icons/outline/gender-intergender.svg | 2 +- icons/outline/gender-male.svg | 2 +- icons/outline/gender-neutrois.svg | 2 +- icons/outline/gender-third.svg | 4 +- icons/outline/gender-transgender.svg | 2 +- icons/outline/gender-trasvesti.svg | 2 +- icons/outline/geometry.svg | 2 +- icons/outline/ghost-2.svg | 4 +- icons/outline/gift-card.svg | 4 +- icons/outline/gift.svg | 2 +- icons/outline/git-branch-deleted.svg | 4 +- icons/outline/git-branch.svg | 6 +- icons/outline/git-cherry-pick.svg | 2 +- icons/outline/git-commit.svg | 2 +- icons/outline/git-compare.svg | 4 +- icons/outline/git-fork.svg | 6 +- icons/outline/git-merge.svg | 6 +- icons/outline/git-pull-request-closed.svg | 6 +- icons/outline/git-pull-request-draft.svg | 6 +- icons/outline/git-pull-request.svg | 6 +- icons/outline/gizmo.svg | 6 +- icons/outline/glass-champagne.svg | 2 +- icons/outline/glass-cocktail.svg | 2 +- icons/outline/glass-full.svg | 2 +- icons/outline/glass-gin.svg | 2 +- icons/outline/glass.svg | 2 +- icons/outline/go-game.svg | 8 +- icons/outline/gps.svg | 4 +- icons/outline/gradienter.svg | 2 +- icons/outline/grain.svg | 16 +- icons/outline/graph.svg | 2 +- icons/outline/grave-2.svg | 2 +- icons/outline/grave.svg | 2 +- icons/outline/grid-dots.svg | 18 +- icons/outline/grid-pattern.svg | 2 +- icons/outline/grill-fork.svg | 2 +- icons/outline/grill-spatula.svg | 4 +- icons/outline/grill.svg | 4 +- icons/outline/grip-horizontal.svg | 12 +- icons/outline/grip-vertical.svg | 12 +- icons/outline/guitar-pick.svg | 2 +- icons/outline/h-6.svg | 2 +- icons/outline/hammer.svg | 2 +- icons/outline/hand-sanitizer.svg | 2 +- icons/outline/hanger-2.svg | 2 +- icons/outline/hdr.svg | 2 +- icons/outline/headphones-off.svg | 2 +- icons/outline/headphones.svg | 4 +- icons/outline/headset-off.svg | 2 +- icons/outline/headset.svg | 4 +- icons/outline/health-recognition.svg | 2 +- icons/outline/heart-cancel.svg | 2 +- icons/outline/heart-cog.svg | 2 +- icons/outline/heart-pin.svg | 2 +- icons/outline/heart-rate-monitor.svg | 2 +- icons/outline/heart-search.svg | 2 +- icons/outline/heart-star.svg | 2 +- icons/outline/hearts.svg | 2 +- icons/outline/helicopter-landing.svg | 2 +- icons/outline/helicopter.svg | 2 +- icons/outline/helmet.svg | 2 +- icons/outline/help-hexagon.svg | 2 +- icons/outline/help-octagon.svg | 2 +- icons/outline/help-square-rounded.svg | 2 +- icons/outline/help-square.svg | 2 +- icons/outline/help-triangle.svg | 2 +- icons/outline/help.svg | 2 +- icons/outline/hemisphere-plus.svg | 2 +- icons/outline/hemisphere.svg | 2 +- icons/outline/hexagon-3d.svg | 4 +- icons/outline/hexagon-asterisk.svg | 2 +- icons/outline/hexagon-letter-a.svg | 2 +- icons/outline/hexagon-letter-b.svg | 4 +- icons/outline/hexagon-letter-c.svg | 2 +- icons/outline/hexagon-letter-d.svg | 4 +- icons/outline/hexagon-letter-e.svg | 2 +- icons/outline/hexagon-letter-f.svg | 2 +- icons/outline/hexagon-letter-g.svg | 2 +- icons/outline/hexagon-letter-h.svg | 2 +- icons/outline/hexagon-letter-i.svg | 2 +- icons/outline/hexagon-letter-j.svg | 2 +- icons/outline/hexagon-letter-k.svg | 2 +- icons/outline/hexagon-letter-l.svg | 2 +- icons/outline/hexagon-letter-m.svg | 2 +- icons/outline/hexagon-letter-n.svg | 2 +- icons/outline/hexagon-letter-o.svg | 4 +- icons/outline/hexagon-letter-p.svg | 2 +- icons/outline/hexagon-letter-q.svg | 4 +- icons/outline/hexagon-letter-r.svg | 2 +- icons/outline/hexagon-letter-s.svg | 2 +- icons/outline/hexagon-letter-t.svg | 2 +- icons/outline/hexagon-letter-u.svg | 2 +- icons/outline/hexagon-letter-v.svg | 2 +- icons/outline/hexagon-letter-w.svg | 2 +- icons/outline/hexagon-letter-x.svg | 2 +- icons/outline/hexagon-letter-y.svg | 2 +- icons/outline/hexagon-letter-z.svg | 2 +- icons/outline/hexagon-minus.svg | 2 +- icons/outline/hexagon-number-0.svg | 4 +- icons/outline/hexagon-number-1.svg | 2 +- icons/outline/hexagon-number-2.svg | 2 +- icons/outline/hexagon-number-3.svg | 2 +- icons/outline/hexagon-number-4.svg | 2 +- icons/outline/hexagon-number-5.svg | 2 +- icons/outline/hexagon-number-6.svg | 2 +- icons/outline/hexagon-number-7.svg | 2 +- icons/outline/hexagon-number-8.svg | 2 +- icons/outline/hexagon-number-9.svg | 2 +- icons/outline/hexagon-plus.svg | 2 +- icons/outline/hexagon.svg | 2 +- icons/outline/hexagonal-prism.svg | 2 +- icons/outline/hexagonal-pyramid.svg | 2 +- icons/outline/hexagons-off.svg | 2 +- icons/outline/hexagons.svg | 2 +- icons/outline/hierarchy-2.svg | 6 +- icons/outline/hierarchy-3.svg | 12 +- icons/outline/hierarchy-off.svg | 4 +- icons/outline/hierarchy.svg | 6 +- icons/outline/highlight.svg | 2 +- icons/outline/home-2.svg | 2 +- icons/outline/home-cancel.svg | 2 +- icons/outline/home-cog.svg | 2 +- icons/outline/home-dot.svg | 2 +- icons/outline/home-eco.svg | 2 +- icons/outline/home-edit.svg | 2 +- icons/outline/home-hand.svg | 2 +- icons/outline/home-heart.svg | 2 +- icons/outline/home-link.svg | 6 +- icons/outline/home-ribbon.svg | 2 +- icons/outline/home-search.svg | 2 +- icons/outline/home-shield.svg | 2 +- icons/outline/home-star.svg | 2 +- icons/outline/horse.svg | 2 +- icons/outline/horseshoe.svg | 2 +- icons/outline/hospital.svg | 2 +- icons/outline/hotel-service.svg | 2 +- icons/outline/hourglass-empty.svg | 4 +- icons/outline/hourglass-high.svg | 4 +- icons/outline/hourglass-low.svg | 4 +- icons/outline/hourglass.svg | 4 +- icons/outline/http-delete-off.svg | 2 +- icons/outline/http-delete.svg | 2 +- icons/outline/ice-cream-2.svg | 2 +- icons/outline/ice-cream.svg | 2 +- icons/outline/ice-skating.svg | 2 +- icons/outline/icons-off.svg | 2 +- icons/outline/icons.svg | 6 +- icons/outline/id-badge-2.svg | 4 +- icons/outline/id-badge.svg | 4 +- icons/outline/id.svg | 4 +- icons/outline/ikosaedr.svg | 2 +- icons/outline/image-in-picture.svg | 2 +- icons/outline/inbox.svg | 2 +- icons/outline/info-hexagon.svg | 2 +- icons/outline/info-octagon.svg | 2 +- icons/outline/info-square-rounded.svg | 2 +- icons/outline/info-square.svg | 2 +- icons/outline/info-triangle.svg | 2 +- icons/outline/inner-shadow-bottom-left.svg | 2 +- icons/outline/inner-shadow-bottom-right.svg | 2 +- icons/outline/inner-shadow-bottom.svg | 2 +- icons/outline/inner-shadow-left.svg | 2 +- icons/outline/inner-shadow-right.svg | 2 +- icons/outline/inner-shadow-top-left.svg | 2 +- icons/outline/inner-shadow-top-right.svg | 2 +- icons/outline/inner-shadow-top.svg | 2 +- icons/outline/input-search.svg | 2 +- icons/outline/irregular-polyhedron.svg | 2 +- icons/outline/jacket.svg | 2 +- icons/outline/jetpack.svg | 4 +- icons/outline/jewish-star.svg | 2 +- icons/outline/joker.svg | 2 +- icons/outline/json.svg | 2 +- icons/outline/jump-rope.svg | 4 +- icons/outline/karate.svg | 2 +- icons/outline/kayak.svg | 6 +- icons/outline/key.svg | 2 +- icons/outline/keyboard-hide.svg | 2 +- icons/outline/keyboard-show.svg | 2 +- icons/outline/keyboard.svg | 2 +- icons/outline/keyframe-align-center.svg | 2 +- icons/outline/keyframe-align-horizontal.svg | 2 +- icons/outline/keyframe-align-vertical.svg | 2 +- icons/outline/keyframe.svg | 2 +- icons/outline/keyframes.svg | 2 +- icons/outline/ladle.svg | 2 +- icons/outline/lamp-2.svg | 2 +- icons/outline/lamp.svg | 2 +- icons/outline/lasso-off.svg | 2 +- icons/outline/lasso-polygon.svg | 2 +- icons/outline/lasso.svg | 2 +- icons/outline/layers-intersect-2.svg | 4 +- icons/outline/layers-intersect.svg | 4 +- icons/outline/layers-selected-bottom.svg | 4 +- icons/outline/layers-selected.svg | 4 +- icons/outline/layers-subtract.svg | 2 +- icons/outline/layout-2.svg | 8 +- icons/outline/layout-align-bottom.svg | 2 +- icons/outline/layout-align-center.svg | 2 +- icons/outline/layout-align-left.svg | 2 +- icons/outline/layout-align-middle.svg | 2 +- icons/outline/layout-align-right.svg | 2 +- icons/outline/layout-align-top.svg | 2 +- icons/outline/layout-board-split.svg | 2 +- icons/outline/layout-board.svg | 2 +- icons/outline/layout-bottombar-collapse.svg | 2 +- icons/outline/layout-bottombar-expand.svg | 2 +- icons/outline/layout-bottombar-inactive.svg | 2 +- icons/outline/layout-bottombar.svg | 2 +- icons/outline/layout-cards.svg | 4 +- icons/outline/layout-collage.svg | 2 +- icons/outline/layout-columns.svg | 2 +- .../outline/layout-distribute-horizontal.svg | 2 +- icons/outline/layout-distribute-vertical.svg | 2 +- icons/outline/layout-grid-add.svg | 6 +- icons/outline/layout-grid-remove.svg | 6 +- icons/outline/layout-grid.svg | 8 +- icons/outline/layout-kanban.svg | 4 +- icons/outline/layout-list.svg | 4 +- icons/outline/layout-navbar-collapse.svg | 2 +- icons/outline/layout-navbar-expand.svg | 2 +- icons/outline/layout-navbar-inactive.svg | 2 +- icons/outline/layout-navbar.svg | 2 +- icons/outline/layout-off.svg | 2 +- icons/outline/layout-rows.svg | 2 +- icons/outline/layout-sidebar-inactive.svg | 2 +- .../outline/layout-sidebar-left-collapse.svg | 2 +- icons/outline/layout-sidebar-left-expand.svg | 2 +- .../outline/layout-sidebar-right-collapse.svg | 2 +- icons/outline/layout-sidebar-right-expand.svg | 2 +- .../outline/layout-sidebar-right-inactive.svg | 2 +- icons/outline/layout-sidebar-right.svg | 2 +- icons/outline/layout-sidebar.svg | 2 +- icons/outline/layout.svg | 6 +- icons/outline/leaf.svg | 2 +- icons/outline/lemon-2.svg | 2 +- icons/outline/letter-b-small.svg | 2 +- icons/outline/letter-case-lower.svg | 4 +- icons/outline/letter-case-toggle.svg | 2 +- icons/outline/letter-case.svg | 2 +- icons/outline/letter-d-small.svg | 2 +- icons/outline/letter-o-small.svg | 2 +- icons/outline/letter-q-small.svg | 2 +- icons/outline/library-minus.svg | 2 +- icons/outline/library-photo.svg | 2 +- icons/outline/library-plus.svg | 2 +- icons/outline/library.svg | 2 +- icons/outline/lifebuoy.svg | 4 +- icons/outline/lighter.svg | 4 +- icons/outline/line.svg | 4 +- icons/outline/list-details.svg | 4 +- icons/outline/list-letters.svg | 2 +- icons/outline/list-search.svg | 2 +- icons/outline/live-photo.svg | 4 +- icons/outline/load-balancer.svg | 4 +- icons/outline/location-cancel.svg | 2 +- icons/outline/location-cog.svg | 2 +- icons/outline/location-heart.svg | 2 +- icons/outline/location-pin.svg | 2 +- icons/outline/location-search.svg | 2 +- icons/outline/location-star.svg | 2 +- icons/outline/lock-access.svg | 2 +- icons/outline/lock-cancel.svg | 2 +- icons/outline/lock-cog.svg | 2 +- icons/outline/lock-heart.svg | 2 +- icons/outline/lock-open-2.svg | 2 +- icons/outline/lock-open-off.svg | 2 +- icons/outline/lock-open.svg | 4 +- icons/outline/lock-password.svg | 2 +- icons/outline/lock-pin.svg | 2 +- icons/outline/lock-search.svg | 2 +- icons/outline/lock-square-rounded.svg | 4 +- icons/outline/lock-square.svg | 4 +- icons/outline/lock-star.svg | 2 +- icons/outline/lock.svg | 2 +- icons/outline/logic-and.svg | 2 +- icons/outline/logic-buffer.svg | 2 +- icons/outline/logic-nand.svg | 4 +- icons/outline/logic-nor.svg | 4 +- icons/outline/logic-not.svg | 4 +- icons/outline/logic-or.svg | 2 +- icons/outline/logic-xnor.svg | 4 +- icons/outline/logic-xor.svg | 2 +- icons/outline/lollipop.svg | 2 +- icons/outline/luggage.svg | 2 +- icons/outline/lungs.svg | 4 +- icons/outline/macro.svg | 2 +- icons/outline/mail-cancel.svg | 2 +- icons/outline/mail-cog.svg | 2 +- icons/outline/mail-fast.svg | 2 +- icons/outline/mail-heart.svg | 2 +- icons/outline/mail-pin.svg | 2 +- icons/outline/mail-search.svg | 2 +- icons/outline/mail-star.svg | 2 +- icons/outline/mail.svg | 2 +- icons/outline/man.svg | 4 +- icons/outline/manual-gearbox.svg | 10 +- icons/outline/map-2.svg | 2 +- icons/outline/map-cancel.svg | 2 +- icons/outline/map-cog.svg | 2 +- icons/outline/map-east.svg | 2 +- icons/outline/map-heart.svg | 2 +- icons/outline/map-north.svg | 2 +- icons/outline/map-pin-2.svg | 2 +- icons/outline/map-pin-cancel.svg | 2 +- icons/outline/map-pin-cog.svg | 2 +- icons/outline/map-pin-heart.svg | 2 +- icons/outline/map-pin-pin.svg | 2 +- icons/outline/map-pin-search.svg | 2 +- icons/outline/map-pin-star.svg | 2 +- icons/outline/map-pin.svg | 2 +- icons/outline/map-pins.svg | 4 +- icons/outline/map-search.svg | 2 +- icons/outline/map-south.svg | 2 +- icons/outline/map-star.svg | 2 +- icons/outline/map-west.svg | 2 +- icons/outline/markdown.svg | 2 +- icons/outline/mars.svg | 2 +- icons/outline/mask.svg | 4 +- icons/outline/masks-theater.svg | 2 +- icons/outline/massage.svg | 4 +- icons/outline/matchstick.svg | 4 +- icons/outline/math-avg.svg | 2 +- icons/outline/meat-off.svg | 2 +- icons/outline/meat.svg | 2 +- icons/outline/medal-2.svg | 4 +- icons/outline/medal.svg | 2 +- icons/outline/medical-cross.svg | 2 +- icons/outline/medicine-syrup.svg | 2 +- icons/outline/meeple.svg | 2 +- icons/outline/melon.svg | 2 +- icons/outline/message-2-cancel.svg | 2 +- icons/outline/message-2-cog.svg | 2 +- icons/outline/message-2-heart.svg | 2 +- icons/outline/message-2-pin.svg | 2 +- icons/outline/message-2-search.svg | 2 +- icons/outline/message-2-star.svg | 2 +- icons/outline/message-2.svg | 2 +- icons/outline/message-cancel.svg | 2 +- icons/outline/message-chatbot.svg | 2 +- icons/outline/message-circle-cancel.svg | 2 +- icons/outline/message-circle-cog.svg | 2 +- icons/outline/message-circle-heart.svg | 2 +- icons/outline/message-circle-pin.svg | 2 +- icons/outline/message-circle-search.svg | 2 +- icons/outline/message-circle-star.svg | 2 +- icons/outline/message-circle-user.svg | 2 +- icons/outline/message-cog.svg | 2 +- icons/outline/message-dots.svg | 2 +- icons/outline/message-forward.svg | 2 +- icons/outline/message-heart.svg | 2 +- icons/outline/message-pin.svg | 2 +- icons/outline/message-reply.svg | 2 +- icons/outline/message-report.svg | 2 +- icons/outline/message-search.svg | 2 +- icons/outline/message-star.svg | 2 +- icons/outline/message-user.svg | 2 +- icons/outline/message.svg | 2 +- icons/outline/meteor-off.svg | 2 +- icons/outline/meteor.svg | 4 +- icons/outline/metronome.svg | 2 +- icons/outline/michelin-bib-gourmand.svg | 4 +- icons/outline/michelin-star.svg | 2 +- icons/outline/mickey.svg | 6 +- icons/outline/microphone-2.svg | 2 +- icons/outline/microphone.svg | 2 +- icons/outline/microscope.svg | 2 +- icons/outline/microwave.svg | 2 +- icons/outline/military-award.svg | 2 +- icons/outline/military-rank.svg | 2 +- icons/outline/milk-off.svg | 2 +- icons/outline/milk.svg | 4 +- icons/outline/milkshake.svg | 2 +- icons/outline/moneybag-edit.svg | 2 +- icons/outline/moneybag-heart.svg | 2 +- icons/outline/mood-angry.svg | 2 +- icons/outline/mood-annoyed-2.svg | 2 +- icons/outline/mood-annoyed.svg | 2 +- icons/outline/mood-cog.svg | 2 +- icons/outline/mood-confuzed.svg | 2 +- icons/outline/mood-crazy-happy.svg | 2 +- icons/outline/mood-cry.svg | 2 +- icons/outline/mood-edit.svg | 2 +- icons/outline/mood-empty.svg | 2 +- icons/outline/mood-happy.svg | 2 +- icons/outline/mood-heart.svg | 2 +- icons/outline/mood-kid.svg | 2 +- icons/outline/mood-look-left.svg | 2 +- icons/outline/mood-look-right.svg | 2 +- icons/outline/mood-nerd.svg | 6 +- icons/outline/mood-nervous.svg | 2 +- icons/outline/mood-neutral.svg | 2 +- icons/outline/mood-pin.svg | 2 +- icons/outline/mood-sad-2.svg | 2 +- icons/outline/mood-sad-dizzy.svg | 2 +- icons/outline/mood-sad-squint.svg | 2 +- icons/outline/mood-sad.svg | 2 +- icons/outline/mood-search.svg | 2 +- icons/outline/mood-sick.svg | 2 +- icons/outline/mood-silence.svg | 2 +- icons/outline/mood-sing.svg | 4 +- icons/outline/mood-smile-beam.svg | 2 +- icons/outline/mood-smile-dizzy.svg | 2 +- icons/outline/mood-smile.svg | 2 +- icons/outline/mood-surprised.svg | 4 +- icons/outline/mood-tongue-wink-2.svg | 4 +- icons/outline/mood-tongue-wink.svg | 4 +- icons/outline/mood-tongue.svg | 2 +- icons/outline/mood-unamused.svg | 2 +- icons/outline/mood-wink-2.svg | 2 +- icons/outline/mood-wink.svg | 2 +- icons/outline/mood-wrrr.svg | 2 +- icons/outline/mood-xd.svg | 2 +- icons/outline/moon-2.svg | 2 +- icons/outline/moon-stars.svg | 2 +- icons/outline/moon.svg | 2 +- icons/outline/moped.svg | 2 +- icons/outline/motorbike.svg | 4 +- icons/outline/mountain.svg | 2 +- icons/outline/mouse-2.svg | 2 +- icons/outline/mouse.svg | 2 +- icons/outline/moustache.svg | 4 +- icons/outline/movie.svg | 2 +- icons/outline/mushroom.svg | 2 +- icons/outline/music-cancel.svg | 2 +- icons/outline/music-cog.svg | 2 +- icons/outline/music-heart.svg | 2 +- icons/outline/music-off.svg | 2 +- icons/outline/music-pin.svg | 2 +- icons/outline/music-search.svg | 2 +- icons/outline/music-star.svg | 2 +- icons/outline/navigation-cancel.svg | 2 +- icons/outline/navigation-cog.svg | 2 +- icons/outline/navigation-east.svg | 2 +- icons/outline/navigation-heart.svg | 2 +- icons/outline/navigation-north.svg | 2 +- icons/outline/navigation-pin.svg | 2 +- icons/outline/navigation-search.svg | 2 +- icons/outline/navigation-south.svg | 2 +- icons/outline/navigation-star.svg | 2 +- icons/outline/navigation-top.svg | 2 +- icons/outline/navigation-west.svg | 2 +- icons/outline/needle-thread.svg | 2 +- icons/outline/needle.svg | 2 +- icons/outline/nfc.svg | 2 +- icons/outline/no-copyright.svg | 2 +- icons/outline/no-creative-commons.svg | 2 +- icons/outline/no-derivatives.svg | 2 +- icons/outline/notes.svg | 2 +- icons/outline/notification-off.svg | 2 +- icons/outline/notification.svg | 2 +- icons/outline/number-0.svg | 2 +- icons/outline/number-18-small.svg | 2 +- icons/outline/number-28-small.svg | 2 +- icons/outline/number-38-small.svg | 2 +- icons/outline/number-48-small.svg | 2 +- icons/outline/number-58-small.svg | 2 +- icons/outline/number-68-small.svg | 2 +- icons/outline/number-78-small.svg | 2 +- icons/outline/number-8-small.svg | 2 +- icons/outline/number-8.svg | 4 +- icons/outline/number-80-small.svg | 2 +- icons/outline/number-81-small.svg | 2 +- icons/outline/number-82-small.svg | 2 +- icons/outline/number-83-small.svg | 2 +- icons/outline/number-84-small.svg | 2 +- icons/outline/number-85-small.svg | 2 +- icons/outline/number-86-small.svg | 2 +- icons/outline/number-87-small.svg | 2 +- icons/outline/number-88-small.svg | 4 +- icons/outline/number-89-small.svg | 2 +- icons/outline/number-98-small.svg | 2 +- icons/outline/number.svg | 2 +- icons/outline/nut.svg | 4 +- icons/outline/object-scan.svg | 2 +- icons/outline/octagon-minus.svg | 2 +- icons/outline/octagon-plus.svg | 2 +- icons/outline/octagon.svg | 2 +- icons/outline/octahedron.svg | 2 +- icons/outline/old.svg | 2 +- icons/outline/olympics-off.svg | 4 +- icons/outline/olympics.svg | 10 +- icons/outline/outbound.svg | 2 +- icons/outline/outlet.svg | 6 +- icons/outline/oval-vertical.svg | 2 +- icons/outline/oval.svg | 2 +- icons/outline/packages.svg | 4 +- icons/outline/pacman.svg | 4 +- icons/outline/paint-off.svg | 2 +- icons/outline/paint.svg | 4 +- icons/outline/palette-off.svg | 6 +- icons/outline/palette.svg | 6 +- icons/outline/panorama-horizontal.svg | 2 +- icons/outline/panorama-vertical.svg | 2 +- icons/outline/paper-bag.svg | 4 +- icons/outline/parking.svg | 2 +- icons/outline/paw-off.svg | 6 +- icons/outline/paw.svg | 10 +- icons/outline/pdf.svg | 2 +- icons/outline/peace.svg | 2 +- icons/outline/pencil-cancel.svg | 2 +- icons/outline/pencil-cog.svg | 2 +- icons/outline/pencil-heart.svg | 2 +- icons/outline/pencil-pin.svg | 2 +- icons/outline/pencil-question.svg | 2 +- icons/outline/pencil-search.svg | 2 +- icons/outline/pencil-star.svg | 2 +- icons/outline/pentagon-number-0.svg | 4 +- icons/outline/pentagon-number-1.svg | 2 +- icons/outline/pentagon-number-2.svg | 2 +- icons/outline/pentagon-number-3.svg | 2 +- icons/outline/pentagon-number-4.svg | 2 +- icons/outline/pentagon-number-5.svg | 2 +- icons/outline/pentagon-number-6.svg | 2 +- icons/outline/pentagon-number-7.svg | 2 +- icons/outline/pentagon-number-8.svg | 2 +- icons/outline/pentagon-number-9.svg | 2 +- icons/outline/pentagon-x.svg | 2 +- icons/outline/pentagon.svg | 2 +- icons/outline/pentagram.svg | 4 +- icons/outline/percentage-10.svg | 2 +- icons/outline/percentage-20.svg | 2 +- icons/outline/percentage-30.svg | 2 +- icons/outline/percentage-33.svg | 2 +- icons/outline/percentage-40.svg | 2 +- icons/outline/percentage-60.svg | 2 +- icons/outline/percentage-66.svg | 2 +- icons/outline/percentage-70.svg | 2 +- icons/outline/percentage-80.svg | 2 +- icons/outline/percentage-90.svg | 2 +- icons/outline/percentage.svg | 4 +- icons/outline/perfume.svg | 6 +- icons/outline/perspective.svg | 2 +- icons/outline/photo-cancel.svg | 2 +- icons/outline/photo-cog.svg | 2 +- icons/outline/photo-edit.svg | 2 +- icons/outline/photo-heart.svg | 2 +- icons/outline/photo-hexagon.svg | 2 +- icons/outline/photo-pentagon.svg | 2 +- icons/outline/photo-pin.svg | 2 +- icons/outline/photo-search.svg | 2 +- icons/outline/photo-sensor-2.svg | 2 +- icons/outline/photo-sensor-3.svg | 2 +- icons/outline/photo-sensor.svg | 2 +- icons/outline/photo-shield.svg | 2 +- icons/outline/photo-square-rounded.svg | 2 +- icons/outline/photo-star.svg | 2 +- icons/outline/photo-video.svg | 4 +- icons/outline/photo.svg | 2 +- icons/outline/physotherapist.svg | 4 +- icons/outline/piano.svg | 2 +- icons/outline/pick.svg | 2 +- icons/outline/picture-in-picture-off.svg | 2 +- icons/outline/picture-in-picture-on.svg | 2 +- icons/outline/picture-in-picture-top.svg | 2 +- icons/outline/picture-in-picture.svg | 2 +- icons/outline/pig-money.svg | 2 +- icons/outline/pig.svg | 2 +- icons/outline/pills.svg | 4 +- icons/outline/pin-end.svg | 2 +- icons/outline/pin-invoke.svg | 2 +- icons/outline/ping-pong.svg | 2 +- icons/outline/pizza.svg | 2 +- icons/outline/placeholder.svg | 2 +- icons/outline/plane-arrival.svg | 2 +- icons/outline/plane-departure.svg | 2 +- icons/outline/plane-inflight.svg | 2 +- icons/outline/plane-tilt.svg | 2 +- icons/outline/plane.svg | 2 +- icons/outline/planet-off.svg | 1 - icons/outline/planet.svg | 2 +- icons/outline/plant.svg | 2 +- icons/outline/play-basketball.svg | 2 +- icons/outline/play-card-10.svg | 2 +- icons/outline/play-card-8.svg | 2 +- icons/outline/play-card-star.svg | 2 +- icons/outline/play-card.svg | 4 +- icons/outline/play-football.svg | 2 +- icons/outline/play-handball.svg | 2 +- icons/outline/play-volleyball.svg | 2 +- icons/outline/player-eject.svg | 4 +- icons/outline/player-pause.svg | 4 +- icons/outline/player-play.svg | 2 +- icons/outline/player-record.svg | 2 +- icons/outline/player-skip-back.svg | 2 +- icons/outline/player-skip-forward.svg | 2 +- icons/outline/player-stop.svg | 2 +- icons/outline/player-track-next.svg | 4 +- icons/outline/player-track-prev.svg | 4 +- icons/outline/playlist.svg | 2 +- icons/outline/playstation-circle.svg | 4 +- icons/outline/playstation-square.svg | 4 +- icons/outline/playstation-triangle.svg | 4 +- icons/outline/playstation-x.svg | 2 +- icons/outline/plug-connected-x.svg | 4 +- icons/outline/plug-connected.svg | 4 +- icons/outline/plug.svg | 2 +- icons/outline/podium.svg | 2 +- icons/outline/point.svg | 2 +- icons/outline/pointer-cancel.svg | 2 +- icons/outline/pointer-cog.svg | 2 +- icons/outline/pointer-heart.svg | 2 +- icons/outline/pointer-pin.svg | 2 +- icons/outline/pointer-search.svg | 2 +- icons/outline/pointer-star.svg | 2 +- icons/outline/pointer.svg | 2 +- icons/outline/pokeball.svg | 4 +- icons/outline/poker-chip.svg | 4 +- icons/outline/polaroid.svg | 2 +- icons/outline/polygon-off.svg | 8 +- icons/outline/polygon.svg | 8 +- icons/outline/poo.svg | 2 +- icons/outline/pray.svg | 2 +- icons/outline/premium-rights.svg | 2 +- icons/outline/printer.svg | 2 +- icons/outline/prism.svg | 2 +- icons/outline/prison.svg | 2 +- icons/outline/prong.svg | 2 +- icons/outline/propeller.svg | 2 +- icons/outline/pumpkin-scary.svg | 2 +- icons/outline/puzzle-2.svg | 2 +- icons/outline/pyramid.svg | 2 +- icons/outline/qrcode-off.svg | 4 +- icons/outline/qrcode.svg | 6 +- icons/outline/radar-2.svg | 2 +- icons/outline/rainbow.svg | 2 +- icons/outline/rating-12-plus.svg | 2 +- icons/outline/rating-14-plus.svg | 2 +- icons/outline/rating-16-plus.svg | 4 +- icons/outline/rating-18-plus.svg | 6 +- icons/outline/rating-21-plus.svg | 2 +- icons/outline/razor-electric.svg | 4 +- icons/outline/razor.svg | 4 +- icons/outline/receipt-tax.svg | 4 +- icons/outline/record-mail-off.svg | 2 +- icons/outline/record-mail.svg | 4 +- icons/outline/rectangle-rounded-bottom.svg | 2 +- icons/outline/rectangle-rounded-top.svg | 2 +- icons/outline/rectangle-vertical.svg | 2 +- icons/outline/rectangle.svg | 2 +- icons/outline/rectangular-prism.svg | 2 +- icons/outline/refresh-dot.svg | 2 +- icons/outline/regex-off.svg | 2 +- icons/outline/regex.svg | 2 +- icons/outline/registered.svg | 2 +- icons/outline/relation-many-to-many.svg | 2 +- icons/outline/relation-one-to-many.svg | 2 +- icons/outline/relation-one-to-one.svg | 2 +- icons/outline/reorder.svg | 6 +- icons/outline/replace-user.svg | 4 +- icons/outline/replace.svg | 4 +- icons/outline/report-analytics.svg | 2 +- icons/outline/report-medical.svg | 2 +- icons/outline/report-money.svg | 2 +- icons/outline/report-search.svg | 4 +- icons/outline/report.svg | 4 +- icons/outline/reserved-line.svg | 2 +- icons/outline/restore.svg | 2 +- icons/outline/rewind-backward-10.svg | 2 +- icons/outline/rewind-backward-20.svg | 2 +- icons/outline/rewind-backward-30.svg | 2 +- icons/outline/rewind-backward-40.svg | 2 +- icons/outline/rewind-backward-50.svg | 2 +- icons/outline/rewind-backward-60.svg | 2 +- icons/outline/rewind-forward-10.svg | 2 +- icons/outline/rewind-forward-20.svg | 2 +- icons/outline/rewind-forward-30.svg | 2 +- icons/outline/rewind-forward-40.svg | 2 +- icons/outline/rewind-forward-50.svg | 2 +- icons/outline/rewind-forward-60.svg | 2 +- icons/outline/rings.svg | 4 +- icons/outline/road-sign.svg | 2 +- icons/outline/robot-face.svg | 2 +- icons/outline/robot.svg | 2 +- icons/outline/rocket-off.svg | 2 +- icons/outline/rocket.svg | 2 +- icons/outline/roller-skating.svg | 6 +- icons/outline/rollercoaster-off.svg | 2 +- icons/outline/rollercoaster.svg | 4 +- icons/outline/rosette-asterisk.svg | 2 +- icons/outline/rosette-discount.svg | 4 +- icons/outline/rosette-number-0.svg | 2 +- icons/outline/rotate-3d.svg | 2 +- icons/outline/rotate-dot.svg | 2 +- icons/outline/route-2.svg | 2 +- icons/outline/route-off.svg | 4 +- icons/outline/route-square-2.svg | 4 +- icons/outline/route-square.svg | 4 +- icons/outline/route.svg | 2 +- icons/outline/router.svg | 2 +- icons/outline/row-insert-bottom.svg | 2 +- icons/outline/row-insert-top.svg | 2 +- icons/outline/row-remove.svg | 2 +- icons/outline/rss.svg | 2 +- icons/outline/rubber-stamp.svg | 2 +- icons/outline/ruler-2.svg | 2 +- icons/outline/ruler-3.svg | 2 +- icons/outline/ruler-measure-2.svg | 2 +- icons/outline/ruler-measure.svg | 2 +- icons/outline/run.svg | 2 +- icons/outline/rv-truck.svg | 6 +- icons/outline/s-turn-down.svg | 2 +- icons/outline/s-turn-left.svg | 2 +- icons/outline/s-turn-right.svg | 2 +- icons/outline/s-turn-up.svg | 2 +- icons/outline/salad.svg | 2 +- icons/outline/salt.svg | 2 +- icons/outline/satellite.svg | 2 +- icons/outline/sausage.svg | 2 +- icons/outline/scale-outline.svg | 4 +- icons/outline/scan-position.svg | 2 +- icons/outline/schema-off.svg | 4 +- icons/outline/schema.svg | 8 +- icons/outline/school-bell.svg | 2 +- icons/outline/scissors-off.svg | 2 +- icons/outline/scissors.svg | 4 +- icons/outline/scooter-electric.svg | 4 +- icons/outline/scooter.svg | 4 +- icons/outline/scoreboard.svg | 4 +- icons/outline/scuba-diving-tank.svg | 6 +- icons/outline/scuba-mask.svg | 2 +- icons/outline/sdk.svg | 2 +- icons/outline/search.svg | 2 +- icons/outline/section-sign.svg | 2 +- icons/outline/section.svg | 2 +- icons/outline/select-all.svg | 2 +- icons/outline/select.svg | 2 +- icons/outline/send-2.svg | 2 +- icons/outline/seo.svg | 2 +- icons/outline/server-2.svg | 4 +- icons/outline/server-bolt.svg | 2 +- icons/outline/server-cog.svg | 4 +- icons/outline/server-spark.svg | 2 +- icons/outline/server.svg | 4 +- icons/outline/settings-2.svg | 4 +- icons/outline/settings-automation.svg | 4 +- icons/outline/settings-cancel.svg | 2 +- icons/outline/settings-cog.svg | 2 +- icons/outline/settings-heart.svg | 2 +- icons/outline/settings-pin.svg | 2 +- icons/outline/settings-search.svg | 2 +- icons/outline/settings-share.svg | 2 +- icons/outline/settings-star.svg | 2 +- icons/outline/settings.svg | 2 +- icons/outline/shadow.svg | 2 +- icons/outline/shape-2.svg | 8 +- icons/outline/shape-3.svg | 8 +- icons/outline/shape-off.svg | 4 +- icons/outline/shape.svg | 8 +- icons/outline/share-3.svg | 2 +- icons/outline/share-off.svg | 4 +- icons/outline/share.svg | 6 +- icons/outline/shareplay.svg | 2 +- icons/outline/shield-cancel.svg | 2 +- icons/outline/shield-cog.svg | 2 +- icons/outline/shield-heart.svg | 2 +- icons/outline/shield-lock.svg | 2 +- icons/outline/shield-pin.svg | 2 +- icons/outline/shield-search.svg | 2 +- icons/outline/shield-star.svg | 2 +- icons/outline/shoe.svg | 2 +- icons/outline/shopping-bag-edit.svg | 2 +- icons/outline/shopping-bag-heart.svg | 2 +- icons/outline/shopping-bag-search.svg | 2 +- icons/outline/shopping-bag.svg | 2 +- icons/outline/shopping-cart-cancel.svg | 2 +- icons/outline/shopping-cart-cog.svg | 2 +- icons/outline/shopping-cart-heart.svg | 2 +- icons/outline/shopping-cart-off.svg | 2 +- icons/outline/shopping-cart-pin.svg | 2 +- icons/outline/shopping-cart-search.svg | 2 +- icons/outline/shopping-cart-star.svg | 2 +- icons/outline/shopping-cart.svg | 4 +- icons/outline/shovel-pitchforks.svg | 2 +- icons/outline/shovel.svg | 2 +- icons/outline/shredder.svg | 2 +- icons/outline/sign-left.svg | 2 +- icons/outline/sign-right.svg | 2 +- icons/outline/sitemap-off.svg | 2 +- icons/outline/sitemap.svg | 6 +- icons/outline/skateboard-off.svg | 2 +- icons/outline/skateboard.svg | 4 +- icons/outline/skateboarding.svg | 4 +- icons/outline/skew-x.svg | 2 +- icons/outline/skew-y.svg | 2 +- icons/outline/skull.svg | 6 +- icons/outline/sleigh.svg | 2 +- icons/outline/slideshow.svg | 2 +- icons/outline/smoking.svg | 2 +- icons/outline/snowman.svg | 2 +- icons/outline/soccer-field.svg | 8 +- icons/outline/social-off.svg | 4 +- icons/outline/social.svg | 8 +- icons/outline/sock.svg | 2 +- icons/outline/sofa.svg | 2 +- icons/outline/solar-electricity.svg | 2 +- icons/outline/solar-panel-2.svg | 2 +- icons/outline/solar-panel.svg | 2 +- icons/outline/sort-0-9.svg | 2 +- icons/outline/sort-9-0.svg | 2 +- icons/outline/sort-ascending-2.svg | 3 +- icons/outline/sort-ascending-numbers.svg | 4 +- icons/outline/sort-ascending-shapes.svg | 4 +- icons/outline/sort-ascending-small-big.svg | 4 +- icons/outline/sort-descending-2.svg | 3 +- icons/outline/sort-descending-numbers.svg | 4 +- icons/outline/sort-descending-shapes.svg | 4 +- icons/outline/sort-descending-small-big.svg | 4 +- icons/outline/soup.svg | 2 +- icons/outline/spade.svg | 2 +- icons/outline/sparkles.svg | 2 +- icons/outline/speakerphone.svg | 2 +- icons/outline/speedboat.svg | 2 +- icons/outline/sphere.svg | 2 +- icons/outline/spider.svg | 4 +- icons/outline/sport-billard.svg | 6 +- icons/outline/spray.svg | 2 +- icons/outline/spy-off.svg | 2 +- icons/outline/spy.svg | 4 +- icons/outline/sql.svg | 2 +- icons/outline/square-arrow-down.svg | 2 +- icons/outline/square-arrow-left.svg | 2 +- icons/outline/square-arrow-right.svg | 2 +- icons/outline/square-arrow-up.svg | 2 +- icons/outline/square-asterisk.svg | 2 +- icons/outline/square-check.svg | 2 +- icons/outline/square-chevron-down.svg | 2 +- icons/outline/square-chevron-left.svg | 2 +- icons/outline/square-chevron-right.svg | 2 +- icons/outline/square-chevron-up.svg | 2 +- icons/outline/square-chevrons-down.svg | 2 +- icons/outline/square-chevrons-left.svg | 2 +- icons/outline/square-chevrons-right.svg | 2 +- icons/outline/square-chevrons-up.svg | 2 +- icons/outline/square-dashed.svg | 2 +- icons/outline/square-dot.svg | 4 +- icons/outline/square-f0.svg | 4 +- icons/outline/square-f1.svg | 2 +- icons/outline/square-f2.svg | 2 +- icons/outline/square-f3.svg | 2 +- icons/outline/square-f4.svg | 2 +- icons/outline/square-f5.svg | 2 +- icons/outline/square-f6.svg | 2 +- icons/outline/square-f7.svg | 2 +- icons/outline/square-f8.svg | 2 +- icons/outline/square-f9.svg | 2 +- icons/outline/square-forbid-2.svg | 2 +- icons/outline/square-forbid.svg | 2 +- icons/outline/square-half.svg | 2 +- icons/outline/square-key.svg | 4 +- icons/outline/square-letter-a.svg | 2 +- icons/outline/square-letter-b.svg | 4 +- icons/outline/square-letter-c.svg | 2 +- icons/outline/square-letter-d.svg | 4 +- icons/outline/square-letter-e.svg | 2 +- icons/outline/square-letter-f.svg | 2 +- icons/outline/square-letter-g.svg | 2 +- icons/outline/square-letter-h.svg | 2 +- icons/outline/square-letter-i.svg | 2 +- icons/outline/square-letter-j.svg | 2 +- icons/outline/square-letter-k.svg | 2 +- icons/outline/square-letter-l.svg | 2 +- icons/outline/square-letter-m.svg | 2 +- icons/outline/square-letter-n.svg | 2 +- icons/outline/square-letter-o.svg | 4 +- icons/outline/square-letter-p.svg | 2 +- icons/outline/square-letter-q.svg | 4 +- icons/outline/square-letter-r.svg | 2 +- icons/outline/square-letter-s.svg | 2 +- icons/outline/square-letter-t.svg | 2 +- icons/outline/square-letter-u.svg | 2 +- icons/outline/square-letter-v.svg | 2 +- icons/outline/square-letter-w.svg | 2 +- icons/outline/square-letter-x.svg | 2 +- icons/outline/square-letter-y.svg | 2 +- icons/outline/square-letter-z.svg | 2 +- icons/outline/square-minus.svg | 2 +- icons/outline/square-number-0.svg | 4 +- icons/outline/square-number-1.svg | 2 +- icons/outline/square-number-2.svg | 2 +- icons/outline/square-number-3.svg | 2 +- icons/outline/square-number-4.svg | 2 +- icons/outline/square-number-5.svg | 2 +- icons/outline/square-number-6.svg | 2 +- icons/outline/square-number-7.svg | 2 +- icons/outline/square-number-8.svg | 2 +- icons/outline/square-number-9.svg | 2 +- icons/outline/square-percentage.svg | 2 +- icons/outline/square-plus.svg | 2 +- icons/outline/square-rotated-asterisk.svg | 2 +- icons/outline/square-rotated-forbid-2.svg | 2 +- icons/outline/square-rotated-forbid.svg | 2 +- icons/outline/square-rotated.svg | 2 +- icons/outline/square-rounded-arrow-down.svg | 2 +- icons/outline/square-rounded-arrow-left.svg | 2 +- icons/outline/square-rounded-arrow-right.svg | 2 +- icons/outline/square-rounded-arrow-up.svg | 2 +- icons/outline/square-rounded-check.svg | 2 +- icons/outline/square-rounded-chevron-down.svg | 2 +- icons/outline/square-rounded-chevron-left.svg | 2 +- .../outline/square-rounded-chevron-right.svg | 2 +- icons/outline/square-rounded-chevron-up.svg | 2 +- .../outline/square-rounded-chevrons-down.svg | 2 +- .../outline/square-rounded-chevrons-left.svg | 2 +- .../outline/square-rounded-chevrons-right.svg | 2 +- icons/outline/square-rounded-chevrons-up.svg | 2 +- icons/outline/square-rounded-letter-a.svg | 2 +- icons/outline/square-rounded-letter-b.svg | 4 +- icons/outline/square-rounded-letter-c.svg | 2 +- icons/outline/square-rounded-letter-d.svg | 4 +- icons/outline/square-rounded-letter-e.svg | 2 +- icons/outline/square-rounded-letter-f.svg | 2 +- icons/outline/square-rounded-letter-g.svg | 2 +- icons/outline/square-rounded-letter-h.svg | 2 +- icons/outline/square-rounded-letter-i.svg | 2 +- icons/outline/square-rounded-letter-j.svg | 2 +- icons/outline/square-rounded-letter-k.svg | 2 +- icons/outline/square-rounded-letter-l.svg | 2 +- icons/outline/square-rounded-letter-m.svg | 2 +- icons/outline/square-rounded-letter-n.svg | 2 +- icons/outline/square-rounded-letter-o.svg | 4 +- icons/outline/square-rounded-letter-p.svg | 2 +- icons/outline/square-rounded-letter-q.svg | 4 +- icons/outline/square-rounded-letter-r.svg | 2 +- icons/outline/square-rounded-letter-s.svg | 2 +- icons/outline/square-rounded-letter-t.svg | 2 +- icons/outline/square-rounded-letter-u.svg | 2 +- icons/outline/square-rounded-letter-v.svg | 2 +- icons/outline/square-rounded-letter-w.svg | 2 +- icons/outline/square-rounded-letter-x.svg | 2 +- icons/outline/square-rounded-letter-y.svg | 2 +- icons/outline/square-rounded-letter-z.svg | 2 +- icons/outline/square-rounded-minus.svg | 2 +- icons/outline/square-rounded-number-0.svg | 4 +- icons/outline/square-rounded-number-1.svg | 2 +- icons/outline/square-rounded-number-2.svg | 2 +- icons/outline/square-rounded-number-3.svg | 2 +- icons/outline/square-rounded-number-4.svg | 2 +- icons/outline/square-rounded-number-5.svg | 2 +- icons/outline/square-rounded-number-6.svg | 2 +- icons/outline/square-rounded-number-7.svg | 2 +- icons/outline/square-rounded-number-8.svg | 2 +- icons/outline/square-rounded-number-9.svg | 2 +- icons/outline/square-rounded-percentage.svg | 2 +- icons/outline/square-rounded-plus.svg | 2 +- icons/outline/square-rounded-x.svg | 2 +- icons/outline/square-rounded.svg | 2 +- icons/outline/square-x.svg | 2 +- icons/outline/square.svg | 2 +- icons/outline/squares-diagonal.svg | 2 +- icons/outline/squares-selected.svg | 4 +- icons/outline/squares.svg | 2 +- icons/outline/stack-back.svg | 4 +- icons/outline/stack-backward.svg | 2 +- icons/outline/stack-middle.svg | 2 +- icons/outline/star-half.svg | 2 +- icons/outline/star.svg | 2 +- icons/outline/stars-off.svg | 2 +- icons/outline/stars.svg | 6 +- icons/outline/status-change.svg | 4 +- icons/outline/steam.svg | 8 +- icons/outline/steering-wheel.svg | 4 +- icons/outline/step-into.svg | 2 +- icons/outline/step-out.svg | 2 +- icons/outline/stereo-glasses.svg | 2 +- icons/outline/stethoscope-off.svg | 2 +- icons/outline/stethoscope.svg | 4 +- icons/outline/sticker-2.svg | 2 +- icons/outline/stopwatch.svg | 2 +- icons/outline/storm.svg | 4 +- icons/outline/stretching.svg | 2 +- icons/outline/submarine.svg | 2 +- icons/outline/subtask.svg | 4 +- icons/outline/subtitles-edit.svg | 2 +- icons/outline/subtitles.svg | 2 +- icons/outline/sun-high.svg | 2 +- icons/outline/sun-low.svg | 2 +- icons/outline/sun.svg | 2 +- icons/outline/swimming.svg | 2 +- icons/outline/swipe-down.svg | 2 +- icons/outline/swipe-left.svg | 2 +- icons/outline/swipe-right.svg | 2 +- icons/outline/swipe-up.svg | 2 +- icons/outline/swipe.svg | 2 +- icons/outline/sword.svg | 2 +- icons/outline/swords.svg | 2 +- icons/outline/table-alias.svg | 2 +- icons/outline/table-column.svg | 2 +- icons/outline/table-dashed.svg | 2 +- icons/outline/table-heart.svg | 2 +- icons/outline/table-options.svg | 2 +- icons/outline/table-row.svg | 2 +- icons/outline/table.svg | 2 +- icons/outline/tag-minus.svg | 2 +- icons/outline/tag-plus.svg | 2 +- icons/outline/tag-starred.svg | 6 +- icons/outline/tag.svg | 4 +- icons/outline/tags.svg | 2 +- icons/outline/tank.svg | 2 +- icons/outline/target-arrow.svg | 4 +- icons/outline/target.svg | 6 +- icons/outline/tax-euro.svg | 2 +- icons/outline/tax-pound.svg | 2 +- icons/outline/tax.svg | 2 +- icons/outline/teapot.svg | 2 +- icons/outline/telescope.svg | 2 +- icons/outline/temperature-celsius.svg | 2 +- icons/outline/temperature-fahrenheit.svg | 2 +- icons/outline/template-off.svg | 2 +- icons/outline/template.svg | 4 +- icons/outline/terminal-2.svg | 2 +- icons/outline/test-pipe.svg | 2 +- icons/outline/text-caption.svg | 2 +- icons/outline/text-resize.svg | 8 +- icons/outline/theater.svg | 2 +- icons/outline/thermometer.svg | 2 +- icons/outline/tic-tac.svg | 4 +- icons/outline/tie.svg | 2 +- icons/outline/tilt-shift.svg | 2 +- icons/outline/time-duration-0.svg | 2 +- icons/outline/time-duration-10.svg | 2 +- icons/outline/time-duration-30.svg | 2 +- icons/outline/time-duration-60.svg | 2 +- icons/outline/time-duration-90.svg | 2 +- icons/outline/timeline-event-exclamation.svg | 4 +- icons/outline/timeline-event-minus.svg | 4 +- icons/outline/timeline-event-plus.svg | 4 +- icons/outline/timeline-event-text.svg | 4 +- icons/outline/timeline-event-x.svg | 4 +- icons/outline/timeline-event.svg | 4 +- icons/outline/timeline.svg | 8 +- icons/outline/timezone.svg | 2 +- icons/outline/tip-jar-euro.svg | 2 +- icons/outline/tip-jar-pound.svg | 2 +- icons/outline/tip-jar.svg | 2 +- icons/outline/tir.svg | 4 +- icons/outline/toggle-left.svg | 4 +- icons/outline/toggle-right.svg | 4 +- icons/outline/toilet-paper.svg | 2 +- icons/outline/toml.svg | 2 +- icons/outline/tools-kitchen-2.svg | 2 +- icons/outline/tools-kitchen-3.svg | 2 +- icons/outline/tools-kitchen-off.svg | 2 +- icons/outline/tools-kitchen.svg | 6 +- icons/outline/tooltip.svg | 4 +- icons/outline/topology-bus.svg | 6 +- icons/outline/topology-complex.svg | 10 +- icons/outline/topology-full-hierarchy.svg | 10 +- icons/outline/topology-full.svg | 8 +- icons/outline/topology-ring-2.svg | 6 +- icons/outline/topology-ring-3.svg | 8 +- icons/outline/topology-ring.svg | 8 +- icons/outline/topology-star-2.svg | 10 +- icons/outline/topology-star-3.svg | 14 +- icons/outline/topology-star-ring-2.svg | 10 +- icons/outline/topology-star-ring-3.svg | 14 +- icons/outline/topology-star-ring.svg | 10 +- icons/outline/topology-star.svg | 10 +- icons/outline/tournament.svg | 8 +- icons/outline/tower.svg | 2 +- icons/outline/tractor.svg | 4 +- icons/outline/traffic-lights-off.svg | 2 +- icons/outline/traffic-lights.svg | 8 +- icons/outline/transaction-bitcoin.svg | 4 +- icons/outline/transaction-dollar.svg | 4 +- icons/outline/transaction-euro.svg | 4 +- icons/outline/transaction-pound.svg | 4 +- icons/outline/transaction-rupee.svg | 4 +- icons/outline/transaction-yen.svg | 4 +- icons/outline/transaction-yuan.svg | 4 +- icons/outline/transform-point-bottom-left.svg | 8 +- .../outline/transform-point-bottom-right.svg | 8 +- icons/outline/transform-point-top-left.svg | 8 +- icons/outline/transform-point-top-right.svg | 8 +- icons/outline/transform-point.svg | 8 +- icons/outline/transition-bottom.svg | 2 +- icons/outline/transition-left.svg | 2 +- icons/outline/transition-right.svg | 2 +- icons/outline/transition-top.svg | 2 +- icons/outline/tree.svg | 2 +- icons/outline/trees.svg | 2 +- icons/outline/trekking.svg | 2 +- icons/outline/triangle-inverted.svg | 2 +- icons/outline/triangle-minus.svg | 2 +- icons/outline/triangle-plus.svg | 2 +- icons/outline/triangle-square-circle.svg | 6 +- icons/outline/triangle.svg | 2 +- icons/outline/triangles.svg | 4 +- icons/outline/trolley.svg | 4 +- icons/outline/trophy-off.svg | 4 +- icons/outline/trophy.svg | 4 +- icons/outline/trowel.svg | 4 +- icons/outline/truck-delivery.svg | 4 +- icons/outline/truck-loading.svg | 6 +- icons/outline/truck-off.svg | 2 +- icons/outline/truck-return.svg | 4 +- icons/outline/truck.svg | 4 +- icons/outline/typeface.svg | 2 +- icons/outline/uhd.svg | 2 +- icons/outline/umbrella-2.svg | 2 +- icons/outline/umbrella-closed-2.svg | 2 +- icons/outline/umbrella-closed.svg | 2 +- icons/outline/umbrella.svg | 2 +- icons/outline/universe.svg | 6 +- icons/outline/urgent.svg | 2 +- icons/outline/usb.svg | 8 +- icons/outline/user-cancel.svg | 2 +- icons/outline/user-circle.svg | 4 +- icons/outline/user-cog.svg | 2 +- icons/outline/user-edit.svg | 2 +- icons/outline/user-heart.svg | 2 +- icons/outline/user-hexagon.svg | 4 +- icons/outline/user-pentagon.svg | 4 +- icons/outline/user-pin.svg | 2 +- icons/outline/user-search.svg | 2 +- icons/outline/user-shield.svg | 2 +- icons/outline/user-square-rounded.svg | 4 +- icons/outline/user-square.svg | 2 +- icons/outline/user-star.svg | 2 +- icons/outline/users.svg | 2 +- icons/outline/ux-circle.svg | 2 +- icons/outline/vaccine-bottle.svg | 2 +- icons/outline/vacuum-cleaner.svg | 4 +- icons/outline/vector-bezier-2.svg | 8 +- icons/outline/vector-bezier-arc.svg | 8 +- icons/outline/vector-bezier-circle.svg | 8 +- icons/outline/vector-bezier.svg | 10 +- icons/outline/vector-off.svg | 4 +- icons/outline/vector-spline.svg | 4 +- icons/outline/vector-triangle-off.svg | 2 +- icons/outline/vector-triangle.svg | 6 +- icons/outline/vector.svg | 8 +- icons/outline/venus.svg | 2 +- icons/outline/versions.svg | 2 +- icons/outline/video-minus.svg | 4 +- icons/outline/video-plus.svg | 4 +- icons/outline/video.svg | 4 +- icons/outline/view-360-number.svg | 2 +- icons/outline/view-360.svg | 6 +- icons/outline/viewfinder.svg | 2 +- icons/outline/vinyl.svg | 4 +- icons/outline/virus-search.svg | 2 +- icons/outline/virus.svg | 2 +- icons/outline/vocabulary.svg | 2 +- icons/outline/walk.svg | 2 +- icons/outline/wall.svg | 2 +- icons/outline/wallpaper-off.svg | 2 +- icons/outline/wallpaper.svg | 2 +- icons/outline/wash-dry-1.svg | 4 +- icons/outline/wash-dry-2.svg | 4 +- icons/outline/wash-dry-3.svg | 4 +- icons/outline/wash-dry-a.svg | 2 +- icons/outline/wash-dry-dip.svg | 2 +- icons/outline/wash-dry-f.svg | 2 +- icons/outline/wash-dry-flat.svg | 2 +- icons/outline/wash-dry-hang.svg | 2 +- icons/outline/wash-dry-p.svg | 2 +- icons/outline/wash-dry-shade.svg | 2 +- icons/outline/wash-dry-w.svg | 2 +- icons/outline/wash-dry.svg | 2 +- icons/outline/wash-dryclean.svg | 2 +- icons/outline/wash-eco.svg | 2 +- icons/outline/wash-hand.svg | 2 +- icons/outline/wash-machine.svg | 4 +- icons/outline/wash-tumble-dry.svg | 4 +- icons/outline/waterpolo.svg | 2 +- icons/outline/weight.svg | 4 +- icons/outline/wheat-off.svg | 2 +- icons/outline/wheat.svg | 4 +- icons/outline/wheel.svg | 4 +- icons/outline/wheelchair-off.svg | 2 +- icons/outline/wheelchair.svg | 4 +- icons/outline/whirl.svg | 2 +- icons/outline/windmill-off.svg | 2 +- icons/outline/windmill.svg | 8 +- icons/outline/window-maximize.svg | 2 +- icons/outline/window-minimize.svg | 2 +- icons/outline/window.svg | 2 +- icons/outline/wiper-wash.svg | 2 +- icons/outline/wiper.svg | 2 +- icons/outline/woman.svg | 4 +- icons/outline/wood.svg | 2 +- icons/outline/world-cancel.svg | 2 +- icons/outline/world-cog.svg | 2 +- icons/outline/world-heart.svg | 2 +- icons/outline/world-latitude.svg | 2 +- icons/outline/world-longitude.svg | 2 +- icons/outline/world-pin.svg | 2 +- icons/outline/world-search.svg | 2 +- icons/outline/world-star.svg | 2 +- icons/outline/wrecking-ball.svg | 6 +- icons/outline/writing-sign.svg | 2 +- icons/outline/writing.svg | 2 +- icons/outline/xbox-a.svg | 2 +- icons/outline/xbox-b.svg | 2 +- icons/outline/xbox-x.svg | 2 +- icons/outline/xbox-y.svg | 2 +- icons/outline/xd.svg | 2 +- icons/outline/yin-yang.svg | 6 +- icons/outline/yoga.svg | 2 +- icons/outline/zeppelin.svg | 2 +- icons/outline/zodiac-cancer.svg | 4 +- icons/outline/zodiac-capricorn.svg | 2 +- icons/outline/zodiac-leo.svg | 4 +- icons/outline/zodiac-taurus.svg | 2 +- icons/outline/zoom-cancel.svg | 2 +- icons/outline/zoom-check.svg | 2 +- icons/outline/zoom-code.svg | 2 +- icons/outline/zoom-exclamation.svg | 2 +- icons/outline/zoom-in-area.svg | 2 +- icons/outline/zoom-in.svg | 2 +- icons/outline/zoom-money.svg | 2 +- icons/outline/zoom-out-area.svg | 2 +- icons/outline/zoom-out.svg | 2 +- icons/outline/zoom-question.svg | 2 +- icons/outline/zoom.svg | 2 +- package.json | 16 +- .../icons-webfont/.build/build-outline.mjs | 176 -- .../icons-webfont/.build/build-utilities.mjs | 73 - .../icons-webfont/.build/build-webfont.mjs | 100 +- packages/icons-webfont/.build/fix-outline.mjs | 94 - packages/icons-webfont/.build/iconfont.html | 12 +- packages/icons-webfont/.build/iconfont.scss | 22 +- packages/icons-webfont/.build/utilities.mjs | 391 +++ packages/icons-webfont/.gitignore | 4 +- packages/icons-webfont/package.json | 29 +- pnpm-lock.yaml | 2560 ++++++++++------- 2450 files changed, 5526 insertions(+), 4862 deletions(-) rename icons/outline/{brand-adobe-premier.svg => brand-adobe-premiere.svg} (93%) delete mode 100644 packages/icons-webfont/.build/build-outline.mjs delete mode 100644 packages/icons-webfont/.build/build-utilities.mjs delete mode 100644 packages/icons-webfont/.build/fix-outline.mjs create mode 100644 packages/icons-webfont/.build/utilities.mjs diff --git a/.build/helpers.mjs b/.build/helpers.mjs index bfb7d4520..2528cb96f 100644 --- a/.build/helpers.mjs +++ b/.build/helpers.mjs @@ -14,6 +14,12 @@ import { globSync } from 'glob'; import { exec } from 'child_process'; import slash from 'slash'; +export const strokes = { + 200: 1, + 300: 1.5, + 400: 2, +} + export const iconTemplate = (type) => type === 'outline' ? ` { export const getAllIcons = (withContent = false, withObject = false) => { let icons = {}; - const limit = process.env['ICONS_LIMIT'] || Infinity; + const limit = process.env['ICONS_LIMIT'] ? parseInt(process.env['ICONS_LIMIT'], 10) : Infinity; types.forEach((type) => { icons[type] = globSync(slash(path.join(ICONS_SRC_DIR, `${type}/*.svg`))) diff --git a/.build/optimize.mjs b/.build/optimize.mjs index 5cc347ea3..6c4be7eef 100644 --- a/.build/optimize.mjs +++ b/.build/optimize.mjs @@ -24,8 +24,8 @@ types.forEach(type => { .replace(//g, function (f, x1, y1, x2, y2) { return `` }) - .replace(//g, function (f, cx, cy, r) { - return `` + .replace(/]*)?\/>/g, function (f, cx, cy, r, attrs) { + return `` }) .replace(//g, function (f, cx, cy, rx) { return `` @@ -33,8 +33,8 @@ types.forEach(type => { .replace(//g, function (f, cx, cy, rx, ry) { return `` }) - .replace(//g, function (f, width, height, x, y, rx) { - return `` + .replace(//g, function (f, width, height, x, y, attrs) { + return `` }) .replace(//g, function (f, x, y, rx, width, height) { return `` @@ -58,7 +58,6 @@ types.forEach(type => { return ` ``) .replace(/ 0\./g, ' .') @@ -69,7 +68,20 @@ types.forEach(type => { }) .replace(/d="m/g, 'd="M') .replace(/([Aa])\s?([0-9.]+)[\s,]([0-9.]+)[\s,]([0-9.]+)[\s,]?([0-1])[\s,]?([0-1])[\s,]?(-?[0-9.]+)[\s,]?(-?[0-9.]+)/gi, '$1$2 $3 $4 $5 $6 $7 $8') + .replace(/]*d=["']([^"']*?)a([\d.]+)\s+([\d.]+)\s([01])\s([01])\s([01]+)\s([0-9.-]+)\s([0-9.-]+)a\2\s+\3\s+([01])\s+([01])\s([01]+)\s([0-9.-]+)\s([0-9.-]+)z([^"']*?)["']\s+\/>/g, function (match, d, rx, ry, flag1, flag2, extra1, x1, y1, flag3, flag4, extra2, x2, y2, afterZ) { + return `` + }) + .replace(/]*d=["']([^"']*?)M([0-9.-]+)\s([0-9.-]+)m([0-9.-]+)\s([0-9.-]+)([^"']*?)["'](.*)?\/>/g, function (match, d, x1, y1, x2, y2, afterM, attrs) { + return `` + }) .replace(/\n\s+\n+/g, '\n') + .replace(/ ``) + .replace(/h0/g, (f, h) => ``) + + return `]+>/, iconTemplate(type)) diff --git a/.build/validate-icons.mjs b/.build/validate-icons.mjs index 5afc8aeee..501111ee5 100644 --- a/.build/validate-icons.mjs +++ b/.build/validate-icons.mjs @@ -39,6 +39,71 @@ types.forEach(type => { error = true } + if (iconContent.includes('M0 0h24v24H0z')) { + console.log(`⛔️ Icon \`${iconName}\` contains empty rectangle path \`M0 0h24v24H0z\``) + error = true + } + + // Check for SVG elements that should be converted to path + const invalidElements = [' iconContent.includes(el)) + if (foundInvalidElements.length > 0) { + console.log(`⛔️ Icon \`${iconName}\` contains elements that should be converted to path: ${foundInvalidElements.join(', ')}`) + error = true + } + + // Check for rectangle paths that end with 'z' (should not have closing 'z') + // Rectangle paths should have two arc commands next to each other with the same size (rx and ry) + const rectanglePathRegex = /]*d=["']([^"']*?)a([\d.]+)\s+([\d.]+)\s+[01]\s+[01]\s([0-9.-]+)\s([0-9.-]+)\s[0-9.-]+a\2\s+\3\s+[01]\s+[01]\s[0-9.-]+\s([0-9.-]+)\s([0-9.-]+)z([^"']*?)["']\s+\/>/g + if (rectanglePathRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains rectangle path that ends with 'z' (should not have closing 'z')`) + error = true + } + + // Check for path with 'z' followed by h/v/H/V command (invalid pattern) + const invalidZCommandRegex = /]*d=["']([^"']*?)z[hvHV]([^"']*?)["']\s+\/>/g + if (invalidZCommandRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains path with 'z' followed by h/v/H/V command (invalid pattern)`) + error = true + } + + // Check for path with 'm' (relative move) after 'M' (absolute move) + const invalidMAfterMRegex = /]*d=["']([^"']*?)M[0-9.-]\s[0-9.-]*?m([^"']*?)["']/g + if (invalidMAfterMRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains path with 'm' (relative move) after 'M' (absolute move)`) + error = true + } + + // Check for path with 'Z' (uppercase) - disallow Z from path + if (type === 'outline') { + const invalidZRegex = /]*d=["'][^"']*Z[^"']*["']\s+\/>/gi + if (invalidZRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains path with 'Z'`) + error = true + } + } + + // Check for empty path d="" + const emptyPathRegex = /]*d=["']\s*["']/g + if (emptyPathRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains empty path d=""`) + error = true + } + + // Check for v0 or h0 (forbidden, but v0.1, h0.5 etc. are allowed) + const forbiddenV0H0Regex = /]*d="[^"']*[hv]0(?!\.\d)[^"']*"/g + if (forbiddenV0H0Regex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains forbidden v0 or h0`) + error = true + } + + // Check for path with only M command (empty path) + const onlyMRegex = /]*d=["']\s*[Mm][\s0-9.-]+\s*["']/g + if (onlyMRegex.test(iconContent)) { + console.log(`⛔️ Icon \`${iconName}\` contains path with only M command (empty path)`) + error = true + } + try { const { data } = parseMatter(icon) diff --git a/.gitignore b/.gitignore index 6f6b86e59..45bdd91c0 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ package-lock.json Gemfile.lock packages-zip/* .DS_Store -icons-outlined/ github src/_icons/test.svg src/test.svg diff --git a/aliases.json b/aliases.json index 6ae59cc29..2ead74826 100644 --- a/aliases.json +++ b/aliases.json @@ -56,7 +56,8 @@ "mood-suprised": "mood-surprised", "circle-dashed-letter-letter-v": "circle-dashed-letter-v", "seeding": "seedling", - "seeding-off": "seedling-off" + "seeding-off": "seedling-off", + "brand-adobe-premier": "brand-adobe-premiere" }, "filled": { "discount-check": "rosette-discount-check", diff --git a/icons/filled/accessible.svg b/icons/filled/accessible.svg index b07612c32..de55b1b23 100644 --- a/icons/filled/accessible.svg +++ b/icons/filled/accessible.svg @@ -9,5 +9,5 @@ unicode: "f6ea" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/archive.svg b/icons/filled/archive.svg index 95de19264..4aa0d12cf 100644 --- a/icons/filled/archive.svg +++ b/icons/filled/archive.svg @@ -9,6 +9,6 @@ unicode: "fa82" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/bounce-left.svg b/icons/filled/bounce-left.svg index 28320fd87..423152b1b 100644 --- a/icons/filled/bounce-left.svg +++ b/icons/filled/bounce-left.svg @@ -10,5 +10,5 @@ unicode: "fb20" fill="currentColor" > - + diff --git a/icons/filled/bounce-right.svg b/icons/filled/bounce-right.svg index 82ee83070..67682406a 100644 --- a/icons/filled/bounce-right.svg +++ b/icons/filled/bounce-right.svg @@ -10,5 +10,5 @@ unicode: "fb21" fill="currentColor" > - + diff --git a/icons/filled/circle-key.svg b/icons/filled/circle-key.svg index a0835bf08..d767f33ac 100644 --- a/icons/filled/circle-key.svg +++ b/icons/filled/circle-key.svg @@ -9,5 +9,5 @@ unicode: "f706" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/circle-plus.svg b/icons/filled/circle-plus.svg index 2f1f9f18f..a7d84ba67 100644 --- a/icons/filled/circle-plus.svg +++ b/icons/filled/circle-plus.svg @@ -9,5 +9,5 @@ version: "3.5" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/columns-3.svg b/icons/filled/columns-3.svg index 3db0a441e..b1816cd71 100644 --- a/icons/filled/columns-3.svg +++ b/icons/filled/columns-3.svg @@ -10,6 +10,6 @@ version: "3.34" fill="currentColor" > - + diff --git a/icons/filled/compass.svg b/icons/filled/compass.svg index cbeba672e..608678108 100644 --- a/icons/filled/compass.svg +++ b/icons/filled/compass.svg @@ -9,5 +9,5 @@ unicode: "fd10" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/credit-card.svg b/icons/filled/credit-card.svg index 9fee16629..503ceccfc 100644 --- a/icons/filled/credit-card.svg +++ b/icons/filled/credit-card.svg @@ -9,5 +9,5 @@ unicode: "fd11" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-1.svg b/icons/filled/dice-1.svg index 19f64d4b3..40f514854 100644 --- a/icons/filled/dice-1.svg +++ b/icons/filled/dice-1.svg @@ -9,5 +9,5 @@ unicode: "f73e" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-2.svg b/icons/filled/dice-2.svg index e1a6724e1..0e546ec36 100644 --- a/icons/filled/dice-2.svg +++ b/icons/filled/dice-2.svg @@ -9,5 +9,5 @@ unicode: "f73f" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-3.svg b/icons/filled/dice-3.svg index 7a06362c8..34a87d7f1 100644 --- a/icons/filled/dice-3.svg +++ b/icons/filled/dice-3.svg @@ -9,5 +9,5 @@ unicode: "f740" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-4.svg b/icons/filled/dice-4.svg index 8eefd55a5..e7193f194 100644 --- a/icons/filled/dice-4.svg +++ b/icons/filled/dice-4.svg @@ -9,5 +9,5 @@ unicode: "f741" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-5.svg b/icons/filled/dice-5.svg index da1c8b2da..3df16f107 100644 --- a/icons/filled/dice-5.svg +++ b/icons/filled/dice-5.svg @@ -9,5 +9,5 @@ unicode: "f742" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice-6.svg b/icons/filled/dice-6.svg index f56764b2a..6aa82d03a 100644 --- a/icons/filled/dice-6.svg +++ b/icons/filled/dice-6.svg @@ -9,5 +9,5 @@ unicode: "f743" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/dice.svg b/icons/filled/dice.svg index 627c54e47..09b852bff 100644 --- a/icons/filled/dice.svg +++ b/icons/filled/dice.svg @@ -9,5 +9,5 @@ unicode: "f744" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/eye.svg b/icons/filled/eye.svg index e53df730f..2215a2166 100644 --- a/icons/filled/eye.svg +++ b/icons/filled/eye.svg @@ -9,5 +9,5 @@ unicode: "f679" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/layout-board-split.svg b/icons/filled/layout-board-split.svg index e9af9679e..893f54c14 100644 --- a/icons/filled/layout-board-split.svg +++ b/icons/filled/layout-board-split.svg @@ -11,7 +11,7 @@ version: "3.34" > - + diff --git a/icons/filled/map-pin.svg b/icons/filled/map-pin.svg index 369d64c97..4d1140d0d 100644 --- a/icons/filled/map-pin.svg +++ b/icons/filled/map-pin.svg @@ -9,5 +9,5 @@ unicode: "f680" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/section.svg b/icons/filled/section.svg index 21727037f..001213065 100644 --- a/icons/filled/section.svg +++ b/icons/filled/section.svg @@ -9,5 +9,5 @@ version: "3.0" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/settings.svg b/icons/filled/settings.svg index cae813b2c..905d9ede2 100644 --- a/icons/filled/settings.svg +++ b/icons/filled/settings.svg @@ -9,5 +9,5 @@ unicode: "f69e" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/shopping-cart.svg b/icons/filled/shopping-cart.svg index 78e0f7da1..0ca8e74fb 100644 --- a/icons/filled/shopping-cart.svg +++ b/icons/filled/shopping-cart.svg @@ -9,5 +9,5 @@ unicode: "fc3f" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/trophy.svg b/icons/filled/trophy.svg index 51b2ee88d..acc6ceabd 100644 --- a/icons/filled/trophy.svg +++ b/icons/filled/trophy.svg @@ -9,5 +9,5 @@ unicode: "f6af" viewBox="0 0 24 24" fill="currentColor" > - + diff --git a/icons/filled/yin-yang.svg b/icons/filled/yin-yang.svg index 143cc5281..7c1a35160 100644 --- a/icons/filled/yin-yang.svg +++ b/icons/filled/yin-yang.svg @@ -9,6 +9,6 @@ unicode: "f785" viewBox="0 0 24 24" fill="currentColor" > - - + + diff --git a/icons/outline/a-b-2.svg b/icons/outline/a-b-2.svg index ed046f121..84e7cfe58 100644 --- a/icons/outline/a-b-2.svg +++ b/icons/outline/a-b-2.svg @@ -15,8 +15,8 @@ unicode: "f25f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/accessible.svg b/icons/outline/accessible.svg index e8f3a13e5..9e7bb68b7 100644 --- a/icons/outline/accessible.svg +++ b/icons/outline/accessible.svg @@ -15,7 +15,7 @@ unicode: "eba9" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/ad-2.svg b/icons/outline/ad-2.svg index f3bb0488f..1e1b93770 100644 --- a/icons/outline/ad-2.svg +++ b/icons/outline/ad-2.svg @@ -17,7 +17,7 @@ unicode: "ef1f" > - + diff --git a/icons/outline/ad-circle.svg b/icons/outline/ad-circle.svg index f0ac9df2e..d7d6beb86 100644 --- a/icons/outline/ad-circle.svg +++ b/icons/outline/ad-circle.svg @@ -15,8 +15,8 @@ unicode: "f79e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/ad.svg b/icons/outline/ad.svg index 4674ebc77..9c78c5cae 100644 --- a/icons/outline/ad.svg +++ b/icons/outline/ad.svg @@ -15,7 +15,7 @@ unicode: "ea02" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/address-book.svg b/icons/outline/address-book.svg index 3500e34d5..35728ca56 100644 --- a/icons/outline/address-book.svg +++ b/icons/outline/address-book.svg @@ -15,9 +15,9 @@ unicode: "f021" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/adjustments-alt.svg b/icons/outline/adjustments-alt.svg index 5c303d824..12908579e 100644 --- a/icons/outline/adjustments-alt.svg +++ b/icons/outline/adjustments-alt.svg @@ -15,13 +15,13 @@ unicode: "ec37" stroke-linecap="round" stroke-linejoin="round" > - + - + - + diff --git a/icons/outline/adjustments-cancel.svg b/icons/outline/adjustments-cancel.svg index 913c1e63f..20ff9ede1 100644 --- a/icons/outline/adjustments-cancel.svg +++ b/icons/outline/adjustments-cancel.svg @@ -24,6 +24,6 @@ unicode: "f7fc" - + diff --git a/icons/outline/adjustments-cog.svg b/icons/outline/adjustments-cog.svg index ce62c7aa8..8153f1037 100644 --- a/icons/outline/adjustments-cog.svg +++ b/icons/outline/adjustments-cog.svg @@ -24,7 +24,7 @@ unicode: "f7ff" - + diff --git a/icons/outline/adjustments-heart.svg b/icons/outline/adjustments-heart.svg index d4fe22890..889d000aa 100644 --- a/icons/outline/adjustments-heart.svg +++ b/icons/outline/adjustments-heart.svg @@ -22,5 +22,5 @@ unicode: "f803" - + diff --git a/icons/outline/adjustments-horizontal.svg b/icons/outline/adjustments-horizontal.svg index a1a552bc6..ccc771d33 100644 --- a/icons/outline/adjustments-horizontal.svg +++ b/icons/outline/adjustments-horizontal.svg @@ -15,13 +15,13 @@ unicode: "ec38" stroke-linecap="round" stroke-linejoin="round" > - + - + - + diff --git a/icons/outline/adjustments-pin.svg b/icons/outline/adjustments-pin.svg index ddccae256..828458dcc 100644 --- a/icons/outline/adjustments-pin.svg +++ b/icons/outline/adjustments-pin.svg @@ -24,6 +24,6 @@ unicode: "f806" - + diff --git a/icons/outline/adjustments-search.svg b/icons/outline/adjustments-search.svg index 180ec4a7b..918d74b58 100644 --- a/icons/outline/adjustments-search.svg +++ b/icons/outline/adjustments-search.svg @@ -23,6 +23,6 @@ unicode: "f809" - + diff --git a/icons/outline/adjustments-star.svg b/icons/outline/adjustments-star.svg index c22ca4804..5f0e0423a 100644 --- a/icons/outline/adjustments-star.svg +++ b/icons/outline/adjustments-star.svg @@ -21,6 +21,6 @@ unicode: "f80b" - + diff --git a/icons/outline/aerial-lift.svg b/icons/outline/aerial-lift.svg index ab7618cae..c0ef5854f 100644 --- a/icons/outline/aerial-lift.svg +++ b/icons/outline/aerial-lift.svg @@ -15,5 +15,8 @@ unicode: "edfe" stroke-linecap="round" stroke-linejoin="round" > - + + + + diff --git a/icons/outline/affiliate.svg b/icons/outline/affiliate.svg index ab2a674d3..7f918dcf5 100644 --- a/icons/outline/affiliate.svg +++ b/icons/outline/affiliate.svg @@ -17,8 +17,8 @@ unicode: "edff" > - - - - + + + + diff --git a/icons/outline/air-balloon.svg b/icons/outline/air-balloon.svg index 8b961b1b1..ad1cabc27 100644 --- a/icons/outline/air-balloon.svg +++ b/icons/outline/air-balloon.svg @@ -15,7 +15,7 @@ unicode: "f4a6" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/air-conditioning-disabled.svg b/icons/outline/air-conditioning-disabled.svg index 729cbdc43..36657f7d3 100644 --- a/icons/outline/air-conditioning-disabled.svg +++ b/icons/outline/air-conditioning-disabled.svg @@ -15,6 +15,6 @@ unicode: "f542" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/air-conditioning.svg b/icons/outline/air-conditioning.svg index 8a2b49d00..ea679bdb3 100644 --- a/icons/outline/air-conditioning.svg +++ b/icons/outline/air-conditioning.svg @@ -18,6 +18,6 @@ unicode: "f3a2" - + diff --git a/icons/outline/air-traffic-control.svg b/icons/outline/air-traffic-control.svg index ad4e0b620..3f3f0e755 100644 --- a/icons/outline/air-traffic-control.svg +++ b/icons/outline/air-traffic-control.svg @@ -17,7 +17,7 @@ unicode: "fb01" > - + diff --git a/icons/outline/alarm-minus.svg b/icons/outline/alarm-minus.svg index fec6dcc70..4224e2981 100644 --- a/icons/outline/alarm-minus.svg +++ b/icons/outline/alarm-minus.svg @@ -15,7 +15,7 @@ unicode: "f630" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alarm-plus.svg b/icons/outline/alarm-plus.svg index 8b8907933..2cf2353ee 100644 --- a/icons/outline/alarm-plus.svg +++ b/icons/outline/alarm-plus.svg @@ -15,7 +15,7 @@ unicode: "f631" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alarm-smoke.svg b/icons/outline/alarm-smoke.svg index 0092ccce4..5e1db40d0 100644 --- a/icons/outline/alarm-smoke.svg +++ b/icons/outline/alarm-smoke.svg @@ -16,7 +16,7 @@ version: "3.23" stroke-linejoin="round" > - + diff --git a/icons/outline/alarm-snooze.svg b/icons/outline/alarm-snooze.svg index 2a2a484c3..a9e805f9e 100644 --- a/icons/outline/alarm-snooze.svg +++ b/icons/outline/alarm-snooze.svg @@ -15,7 +15,7 @@ unicode: "f632" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alarm.svg b/icons/outline/alarm.svg index dda835e42..89f98f892 100644 --- a/icons/outline/alarm.svg +++ b/icons/outline/alarm.svg @@ -15,7 +15,7 @@ unicode: "ea04" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/album.svg b/icons/outline/album.svg index eeb5d91e4..fdf844cf7 100644 --- a/icons/outline/album.svg +++ b/icons/outline/album.svg @@ -15,6 +15,6 @@ unicode: "f022" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alert-hexagon.svg b/icons/outline/alert-hexagon.svg index 646c0cd73..9ab7ca30a 100644 --- a/icons/outline/alert-hexagon.svg +++ b/icons/outline/alert-hexagon.svg @@ -15,7 +15,7 @@ category: System stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alert-octagon.svg b/icons/outline/alert-octagon.svg index da606b8d2..259abce00 100644 --- a/icons/outline/alert-octagon.svg +++ b/icons/outline/alert-octagon.svg @@ -15,7 +15,7 @@ unicode: "ecc6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alert-square-rounded.svg b/icons/outline/alert-square-rounded.svg index af13c4f0b..e5e4c3a86 100644 --- a/icons/outline/alert-square-rounded.svg +++ b/icons/outline/alert-square-rounded.svg @@ -15,7 +15,7 @@ category: System stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alert-square.svg b/icons/outline/alert-square.svg index 421f97a47..a1f52e345 100644 --- a/icons/outline/alert-square.svg +++ b/icons/outline/alert-square.svg @@ -15,7 +15,7 @@ category: System stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alert-triangle.svg b/icons/outline/alert-triangle.svg index a5517f277..8d9332ef3 100644 --- a/icons/outline/alert-triangle.svg +++ b/icons/outline/alert-triangle.svg @@ -16,6 +16,6 @@ unicode: "ea06" stroke-linejoin="round" > - + diff --git a/icons/outline/alien.svg b/icons/outline/alien.svg index 2341e897d..46f195a0d 100644 --- a/icons/outline/alien.svg +++ b/icons/outline/alien.svg @@ -16,7 +16,7 @@ unicode: "ebde" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-bottom-center.svg b/icons/outline/align-box-bottom-center.svg index 8f1ee4370..8715240b4 100644 --- a/icons/outline/align-box-bottom-center.svg +++ b/icons/outline/align-box-bottom-center.svg @@ -15,7 +15,7 @@ unicode: "f530" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-bottom-left.svg b/icons/outline/align-box-bottom-left.svg index bec02b1f2..d6f36be00 100644 --- a/icons/outline/align-box-bottom-left.svg +++ b/icons/outline/align-box-bottom-left.svg @@ -15,7 +15,7 @@ unicode: "f531" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-bottom-right.svg b/icons/outline/align-box-bottom-right.svg index eab68656d..2b5d7e4e2 100644 --- a/icons/outline/align-box-bottom-right.svg +++ b/icons/outline/align-box-bottom-right.svg @@ -15,7 +15,7 @@ unicode: "f532" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-center-bottom.svg b/icons/outline/align-box-center-bottom.svg index bf36bbf85..8e5dd1ace 100644 --- a/icons/outline/align-box-center-bottom.svg +++ b/icons/outline/align-box-center-bottom.svg @@ -15,7 +15,7 @@ unicode: "facb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-center-middle.svg b/icons/outline/align-box-center-middle.svg index 9afb7f076..c9983a8a8 100644 --- a/icons/outline/align-box-center-middle.svg +++ b/icons/outline/align-box-center-middle.svg @@ -15,7 +15,7 @@ unicode: "f79f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-center-stretch.svg b/icons/outline/align-box-center-stretch.svg index 9f67b6829..de987afa8 100644 --- a/icons/outline/align-box-center-stretch.svg +++ b/icons/outline/align-box-center-stretch.svg @@ -15,7 +15,7 @@ unicode: "facc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-center-top.svg b/icons/outline/align-box-center-top.svg index 9a3467b2a..a0f2c937c 100644 --- a/icons/outline/align-box-center-top.svg +++ b/icons/outline/align-box-center-top.svg @@ -15,7 +15,7 @@ unicode: "facd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-left-bottom.svg b/icons/outline/align-box-left-bottom.svg index 3fc097dd0..3a2954d20 100644 --- a/icons/outline/align-box-left-bottom.svg +++ b/icons/outline/align-box-left-bottom.svg @@ -15,7 +15,7 @@ unicode: "f533" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-left-middle.svg b/icons/outline/align-box-left-middle.svg index d357a44ea..76355774e 100644 --- a/icons/outline/align-box-left-middle.svg +++ b/icons/outline/align-box-left-middle.svg @@ -15,7 +15,7 @@ unicode: "f534" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-left-stretch.svg b/icons/outline/align-box-left-stretch.svg index c9be04f01..3bd9e7d76 100644 --- a/icons/outline/align-box-left-stretch.svg +++ b/icons/outline/align-box-left-stretch.svg @@ -15,7 +15,7 @@ unicode: "face" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-left-top.svg b/icons/outline/align-box-left-top.svg index 51a45f43d..21c81d0d1 100644 --- a/icons/outline/align-box-left-top.svg +++ b/icons/outline/align-box-left-top.svg @@ -15,7 +15,7 @@ unicode: "f535" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-right-bottom.svg b/icons/outline/align-box-right-bottom.svg index 777ac67c7..ed3d6d8b5 100644 --- a/icons/outline/align-box-right-bottom.svg +++ b/icons/outline/align-box-right-bottom.svg @@ -15,7 +15,7 @@ unicode: "f536" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-right-middle.svg b/icons/outline/align-box-right-middle.svg index d5e96a577..4cb8ca988 100644 --- a/icons/outline/align-box-right-middle.svg +++ b/icons/outline/align-box-right-middle.svg @@ -16,7 +16,7 @@ unicode: "f537" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-right-stretch.svg b/icons/outline/align-box-right-stretch.svg index 524f7d036..410795281 100644 --- a/icons/outline/align-box-right-stretch.svg +++ b/icons/outline/align-box-right-stretch.svg @@ -16,7 +16,7 @@ unicode: "facf" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-right-top.svg b/icons/outline/align-box-right-top.svg index 3fbb22086..1e33e7ca8 100644 --- a/icons/outline/align-box-right-top.svg +++ b/icons/outline/align-box-right-top.svg @@ -15,7 +15,7 @@ unicode: "f538" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-top-center.svg b/icons/outline/align-box-top-center.svg index 545e06e1c..5fe7558e3 100644 --- a/icons/outline/align-box-top-center.svg +++ b/icons/outline/align-box-top-center.svg @@ -15,7 +15,7 @@ unicode: "f539" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-top-left.svg b/icons/outline/align-box-top-left.svg index d20414789..ad0e11fab 100644 --- a/icons/outline/align-box-top-left.svg +++ b/icons/outline/align-box-top-left.svg @@ -15,7 +15,7 @@ unicode: "f53a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/align-box-top-right.svg b/icons/outline/align-box-top-right.svg index 13fe36d17..2f30018b0 100644 --- a/icons/outline/align-box-top-right.svg +++ b/icons/outline/align-box-top-right.svg @@ -15,7 +15,7 @@ unicode: "f53b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/alphabet-greek.svg b/icons/outline/alphabet-greek.svg index b8e6a60b7..86be21bef 100644 --- a/icons/outline/alphabet-greek.svg +++ b/icons/outline/alphabet-greek.svg @@ -16,6 +16,6 @@ unicode: "f1e0" stroke-linejoin="round" > - + diff --git a/icons/outline/alphabet-korean.svg b/icons/outline/alphabet-korean.svg index 0a5e42d2d..66e36dda7 100644 --- a/icons/outline/alphabet-korean.svg +++ b/icons/outline/alphabet-korean.svg @@ -16,6 +16,6 @@ unicode: "ff2c" stroke-linejoin="round" > - + diff --git a/icons/outline/alphabet-latin.svg b/icons/outline/alphabet-latin.svg index ff4525d7f..8346da632 100644 --- a/icons/outline/alphabet-latin.svg +++ b/icons/outline/alphabet-latin.svg @@ -17,5 +17,5 @@ unicode: "f1e1" > - + diff --git a/icons/outline/ambulance.svg b/icons/outline/ambulance.svg index 59a6f7735..6699825c5 100644 --- a/icons/outline/ambulance.svg +++ b/icons/outline/ambulance.svg @@ -15,8 +15,8 @@ unicode: "ebf5" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/analyze-off.svg b/icons/outline/analyze-off.svg index f2ff84c08..aa7a1b83d 100644 --- a/icons/outline/analyze-off.svg +++ b/icons/outline/analyze-off.svg @@ -18,7 +18,7 @@ unicode: "f3ba" - + diff --git a/icons/outline/analyze.svg b/icons/outline/analyze.svg index d6617bd16..5eba5a418 100644 --- a/icons/outline/analyze.svg +++ b/icons/outline/analyze.svg @@ -17,7 +17,7 @@ unicode: "f3a3" > - - - + + + diff --git a/icons/outline/anchor.svg b/icons/outline/anchor.svg index 36a1f4623..7a4d2ffdf 100644 --- a/icons/outline/anchor.svg +++ b/icons/outline/anchor.svg @@ -16,5 +16,5 @@ unicode: "eb76" stroke-linejoin="round" > - + diff --git a/icons/outline/aperture.svg b/icons/outline/aperture.svg index a134bfdeb..2cc4fd381 100644 --- a/icons/outline/aperture.svg +++ b/icons/outline/aperture.svg @@ -15,7 +15,7 @@ unicode: "eb58" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/app-window.svg b/icons/outline/app-window.svg index c57a8593c..0bc584ec1 100644 --- a/icons/outline/app-window.svg +++ b/icons/outline/app-window.svg @@ -15,7 +15,7 @@ unicode: "efe6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/apps-off.svg b/icons/outline/apps-off.svg index e50beab34..2029fb20d 100644 --- a/icons/outline/apps-off.svg +++ b/icons/outline/apps-off.svg @@ -17,7 +17,7 @@ unicode: "f0ac" > - + diff --git a/icons/outline/apps.svg b/icons/outline/apps.svg index ca52616a0..a031c5b90 100644 --- a/icons/outline/apps.svg +++ b/icons/outline/apps.svg @@ -15,9 +15,9 @@ unicode: "ebb6" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/archery-arrow.svg b/icons/outline/archery-arrow.svg index da58a8323..a895ef8f6 100644 --- a/icons/outline/archery-arrow.svg +++ b/icons/outline/archery-arrow.svg @@ -15,7 +15,7 @@ unicode: "fc55" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/archive.svg b/icons/outline/archive.svg index 7243406b8..0456360c0 100644 --- a/icons/outline/archive.svg +++ b/icons/outline/archive.svg @@ -15,7 +15,7 @@ unicode: "ea0b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/armchair.svg b/icons/outline/armchair.svg index c5816388b..6e57cc470 100644 --- a/icons/outline/armchair.svg +++ b/icons/outline/armchair.svg @@ -15,7 +15,7 @@ unicode: "ef9e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-autofit-content.svg b/icons/outline/arrow-autofit-content.svg index cbbf2c908..bf673bfb6 100644 --- a/icons/outline/arrow-autofit-content.svg +++ b/icons/outline/arrow-autofit-content.svg @@ -17,7 +17,7 @@ unicode: "ef31" > - + diff --git a/icons/outline/arrow-badge-down.svg b/icons/outline/arrow-badge-down.svg index 0e18c7ba5..98963bf4a 100644 --- a/icons/outline/arrow-badge-down.svg +++ b/icons/outline/arrow-badge-down.svg @@ -15,5 +15,5 @@ unicode: "f60b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-badge-left.svg b/icons/outline/arrow-badge-left.svg index 8aba539fa..183e21b02 100644 --- a/icons/outline/arrow-badge-left.svg +++ b/icons/outline/arrow-badge-left.svg @@ -15,5 +15,5 @@ unicode: "f60c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-badge-right.svg b/icons/outline/arrow-badge-right.svg index 4b9f541e3..579d3c994 100644 --- a/icons/outline/arrow-badge-right.svg +++ b/icons/outline/arrow-badge-right.svg @@ -15,5 +15,5 @@ unicode: "f60d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-badge-up.svg b/icons/outline/arrow-badge-up.svg index 238b0e046..9782ebea4 100644 --- a/icons/outline/arrow-badge-up.svg +++ b/icons/outline/arrow-badge-up.svg @@ -15,5 +15,5 @@ unicode: "f60e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-down-line.svg b/icons/outline/arrow-big-down-line.svg index 02573b876..ab47ec6c9 100644 --- a/icons/outline/arrow-big-down-line.svg +++ b/icons/outline/arrow-big-down-line.svg @@ -15,6 +15,6 @@ unicode: "efe8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-down-lines.svg b/icons/outline/arrow-big-down-lines.svg index bc2cf08be..8a595f6f4 100644 --- a/icons/outline/arrow-big-down-lines.svg +++ b/icons/outline/arrow-big-down-lines.svg @@ -15,7 +15,7 @@ unicode: "efe9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-down.svg b/icons/outline/arrow-big-down.svg index 4c274196f..e4e1ec4d2 100644 --- a/icons/outline/arrow-big-down.svg +++ b/icons/outline/arrow-big-down.svg @@ -15,5 +15,5 @@ unicode: "edda" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-left-line.svg b/icons/outline/arrow-big-left-line.svg index b173109fe..11da7b7ff 100644 --- a/icons/outline/arrow-big-left-line.svg +++ b/icons/outline/arrow-big-left-line.svg @@ -15,6 +15,6 @@ unicode: "efea" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-left-lines.svg b/icons/outline/arrow-big-left-lines.svg index 1f40d655f..6e0c9aa5d 100644 --- a/icons/outline/arrow-big-left-lines.svg +++ b/icons/outline/arrow-big-left-lines.svg @@ -15,7 +15,7 @@ unicode: "efeb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-left.svg b/icons/outline/arrow-big-left.svg index 478568e2f..fda052607 100644 --- a/icons/outline/arrow-big-left.svg +++ b/icons/outline/arrow-big-left.svg @@ -15,5 +15,5 @@ unicode: "eddb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-right-line.svg b/icons/outline/arrow-big-right-line.svg index fb3eef1ca..17b6b9d53 100644 --- a/icons/outline/arrow-big-right-line.svg +++ b/icons/outline/arrow-big-right-line.svg @@ -15,6 +15,6 @@ unicode: "efec" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-right-lines.svg b/icons/outline/arrow-big-right-lines.svg index 032772cea..70d3e4a21 100644 --- a/icons/outline/arrow-big-right-lines.svg +++ b/icons/outline/arrow-big-right-lines.svg @@ -15,7 +15,7 @@ unicode: "efed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-right.svg b/icons/outline/arrow-big-right.svg index 97e62f747..e128a5239 100644 --- a/icons/outline/arrow-big-right.svg +++ b/icons/outline/arrow-big-right.svg @@ -15,5 +15,5 @@ unicode: "eddc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-up-line.svg b/icons/outline/arrow-big-up-line.svg index 7becddf12..406c8cfdd 100644 --- a/icons/outline/arrow-big-up-line.svg +++ b/icons/outline/arrow-big-up-line.svg @@ -15,6 +15,6 @@ unicode: "efee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-up-lines.svg b/icons/outline/arrow-big-up-lines.svg index 181e06753..48e97740a 100644 --- a/icons/outline/arrow-big-up-lines.svg +++ b/icons/outline/arrow-big-up-lines.svg @@ -15,7 +15,7 @@ unicode: "efef" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-big-up.svg b/icons/outline/arrow-big-up.svg index 4248d2da2..38164a206 100644 --- a/icons/outline/arrow-big-up.svg +++ b/icons/outline/arrow-big-up.svg @@ -15,5 +15,5 @@ unicode: "eddd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-down-rhombus.svg b/icons/outline/arrow-down-rhombus.svg index 49d912afc..892113f1d 100644 --- a/icons/outline/arrow-down-rhombus.svg +++ b/icons/outline/arrow-down-rhombus.svg @@ -17,5 +17,5 @@ unicode: "f61d" > - + diff --git a/icons/outline/arrow-down-square.svg b/icons/outline/arrow-down-square.svg index b3e75f666..6e411fafe 100644 --- a/icons/outline/arrow-down-square.svg +++ b/icons/outline/arrow-down-square.svg @@ -17,5 +17,5 @@ unicode: "ed9a" > - + diff --git a/icons/outline/arrow-guide.svg b/icons/outline/arrow-guide.svg index a929a07c3..799fd4aaf 100644 --- a/icons/outline/arrow-guide.svg +++ b/icons/outline/arrow-guide.svg @@ -15,7 +15,7 @@ unicode: "f22a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-left-circle.svg b/icons/outline/arrow-left-circle.svg index 2a2150823..dcb37408e 100644 --- a/icons/outline/arrow-left-circle.svg +++ b/icons/outline/arrow-left-circle.svg @@ -17,5 +17,5 @@ unicode: "ea18" > - + diff --git a/icons/outline/arrow-left-rhombus.svg b/icons/outline/arrow-left-rhombus.svg index f828386ae..be99cca86 100644 --- a/icons/outline/arrow-left-rhombus.svg +++ b/icons/outline/arrow-left-rhombus.svg @@ -17,5 +17,5 @@ unicode: "f61e" > - + diff --git a/icons/outline/arrow-left-square.svg b/icons/outline/arrow-left-square.svg index 01d045b7b..1d2f9cc2a 100644 --- a/icons/outline/arrow-left-square.svg +++ b/icons/outline/arrow-left-square.svg @@ -17,5 +17,5 @@ unicode: "ed9d" > - + diff --git a/icons/outline/arrow-move-down.svg b/icons/outline/arrow-move-down.svg index 90e2526ee..f5a924cf3 100644 --- a/icons/outline/arrow-move-down.svg +++ b/icons/outline/arrow-move-down.svg @@ -17,5 +17,5 @@ unicode: "f2ba" > - + diff --git a/icons/outline/arrow-move-left.svg b/icons/outline/arrow-move-left.svg index d6c13b809..4537351f9 100644 --- a/icons/outline/arrow-move-left.svg +++ b/icons/outline/arrow-move-left.svg @@ -17,5 +17,5 @@ unicode: "f2bb" > - + diff --git a/icons/outline/arrow-move-right.svg b/icons/outline/arrow-move-right.svg index f11c9f365..be4ca113d 100644 --- a/icons/outline/arrow-move-right.svg +++ b/icons/outline/arrow-move-right.svg @@ -17,5 +17,5 @@ unicode: "f2bc" > - + diff --git a/icons/outline/arrow-move-up.svg b/icons/outline/arrow-move-up.svg index e3b6f287f..91aefba2a 100644 --- a/icons/outline/arrow-move-up.svg +++ b/icons/outline/arrow-move-up.svg @@ -17,5 +17,5 @@ unicode: "f2bd" > - + diff --git a/icons/outline/arrow-right-circle.svg b/icons/outline/arrow-right-circle.svg index d102184f7..b762c2f05 100644 --- a/icons/outline/arrow-right-circle.svg +++ b/icons/outline/arrow-right-circle.svg @@ -16,6 +16,6 @@ unicode: "ea1e" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-right-rhombus.svg b/icons/outline/arrow-right-rhombus.svg index cd2e146f7..1917ba91e 100644 --- a/icons/outline/arrow-right-rhombus.svg +++ b/icons/outline/arrow-right-rhombus.svg @@ -17,5 +17,5 @@ unicode: "f61f" > - + diff --git a/icons/outline/arrow-right-square.svg b/icons/outline/arrow-right-square.svg index a87bad112..18d348a47 100644 --- a/icons/outline/arrow-right-square.svg +++ b/icons/outline/arrow-right-square.svg @@ -17,5 +17,5 @@ unicode: "eda2" > - + diff --git a/icons/outline/arrow-rotary-first-left.svg b/icons/outline/arrow-rotary-first-left.svg index 66ca06496..ca96e86f0 100644 --- a/icons/outline/arrow-rotary-first-left.svg +++ b/icons/outline/arrow-rotary-first-left.svg @@ -15,7 +15,7 @@ unicode: "f053" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-first-right.svg b/icons/outline/arrow-rotary-first-right.svg index 414965cfb..3bf2549e4 100644 --- a/icons/outline/arrow-rotary-first-right.svg +++ b/icons/outline/arrow-rotary-first-right.svg @@ -15,7 +15,7 @@ unicode: "f054" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-last-left.svg b/icons/outline/arrow-rotary-last-left.svg index 5372e1124..f230c8c4f 100644 --- a/icons/outline/arrow-rotary-last-left.svg +++ b/icons/outline/arrow-rotary-last-left.svg @@ -15,7 +15,7 @@ unicode: "f055" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-last-right.svg b/icons/outline/arrow-rotary-last-right.svg index 8fe07f6d8..e156d1ebc 100644 --- a/icons/outline/arrow-rotary-last-right.svg +++ b/icons/outline/arrow-rotary-last-right.svg @@ -15,7 +15,7 @@ unicode: "f056" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-left.svg b/icons/outline/arrow-rotary-left.svg index 4f622360a..c87a10a99 100644 --- a/icons/outline/arrow-rotary-left.svg +++ b/icons/outline/arrow-rotary-left.svg @@ -15,7 +15,7 @@ unicode: "f057" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-right.svg b/icons/outline/arrow-rotary-right.svg index 83eda4619..35d6e6f35 100644 --- a/icons/outline/arrow-rotary-right.svg +++ b/icons/outline/arrow-rotary-right.svg @@ -15,7 +15,7 @@ unicode: "f058" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-rotary-straight.svg b/icons/outline/arrow-rotary-straight.svg index e7ee0ef58..0e06d6faf 100644 --- a/icons/outline/arrow-rotary-straight.svg +++ b/icons/outline/arrow-rotary-straight.svg @@ -15,7 +15,7 @@ unicode: "f059" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/arrow-up-rhombus.svg b/icons/outline/arrow-up-rhombus.svg index 04c554fba..1e2bb8a6d 100644 --- a/icons/outline/arrow-up-rhombus.svg +++ b/icons/outline/arrow-up-rhombus.svg @@ -17,5 +17,5 @@ unicode: "f620" > - + diff --git a/icons/outline/arrow-up-square.svg b/icons/outline/arrow-up-square.svg index 07631cf27..6afa55151 100644 --- a/icons/outline/arrow-up-square.svg +++ b/icons/outline/arrow-up-square.svg @@ -17,5 +17,5 @@ unicode: "eda6" > - + diff --git a/icons/outline/artboard.svg b/icons/outline/artboard.svg index 1c857ecd7..353c0c48a 100644 --- a/icons/outline/artboard.svg +++ b/icons/outline/artboard.svg @@ -15,7 +15,7 @@ unicode: "ea2a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/article.svg b/icons/outline/article.svg index 76ca6fefd..0c3ac9fc3 100644 --- a/icons/outline/article.svg +++ b/icons/outline/article.svg @@ -15,7 +15,7 @@ unicode: "f1e2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/aspect-ratio.svg b/icons/outline/aspect-ratio.svg index 32a9a439e..fd3357cc8 100644 --- a/icons/outline/aspect-ratio.svg +++ b/icons/outline/aspect-ratio.svg @@ -15,7 +15,7 @@ unicode: "ed30" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/assembly.svg b/icons/outline/assembly.svg index b233fe751..c979181a6 100644 --- a/icons/outline/assembly.svg +++ b/icons/outline/assembly.svg @@ -15,6 +15,6 @@ unicode: "f24d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/asset.svg b/icons/outline/asset.svg index 8e2805fac..0cd35788d 100644 --- a/icons/outline/asset.svg +++ b/icons/outline/asset.svg @@ -15,10 +15,10 @@ unicode: "f1ce" stroke-linecap="round" stroke-linejoin="round" > - - - + + + - + diff --git a/icons/outline/at.svg b/icons/outline/at.svg index 2ca3aeed0..608bd228b 100644 --- a/icons/outline/at.svg +++ b/icons/outline/at.svg @@ -15,6 +15,6 @@ unicode: "ea2b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/atom-2.svg b/icons/outline/atom-2.svg index 0d7c4e993..909aa8e7e 100644 --- a/icons/outline/atom-2.svg +++ b/icons/outline/atom-2.svg @@ -15,7 +15,7 @@ unicode: "ebdf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/augmented-reality-2.svg b/icons/outline/augmented-reality-2.svg index e31577bac..b6d475acb 100644 --- a/icons/outline/augmented-reality-2.svg +++ b/icons/outline/augmented-reality-2.svg @@ -16,7 +16,7 @@ unicode: "f37e" stroke-linejoin="round" > - + diff --git a/icons/outline/augmented-reality.svg b/icons/outline/augmented-reality.svg index 1a2a850e9..a588d59c5 100644 --- a/icons/outline/augmented-reality.svg +++ b/icons/outline/augmented-reality.svg @@ -20,6 +20,6 @@ unicode: "f023" - + diff --git a/icons/outline/automatic-gearbox.svg b/icons/outline/automatic-gearbox.svg index 5e2baf329..2a76645c1 100644 --- a/icons/outline/automatic-gearbox.svg +++ b/icons/outline/automatic-gearbox.svg @@ -15,9 +15,9 @@ unicode: "fc89" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/automation.svg b/icons/outline/automation.svg index c4be5dc29..76720b9a8 100644 --- a/icons/outline/automation.svg +++ b/icons/outline/automation.svg @@ -17,5 +17,5 @@ version: "3.5" > - + diff --git a/icons/outline/avocado.svg b/icons/outline/avocado.svg index dc093e6c8..501aa6892 100644 --- a/icons/outline/avocado.svg +++ b/icons/outline/avocado.svg @@ -15,6 +15,6 @@ unicode: "fd8e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/award.svg b/icons/outline/award.svg index 72e78c6be..6ff849829 100644 --- a/icons/outline/award.svg +++ b/icons/outline/award.svg @@ -15,7 +15,7 @@ unicode: "ea2c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/axe.svg b/icons/outline/axe.svg index 0d1e8e910..c5b6d1be9 100644 --- a/icons/outline/axe.svg +++ b/icons/outline/axe.svg @@ -16,5 +16,5 @@ unicode: "ef9f" stroke-linejoin="round" > - + diff --git a/icons/outline/baby-bottle.svg b/icons/outline/baby-bottle.svg index 255a45a4c..5c434972b 100644 --- a/icons/outline/baby-bottle.svg +++ b/icons/outline/baby-bottle.svg @@ -17,5 +17,5 @@ unicode: "f5d2" > - + diff --git a/icons/outline/baby-carriage.svg b/icons/outline/baby-carriage.svg index 3ba202178..8b8903517 100644 --- a/icons/outline/baby-carriage.svg +++ b/icons/outline/baby-carriage.svg @@ -15,8 +15,8 @@ unicode: "f05d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/backhoe.svg b/icons/outline/backhoe.svg index 7d177abe9..b48ae21ed 100644 --- a/icons/outline/backhoe.svg +++ b/icons/outline/backhoe.svg @@ -15,12 +15,12 @@ unicode: "ed86" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/backpack.svg b/icons/outline/backpack.svg index df0e654ce..9f3989a74 100644 --- a/icons/outline/backpack.svg +++ b/icons/outline/backpack.svg @@ -15,7 +15,7 @@ unicode: "ef47" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/backspace.svg b/icons/outline/backspace.svg index a7439b597..90caf190e 100644 --- a/icons/outline/backspace.svg +++ b/icons/outline/backspace.svg @@ -15,6 +15,6 @@ unicode: "ea2d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-2k.svg b/icons/outline/badge-2k.svg index 5b55e6b59..d53351049 100644 --- a/icons/outline/badge-2k.svg +++ b/icons/outline/badge-2k.svg @@ -15,7 +15,7 @@ unicode: "100b5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-3d.svg b/icons/outline/badge-3d.svg index c5de486fb..eec5f2968 100644 --- a/icons/outline/badge-3d.svg +++ b/icons/outline/badge-3d.svg @@ -15,7 +15,7 @@ unicode: "f555" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/badge-3k.svg b/icons/outline/badge-3k.svg index 285cb4ea0..3bcbff1d9 100644 --- a/icons/outline/badge-3k.svg +++ b/icons/outline/badge-3k.svg @@ -15,7 +15,7 @@ unicode: "100b4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-4k.svg b/icons/outline/badge-4k.svg index 493fd7e66..14db3a798 100644 --- a/icons/outline/badge-4k.svg +++ b/icons/outline/badge-4k.svg @@ -15,7 +15,7 @@ unicode: "f556" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-5k.svg b/icons/outline/badge-5k.svg index 1726ff437..f85ac399d 100644 --- a/icons/outline/badge-5k.svg +++ b/icons/outline/badge-5k.svg @@ -15,7 +15,7 @@ unicode: "100b3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-8k.svg b/icons/outline/badge-8k.svg index 561712ce8..53b8b9074 100644 --- a/icons/outline/badge-8k.svg +++ b/icons/outline/badge-8k.svg @@ -15,9 +15,9 @@ unicode: "f557" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/badge-ad.svg b/icons/outline/badge-ad.svg index d7fd501f0..990098017 100644 --- a/icons/outline/badge-ad.svg +++ b/icons/outline/badge-ad.svg @@ -15,8 +15,8 @@ unicode: "f558" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/badge-ar.svg b/icons/outline/badge-ar.svg index d6d0850f7..112197b28 100644 --- a/icons/outline/badge-ar.svg +++ b/icons/outline/badge-ar.svg @@ -15,7 +15,7 @@ unicode: "f559" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-cc.svg b/icons/outline/badge-cc.svg index bc7233c36..01b786979 100644 --- a/icons/outline/badge-cc.svg +++ b/icons/outline/badge-cc.svg @@ -15,7 +15,7 @@ unicode: "f55a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-hd.svg b/icons/outline/badge-hd.svg index ad9bcaa08..0c6fd77a2 100644 --- a/icons/outline/badge-hd.svg +++ b/icons/outline/badge-hd.svg @@ -15,8 +15,8 @@ unicode: "f55b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/badge-sd.svg b/icons/outline/badge-sd.svg index 5bbeb475e..d641b0007 100644 --- a/icons/outline/badge-sd.svg +++ b/icons/outline/badge-sd.svg @@ -15,7 +15,7 @@ unicode: "f55c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/badge-tm.svg b/icons/outline/badge-tm.svg index 287ad1260..df4e42dd3 100644 --- a/icons/outline/badge-tm.svg +++ b/icons/outline/badge-tm.svg @@ -15,7 +15,7 @@ unicode: "f55d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-vo.svg b/icons/outline/badge-vo.svg index 11f5d4d11..24637be47 100644 --- a/icons/outline/badge-vo.svg +++ b/icons/outline/badge-vo.svg @@ -15,7 +15,7 @@ unicode: "f55e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/badge-vr.svg b/icons/outline/badge-vr.svg index 9bbe7226c..f140d2804 100644 --- a/icons/outline/badge-vr.svg +++ b/icons/outline/badge-vr.svg @@ -15,7 +15,7 @@ unicode: "f55f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge-wc.svg b/icons/outline/badge-wc.svg index 8bee8770a..a9ce8fe73 100644 --- a/icons/outline/badge-wc.svg +++ b/icons/outline/badge-wc.svg @@ -15,7 +15,7 @@ unicode: "f560" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badge.svg b/icons/outline/badge.svg index 96a5c609f..828bfb532 100644 --- a/icons/outline/badge.svg +++ b/icons/outline/badge.svg @@ -15,5 +15,5 @@ unicode: "efc2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/badges.svg b/icons/outline/badges.svg index 4be5fd33a..e42888d25 100644 --- a/icons/outline/badges.svg +++ b/icons/outline/badges.svg @@ -15,6 +15,6 @@ unicode: "efc3" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/baguette.svg b/icons/outline/baguette.svg index 4e4cf825f..9d51155d4 100644 --- a/icons/outline/baguette.svg +++ b/icons/outline/baguette.svg @@ -15,7 +15,7 @@ unicode: "f3a5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-baseball.svg b/icons/outline/ball-baseball.svg index 716e14287..8a5ab4f14 100644 --- a/icons/outline/ball-baseball.svg +++ b/icons/outline/ball-baseball.svg @@ -15,7 +15,7 @@ unicode: "efa0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-basketball.svg b/icons/outline/ball-basketball.svg index f86e010bc..a54788f03 100644 --- a/icons/outline/ball-basketball.svg +++ b/icons/outline/ball-basketball.svg @@ -15,7 +15,7 @@ unicode: "ec28" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-bowling.svg b/icons/outline/ball-bowling.svg index 65474873d..d264cc07d 100644 --- a/icons/outline/ball-bowling.svg +++ b/icons/outline/ball-bowling.svg @@ -15,7 +15,7 @@ unicode: "ec29" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-football-off.svg b/icons/outline/ball-football-off.svg index 8cff677e5..299907c04 100644 --- a/icons/outline/ball-football-off.svg +++ b/icons/outline/ball-football-off.svg @@ -16,7 +16,7 @@ unicode: "ee05" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-football.svg b/icons/outline/ball-football.svg index bace57a59..9f08ff4ea 100644 --- a/icons/outline/ball-football.svg +++ b/icons/outline/ball-football.svg @@ -15,7 +15,7 @@ unicode: "ee06" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/ball-tennis.svg b/icons/outline/ball-tennis.svg index ed2fe952c..381177bbc 100644 --- a/icons/outline/ball-tennis.svg +++ b/icons/outline/ball-tennis.svg @@ -15,7 +15,7 @@ unicode: "ec2a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ball-volleyball.svg b/icons/outline/ball-volleyball.svg index 58a6d5834..a9f52da8a 100644 --- a/icons/outline/ball-volleyball.svg +++ b/icons/outline/ball-volleyball.svg @@ -15,7 +15,7 @@ unicode: "ec2b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ballpen.svg b/icons/outline/ballpen.svg index 94f83dcc9..d31855219 100644 --- a/icons/outline/ballpen.svg +++ b/icons/outline/ballpen.svg @@ -16,6 +16,6 @@ unicode: "f06e" stroke-linejoin="round" > - + diff --git a/icons/outline/ban.svg b/icons/outline/ban.svg index 49c61462d..22e99e846 100644 --- a/icons/outline/ban.svg +++ b/icons/outline/ban.svg @@ -15,6 +15,6 @@ unicode: "ea2e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/barbell.svg b/icons/outline/barbell.svg index 56689d283..8654dd51f 100644 --- a/icons/outline/barbell.svg +++ b/icons/outline/barbell.svg @@ -17,9 +17,9 @@ unicode: "eff0" > - + - + diff --git a/icons/outline/barcode-off.svg b/icons/outline/barcode-off.svg index 17c3fe480..bd55702b0 100644 --- a/icons/outline/barcode-off.svg +++ b/icons/outline/barcode-off.svg @@ -19,7 +19,7 @@ unicode: "f0b3" - + diff --git a/icons/outline/barcode.svg b/icons/outline/barcode.svg index 05d8a658d..f71ed0636 100644 --- a/icons/outline/barcode.svg +++ b/icons/outline/barcode.svg @@ -19,8 +19,8 @@ unicode: "ebc6" - + - + diff --git a/icons/outline/barrel.svg b/icons/outline/barrel.svg index f347edfa4..430c92e5e 100644 --- a/icons/outline/barrel.svg +++ b/icons/outline/barrel.svg @@ -15,7 +15,7 @@ unicode: "f0b4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/barrier-block.svg b/icons/outline/barrier-block.svg index bbc98ecda..3eac450fc 100644 --- a/icons/outline/barrier-block.svg +++ b/icons/outline/barrier-block.svg @@ -15,7 +15,7 @@ unicode: "f00e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/basket-cancel.svg b/icons/outline/basket-cancel.svg index 131f6ee0b..c5c8cbe2b 100644 --- a/icons/outline/basket-cancel.svg +++ b/icons/outline/basket-cancel.svg @@ -19,6 +19,6 @@ unicode: "fb44" - + diff --git a/icons/outline/basket-cog.svg b/icons/outline/basket-cog.svg index e4f7ee7fe..81d93f4d0 100644 --- a/icons/outline/basket-cog.svg +++ b/icons/outline/basket-cog.svg @@ -19,7 +19,7 @@ unicode: "fb47" - + diff --git a/icons/outline/basket-heart.svg b/icons/outline/basket-heart.svg index 17e2de828..5dbbba0d1 100644 --- a/icons/outline/basket-heart.svg +++ b/icons/outline/basket-heart.svg @@ -19,5 +19,5 @@ unicode: "fb4c" - + diff --git a/icons/outline/basket-pin.svg b/icons/outline/basket-pin.svg index 844418934..25455782f 100644 --- a/icons/outline/basket-pin.svg +++ b/icons/outline/basket-pin.svg @@ -19,6 +19,6 @@ unicode: "fb4f" - + diff --git a/icons/outline/basket-question.svg b/icons/outline/basket-question.svg index 3e279a6b0..a54873946 100644 --- a/icons/outline/basket-question.svg +++ b/icons/outline/basket-question.svg @@ -18,7 +18,7 @@ unicode: "fb51" - + diff --git a/icons/outline/basket-search.svg b/icons/outline/basket-search.svg index 5d67499f4..a06b822a6 100644 --- a/icons/outline/basket-search.svg +++ b/icons/outline/basket-search.svg @@ -19,6 +19,6 @@ unicode: "fb52" - + diff --git a/icons/outline/basket-star.svg b/icons/outline/basket-star.svg index e185f5f9d..be587d094 100644 --- a/icons/outline/basket-star.svg +++ b/icons/outline/basket-star.svg @@ -19,5 +19,5 @@ unicode: "fb54" - + diff --git a/icons/outline/basket.svg b/icons/outline/basket.svg index e1a1edab7..48f9eaba4 100644 --- a/icons/outline/basket.svg +++ b/icons/outline/basket.svg @@ -16,7 +16,7 @@ unicode: "ebe1" stroke-linejoin="round" > - + diff --git a/icons/outline/bat.svg b/icons/outline/bat.svg index a51414b75..328d8d6e3 100644 --- a/icons/outline/bat.svg +++ b/icons/outline/bat.svg @@ -15,6 +15,6 @@ unicode: "f284" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bath.svg b/icons/outline/bath.svg index 5b99ce32b..f6d1728bd 100644 --- a/icons/outline/bath.svg +++ b/icons/outline/bath.svg @@ -15,7 +15,7 @@ unicode: "ef48" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/battery-automotive.svg b/icons/outline/battery-automotive.svg index bcafe78b3..ac6b64011 100644 --- a/icons/outline/battery-automotive.svg +++ b/icons/outline/battery-automotive.svg @@ -15,7 +15,7 @@ unicode: "ee07" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/battery-charging-2.svg b/icons/outline/battery-charging-2.svg index c61387671..eac9518df 100644 --- a/icons/outline/battery-charging-2.svg +++ b/icons/outline/battery-charging-2.svg @@ -16,7 +16,7 @@ unicode: "ef3b" stroke-linejoin="round" > - + diff --git a/icons/outline/battery-eco.svg b/icons/outline/battery-eco.svg index 78b03bbf3..e7a4b0914 100644 --- a/icons/outline/battery-eco.svg +++ b/icons/outline/battery-eco.svg @@ -16,6 +16,6 @@ unicode: "ef3c" stroke-linejoin="round" > - + diff --git a/icons/outline/battery-vertical-charging-2.svg b/icons/outline/battery-vertical-charging-2.svg index b829c8983..a2c7561d2 100644 --- a/icons/outline/battery-vertical-charging-2.svg +++ b/icons/outline/battery-vertical-charging-2.svg @@ -16,7 +16,7 @@ unicode: "ff18" stroke-linejoin="round" > - + diff --git a/icons/outline/battery-vertical-eco.svg b/icons/outline/battery-vertical-eco.svg index c04b55bb3..ea363e1e7 100644 --- a/icons/outline/battery-vertical-eco.svg +++ b/icons/outline/battery-vertical-eco.svg @@ -16,6 +16,6 @@ unicode: "ff16" stroke-linejoin="round" > - + diff --git a/icons/outline/beach.svg b/icons/outline/beach.svg index b577cf051..b86989fae 100644 --- a/icons/outline/beach.svg +++ b/icons/outline/beach.svg @@ -16,7 +16,7 @@ unicode: "ef3d" stroke-linejoin="round" > - + diff --git a/icons/outline/bed-flat.svg b/icons/outline/bed-flat.svg index 7e7f23103..c67811e59 100644 --- a/icons/outline/bed-flat.svg +++ b/icons/outline/bed-flat.svg @@ -15,7 +15,7 @@ unicode: "fca1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/bed.svg b/icons/outline/bed.svg index befc37edf..10346c5dd 100644 --- a/icons/outline/bed.svg +++ b/icons/outline/bed.svg @@ -15,8 +15,8 @@ unicode: "eb5c" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/beer.svg b/icons/outline/beer.svg index da7f2bf7a..d623a0338 100644 --- a/icons/outline/beer.svg +++ b/icons/outline/beer.svg @@ -15,6 +15,6 @@ unicode: "efa1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bell-cancel.svg b/icons/outline/bell-cancel.svg index 8e3d44127..f2b180920 100644 --- a/icons/outline/bell-cancel.svg +++ b/icons/outline/bell-cancel.svg @@ -17,6 +17,6 @@ unicode: "f813" > - + diff --git a/icons/outline/bell-cog.svg b/icons/outline/bell-cog.svg index 0ca68f289..e02050ece 100644 --- a/icons/outline/bell-cog.svg +++ b/icons/outline/bell-cog.svg @@ -16,7 +16,7 @@ unicode: "f816" stroke-linejoin="round" > - + diff --git a/icons/outline/bell-heart.svg b/icons/outline/bell-heart.svg index 964cde963..f7a68b5e9 100644 --- a/icons/outline/bell-heart.svg +++ b/icons/outline/bell-heart.svg @@ -17,5 +17,5 @@ unicode: "f81a" > - + diff --git a/icons/outline/bell-pin.svg b/icons/outline/bell-pin.svg index 02c619901..17ead2521 100644 --- a/icons/outline/bell-pin.svg +++ b/icons/outline/bell-pin.svg @@ -17,6 +17,6 @@ unicode: "f81c" > - + diff --git a/icons/outline/bell-ringing-2.svg b/icons/outline/bell-ringing-2.svg index 27247d6e6..407064944 100644 --- a/icons/outline/bell-ringing-2.svg +++ b/icons/outline/bell-ringing-2.svg @@ -15,6 +15,6 @@ unicode: "ede4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bell-school.svg b/icons/outline/bell-school.svg index 82d55060f..796e20365 100644 --- a/icons/outline/bell-school.svg +++ b/icons/outline/bell-school.svg @@ -15,9 +15,9 @@ unicode: "f05e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/bell-search.svg b/icons/outline/bell-search.svg index 541603338..cef39e696 100644 --- a/icons/outline/bell-search.svg +++ b/icons/outline/bell-search.svg @@ -17,6 +17,6 @@ unicode: "f81e" > - + diff --git a/icons/outline/bell-star.svg b/icons/outline/bell-star.svg index 79767dca9..65c3cbab8 100644 --- a/icons/outline/bell-star.svg +++ b/icons/outline/bell-star.svg @@ -17,5 +17,5 @@ unicode: "f820" > - + diff --git a/icons/outline/bible.svg b/icons/outline/bible.svg index 833efe005..57008c4c4 100644 --- a/icons/outline/bible.svg +++ b/icons/outline/bible.svg @@ -15,7 +15,7 @@ unicode: "efc4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bike-off.svg b/icons/outline/bike-off.svg index 3bffe5b12..9624c50d2 100644 --- a/icons/outline/bike-off.svg +++ b/icons/outline/bike-off.svg @@ -15,9 +15,9 @@ unicode: "f0b8" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/bike.svg b/icons/outline/bike.svg index 39308287c..48794939e 100644 --- a/icons/outline/bike.svg +++ b/icons/outline/bike.svg @@ -15,8 +15,8 @@ unicode: "ea36" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/binary-off.svg b/icons/outline/binary-off.svg index ffa7d6529..595f4176c 100644 --- a/icons/outline/binary-off.svg +++ b/icons/outline/binary-off.svg @@ -17,8 +17,8 @@ unicode: "f3c5" > - - + + diff --git a/icons/outline/binary-tree-2.svg b/icons/outline/binary-tree-2.svg index 2788e4765..68f6cb02f 100644 --- a/icons/outline/binary-tree-2.svg +++ b/icons/outline/binary-tree-2.svg @@ -15,10 +15,10 @@ unicode: "f5d3" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/binary-tree.svg b/icons/outline/binary-tree.svg index 3d074fd93..3a54f2f6f 100644 --- a/icons/outline/binary-tree.svg +++ b/icons/outline/binary-tree.svg @@ -15,11 +15,11 @@ unicode: "f5d4" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/binary.svg b/icons/outline/binary.svg index a2cb3b4e6..f727861c9 100644 --- a/icons/outline/binary.svg +++ b/icons/outline/binary.svg @@ -16,7 +16,7 @@ unicode: "ee08" stroke-linejoin="round" > - - + + diff --git a/icons/outline/binoculars.svg b/icons/outline/binoculars.svg index 941aee801..c6d51b60d 100644 --- a/icons/outline/binoculars.svg +++ b/icons/outline/binoculars.svg @@ -15,11 +15,11 @@ unicode: "fefe" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/biohazard.svg b/icons/outline/biohazard.svg index 31c079f94..2bf0dabef 100644 --- a/icons/outline/biohazard.svg +++ b/icons/outline/biohazard.svg @@ -15,6 +15,6 @@ unicode: "ecb8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/blade.svg b/icons/outline/blade.svg index f4bc032a5..fa971191a 100644 --- a/icons/outline/blade.svg +++ b/icons/outline/blade.svg @@ -15,10 +15,10 @@ unicode: "f4bd" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/blend-mode.svg b/icons/outline/blend-mode.svg index fa4f2c371..c7b68a0ea 100644 --- a/icons/outline/blend-mode.svg +++ b/icons/outline/blend-mode.svg @@ -15,6 +15,6 @@ version: "3.1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/blender.svg b/icons/outline/blender.svg index af1d5fce8..5b4cff93f 100644 --- a/icons/outline/blender.svg +++ b/icons/outline/blender.svg @@ -17,7 +17,7 @@ unicode: "fca2" > - + diff --git a/icons/outline/blocks.svg b/icons/outline/blocks.svg index 50d72dbb6..36ba21a3b 100644 --- a/icons/outline/blocks.svg +++ b/icons/outline/blocks.svg @@ -15,6 +15,6 @@ version: "3.23" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/blur.svg b/icons/outline/blur.svg index 980eefdad..f727db2f1 100644 --- a/icons/outline/blur.svg +++ b/icons/outline/blur.svg @@ -15,7 +15,7 @@ unicode: "ef8c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bmp.svg b/icons/outline/bmp.svg index 2395a8bf8..e275c6f06 100644 --- a/icons/outline/bmp.svg +++ b/icons/outline/bmp.svg @@ -16,6 +16,6 @@ unicode: "f3a6" stroke-linejoin="round" > - + diff --git a/icons/outline/body-scan.svg b/icons/outline/body-scan.svg index 7fc16060b..1df964fb7 100644 --- a/icons/outline/body-scan.svg +++ b/icons/outline/body-scan.svg @@ -19,7 +19,7 @@ unicode: "fca3" - + diff --git a/icons/outline/bold.svg b/icons/outline/bold.svg index 0e6512c65..a212695eb 100644 --- a/icons/outline/bold.svg +++ b/icons/outline/bold.svg @@ -15,6 +15,6 @@ unicode: "eb7b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bomb.svg b/icons/outline/bomb.svg index 8498e6f49..1f50d762b 100644 --- a/icons/outline/bomb.svg +++ b/icons/outline/bomb.svg @@ -15,7 +15,7 @@ unicode: "f59c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bone.svg b/icons/outline/bone.svg index df527a25a..7f2808c24 100644 --- a/icons/outline/bone.svg +++ b/icons/outline/bone.svg @@ -15,5 +15,5 @@ unicode: "edb8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bong.svg b/icons/outline/bong.svg index ce01a4538..ddbae44d4 100644 --- a/icons/outline/bong.svg +++ b/icons/outline/bong.svg @@ -15,7 +15,7 @@ unicode: "f3a7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/book-2.svg b/icons/outline/book-2.svg index e7da382cc..d3464f1b8 100644 --- a/icons/outline/book-2.svg +++ b/icons/outline/book-2.svg @@ -15,7 +15,7 @@ unicode: "efc5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bookmark-edit.svg b/icons/outline/bookmark-edit.svg index f90514dab..1644b7af5 100644 --- a/icons/outline/bookmark-edit.svg +++ b/icons/outline/bookmark-edit.svg @@ -16,5 +16,5 @@ unicode: "fa5e" stroke-linejoin="round" > - + diff --git a/icons/outline/bookmark.svg b/icons/outline/bookmark.svg index b454fb62f..5cc562ce9 100644 --- a/icons/outline/bookmark.svg +++ b/icons/outline/bookmark.svg @@ -15,5 +15,5 @@ unicode: "ea3a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bookmarks.svg b/icons/outline/bookmarks.svg index 680965a81..6515314d4 100644 --- a/icons/outline/bookmarks.svg +++ b/icons/outline/bookmarks.svg @@ -15,6 +15,6 @@ unicode: "ed08" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/books.svg b/icons/outline/books.svg index 608ec43df..13f40f8c5 100644 --- a/icons/outline/books.svg +++ b/icons/outline/books.svg @@ -15,11 +15,11 @@ unicode: "eff2" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/border-all.svg b/icons/outline/border-all.svg index c786a3b25..0939a74cb 100644 --- a/icons/outline/border-all.svg +++ b/icons/outline/border-all.svg @@ -15,7 +15,7 @@ unicode: "ea3b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/border-outer.svg b/icons/outline/border-outer.svg index 561d98be7..ade99b731 100644 --- a/icons/outline/border-outer.svg +++ b/icons/outline/border-outer.svg @@ -15,7 +15,7 @@ unicode: "ea41" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bottle-off.svg b/icons/outline/bottle-off.svg index 0c7ad4dc7..63bcd8e63 100644 --- a/icons/outline/bottle-off.svg +++ b/icons/outline/bottle-off.svg @@ -15,7 +15,7 @@ unicode: "f3c8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bottle.svg b/icons/outline/bottle.svg index 94a70ccfe..702232dcc 100644 --- a/icons/outline/bottle.svg +++ b/icons/outline/bottle.svg @@ -15,7 +15,7 @@ unicode: "ef0b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bounce-left.svg b/icons/outline/bounce-left.svg index 52b4f3db3..af0e2534b 100644 --- a/icons/outline/bounce-left.svg +++ b/icons/outline/bounce-left.svg @@ -16,5 +16,5 @@ unicode: "f59d" stroke-linejoin="round" > - + diff --git a/icons/outline/bounce-right.svg b/icons/outline/bounce-right.svg index 388517470..5de60bcc5 100644 --- a/icons/outline/bounce-right.svg +++ b/icons/outline/bounce-right.svg @@ -16,5 +16,5 @@ unicode: "f59e" stroke-linejoin="round" > - + diff --git a/icons/outline/bow.svg b/icons/outline/bow.svg index 6f597399e..c5b601d19 100644 --- a/icons/outline/bow.svg +++ b/icons/outline/bow.svg @@ -18,5 +18,5 @@ unicode: "f096" - + diff --git a/icons/outline/bowl-chopsticks.svg b/icons/outline/bowl-chopsticks.svg index d25b69c5b..5f2ff9497 100644 --- a/icons/outline/bowl-chopsticks.svg +++ b/icons/outline/bowl-chopsticks.svg @@ -15,7 +15,7 @@ unicode: "fd90" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bowl-spoon.svg b/icons/outline/bowl-spoon.svg index f65ac4f06..18fe7509c 100644 --- a/icons/outline/bowl-spoon.svg +++ b/icons/outline/bowl-spoon.svg @@ -15,7 +15,7 @@ unicode: "fd91" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bowl.svg b/icons/outline/bowl.svg index 4743eae75..58b127199 100644 --- a/icons/outline/bowl.svg +++ b/icons/outline/bowl.svg @@ -15,5 +15,5 @@ unicode: "f4fa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-bottom-left.svg b/icons/outline/box-align-bottom-left.svg index 4dfe739d1..a30cfbc4b 100644 --- a/icons/outline/box-align-bottom-left.svg +++ b/icons/outline/box-align-bottom-left.svg @@ -15,7 +15,7 @@ unicode: "f2ce" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-bottom-right.svg b/icons/outline/box-align-bottom-right.svg index 830311309..08fcb0dae 100644 --- a/icons/outline/box-align-bottom-right.svg +++ b/icons/outline/box-align-bottom-right.svg @@ -15,7 +15,7 @@ unicode: "f2cf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-bottom.svg b/icons/outline/box-align-bottom.svg index 3f02bad2d..fa3b4b08e 100644 --- a/icons/outline/box-align-bottom.svg +++ b/icons/outline/box-align-bottom.svg @@ -15,7 +15,7 @@ unicode: "f2a8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-left.svg b/icons/outline/box-align-left.svg index 639c19b81..2b03fee7f 100644 --- a/icons/outline/box-align-left.svg +++ b/icons/outline/box-align-left.svg @@ -15,7 +15,7 @@ unicode: "f2a9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-right.svg b/icons/outline/box-align-right.svg index afb32f109..20a8fbb43 100644 --- a/icons/outline/box-align-right.svg +++ b/icons/outline/box-align-right.svg @@ -15,7 +15,7 @@ unicode: "f2aa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-top-left.svg b/icons/outline/box-align-top-left.svg index 92d9c18c5..a8df7a973 100644 --- a/icons/outline/box-align-top-left.svg +++ b/icons/outline/box-align-top-left.svg @@ -15,7 +15,7 @@ unicode: "f2d0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-top-right.svg b/icons/outline/box-align-top-right.svg index 35ada1a94..3840aff1d 100644 --- a/icons/outline/box-align-top-right.svg +++ b/icons/outline/box-align-top-right.svg @@ -15,7 +15,7 @@ unicode: "f2d1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-align-top.svg b/icons/outline/box-align-top.svg index b05b3c38a..3168318aa 100644 --- a/icons/outline/box-align-top.svg +++ b/icons/outline/box-align-top.svg @@ -15,7 +15,7 @@ unicode: "f2ab" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-margin.svg b/icons/outline/box-margin.svg index f80e6a45a..21d6efb99 100644 --- a/icons/outline/box-margin.svg +++ b/icons/outline/box-margin.svg @@ -15,7 +15,7 @@ unicode: "ee0b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-model-2.svg b/icons/outline/box-model-2.svg index 38816c882..f7da1b684 100644 --- a/icons/outline/box-model-2.svg +++ b/icons/outline/box-model-2.svg @@ -15,6 +15,6 @@ unicode: "ef23" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/box-model.svg b/icons/outline/box-model.svg index 9886c6372..817ac7c4d 100644 --- a/icons/outline/box-model.svg +++ b/icons/outline/box-model.svg @@ -15,8 +15,8 @@ unicode: "ee0c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/box-multiple-0.svg b/icons/outline/box-multiple-0.svg index 0ccbf88c0..ee80ca9e6 100644 --- a/icons/outline/box-multiple-0.svg +++ b/icons/outline/box-multiple-0.svg @@ -15,7 +15,7 @@ unicode: "ee0d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/box-multiple-1.svg b/icons/outline/box-multiple-1.svg index c9318c9bf..8431a40b2 100644 --- a/icons/outline/box-multiple-1.svg +++ b/icons/outline/box-multiple-1.svg @@ -15,7 +15,7 @@ unicode: "ee0e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-2.svg b/icons/outline/box-multiple-2.svg index adbb32002..a1b20f60a 100644 --- a/icons/outline/box-multiple-2.svg +++ b/icons/outline/box-multiple-2.svg @@ -15,7 +15,7 @@ unicode: "ee0f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-3.svg b/icons/outline/box-multiple-3.svg index 06a0310b6..dd620a208 100644 --- a/icons/outline/box-multiple-3.svg +++ b/icons/outline/box-multiple-3.svg @@ -15,7 +15,7 @@ unicode: "ee10" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-4.svg b/icons/outline/box-multiple-4.svg index 279ddb51c..ddec8fc6d 100644 --- a/icons/outline/box-multiple-4.svg +++ b/icons/outline/box-multiple-4.svg @@ -15,7 +15,7 @@ unicode: "ee11" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-5.svg b/icons/outline/box-multiple-5.svg index 68bbe963d..62e33f73c 100644 --- a/icons/outline/box-multiple-5.svg +++ b/icons/outline/box-multiple-5.svg @@ -15,7 +15,7 @@ unicode: "ee12" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-6.svg b/icons/outline/box-multiple-6.svg index 25d762755..62c2a9491 100644 --- a/icons/outline/box-multiple-6.svg +++ b/icons/outline/box-multiple-6.svg @@ -15,8 +15,8 @@ unicode: "ee13" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/box-multiple-7.svg b/icons/outline/box-multiple-7.svg index 0a7663047..7a741d846 100644 --- a/icons/outline/box-multiple-7.svg +++ b/icons/outline/box-multiple-7.svg @@ -15,7 +15,7 @@ unicode: "ee14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-multiple-8.svg b/icons/outline/box-multiple-8.svg index c55bac8d1..e0ca57687 100644 --- a/icons/outline/box-multiple-8.svg +++ b/icons/outline/box-multiple-8.svg @@ -15,8 +15,8 @@ unicode: "ee15" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/box-multiple-9.svg b/icons/outline/box-multiple-9.svg index 0da7413b6..3524aa693 100644 --- a/icons/outline/box-multiple-9.svg +++ b/icons/outline/box-multiple-9.svg @@ -15,8 +15,8 @@ unicode: "ee16" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/box-multiple.svg b/icons/outline/box-multiple.svg index db0a68119..1816c6d1a 100644 --- a/icons/outline/box-multiple.svg +++ b/icons/outline/box-multiple.svg @@ -15,6 +15,6 @@ unicode: "ee17" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/box-padding.svg b/icons/outline/box-padding.svg index 2cc741996..99644e7a3 100644 --- a/icons/outline/box-padding.svg +++ b/icons/outline/box-padding.svg @@ -15,7 +15,7 @@ unicode: "ee18" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/braille.svg b/icons/outline/braille.svg index c49050b6a..0454f9bed 100644 --- a/icons/outline/braille.svg +++ b/icons/outline/braille.svg @@ -15,9 +15,9 @@ unicode: "f545" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-4chan.svg b/icons/outline/brand-4chan.svg index 2e24f6b23..50b565934 100644 --- a/icons/outline/brand-4chan.svg +++ b/icons/outline/brand-4chan.svg @@ -15,9 +15,9 @@ unicode: "f494" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/brand-abstract.svg b/icons/outline/brand-abstract.svg index ef129b2c9..ffd1c8d0a 100644 --- a/icons/outline/brand-abstract.svg +++ b/icons/outline/brand-abstract.svg @@ -15,7 +15,7 @@ unicode: "f495" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-adobe-after-effect.svg b/icons/outline/brand-adobe-after-effect.svg index a3d4a3659..642b238aa 100644 --- a/icons/outline/brand-adobe-after-effect.svg +++ b/icons/outline/brand-adobe-after-effect.svg @@ -17,5 +17,5 @@ version: "3.8" > - + diff --git a/icons/outline/brand-adobe-indesign.svg b/icons/outline/brand-adobe-indesign.svg index fda248d5d..778ffe51a 100644 --- a/icons/outline/brand-adobe-indesign.svg +++ b/icons/outline/brand-adobe-indesign.svg @@ -16,6 +16,7 @@ version: "3.8" stroke-linejoin="round" > - - + + + diff --git a/icons/outline/brand-adobe-photoshop.svg b/icons/outline/brand-adobe-photoshop.svg index 1571e2ca4..93757cf47 100644 --- a/icons/outline/brand-adobe-photoshop.svg +++ b/icons/outline/brand-adobe-photoshop.svg @@ -16,6 +16,6 @@ version: "3.8" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-adobe-premier.svg b/icons/outline/brand-adobe-premiere.svg similarity index 93% rename from icons/outline/brand-adobe-premier.svg rename to icons/outline/brand-adobe-premiere.svg index 0f53d2cef..37a619ba0 100644 --- a/icons/outline/brand-adobe-premier.svg +++ b/icons/outline/brand-adobe-premiere.svg @@ -16,6 +16,6 @@ version: "3.8" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-adobe-xd.svg b/icons/outline/brand-adobe-xd.svg index f7e84be78..72dcadd7d 100644 --- a/icons/outline/brand-adobe-xd.svg +++ b/icons/outline/brand-adobe-xd.svg @@ -16,6 +16,7 @@ version: "3.8" stroke-linejoin="round" > - - + + + diff --git a/icons/outline/brand-adobe.svg b/icons/outline/brand-adobe.svg index 02801f6b9..61eac8042 100644 --- a/icons/outline/brand-adobe.svg +++ b/icons/outline/brand-adobe.svg @@ -15,5 +15,5 @@ unicode: "f0dc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-adonis-js.svg b/icons/outline/brand-adonis-js.svg index 9da285192..d7d140908 100644 --- a/icons/outline/brand-adonis-js.svg +++ b/icons/outline/brand-adonis-js.svg @@ -15,6 +15,6 @@ unicode: "f496" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-airbnb.svg b/icons/outline/brand-airbnb.svg index 3fbeef30d..1ee607c4d 100644 --- a/icons/outline/brand-airbnb.svg +++ b/icons/outline/brand-airbnb.svg @@ -15,5 +15,5 @@ unicode: "ed68" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-airtable.svg b/icons/outline/brand-airtable.svg index 5f88f197d..e85bfc4c4 100644 --- a/icons/outline/brand-airtable.svg +++ b/icons/outline/brand-airtable.svg @@ -15,7 +15,7 @@ unicode: "ef6a" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-alipay.svg b/icons/outline/brand-alipay.svg index 1042094cf..3c8cbde69 100644 --- a/icons/outline/brand-alipay.svg +++ b/icons/outline/brand-alipay.svg @@ -15,7 +15,7 @@ unicode: "f7a2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-alpine-js.svg b/icons/outline/brand-alpine-js.svg index 9adc9b358..40b183fb2 100644 --- a/icons/outline/brand-alpine-js.svg +++ b/icons/outline/brand-alpine-js.svg @@ -15,6 +15,6 @@ unicode: "f324" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-amd.svg b/icons/outline/brand-amd.svg index da8303901..068b6bc72 100644 --- a/icons/outline/brand-amd.svg +++ b/icons/outline/brand-amd.svg @@ -15,6 +15,6 @@ unicode: "f653" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-amie.svg b/icons/outline/brand-amie.svg index 6f2a4bd5a..f8d9cbdf4 100644 --- a/icons/outline/brand-amie.svg +++ b/icons/outline/brand-amie.svg @@ -16,5 +16,5 @@ version: "3.12" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-amigo.svg b/icons/outline/brand-amigo.svg index f1a077585..31722ecbd 100644 --- a/icons/outline/brand-amigo.svg +++ b/icons/outline/brand-amigo.svg @@ -15,6 +15,6 @@ unicode: "f5f9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-among-us.svg b/icons/outline/brand-among-us.svg index 72f97a7c7..d0b44f52f 100644 --- a/icons/outline/brand-among-us.svg +++ b/icons/outline/brand-among-us.svg @@ -15,7 +15,7 @@ unicode: "f205" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-angular.svg b/icons/outline/brand-angular.svg index c4da0d038..2700bc7ac 100644 --- a/icons/outline/brand-angular.svg +++ b/icons/outline/brand-angular.svg @@ -15,7 +15,7 @@ unicode: "ef6b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ansible.svg b/icons/outline/brand-ansible.svg index 039dc34cb..2a0528559 100644 --- a/icons/outline/brand-ansible.svg +++ b/icons/outline/brand-ansible.svg @@ -15,6 +15,6 @@ unicode: "fa70" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ao3.svg b/icons/outline/brand-ao3.svg index fddf4ea11..8e359c8e4 100644 --- a/icons/outline/brand-ao3.svg +++ b/icons/outline/brand-ao3.svg @@ -16,6 +16,6 @@ unicode: "f5e8" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-appgallery.svg b/icons/outline/brand-appgallery.svg index b5cf414d9..9432059d6 100644 --- a/icons/outline/brand-appgallery.svg +++ b/icons/outline/brand-appgallery.svg @@ -15,6 +15,6 @@ unicode: "f231" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-apple-arcade.svg b/icons/outline/brand-apple-arcade.svg index 8ed4e4b33..00870509f 100644 --- a/icons/outline/brand-apple-arcade.svg +++ b/icons/outline/brand-apple-arcade.svg @@ -15,8 +15,8 @@ unicode: "ed69" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-apple-news.svg b/icons/outline/brand-apple-news.svg index 415c06324..7bd53f5c7 100644 --- a/icons/outline/brand-apple-news.svg +++ b/icons/outline/brand-apple-news.svg @@ -15,7 +15,7 @@ version: "3.8" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-apple-podcast.svg b/icons/outline/brand-apple-podcast.svg index 911718831..e6e236e0b 100644 --- a/icons/outline/brand-apple-podcast.svg +++ b/icons/outline/brand-apple-podcast.svg @@ -16,6 +16,6 @@ unicode: "f1e6" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-apple.svg b/icons/outline/brand-apple.svg index 3e670a46d..3f8dc8a9f 100644 --- a/icons/outline/brand-apple.svg +++ b/icons/outline/brand-apple.svg @@ -15,6 +15,6 @@ unicode: "ec17" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-appstore.svg b/icons/outline/brand-appstore.svg index 1b3edbeb2..16a784182 100644 --- a/icons/outline/brand-appstore.svg +++ b/icons/outline/brand-appstore.svg @@ -15,7 +15,7 @@ unicode: "ed24" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-asana.svg b/icons/outline/brand-asana.svg index 83b8720ed..ec157c215 100644 --- a/icons/outline/brand-asana.svg +++ b/icons/outline/brand-asana.svg @@ -15,7 +15,7 @@ unicode: "edc5" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-auth0.svg b/icons/outline/brand-auth0.svg index 1d57a73ea..dc1ed93bf 100644 --- a/icons/outline/brand-auth0.svg +++ b/icons/outline/brand-auth0.svg @@ -15,6 +15,6 @@ unicode: "fcb3" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-azure.svg b/icons/outline/brand-azure.svg index 51c12e41e..393bc5574 100644 --- a/icons/outline/brand-azure.svg +++ b/icons/outline/brand-azure.svg @@ -15,6 +15,6 @@ unicode: "fa4d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-backbone.svg b/icons/outline/brand-backbone.svg index efc223750..c9f163ac8 100644 --- a/icons/outline/brand-backbone.svg +++ b/icons/outline/brand-backbone.svg @@ -15,6 +15,6 @@ unicode: "f325" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-badoo.svg b/icons/outline/brand-badoo.svg index 17a896082..c96889777 100644 --- a/icons/outline/brand-badoo.svg +++ b/icons/outline/brand-badoo.svg @@ -15,6 +15,6 @@ unicode: "f206" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-baidu.svg b/icons/outline/brand-baidu.svg index e1d6dae87..f3ccd8411 100644 --- a/icons/outline/brand-baidu.svg +++ b/icons/outline/brand-baidu.svg @@ -15,9 +15,9 @@ unicode: "f5e9" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/brand-bandcamp.svg b/icons/outline/brand-bandcamp.svg index 3efd92da6..82fd4837f 100644 --- a/icons/outline/brand-bandcamp.svg +++ b/icons/outline/brand-bandcamp.svg @@ -15,5 +15,5 @@ unicode: "f207" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-beats.svg b/icons/outline/brand-beats.svg index f202c0760..90db4a7c4 100644 --- a/icons/outline/brand-beats.svg +++ b/icons/outline/brand-beats.svg @@ -15,7 +15,7 @@ unicode: "f208" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-bilibili.svg b/icons/outline/brand-bilibili.svg index 5560b785b..76830dea1 100644 --- a/icons/outline/brand-bilibili.svg +++ b/icons/outline/brand-bilibili.svg @@ -15,7 +15,7 @@ unicode: "f6d2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-binance.svg b/icons/outline/brand-binance.svg index 38ac3827b..d9b19b23b 100644 --- a/icons/outline/brand-binance.svg +++ b/icons/outline/brand-binance.svg @@ -15,9 +15,9 @@ unicode: "f5a0" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/brand-bing.svg b/icons/outline/brand-bing.svg index 5de99769c..abe298c80 100644 --- a/icons/outline/brand-bing.svg +++ b/icons/outline/brand-bing.svg @@ -15,5 +15,5 @@ unicode: "edc6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-bitbucket.svg b/icons/outline/brand-bitbucket.svg index e50638456..ae873daa4 100644 --- a/icons/outline/brand-bitbucket.svg +++ b/icons/outline/brand-bitbucket.svg @@ -15,6 +15,6 @@ unicode: "edc7" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-blackberry.svg b/icons/outline/brand-blackberry.svg index 68654f5df..52dcb889a 100644 --- a/icons/outline/brand-blackberry.svg +++ b/icons/outline/brand-blackberry.svg @@ -15,11 +15,11 @@ unicode: "f568" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/brand-blender.svg b/icons/outline/brand-blender.svg index 6da40bf4c..ee7f27898 100644 --- a/icons/outline/brand-blender.svg +++ b/icons/outline/brand-blender.svg @@ -15,8 +15,8 @@ unicode: "f326" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-blogger.svg b/icons/outline/brand-blogger.svg index c1dce2dd1..9a5b2358e 100644 --- a/icons/outline/brand-blogger.svg +++ b/icons/outline/brand-blogger.svg @@ -15,7 +15,7 @@ unicode: "f35a" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-bluesky.svg b/icons/outline/brand-bluesky.svg index efa9c38d2..dc04b2188 100644 --- a/icons/outline/brand-bluesky.svg +++ b/icons/outline/brand-bluesky.svg @@ -15,5 +15,5 @@ unicode: "fd75" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-booking.svg b/icons/outline/brand-booking.svg index 440c369d5..39f5b3989 100644 --- a/icons/outline/brand-booking.svg +++ b/icons/outline/brand-booking.svg @@ -15,7 +15,7 @@ unicode: "edc8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-bootstrap.svg b/icons/outline/brand-bootstrap.svg index 2135ac53d..96c0b88b3 100644 --- a/icons/outline/brand-bootstrap.svg +++ b/icons/outline/brand-bootstrap.svg @@ -17,5 +17,5 @@ unicode: "ef3e" > - + diff --git a/icons/outline/brand-bulma.svg b/icons/outline/brand-bulma.svg index 2463140ad..232d84ce1 100644 --- a/icons/outline/brand-bulma.svg +++ b/icons/outline/brand-bulma.svg @@ -15,5 +15,5 @@ unicode: "f327" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-bumble.svg b/icons/outline/brand-bumble.svg index 7b0671dd7..9958ec9d2 100644 --- a/icons/outline/brand-bumble.svg +++ b/icons/outline/brand-bumble.svg @@ -18,5 +18,5 @@ unicode: "f5fb" - + diff --git a/icons/outline/brand-cake.svg b/icons/outline/brand-cake.svg index ad0bc79eb..051f0581a 100644 --- a/icons/outline/brand-cake.svg +++ b/icons/outline/brand-cake.svg @@ -15,5 +15,5 @@ unicode: "f7a3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-cakephp.svg b/icons/outline/brand-cakephp.svg index 4f62ebb3b..a053240ae 100644 --- a/icons/outline/brand-cakephp.svg +++ b/icons/outline/brand-cakephp.svg @@ -15,9 +15,9 @@ unicode: "f7af" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-carbon.svg b/icons/outline/brand-carbon.svg index ef6995af4..0f9808947 100644 --- a/icons/outline/brand-carbon.svg +++ b/icons/outline/brand-carbon.svg @@ -16,5 +16,5 @@ unicode: "f348" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-cashapp.svg b/icons/outline/brand-cashapp.svg index 6529b87fd..01697e635 100644 --- a/icons/outline/brand-cashapp.svg +++ b/icons/outline/brand-cashapp.svg @@ -15,5 +15,5 @@ unicode: "f391" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-chrome.svg b/icons/outline/brand-chrome.svg index 15977d07f..ae19884a1 100644 --- a/icons/outline/brand-chrome.svg +++ b/icons/outline/brand-chrome.svg @@ -15,8 +15,8 @@ unicode: "ec18" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-cinema-4d.svg b/icons/outline/brand-cinema-4d.svg index 77117d525..bbaeacca0 100644 --- a/icons/outline/brand-cinema-4d.svg +++ b/icons/outline/brand-cinema-4d.svg @@ -16,7 +16,7 @@ unicode: "fa71" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-citymapper.svg b/icons/outline/brand-citymapper.svg index 9ee41d0b8..803259ba4 100644 --- a/icons/outline/brand-citymapper.svg +++ b/icons/outline/brand-citymapper.svg @@ -15,8 +15,8 @@ unicode: "f5fc" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-cloudflare.svg b/icons/outline/brand-cloudflare.svg index 7f5182ac3..40db5297e 100644 --- a/icons/outline/brand-cloudflare.svg +++ b/icons/outline/brand-cloudflare.svg @@ -15,7 +15,7 @@ unicode: "fa4e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-codesandbox.svg b/icons/outline/brand-codesandbox.svg index 83a2264c9..b3a5b6b25 100644 --- a/icons/outline/brand-codesandbox.svg +++ b/icons/outline/brand-codesandbox.svg @@ -15,7 +15,7 @@ unicode: "ed6a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-cohost.svg b/icons/outline/brand-cohost.svg index 422928125..bc2357540 100644 --- a/icons/outline/brand-cohost.svg +++ b/icons/outline/brand-cohost.svg @@ -15,7 +15,7 @@ version: "1.112" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-coinbase.svg b/icons/outline/brand-coinbase.svg index 3ba7f06a3..47a7016b4 100644 --- a/icons/outline/brand-coinbase.svg +++ b/icons/outline/brand-coinbase.svg @@ -15,5 +15,5 @@ unicode: "f209" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-coreos.svg b/icons/outline/brand-coreos.svg index 9c9914977..959c69435 100644 --- a/icons/outline/brand-coreos.svg +++ b/icons/outline/brand-coreos.svg @@ -15,7 +15,7 @@ unicode: "f5fd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-couchdb.svg b/icons/outline/brand-couchdb.svg index 0664f708f..ed812ccfc 100644 --- a/icons/outline/brand-couchdb.svg +++ b/icons/outline/brand-couchdb.svg @@ -15,7 +15,7 @@ unicode: "f60f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-couchsurfing.svg b/icons/outline/brand-couchsurfing.svg index 7cd6f052a..15dc3ab77 100644 --- a/icons/outline/brand-couchsurfing.svg +++ b/icons/outline/brand-couchsurfing.svg @@ -16,5 +16,5 @@ unicode: "f392" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-crunchbase.svg b/icons/outline/brand-crunchbase.svg index c337e9bc1..4eee6b0d6 100644 --- a/icons/outline/brand-crunchbase.svg +++ b/icons/outline/brand-crunchbase.svg @@ -15,8 +15,8 @@ unicode: "f7e3" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-css3.svg b/icons/outline/brand-css3.svg index a9d148d39..0cc2b7bfa 100644 --- a/icons/outline/brand-css3.svg +++ b/icons/outline/brand-css3.svg @@ -15,6 +15,6 @@ unicode: "ed6b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ctemplar.svg b/icons/outline/brand-ctemplar.svg index 28ff95a7b..54b65be7c 100644 --- a/icons/outline/brand-ctemplar.svg +++ b/icons/outline/brand-ctemplar.svg @@ -16,7 +16,7 @@ unicode: "f4d0" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-cucumber.svg b/icons/outline/brand-cucumber.svg index 6300ada0b..b77f2e033 100644 --- a/icons/outline/brand-cucumber.svg +++ b/icons/outline/brand-cucumber.svg @@ -15,7 +15,7 @@ unicode: "ef6c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-dcos.svg b/icons/outline/brand-dcos.svg index 8f423267b..c6743a91d 100644 --- a/icons/outline/brand-dcos.svg +++ b/icons/outline/brand-dcos.svg @@ -15,5 +15,5 @@ unicode: "f32a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-debian.svg b/icons/outline/brand-debian.svg index 7d1e2951c..b4892b04d 100644 --- a/icons/outline/brand-debian.svg +++ b/icons/outline/brand-debian.svg @@ -16,5 +16,5 @@ unicode: "ef57" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-deezer.svg b/icons/outline/brand-deezer.svg index 04347f6c9..85382f33e 100644 --- a/icons/outline/brand-deezer.svg +++ b/icons/outline/brand-deezer.svg @@ -15,14 +15,14 @@ unicode: "f78b" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - - - - + + + + + + + + + + diff --git a/icons/outline/brand-deliveroo.svg b/icons/outline/brand-deliveroo.svg index 8cac375e4..3e5973e37 100644 --- a/icons/outline/brand-deliveroo.svg +++ b/icons/outline/brand-deliveroo.svg @@ -15,7 +15,7 @@ unicode: "f4d3" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-deno.svg b/icons/outline/brand-deno.svg index b4139634b..dc6cc5782 100644 --- a/icons/outline/brand-deno.svg +++ b/icons/outline/brand-deno.svg @@ -15,7 +15,7 @@ unicode: "f24f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-denodo.svg b/icons/outline/brand-denodo.svg index 15bc47b2a..9e1bd792d 100644 --- a/icons/outline/brand-denodo.svg +++ b/icons/outline/brand-denodo.svg @@ -15,11 +15,11 @@ unicode: "f610" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/brand-deviantart.svg b/icons/outline/brand-deviantart.svg index c8d619cce..e3d239874 100644 --- a/icons/outline/brand-deviantart.svg +++ b/icons/outline/brand-deviantart.svg @@ -15,5 +15,5 @@ unicode: "ecfb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-dingtalk.svg b/icons/outline/brand-dingtalk.svg index 3a550b00d..11ce301ea 100644 --- a/icons/outline/brand-dingtalk.svg +++ b/icons/outline/brand-dingtalk.svg @@ -15,6 +15,6 @@ unicode: "f5ea" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-disqus.svg b/icons/outline/brand-disqus.svg index 4dc2ebe9d..fe8e09ee6 100644 --- a/icons/outline/brand-disqus.svg +++ b/icons/outline/brand-disqus.svg @@ -15,6 +15,6 @@ unicode: "edc9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-django.svg b/icons/outline/brand-django.svg index 927283596..62a9b7034 100644 --- a/icons/outline/brand-django.svg +++ b/icons/outline/brand-django.svg @@ -15,7 +15,7 @@ unicode: "f349" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-docker.svg b/icons/outline/brand-docker.svg index be6b6ee8a..5207de724 100644 --- a/icons/outline/brand-docker.svg +++ b/icons/outline/brand-docker.svg @@ -15,13 +15,13 @@ unicode: "edca" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/brand-doctrine.svg b/icons/outline/brand-doctrine.svg index e1d951f36..2ddb5c009 100644 --- a/icons/outline/brand-doctrine.svg +++ b/icons/outline/brand-doctrine.svg @@ -15,7 +15,7 @@ unicode: "ef6d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-dolby-digital.svg b/icons/outline/brand-dolby-digital.svg index 82bb03d30..37ed2463c 100644 --- a/icons/outline/brand-dolby-digital.svg +++ b/icons/outline/brand-dolby-digital.svg @@ -15,6 +15,6 @@ unicode: "f4d4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-douban.svg b/icons/outline/brand-douban.svg index 995df7d84..99c653408 100644 --- a/icons/outline/brand-douban.svg +++ b/icons/outline/brand-douban.svg @@ -17,7 +17,7 @@ unicode: "f5ff" > - + diff --git a/icons/outline/brand-dribbble.svg b/icons/outline/brand-dribbble.svg index 476f6688e..57f91eacb 100644 --- a/icons/outline/brand-dribbble.svg +++ b/icons/outline/brand-dribbble.svg @@ -15,7 +15,7 @@ unicode: "ec19" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-dropbox.svg b/icons/outline/brand-dropbox.svg index 217e2908e..db3457c83 100644 --- a/icons/outline/brand-dropbox.svg +++ b/icons/outline/brand-dropbox.svg @@ -16,5 +16,5 @@ unicode: "1018a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-drops.svg b/icons/outline/brand-drops.svg index 84968966c..a9efa6ed6 100644 --- a/icons/outline/brand-drops.svg +++ b/icons/outline/brand-drops.svg @@ -15,6 +15,6 @@ unicode: "f4d5" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-drupal.svg b/icons/outline/brand-drupal.svg index dc708e560..39ed56d64 100644 --- a/icons/outline/brand-drupal.svg +++ b/icons/outline/brand-drupal.svg @@ -15,6 +15,6 @@ unicode: "f393" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-elastic.svg b/icons/outline/brand-elastic.svg index 2e3ce7dc0..67e0d0b6c 100644 --- a/icons/outline/brand-elastic.svg +++ b/icons/outline/brand-elastic.svg @@ -15,7 +15,7 @@ unicode: "f611" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-electronic-arts.svg b/icons/outline/brand-electronic-arts.svg index 32c709b72..5034c0e95 100644 --- a/icons/outline/brand-electronic-arts.svg +++ b/icons/outline/brand-electronic-arts.svg @@ -15,7 +15,7 @@ unicode: "fa74" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-envato.svg b/icons/outline/brand-envato.svg index 052d7b7b4..44a13a265 100644 --- a/icons/outline/brand-envato.svg +++ b/icons/outline/brand-envato.svg @@ -15,6 +15,6 @@ unicode: "f394" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-etsy.svg b/icons/outline/brand-etsy.svg index 0bd7429ce..0e1e56e57 100644 --- a/icons/outline/brand-etsy.svg +++ b/icons/outline/brand-etsy.svg @@ -16,6 +16,6 @@ unicode: "f654" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-feedly.svg b/icons/outline/brand-feedly.svg index b02ac4bfa..5bb135fc9 100644 --- a/icons/outline/brand-feedly.svg +++ b/icons/outline/brand-feedly.svg @@ -18,5 +18,5 @@ unicode: "fa75" - + diff --git a/icons/outline/brand-figma.svg b/icons/outline/brand-figma.svg index d3a115fcd..5b6af41d2 100644 --- a/icons/outline/brand-figma.svg +++ b/icons/outline/brand-figma.svg @@ -15,7 +15,7 @@ unicode: "ec93" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-filezilla.svg b/icons/outline/brand-filezilla.svg index efa98e32c..35b5d2603 100644 --- a/icons/outline/brand-filezilla.svg +++ b/icons/outline/brand-filezilla.svg @@ -16,6 +16,6 @@ unicode: "fa76" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-finder.svg b/icons/outline/brand-finder.svg index f21ec9f3f..2fa94ede4 100644 --- a/icons/outline/brand-finder.svg +++ b/icons/outline/brand-finder.svg @@ -15,7 +15,7 @@ unicode: "f218" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-fiverr.svg b/icons/outline/brand-fiverr.svg index 75e7a4bb0..f743e6334 100644 --- a/icons/outline/brand-fiverr.svg +++ b/icons/outline/brand-fiverr.svg @@ -15,5 +15,5 @@ unicode: "f7a4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-flickr.svg b/icons/outline/brand-flickr.svg index 5dc0146ca..ae6f3fcb7 100644 --- a/icons/outline/brand-flickr.svg +++ b/icons/outline/brand-flickr.svg @@ -15,6 +15,6 @@ unicode: "ecfe" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-flightradar24.svg b/icons/outline/brand-flightradar24.svg index 8341ce77d..e8fcfed52 100644 --- a/icons/outline/brand-flightradar24.svg +++ b/icons/outline/brand-flightradar24.svg @@ -15,8 +15,8 @@ unicode: "f4d6" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/brand-flipboard.svg b/icons/outline/brand-flipboard.svg index 65f205fe7..96da8224f 100644 --- a/icons/outline/brand-flipboard.svg +++ b/icons/outline/brand-flipboard.svg @@ -15,5 +15,5 @@ unicode: "f20b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-flutter.svg b/icons/outline/brand-flutter.svg index 2d51b2a47..7eb26294a 100644 --- a/icons/outline/brand-flutter.svg +++ b/icons/outline/brand-flutter.svg @@ -15,6 +15,6 @@ unicode: "f395" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-fortnite.svg b/icons/outline/brand-fortnite.svg index 758609f5a..86a33814e 100644 --- a/icons/outline/brand-fortnite.svg +++ b/icons/outline/brand-fortnite.svg @@ -15,5 +15,5 @@ unicode: "f260" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-foursquare.svg b/icons/outline/brand-foursquare.svg index 5ef061bee..05107033b 100644 --- a/icons/outline/brand-foursquare.svg +++ b/icons/outline/brand-foursquare.svg @@ -15,6 +15,6 @@ unicode: "ecff" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-funimation.svg b/icons/outline/brand-funimation.svg index 02d58b2d8..7773032a2 100644 --- a/icons/outline/brand-funimation.svg +++ b/icons/outline/brand-funimation.svg @@ -15,6 +15,6 @@ unicode: "f655" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-gatsby.svg b/icons/outline/brand-gatsby.svg index e2dbe1ccb..647bde910 100644 --- a/icons/outline/brand-gatsby.svg +++ b/icons/outline/brand-gatsby.svg @@ -15,6 +15,6 @@ unicode: "f396" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-git.svg b/icons/outline/brand-git.svg index 47f76018f..ccd79426b 100644 --- a/icons/outline/brand-git.svg +++ b/icons/outline/brand-git.svg @@ -15,11 +15,11 @@ unicode: "ef6f" stroke-linecap="round" stroke-linejoin="round" > - - - + + + - + diff --git a/icons/outline/brand-github-copilot.svg b/icons/outline/brand-github-copilot.svg index f1773a264..bf8e387e9 100644 --- a/icons/outline/brand-github-copilot.svg +++ b/icons/outline/brand-github-copilot.svg @@ -16,10 +16,10 @@ unicode: "f4a8" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-gitlab.svg b/icons/outline/brand-gitlab.svg index 2e86be58a..d96bdf4f9 100644 --- a/icons/outline/brand-gitlab.svg +++ b/icons/outline/brand-gitlab.svg @@ -15,5 +15,5 @@ unicode: "ec1d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-gmail.svg b/icons/outline/brand-gmail.svg index 39e8ef5ce..761715a30 100644 --- a/icons/outline/brand-gmail.svg +++ b/icons/outline/brand-gmail.svg @@ -15,8 +15,8 @@ unicode: "efa2" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-golang.svg b/icons/outline/brand-golang.svg index 34e9e32ff..acc7623f7 100644 --- a/icons/outline/brand-golang.svg +++ b/icons/outline/brand-golang.svg @@ -15,7 +15,7 @@ unicode: "f78d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-google-analytics.svg b/icons/outline/brand-google-analytics.svg index 3e8e4f0ba..1ff20247f 100644 --- a/icons/outline/brand-google-analytics.svg +++ b/icons/outline/brand-google-analytics.svg @@ -15,7 +15,7 @@ unicode: "edcb" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-google-big-query.svg b/icons/outline/brand-google-big-query.svg index 17ce878e7..da5fba66d 100644 --- a/icons/outline/brand-google-big-query.svg +++ b/icons/outline/brand-google-big-query.svg @@ -15,7 +15,7 @@ unicode: "f612" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-google-drive.svg b/icons/outline/brand-google-drive.svg index d6b3d8649..d0bf883de 100644 --- a/icons/outline/brand-google-drive.svg +++ b/icons/outline/brand-google-drive.svg @@ -15,7 +15,7 @@ unicode: "ec1e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-google-home.svg b/icons/outline/brand-google-home.svg index bd2b76027..f7749c558 100644 --- a/icons/outline/brand-google-home.svg +++ b/icons/outline/brand-google-home.svg @@ -15,7 +15,7 @@ unicode: "f601" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-google-maps.svg b/icons/outline/brand-google-maps.svg index 937a474e1..140770db0 100644 --- a/icons/outline/brand-google-maps.svg +++ b/icons/outline/brand-google-maps.svg @@ -15,9 +15,9 @@ unicode: "fa4f" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-google-one.svg b/icons/outline/brand-google-one.svg index c13229ff8..9bcc76f2b 100644 --- a/icons/outline/brand-google-one.svg +++ b/icons/outline/brand-google-one.svg @@ -15,6 +15,6 @@ unicode: "f232" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-google-photos.svg b/icons/outline/brand-google-photos.svg index a470d54de..17ce099cf 100644 --- a/icons/outline/brand-google-photos.svg +++ b/icons/outline/brand-google-photos.svg @@ -15,8 +15,8 @@ unicode: "f20c" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/brand-google-play.svg b/icons/outline/brand-google-play.svg index 899e6e98a..44ed77da2 100644 --- a/icons/outline/brand-google-play.svg +++ b/icons/outline/brand-google-play.svg @@ -15,7 +15,7 @@ unicode: "ed25" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-google.svg b/icons/outline/brand-google.svg index 7cf3f9d6e..3d627a858 100644 --- a/icons/outline/brand-google.svg +++ b/icons/outline/brand-google.svg @@ -15,5 +15,5 @@ unicode: "ec1f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-grammarly.svg b/icons/outline/brand-grammarly.svg index 1ab74d303..939e789ff 100644 --- a/icons/outline/brand-grammarly.svg +++ b/icons/outline/brand-grammarly.svg @@ -15,7 +15,7 @@ unicode: "f32b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-graphql.svg b/icons/outline/brand-graphql.svg index f24c5c630..ab3119de3 100644 --- a/icons/outline/brand-graphql.svg +++ b/icons/outline/brand-graphql.svg @@ -15,8 +15,8 @@ unicode: "f32c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-grindr.svg b/icons/outline/brand-grindr.svg index 069aa29e4..7c500c8bd 100644 --- a/icons/outline/brand-grindr.svg +++ b/icons/outline/brand-grindr.svg @@ -15,7 +15,7 @@ unicode: "f20d" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-guardian.svg b/icons/outline/brand-guardian.svg index f76192f4e..2a083982a 100644 --- a/icons/outline/brand-guardian.svg +++ b/icons/outline/brand-guardian.svg @@ -16,7 +16,7 @@ unicode: "f4fb" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-gumroad.svg b/icons/outline/brand-gumroad.svg index 0058a3ab5..59f7c9101 100644 --- a/icons/outline/brand-gumroad.svg +++ b/icons/outline/brand-gumroad.svg @@ -15,7 +15,7 @@ unicode: "f5d6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-hackerrank.svg b/icons/outline/brand-hackerrank.svg index a6ff614a9..8bb800ce1 100644 --- a/icons/outline/brand-hackerrank.svg +++ b/icons/outline/brand-hackerrank.svg @@ -18,7 +18,7 @@ version: "3.8" - - + + diff --git a/icons/outline/brand-hbo.svg b/icons/outline/brand-hbo.svg index 8fff76ed4..b9da347cc 100644 --- a/icons/outline/brand-hbo.svg +++ b/icons/outline/brand-hbo.svg @@ -18,7 +18,7 @@ unicode: "f657" - - - + + + diff --git a/icons/outline/brand-headlessui.svg b/icons/outline/brand-headlessui.svg index 0e0229761..6f5548775 100644 --- a/icons/outline/brand-headlessui.svg +++ b/icons/outline/brand-headlessui.svg @@ -15,6 +15,6 @@ unicode: "f32d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-hexo.svg b/icons/outline/brand-hexo.svg index 2050525b5..9f29400b6 100644 --- a/icons/outline/brand-hexo.svg +++ b/icons/outline/brand-hexo.svg @@ -15,7 +15,7 @@ unicode: "fa50" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-hipchat.svg b/icons/outline/brand-hipchat.svg index 9baf67f2c..b8ad91ed6 100644 --- a/icons/outline/brand-hipchat.svg +++ b/icons/outline/brand-hipchat.svg @@ -15,6 +15,6 @@ unicode: "edcd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-html5.svg b/icons/outline/brand-html5.svg index c0a54f0fd..0eed95e4b 100644 --- a/icons/outline/brand-html5.svg +++ b/icons/outline/brand-html5.svg @@ -15,6 +15,6 @@ unicode: "ed6c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-inertia.svg b/icons/outline/brand-inertia.svg index 6c5e4236f..d9e8e7ef3 100644 --- a/icons/outline/brand-inertia.svg +++ b/icons/outline/brand-inertia.svg @@ -15,6 +15,6 @@ unicode: "f34a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-instagram.svg b/icons/outline/brand-instagram.svg index 1528dd11d..d69523eae 100644 --- a/icons/outline/brand-instagram.svg +++ b/icons/outline/brand-instagram.svg @@ -15,7 +15,7 @@ unicode: "ec20" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-intercom.svg b/icons/outline/brand-intercom.svg index b04f46961..163bc0dc5 100644 --- a/icons/outline/brand-intercom.svg +++ b/icons/outline/brand-intercom.svg @@ -15,7 +15,7 @@ unicode: "f1cf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-itch.svg b/icons/outline/brand-itch.svg index b63bae42f..dcf1e0218 100644 --- a/icons/outline/brand-itch.svg +++ b/icons/outline/brand-itch.svg @@ -15,7 +15,7 @@ unicode: "fa22" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-javascript.svg b/icons/outline/brand-javascript.svg index e5a3e186d..19b5d1065 100644 --- a/icons/outline/brand-javascript.svg +++ b/icons/outline/brand-javascript.svg @@ -15,7 +15,7 @@ unicode: "ef0c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-juejin.svg b/icons/outline/brand-juejin.svg index 4c4c1f31c..d465c83d3 100644 --- a/icons/outline/brand-juejin.svg +++ b/icons/outline/brand-juejin.svg @@ -17,5 +17,5 @@ unicode: "f7b0" > - + diff --git a/icons/outline/brand-kako-talk.svg b/icons/outline/brand-kako-talk.svg index 48c010a4d..314af39a1 100644 --- a/icons/outline/brand-kako-talk.svg +++ b/icons/outline/brand-kako-talk.svg @@ -17,5 +17,5 @@ unicode: "fd2d" > - + diff --git a/icons/outline/brand-kbin.svg b/icons/outline/brand-kbin.svg index 7667715a1..273f8d3e4 100644 --- a/icons/outline/brand-kbin.svg +++ b/icons/outline/brand-kbin.svg @@ -17,6 +17,6 @@ unicode: "fad0" > - + diff --git a/icons/outline/brand-kick.svg b/icons/outline/brand-kick.svg index 74e0bda51..ce70cb996 100644 --- a/icons/outline/brand-kick.svg +++ b/icons/outline/brand-kick.svg @@ -15,5 +15,5 @@ unicode: "fa23" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-kickstarter.svg b/icons/outline/brand-kickstarter.svg index 0224918f1..241e12c98 100644 --- a/icons/outline/brand-kickstarter.svg +++ b/icons/outline/brand-kickstarter.svg @@ -15,5 +15,5 @@ unicode: "edce" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-laravel.svg b/icons/outline/brand-laravel.svg index 363606f07..f37b45d59 100644 --- a/icons/outline/brand-laravel.svg +++ b/icons/outline/brand-laravel.svg @@ -15,7 +15,7 @@ unicode: "f34b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-letterboxd.svg b/icons/outline/brand-letterboxd.svg index 3208a4247..a59af628c 100644 --- a/icons/outline/brand-letterboxd.svg +++ b/icons/outline/brand-letterboxd.svg @@ -15,8 +15,8 @@ unicode: "fa24" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/brand-line.svg b/icons/outline/brand-line.svg index 68aa5fded..20a5bf8e8 100644 --- a/icons/outline/brand-line.svg +++ b/icons/outline/brand-line.svg @@ -15,5 +15,5 @@ unicode: "f7e8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-linkedin.svg b/icons/outline/brand-linkedin.svg index 0539b6157..831842165 100644 --- a/icons/outline/brand-linkedin.svg +++ b/icons/outline/brand-linkedin.svg @@ -19,5 +19,5 @@ unicode: "ec8c" - + diff --git a/icons/outline/brand-linqpad.svg b/icons/outline/brand-linqpad.svg index c5265f700..6ffa05861 100644 --- a/icons/outline/brand-linqpad.svg +++ b/icons/outline/brand-linqpad.svg @@ -15,5 +15,5 @@ unicode: "f562" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-livewire.svg b/icons/outline/brand-livewire.svg index a2a284f4c..ade096b8d 100644 --- a/icons/outline/brand-livewire.svg +++ b/icons/outline/brand-livewire.svg @@ -15,8 +15,8 @@ unicode: "fd76" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/brand-mailgun.svg b/icons/outline/brand-mailgun.svg index 5c7b00776..a6528b1cb 100644 --- a/icons/outline/brand-mailgun.svg +++ b/icons/outline/brand-mailgun.svg @@ -16,7 +16,7 @@ unicode: "f32e" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-mantine.svg b/icons/outline/brand-mantine.svg index 2fdded870..eb36b56f8 100644 --- a/icons/outline/brand-mantine.svg +++ b/icons/outline/brand-mantine.svg @@ -15,7 +15,7 @@ unicode: "f32f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-mastercard.svg b/icons/outline/brand-mastercard.svg index b4e58e40c..13c2b3032 100644 --- a/icons/outline/brand-mastercard.svg +++ b/icons/outline/brand-mastercard.svg @@ -15,7 +15,7 @@ unicode: "ef49" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-mastodon.svg b/icons/outline/brand-mastodon.svg index a463def58..54ac59666 100644 --- a/icons/outline/brand-mastodon.svg +++ b/icons/outline/brand-mastodon.svg @@ -15,6 +15,6 @@ unicode: "f250" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-medium.svg b/icons/outline/brand-medium.svg index eb98b44a1..5f0b934b1 100644 --- a/icons/outline/brand-medium.svg +++ b/icons/outline/brand-medium.svg @@ -15,7 +15,7 @@ unicode: "ec70" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-mercedes.svg b/icons/outline/brand-mercedes.svg index 3936d8633..84b912d0c 100644 --- a/icons/outline/brand-mercedes.svg +++ b/icons/outline/brand-mercedes.svg @@ -15,7 +15,7 @@ unicode: "f072" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-meta.svg b/icons/outline/brand-meta.svg index bc827a5a7..b8f78afbf 100644 --- a/icons/outline/brand-meta.svg +++ b/icons/outline/brand-meta.svg @@ -15,6 +15,6 @@ unicode: "efb0" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-metabrainz.svg b/icons/outline/brand-metabrainz.svg index bc9ecb2fb..269074fdc 100644 --- a/icons/outline/brand-metabrainz.svg +++ b/icons/outline/brand-metabrainz.svg @@ -15,6 +15,6 @@ unicode: "ff12" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-minecraft.svg b/icons/outline/brand-minecraft.svg index 61d8bb178..e8519d8c4 100644 --- a/icons/outline/brand-minecraft.svg +++ b/icons/outline/brand-minecraft.svg @@ -15,10 +15,10 @@ unicode: "faef" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-miniprogram.svg b/icons/outline/brand-miniprogram.svg index b0273d6df..996180cad 100644 --- a/icons/outline/brand-miniprogram.svg +++ b/icons/outline/brand-miniprogram.svg @@ -15,6 +15,6 @@ version: "1.114" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-mixpanel.svg b/icons/outline/brand-mixpanel.svg index 471742445..b117ec38c 100644 --- a/icons/outline/brand-mixpanel.svg +++ b/icons/outline/brand-mixpanel.svg @@ -15,7 +15,7 @@ unicode: "f397" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-monday.svg b/icons/outline/brand-monday.svg index 0acc88dd7..349eb8a2f 100644 --- a/icons/outline/brand-monday.svg +++ b/icons/outline/brand-monday.svg @@ -15,7 +15,7 @@ unicode: "f219" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-mongodb.svg b/icons/outline/brand-mongodb.svg index 9f95cdddf..8d94cfbd4 100644 --- a/icons/outline/brand-mongodb.svg +++ b/icons/outline/brand-mongodb.svg @@ -16,5 +16,5 @@ unicode: "f613" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-my-oppo.svg b/icons/outline/brand-my-oppo.svg index dc9ef50de..d10f67a46 100644 --- a/icons/outline/brand-my-oppo.svg +++ b/icons/outline/brand-my-oppo.svg @@ -15,6 +15,6 @@ unicode: "f4d7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-national-geographic.svg b/icons/outline/brand-national-geographic.svg index de6e59bda..0ba72a166 100644 --- a/icons/outline/brand-national-geographic.svg +++ b/icons/outline/brand-national-geographic.svg @@ -15,5 +15,5 @@ unicode: "f603" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-nem.svg b/icons/outline/brand-nem.svg index 614f13df1..28746c7a4 100644 --- a/icons/outline/brand-nem.svg +++ b/icons/outline/brand-nem.svg @@ -15,7 +15,7 @@ unicode: "f5a1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-netbeans.svg b/icons/outline/brand-netbeans.svg index a1c316979..4a91db53f 100644 --- a/icons/outline/brand-netbeans.svg +++ b/icons/outline/brand-netbeans.svg @@ -15,8 +15,8 @@ unicode: "ef71" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-netease-music.svg b/icons/outline/brand-netease-music.svg index 66e89f9fb..b636fa161 100644 --- a/icons/outline/brand-netease-music.svg +++ b/icons/outline/brand-netease-music.svg @@ -15,5 +15,5 @@ unicode: "f604" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-netflix.svg b/icons/outline/brand-netflix.svg index eb49e8e31..1510af447 100644 --- a/icons/outline/brand-netflix.svg +++ b/icons/outline/brand-netflix.svg @@ -15,7 +15,7 @@ unicode: "edcf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-nexo.svg b/icons/outline/brand-nexo.svg index 74605f014..eeda56533 100644 --- a/icons/outline/brand-nexo.svg +++ b/icons/outline/brand-nexo.svg @@ -15,6 +15,6 @@ unicode: "f5a2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-nextcloud.svg b/icons/outline/brand-nextcloud.svg index 3fdd7a6b6..650047490 100644 --- a/icons/outline/brand-nextcloud.svg +++ b/icons/outline/brand-nextcloud.svg @@ -15,7 +15,7 @@ unicode: "f4d8" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-notion.svg b/icons/outline/brand-notion.svg index b90e3a73c..4403a43ce 100644 --- a/icons/outline/brand-notion.svg +++ b/icons/outline/brand-notion.svg @@ -16,7 +16,7 @@ unicode: "ef7b" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-npm.svg b/icons/outline/brand-npm.svg index 7363a00cb..165546794 100644 --- a/icons/outline/brand-npm.svg +++ b/icons/outline/brand-npm.svg @@ -15,7 +15,7 @@ unicode: "f569" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-nuxt.svg b/icons/outline/brand-nuxt.svg index fd08d4b8f..856df1b4d 100644 --- a/icons/outline/brand-nuxt.svg +++ b/icons/outline/brand-nuxt.svg @@ -16,5 +16,5 @@ unicode: "f0de" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-oauth.svg b/icons/outline/brand-oauth.svg index 2cbfec345..cdd16a344 100644 --- a/icons/outline/brand-oauth.svg +++ b/icons/outline/brand-oauth.svg @@ -15,6 +15,6 @@ unicode: "fa52" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-office.svg b/icons/outline/brand-office.svg index b487d64c0..d925b3333 100644 --- a/icons/outline/brand-office.svg +++ b/icons/outline/brand-office.svg @@ -15,5 +15,5 @@ unicode: "f398" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ok-ru.svg b/icons/outline/brand-ok-ru.svg index 43e34a9b6..757d50fa2 100644 --- a/icons/outline/brand-ok-ru.svg +++ b/icons/outline/brand-ok-ru.svg @@ -15,8 +15,8 @@ unicode: "f399" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-onedrive.svg b/icons/outline/brand-onedrive.svg index 2dddbc516..ea898721a 100644 --- a/icons/outline/brand-onedrive.svg +++ b/icons/outline/brand-onedrive.svg @@ -15,5 +15,5 @@ unicode: "f5d7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-onlyfans.svg b/icons/outline/brand-onlyfans.svg index 0e7979500..2741432fc 100644 --- a/icons/outline/brand-onlyfans.svg +++ b/icons/outline/brand-onlyfans.svg @@ -15,7 +15,7 @@ unicode: "f605" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-open-source.svg b/icons/outline/brand-open-source.svg index b4c6210f8..506d775ab 100644 --- a/icons/outline/brand-open-source.svg +++ b/icons/outline/brand-open-source.svg @@ -15,5 +15,5 @@ unicode: "edd0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-openvpn.svg b/icons/outline/brand-openvpn.svg index 3acc90fd6..25697f559 100644 --- a/icons/outline/brand-openvpn.svg +++ b/icons/outline/brand-openvpn.svg @@ -16,5 +16,5 @@ unicode: "f39a" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-opera.svg b/icons/outline/brand-opera.svg index d0347ed84..c303e4fa0 100644 --- a/icons/outline/brand-opera.svg +++ b/icons/outline/brand-opera.svg @@ -15,6 +15,6 @@ unicode: "ec21" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-parsinta.svg b/icons/outline/brand-parsinta.svg index 23d543d2b..9709d8328 100644 --- a/icons/outline/brand-parsinta.svg +++ b/icons/outline/brand-parsinta.svg @@ -17,5 +17,5 @@ unicode: "fc42" > - + diff --git a/icons/outline/brand-patreon.svg b/icons/outline/brand-patreon.svg index 8ec2a6e14..5326c442b 100644 --- a/icons/outline/brand-patreon.svg +++ b/icons/outline/brand-patreon.svg @@ -15,5 +15,5 @@ unicode: "edd2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-paypal.svg b/icons/outline/brand-paypal.svg index 556051266..06e4a0d70 100644 --- a/icons/outline/brand-paypal.svg +++ b/icons/outline/brand-paypal.svg @@ -15,5 +15,5 @@ unicode: "ec22" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-paypay.svg b/icons/outline/brand-paypay.svg index 379590392..ae733fff1 100644 --- a/icons/outline/brand-paypay.svg +++ b/icons/outline/brand-paypay.svg @@ -17,5 +17,5 @@ unicode: "f5ec" > - + diff --git a/icons/outline/brand-peanut.svg b/icons/outline/brand-peanut.svg index 59682f82b..f3223f1cc 100644 --- a/icons/outline/brand-peanut.svg +++ b/icons/outline/brand-peanut.svg @@ -15,5 +15,5 @@ unicode: "f39b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-pepsi.svg b/icons/outline/brand-pepsi.svg index 6464f77b5..d60ae6325 100644 --- a/icons/outline/brand-pepsi.svg +++ b/icons/outline/brand-pepsi.svg @@ -15,7 +15,7 @@ unicode: "f261" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-php.svg b/icons/outline/brand-php.svg index b6bf005bc..1fd9d468f 100644 --- a/icons/outline/brand-php.svg +++ b/icons/outline/brand-php.svg @@ -15,7 +15,7 @@ unicode: "ef72" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-picsart.svg b/icons/outline/brand-picsart.svg index 05763074b..187ae3c40 100644 --- a/icons/outline/brand-picsart.svg +++ b/icons/outline/brand-picsart.svg @@ -15,7 +15,7 @@ unicode: "f4d9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-pinterest.svg b/icons/outline/brand-pinterest.svg index cd3856e7d..2de84ae92 100644 --- a/icons/outline/brand-pinterest.svg +++ b/icons/outline/brand-pinterest.svg @@ -17,5 +17,5 @@ unicode: "ec8d" > - + diff --git a/icons/outline/brand-planetscale.svg b/icons/outline/brand-planetscale.svg index 3256d8e32..94336fbdf 100644 --- a/icons/outline/brand-planetscale.svg +++ b/icons/outline/brand-planetscale.svg @@ -15,7 +15,7 @@ unicode: "f78f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-pnpm.svg b/icons/outline/brand-pnpm.svg index 86c8509c4..29ca3e1b0 100644 --- a/icons/outline/brand-pnpm.svg +++ b/icons/outline/brand-pnpm.svg @@ -15,12 +15,12 @@ unicode: "fd77" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - - + + + + + + + + diff --git a/icons/outline/brand-powershell.svg b/icons/outline/brand-powershell.svg index 6510eef0c..76d63f485 100644 --- a/icons/outline/brand-powershell.svg +++ b/icons/outline/brand-powershell.svg @@ -15,7 +15,7 @@ unicode: "f5ed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-printables.svg b/icons/outline/brand-printables.svg index d35f658a9..2dfae11d4 100644 --- a/icons/outline/brand-printables.svg +++ b/icons/outline/brand-printables.svg @@ -15,5 +15,5 @@ unicode: "fd1b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-prisma.svg b/icons/outline/brand-prisma.svg index 3eb47edf5..e2cb1b62e 100644 --- a/icons/outline/brand-prisma.svg +++ b/icons/outline/brand-prisma.svg @@ -15,6 +15,6 @@ unicode: "f499" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-producthunt.svg b/icons/outline/brand-producthunt.svg index fd32c0031..a2f10e4c4 100644 --- a/icons/outline/brand-producthunt.svg +++ b/icons/outline/brand-producthunt.svg @@ -16,5 +16,5 @@ unicode: "edd3" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-pushbullet.svg b/icons/outline/brand-pushbullet.svg index 2a16fd2f5..7beb9d593 100644 --- a/icons/outline/brand-pushbullet.svg +++ b/icons/outline/brand-pushbullet.svg @@ -15,7 +15,7 @@ unicode: "f330" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-qq.svg b/icons/outline/brand-qq.svg index d327bd217..66b5054d6 100644 --- a/icons/outline/brand-qq.svg +++ b/icons/outline/brand-qq.svg @@ -15,13 +15,13 @@ unicode: "f606" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/brand-radix-ui.svg b/icons/outline/brand-radix-ui.svg index 20d8c9753..2f7c0d730 100644 --- a/icons/outline/brand-radix-ui.svg +++ b/icons/outline/brand-radix-ui.svg @@ -15,7 +15,7 @@ unicode: "f790" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-react.svg b/icons/outline/brand-react.svg index 163b48859..7b246da0b 100644 --- a/icons/outline/brand-react.svg +++ b/icons/outline/brand-react.svg @@ -21,5 +21,5 @@ unicode: "f34c" - + diff --git a/icons/outline/brand-reason.svg b/icons/outline/brand-reason.svg index 0c5870f40..12df46a9d 100644 --- a/icons/outline/brand-reason.svg +++ b/icons/outline/brand-reason.svg @@ -15,7 +15,7 @@ version: "1.96" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-reddit.svg b/icons/outline/brand-reddit.svg index bab832a47..30b43f63f 100644 --- a/icons/outline/brand-reddit.svg +++ b/icons/outline/brand-reddit.svg @@ -15,10 +15,10 @@ unicode: "ec8e" stroke-linecap="round" stroke-linejoin="round" > - + - - - + + + diff --git a/icons/outline/brand-redhat.svg b/icons/outline/brand-redhat.svg index 2fef9da72..35686be60 100644 --- a/icons/outline/brand-redhat.svg +++ b/icons/outline/brand-redhat.svg @@ -15,6 +15,6 @@ unicode: "f331" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-redux.svg b/icons/outline/brand-redux.svg index 5a02fed4a..4d69652d4 100644 --- a/icons/outline/brand-redux.svg +++ b/icons/outline/brand-redux.svg @@ -18,7 +18,7 @@ unicode: "f3a8" - - - + + + diff --git a/icons/outline/brand-revolut.svg b/icons/outline/brand-revolut.svg index 4822983a9..dcd021f74 100644 --- a/icons/outline/brand-revolut.svg +++ b/icons/outline/brand-revolut.svg @@ -15,6 +15,6 @@ unicode: "f4da" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-rumble.svg b/icons/outline/brand-rumble.svg index 1c6aa3ac1..93db6c325 100644 --- a/icons/outline/brand-rumble.svg +++ b/icons/outline/brand-rumble.svg @@ -15,6 +15,6 @@ unicode: "fad1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-rust.svg b/icons/outline/brand-rust.svg index 0c9a90b03..62e8ff265 100644 --- a/icons/outline/brand-rust.svg +++ b/icons/outline/brand-rust.svg @@ -15,8 +15,8 @@ unicode: "fa53" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-safari.svg b/icons/outline/brand-safari.svg index 63f9f3675..b44b887c2 100644 --- a/icons/outline/brand-safari.svg +++ b/icons/outline/brand-safari.svg @@ -16,5 +16,5 @@ unicode: "ec23" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-samsungpass.svg b/icons/outline/brand-samsungpass.svg index 486521bbf..f00b1d101 100644 --- a/icons/outline/brand-samsungpass.svg +++ b/icons/outline/brand-samsungpass.svg @@ -15,7 +15,7 @@ unicode: "f4db" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-sass.svg b/icons/outline/brand-sass.svg index 0affd02c8..efa5a29fa 100644 --- a/icons/outline/brand-sass.svg +++ b/icons/outline/brand-sass.svg @@ -15,6 +15,6 @@ unicode: "edd4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-sharik.svg b/icons/outline/brand-sharik.svg index 803fba009..3630d7cef 100644 --- a/icons/outline/brand-sharik.svg +++ b/icons/outline/brand-sharik.svg @@ -15,5 +15,5 @@ unicode: "f4dc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-shazam.svg b/icons/outline/brand-shazam.svg index 261f236b1..55b9e423e 100644 --- a/icons/outline/brand-shazam.svg +++ b/icons/outline/brand-shazam.svg @@ -17,5 +17,5 @@ unicode: "edd6" > - + diff --git a/icons/outline/brand-shopee.svg b/icons/outline/brand-shopee.svg index 6ebd8cd31..83c763114 100644 --- a/icons/outline/brand-shopee.svg +++ b/icons/outline/brand-shopee.svg @@ -15,7 +15,7 @@ unicode: "f252" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-sketch.svg b/icons/outline/brand-sketch.svg index ff197a113..43d92197e 100644 --- a/icons/outline/brand-sketch.svg +++ b/icons/outline/brand-sketch.svg @@ -15,5 +15,5 @@ unicode: "ec24" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-skype.svg b/icons/outline/brand-skype.svg index d5bde4407..c761b229a 100644 --- a/icons/outline/brand-skype.svg +++ b/icons/outline/brand-skype.svg @@ -15,6 +15,6 @@ unicode: "ed02" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-snapchat.svg b/icons/outline/brand-snapchat.svg index 7aafe08b8..0296e82c1 100644 --- a/icons/outline/brand-snapchat.svg +++ b/icons/outline/brand-snapchat.svg @@ -15,5 +15,5 @@ unicode: "ec25" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-snapseed.svg b/icons/outline/brand-snapseed.svg index 33886700d..74b5bf391 100644 --- a/icons/outline/brand-snapseed.svg +++ b/icons/outline/brand-snapseed.svg @@ -15,6 +15,6 @@ unicode: "f253" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-snowflake.svg b/icons/outline/brand-snowflake.svg index 0dd15c532..9df012670 100644 --- a/icons/outline/brand-snowflake.svg +++ b/icons/outline/brand-snowflake.svg @@ -21,5 +21,5 @@ unicode: "f615" - + diff --git a/icons/outline/brand-socket-io.svg b/icons/outline/brand-socket-io.svg index 352d86d0e..83206b379 100644 --- a/icons/outline/brand-socket-io.svg +++ b/icons/outline/brand-socket-io.svg @@ -15,7 +15,7 @@ unicode: "f49b" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-solidjs.svg b/icons/outline/brand-solidjs.svg index ad9902e83..28daaf0fa 100644 --- a/icons/outline/brand-solidjs.svg +++ b/icons/outline/brand-solidjs.svg @@ -15,7 +15,7 @@ unicode: "f5ee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-soundcloud.svg b/icons/outline/brand-soundcloud.svg index 14de6aca0..7d34c2cea 100644 --- a/icons/outline/brand-soundcloud.svg +++ b/icons/outline/brand-soundcloud.svg @@ -15,7 +15,7 @@ unicode: "ed6e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-spacehey.svg b/icons/outline/brand-spacehey.svg index a5fa34dc8..aa760de2f 100644 --- a/icons/outline/brand-spacehey.svg +++ b/icons/outline/brand-spacehey.svg @@ -15,7 +15,7 @@ unicode: "f4fc" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-spotify.svg b/icons/outline/brand-spotify.svg index d17e12faa..99cacad41 100644 --- a/icons/outline/brand-spotify.svg +++ b/icons/outline/brand-spotify.svg @@ -15,7 +15,7 @@ unicode: "ed03" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-stackshare.svg b/icons/outline/brand-stackshare.svg index 9d4edaecb..8988c174d 100644 --- a/icons/outline/brand-stackshare.svg +++ b/icons/outline/brand-stackshare.svg @@ -15,9 +15,9 @@ unicode: "f607" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-steam.svg b/icons/outline/brand-steam.svg index 64f2d4858..112769ae7 100644 --- a/icons/outline/brand-steam.svg +++ b/icons/outline/brand-steam.svg @@ -15,6 +15,6 @@ unicode: "ed6f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-storj.svg b/icons/outline/brand-storj.svg index d1a2ae234..15c556d95 100644 --- a/icons/outline/brand-storj.svg +++ b/icons/outline/brand-storj.svg @@ -15,14 +15,14 @@ unicode: "fa54" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - - + + + + + + + + diff --git a/icons/outline/brand-storybook.svg b/icons/outline/brand-storybook.svg index 84b108d88..09dd44915 100644 --- a/icons/outline/brand-storybook.svg +++ b/icons/outline/brand-storybook.svg @@ -15,7 +15,7 @@ unicode: "f332" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-storytel.svg b/icons/outline/brand-storytel.svg index 5ff16f2fd..beeca569f 100644 --- a/icons/outline/brand-storytel.svg +++ b/icons/outline/brand-storytel.svg @@ -15,5 +15,5 @@ unicode: "f608" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-stripe.svg b/icons/outline/brand-stripe.svg index b2a874095..af84702d9 100644 --- a/icons/outline/brand-stripe.svg +++ b/icons/outline/brand-stripe.svg @@ -15,5 +15,5 @@ unicode: "edd7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-sublime-text.svg b/icons/outline/brand-sublime-text.svg index 736849cbb..acbff3845 100644 --- a/icons/outline/brand-sublime-text.svg +++ b/icons/outline/brand-sublime-text.svg @@ -15,8 +15,8 @@ unicode: "ef74" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-sugarizer.svg b/icons/outline/brand-sugarizer.svg index bd6011947..7acd441e9 100644 --- a/icons/outline/brand-sugarizer.svg +++ b/icons/outline/brand-sugarizer.svg @@ -15,6 +15,6 @@ unicode: "f7a5" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-supabase.svg b/icons/outline/brand-supabase.svg index 7e7de780c..8e7c4bd14 100644 --- a/icons/outline/brand-supabase.svg +++ b/icons/outline/brand-supabase.svg @@ -15,5 +15,5 @@ unicode: "f6d3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-superhuman.svg b/icons/outline/brand-superhuman.svg index e311d3465..3cb62caa8 100644 --- a/icons/outline/brand-superhuman.svg +++ b/icons/outline/brand-superhuman.svg @@ -16,6 +16,6 @@ unicode: "f50c" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-supernova.svg b/icons/outline/brand-supernova.svg index 5d81091f8..730c23d87 100644 --- a/icons/outline/brand-supernova.svg +++ b/icons/outline/brand-supernova.svg @@ -15,7 +15,7 @@ unicode: "f49c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-surfshark.svg b/icons/outline/brand-surfshark.svg index 5a510069f..9f44e8d92 100644 --- a/icons/outline/brand-surfshark.svg +++ b/icons/outline/brand-surfshark.svg @@ -15,6 +15,6 @@ unicode: "f255" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-swift.svg b/icons/outline/brand-swift.svg index db5929c67..3c63f4d93 100644 --- a/icons/outline/brand-swift.svg +++ b/icons/outline/brand-swift.svg @@ -15,5 +15,5 @@ unicode: "fa55" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-symfony.svg b/icons/outline/brand-symfony.svg index eeb18801b..38a33fba8 100644 --- a/icons/outline/brand-symfony.svg +++ b/icons/outline/brand-symfony.svg @@ -17,5 +17,5 @@ unicode: "f616" > - + diff --git a/icons/outline/brand-tabler.svg b/icons/outline/brand-tabler.svg index 46f1dda8a..58629646c 100644 --- a/icons/outline/brand-tabler.svg +++ b/icons/outline/brand-tabler.svg @@ -17,5 +17,5 @@ unicode: "ec8f" > - + diff --git a/icons/outline/brand-tabnine.svg b/icons/outline/brand-tabnine.svg index c800b5ed1..38b1ae629 100644 --- a/icons/outline/brand-tabnine.svg +++ b/icons/outline/brand-tabnine.svg @@ -15,5 +15,5 @@ version: "3.36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-tailwind.svg b/icons/outline/brand-tailwind.svg index 4fab1854e..3dae721b0 100644 --- a/icons/outline/brand-tailwind.svg +++ b/icons/outline/brand-tailwind.svg @@ -15,5 +15,5 @@ unicode: "eca1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-teams.svg b/icons/outline/brand-teams.svg index a196252ee..1a745ea44 100644 --- a/icons/outline/brand-teams.svg +++ b/icons/outline/brand-teams.svg @@ -15,7 +15,7 @@ unicode: "fadf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ted.svg b/icons/outline/brand-ted.svg index 415fb4a09..b5d2c713b 100644 --- a/icons/outline/brand-ted.svg +++ b/icons/outline/brand-ted.svg @@ -19,5 +19,5 @@ unicode: "f658" - + diff --git a/icons/outline/brand-tesla.svg b/icons/outline/brand-tesla.svg index 32a8b5cc2..20998cadb 100644 --- a/icons/outline/brand-tesla.svg +++ b/icons/outline/brand-tesla.svg @@ -15,6 +15,6 @@ unicode: "10099" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-tether.svg b/icons/outline/brand-tether.svg index 2cec65d02..de41a1424 100644 --- a/icons/outline/brand-tether.svg +++ b/icons/outline/brand-tether.svg @@ -15,7 +15,7 @@ unicode: "f5a3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-thingiverse.svg b/icons/outline/brand-thingiverse.svg index aeba30a52..be51e60bb 100644 --- a/icons/outline/brand-thingiverse.svg +++ b/icons/outline/brand-thingiverse.svg @@ -15,6 +15,6 @@ unicode: "fd1c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-threejs.svg b/icons/outline/brand-threejs.svg index 2b4c26b4a..655ecde03 100644 --- a/icons/outline/brand-threejs.svg +++ b/icons/outline/brand-threejs.svg @@ -15,8 +15,8 @@ unicode: "f5f0" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/brand-tidal.svg b/icons/outline/brand-tidal.svg index dcc30b9a6..a75a6ba67 100644 --- a/icons/outline/brand-tidal.svg +++ b/icons/outline/brand-tidal.svg @@ -15,5 +15,5 @@ unicode: "ed70" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-tiktok.svg b/icons/outline/brand-tiktok.svg index 98e748cd1..1481298a6 100644 --- a/icons/outline/brand-tiktok.svg +++ b/icons/outline/brand-tiktok.svg @@ -15,5 +15,5 @@ unicode: "ec73" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-tinder.svg b/icons/outline/brand-tinder.svg index a543fb532..1cf162b2a 100644 --- a/icons/outline/brand-tinder.svg +++ b/icons/outline/brand-tinder.svg @@ -15,5 +15,5 @@ unicode: "ed71" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-topbuzz.svg b/icons/outline/brand-topbuzz.svg index c58fd8a67..e53c27294 100644 --- a/icons/outline/brand-topbuzz.svg +++ b/icons/outline/brand-topbuzz.svg @@ -15,5 +15,5 @@ unicode: "f50d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-torchain.svg b/icons/outline/brand-torchain.svg index 3c120b452..ffbd201c1 100644 --- a/icons/outline/brand-torchain.svg +++ b/icons/outline/brand-torchain.svg @@ -15,6 +15,6 @@ unicode: "f5a4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-toyota.svg b/icons/outline/brand-toyota.svg index 11b9198cd..dad8a0a0b 100644 --- a/icons/outline/brand-toyota.svg +++ b/icons/outline/brand-toyota.svg @@ -15,7 +15,7 @@ unicode: "f262" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-trello.svg b/icons/outline/brand-trello.svg index 9c53bfaad..e1839dbb4 100644 --- a/icons/outline/brand-trello.svg +++ b/icons/outline/brand-trello.svg @@ -15,7 +15,7 @@ unicode: "f39d" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/brand-tripadvisor.svg b/icons/outline/brand-tripadvisor.svg index 07c39204a..78ce628eb 100644 --- a/icons/outline/brand-tripadvisor.svg +++ b/icons/outline/brand-tripadvisor.svg @@ -15,10 +15,10 @@ unicode: "f002" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/brand-twilio.svg b/icons/outline/brand-twilio.svg index 0e11ff0d7..1645c01da 100644 --- a/icons/outline/brand-twilio.svg +++ b/icons/outline/brand-twilio.svg @@ -15,9 +15,9 @@ unicode: "f617" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/brand-twitch.svg b/icons/outline/brand-twitch.svg index 1e6a571f7..2e4fbc0a0 100644 --- a/icons/outline/brand-twitch.svg +++ b/icons/outline/brand-twitch.svg @@ -15,7 +15,7 @@ unicode: "ed05" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-twitter.svg b/icons/outline/brand-twitter.svg index cf21ca5ca..7a2467457 100644 --- a/icons/outline/brand-twitter.svg +++ b/icons/outline/brand-twitter.svg @@ -15,5 +15,5 @@ unicode: "ec27" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-typescript.svg b/icons/outline/brand-typescript.svg index ff144dd2c..8ccc20df2 100644 --- a/icons/outline/brand-typescript.svg +++ b/icons/outline/brand-typescript.svg @@ -18,5 +18,5 @@ unicode: "f5f1" - + diff --git a/icons/outline/brand-uber.svg b/icons/outline/brand-uber.svg index 9d597c6ab..4cd745555 100644 --- a/icons/outline/brand-uber.svg +++ b/icons/outline/brand-uber.svg @@ -15,7 +15,7 @@ unicode: "ef75" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-ubuntu.svg b/icons/outline/brand-ubuntu.svg index 4e13645ea..a5b2f2f5f 100644 --- a/icons/outline/brand-ubuntu.svg +++ b/icons/outline/brand-ubuntu.svg @@ -15,8 +15,8 @@ unicode: "ef59" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/brand-unsplash.svg b/icons/outline/brand-unsplash.svg index 82e61e75b..e8b41fe40 100644 --- a/icons/outline/brand-unsplash.svg +++ b/icons/outline/brand-unsplash.svg @@ -15,5 +15,6 @@ unicode: "edd8" stroke-linecap="round" stroke-linejoin="round" > - + + diff --git a/icons/outline/brand-valorant.svg b/icons/outline/brand-valorant.svg index 9c8413de7..1032d0274 100644 --- a/icons/outline/brand-valorant.svg +++ b/icons/outline/brand-valorant.svg @@ -15,6 +15,6 @@ unicode: "f39f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-vercel.svg b/icons/outline/brand-vercel.svg index 38adf546f..8876a5cd1 100644 --- a/icons/outline/brand-vercel.svg +++ b/icons/outline/brand-vercel.svg @@ -15,5 +15,5 @@ unicode: "ef24" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vimeo.svg b/icons/outline/brand-vimeo.svg index c24099960..539063d7b 100644 --- a/icons/outline/brand-vimeo.svg +++ b/icons/outline/brand-vimeo.svg @@ -15,5 +15,5 @@ unicode: "ed06" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vinted.svg b/icons/outline/brand-vinted.svg index 69bdb3444..16e8ca049 100644 --- a/icons/outline/brand-vinted.svg +++ b/icons/outline/brand-vinted.svg @@ -15,5 +15,5 @@ unicode: "f20f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-visual-studio.svg b/icons/outline/brand-visual-studio.svg index cc9874abc..492ac50ca 100644 --- a/icons/outline/brand-visual-studio.svg +++ b/icons/outline/brand-visual-studio.svg @@ -15,5 +15,5 @@ unicode: "ef76" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vite.svg b/icons/outline/brand-vite.svg index 35cfe756c..57d9f036c 100644 --- a/icons/outline/brand-vite.svg +++ b/icons/outline/brand-vite.svg @@ -15,6 +15,6 @@ unicode: "f5f2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vk.svg b/icons/outline/brand-vk.svg index 82ad906ac..7bdee6ef4 100644 --- a/icons/outline/brand-vk.svg +++ b/icons/outline/brand-vk.svg @@ -15,5 +15,5 @@ unicode: "ed72" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vlc.svg b/icons/outline/brand-vlc.svg index 281d0e2c2..fd813e830 100644 --- a/icons/outline/brand-vlc.svg +++ b/icons/outline/brand-vlc.svg @@ -15,6 +15,6 @@ unicode: "fa78" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-volkswagen.svg b/icons/outline/brand-volkswagen.svg index 9c1565999..d8cc4385b 100644 --- a/icons/outline/brand-volkswagen.svg +++ b/icons/outline/brand-volkswagen.svg @@ -15,7 +15,7 @@ unicode: "f50e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-vsco.svg b/icons/outline/brand-vsco.svg index 9f9db5ea8..494ea1827 100644 --- a/icons/outline/brand-vsco.svg +++ b/icons/outline/brand-vsco.svg @@ -15,8 +15,8 @@ unicode: "f334" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-vscode.svg b/icons/outline/brand-vscode.svg index b32878817..f006901a1 100644 --- a/icons/outline/brand-vscode.svg +++ b/icons/outline/brand-vscode.svg @@ -15,7 +15,7 @@ unicode: "f3a0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-waze.svg b/icons/outline/brand-waze.svg index fca5a9ed5..d1ee54f51 100644 --- a/icons/outline/brand-waze.svg +++ b/icons/outline/brand-waze.svg @@ -17,8 +17,8 @@ unicode: "f5d8" > - - + + diff --git a/icons/outline/brand-webflow.svg b/icons/outline/brand-webflow.svg index 00032c21a..e14681b3a 100644 --- a/icons/outline/brand-webflow.svg +++ b/icons/outline/brand-webflow.svg @@ -15,5 +15,5 @@ unicode: "f2d2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-wechat.svg b/icons/outline/brand-wechat.svg index a067fca90..fc44fb448 100644 --- a/icons/outline/brand-wechat.svg +++ b/icons/outline/brand-wechat.svg @@ -15,7 +15,7 @@ unicode: "f5f3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-weibo.svg b/icons/outline/brand-weibo.svg index 0aed7c2ee..c51a47612 100644 --- a/icons/outline/brand-weibo.svg +++ b/icons/outline/brand-weibo.svg @@ -15,6 +15,6 @@ unicode: "f609" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-windows.svg b/icons/outline/brand-windows.svg index b9db73ccf..1c427392e 100644 --- a/icons/outline/brand-windows.svg +++ b/icons/outline/brand-windows.svg @@ -15,7 +15,7 @@ unicode: "ecd8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-wordpress.svg b/icons/outline/brand-wordpress.svg index 6f16f0461..423ea57a2 100644 --- a/icons/outline/brand-wordpress.svg +++ b/icons/outline/brand-wordpress.svg @@ -19,6 +19,6 @@ unicode: "f2d3" - - + + diff --git a/icons/outline/brand-x.svg b/icons/outline/brand-x.svg index 6183d06b0..3f39f78cb 100644 --- a/icons/outline/brand-x.svg +++ b/icons/outline/brand-x.svg @@ -15,6 +15,6 @@ unicode: "fc0f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-xamarin.svg b/icons/outline/brand-xamarin.svg index 8ea645335..be7537518 100644 --- a/icons/outline/brand-xamarin.svg +++ b/icons/outline/brand-xamarin.svg @@ -15,7 +15,7 @@ unicode: "fa7a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-xbox.svg b/icons/outline/brand-xbox.svg index daa5510d0..cf3b8ba34 100644 --- a/icons/outline/brand-xbox.svg +++ b/icons/outline/brand-xbox.svg @@ -15,7 +15,7 @@ unicode: "f298" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-yarn.svg b/icons/outline/brand-yarn.svg index c3726a5ec..6c65028f4 100644 --- a/icons/outline/brand-yarn.svg +++ b/icons/outline/brand-yarn.svg @@ -15,5 +15,5 @@ unicode: "fd79" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-yatse.svg b/icons/outline/brand-yatse.svg index 180d770fd..ad40134cd 100644 --- a/icons/outline/brand-yatse.svg +++ b/icons/outline/brand-yatse.svg @@ -15,5 +15,5 @@ unicode: "f213" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-ycombinator.svg b/icons/outline/brand-ycombinator.svg index d7ea984c0..327407b1c 100644 --- a/icons/outline/brand-ycombinator.svg +++ b/icons/outline/brand-ycombinator.svg @@ -15,7 +15,7 @@ unicode: "edd9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-youtube-kids.svg b/icons/outline/brand-youtube-kids.svg index f9b9ea998..e7b50e9ff 100644 --- a/icons/outline/brand-youtube-kids.svg +++ b/icons/outline/brand-youtube-kids.svg @@ -15,6 +15,6 @@ unicode: "f214" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-youtube.svg b/icons/outline/brand-youtube.svg index c131452fe..e636729a5 100644 --- a/icons/outline/brand-youtube.svg +++ b/icons/outline/brand-youtube.svg @@ -15,6 +15,6 @@ unicode: "ec90" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-zalando.svg b/icons/outline/brand-zalando.svg index 60f37dbf5..e0ede7bfe 100644 --- a/icons/outline/brand-zalando.svg +++ b/icons/outline/brand-zalando.svg @@ -15,5 +15,5 @@ unicode: "f49e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-zeit.svg b/icons/outline/brand-zeit.svg index 1e2b275e2..9ec3c9bf4 100644 --- a/icons/outline/brand-zeit.svg +++ b/icons/outline/brand-zeit.svg @@ -15,5 +15,5 @@ unicode: "f335" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-zhihu.svg b/icons/outline/brand-zhihu.svg index 31959af52..f858ef462 100644 --- a/icons/outline/brand-zhihu.svg +++ b/icons/outline/brand-zhihu.svg @@ -15,7 +15,7 @@ unicode: "f60a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brand-zoom.svg b/icons/outline/brand-zoom.svg index e3825f116..a45d3f96e 100644 --- a/icons/outline/brand-zoom.svg +++ b/icons/outline/brand-zoom.svg @@ -15,6 +15,6 @@ unicode: "f215" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-zulip.svg b/icons/outline/brand-zulip.svg index c4db66bfb..c3b834cab 100644 --- a/icons/outline/brand-zulip.svg +++ b/icons/outline/brand-zulip.svg @@ -15,6 +15,6 @@ unicode: "f4de" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brand-zwift.svg b/icons/outline/brand-zwift.svg index 6306934f0..573ee26f2 100644 --- a/icons/outline/brand-zwift.svg +++ b/icons/outline/brand-zwift.svg @@ -15,5 +15,5 @@ unicode: "f216" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bread.svg b/icons/outline/bread.svg index 7759442ce..953258f14 100644 --- a/icons/outline/bread.svg +++ b/icons/outline/bread.svg @@ -15,5 +15,5 @@ unicode: "efa3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/briefcase-2.svg b/icons/outline/briefcase-2.svg index c1f353e69..611fe27f9 100644 --- a/icons/outline/briefcase-2.svg +++ b/icons/outline/briefcase-2.svg @@ -15,6 +15,6 @@ unicode: "fb03" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/briefcase.svg b/icons/outline/briefcase.svg index 208b9d627..e02a6ce93 100644 --- a/icons/outline/briefcase.svg +++ b/icons/outline/briefcase.svg @@ -15,7 +15,7 @@ unicode: "ea46" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brightness-2.svg b/icons/outline/brightness-2.svg index ab3bb07f4..3b138abcc 100644 --- a/icons/outline/brightness-2.svg +++ b/icons/outline/brightness-2.svg @@ -15,6 +15,6 @@ unicode: "ee19" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brightness-auto.svg b/icons/outline/brightness-auto.svg index fbfbfa68e..67e7377d8 100644 --- a/icons/outline/brightness-auto.svg +++ b/icons/outline/brightness-auto.svg @@ -15,7 +15,7 @@ unicode: "fd99" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brightness-down.svg b/icons/outline/brightness-down.svg index 53cde3c6e..4a830f489 100644 --- a/icons/outline/brightness-down.svg +++ b/icons/outline/brightness-down.svg @@ -15,7 +15,7 @@ unicode: "eb7d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brightness-half.svg b/icons/outline/brightness-half.svg index e455fb29c..52c317db3 100644 --- a/icons/outline/brightness-half.svg +++ b/icons/outline/brightness-half.svg @@ -15,6 +15,6 @@ unicode: "ee1a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/brightness-up.svg b/icons/outline/brightness-up.svg index 7d1992e6b..9f85abe98 100644 --- a/icons/outline/brightness-up.svg +++ b/icons/outline/brightness-up.svg @@ -15,7 +15,7 @@ unicode: "eb7e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/brightness.svg b/icons/outline/brightness.svg index aefe29d22..3e36f20dd 100644 --- a/icons/outline/brightness.svg +++ b/icons/outline/brightness.svg @@ -15,7 +15,7 @@ unicode: "eb7f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/broadcast.svg b/icons/outline/broadcast.svg index d6f8ae4a0..da50f6f45 100644 --- a/icons/outline/broadcast.svg +++ b/icons/outline/broadcast.svg @@ -17,5 +17,5 @@ unicode: "f1e9" > - + diff --git a/icons/outline/browser-check.svg b/icons/outline/browser-check.svg index 87e3a5531..cad92a262 100644 --- a/icons/outline/browser-check.svg +++ b/icons/outline/browser-check.svg @@ -15,7 +15,7 @@ unicode: "efd6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/browser-x.svg b/icons/outline/browser-x.svg index 1200e8e33..89dd81258 100644 --- a/icons/outline/browser-x.svg +++ b/icons/outline/browser-x.svg @@ -15,7 +15,7 @@ unicode: "efd8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/browser.svg b/icons/outline/browser.svg index 18d3dffff..7d8e2c45a 100644 --- a/icons/outline/browser.svg +++ b/icons/outline/browser.svg @@ -16,6 +16,6 @@ unicode: "ebb7" stroke-linejoin="round" > - + diff --git a/icons/outline/brush-off.svg b/icons/outline/brush-off.svg index f7b0fa40c..fc1717bb3 100644 --- a/icons/outline/brush-off.svg +++ b/icons/outline/brush-off.svg @@ -15,7 +15,7 @@ unicode: "f0c2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bucket-droplet.svg b/icons/outline/bucket-droplet.svg index e78d3dee1..bf3534a89 100644 --- a/icons/outline/bucket-droplet.svg +++ b/icons/outline/bucket-droplet.svg @@ -15,7 +15,7 @@ unicode: "f56a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/bucket.svg b/icons/outline/bucket.svg index 7a5170c0a..903d9d1ec 100644 --- a/icons/outline/bucket.svg +++ b/icons/outline/bucket.svg @@ -15,6 +15,6 @@ unicode: "ea47" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/building-broadcast-tower.svg b/icons/outline/building-broadcast-tower.svg index f684e394b..6611a214e 100644 --- a/icons/outline/building-broadcast-tower.svg +++ b/icons/outline/building-broadcast-tower.svg @@ -15,7 +15,7 @@ unicode: "f4be" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/building-carousel.svg b/icons/outline/building-carousel.svg index a846a9f0b..339650569 100644 --- a/icons/outline/building-carousel.svg +++ b/icons/outline/building-carousel.svg @@ -15,11 +15,11 @@ unicode: "ed87" stroke-linecap="round" stroke-linejoin="round" > - - - - - - + + + + + + diff --git a/icons/outline/building-castle.svg b/icons/outline/building-castle.svg index 8a3ac6594..41fde6739 100644 --- a/icons/outline/building-castle.svg +++ b/icons/outline/building-castle.svg @@ -15,6 +15,6 @@ unicode: "ed88" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/building-cog.svg b/icons/outline/building-cog.svg index 33eb23c3d..86c77e570 100644 --- a/icons/outline/building-cog.svg +++ b/icons/outline/building-cog.svg @@ -22,7 +22,7 @@ unicode: "10062" - + diff --git a/icons/outline/building-cottage.svg b/icons/outline/building-cottage.svg index 46e9d6cc4..19554aa10 100644 --- a/icons/outline/building-cottage.svg +++ b/icons/outline/building-cottage.svg @@ -17,6 +17,6 @@ unicode: "ee1b" > - + diff --git a/icons/outline/building-estate.svg b/icons/outline/building-estate.svg index 1cc3e0f5c..329ed64ca 100644 --- a/icons/outline/building-estate.svg +++ b/icons/outline/building-estate.svg @@ -17,7 +17,7 @@ unicode: "f5a5" > - + diff --git a/icons/outline/building-fortress.svg b/icons/outline/building-fortress.svg index 54cb8a585..a20e92cee 100644 --- a/icons/outline/building-fortress.svg +++ b/icons/outline/building-fortress.svg @@ -15,11 +15,11 @@ unicode: "ed89" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/building-lighthouse.svg b/icons/outline/building-lighthouse.svg index 57b4e2e8e..1de010f9e 100644 --- a/icons/outline/building-lighthouse.svg +++ b/icons/outline/building-lighthouse.svg @@ -15,7 +15,7 @@ unicode: "ed8a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/building-mosque.svg b/icons/outline/building-mosque.svg index 3e23b4ac7..041b33812 100644 --- a/icons/outline/building-mosque.svg +++ b/icons/outline/building-mosque.svg @@ -20,8 +20,8 @@ unicode: "fa57" - - + + diff --git a/icons/outline/building-stadium.svg b/icons/outline/building-stadium.svg index 9ceea4a2d..6dbcf004e 100644 --- a/icons/outline/building-stadium.svg +++ b/icons/outline/building-stadium.svg @@ -15,7 +15,7 @@ unicode: "f641" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/building-tunnel.svg b/icons/outline/building-tunnel.svg index 023e68b22..1142d0ef6 100644 --- a/icons/outline/building-tunnel.svg +++ b/icons/outline/building-tunnel.svg @@ -15,7 +15,7 @@ unicode: "f5a6" stroke-linecap="round" stroke-linejoin="round" > - + @@ -23,5 +23,5 @@ unicode: "f5a6" - + diff --git a/icons/outline/building-wind-turbine.svg b/icons/outline/building-wind-turbine.svg index d13c67d99..72b07c55f 100644 --- a/icons/outline/building-wind-turbine.svg +++ b/icons/outline/building-wind-turbine.svg @@ -15,7 +15,7 @@ unicode: "f4c0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/buildings.svg b/icons/outline/buildings.svg index 6371feae6..c332e2e5c 100644 --- a/icons/outline/buildings.svg +++ b/icons/outline/buildings.svg @@ -18,12 +18,12 @@ unicode: "ff40" - - - - - - - - + + + + + + + + diff --git a/icons/outline/burger.svg b/icons/outline/burger.svg index c124a294c..81e83516b 100644 --- a/icons/outline/burger.svg +++ b/icons/outline/burger.svg @@ -15,7 +15,7 @@ unicode: "fcb4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/bus-off.svg b/icons/outline/bus-off.svg index 949711659..33af89f0b 100644 --- a/icons/outline/bus-off.svg +++ b/icons/outline/bus-off.svg @@ -15,7 +15,7 @@ unicode: "f3ce" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/bus-stop.svg b/icons/outline/bus-stop.svg index 58d276a55..4ce23d418 100644 --- a/icons/outline/bus-stop.svg +++ b/icons/outline/bus-stop.svg @@ -15,8 +15,8 @@ unicode: "f2d4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/bus.svg b/icons/outline/bus.svg index 732df99ca..78ec6f5f0 100644 --- a/icons/outline/bus.svg +++ b/icons/outline/bus.svg @@ -15,8 +15,8 @@ unicode: "ebe4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/businessplan.svg b/icons/outline/businessplan.svg index 806613f0d..6f9746256 100644 --- a/icons/outline/businessplan.svg +++ b/icons/outline/businessplan.svg @@ -15,7 +15,7 @@ unicode: "ee1e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/butterfly.svg b/icons/outline/butterfly.svg index a540981db..9c613bc39 100644 --- a/icons/outline/butterfly.svg +++ b/icons/outline/butterfly.svg @@ -15,7 +15,7 @@ unicode: "efd9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cake-roll.svg b/icons/outline/cake-roll.svg index b124d9948..d5bc2e26a 100644 --- a/icons/outline/cake-roll.svg +++ b/icons/outline/cake-roll.svg @@ -17,5 +17,5 @@ version: "3.24" > - + diff --git a/icons/outline/cake.svg b/icons/outline/cake.svg index 1b46cba0c..30893cdd5 100644 --- a/icons/outline/cake.svg +++ b/icons/outline/cake.svg @@ -15,7 +15,7 @@ unicode: "f00f" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/calculator.svg b/icons/outline/calculator.svg index 7c33f4fb8..94563f1ee 100644 --- a/icons/outline/calculator.svg +++ b/icons/outline/calculator.svg @@ -15,8 +15,8 @@ unicode: "eb80" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/calendar-cancel.svg b/icons/outline/calendar-cancel.svg index c2826e805..d205455c6 100644 --- a/icons/outline/calendar-cancel.svg +++ b/icons/outline/calendar-cancel.svg @@ -19,6 +19,6 @@ unicode: "f823" - + diff --git a/icons/outline/calendar-clock.svg b/icons/outline/calendar-clock.svg index c505b7961..aa503cac9 100644 --- a/icons/outline/calendar-clock.svg +++ b/icons/outline/calendar-clock.svg @@ -19,6 +19,6 @@ unicode: "fd2e" - + diff --git a/icons/outline/calendar-cog.svg b/icons/outline/calendar-cog.svg index 19111a0fa..40b9e0a0a 100644 --- a/icons/outline/calendar-cog.svg +++ b/icons/outline/calendar-cog.svg @@ -19,7 +19,7 @@ unicode: "f826" - + diff --git a/icons/outline/calendar-dot.svg b/icons/outline/calendar-dot.svg index c973ad46f..d4d99f9a2 100644 --- a/icons/outline/calendar-dot.svg +++ b/icons/outline/calendar-dot.svg @@ -19,5 +19,5 @@ unicode: "fd3e" - + diff --git a/icons/outline/calendar-due.svg b/icons/outline/calendar-due.svg index 5a6ad56ae..851953e57 100644 --- a/icons/outline/calendar-due.svg +++ b/icons/outline/calendar-due.svg @@ -15,9 +15,9 @@ unicode: "f621" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/calendar-event.svg b/icons/outline/calendar-event.svg index 75520ef8b..d3b85c2cf 100644 --- a/icons/outline/calendar-event.svg +++ b/icons/outline/calendar-event.svg @@ -15,9 +15,9 @@ unicode: "ea52" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/calendar-heart.svg b/icons/outline/calendar-heart.svg index c8dcfb645..e9041883f 100644 --- a/icons/outline/calendar-heart.svg +++ b/icons/outline/calendar-heart.svg @@ -19,5 +19,5 @@ unicode: "f82a" - + diff --git a/icons/outline/calendar-month.svg b/icons/outline/calendar-month.svg index d6cc44892..5bfc20ca6 100644 --- a/icons/outline/calendar-month.svg +++ b/icons/outline/calendar-month.svg @@ -15,7 +15,7 @@ unicode: "fd2f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/calendar-pin.svg b/icons/outline/calendar-pin.svg index 1030fb3b2..40207cbc6 100644 --- a/icons/outline/calendar-pin.svg +++ b/icons/outline/calendar-pin.svg @@ -17,7 +17,7 @@ unicode: "f82c" > - + diff --git a/icons/outline/calendar-sad.svg b/icons/outline/calendar-sad.svg index 2b07fd997..36394995e 100644 --- a/icons/outline/calendar-sad.svg +++ b/icons/outline/calendar-sad.svg @@ -15,6 +15,6 @@ unicode: "fd1d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/calendar-search.svg b/icons/outline/calendar-search.svg index 69337183d..32fef16ca 100644 --- a/icons/outline/calendar-search.svg +++ b/icons/outline/calendar-search.svg @@ -19,6 +19,6 @@ unicode: "f82e" - + diff --git a/icons/outline/calendar-smile.svg b/icons/outline/calendar-smile.svg index c8e3d75ff..a02eccad1 100644 --- a/icons/outline/calendar-smile.svg +++ b/icons/outline/calendar-smile.svg @@ -15,6 +15,6 @@ unicode: "fd1e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/calendar-star.svg b/icons/outline/calendar-star.svg index fee7c8264..959d0b386 100644 --- a/icons/outline/calendar-star.svg +++ b/icons/outline/calendar-star.svg @@ -19,5 +19,5 @@ unicode: "f830" - + diff --git a/icons/outline/calendar-stats.svg b/icons/outline/calendar-stats.svg index 4e12c9b7a..1bf420e76 100644 --- a/icons/outline/calendar-stats.svg +++ b/icons/outline/calendar-stats.svg @@ -17,7 +17,7 @@ unicode: "ee20" > - + diff --git a/icons/outline/calendar-time.svg b/icons/outline/calendar-time.svg index 7e4972093..b6be2cb24 100644 --- a/icons/outline/calendar-time.svg +++ b/icons/outline/calendar-time.svg @@ -16,7 +16,7 @@ unicode: "ee21" stroke-linejoin="round" > - + diff --git a/icons/outline/calendar-user.svg b/icons/outline/calendar-user.svg index 45131aef9..d7068c855 100644 --- a/icons/outline/calendar-user.svg +++ b/icons/outline/calendar-user.svg @@ -19,6 +19,6 @@ unicode: "fd1f" - + diff --git a/icons/outline/calendar-week.svg b/icons/outline/calendar-week.svg index 3318411c2..bccc772d6 100644 --- a/icons/outline/calendar-week.svg +++ b/icons/outline/calendar-week.svg @@ -15,7 +15,7 @@ unicode: "fd30" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/calendar.svg b/icons/outline/calendar.svg index 281ee2751..20d6753df 100644 --- a/icons/outline/calendar.svg +++ b/icons/outline/calendar.svg @@ -15,7 +15,7 @@ unicode: "ea53" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/camera-cancel.svg b/icons/outline/camera-cancel.svg index bf69ca044..14bab3b4d 100644 --- a/icons/outline/camera-cancel.svg +++ b/icons/outline/camera-cancel.svg @@ -17,6 +17,6 @@ unicode: "f834" > - + diff --git a/icons/outline/camera-cog.svg b/icons/outline/camera-cog.svg index 08706e99c..c6362ad7f 100644 --- a/icons/outline/camera-cog.svg +++ b/icons/outline/camera-cog.svg @@ -17,7 +17,7 @@ unicode: "f837" > - + diff --git a/icons/outline/camera-heart.svg b/icons/outline/camera-heart.svg index 42c4d58bc..2a3b9b6a2 100644 --- a/icons/outline/camera-heart.svg +++ b/icons/outline/camera-heart.svg @@ -17,5 +17,5 @@ unicode: "f83b" > - + diff --git a/icons/outline/camera-pin.svg b/icons/outline/camera-pin.svg index e0d480ed5..2bdc1e742 100644 --- a/icons/outline/camera-pin.svg +++ b/icons/outline/camera-pin.svg @@ -17,6 +17,6 @@ unicode: "f83d" > - + diff --git a/icons/outline/camera-search.svg b/icons/outline/camera-search.svg index 0590e5759..d76ab61e7 100644 --- a/icons/outline/camera-search.svg +++ b/icons/outline/camera-search.svg @@ -17,6 +17,6 @@ unicode: "f83f" > - + diff --git a/icons/outline/camera-star.svg b/icons/outline/camera-star.svg index b99d94c3c..05580343c 100644 --- a/icons/outline/camera-star.svg +++ b/icons/outline/camera-star.svg @@ -17,5 +17,5 @@ unicode: "f841" > - + diff --git a/icons/outline/camera-up.svg b/icons/outline/camera-up.svg index 2b3d99a43..e7756e4f3 100644 --- a/icons/outline/camera-up.svg +++ b/icons/outline/camera-up.svg @@ -16,7 +16,7 @@ unicode: "f842" stroke-linejoin="round" > - + diff --git a/icons/outline/campfire.svg b/icons/outline/campfire.svg index 5e234ec73..28deb6d69 100644 --- a/icons/outline/campfire.svg +++ b/icons/outline/campfire.svg @@ -17,5 +17,5 @@ unicode: "f5a7" > - + diff --git a/icons/outline/candle.svg b/icons/outline/candle.svg index a9273e002..a5baeaab8 100644 --- a/icons/outline/candle.svg +++ b/icons/outline/candle.svg @@ -15,6 +15,6 @@ unicode: "efc6" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/candy.svg b/icons/outline/candy.svg index 0fb2508f2..2dbf13d8f 100644 --- a/icons/outline/candy.svg +++ b/icons/outline/candy.svg @@ -15,7 +15,7 @@ unicode: "ef0d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cannabis.svg b/icons/outline/cannabis.svg index 2d08428af..40cef0dd7 100644 --- a/icons/outline/cannabis.svg +++ b/icons/outline/cannabis.svg @@ -15,6 +15,6 @@ unicode: "f4c1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/capsule-horizontal.svg b/icons/outline/capsule-horizontal.svg index 4148dc289..48bf06c12 100644 --- a/icons/outline/capsule-horizontal.svg +++ b/icons/outline/capsule-horizontal.svg @@ -15,5 +15,5 @@ unicode: "fae2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/capsule.svg b/icons/outline/capsule.svg index 6f59366e9..3ea18b55e 100644 --- a/icons/outline/capsule.svg +++ b/icons/outline/capsule.svg @@ -15,5 +15,5 @@ unicode: "fae3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/capture.svg b/icons/outline/capture.svg index ed98c5b7c..30a311364 100644 --- a/icons/outline/capture.svg +++ b/icons/outline/capture.svg @@ -19,5 +19,5 @@ unicode: "ec3c" - + diff --git a/icons/outline/car-4wd.svg b/icons/outline/car-4wd.svg index 4888f6e2a..e25a9af81 100644 --- a/icons/outline/car-4wd.svg +++ b/icons/outline/car-4wd.svg @@ -15,10 +15,10 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/car-crane.svg b/icons/outline/car-crane.svg index a055c0e0c..189678e60 100644 --- a/icons/outline/car-crane.svg +++ b/icons/outline/car-crane.svg @@ -15,8 +15,8 @@ unicode: "ef25" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/car-crash.svg b/icons/outline/car-crash.svg index d2f37e604..5fedc8d96 100644 --- a/icons/outline/car-crash.svg +++ b/icons/outline/car-crash.svg @@ -15,7 +15,7 @@ unicode: "efa4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/car-fan-1.svg b/icons/outline/car-fan-1.svg index 173022771..e69e6f049 100644 --- a/icons/outline/car-fan-1.svg +++ b/icons/outline/car-fan-1.svg @@ -15,9 +15,9 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/car-fan-2.svg b/icons/outline/car-fan-2.svg index 24ecce4e4..4f76dafd8 100644 --- a/icons/outline/car-fan-2.svg +++ b/icons/outline/car-fan-2.svg @@ -15,9 +15,9 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/car-fan-3.svg b/icons/outline/car-fan-3.svg index 1ae1b9138..057df4e04 100644 --- a/icons/outline/car-fan-3.svg +++ b/icons/outline/car-fan-3.svg @@ -15,9 +15,9 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/car-fan-auto.svg b/icons/outline/car-fan-auto.svg index 96d74593d..82606ef83 100644 --- a/icons/outline/car-fan-auto.svg +++ b/icons/outline/car-fan-auto.svg @@ -15,10 +15,10 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/car-fan.svg b/icons/outline/car-fan.svg index eea8eb387..cb5aae276 100644 --- a/icons/outline/car-fan.svg +++ b/icons/outline/car-fan.svg @@ -15,8 +15,8 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/car-off.svg b/icons/outline/car-off.svg index d52adccba..cf2c22e04 100644 --- a/icons/outline/car-off.svg +++ b/icons/outline/car-off.svg @@ -15,7 +15,7 @@ unicode: "f0c7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/car-turbine.svg b/icons/outline/car-turbine.svg index 43387ec74..a67f8f0c4 100644 --- a/icons/outline/car-turbine.svg +++ b/icons/outline/car-turbine.svg @@ -15,10 +15,10 @@ unicode: "f4fd" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/car.svg b/icons/outline/car.svg index a94dfc80d..a7b32bc42 100644 --- a/icons/outline/car.svg +++ b/icons/outline/car.svg @@ -15,7 +15,7 @@ unicode: "ebbb" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/caravan.svg b/icons/outline/caravan.svg index 6b8818058..d3f628846 100644 --- a/icons/outline/caravan.svg +++ b/icons/outline/caravan.svg @@ -18,6 +18,6 @@ unicode: "ec7c" - + diff --git a/icons/outline/cardboards-off.svg b/icons/outline/cardboards-off.svg index 524892d82..e0fc42025 100644 --- a/icons/outline/cardboards-off.svg +++ b/icons/outline/cardboards-off.svg @@ -16,7 +16,7 @@ unicode: "f0c8" stroke-linejoin="round" > - - + + diff --git a/icons/outline/cardboards.svg b/icons/outline/cardboards.svg index 139675142..d0f3f2390 100644 --- a/icons/outline/cardboards.svg +++ b/icons/outline/cardboards.svg @@ -15,7 +15,7 @@ unicode: "ed74" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/cards.svg b/icons/outline/cards.svg index a3dc791d6..b6cdf5159 100644 --- a/icons/outline/cards.svg +++ b/icons/outline/cards.svg @@ -15,7 +15,7 @@ unicode: "f510" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/carousel-horizontal.svg b/icons/outline/carousel-horizontal.svg index 670a8e6f9..c2751cd4c 100644 --- a/icons/outline/carousel-horizontal.svg +++ b/icons/outline/carousel-horizontal.svg @@ -15,7 +15,7 @@ unicode: "f659" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/carousel-vertical.svg b/icons/outline/carousel-vertical.svg index 9de011307..eeec164cb 100644 --- a/icons/outline/carousel-vertical.svg +++ b/icons/outline/carousel-vertical.svg @@ -15,7 +15,7 @@ unicode: "f65a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/carrot-off.svg b/icons/outline/carrot-off.svg index b82248b77..d2d56042f 100644 --- a/icons/outline/carrot-off.svg +++ b/icons/outline/carrot-off.svg @@ -17,7 +17,7 @@ unicode: "f3d0" > - - + + diff --git a/icons/outline/carrot.svg b/icons/outline/carrot.svg index eb61c6409..9061521da 100644 --- a/icons/outline/carrot.svg +++ b/icons/outline/carrot.svg @@ -15,9 +15,9 @@ unicode: "f21c" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/cash-banknote-edit.svg b/icons/outline/cash-banknote-edit.svg index 9acfd7fd4..1ca42e2fe 100644 --- a/icons/outline/cash-banknote-edit.svg +++ b/icons/outline/cash-banknote-edit.svg @@ -18,5 +18,5 @@ unicode: "10149" - + diff --git a/icons/outline/cash-banknote-heart.svg b/icons/outline/cash-banknote-heart.svg index 0f58b92f2..57d9af3cb 100644 --- a/icons/outline/cash-banknote-heart.svg +++ b/icons/outline/cash-banknote-heart.svg @@ -18,5 +18,5 @@ unicode: "10148" - + diff --git a/icons/outline/cash-banknote.svg b/icons/outline/cash-banknote.svg index 2c4fee356..10a10772e 100644 --- a/icons/outline/cash-banknote.svg +++ b/icons/outline/cash-banknote.svg @@ -16,7 +16,7 @@ unicode: "ee25" stroke-linejoin="round" > - + diff --git a/icons/outline/cash-edit.svg b/icons/outline/cash-edit.svg index 417a11818..a3c78c2ed 100644 --- a/icons/outline/cash-edit.svg +++ b/icons/outline/cash-edit.svg @@ -17,5 +17,5 @@ unicode: "10143" > - + diff --git a/icons/outline/cash-heart.svg b/icons/outline/cash-heart.svg index aef752451..65067c3c4 100644 --- a/icons/outline/cash-heart.svg +++ b/icons/outline/cash-heart.svg @@ -17,5 +17,5 @@ unicode: "10142" > - + diff --git a/icons/outline/cash.svg b/icons/outline/cash.svg index 2127a4db8..7cb6011bb 100644 --- a/icons/outline/cash.svg +++ b/icons/outline/cash.svg @@ -16,6 +16,6 @@ unicode: "ea55" stroke-linejoin="round" > - + diff --git a/icons/outline/cat.svg b/icons/outline/cat.svg index fcff23494..249e740c5 100644 --- a/icons/outline/cat.svg +++ b/icons/outline/cat.svg @@ -15,10 +15,10 @@ unicode: "f65b" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/category-2.svg b/icons/outline/category-2.svg index be1685629..c3e4b735d 100644 --- a/icons/outline/category-2.svg +++ b/icons/outline/category-2.svg @@ -15,8 +15,8 @@ unicode: "f1f5" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/category-minus.svg b/icons/outline/category-minus.svg index b047c3a95..5550118ee 100644 --- a/icons/outline/category-minus.svg +++ b/icons/outline/category-minus.svg @@ -15,5 +15,8 @@ unicode: "fd20" stroke-linecap="round" stroke-linejoin="round" > - + + + + diff --git a/icons/outline/category-plus.svg b/icons/outline/category-plus.svg index 9130aad6a..04249d483 100644 --- a/icons/outline/category-plus.svg +++ b/icons/outline/category-plus.svg @@ -15,5 +15,8 @@ unicode: "fd21" stroke-linecap="round" stroke-linejoin="round" > - + + + + diff --git a/icons/outline/category.svg b/icons/outline/category.svg index c7f153bd6..956914c75 100644 --- a/icons/outline/category.svg +++ b/icons/outline/category.svg @@ -15,8 +15,8 @@ unicode: "f1f6" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/cell-signal-1.svg b/icons/outline/cell-signal-1.svg index 51b4808ee..49c114bad 100644 --- a/icons/outline/cell-signal-1.svg +++ b/icons/outline/cell-signal-1.svg @@ -15,5 +15,5 @@ unicode: "f083" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cell-signal-2.svg b/icons/outline/cell-signal-2.svg index ea4b8d508..89df6aa70 100644 --- a/icons/outline/cell-signal-2.svg +++ b/icons/outline/cell-signal-2.svg @@ -15,6 +15,6 @@ unicode: "f084" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cell-signal-3.svg b/icons/outline/cell-signal-3.svg index 1471da16d..542de4b4c 100644 --- a/icons/outline/cell-signal-3.svg +++ b/icons/outline/cell-signal-3.svg @@ -15,6 +15,6 @@ unicode: "f085" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cell-signal-4.svg b/icons/outline/cell-signal-4.svg index b4bb884ac..11d4d64f8 100644 --- a/icons/outline/cell-signal-4.svg +++ b/icons/outline/cell-signal-4.svg @@ -15,6 +15,6 @@ unicode: "f086" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cell-signal-5.svg b/icons/outline/cell-signal-5.svg index 1497b80b6..37634468a 100644 --- a/icons/outline/cell-signal-5.svg +++ b/icons/outline/cell-signal-5.svg @@ -15,7 +15,7 @@ unicode: "f087" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cell.svg b/icons/outline/cell.svg index 9ab3341b1..a962bc12d 100644 --- a/icons/outline/cell.svg +++ b/icons/outline/cell.svg @@ -15,7 +15,7 @@ unicode: "f05f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/certificate-2.svg b/icons/outline/certificate-2.svg index 36d198ba1..8fc16b194 100644 --- a/icons/outline/certificate-2.svg +++ b/icons/outline/certificate-2.svg @@ -15,7 +15,7 @@ unicode: "f073" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/certificate.svg b/icons/outline/certificate.svg index b024b861d..beec2c61e 100644 --- a/icons/outline/certificate.svg +++ b/icons/outline/certificate.svg @@ -15,7 +15,7 @@ unicode: "ed76" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chalkboard.svg b/icons/outline/chalkboard.svg index 3ce84abc3..61cdfebd6 100644 --- a/icons/outline/chalkboard.svg +++ b/icons/outline/chalkboard.svg @@ -16,5 +16,5 @@ unicode: "f34d" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-arcs-3.svg b/icons/outline/chart-arcs-3.svg index 274760561..8c06cf475 100644 --- a/icons/outline/chart-arcs-3.svg +++ b/icons/outline/chart-arcs-3.svg @@ -15,7 +15,7 @@ unicode: "ee27" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-arcs.svg b/icons/outline/chart-arcs.svg index 71af74e46..419f05345 100644 --- a/icons/outline/chart-arcs.svg +++ b/icons/outline/chart-arcs.svg @@ -15,7 +15,7 @@ unicode: "ee28" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-bar-off.svg b/icons/outline/chart-bar-off.svg index 4f8aea4bb..28fcdd789 100644 --- a/icons/outline/chart-bar-off.svg +++ b/icons/outline/chart-bar-off.svg @@ -15,7 +15,7 @@ unicode: "f3d2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-bar-popular.svg b/icons/outline/chart-bar-popular.svg index 7cf435fa2..9303644c8 100644 --- a/icons/outline/chart-bar-popular.svg +++ b/icons/outline/chart-bar-popular.svg @@ -15,8 +15,8 @@ unicode: "fef7" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chart-bar.svg b/icons/outline/chart-bar.svg index e53530e3e..0e55695eb 100644 --- a/icons/outline/chart-bar.svg +++ b/icons/outline/chart-bar.svg @@ -15,8 +15,8 @@ unicode: "ea59" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chart-bubble.svg b/icons/outline/chart-bubble.svg index e2476db53..154b4af4c 100644 --- a/icons/outline/chart-bubble.svg +++ b/icons/outline/chart-bubble.svg @@ -15,7 +15,7 @@ unicode: "ec75" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chart-candle.svg b/icons/outline/chart-candle.svg index af352311f..0e5789a01 100644 --- a/icons/outline/chart-candle.svg +++ b/icons/outline/chart-candle.svg @@ -15,13 +15,13 @@ unicode: "ea5a" stroke-linecap="round" stroke-linejoin="round" > - + - + - + diff --git a/icons/outline/chart-circles.svg b/icons/outline/chart-circles.svg index f7df400d2..90e1e617e 100644 --- a/icons/outline/chart-circles.svg +++ b/icons/outline/chart-circles.svg @@ -15,6 +15,6 @@ unicode: "ee2b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chart-donut-2.svg b/icons/outline/chart-donut-2.svg index 10e3495e9..55296496b 100644 --- a/icons/outline/chart-donut-2.svg +++ b/icons/outline/chart-donut-2.svg @@ -16,6 +16,6 @@ unicode: "ee2c" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chart-donut-3.svg b/icons/outline/chart-donut-3.svg index db13c1da6..28f95e38d 100644 --- a/icons/outline/chart-donut-3.svg +++ b/icons/outline/chart-donut-3.svg @@ -17,6 +17,6 @@ unicode: "ee2d" > - - + + diff --git a/icons/outline/chart-donut-4.svg b/icons/outline/chart-donut-4.svg index 98aafcdae..7438ad92c 100644 --- a/icons/outline/chart-donut-4.svg +++ b/icons/outline/chart-donut-4.svg @@ -17,7 +17,7 @@ unicode: "ee2e" > - + - + diff --git a/icons/outline/chart-dots-2.svg b/icons/outline/chart-dots-2.svg index 8ca12a33b..3dfb790b0 100644 --- a/icons/outline/chart-dots-2.svg +++ b/icons/outline/chart-dots-2.svg @@ -16,9 +16,9 @@ unicode: "f097" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chart-dots-3.svg b/icons/outline/chart-dots-3.svg index b05ff99e9..76bfcce06 100644 --- a/icons/outline/chart-dots-3.svg +++ b/icons/outline/chart-dots-3.svg @@ -15,10 +15,10 @@ unicode: "f098" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/chart-dots.svg b/icons/outline/chart-dots.svg index 9149067ff..f431e0ddd 100644 --- a/icons/outline/chart-dots.svg +++ b/icons/outline/chart-dots.svg @@ -16,9 +16,9 @@ unicode: "ee2f" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chart-grid-dots.svg b/icons/outline/chart-grid-dots.svg index 002ee756b..b851dd628 100644 --- a/icons/outline/chart-grid-dots.svg +++ b/icons/outline/chart-grid-dots.svg @@ -15,10 +15,10 @@ unicode: "f4c2" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/chart-infographic.svg b/icons/outline/chart-infographic.svg index b15e9dc5d..4af750ac8 100644 --- a/icons/outline/chart-infographic.svg +++ b/icons/outline/chart-infographic.svg @@ -15,7 +15,7 @@ unicode: "ee30" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-pie-2.svg b/icons/outline/chart-pie-2.svg index a80ea0b44..e59092f68 100644 --- a/icons/outline/chart-pie-2.svg +++ b/icons/outline/chart-pie-2.svg @@ -16,5 +16,5 @@ unicode: "ee31" stroke-linejoin="round" > - + diff --git a/icons/outline/chart-pie-3.svg b/icons/outline/chart-pie-3.svg index 4063f6017..3a81f1f79 100644 --- a/icons/outline/chart-pie-3.svg +++ b/icons/outline/chart-pie-3.svg @@ -17,5 +17,5 @@ unicode: "ee32" > - + diff --git a/icons/outline/chart-pie-4.svg b/icons/outline/chart-pie-4.svg index 55f9e94b2..639514c06 100644 --- a/icons/outline/chart-pie-4.svg +++ b/icons/outline/chart-pie-4.svg @@ -17,6 +17,6 @@ unicode: "ee33" > - + diff --git a/icons/outline/chart-radar.svg b/icons/outline/chart-radar.svg index f2f7014a1..83f140d45 100644 --- a/icons/outline/chart-radar.svg +++ b/icons/outline/chart-radar.svg @@ -15,8 +15,8 @@ unicode: "ed77" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chart-treemap.svg b/icons/outline/chart-treemap.svg index e396b3f73..6c69b398b 100644 --- a/icons/outline/chart-treemap.svg +++ b/icons/outline/chart-treemap.svg @@ -15,7 +15,7 @@ unicode: "f381" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/checkup-list.svg b/icons/outline/checkup-list.svg index b588baa63..56141514b 100644 --- a/icons/outline/checkup-list.svg +++ b/icons/outline/checkup-list.svg @@ -16,7 +16,7 @@ unicode: "ef5a" stroke-linejoin="round" > - + diff --git a/icons/outline/chef-hat.svg b/icons/outline/chef-hat.svg index 613db136d..8d9399f9c 100644 --- a/icons/outline/chef-hat.svg +++ b/icons/outline/chef-hat.svg @@ -15,6 +15,6 @@ unicode: "f21d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cherry.svg b/icons/outline/cherry.svg index ac00cf579..2488e8642 100644 --- a/icons/outline/cherry.svg +++ b/icons/outline/cherry.svg @@ -15,8 +15,8 @@ unicode: "f511" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chess-bishop.svg b/icons/outline/chess-bishop.svg index fb49c56ff..db99375df 100644 --- a/icons/outline/chess-bishop.svg +++ b/icons/outline/chess-bishop.svg @@ -15,9 +15,9 @@ unicode: "f56b" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/chess-king.svg b/icons/outline/chess-king.svg index 32015af02..33ffb9696 100644 --- a/icons/outline/chess-king.svg +++ b/icons/outline/chess-king.svg @@ -15,8 +15,8 @@ unicode: "f56c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chess-knight.svg b/icons/outline/chess-knight.svg index 1356fb81c..233e504e5 100644 --- a/icons/outline/chess-knight.svg +++ b/icons/outline/chess-knight.svg @@ -15,6 +15,6 @@ unicode: "f56d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/chess-queen.svg b/icons/outline/chess-queen.svg index aa3560cb9..74e098d7d 100644 --- a/icons/outline/chess-queen.svg +++ b/icons/outline/chess-queen.svg @@ -16,8 +16,8 @@ unicode: "f56e" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/chess-rook.svg b/icons/outline/chess-rook.svg index 2b2f200c4..662510f03 100644 --- a/icons/outline/chess-rook.svg +++ b/icons/outline/chess-rook.svg @@ -15,7 +15,7 @@ unicode: "f56f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/chess.svg b/icons/outline/chess.svg index dbaa65534..dc5c973ea 100644 --- a/icons/outline/chess.svg +++ b/icons/outline/chess.svg @@ -15,7 +15,7 @@ unicode: "f382" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/chisel.svg b/icons/outline/chisel.svg index 98fcf7687..7869200a3 100644 --- a/icons/outline/chisel.svg +++ b/icons/outline/chisel.svg @@ -16,6 +16,6 @@ unicode: "f383" stroke-linejoin="round" > - - + + diff --git a/icons/outline/christmas-ball.svg b/icons/outline/christmas-ball.svg index 68ef72f4a..52febd6e4 100644 --- a/icons/outline/christmas-ball.svg +++ b/icons/outline/christmas-ball.svg @@ -15,7 +15,7 @@ unicode: "fd31" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/christmas-tree.svg b/icons/outline/christmas-tree.svg index 24a94ac0a..b8445e53e 100644 --- a/icons/outline/christmas-tree.svg +++ b/icons/outline/christmas-tree.svg @@ -15,6 +15,6 @@ unicode: "ed78" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-caret-down.svg b/icons/outline/circle-caret-down.svg index 5e3a89e63..52b82420c 100644 --- a/icons/outline/circle-caret-down.svg +++ b/icons/outline/circle-caret-down.svg @@ -15,6 +15,6 @@ unicode: "f4a9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-caret-left.svg b/icons/outline/circle-caret-left.svg index 5b2382c31..cc9c0414d 100644 --- a/icons/outline/circle-caret-left.svg +++ b/icons/outline/circle-caret-left.svg @@ -15,6 +15,6 @@ unicode: "f4aa" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-caret-right.svg b/icons/outline/circle-caret-right.svg index 673b2fcb1..d0a0698e5 100644 --- a/icons/outline/circle-caret-right.svg +++ b/icons/outline/circle-caret-right.svg @@ -15,6 +15,6 @@ unicode: "f4ab" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-caret-up.svg b/icons/outline/circle-caret-up.svg index b374d0b03..310159ef4 100644 --- a/icons/outline/circle-caret-up.svg +++ b/icons/outline/circle-caret-up.svg @@ -15,6 +15,6 @@ unicode: "f4ac" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-check.svg b/icons/outline/circle-check.svg index 4e00f93a9..73eb6aee3 100644 --- a/icons/outline/circle-check.svg +++ b/icons/outline/circle-check.svg @@ -15,6 +15,6 @@ unicode: "ea67" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-chevron-down.svg b/icons/outline/circle-chevron-down.svg index bb4ad9c50..233588700 100644 --- a/icons/outline/circle-chevron-down.svg +++ b/icons/outline/circle-chevron-down.svg @@ -16,5 +16,5 @@ unicode: "f622" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-chevron-left.svg b/icons/outline/circle-chevron-left.svg index a053c47d2..2d416bf77 100644 --- a/icons/outline/circle-chevron-left.svg +++ b/icons/outline/circle-chevron-left.svg @@ -16,5 +16,5 @@ unicode: "f623" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-chevron-right.svg b/icons/outline/circle-chevron-right.svg index a71ec5206..562cfc902 100644 --- a/icons/outline/circle-chevron-right.svg +++ b/icons/outline/circle-chevron-right.svg @@ -16,5 +16,5 @@ unicode: "f624" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-chevron-up.svg b/icons/outline/circle-chevron-up.svg index c96b1decb..58fc5e268 100644 --- a/icons/outline/circle-chevron-up.svg +++ b/icons/outline/circle-chevron-up.svg @@ -16,5 +16,5 @@ unicode: "f625" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-chevrons-down.svg b/icons/outline/circle-chevrons-down.svg index 5241d82e9..8f7a04727 100644 --- a/icons/outline/circle-chevrons-down.svg +++ b/icons/outline/circle-chevrons-down.svg @@ -17,5 +17,5 @@ unicode: "f642" > - + diff --git a/icons/outline/circle-chevrons-left.svg b/icons/outline/circle-chevrons-left.svg index 3911a40cc..6ae8846b4 100644 --- a/icons/outline/circle-chevrons-left.svg +++ b/icons/outline/circle-chevrons-left.svg @@ -17,5 +17,5 @@ unicode: "f643" > - + diff --git a/icons/outline/circle-chevrons-right.svg b/icons/outline/circle-chevrons-right.svg index cd5a0be7e..f6c9a2e30 100644 --- a/icons/outline/circle-chevrons-right.svg +++ b/icons/outline/circle-chevrons-right.svg @@ -17,5 +17,5 @@ unicode: "f644" > - + diff --git a/icons/outline/circle-chevrons-up.svg b/icons/outline/circle-chevrons-up.svg index 487ab6fa6..b66013bcc 100644 --- a/icons/outline/circle-chevrons-up.svg +++ b/icons/outline/circle-chevrons-up.svg @@ -17,5 +17,5 @@ unicode: "f645" > - + diff --git a/icons/outline/circle-dashed-letter-b.svg b/icons/outline/circle-dashed-letter-b.svg index 838d5c057..1e5d60f8b 100644 --- a/icons/outline/circle-dashed-letter-b.svg +++ b/icons/outline/circle-dashed-letter-b.svg @@ -15,7 +15,7 @@ unicode: "ff99" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-dashed-letter-d.svg b/icons/outline/circle-dashed-letter-d.svg index eca3a35b3..c41079c8d 100644 --- a/icons/outline/circle-dashed-letter-d.svg +++ b/icons/outline/circle-dashed-letter-d.svg @@ -15,7 +15,7 @@ unicode: "ff97" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-dashed-number-0.svg b/icons/outline/circle-dashed-number-0.svg index 8dd163f4d..2d3d085f6 100644 --- a/icons/outline/circle-dashed-number-0.svg +++ b/icons/outline/circle-dashed-number-0.svg @@ -23,5 +23,5 @@ unicode: "fc6b" - + diff --git a/icons/outline/circle-dot.svg b/icons/outline/circle-dot.svg index b6f68b74e..040c51022 100644 --- a/icons/outline/circle-dot.svg +++ b/icons/outline/circle-dot.svg @@ -15,6 +15,6 @@ unicode: "efb1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-dotted-letter-b.svg b/icons/outline/circle-dotted-letter-b.svg index d841127fc..c4fbde238 100644 --- a/icons/outline/circle-dotted-letter-b.svg +++ b/icons/outline/circle-dotted-letter-b.svg @@ -15,7 +15,7 @@ unicode: "ff7e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-dotted-letter-d.svg b/icons/outline/circle-dotted-letter-d.svg index 66bdd1c74..55daa2b4c 100644 --- a/icons/outline/circle-dotted-letter-d.svg +++ b/icons/outline/circle-dotted-letter-d.svg @@ -15,7 +15,7 @@ version: "3.11" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-half-2.svg b/icons/outline/circle-half-2.svg index b80fae14b..57327e08f 100644 --- a/icons/outline/circle-half-2.svg +++ b/icons/outline/circle-half-2.svg @@ -15,7 +15,7 @@ unicode: "eff3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-half-vertical.svg b/icons/outline/circle-half-vertical.svg index c7e990e8e..1d26dcb0d 100644 --- a/icons/outline/circle-half-vertical.svg +++ b/icons/outline/circle-half-vertical.svg @@ -15,6 +15,6 @@ unicode: "ee3e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-half.svg b/icons/outline/circle-half.svg index 0fc1207fc..1f718e03c 100644 --- a/icons/outline/circle-half.svg +++ b/icons/outline/circle-half.svg @@ -15,6 +15,6 @@ unicode: "ee3f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-key.svg b/icons/outline/circle-key.svg index 59b50357b..758ff1f6f 100644 --- a/icons/outline/circle-key.svg +++ b/icons/outline/circle-key.svg @@ -15,8 +15,8 @@ unicode: "f633" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-letter-a.svg b/icons/outline/circle-letter-a.svg index f812c8d3f..447d110a4 100644 --- a/icons/outline/circle-letter-a.svg +++ b/icons/outline/circle-letter-a.svg @@ -15,7 +15,7 @@ unicode: "f441" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-b.svg b/icons/outline/circle-letter-b.svg index 982e6c883..3bd3b855f 100644 --- a/icons/outline/circle-letter-b.svg +++ b/icons/outline/circle-letter-b.svg @@ -15,6 +15,6 @@ unicode: "f442" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-letter-c.svg b/icons/outline/circle-letter-c.svg index 5eaeed67a..6841dbdd4 100644 --- a/icons/outline/circle-letter-c.svg +++ b/icons/outline/circle-letter-c.svg @@ -15,6 +15,6 @@ unicode: "f443" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-d.svg b/icons/outline/circle-letter-d.svg index 3e0e9e23b..e4662742b 100644 --- a/icons/outline/circle-letter-d.svg +++ b/icons/outline/circle-letter-d.svg @@ -15,6 +15,6 @@ unicode: "f444" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-letter-e.svg b/icons/outline/circle-letter-e.svg index bf6f4988e..5fcdf0c11 100644 --- a/icons/outline/circle-letter-e.svg +++ b/icons/outline/circle-letter-e.svg @@ -15,7 +15,7 @@ unicode: "f445" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-f.svg b/icons/outline/circle-letter-f.svg index ac75ecb64..e91dc0873 100644 --- a/icons/outline/circle-letter-f.svg +++ b/icons/outline/circle-letter-f.svg @@ -15,7 +15,7 @@ unicode: "f446" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-g.svg b/icons/outline/circle-letter-g.svg index 532383ff2..2a33df76a 100644 --- a/icons/outline/circle-letter-g.svg +++ b/icons/outline/circle-letter-g.svg @@ -15,6 +15,6 @@ unicode: "f447" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-h.svg b/icons/outline/circle-letter-h.svg index 8d9c97355..e72dd888b 100644 --- a/icons/outline/circle-letter-h.svg +++ b/icons/outline/circle-letter-h.svg @@ -15,7 +15,7 @@ unicode: "f448" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-i.svg b/icons/outline/circle-letter-i.svg index 11355b23a..da1d3b6b6 100644 --- a/icons/outline/circle-letter-i.svg +++ b/icons/outline/circle-letter-i.svg @@ -15,6 +15,6 @@ unicode: "f449" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-j.svg b/icons/outline/circle-letter-j.svg index 116f23ffd..bec1e60ca 100644 --- a/icons/outline/circle-letter-j.svg +++ b/icons/outline/circle-letter-j.svg @@ -15,6 +15,6 @@ unicode: "f44a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-k.svg b/icons/outline/circle-letter-k.svg index 2874eedf4..35d3ad402 100644 --- a/icons/outline/circle-letter-k.svg +++ b/icons/outline/circle-letter-k.svg @@ -15,7 +15,7 @@ unicode: "f44b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-l.svg b/icons/outline/circle-letter-l.svg index 002c883f6..79dbddeff 100644 --- a/icons/outline/circle-letter-l.svg +++ b/icons/outline/circle-letter-l.svg @@ -15,6 +15,6 @@ unicode: "f44c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-m.svg b/icons/outline/circle-letter-m.svg index bb09c896a..26baf2834 100644 --- a/icons/outline/circle-letter-m.svg +++ b/icons/outline/circle-letter-m.svg @@ -15,6 +15,6 @@ unicode: "f44d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-n.svg b/icons/outline/circle-letter-n.svg index 62b0b7645..e880fdfa6 100644 --- a/icons/outline/circle-letter-n.svg +++ b/icons/outline/circle-letter-n.svg @@ -15,6 +15,6 @@ unicode: "f44e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-o.svg b/icons/outline/circle-letter-o.svg index ab788d790..90920699e 100644 --- a/icons/outline/circle-letter-o.svg +++ b/icons/outline/circle-letter-o.svg @@ -15,6 +15,6 @@ unicode: "f44f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-letter-p.svg b/icons/outline/circle-letter-p.svg index e1801119d..287570524 100644 --- a/icons/outline/circle-letter-p.svg +++ b/icons/outline/circle-letter-p.svg @@ -15,6 +15,6 @@ unicode: "f450" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-q.svg b/icons/outline/circle-letter-q.svg index 2144e49dd..3cc3dbe54 100644 --- a/icons/outline/circle-letter-q.svg +++ b/icons/outline/circle-letter-q.svg @@ -15,7 +15,7 @@ unicode: "f451" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-letter-r.svg b/icons/outline/circle-letter-r.svg index 0640572b6..8c18106fd 100644 --- a/icons/outline/circle-letter-r.svg +++ b/icons/outline/circle-letter-r.svg @@ -15,6 +15,6 @@ unicode: "f452" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-s.svg b/icons/outline/circle-letter-s.svg index 81e543ffe..ca4497a6d 100644 --- a/icons/outline/circle-letter-s.svg +++ b/icons/outline/circle-letter-s.svg @@ -15,6 +15,6 @@ unicode: "f453" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-t.svg b/icons/outline/circle-letter-t.svg index 1ef645ed9..1d41c0362 100644 --- a/icons/outline/circle-letter-t.svg +++ b/icons/outline/circle-letter-t.svg @@ -15,7 +15,7 @@ unicode: "f454" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-u.svg b/icons/outline/circle-letter-u.svg index 55aa779eb..15afd392a 100644 --- a/icons/outline/circle-letter-u.svg +++ b/icons/outline/circle-letter-u.svg @@ -15,6 +15,6 @@ unicode: "f455" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-v.svg b/icons/outline/circle-letter-v.svg index 327164563..e68a3ffa6 100644 --- a/icons/outline/circle-letter-v.svg +++ b/icons/outline/circle-letter-v.svg @@ -15,6 +15,6 @@ unicode: "f4ad" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-w.svg b/icons/outline/circle-letter-w.svg index 8bd43a5be..3694f0640 100644 --- a/icons/outline/circle-letter-w.svg +++ b/icons/outline/circle-letter-w.svg @@ -15,6 +15,6 @@ unicode: "f456" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-x.svg b/icons/outline/circle-letter-x.svg index 4e7ec487b..21a6d720b 100644 --- a/icons/outline/circle-letter-x.svg +++ b/icons/outline/circle-letter-x.svg @@ -15,7 +15,7 @@ unicode: "f4ae" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-y.svg b/icons/outline/circle-letter-y.svg index b2967c5cd..3696ce8d4 100644 --- a/icons/outline/circle-letter-y.svg +++ b/icons/outline/circle-letter-y.svg @@ -15,7 +15,7 @@ unicode: "f457" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-letter-z.svg b/icons/outline/circle-letter-z.svg index 1a8002ac0..20d2ef8d0 100644 --- a/icons/outline/circle-letter-z.svg +++ b/icons/outline/circle-letter-z.svg @@ -15,6 +15,6 @@ unicode: "f458" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-minus.svg b/icons/outline/circle-minus.svg index 53df9d52a..757599bc9 100644 --- a/icons/outline/circle-minus.svg +++ b/icons/outline/circle-minus.svg @@ -15,6 +15,6 @@ unicode: "ea68" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-0.svg b/icons/outline/circle-number-0.svg index 8fe35a43a..2e8a7213b 100644 --- a/icons/outline/circle-number-0.svg +++ b/icons/outline/circle-number-0.svg @@ -15,6 +15,6 @@ unicode: "ee34" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-number-1.svg b/icons/outline/circle-number-1.svg index 9edbf4b50..74c63e403 100644 --- a/icons/outline/circle-number-1.svg +++ b/icons/outline/circle-number-1.svg @@ -15,6 +15,6 @@ unicode: "ee35" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-2.svg b/icons/outline/circle-number-2.svg index 4f722cc29..ef1345de0 100644 --- a/icons/outline/circle-number-2.svg +++ b/icons/outline/circle-number-2.svg @@ -15,6 +15,6 @@ unicode: "ee36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-3.svg b/icons/outline/circle-number-3.svg index 965eb6af7..1745c6a34 100644 --- a/icons/outline/circle-number-3.svg +++ b/icons/outline/circle-number-3.svg @@ -15,6 +15,6 @@ unicode: "ee37" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-4.svg b/icons/outline/circle-number-4.svg index 702065de5..334a9742c 100644 --- a/icons/outline/circle-number-4.svg +++ b/icons/outline/circle-number-4.svg @@ -15,7 +15,7 @@ unicode: "ee38" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-5.svg b/icons/outline/circle-number-5.svg index 85e8d72bf..a71039c98 100644 --- a/icons/outline/circle-number-5.svg +++ b/icons/outline/circle-number-5.svg @@ -15,6 +15,6 @@ unicode: "ee39" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-6.svg b/icons/outline/circle-number-6.svg index 222fda101..8e494ff40 100644 --- a/icons/outline/circle-number-6.svg +++ b/icons/outline/circle-number-6.svg @@ -15,6 +15,6 @@ unicode: "ee3a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-7.svg b/icons/outline/circle-number-7.svg index fe2710eb8..170b2bf50 100644 --- a/icons/outline/circle-number-7.svg +++ b/icons/outline/circle-number-7.svg @@ -15,6 +15,6 @@ unicode: "ee3b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-8.svg b/icons/outline/circle-number-8.svg index 533705ea9..7fe5c7d9a 100644 --- a/icons/outline/circle-number-8.svg +++ b/icons/outline/circle-number-8.svg @@ -15,6 +15,6 @@ unicode: "ee3c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-number-9.svg b/icons/outline/circle-number-9.svg index ecf341752..c4ba70cd9 100644 --- a/icons/outline/circle-number-9.svg +++ b/icons/outline/circle-number-9.svg @@ -15,6 +15,6 @@ unicode: "ee3d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle-rectangle.svg b/icons/outline/circle-rectangle.svg index ad25a84ce..e3ea4d62a 100644 --- a/icons/outline/circle-rectangle.svg +++ b/icons/outline/circle-rectangle.svg @@ -15,6 +15,6 @@ unicode: "f010" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-square.svg b/icons/outline/circle-square.svg index b5dac7bd2..672ce34f7 100644 --- a/icons/outline/circle-square.svg +++ b/icons/outline/circle-square.svg @@ -15,6 +15,6 @@ unicode: "ece4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-triangle.svg b/icons/outline/circle-triangle.svg index 9a792523c..ac216c9b5 100644 --- a/icons/outline/circle-triangle.svg +++ b/icons/outline/circle-triangle.svg @@ -15,6 +15,6 @@ unicode: "f011" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/circle-x.svg b/icons/outline/circle-x.svg index 46f08016f..c0bba84b5 100644 --- a/icons/outline/circle-x.svg +++ b/icons/outline/circle-x.svg @@ -15,6 +15,6 @@ unicode: "ea6a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circle.svg b/icons/outline/circle.svg index 51bb83537..8733e46d2 100644 --- a/icons/outline/circle.svg +++ b/icons/outline/circle.svg @@ -15,5 +15,5 @@ unicode: "ea6b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circles.svg b/icons/outline/circles.svg index 2ba077e24..fbe9dad7c 100644 --- a/icons/outline/circles.svg +++ b/icons/outline/circles.svg @@ -15,7 +15,7 @@ unicode: "ece5" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/circuit-ammeter.svg b/icons/outline/circuit-ammeter.svg index 5b80b1e9c..6587283a8 100644 --- a/icons/outline/circuit-ammeter.svg +++ b/icons/outline/circuit-ammeter.svg @@ -15,7 +15,7 @@ unicode: "f271" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circuit-bulb.svg b/icons/outline/circuit-bulb.svg index 797f98e4d..d368a84c4 100644 --- a/icons/outline/circuit-bulb.svg +++ b/icons/outline/circuit-bulb.svg @@ -17,7 +17,7 @@ unicode: "f273" > - + diff --git a/icons/outline/circuit-changeover.svg b/icons/outline/circuit-changeover.svg index 6fd88a2dc..5dab6a135 100644 --- a/icons/outline/circuit-changeover.svg +++ b/icons/outline/circuit-changeover.svg @@ -17,9 +17,9 @@ unicode: "f278" > - - + + - + diff --git a/icons/outline/circuit-diode-zener.svg b/icons/outline/circuit-diode-zener.svg index f0d03ecb6..89746a882 100644 --- a/icons/outline/circuit-diode-zener.svg +++ b/icons/outline/circuit-diode-zener.svg @@ -17,6 +17,6 @@ unicode: "f279" > - + diff --git a/icons/outline/circuit-diode.svg b/icons/outline/circuit-diode.svg index 023e9ce34..eb12c0fe8 100644 --- a/icons/outline/circuit-diode.svg +++ b/icons/outline/circuit-diode.svg @@ -17,6 +17,6 @@ unicode: "f27a" > - + diff --git a/icons/outline/circuit-ground-digital.svg b/icons/outline/circuit-ground-digital.svg index 72e740e91..7d7b09991 100644 --- a/icons/outline/circuit-ground-digital.svg +++ b/icons/outline/circuit-ground-digital.svg @@ -16,5 +16,5 @@ unicode: "f27b" stroke-linejoin="round" > - + diff --git a/icons/outline/circuit-motor.svg b/icons/outline/circuit-motor.svg index 0fd4f856e..49e7f9dfc 100644 --- a/icons/outline/circuit-motor.svg +++ b/icons/outline/circuit-motor.svg @@ -15,7 +15,7 @@ unicode: "f27e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/circuit-pushbutton.svg b/icons/outline/circuit-pushbutton.svg index 8e8e47161..8f254bf6f 100644 --- a/icons/outline/circuit-pushbutton.svg +++ b/icons/outline/circuit-pushbutton.svg @@ -17,8 +17,8 @@ unicode: "f27f" > - - + + diff --git a/icons/outline/circuit-switch-closed.svg b/icons/outline/circuit-switch-closed.svg index 02dd519d2..4992c2943 100644 --- a/icons/outline/circuit-switch-closed.svg +++ b/icons/outline/circuit-switch-closed.svg @@ -17,7 +17,7 @@ unicode: "f281" > - - + + diff --git a/icons/outline/circuit-switch-open.svg b/icons/outline/circuit-switch-open.svg index e527b87d2..6980cc188 100644 --- a/icons/outline/circuit-switch-open.svg +++ b/icons/outline/circuit-switch-open.svg @@ -17,7 +17,7 @@ unicode: "f282" > - - + + diff --git a/icons/outline/circuit-voltmeter.svg b/icons/outline/circuit-voltmeter.svg index f45b6d0ec..e184f7fcb 100644 --- a/icons/outline/circuit-voltmeter.svg +++ b/icons/outline/circuit-voltmeter.svg @@ -15,7 +15,7 @@ unicode: "f283" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-check.svg b/icons/outline/clipboard-check.svg index 91cde28ed..cdfe6b0fc 100644 --- a/icons/outline/clipboard-check.svg +++ b/icons/outline/clipboard-check.svg @@ -16,6 +16,6 @@ unicode: "ea6c" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-copy.svg b/icons/outline/clipboard-copy.svg index 0e45c39f6..e9370fd14 100644 --- a/icons/outline/clipboard-copy.svg +++ b/icons/outline/clipboard-copy.svg @@ -17,5 +17,5 @@ unicode: "f299" > - + diff --git a/icons/outline/clipboard-data.svg b/icons/outline/clipboard-data.svg index 20590380c..1217df325 100644 --- a/icons/outline/clipboard-data.svg +++ b/icons/outline/clipboard-data.svg @@ -16,7 +16,7 @@ unicode: "f563" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-heart.svg b/icons/outline/clipboard-heart.svg index 662e8de57..c42cc2cdd 100644 --- a/icons/outline/clipboard-heart.svg +++ b/icons/outline/clipboard-heart.svg @@ -16,6 +16,6 @@ unicode: "f34e" stroke-linejoin="round" > - - + + diff --git a/icons/outline/clipboard-list.svg b/icons/outline/clipboard-list.svg index 649e3824e..654a4c5f1 100644 --- a/icons/outline/clipboard-list.svg +++ b/icons/outline/clipboard-list.svg @@ -16,7 +16,7 @@ unicode: "ea6d" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-plus.svg b/icons/outline/clipboard-plus.svg index ed6d9b5d0..9365a5207 100644 --- a/icons/outline/clipboard-plus.svg +++ b/icons/outline/clipboard-plus.svg @@ -16,7 +16,7 @@ unicode: "efb2" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-search.svg b/icons/outline/clipboard-search.svg index 6b1652d29..2a795f53a 100644 --- a/icons/outline/clipboard-search.svg +++ b/icons/outline/clipboard-search.svg @@ -17,6 +17,6 @@ version: "3.22" > - + diff --git a/icons/outline/clipboard-smile.svg b/icons/outline/clipboard-smile.svg index 077faac6f..5f22b5733 100644 --- a/icons/outline/clipboard-smile.svg +++ b/icons/outline/clipboard-smile.svg @@ -19,5 +19,5 @@ unicode: "fd9a" - + diff --git a/icons/outline/clipboard-text.svg b/icons/outline/clipboard-text.svg index 3a86f303d..265b3df94 100644 --- a/icons/outline/clipboard-text.svg +++ b/icons/outline/clipboard-text.svg @@ -16,7 +16,7 @@ unicode: "f089" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-typography.svg b/icons/outline/clipboard-typography.svg index 1e1349ca7..f42063cb9 100644 --- a/icons/outline/clipboard-typography.svg +++ b/icons/outline/clipboard-typography.svg @@ -16,7 +16,7 @@ unicode: "f34f" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard-x.svg b/icons/outline/clipboard-x.svg index 22eeeafa8..758f05d6e 100644 --- a/icons/outline/clipboard-x.svg +++ b/icons/outline/clipboard-x.svg @@ -16,6 +16,6 @@ unicode: "ea6e" stroke-linejoin="round" > - + diff --git a/icons/outline/clipboard.svg b/icons/outline/clipboard.svg index eaefd914c..73213db36 100644 --- a/icons/outline/clipboard.svg +++ b/icons/outline/clipboard.svg @@ -16,5 +16,5 @@ unicode: "ea6f" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-2.svg b/icons/outline/clock-2.svg index a662a7a33..71a700b93 100644 --- a/icons/outline/clock-2.svg +++ b/icons/outline/clock-2.svg @@ -15,7 +15,7 @@ unicode: "f099" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-cancel.svg b/icons/outline/clock-cancel.svg index 29d82a2aa..fcad774a7 100644 --- a/icons/outline/clock-cancel.svg +++ b/icons/outline/clock-cancel.svg @@ -16,7 +16,7 @@ unicode: "f546" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-cog.svg b/icons/outline/clock-cog.svg index 327df9c4c..c5793426a 100644 --- a/icons/outline/clock-cog.svg +++ b/icons/outline/clock-cog.svg @@ -16,7 +16,7 @@ unicode: "f7c2" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-edit.svg b/icons/outline/clock-edit.svg index 98f155729..45bde467f 100644 --- a/icons/outline/clock-edit.svg +++ b/icons/outline/clock-edit.svg @@ -17,5 +17,5 @@ unicode: "f547" > - + diff --git a/icons/outline/clock-heart.svg b/icons/outline/clock-heart.svg index ef285bf46..b491e1aed 100644 --- a/icons/outline/clock-heart.svg +++ b/icons/outline/clock-heart.svg @@ -16,6 +16,6 @@ unicode: "f7c4" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-1.svg b/icons/outline/clock-hour-1.svg index 94fcf7475..2e2b9d909 100644 --- a/icons/outline/clock-hour-1.svg +++ b/icons/outline/clock-hour-1.svg @@ -15,7 +15,7 @@ unicode: "f313" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-10.svg b/icons/outline/clock-hour-10.svg index 91fbefb6a..db9426c54 100644 --- a/icons/outline/clock-hour-10.svg +++ b/icons/outline/clock-hour-10.svg @@ -15,7 +15,7 @@ unicode: "f314" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-11.svg b/icons/outline/clock-hour-11.svg index 3d01f7029..28e746c08 100644 --- a/icons/outline/clock-hour-11.svg +++ b/icons/outline/clock-hour-11.svg @@ -15,7 +15,7 @@ unicode: "f315" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-12.svg b/icons/outline/clock-hour-12.svg index 49603bf33..c40c0d2b5 100644 --- a/icons/outline/clock-hour-12.svg +++ b/icons/outline/clock-hour-12.svg @@ -15,6 +15,6 @@ unicode: "f316" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-2.svg b/icons/outline/clock-hour-2.svg index 4dfab51fd..07f37980f 100644 --- a/icons/outline/clock-hour-2.svg +++ b/icons/outline/clock-hour-2.svg @@ -15,7 +15,7 @@ unicode: "f317" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-3.svg b/icons/outline/clock-hour-3.svg index e8c402c32..579756157 100644 --- a/icons/outline/clock-hour-3.svg +++ b/icons/outline/clock-hour-3.svg @@ -15,7 +15,7 @@ unicode: "f318" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-4.svg b/icons/outline/clock-hour-4.svg index b49a38a63..3926f8367 100644 --- a/icons/outline/clock-hour-4.svg +++ b/icons/outline/clock-hour-4.svg @@ -15,7 +15,7 @@ unicode: "f319" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-5.svg b/icons/outline/clock-hour-5.svg index 4679f5700..5b11b70c4 100644 --- a/icons/outline/clock-hour-5.svg +++ b/icons/outline/clock-hour-5.svg @@ -15,7 +15,7 @@ unicode: "f31a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-6.svg b/icons/outline/clock-hour-6.svg index 6ef6c8e74..82bf60d6f 100644 --- a/icons/outline/clock-hour-6.svg +++ b/icons/outline/clock-hour-6.svg @@ -15,7 +15,7 @@ unicode: "f31b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-7.svg b/icons/outline/clock-hour-7.svg index 966493582..22f90d57b 100644 --- a/icons/outline/clock-hour-7.svg +++ b/icons/outline/clock-hour-7.svg @@ -15,7 +15,7 @@ unicode: "f31c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-8.svg b/icons/outline/clock-hour-8.svg index 9d0b0f568..69c2661ba 100644 --- a/icons/outline/clock-hour-8.svg +++ b/icons/outline/clock-hour-8.svg @@ -15,7 +15,7 @@ unicode: "f31d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-hour-9.svg b/icons/outline/clock-hour-9.svg index 30f2a5b3f..d321d96e4 100644 --- a/icons/outline/clock-hour-9.svg +++ b/icons/outline/clock-hour-9.svg @@ -15,7 +15,7 @@ unicode: "f31e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-pin.svg b/icons/outline/clock-pin.svg index 19b817442..75ac83422 100644 --- a/icons/outline/clock-pin.svg +++ b/icons/outline/clock-pin.svg @@ -17,6 +17,6 @@ unicode: "f849" > - + diff --git a/icons/outline/clock-play.svg b/icons/outline/clock-play.svg index b88c3c0d2..636307a12 100644 --- a/icons/outline/clock-play.svg +++ b/icons/outline/clock-play.svg @@ -16,6 +16,6 @@ unicode: "f549" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-record.svg b/icons/outline/clock-record.svg index 29daeeb4c..7bd3ccbbd 100644 --- a/icons/outline/clock-record.svg +++ b/icons/outline/clock-record.svg @@ -17,5 +17,5 @@ unicode: "f54a" > - + diff --git a/icons/outline/clock-search.svg b/icons/outline/clock-search.svg index 20802811d..e41279543 100644 --- a/icons/outline/clock-search.svg +++ b/icons/outline/clock-search.svg @@ -17,6 +17,6 @@ unicode: "f7c7" > - + diff --git a/icons/outline/clock-shield.svg b/icons/outline/clock-shield.svg index 90727aae0..e4aa34508 100644 --- a/icons/outline/clock-shield.svg +++ b/icons/outline/clock-shield.svg @@ -17,5 +17,5 @@ unicode: "f7c8" > - + diff --git a/icons/outline/clock-star.svg b/icons/outline/clock-star.svg index 88d7dc608..d035e5366 100644 --- a/icons/outline/clock-star.svg +++ b/icons/outline/clock-star.svg @@ -16,6 +16,6 @@ unicode: "f7c9" stroke-linejoin="round" > - + diff --git a/icons/outline/clock-stop.svg b/icons/outline/clock-stop.svg index 47a03656e..67c174197 100644 --- a/icons/outline/clock-stop.svg +++ b/icons/outline/clock-stop.svg @@ -17,5 +17,5 @@ unicode: "f54b" > - + diff --git a/icons/outline/clothes-rack-off.svg b/icons/outline/clothes-rack-off.svg index 66851a968..374868173 100644 --- a/icons/outline/clothes-rack-off.svg +++ b/icons/outline/clothes-rack-off.svg @@ -15,7 +15,7 @@ unicode: "f3d6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/clothes-rack.svg b/icons/outline/clothes-rack.svg index af1aa6e12..ddc4067c3 100644 --- a/icons/outline/clothes-rack.svg +++ b/icons/outline/clothes-rack.svg @@ -15,7 +15,7 @@ unicode: "f285" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-cancel.svg b/icons/outline/cloud-cancel.svg index 75eac6daa..587c16c1a 100644 --- a/icons/outline/cloud-cancel.svg +++ b/icons/outline/cloud-cancel.svg @@ -16,6 +16,6 @@ unicode: "f84c" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-cog.svg b/icons/outline/cloud-cog.svg index f72f989a3..6e7c41fa5 100644 --- a/icons/outline/cloud-cog.svg +++ b/icons/outline/cloud-cog.svg @@ -16,7 +16,7 @@ unicode: "f84f" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-data-connection.svg b/icons/outline/cloud-data-connection.svg index 667fe802c..fde8cbf20 100644 --- a/icons/outline/cloud-data-connection.svg +++ b/icons/outline/cloud-data-connection.svg @@ -15,9 +15,9 @@ unicode: "f1d1" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/cloud-heart.svg b/icons/outline/cloud-heart.svg index b6d6c7b2d..1d39f9f37 100644 --- a/icons/outline/cloud-heart.svg +++ b/icons/outline/cloud-heart.svg @@ -16,5 +16,5 @@ unicode: "f853" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-lock-open.svg b/icons/outline/cloud-lock-open.svg index ba8373606..afd02df70 100644 --- a/icons/outline/cloud-lock-open.svg +++ b/icons/outline/cloud-lock-open.svg @@ -16,6 +16,6 @@ unicode: "efda" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-lock.svg b/icons/outline/cloud-lock.svg index 967d74d66..a802aa698 100644 --- a/icons/outline/cloud-lock.svg +++ b/icons/outline/cloud-lock.svg @@ -16,6 +16,6 @@ unicode: "efdb" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-pin.svg b/icons/outline/cloud-pin.svg index ad4b8d300..5457b6ab3 100644 --- a/icons/outline/cloud-pin.svg +++ b/icons/outline/cloud-pin.svg @@ -16,6 +16,6 @@ unicode: "f856" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-search.svg b/icons/outline/cloud-search.svg index db7396caf..d5e7a5bc3 100644 --- a/icons/outline/cloud-search.svg +++ b/icons/outline/cloud-search.svg @@ -16,6 +16,6 @@ unicode: "f859" stroke-linejoin="round" > - + diff --git a/icons/outline/cloud-star.svg b/icons/outline/cloud-star.svg index 1c277f504..0cb5e09bd 100644 --- a/icons/outline/cloud-star.svg +++ b/icons/outline/cloud-star.svg @@ -16,5 +16,5 @@ unicode: "f85b" stroke-linejoin="round" > - + diff --git a/icons/outline/clover-2.svg b/icons/outline/clover-2.svg index d4c3ce8e8..76972c66f 100644 --- a/icons/outline/clover-2.svg +++ b/icons/outline/clover-2.svg @@ -15,8 +15,8 @@ unicode: "f21e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/clover.svg b/icons/outline/clover.svg index 5427125ea..42a95cf38 100644 --- a/icons/outline/clover.svg +++ b/icons/outline/clover.svg @@ -15,8 +15,8 @@ unicode: "f1ea" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/clubs.svg b/icons/outline/clubs.svg index 77349d707..1f4578411 100644 --- a/icons/outline/clubs.svg +++ b/icons/outline/clubs.svg @@ -15,5 +15,5 @@ unicode: "eff4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/code-circle-2.svg b/icons/outline/code-circle-2.svg index 3a42eac35..2c684d63b 100644 --- a/icons/outline/code-circle-2.svg +++ b/icons/outline/code-circle-2.svg @@ -17,6 +17,6 @@ unicode: "f4fe" > - + diff --git a/icons/outline/code-circle.svg b/icons/outline/code-circle.svg index e43fbf18e..1ea4463dc 100644 --- a/icons/outline/code-circle.svg +++ b/icons/outline/code-circle.svg @@ -17,5 +17,5 @@ unicode: "f4ff" > - + diff --git a/icons/outline/code-variable.svg b/icons/outline/code-variable.svg index 427c4d6c2..8194d9f8d 100644 --- a/icons/outline/code-variable.svg +++ b/icons/outline/code-variable.svg @@ -15,5 +15,5 @@ unicode: "100ab" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coffee.svg b/icons/outline/coffee.svg index bdbf2e6ab..ecccea30b 100644 --- a/icons/outline/coffee.svg +++ b/icons/outline/coffee.svg @@ -18,6 +18,6 @@ unicode: "ef0e" - + diff --git a/icons/outline/coffin.svg b/icons/outline/coffin.svg index 77f7a2201..b192889e7 100644 --- a/icons/outline/coffin.svg +++ b/icons/outline/coffin.svg @@ -15,7 +15,7 @@ unicode: "f579" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-bitcoin.svg b/icons/outline/coin-bitcoin.svg index c2bbde05b..8bfe37337 100644 --- a/icons/outline/coin-bitcoin.svg +++ b/icons/outline/coin-bitcoin.svg @@ -15,7 +15,7 @@ unicode: "f2be" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-euro.svg b/icons/outline/coin-euro.svg index a0df2c2a3..c4e7f4b14 100644 --- a/icons/outline/coin-euro.svg +++ b/icons/outline/coin-euro.svg @@ -15,7 +15,7 @@ unicode: "f2bf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-monero.svg b/icons/outline/coin-monero.svg index 7eb46fe18..820f2f8e9 100644 --- a/icons/outline/coin-monero.svg +++ b/icons/outline/coin-monero.svg @@ -15,6 +15,6 @@ unicode: "f4a0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-pound.svg b/icons/outline/coin-pound.svg index fe2fe0e05..c900edf62 100644 --- a/icons/outline/coin-pound.svg +++ b/icons/outline/coin-pound.svg @@ -15,7 +15,7 @@ unicode: "f2c0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-rupee.svg b/icons/outline/coin-rupee.svg index c9d87a01d..9870f9fa9 100644 --- a/icons/outline/coin-rupee.svg +++ b/icons/outline/coin-rupee.svg @@ -15,7 +15,7 @@ unicode: "f2c1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-yen.svg b/icons/outline/coin-yen.svg index 0110875e7..ef886e7de 100644 --- a/icons/outline/coin-yen.svg +++ b/icons/outline/coin-yen.svg @@ -15,7 +15,7 @@ unicode: "f2c2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin-yuan.svg b/icons/outline/coin-yuan.svg index 861858c3a..79cd0b0a7 100644 --- a/icons/outline/coin-yuan.svg +++ b/icons/outline/coin-yuan.svg @@ -15,7 +15,7 @@ unicode: "f2c3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coin.svg b/icons/outline/coin.svg index 06ff2ce8a..b546a3b76 100644 --- a/icons/outline/coin.svg +++ b/icons/outline/coin.svg @@ -15,7 +15,7 @@ unicode: "eb82" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/coins.svg b/icons/outline/coins.svg index 5ca45e3d3..f45252ddf 100644 --- a/icons/outline/coins.svg +++ b/icons/outline/coins.svg @@ -15,9 +15,9 @@ unicode: "f65d" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/color-filter.svg b/icons/outline/color-filter.svg index 54deb8143..c83db815d 100644 --- a/icons/outline/color-filter.svg +++ b/icons/outline/color-filter.svg @@ -17,5 +17,5 @@ unicode: "f5a8" > - + diff --git a/icons/outline/color-picker.svg b/icons/outline/color-picker.svg index 91b55219b..57d2b5766 100644 --- a/icons/outline/color-picker.svg +++ b/icons/outline/color-picker.svg @@ -16,5 +16,5 @@ unicode: "ebe6" stroke-linejoin="round" > - + diff --git a/icons/outline/column-insert-left.svg b/icons/outline/column-insert-left.svg index 006440496..5e5c7567b 100644 --- a/icons/outline/column-insert-left.svg +++ b/icons/outline/column-insert-left.svg @@ -15,7 +15,7 @@ unicode: "ee44" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/column-insert-right.svg b/icons/outline/column-insert-right.svg index 4de799e49..1d6920ad9 100644 --- a/icons/outline/column-insert-right.svg +++ b/icons/outline/column-insert-right.svg @@ -15,7 +15,7 @@ unicode: "ee45" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/column-remove.svg b/icons/outline/column-remove.svg index ea64b16ef..363a402c1 100644 --- a/icons/outline/column-remove.svg +++ b/icons/outline/column-remove.svg @@ -15,7 +15,7 @@ unicode: "faf4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/columns-1.svg b/icons/outline/columns-1.svg index c0363b490..157f15927 100644 --- a/icons/outline/columns-1.svg +++ b/icons/outline/columns-1.svg @@ -15,5 +15,5 @@ unicode: "f6d4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/columns-2.svg b/icons/outline/columns-2.svg index 2c38e2520..4e24647a9 100644 --- a/icons/outline/columns-2.svg +++ b/icons/outline/columns-2.svg @@ -15,5 +15,6 @@ unicode: "f6d5" stroke-linecap="round" stroke-linejoin="round" > - + + diff --git a/icons/outline/columns-3.svg b/icons/outline/columns-3.svg index 1158131d7..ce98fb526 100644 --- a/icons/outline/columns-3.svg +++ b/icons/outline/columns-3.svg @@ -15,5 +15,7 @@ unicode: "f6d6" stroke-linecap="round" stroke-linejoin="round" > - + + + diff --git a/icons/outline/comet.svg b/icons/outline/comet.svg index 312649107..06f623c33 100644 --- a/icons/outline/comet.svg +++ b/icons/outline/comet.svg @@ -15,7 +15,7 @@ unicode: "ec76" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/compass.svg b/icons/outline/compass.svg index 1cec3a2a2..61d1353ef 100644 --- a/icons/outline/compass.svg +++ b/icons/outline/compass.svg @@ -16,7 +16,7 @@ unicode: "ea79" stroke-linejoin="round" > - + diff --git a/icons/outline/components-off.svg b/icons/outline/components-off.svg index f561a9990..89b0c465d 100644 --- a/icons/outline/components-off.svg +++ b/icons/outline/components-off.svg @@ -15,9 +15,9 @@ unicode: "f0d6" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/components.svg b/icons/outline/components.svg index 198ef88aa..9c03f182d 100644 --- a/icons/outline/components.svg +++ b/icons/outline/components.svg @@ -15,8 +15,8 @@ unicode: "efa5" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/confetti-off.svg b/icons/outline/confetti-off.svg index 6d7ccb3d2..5a216f14f 100644 --- a/icons/outline/confetti-off.svg +++ b/icons/outline/confetti-off.svg @@ -24,6 +24,6 @@ unicode: "f3d9" - + diff --git a/icons/outline/confetti.svg b/icons/outline/confetti.svg index f1510eaad..61295c118 100644 --- a/icons/outline/confetti.svg +++ b/icons/outline/confetti.svg @@ -24,5 +24,5 @@ unicode: "ee46" - + diff --git a/icons/outline/container.svg b/icons/outline/container.svg index a31dea9b2..c96e76ae6 100644 --- a/icons/outline/container.svg +++ b/icons/outline/container.svg @@ -20,7 +20,7 @@ unicode: "ee47" - + diff --git a/icons/outline/contract.svg b/icons/outline/contract.svg index a71cc2d8a..ddbe0ef4c 100644 --- a/icons/outline/contract.svg +++ b/icons/outline/contract.svg @@ -20,5 +20,5 @@ version: "3.6" - + diff --git a/icons/outline/contrast-2.svg b/icons/outline/contrast-2.svg index 50f1d593b..97e6f4cab 100644 --- a/icons/outline/contrast-2.svg +++ b/icons/outline/contrast-2.svg @@ -15,6 +15,6 @@ unicode: "efc7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/contrast.svg b/icons/outline/contrast.svg index d574822a8..4a28858d0 100644 --- a/icons/outline/contrast.svg +++ b/icons/outline/contrast.svg @@ -15,6 +15,6 @@ unicode: "ec4e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cooker.svg b/icons/outline/cooker.svg index f2b4c2a6c..900da3d8e 100644 --- a/icons/outline/cooker.svg +++ b/icons/outline/cooker.svg @@ -18,7 +18,7 @@ unicode: "f57a" - + diff --git a/icons/outline/cookie-man.svg b/icons/outline/cookie-man.svg index 817e91ebe..e21a676a7 100644 --- a/icons/outline/cookie-man.svg +++ b/icons/outline/cookie-man.svg @@ -15,8 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/cookie.svg b/icons/outline/cookie.svg index e241d9d70..3a38db58f 100644 --- a/icons/outline/cookie.svg +++ b/icons/outline/cookie.svg @@ -15,7 +15,6 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - diff --git a/icons/outline/copy-check.svg b/icons/outline/copy-check.svg index a201c9e8b..78403e7da 100644 --- a/icons/outline/copy-check.svg +++ b/icons/outline/copy-check.svg @@ -15,8 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/copy-minus.svg b/icons/outline/copy-minus.svg index 076a104f1..015b95a20 100644 --- a/icons/outline/copy-minus.svg +++ b/icons/outline/copy-minus.svg @@ -15,8 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/copy-plus.svg b/icons/outline/copy-plus.svg index b42c7c20b..c78e95840 100644 --- a/icons/outline/copy-plus.svg +++ b/icons/outline/copy-plus.svg @@ -15,8 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/copy-x.svg b/icons/outline/copy-x.svg index da3670500..ce9eee0ba 100644 --- a/icons/outline/copy-x.svg +++ b/icons/outline/copy-x.svg @@ -15,8 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/copy.svg b/icons/outline/copy.svg index fff40cce6..663b079e7 100644 --- a/icons/outline/copy.svg +++ b/icons/outline/copy.svg @@ -15,6 +15,6 @@ unicode: "ea7a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/copyleft.svg b/icons/outline/copyleft.svg index d2ab2655f..18fce026f 100644 --- a/icons/outline/copyleft.svg +++ b/icons/outline/copyleft.svg @@ -15,6 +15,6 @@ unicode: "ec3d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/copyright.svg b/icons/outline/copyright.svg index 593f2d974..5e0930f9e 100644 --- a/icons/outline/copyright.svg +++ b/icons/outline/copyright.svg @@ -15,6 +15,6 @@ unicode: "ea7b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cpu-2.svg b/icons/outline/cpu-2.svg index ea929c69c..c83f3f9bc 100644 --- a/icons/outline/cpu-2.svg +++ b/icons/outline/cpu-2.svg @@ -15,7 +15,7 @@ unicode: "f075" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cpu.svg b/icons/outline/cpu.svg index ff3f855bf..290640f58 100644 --- a/icons/outline/cpu.svg +++ b/icons/outline/cpu.svg @@ -15,8 +15,8 @@ unicode: "ef8e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/creative-commons-by.svg b/icons/outline/creative-commons-by.svg index f1debf455..7b5e379bd 100644 --- a/icons/outline/creative-commons-by.svg +++ b/icons/outline/creative-commons-by.svg @@ -15,7 +15,7 @@ unicode: "f21f" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/creative-commons-nc.svg b/icons/outline/creative-commons-nc.svg index 2a2d18d82..eb3a5dcb6 100644 --- a/icons/outline/creative-commons-nc.svg +++ b/icons/outline/creative-commons-nc.svg @@ -15,7 +15,7 @@ unicode: "f220" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/creative-commons-nd.svg b/icons/outline/creative-commons-nd.svg index e5776044c..1defd3da6 100644 --- a/icons/outline/creative-commons-nd.svg +++ b/icons/outline/creative-commons-nd.svg @@ -15,7 +15,7 @@ unicode: "f221" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/creative-commons-sa.svg b/icons/outline/creative-commons-sa.svg index e54ba0630..01db0b933 100644 --- a/icons/outline/creative-commons-sa.svg +++ b/icons/outline/creative-commons-sa.svg @@ -15,7 +15,7 @@ unicode: "f222" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/creative-commons-zero.svg b/icons/outline/creative-commons-zero.svg index a689f2176..2016ed04b 100644 --- a/icons/outline/creative-commons-zero.svg +++ b/icons/outline/creative-commons-zero.svg @@ -15,7 +15,7 @@ unicode: "f223" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/creative-commons.svg b/icons/outline/creative-commons.svg index cbb644d42..e768ba110 100644 --- a/icons/outline/creative-commons.svg +++ b/icons/outline/creative-commons.svg @@ -15,7 +15,7 @@ unicode: "efb3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/credit-card.svg b/icons/outline/credit-card.svg index 08080dbf1..251a736ef 100644 --- a/icons/outline/credit-card.svg +++ b/icons/outline/credit-card.svg @@ -15,7 +15,7 @@ unicode: "ea84" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cricket.svg b/icons/outline/cricket.svg index 0f66821de..a1e0aa863 100644 --- a/icons/outline/cricket.svg +++ b/icons/outline/cricket.svg @@ -17,5 +17,5 @@ unicode: "f09a" > - + diff --git a/icons/outline/crop-1-1.svg b/icons/outline/crop-1-1.svg index 6b80d24bd..2298e2043 100644 --- a/icons/outline/crop-1-1.svg +++ b/icons/outline/crop-1-1.svg @@ -15,5 +15,5 @@ unicode: "fd50" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-16-9.svg b/icons/outline/crop-16-9.svg index a404cc0e6..c3cad8c5a 100644 --- a/icons/outline/crop-16-9.svg +++ b/icons/outline/crop-16-9.svg @@ -15,5 +15,5 @@ unicode: "fd51" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-3-2.svg b/icons/outline/crop-3-2.svg index e4bf9c562..092f742dd 100644 --- a/icons/outline/crop-3-2.svg +++ b/icons/outline/crop-3-2.svg @@ -15,5 +15,5 @@ unicode: "fd52" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-5-4.svg b/icons/outline/crop-5-4.svg index dcb2c4977..d8af0f2ee 100644 --- a/icons/outline/crop-5-4.svg +++ b/icons/outline/crop-5-4.svg @@ -15,5 +15,5 @@ unicode: "fd53" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-7-5.svg b/icons/outline/crop-7-5.svg index 84a67843a..4dbd0eff8 100644 --- a/icons/outline/crop-7-5.svg +++ b/icons/outline/crop-7-5.svg @@ -15,5 +15,5 @@ unicode: "fd54" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-landscape.svg b/icons/outline/crop-landscape.svg index 61cddd02f..cb79cf140 100644 --- a/icons/outline/crop-landscape.svg +++ b/icons/outline/crop-landscape.svg @@ -15,5 +15,5 @@ unicode: "fd55" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crop-portrait.svg b/icons/outline/crop-portrait.svg index 411e4687b..b033221b6 100644 --- a/icons/outline/crop-portrait.svg +++ b/icons/outline/crop-portrait.svg @@ -15,5 +15,5 @@ unicode: "fd56" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cross.svg b/icons/outline/cross.svg index d36c7c267..a1ed4705d 100644 --- a/icons/outline/cross.svg +++ b/icons/outline/cross.svg @@ -15,5 +15,5 @@ unicode: "ef8f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crown.svg b/icons/outline/crown.svg index 8788bd2c7..462bb1562 100644 --- a/icons/outline/crown.svg +++ b/icons/outline/crown.svg @@ -15,5 +15,5 @@ unicode: "ed12" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crutches.svg b/icons/outline/crutches.svg index cea842c57..9bb245a84 100644 --- a/icons/outline/crutches.svg +++ b/icons/outline/crutches.svg @@ -15,7 +15,7 @@ unicode: "ef5b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/crystal-ball.svg b/icons/outline/crystal-ball.svg index f955c73db..1b0cacabe 100644 --- a/icons/outline/crystal-ball.svg +++ b/icons/outline/crystal-ball.svg @@ -16,6 +16,6 @@ unicode: "f57b" stroke-linejoin="round" > - + diff --git a/icons/outline/cube-send.svg b/icons/outline/cube-send.svg index 989c8466c..897634af4 100644 --- a/icons/outline/cube-send.svg +++ b/icons/outline/cube-send.svg @@ -15,7 +15,7 @@ unicode: "f61b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cube-unfolded.svg b/icons/outline/cube-unfolded.svg index d271d872b..c1cff1b11 100644 --- a/icons/outline/cube-unfolded.svg +++ b/icons/outline/cube-unfolded.svg @@ -15,6 +15,6 @@ unicode: "f61c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cube.svg b/icons/outline/cube.svg index 57a0a80c0..ec1572b55 100644 --- a/icons/outline/cube.svg +++ b/icons/outline/cube.svg @@ -15,7 +15,7 @@ unicode: "fa97" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cup.svg b/icons/outline/cup.svg index 3a82a9146..2bda0af04 100644 --- a/icons/outline/cup.svg +++ b/icons/outline/cup.svg @@ -15,7 +15,7 @@ unicode: "ef28" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/curling.svg b/icons/outline/curling.svg index 6be9d7393..fa41ccc60 100644 --- a/icons/outline/curling.svg +++ b/icons/outline/curling.svg @@ -15,7 +15,7 @@ unicode: "efc8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/currency-dollar-brunei.svg b/icons/outline/currency-dollar-brunei.svg index c337cd953..6a6ac648e 100644 --- a/icons/outline/currency-dollar-brunei.svg +++ b/icons/outline/currency-dollar-brunei.svg @@ -18,5 +18,5 @@ unicode: "f36c" - + diff --git a/icons/outline/currency-dong.svg b/icons/outline/currency-dong.svg index dd8ca8775..1e7c8642d 100644 --- a/icons/outline/currency-dong.svg +++ b/icons/outline/currency-dong.svg @@ -16,7 +16,7 @@ unicode: "f36f" stroke-linejoin="round" > - + diff --git a/icons/outline/currency-ethereum.svg b/icons/outline/currency-ethereum.svg index e91d95f03..78b5ab5fd 100644 --- a/icons/outline/currency-ethereum.svg +++ b/icons/outline/currency-ethereum.svg @@ -15,6 +15,6 @@ unicode: "ee59" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/currency-quetzal.svg b/icons/outline/currency-quetzal.svg index 09389f3c9..273a0e499 100644 --- a/icons/outline/currency-quetzal.svg +++ b/icons/outline/currency-quetzal.svg @@ -15,6 +15,6 @@ unicode: "f379" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/currency-ripple.svg b/icons/outline/currency-ripple.svg index 3f0748bd2..c545efb0c 100644 --- a/icons/outline/currency-ripple.svg +++ b/icons/outline/currency-ripple.svg @@ -15,9 +15,9 @@ unicode: "ee65" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/currency-solana.svg b/icons/outline/currency-solana.svg index 27e9faedd..2c8e296bd 100644 --- a/icons/outline/currency-solana.svg +++ b/icons/outline/currency-solana.svg @@ -15,7 +15,7 @@ unicode: "f4a1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/currency-som.svg b/icons/outline/currency-som.svg index 77371a847..80289087f 100644 --- a/icons/outline/currency-som.svg +++ b/icons/outline/currency-som.svg @@ -16,5 +16,5 @@ unicode: "f37c" stroke-linejoin="round" > - + diff --git a/icons/outline/currency-taka.svg b/icons/outline/currency-taka.svg index 9873a042e..8e42e24ed 100644 --- a/icons/outline/currency-taka.svg +++ b/icons/outline/currency-taka.svg @@ -15,7 +15,7 @@ unicode: "ee69" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/currency.svg b/icons/outline/currency.svg index 1bcefa553..5ec62f424 100644 --- a/icons/outline/currency.svg +++ b/icons/outline/currency.svg @@ -15,7 +15,7 @@ unicode: "efa6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/current-location.svg b/icons/outline/current-location.svg index 39924093b..2ff2b56af 100644 --- a/icons/outline/current-location.svg +++ b/icons/outline/current-location.svg @@ -15,8 +15,8 @@ unicode: "ecef" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/cut.svg b/icons/outline/cut.svg index 15bb1b844..a2bfd85e3 100644 --- a/icons/outline/cut.svg +++ b/icons/outline/cut.svg @@ -15,8 +15,8 @@ unicode: "ea86" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/cylinder-plus.svg b/icons/outline/cylinder-plus.svg index 11258ed1e..ac766e65e 100644 --- a/icons/outline/cylinder-plus.svg +++ b/icons/outline/cylinder-plus.svg @@ -15,7 +15,7 @@ unicode: "fa99" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/cylinder.svg b/icons/outline/cylinder.svg index 6a7fe3791..76413a2cd 100644 --- a/icons/outline/cylinder.svg +++ b/icons/outline/cylinder.svg @@ -15,6 +15,6 @@ unicode: "f54c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dashboard.svg b/icons/outline/dashboard.svg index 6f27b9165..a8dd81163 100644 --- a/icons/outline/dashboard.svg +++ b/icons/outline/dashboard.svg @@ -15,7 +15,7 @@ unicode: "ea87" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/database-cog.svg b/icons/outline/database-cog.svg index ed727697a..dadb8f0cb 100644 --- a/icons/outline/database-cog.svg +++ b/icons/outline/database-cog.svg @@ -19,7 +19,7 @@ unicode: "fa10" - + diff --git a/icons/outline/database-edit.svg b/icons/outline/database-edit.svg index 1b4abb404..b84e87726 100644 --- a/icons/outline/database-edit.svg +++ b/icons/outline/database-edit.svg @@ -19,5 +19,5 @@ unicode: "fa12" - + diff --git a/icons/outline/database-heart.svg b/icons/outline/database-heart.svg index 5c4dfaacf..5852627c5 100644 --- a/icons/outline/database-heart.svg +++ b/icons/outline/database-heart.svg @@ -19,5 +19,5 @@ unicode: "fa14" - + diff --git a/icons/outline/database-search.svg b/icons/outline/database-search.svg index 170790213..3baa37267 100644 --- a/icons/outline/database-search.svg +++ b/icons/outline/database-search.svg @@ -18,6 +18,6 @@ unicode: "fa18" - + diff --git a/icons/outline/database-star.svg b/icons/outline/database-star.svg index f478ecb9d..9047ec0e0 100644 --- a/icons/outline/database-star.svg +++ b/icons/outline/database-star.svg @@ -19,5 +19,5 @@ unicode: "fa1a" - + diff --git a/icons/outline/database.svg b/icons/outline/database.svg index 742f839a5..bc8460562 100644 --- a/icons/outline/database.svg +++ b/icons/outline/database.svg @@ -15,7 +15,7 @@ unicode: "ea88" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/decimal.svg b/icons/outline/decimal.svg index 2d48748a6..6b2d3d13f 100644 --- a/icons/outline/decimal.svg +++ b/icons/outline/decimal.svg @@ -15,7 +15,7 @@ unicode: "fa26" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/delta.svg b/icons/outline/delta.svg index b17d40b67..e524c9f9e 100644 --- a/icons/outline/delta.svg +++ b/icons/outline/delta.svg @@ -15,5 +15,5 @@ unicode: "f53c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dental-broken.svg b/icons/outline/dental-broken.svg index 2ca7c97bc..753e9f877 100644 --- a/icons/outline/dental-broken.svg +++ b/icons/outline/dental-broken.svg @@ -15,6 +15,6 @@ unicode: "f286" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dental.svg b/icons/outline/dental.svg index 8a1b9033a..4abb4cf10 100644 --- a/icons/outline/dental.svg +++ b/icons/outline/dental.svg @@ -15,6 +15,6 @@ unicode: "f025" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/details.svg b/icons/outline/details.svg index 08a424c37..0def764da 100644 --- a/icons/outline/details.svg +++ b/icons/outline/details.svg @@ -16,5 +16,5 @@ unicode: "ee71" stroke-linejoin="round" > - + diff --git a/icons/outline/device-airpods-case.svg b/icons/outline/device-airpods-case.svg index 7d89d8822..692c711e8 100644 --- a/icons/outline/device-airpods-case.svg +++ b/icons/outline/device-airpods-case.svg @@ -16,6 +16,6 @@ unicode: "f646" stroke-linejoin="round" > - + diff --git a/icons/outline/device-airpods.svg b/icons/outline/device-airpods.svg index 71be7ac24..2ef7ca06b 100644 --- a/icons/outline/device-airpods.svg +++ b/icons/outline/device-airpods.svg @@ -15,6 +15,6 @@ unicode: "f5a9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/device-analytics.svg b/icons/outline/device-analytics.svg index ef6735f41..5e7e65161 100644 --- a/icons/outline/device-analytics.svg +++ b/icons/outline/device-analytics.svg @@ -15,7 +15,7 @@ unicode: "ee72" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-audio-tape.svg b/icons/outline/device-audio-tape.svg index e066d27f0..62f9da42c 100644 --- a/icons/outline/device-audio-tape.svg +++ b/icons/outline/device-audio-tape.svg @@ -15,8 +15,8 @@ unicode: "ee73" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/device-camera-phone.svg b/icons/outline/device-camera-phone.svg index 9dc9a43b9..ba208d7f7 100644 --- a/icons/outline/device-camera-phone.svg +++ b/icons/outline/device-camera-phone.svg @@ -15,7 +15,7 @@ unicode: "f233" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-cctv.svg b/icons/outline/device-cctv.svg index 41555f0bc..03eb31fc2 100644 --- a/icons/outline/device-cctv.svg +++ b/icons/outline/device-cctv.svg @@ -15,8 +15,8 @@ unicode: "ee74" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/device-computer-camera.svg b/icons/outline/device-computer-camera.svg index d1833df61..082bed7fe 100644 --- a/icons/outline/device-computer-camera.svg +++ b/icons/outline/device-computer-camera.svg @@ -15,7 +15,7 @@ unicode: "ee76" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/device-desktop-analytics.svg b/icons/outline/device-desktop-analytics.svg index 75ed6f5d0..6d5d56759 100644 --- a/icons/outline/device-desktop-analytics.svg +++ b/icons/outline/device-desktop-analytics.svg @@ -15,7 +15,7 @@ unicode: "ee77" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-desktop-cancel.svg b/icons/outline/device-desktop-cancel.svg index a7461900f..f76cb99fc 100644 --- a/icons/outline/device-desktop-cancel.svg +++ b/icons/outline/device-desktop-cancel.svg @@ -18,6 +18,6 @@ unicode: "f85f" - + diff --git a/icons/outline/device-desktop-cog.svg b/icons/outline/device-desktop-cog.svg index 3c6f23bd0..ce8dfd191 100644 --- a/icons/outline/device-desktop-cog.svg +++ b/icons/outline/device-desktop-cog.svg @@ -18,7 +18,7 @@ unicode: "f862" - + diff --git a/icons/outline/device-desktop-heart.svg b/icons/outline/device-desktop-heart.svg index bef6c2810..a09919c65 100644 --- a/icons/outline/device-desktop-heart.svg +++ b/icons/outline/device-desktop-heart.svg @@ -18,5 +18,5 @@ unicode: "f866" - + diff --git a/icons/outline/device-desktop-pin.svg b/icons/outline/device-desktop-pin.svg index 5569c9213..651a984ac 100644 --- a/icons/outline/device-desktop-pin.svg +++ b/icons/outline/device-desktop-pin.svg @@ -16,7 +16,7 @@ unicode: "f869" stroke-linejoin="round" > - + diff --git a/icons/outline/device-desktop-search.svg b/icons/outline/device-desktop-search.svg index d872f4d20..db4f18e5b 100644 --- a/icons/outline/device-desktop-search.svg +++ b/icons/outline/device-desktop-search.svg @@ -18,6 +18,6 @@ unicode: "f86c" - + diff --git a/icons/outline/device-desktop-star.svg b/icons/outline/device-desktop-star.svg index 991854a18..e2a02ad66 100644 --- a/icons/outline/device-desktop-star.svg +++ b/icons/outline/device-desktop-star.svg @@ -18,5 +18,5 @@ unicode: "f86e" - + diff --git a/icons/outline/device-desktop.svg b/icons/outline/device-desktop.svg index 1425e8246..c3c1025e3 100644 --- a/icons/outline/device-desktop.svg +++ b/icons/outline/device-desktop.svg @@ -15,7 +15,7 @@ unicode: "ea89" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-floppy.svg b/icons/outline/device-floppy.svg index 3a456bf3c..3eb31d120 100644 --- a/icons/outline/device-floppy.svg +++ b/icons/outline/device-floppy.svg @@ -16,6 +16,6 @@ unicode: "eb62" stroke-linejoin="round" > - + diff --git a/icons/outline/device-gamepad-2.svg b/icons/outline/device-gamepad-2.svg index 64271de1a..46b3836a6 100644 --- a/icons/outline/device-gamepad-2.svg +++ b/icons/outline/device-gamepad-2.svg @@ -15,7 +15,7 @@ unicode: "f1d2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-gamepad-3.svg b/icons/outline/device-gamepad-3.svg index 90ef6ea4a..0f9c0d494 100644 --- a/icons/outline/device-gamepad-3.svg +++ b/icons/outline/device-gamepad-3.svg @@ -15,8 +15,8 @@ unicode: "fc58" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/device-gamepad.svg b/icons/outline/device-gamepad.svg index be179f489..4bd19a013 100644 --- a/icons/outline/device-gamepad.svg +++ b/icons/outline/device-gamepad.svg @@ -15,7 +15,7 @@ unicode: "eb63" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-heart-monitor.svg b/icons/outline/device-heart-monitor.svg index bdc78beb0..f92cdd146 100644 --- a/icons/outline/device-heart-monitor.svg +++ b/icons/outline/device-heart-monitor.svg @@ -15,7 +15,7 @@ unicode: "f060" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-imac-cancel.svg b/icons/outline/device-imac-cancel.svg index f13086b29..d3eb2bc4e 100644 --- a/icons/outline/device-imac-cancel.svg +++ b/icons/outline/device-imac-cancel.svg @@ -19,6 +19,6 @@ unicode: "f872" - + diff --git a/icons/outline/device-imac-cog.svg b/icons/outline/device-imac-cog.svg index 1d71686ad..02cf02d2c 100644 --- a/icons/outline/device-imac-cog.svg +++ b/icons/outline/device-imac-cog.svg @@ -19,7 +19,7 @@ unicode: "f875" - + diff --git a/icons/outline/device-imac-heart.svg b/icons/outline/device-imac-heart.svg index 5ad111a8b..a178782c6 100644 --- a/icons/outline/device-imac-heart.svg +++ b/icons/outline/device-imac-heart.svg @@ -19,5 +19,5 @@ unicode: "f879" - + diff --git a/icons/outline/device-imac-pin.svg b/icons/outline/device-imac-pin.svg index 6849a3878..8666a2b8f 100644 --- a/icons/outline/device-imac-pin.svg +++ b/icons/outline/device-imac-pin.svg @@ -16,7 +16,7 @@ unicode: "f87d" stroke-linejoin="round" > - + diff --git a/icons/outline/device-imac-search.svg b/icons/outline/device-imac-search.svg index 657ec4b75..e4c2db225 100644 --- a/icons/outline/device-imac-search.svg +++ b/icons/outline/device-imac-search.svg @@ -19,6 +19,6 @@ unicode: "f880" - + diff --git a/icons/outline/device-imac-star.svg b/icons/outline/device-imac-star.svg index 43d354951..865f14ab5 100644 --- a/icons/outline/device-imac-star.svg +++ b/icons/outline/device-imac-star.svg @@ -19,5 +19,5 @@ unicode: "f882" - + diff --git a/icons/outline/device-imac.svg b/icons/outline/device-imac.svg index ca21ed1d9..46ef8a7ac 100644 --- a/icons/outline/device-imac.svg +++ b/icons/outline/device-imac.svg @@ -15,7 +15,7 @@ unicode: "f7a7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-ipad-cancel.svg b/icons/outline/device-ipad-cancel.svg index 9365c8ecc..d28286f37 100644 --- a/icons/outline/device-ipad-cancel.svg +++ b/icons/outline/device-ipad-cancel.svg @@ -17,6 +17,6 @@ unicode: "f886" > - + diff --git a/icons/outline/device-ipad-cog.svg b/icons/outline/device-ipad-cog.svg index 1ed8e8e94..c55bc9e3e 100644 --- a/icons/outline/device-ipad-cog.svg +++ b/icons/outline/device-ipad-cog.svg @@ -17,7 +17,7 @@ unicode: "f889" > - + diff --git a/icons/outline/device-ipad-heart.svg b/icons/outline/device-ipad-heart.svg index e58250673..3a1221de7 100644 --- a/icons/outline/device-ipad-heart.svg +++ b/icons/outline/device-ipad-heart.svg @@ -17,5 +17,5 @@ unicode: "f88d" > - + diff --git a/icons/outline/device-ipad-horizontal-cancel.svg b/icons/outline/device-ipad-horizontal-cancel.svg index 6781a2c14..f47fb5463 100644 --- a/icons/outline/device-ipad-horizontal-cancel.svg +++ b/icons/outline/device-ipad-horizontal-cancel.svg @@ -17,6 +17,6 @@ unicode: "f88f" > - + diff --git a/icons/outline/device-ipad-horizontal-cog.svg b/icons/outline/device-ipad-horizontal-cog.svg index 7ac0b7e6b..a89c86228 100644 --- a/icons/outline/device-ipad-horizontal-cog.svg +++ b/icons/outline/device-ipad-horizontal-cog.svg @@ -17,7 +17,7 @@ unicode: "f892" > - + diff --git a/icons/outline/device-ipad-horizontal-heart.svg b/icons/outline/device-ipad-horizontal-heart.svg index d14f66e6c..330da662e 100644 --- a/icons/outline/device-ipad-horizontal-heart.svg +++ b/icons/outline/device-ipad-horizontal-heart.svg @@ -17,5 +17,5 @@ unicode: "f896" > - + diff --git a/icons/outline/device-ipad-horizontal-pin.svg b/icons/outline/device-ipad-horizontal-pin.svg index 76b78b5a7..a40181f68 100644 --- a/icons/outline/device-ipad-horizontal-pin.svg +++ b/icons/outline/device-ipad-horizontal-pin.svg @@ -17,6 +17,6 @@ unicode: "f89a" > - + diff --git a/icons/outline/device-ipad-horizontal-search.svg b/icons/outline/device-ipad-horizontal-search.svg index ab5fc26f0..c5333d119 100644 --- a/icons/outline/device-ipad-horizontal-search.svg +++ b/icons/outline/device-ipad-horizontal-search.svg @@ -17,6 +17,6 @@ unicode: "f89d" > - + diff --git a/icons/outline/device-ipad-horizontal-star.svg b/icons/outline/device-ipad-horizontal-star.svg index 343e89764..f82105b1f 100644 --- a/icons/outline/device-ipad-horizontal-star.svg +++ b/icons/outline/device-ipad-horizontal-star.svg @@ -17,5 +17,5 @@ unicode: "f89f" > - + diff --git a/icons/outline/device-ipad-horizontal.svg b/icons/outline/device-ipad-horizontal.svg index 094b036c6..82c9d9efd 100644 --- a/icons/outline/device-ipad-horizontal.svg +++ b/icons/outline/device-ipad-horizontal.svg @@ -15,6 +15,6 @@ unicode: "f647" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-ipad-pin.svg b/icons/outline/device-ipad-pin.svg index 18b062123..09830dc0a 100644 --- a/icons/outline/device-ipad-pin.svg +++ b/icons/outline/device-ipad-pin.svg @@ -17,6 +17,6 @@ unicode: "f8a5" > - + diff --git a/icons/outline/device-ipad-search.svg b/icons/outline/device-ipad-search.svg index a6559ac05..ea196d99f 100644 --- a/icons/outline/device-ipad-search.svg +++ b/icons/outline/device-ipad-search.svg @@ -17,6 +17,6 @@ unicode: "f8a8" > - + diff --git a/icons/outline/device-ipad-star.svg b/icons/outline/device-ipad-star.svg index 3e80fa276..3cf38ddd5 100644 --- a/icons/outline/device-ipad-star.svg +++ b/icons/outline/device-ipad-star.svg @@ -17,5 +17,5 @@ unicode: "f8aa" > - + diff --git a/icons/outline/device-ipad.svg b/icons/outline/device-ipad.svg index 75e91bfc2..97b130059 100644 --- a/icons/outline/device-ipad.svg +++ b/icons/outline/device-ipad.svg @@ -15,6 +15,6 @@ unicode: "f648" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-landline-phone.svg b/icons/outline/device-landline-phone.svg index 5a74cff98..4c6fbd851 100644 --- a/icons/outline/device-landline-phone.svg +++ b/icons/outline/device-landline-phone.svg @@ -15,9 +15,9 @@ unicode: "f649" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/device-laptop.svg b/icons/outline/device-laptop.svg index 63f7e7fd3..f2cca0f88 100644 --- a/icons/outline/device-laptop.svg +++ b/icons/outline/device-laptop.svg @@ -16,5 +16,5 @@ unicode: "eb64" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-cancel.svg b/icons/outline/device-mobile-cancel.svg index 00d2f7ce1..e1c0d5c0d 100644 --- a/icons/outline/device-mobile-cancel.svg +++ b/icons/outline/device-mobile-cancel.svg @@ -16,7 +16,7 @@ unicode: "f8ae" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-charging.svg b/icons/outline/device-mobile-charging.svg index 3b60a3062..1bb00e5fd 100644 --- a/icons/outline/device-mobile-charging.svg +++ b/icons/outline/device-mobile-charging.svg @@ -15,7 +15,7 @@ unicode: "f224" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-cog.svg b/icons/outline/device-mobile-cog.svg index 144414c79..428a517a2 100644 --- a/icons/outline/device-mobile-cog.svg +++ b/icons/outline/device-mobile-cog.svg @@ -18,7 +18,7 @@ unicode: "f8b1" - + diff --git a/icons/outline/device-mobile-heart.svg b/icons/outline/device-mobile-heart.svg index e6bb2956a..53b6edbb1 100644 --- a/icons/outline/device-mobile-heart.svg +++ b/icons/outline/device-mobile-heart.svg @@ -17,5 +17,5 @@ unicode: "f8b5" > - + diff --git a/icons/outline/device-mobile-message.svg b/icons/outline/device-mobile-message.svg index 091ce31be..c7e62e327 100644 --- a/icons/outline/device-mobile-message.svg +++ b/icons/outline/device-mobile-message.svg @@ -15,7 +15,7 @@ unicode: "ee79" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-pin.svg b/icons/outline/device-mobile-pin.svg index 85c74cad8..c8c13ada3 100644 --- a/icons/outline/device-mobile-pin.svg +++ b/icons/outline/device-mobile-pin.svg @@ -17,7 +17,7 @@ unicode: "f8b8" > - + diff --git a/icons/outline/device-mobile-rotated.svg b/icons/outline/device-mobile-rotated.svg index 1f3b48e2d..e9c9a8357 100644 --- a/icons/outline/device-mobile-rotated.svg +++ b/icons/outline/device-mobile-rotated.svg @@ -15,7 +15,7 @@ unicode: "ecdb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-search.svg b/icons/outline/device-mobile-search.svg index a21d06d34..96e141716 100644 --- a/icons/outline/device-mobile-search.svg +++ b/icons/outline/device-mobile-search.svg @@ -16,7 +16,7 @@ unicode: "f8bb" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile-star.svg b/icons/outline/device-mobile-star.svg index 458f8047a..336cdb53d 100644 --- a/icons/outline/device-mobile-star.svg +++ b/icons/outline/device-mobile-star.svg @@ -17,5 +17,5 @@ unicode: "f8bd" > - + diff --git a/icons/outline/device-mobile-vibration.svg b/icons/outline/device-mobile-vibration.svg index 2ae47f2c4..234291b4b 100644 --- a/icons/outline/device-mobile-vibration.svg +++ b/icons/outline/device-mobile-vibration.svg @@ -15,7 +15,7 @@ unicode: "eb86" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-mobile.svg b/icons/outline/device-mobile.svg index baeea037a..6ef6deac4 100644 --- a/icons/outline/device-mobile.svg +++ b/icons/outline/device-mobile.svg @@ -15,7 +15,7 @@ unicode: "ea8a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-nintendo-off.svg b/icons/outline/device-nintendo-off.svg index 719d4b4fb..1d2c49db8 100644 --- a/icons/outline/device-nintendo-off.svg +++ b/icons/outline/device-nintendo-off.svg @@ -17,6 +17,6 @@ unicode: "f111" > - + diff --git a/icons/outline/device-nintendo.svg b/icons/outline/device-nintendo.svg index 47b47a7da..4be30cc09 100644 --- a/icons/outline/device-nintendo.svg +++ b/icons/outline/device-nintendo.svg @@ -15,8 +15,8 @@ unicode: "f026" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/device-remote.svg b/icons/outline/device-remote.svg index efb848c4b..f535688f4 100644 --- a/icons/outline/device-remote.svg +++ b/icons/outline/device-remote.svg @@ -15,8 +15,8 @@ unicode: "f792" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/device-sd-card.svg b/icons/outline/device-sd-card.svg index 644b0e9b4..c3ec8945e 100644 --- a/icons/outline/device-sd-card.svg +++ b/icons/outline/device-sd-card.svg @@ -15,7 +15,7 @@ unicode: "f384" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-sim-1.svg b/icons/outline/device-sim-1.svg index fc0f3f9a2..043046a8a 100644 --- a/icons/outline/device-sim-1.svg +++ b/icons/outline/device-sim-1.svg @@ -15,6 +15,6 @@ unicode: "f4af" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-sim-2.svg b/icons/outline/device-sim-2.svg index 647aac8e6..effb1c68b 100644 --- a/icons/outline/device-sim-2.svg +++ b/icons/outline/device-sim-2.svg @@ -15,6 +15,6 @@ unicode: "f4b0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-sim-3.svg b/icons/outline/device-sim-3.svg index f854b48d2..59baabb7e 100644 --- a/icons/outline/device-sim-3.svg +++ b/icons/outline/device-sim-3.svg @@ -15,6 +15,6 @@ unicode: "f4b1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-sim.svg b/icons/outline/device-sim.svg index e218e3b36..cf583bbeb 100644 --- a/icons/outline/device-sim.svg +++ b/icons/outline/device-sim.svg @@ -15,7 +15,7 @@ unicode: "f4b2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-speaker.svg b/icons/outline/device-speaker.svg index e1b6f1d94..238504e4e 100644 --- a/icons/outline/device-speaker.svg +++ b/icons/outline/device-speaker.svg @@ -15,7 +15,7 @@ unicode: "ea8b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/device-tablet-cancel.svg b/icons/outline/device-tablet-cancel.svg index 31a5357a9..5e4a354da 100644 --- a/icons/outline/device-tablet-cancel.svg +++ b/icons/outline/device-tablet-cancel.svg @@ -16,7 +16,7 @@ unicode: "f8c1" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tablet-cog.svg b/icons/outline/device-tablet-cog.svg index 967052bea..11eda8ec0 100644 --- a/icons/outline/device-tablet-cog.svg +++ b/icons/outline/device-tablet-cog.svg @@ -17,7 +17,7 @@ unicode: "f8c4" > - + diff --git a/icons/outline/device-tablet-heart.svg b/icons/outline/device-tablet-heart.svg index bb419c6b5..90d78a4d1 100644 --- a/icons/outline/device-tablet-heart.svg +++ b/icons/outline/device-tablet-heart.svg @@ -16,5 +16,5 @@ unicode: "f8c8" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tablet-pin.svg b/icons/outline/device-tablet-pin.svg index 2fd7fff9a..0e4004479 100644 --- a/icons/outline/device-tablet-pin.svg +++ b/icons/outline/device-tablet-pin.svg @@ -17,6 +17,6 @@ unicode: "f8cb" > - + diff --git a/icons/outline/device-tablet-search.svg b/icons/outline/device-tablet-search.svg index 775b4b744..91bfc7822 100644 --- a/icons/outline/device-tablet-search.svg +++ b/icons/outline/device-tablet-search.svg @@ -16,6 +16,6 @@ unicode: "f8ce" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tablet-star.svg b/icons/outline/device-tablet-star.svg index cd0105197..847bab7a5 100644 --- a/icons/outline/device-tablet-star.svg +++ b/icons/outline/device-tablet-star.svg @@ -16,5 +16,5 @@ unicode: "f8d0" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tablet.svg b/icons/outline/device-tablet.svg index 636f95b63..f76857ab5 100644 --- a/icons/outline/device-tablet.svg +++ b/icons/outline/device-tablet.svg @@ -15,6 +15,6 @@ unicode: "ea8c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tv-old.svg b/icons/outline/device-tv-old.svg index 23f9395ba..e98d706bb 100644 --- a/icons/outline/device-tv-old.svg +++ b/icons/outline/device-tv-old.svg @@ -15,7 +15,7 @@ unicode: "f1d3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-tv.svg b/icons/outline/device-tv.svg index e878e0172..5df530d43 100644 --- a/icons/outline/device-tv.svg +++ b/icons/outline/device-tv.svg @@ -15,6 +15,6 @@ unicode: "ea8d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-unknown.svg b/icons/outline/device-unknown.svg index ecb529046..003930115 100644 --- a/icons/outline/device-unknown.svg +++ b/icons/outline/device-unknown.svg @@ -15,7 +15,7 @@ version: "3.5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-usb.svg b/icons/outline/device-usb.svg index 850503090..4bdd2d7a7 100644 --- a/icons/outline/device-usb.svg +++ b/icons/outline/device-usb.svg @@ -15,6 +15,6 @@ unicode: "fc59" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-vision-pro.svg b/icons/outline/device-vision-pro.svg index dbba856cc..1affc9f90 100644 --- a/icons/outline/device-vision-pro.svg +++ b/icons/outline/device-vision-pro.svg @@ -15,5 +15,5 @@ unicode: "fae7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-watch-cancel.svg b/icons/outline/device-watch-cancel.svg index b7aa6a53e..9612ee994 100644 --- a/icons/outline/device-watch-cancel.svg +++ b/icons/outline/device-watch-cancel.svg @@ -18,6 +18,6 @@ unicode: "f8d4" - + diff --git a/icons/outline/device-watch-cog.svg b/icons/outline/device-watch-cog.svg index 71df6c1ad..8867ec889 100644 --- a/icons/outline/device-watch-cog.svg +++ b/icons/outline/device-watch-cog.svg @@ -18,7 +18,7 @@ unicode: "f8d7" - + diff --git a/icons/outline/device-watch-heart.svg b/icons/outline/device-watch-heart.svg index 12db41c67..bf353630f 100644 --- a/icons/outline/device-watch-heart.svg +++ b/icons/outline/device-watch-heart.svg @@ -18,5 +18,5 @@ unicode: "f8db" - + diff --git a/icons/outline/device-watch-pin.svg b/icons/outline/device-watch-pin.svg index 02e62a74c..f33436388 100644 --- a/icons/outline/device-watch-pin.svg +++ b/icons/outline/device-watch-pin.svg @@ -18,6 +18,6 @@ unicode: "f8de" - + diff --git a/icons/outline/device-watch-search.svg b/icons/outline/device-watch-search.svg index b81f4c455..812831406 100644 --- a/icons/outline/device-watch-search.svg +++ b/icons/outline/device-watch-search.svg @@ -16,7 +16,7 @@ unicode: "f8e1" stroke-linejoin="round" > - + diff --git a/icons/outline/device-watch-star.svg b/icons/outline/device-watch-star.svg index 2a1a3219a..8d1c9084b 100644 --- a/icons/outline/device-watch-star.svg +++ b/icons/outline/device-watch-star.svg @@ -18,5 +18,5 @@ unicode: "f8e3" - + diff --git a/icons/outline/device-watch-stats-2.svg b/icons/outline/device-watch-stats-2.svg index 2d4e5ca7b..386c3674d 100644 --- a/icons/outline/device-watch-stats-2.svg +++ b/icons/outline/device-watch-stats-2.svg @@ -15,7 +15,7 @@ unicode: "ef7c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-watch-stats.svg b/icons/outline/device-watch-stats.svg index be9ec6e75..543741365 100644 --- a/icons/outline/device-watch-stats.svg +++ b/icons/outline/device-watch-stats.svg @@ -15,7 +15,7 @@ unicode: "ef7d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/device-watch.svg b/icons/outline/device-watch.svg index cfe4356c4..aa6b30bea 100644 --- a/icons/outline/device-watch.svg +++ b/icons/outline/device-watch.svg @@ -15,7 +15,7 @@ unicode: "ebf9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/devices-2.svg b/icons/outline/devices-2.svg index 474623af4..0033761b1 100644 --- a/icons/outline/devices-2.svg +++ b/icons/outline/devices-2.svg @@ -16,9 +16,9 @@ unicode: "ed29" stroke-linejoin="round" > - + - + diff --git a/icons/outline/devices-cancel.svg b/icons/outline/devices-cancel.svg index d8ef59429..e5fe66c12 100644 --- a/icons/outline/devices-cancel.svg +++ b/icons/outline/devices-cancel.svg @@ -17,7 +17,7 @@ unicode: "f8e7" > - + diff --git a/icons/outline/devices-cog.svg b/icons/outline/devices-cog.svg index 361eba2d1..895767da2 100644 --- a/icons/outline/devices-cog.svg +++ b/icons/outline/devices-cog.svg @@ -18,7 +18,7 @@ unicode: "f8ea" - + diff --git a/icons/outline/devices-heart.svg b/icons/outline/devices-heart.svg index df9485d39..9a3dac5ec 100644 --- a/icons/outline/devices-heart.svg +++ b/icons/outline/devices-heart.svg @@ -17,6 +17,6 @@ unicode: "f8ee" > - + diff --git a/icons/outline/devices-pc.svg b/icons/outline/devices-pc.svg index 5774a8df2..caf798919 100644 --- a/icons/outline/devices-pc.svg +++ b/icons/outline/devices-pc.svg @@ -15,8 +15,8 @@ unicode: "ee7a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/devices-pin.svg b/icons/outline/devices-pin.svg index 13c5e8e9e..0c61ddbf0 100644 --- a/icons/outline/devices-pin.svg +++ b/icons/outline/devices-pin.svg @@ -17,7 +17,7 @@ unicode: "f8f1" > - + diff --git a/icons/outline/devices-search.svg b/icons/outline/devices-search.svg index ecf4cd020..af2b22480 100644 --- a/icons/outline/devices-search.svg +++ b/icons/outline/devices-search.svg @@ -17,7 +17,7 @@ unicode: "f8f4" > - + diff --git a/icons/outline/devices-star.svg b/icons/outline/devices-star.svg index 708ee4deb..cf44b067e 100644 --- a/icons/outline/devices-star.svg +++ b/icons/outline/devices-star.svg @@ -17,6 +17,6 @@ unicode: "f8f6" > - + diff --git a/icons/outline/devices.svg b/icons/outline/devices.svg index 3d590290b..16d8cb1bd 100644 --- a/icons/outline/devices.svg +++ b/icons/outline/devices.svg @@ -15,7 +15,7 @@ unicode: "eb87" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/diabolo-plus.svg b/icons/outline/diabolo-plus.svg index f4ef1c46c..44e24f9ad 100644 --- a/icons/outline/diabolo-plus.svg +++ b/icons/outline/diabolo-plus.svg @@ -15,7 +15,7 @@ unicode: "fa9b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/diabolo.svg b/icons/outline/diabolo.svg index 468ffa3bf..27ed9de8d 100644 --- a/icons/outline/diabolo.svg +++ b/icons/outline/diabolo.svg @@ -15,7 +15,7 @@ unicode: "fa9c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dialpad-off.svg b/icons/outline/dialpad-off.svg index 825e542c5..eadfc3f73 100644 --- a/icons/outline/dialpad-off.svg +++ b/icons/outline/dialpad-off.svg @@ -16,11 +16,11 @@ unicode: "f114" stroke-linejoin="round" > - + - + - + diff --git a/icons/outline/dialpad.svg b/icons/outline/dialpad.svg index 348e1691e..8d95d4f63 100644 --- a/icons/outline/dialpad.svg +++ b/icons/outline/dialpad.svg @@ -15,11 +15,11 @@ unicode: "f067" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/diamonds.svg b/icons/outline/diamonds.svg index dd34fcf9e..98b3ca2dd 100644 --- a/icons/outline/diamonds.svg +++ b/icons/outline/diamonds.svg @@ -15,5 +15,5 @@ unicode: "eff5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/diaper.svg b/icons/outline/diaper.svg index e4fc8de2e..e6fdd07fd 100644 --- a/icons/outline/diaper.svg +++ b/icons/outline/diaper.svg @@ -15,7 +15,7 @@ version: "3.12" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dice-1.svg b/icons/outline/dice-1.svg index 61959dc29..e4b0141a7 100644 --- a/icons/outline/dice-1.svg +++ b/icons/outline/dice-1.svg @@ -15,6 +15,6 @@ unicode: "f08b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/dice-2.svg b/icons/outline/dice-2.svg index 764d1fd49..d2f7403c8 100644 --- a/icons/outline/dice-2.svg +++ b/icons/outline/dice-2.svg @@ -15,7 +15,7 @@ unicode: "f08c" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/dice-3.svg b/icons/outline/dice-3.svg index e0edc761f..1ce89fe44 100644 --- a/icons/outline/dice-3.svg +++ b/icons/outline/dice-3.svg @@ -15,8 +15,8 @@ unicode: "f08d" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/dice-4.svg b/icons/outline/dice-4.svg index 44fa6be01..d69619c54 100644 --- a/icons/outline/dice-4.svg +++ b/icons/outline/dice-4.svg @@ -15,9 +15,9 @@ unicode: "f08e" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/dice-5.svg b/icons/outline/dice-5.svg index 88ed264a3..bf5643c54 100644 --- a/icons/outline/dice-5.svg +++ b/icons/outline/dice-5.svg @@ -15,10 +15,10 @@ unicode: "f08f" stroke-linecap="round" stroke-linejoin="round" > - - - - - - + + + + + + diff --git a/icons/outline/dice-6.svg b/icons/outline/dice-6.svg index f0028fd2d..53e0f8cb6 100644 --- a/icons/outline/dice-6.svg +++ b/icons/outline/dice-6.svg @@ -15,11 +15,11 @@ unicode: "f090" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/dice.svg b/icons/outline/dice.svg index 9fbb9533f..7548200a2 100644 --- a/icons/outline/dice.svg +++ b/icons/outline/dice.svg @@ -15,9 +15,9 @@ unicode: "eb66" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/dimensions.svg b/icons/outline/dimensions.svg index 6f09e3a7c..63e93c1a9 100644 --- a/icons/outline/dimensions.svg +++ b/icons/outline/dimensions.svg @@ -21,5 +21,5 @@ unicode: "ee7b" - + diff --git a/icons/outline/direction-sign.svg b/icons/outline/direction-sign.svg index 26f647d75..6306c419c 100644 --- a/icons/outline/direction-sign.svg +++ b/icons/outline/direction-sign.svg @@ -15,7 +15,7 @@ unicode: "f1f7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/directions.svg b/icons/outline/directions.svg index 42d62e671..2540b441f 100644 --- a/icons/outline/directions.svg +++ b/icons/outline/directions.svg @@ -19,6 +19,6 @@ unicode: "ea8e" - - + + diff --git a/icons/outline/disabled-2.svg b/icons/outline/disabled-2.svg index 7e34f5e51..d365aca16 100644 --- a/icons/outline/disabled-2.svg +++ b/icons/outline/disabled-2.svg @@ -15,7 +15,7 @@ unicode: "ebaf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/disabled.svg b/icons/outline/disabled.svg index c0d97ec26..decb1b94a 100644 --- a/icons/outline/disabled.svg +++ b/icons/outline/disabled.svg @@ -15,7 +15,7 @@ unicode: "ea8f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/disc.svg b/icons/outline/disc.svg index 073587bc9..2352aea1c 100644 --- a/icons/outline/disc.svg +++ b/icons/outline/disc.svg @@ -15,8 +15,8 @@ unicode: "ea90" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/discount.svg b/icons/outline/discount.svg index ff9cab569..a38d5cad1 100644 --- a/icons/outline/discount.svg +++ b/icons/outline/discount.svg @@ -16,7 +16,7 @@ unicode: "ebbd" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/divide.svg b/icons/outline/divide.svg index f62920fd9..d315ea8eb 100644 --- a/icons/outline/divide.svg +++ b/icons/outline/divide.svg @@ -15,7 +15,7 @@ unicode: "ed5c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/dna.svg b/icons/outline/dna.svg index 9b2434587..e5f941136 100644 --- a/icons/outline/dna.svg +++ b/icons/outline/dna.svg @@ -15,7 +15,7 @@ unicode: "ee7d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dog-bowl.svg b/icons/outline/dog-bowl.svg index a63317c41..364a3b6e4 100644 --- a/icons/outline/dog-bowl.svg +++ b/icons/outline/dog-bowl.svg @@ -17,5 +17,5 @@ unicode: "ef29" > - + diff --git a/icons/outline/dog.svg b/icons/outline/dog.svg index 263ba6ee8..d09137ae4 100644 --- a/icons/outline/dog.svg +++ b/icons/outline/dog.svg @@ -17,10 +17,10 @@ unicode: "f660" > - + - - + + diff --git a/icons/outline/dots-circle-horizontal.svg b/icons/outline/dots-circle-horizontal.svg index 927cfbbe2..64439380e 100644 --- a/icons/outline/dots-circle-horizontal.svg +++ b/icons/outline/dots-circle-horizontal.svg @@ -15,7 +15,7 @@ unicode: "ea91" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/dots-diagonal-2.svg b/icons/outline/dots-diagonal-2.svg index c3d8b5daa..5789c83eb 100644 --- a/icons/outline/dots-diagonal-2.svg +++ b/icons/outline/dots-diagonal-2.svg @@ -15,7 +15,7 @@ unicode: "ea92" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/dots-diagonal.svg b/icons/outline/dots-diagonal.svg index 2a8e1284b..7663a5129 100644 --- a/icons/outline/dots-diagonal.svg +++ b/icons/outline/dots-diagonal.svg @@ -15,7 +15,7 @@ unicode: "ea93" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/dots-vertical.svg b/icons/outline/dots-vertical.svg index 4dde7923d..c131be8b9 100644 --- a/icons/outline/dots-vertical.svg +++ b/icons/outline/dots-vertical.svg @@ -15,7 +15,7 @@ unicode: "ea94" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/dots.svg b/icons/outline/dots.svg index 7ad0f4faa..31b06e341 100644 --- a/icons/outline/dots.svg +++ b/icons/outline/dots.svg @@ -15,7 +15,7 @@ unicode: "ea95" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/drag-drop-2.svg b/icons/outline/drag-drop-2.svg index 19689f5d7..377d3ab4b 100644 --- a/icons/outline/drag-drop-2.svg +++ b/icons/outline/drag-drop-2.svg @@ -15,7 +15,7 @@ unicode: "eb88" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/drone.svg b/icons/outline/drone.svg index d4f386e33..3e3337053 100644 --- a/icons/outline/drone.svg +++ b/icons/outline/drone.svg @@ -15,7 +15,7 @@ unicode: "ed79" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/drop-circle.svg b/icons/outline/drop-circle.svg index da333bf00..639c68910 100644 --- a/icons/outline/drop-circle.svg +++ b/icons/outline/drop-circle.svg @@ -15,6 +15,6 @@ unicode: "efde" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/droplet-cancel.svg b/icons/outline/droplet-cancel.svg index f0cd1df62..6ce6e9912 100644 --- a/icons/outline/droplet-cancel.svg +++ b/icons/outline/droplet-cancel.svg @@ -16,6 +16,6 @@ unicode: "f8fa" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-cog.svg b/icons/outline/droplet-cog.svg index 94a892529..a997487c8 100644 --- a/icons/outline/droplet-cog.svg +++ b/icons/outline/droplet-cog.svg @@ -16,7 +16,7 @@ unicode: "f8fd" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-half-2.svg b/icons/outline/droplet-half-2.svg index 042d4432b..c9292a746 100644 --- a/icons/outline/droplet-half-2.svg +++ b/icons/outline/droplet-half-2.svg @@ -15,6 +15,6 @@ unicode: "ee81" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-half.svg b/icons/outline/droplet-half.svg index 09260f0b9..e7ce68af1 100644 --- a/icons/outline/droplet-half.svg +++ b/icons/outline/droplet-half.svg @@ -15,6 +15,6 @@ unicode: "ee82" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-heart.svg b/icons/outline/droplet-heart.svg index e59c59053..78dfb7f61 100644 --- a/icons/outline/droplet-heart.svg +++ b/icons/outline/droplet-heart.svg @@ -16,5 +16,5 @@ unicode: "f901" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-pin.svg b/icons/outline/droplet-pin.svg index e607388d7..6c5b4a8a2 100644 --- a/icons/outline/droplet-pin.svg +++ b/icons/outline/droplet-pin.svg @@ -16,6 +16,6 @@ unicode: "f904" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-search.svg b/icons/outline/droplet-search.svg index f44e77a17..c1bbfae78 100644 --- a/icons/outline/droplet-search.svg +++ b/icons/outline/droplet-search.svg @@ -16,6 +16,6 @@ unicode: "f907" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet-star.svg b/icons/outline/droplet-star.svg index 489306df3..03993053e 100644 --- a/icons/outline/droplet-star.svg +++ b/icons/outline/droplet-star.svg @@ -16,5 +16,5 @@ unicode: "f909" stroke-linejoin="round" > - + diff --git a/icons/outline/droplet.svg b/icons/outline/droplet.svg index 926cf9ae4..5b66dee3f 100644 --- a/icons/outline/droplet.svg +++ b/icons/outline/droplet.svg @@ -15,5 +15,5 @@ unicode: "ea97" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/droplets.svg b/icons/outline/droplets.svg index c4a0f886e..26c08930c 100644 --- a/icons/outline/droplets.svg +++ b/icons/outline/droplets.svg @@ -15,7 +15,7 @@ unicode: "fc12" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/dual-screen.svg b/icons/outline/dual-screen.svg index 495d8a7e9..862b75f99 100644 --- a/icons/outline/dual-screen.svg +++ b/icons/outline/dual-screen.svg @@ -15,6 +15,6 @@ unicode: "fa59" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/e-passport.svg b/icons/outline/e-passport.svg index 14251107f..6a5fd3a6f 100644 --- a/icons/outline/e-passport.svg +++ b/icons/outline/e-passport.svg @@ -15,8 +15,8 @@ unicode: "f4df" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/ease-in-control-point.svg b/icons/outline/ease-in-control-point.svg index 9f62734cc..388e858f4 100644 --- a/icons/outline/ease-in-control-point.svg +++ b/icons/outline/ease-in-control-point.svg @@ -16,7 +16,7 @@ unicode: "f570" stroke-linejoin="round" > - + diff --git a/icons/outline/ease-in-out-control-points.svg b/icons/outline/ease-in-out-control-points.svg index 413ca32a5..40c5f9f19 100644 --- a/icons/outline/ease-in-out-control-points.svg +++ b/icons/outline/ease-in-out-control-points.svg @@ -15,9 +15,9 @@ unicode: "f571" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/ease-out-control-point.svg b/icons/outline/ease-out-control-point.svg index 4268bf4ec..9764da0cb 100644 --- a/icons/outline/ease-out-control-point.svg +++ b/icons/outline/ease-out-control-point.svg @@ -16,7 +16,7 @@ unicode: "f574" stroke-linejoin="round" > - + diff --git a/icons/outline/edit-circle.svg b/icons/outline/edit-circle.svg index 116bab613..0c822df7f 100644 --- a/icons/outline/edit-circle.svg +++ b/icons/outline/edit-circle.svg @@ -15,7 +15,7 @@ unicode: "ee85" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/edit.svg b/icons/outline/edit.svg index 0dd92381d..f56672ae5 100644 --- a/icons/outline/edit.svg +++ b/icons/outline/edit.svg @@ -16,6 +16,6 @@ unicode: "ea98" stroke-linejoin="round" > - + diff --git a/icons/outline/egg-cracked.svg b/icons/outline/egg-cracked.svg index 3173ce1a7..2342610c8 100644 --- a/icons/outline/egg-cracked.svg +++ b/icons/outline/egg-cracked.svg @@ -15,6 +15,6 @@ unicode: "f2d6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/egg-fried.svg b/icons/outline/egg-fried.svg index c16c6644d..2d7d9f96c 100644 --- a/icons/outline/egg-fried.svg +++ b/icons/outline/egg-fried.svg @@ -15,6 +15,6 @@ unicode: "f386" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/egg.svg b/icons/outline/egg.svg index 7d03fa38c..b96ba40d7 100644 --- a/icons/outline/egg.svg +++ b/icons/outline/egg.svg @@ -15,5 +15,5 @@ unicode: "eb8a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/eggs.svg b/icons/outline/eggs.svg index 3894c8a13..72618f627 100644 --- a/icons/outline/eggs.svg +++ b/icons/outline/eggs.svg @@ -15,6 +15,6 @@ unicode: "f500" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/elevator.svg b/icons/outline/elevator.svg index a61800113..df9ca16e8 100644 --- a/icons/outline/elevator.svg +++ b/icons/outline/elevator.svg @@ -15,7 +15,7 @@ unicode: "efdf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/emergency-bed.svg b/icons/outline/emergency-bed.svg index ba32d8e41..8a63cc8ad 100644 --- a/icons/outline/emergency-bed.svg +++ b/icons/outline/emergency-bed.svg @@ -15,8 +15,8 @@ unicode: "ef5d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/empathize.svg b/icons/outline/empathize.svg index a181c0070..c6255a082 100644 --- a/icons/outline/empathize.svg +++ b/icons/outline/empathize.svg @@ -15,6 +15,6 @@ unicode: "f29b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/engine.svg b/icons/outline/engine.svg index 5355e4dfd..0c6a9e6a5 100644 --- a/icons/outline/engine.svg +++ b/icons/outline/engine.svg @@ -19,5 +19,5 @@ unicode: "ef7e" - + diff --git a/icons/outline/escalator-down.svg b/icons/outline/escalator-down.svg index dbd21fc95..e0af42276 100644 --- a/icons/outline/escalator-down.svg +++ b/icons/outline/escalator-down.svg @@ -15,7 +15,7 @@ unicode: "fb04" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/escalator-up.svg b/icons/outline/escalator-up.svg index 8a339e4c9..55849fb3c 100644 --- a/icons/outline/escalator-up.svg +++ b/icons/outline/escalator-up.svg @@ -15,7 +15,7 @@ unicode: "fb05" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/escalator.svg b/icons/outline/escalator.svg index 6b20ffea8..c3619e941 100644 --- a/icons/outline/escalator.svg +++ b/icons/outline/escalator.svg @@ -15,5 +15,5 @@ unicode: "fb06" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/exchange-off.svg b/icons/outline/exchange-off.svg index 9309d1de0..04101ee2b 100644 --- a/icons/outline/exchange-off.svg +++ b/icons/outline/exchange-off.svg @@ -15,8 +15,8 @@ unicode: "f123" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/exchange.svg b/icons/outline/exchange.svg index e771f2d64..3083dd1a8 100644 --- a/icons/outline/exchange.svg +++ b/icons/outline/exchange.svg @@ -15,8 +15,8 @@ unicode: "ebe7" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/exclamation-circle.svg b/icons/outline/exclamation-circle.svg index fdf3c6427..34ef996e7 100644 --- a/icons/outline/exclamation-circle.svg +++ b/icons/outline/exclamation-circle.svg @@ -15,7 +15,7 @@ unicode: "f634" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/explicit.svg b/icons/outline/explicit.svg index 5905855d2..0efcc9dc4 100644 --- a/icons/outline/explicit.svg +++ b/icons/outline/explicit.svg @@ -15,7 +15,7 @@ unicode: "f256" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/exposure-0.svg b/icons/outline/exposure-0.svg index cdc69da84..26eff5d5d 100644 --- a/icons/outline/exposure-0.svg +++ b/icons/outline/exposure-0.svg @@ -15,5 +15,5 @@ unicode: "f29c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/exposure.svg b/icons/outline/exposure.svg index 49402f7fa..be86ba1f4 100644 --- a/icons/outline/exposure.svg +++ b/icons/outline/exposure.svg @@ -18,5 +18,5 @@ unicode: "eb8c" - + diff --git a/icons/outline/eye-cancel.svg b/icons/outline/eye-cancel.svg index 24d5e52f5..ef66b9755 100644 --- a/icons/outline/eye-cancel.svg +++ b/icons/outline/eye-cancel.svg @@ -17,6 +17,6 @@ unicode: "fb6e" > - + diff --git a/icons/outline/eye-cog.svg b/icons/outline/eye-cog.svg index 5ebd081d9..34a6db744 100644 --- a/icons/outline/eye-cog.svg +++ b/icons/outline/eye-cog.svg @@ -17,7 +17,7 @@ unicode: "f7ed" > - + diff --git a/icons/outline/eye-edit.svg b/icons/outline/eye-edit.svg index cc51fd2cc..85855a0dc 100644 --- a/icons/outline/eye-edit.svg +++ b/icons/outline/eye-edit.svg @@ -17,5 +17,5 @@ unicode: "f7ee" > - + diff --git a/icons/outline/eye-heart.svg b/icons/outline/eye-heart.svg index 04bff67fc..0fe3bdacd 100644 --- a/icons/outline/eye-heart.svg +++ b/icons/outline/eye-heart.svg @@ -17,5 +17,5 @@ unicode: "f7f0" > - + diff --git a/icons/outline/eye-pin.svg b/icons/outline/eye-pin.svg index e44f48041..e08fd4619 100644 --- a/icons/outline/eye-pin.svg +++ b/icons/outline/eye-pin.svg @@ -17,6 +17,6 @@ unicode: "fb75" > - + diff --git a/icons/outline/eye-search.svg b/icons/outline/eye-search.svg index bd8ce642d..9b8b74472 100644 --- a/icons/outline/eye-search.svg +++ b/icons/outline/eye-search.svg @@ -17,6 +17,6 @@ unicode: "fb78" > - + diff --git a/icons/outline/eye-star.svg b/icons/outline/eye-star.svg index 2de9f408c..bd37223bb 100644 --- a/icons/outline/eye-star.svg +++ b/icons/outline/eye-star.svg @@ -17,5 +17,5 @@ unicode: "fb7a" > - + diff --git a/icons/outline/eyeglass-2.svg b/icons/outline/eyeglass-2.svg index 0f290a235..0b2ed6652 100644 --- a/icons/outline/eyeglass-2.svg +++ b/icons/outline/eyeglass-2.svg @@ -18,6 +18,6 @@ unicode: "ee89" - - + + diff --git a/icons/outline/face-mask.svg b/icons/outline/face-mask.svg index caa20e62b..65c7ea6eb 100644 --- a/icons/outline/face-mask.svg +++ b/icons/outline/face-mask.svg @@ -19,5 +19,5 @@ unicode: "efb5" - + diff --git a/icons/outline/fall.svg b/icons/outline/fall.svg index 415e93d1f..034b3af37 100644 --- a/icons/outline/fall.svg +++ b/icons/outline/fall.svg @@ -17,6 +17,6 @@ unicode: "ecb9" > - + diff --git a/icons/outline/favicon.svg b/icons/outline/favicon.svg index c6675b8fd..3a6fd6492 100644 --- a/icons/outline/favicon.svg +++ b/icons/outline/favicon.svg @@ -15,8 +15,8 @@ unicode: "fd65" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/fence.svg b/icons/outline/fence.svg index 6ec3fed1a..20e747ac6 100644 --- a/icons/outline/fence.svg +++ b/icons/outline/fence.svg @@ -15,7 +15,7 @@ unicode: "ef2a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ferry.svg b/icons/outline/ferry.svg index e1bf2f0cf..f5274a494 100644 --- a/icons/outline/ferry.svg +++ b/icons/outline/ferry.svg @@ -15,7 +15,7 @@ version: "3.20" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/fidget-spinner.svg b/icons/outline/fidget-spinner.svg index df6f5c567..1f393b4e8 100644 --- a/icons/outline/fidget-spinner.svg +++ b/icons/outline/fidget-spinner.svg @@ -19,5 +19,5 @@ unicode: "f068" - + diff --git a/icons/outline/file-3d.svg b/icons/outline/file-3d.svg index 0735b1f64..d79d06f98 100644 --- a/icons/outline/file-3d.svg +++ b/icons/outline/file-3d.svg @@ -16,8 +16,8 @@ unicode: "f032" stroke-linejoin="round" > - + - + diff --git a/icons/outline/file-alert.svg b/icons/outline/file-alert.svg index 10505da29..1bc10edd6 100644 --- a/icons/outline/file-alert.svg +++ b/icons/outline/file-alert.svg @@ -16,7 +16,7 @@ unicode: "ede6" stroke-linejoin="round" > - + diff --git a/icons/outline/file-analytics.svg b/icons/outline/file-analytics.svg index ed159a1f0..47b0bc8f4 100644 --- a/icons/outline/file-analytics.svg +++ b/icons/outline/file-analytics.svg @@ -16,7 +16,7 @@ unicode: "ede7" stroke-linejoin="round" > - + diff --git a/icons/outline/file-arrow-left.svg b/icons/outline/file-arrow-left.svg index a0a1b00b4..5877b701d 100644 --- a/icons/outline/file-arrow-left.svg +++ b/icons/outline/file-arrow-left.svg @@ -16,7 +16,7 @@ unicode: "f033" stroke-linejoin="round" > - + diff --git a/icons/outline/file-arrow-right.svg b/icons/outline/file-arrow-right.svg index 42b9f0295..41cc33480 100644 --- a/icons/outline/file-arrow-right.svg +++ b/icons/outline/file-arrow-right.svg @@ -16,7 +16,7 @@ unicode: "f034" stroke-linejoin="round" > - + diff --git a/icons/outline/file-barcode.svg b/icons/outline/file-barcode.svg index 1b584b076..6cc1a513b 100644 --- a/icons/outline/file-barcode.svg +++ b/icons/outline/file-barcode.svg @@ -16,8 +16,8 @@ unicode: "f035" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/file-certificate.svg b/icons/outline/file-certificate.svg index b73d6a3e3..eeadc485b 100644 --- a/icons/outline/file-certificate.svg +++ b/icons/outline/file-certificate.svg @@ -17,6 +17,6 @@ unicode: "ed4d" > - + diff --git a/icons/outline/file-chart.svg b/icons/outline/file-chart.svg index 8eca57810..ce3020574 100644 --- a/icons/outline/file-chart.svg +++ b/icons/outline/file-chart.svg @@ -16,7 +16,7 @@ unicode: "f036" stroke-linejoin="round" > - + - + diff --git a/icons/outline/file-check.svg b/icons/outline/file-check.svg index 49be3fd92..2a1b02353 100644 --- a/icons/outline/file-check.svg +++ b/icons/outline/file-check.svg @@ -16,6 +16,6 @@ unicode: "ea9c" stroke-linejoin="round" > - + diff --git a/icons/outline/file-code-2.svg b/icons/outline/file-code-2.svg index 4800affa1..c1aad38e6 100644 --- a/icons/outline/file-code-2.svg +++ b/icons/outline/file-code-2.svg @@ -18,5 +18,5 @@ unicode: "ede8" - + diff --git a/icons/outline/file-code.svg b/icons/outline/file-code.svg index a64ea265a..8657d3f85 100644 --- a/icons/outline/file-code.svg +++ b/icons/outline/file-code.svg @@ -16,7 +16,7 @@ unicode: "ebd0" stroke-linejoin="round" > - + diff --git a/icons/outline/file-cv.svg b/icons/outline/file-cv.svg index e61477fb2..4a53900f0 100644 --- a/icons/outline/file-cv.svg +++ b/icons/outline/file-cv.svg @@ -16,7 +16,7 @@ unicode: "fa5a" stroke-linejoin="round" > - + diff --git a/icons/outline/file-database.svg b/icons/outline/file-database.svg index 970fde8ea..068c91f58 100644 --- a/icons/outline/file-database.svg +++ b/icons/outline/file-database.svg @@ -15,8 +15,8 @@ unicode: "f037" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/file-delta.svg b/icons/outline/file-delta.svg index 1f6dd7324..cf82f6e2b 100644 --- a/icons/outline/file-delta.svg +++ b/icons/outline/file-delta.svg @@ -16,6 +16,6 @@ unicode: "f53d" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-description.svg b/icons/outline/file-description.svg index ab7b42d79..809272a7f 100644 --- a/icons/outline/file-description.svg +++ b/icons/outline/file-description.svg @@ -16,7 +16,7 @@ unicode: "f028" stroke-linejoin="round" > - + diff --git a/icons/outline/file-diff.svg b/icons/outline/file-diff.svg index b3dd81de0..985a81ab0 100644 --- a/icons/outline/file-diff.svg +++ b/icons/outline/file-diff.svg @@ -16,7 +16,7 @@ unicode: "ecf1" stroke-linejoin="round" > - + diff --git a/icons/outline/file-digit.svg b/icons/outline/file-digit.svg index 9481028d0..404ca98de 100644 --- a/icons/outline/file-digit.svg +++ b/icons/outline/file-digit.svg @@ -16,7 +16,7 @@ unicode: "efa8" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-dislike.svg b/icons/outline/file-dislike.svg index b8cb200f5..594aef1c6 100644 --- a/icons/outline/file-dislike.svg +++ b/icons/outline/file-dislike.svg @@ -15,8 +15,8 @@ unicode: "ed2a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-dollar.svg b/icons/outline/file-dollar.svg index 881fa6d8d..4fe56ef63 100644 --- a/icons/outline/file-dollar.svg +++ b/icons/outline/file-dollar.svg @@ -16,7 +16,7 @@ unicode: "efe0" stroke-linejoin="round" > - + diff --git a/icons/outline/file-dots.svg b/icons/outline/file-dots.svg index b3a0fa4d1..e973e88f9 100644 --- a/icons/outline/file-dots.svg +++ b/icons/outline/file-dots.svg @@ -16,7 +16,7 @@ unicode: "f038" stroke-linejoin="round" > - + diff --git a/icons/outline/file-download.svg b/icons/outline/file-download.svg index 5110bfaae..4c45267c5 100644 --- a/icons/outline/file-download.svg +++ b/icons/outline/file-download.svg @@ -16,7 +16,7 @@ unicode: "ea9d" stroke-linejoin="round" > - + diff --git a/icons/outline/file-euro.svg b/icons/outline/file-euro.svg index a6a845589..3833f3ee6 100644 --- a/icons/outline/file-euro.svg +++ b/icons/outline/file-euro.svg @@ -16,7 +16,7 @@ unicode: "efe1" stroke-linejoin="round" > - + diff --git a/icons/outline/file-function.svg b/icons/outline/file-function.svg index 32d33c755..472862d35 100644 --- a/icons/outline/file-function.svg +++ b/icons/outline/file-function.svg @@ -16,7 +16,7 @@ unicode: "f53e" stroke-linejoin="round" > - + diff --git a/icons/outline/file-horizontal.svg b/icons/outline/file-horizontal.svg index 4462c4b42..589676ecf 100644 --- a/icons/outline/file-horizontal.svg +++ b/icons/outline/file-horizontal.svg @@ -16,5 +16,5 @@ unicode: "ebb0" stroke-linejoin="round" > - + diff --git a/icons/outline/file-info.svg b/icons/outline/file-info.svg index 5ad30a571..fe01422f3 100644 --- a/icons/outline/file-info.svg +++ b/icons/outline/file-info.svg @@ -16,7 +16,7 @@ unicode: "edec" stroke-linejoin="round" > - + diff --git a/icons/outline/file-invoice.svg b/icons/outline/file-invoice.svg index eabbe5181..25a890a32 100644 --- a/icons/outline/file-invoice.svg +++ b/icons/outline/file-invoice.svg @@ -16,7 +16,7 @@ unicode: "eb67" stroke-linejoin="round" > - + diff --git a/icons/outline/file-lambda.svg b/icons/outline/file-lambda.svg index 8a0b2b9d1..af7954972 100644 --- a/icons/outline/file-lambda.svg +++ b/icons/outline/file-lambda.svg @@ -16,7 +16,7 @@ unicode: "f53f" stroke-linejoin="round" > - + diff --git a/icons/outline/file-like.svg b/icons/outline/file-like.svg index c820b81e1..428376712 100644 --- a/icons/outline/file-like.svg +++ b/icons/outline/file-like.svg @@ -15,8 +15,8 @@ unicode: "ed2b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-minus.svg b/icons/outline/file-minus.svg index 7c8b3efbf..abbcdd5f1 100644 --- a/icons/outline/file-minus.svg +++ b/icons/outline/file-minus.svg @@ -16,6 +16,6 @@ unicode: "ea9e" stroke-linejoin="round" > - + diff --git a/icons/outline/file-music.svg b/icons/outline/file-music.svg index df335650d..040853cd6 100644 --- a/icons/outline/file-music.svg +++ b/icons/outline/file-music.svg @@ -16,7 +16,7 @@ unicode: "ea9f" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-neutral.svg b/icons/outline/file-neutral.svg index f9d47378d..14a6e1394 100644 --- a/icons/outline/file-neutral.svg +++ b/icons/outline/file-neutral.svg @@ -16,5 +16,5 @@ unicode: "fd22" stroke-linejoin="round" > - + diff --git a/icons/outline/file-pencil.svg b/icons/outline/file-pencil.svg index 8754a6ef1..ac16b42ef 100644 --- a/icons/outline/file-pencil.svg +++ b/icons/outline/file-pencil.svg @@ -16,6 +16,6 @@ unicode: "f039" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-percent.svg b/icons/outline/file-percent.svg index 567bd934d..e1625fdfc 100644 --- a/icons/outline/file-percent.svg +++ b/icons/outline/file-percent.svg @@ -17,7 +17,7 @@ unicode: "f540" > - + diff --git a/icons/outline/file-phone.svg b/icons/outline/file-phone.svg index 6c9cf9c4e..fde0039f0 100644 --- a/icons/outline/file-phone.svg +++ b/icons/outline/file-phone.svg @@ -16,6 +16,6 @@ unicode: "ecdc" stroke-linejoin="round" > - + diff --git a/icons/outline/file-plus.svg b/icons/outline/file-plus.svg index 05daf8c6c..a7b7ea4a6 100644 --- a/icons/outline/file-plus.svg +++ b/icons/outline/file-plus.svg @@ -16,7 +16,7 @@ unicode: "eaa0" stroke-linejoin="round" > - + diff --git a/icons/outline/file-power.svg b/icons/outline/file-power.svg index 3f04108df..b632a71a8 100644 --- a/icons/outline/file-power.svg +++ b/icons/outline/file-power.svg @@ -16,6 +16,6 @@ unicode: "f03a" stroke-linejoin="round" > - + diff --git a/icons/outline/file-report.svg b/icons/outline/file-report.svg index 79681f7f8..c84df941b 100644 --- a/icons/outline/file-report.svg +++ b/icons/outline/file-report.svg @@ -15,7 +15,7 @@ unicode: "eded" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/file-rss.svg b/icons/outline/file-rss.svg index 054df46b4..54ca5ac1e 100644 --- a/icons/outline/file-rss.svg +++ b/icons/outline/file-rss.svg @@ -16,7 +16,7 @@ unicode: "f03b" stroke-linejoin="round" > - + diff --git a/icons/outline/file-sad.svg b/icons/outline/file-sad.svg index c63989e37..5fd869fa8 100644 --- a/icons/outline/file-sad.svg +++ b/icons/outline/file-sad.svg @@ -16,6 +16,6 @@ unicode: "fd23" stroke-linejoin="round" > - + diff --git a/icons/outline/file-scissors.svg b/icons/outline/file-scissors.svg index 699dde579..7640cc83b 100644 --- a/icons/outline/file-scissors.svg +++ b/icons/outline/file-scissors.svg @@ -16,9 +16,9 @@ unicode: "f03c" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/file-search.svg b/icons/outline/file-search.svg index ecbe5198e..96e6a2c03 100644 --- a/icons/outline/file-search.svg +++ b/icons/outline/file-search.svg @@ -17,6 +17,6 @@ unicode: "ed5d" > - + diff --git a/icons/outline/file-settings.svg b/icons/outline/file-settings.svg index 2f4c45369..ff1e076a0 100644 --- a/icons/outline/file-settings.svg +++ b/icons/outline/file-settings.svg @@ -15,7 +15,7 @@ unicode: "f029" stroke-linecap="round" stroke-linejoin="round" > - + @@ -23,5 +23,5 @@ unicode: "f029" - + diff --git a/icons/outline/file-signal.svg b/icons/outline/file-signal.svg index 61cb13364..d081c741a 100644 --- a/icons/outline/file-signal.svg +++ b/icons/outline/file-signal.svg @@ -16,7 +16,7 @@ unicode: "f03d" stroke-linejoin="round" > - + diff --git a/icons/outline/file-smile.svg b/icons/outline/file-smile.svg index 4de2747fa..cbc0312a3 100644 --- a/icons/outline/file-smile.svg +++ b/icons/outline/file-smile.svg @@ -16,6 +16,6 @@ unicode: "fd24" stroke-linejoin="round" > - + diff --git a/icons/outline/file-spreadsheet.svg b/icons/outline/file-spreadsheet.svg index c2f17fd62..a6da63cee 100644 --- a/icons/outline/file-spreadsheet.svg +++ b/icons/outline/file-spreadsheet.svg @@ -16,8 +16,8 @@ unicode: "f03e" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-star.svg b/icons/outline/file-star.svg index a699555d3..3f300fc85 100644 --- a/icons/outline/file-star.svg +++ b/icons/outline/file-star.svg @@ -16,6 +16,6 @@ unicode: "f03f" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-text.svg b/icons/outline/file-text.svg index b2707ea0a..954fa2ab7 100644 --- a/icons/outline/file-text.svg +++ b/icons/outline/file-text.svg @@ -16,7 +16,7 @@ unicode: "eaa2" stroke-linejoin="round" > - + diff --git a/icons/outline/file-time.svg b/icons/outline/file-time.svg index 75da3ae2b..1e3545aa8 100644 --- a/icons/outline/file-time.svg +++ b/icons/outline/file-time.svg @@ -16,7 +16,7 @@ unicode: "f040" stroke-linejoin="round" > - - + + diff --git a/icons/outline/file-type-bmp.svg b/icons/outline/file-type-bmp.svg index 166e9d0d5..40dc16e77 100644 --- a/icons/outline/file-type-bmp.svg +++ b/icons/outline/file-type-bmp.svg @@ -18,6 +18,6 @@ unicode: "fb07" - + diff --git a/icons/outline/file-type-doc.svg b/icons/outline/file-type-doc.svg index be056aa3b..9f1e7994e 100644 --- a/icons/outline/file-type-doc.svg +++ b/icons/outline/file-type-doc.svg @@ -17,7 +17,7 @@ unicode: "fb0a" > - + - + diff --git a/icons/outline/file-type-docx.svg b/icons/outline/file-type-docx.svg index 724f30524..70779f2b1 100644 --- a/icons/outline/file-type-docx.svg +++ b/icons/outline/file-type-docx.svg @@ -17,9 +17,9 @@ unicode: "fb0b" > - + - + diff --git a/icons/outline/file-type-pdf.svg b/icons/outline/file-type-pdf.svg index 2b624fb4d..6ed399835 100644 --- a/icons/outline/file-type-pdf.svg +++ b/icons/outline/file-type-pdf.svg @@ -20,5 +20,5 @@ unicode: "fb10" - + diff --git a/icons/outline/file-type-sql.svg b/icons/outline/file-type-sql.svg index 7985ae6ef..ff58c0ddc 100644 --- a/icons/outline/file-type-sql.svg +++ b/icons/outline/file-type-sql.svg @@ -20,6 +20,6 @@ unicode: "fb15" - + diff --git a/icons/outline/file-typography.svg b/icons/outline/file-typography.svg index c2f11f222..f5f79677c 100644 --- a/icons/outline/file-typography.svg +++ b/icons/outline/file-typography.svg @@ -16,7 +16,7 @@ unicode: "f041" stroke-linejoin="round" > - + diff --git a/icons/outline/file-unknown.svg b/icons/outline/file-unknown.svg index 561a3ee3d..d5db26774 100644 --- a/icons/outline/file-unknown.svg +++ b/icons/outline/file-unknown.svg @@ -16,7 +16,7 @@ unicode: "f042" stroke-linejoin="round" > - + diff --git a/icons/outline/file-upload.svg b/icons/outline/file-upload.svg index 93a73f123..1ea2ef0ba 100644 --- a/icons/outline/file-upload.svg +++ b/icons/outline/file-upload.svg @@ -16,7 +16,7 @@ unicode: "ec91" stroke-linejoin="round" > - + diff --git a/icons/outline/file-vector.svg b/icons/outline/file-vector.svg index f67356ecb..f4706f87e 100644 --- a/icons/outline/file-vector.svg +++ b/icons/outline/file-vector.svg @@ -16,8 +16,8 @@ unicode: "f043" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/file-x.svg b/icons/outline/file-x.svg index fa862669d..020c9b502 100644 --- a/icons/outline/file-x.svg +++ b/icons/outline/file-x.svg @@ -16,6 +16,6 @@ unicode: "eaa3" stroke-linejoin="round" > - + diff --git a/icons/outline/file-zip.svg b/icons/outline/file-zip.svg index 68b905dee..7903a8b30 100644 --- a/icons/outline/file-zip.svg +++ b/icons/outline/file-zip.svg @@ -16,7 +16,7 @@ unicode: "ed4e" stroke-linejoin="round" > - + diff --git a/icons/outline/file.svg b/icons/outline/file.svg index e5abc2bbf..e82d5bb7a 100644 --- a/icons/outline/file.svg +++ b/icons/outline/file.svg @@ -16,5 +16,5 @@ unicode: "eaa4" stroke-linejoin="round" > - + diff --git a/icons/outline/files.svg b/icons/outline/files.svg index c53c8e9aa..c824bc5d1 100644 --- a/icons/outline/files.svg +++ b/icons/outline/files.svg @@ -16,6 +16,6 @@ unicode: "edef" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-2-cancel.svg b/icons/outline/filter-2-cancel.svg index a1e1d7e49..cd25f7b91 100644 --- a/icons/outline/filter-2-cancel.svg +++ b/icons/outline/filter-2-cancel.svg @@ -18,5 +18,5 @@ unicode: "1015e" - + diff --git a/icons/outline/filter-2-edit.svg b/icons/outline/filter-2-edit.svg index 6b8ef1cb2..723fb7f6c 100644 --- a/icons/outline/filter-2-edit.svg +++ b/icons/outline/filter-2-edit.svg @@ -18,5 +18,5 @@ unicode: "10157" - + diff --git a/icons/outline/filter-2-pin.svg b/icons/outline/filter-2-pin.svg index 1fee2e313..dde0615bd 100644 --- a/icons/outline/filter-2-pin.svg +++ b/icons/outline/filter-2-pin.svg @@ -18,5 +18,5 @@ unicode: "10153" - + diff --git a/icons/outline/filter-2-search.svg b/icons/outline/filter-2-search.svg index 48099f166..e38353319 100644 --- a/icons/outline/filter-2-search.svg +++ b/icons/outline/filter-2-search.svg @@ -18,6 +18,6 @@ unicode: "10150" - + diff --git a/icons/outline/filter-2-spark.svg b/icons/outline/filter-2-spark.svg index 133262321..9bd49e7b5 100644 --- a/icons/outline/filter-2-spark.svg +++ b/icons/outline/filter-2-spark.svg @@ -18,5 +18,5 @@ unicode: "1014e" - + diff --git a/icons/outline/filter-cancel.svg b/icons/outline/filter-cancel.svg index 375863174..db98c9d7f 100644 --- a/icons/outline/filter-cancel.svg +++ b/icons/outline/filter-cancel.svg @@ -16,6 +16,6 @@ unicode: "fb7d" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-cog.svg b/icons/outline/filter-cog.svg index 721a89d82..b8a71f20b 100644 --- a/icons/outline/filter-cog.svg +++ b/icons/outline/filter-cog.svg @@ -16,7 +16,7 @@ unicode: "f9fe" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-edit.svg b/icons/outline/filter-edit.svg index 116c119d7..3b4c106b8 100644 --- a/icons/outline/filter-edit.svg +++ b/icons/outline/filter-edit.svg @@ -16,5 +16,5 @@ unicode: "fa00" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-exclamation.svg b/icons/outline/filter-exclamation.svg index 190cb0bcc..423441570 100644 --- a/icons/outline/filter-exclamation.svg +++ b/icons/outline/filter-exclamation.svg @@ -15,7 +15,7 @@ unicode: "fb82" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-heart.svg b/icons/outline/filter-heart.svg index 44b973af6..d861125f8 100644 --- a/icons/outline/filter-heart.svg +++ b/icons/outline/filter-heart.svg @@ -16,5 +16,5 @@ unicode: "fb83" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-pin.svg b/icons/outline/filter-pin.svg index b2193d189..1acebaae7 100644 --- a/icons/outline/filter-pin.svg +++ b/icons/outline/filter-pin.svg @@ -16,6 +16,6 @@ unicode: "fb85" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-search.svg b/icons/outline/filter-search.svg index 78920c6e2..958c6b00f 100644 --- a/icons/outline/filter-search.svg +++ b/icons/outline/filter-search.svg @@ -16,6 +16,6 @@ unicode: "fb87" stroke-linejoin="round" > - + diff --git a/icons/outline/filter-star.svg b/icons/outline/filter-star.svg index f3913423f..c4472108d 100644 --- a/icons/outline/filter-star.svg +++ b/icons/outline/filter-star.svg @@ -16,5 +16,5 @@ unicode: "fa03" stroke-linejoin="round" > - + diff --git a/icons/outline/filter.svg b/icons/outline/filter.svg index 8fd5d037c..09bd52661 100644 --- a/icons/outline/filter.svg +++ b/icons/outline/filter.svg @@ -15,5 +15,5 @@ unicode: "eaa5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/filters.svg b/icons/outline/filters.svg index 3687a6b83..b93919a0d 100644 --- a/icons/outline/filters.svg +++ b/icons/outline/filters.svg @@ -15,7 +15,7 @@ unicode: "f793" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/fire-extinguisher.svg b/icons/outline/fire-extinguisher.svg index 96b16cf35..1adb27094 100644 --- a/icons/outline/fire-extinguisher.svg +++ b/icons/outline/fire-extinguisher.svg @@ -15,7 +15,7 @@ unicode: "faf6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/fire-hydrant.svg b/icons/outline/fire-hydrant.svg index cd5411ff3..d20101329 100644 --- a/icons/outline/fire-hydrant.svg +++ b/icons/outline/fire-hydrant.svg @@ -17,6 +17,6 @@ unicode: "f3a9" > - + diff --git a/icons/outline/firetruck.svg b/icons/outline/firetruck.svg index 2339e24e4..81ef1958d 100644 --- a/icons/outline/firetruck.svg +++ b/icons/outline/firetruck.svg @@ -15,8 +15,8 @@ unicode: "ebe8" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/first-aid-kit.svg b/icons/outline/first-aid-kit.svg index 4e4621391..a9ad6f750 100644 --- a/icons/outline/first-aid-kit.svg +++ b/icons/outline/first-aid-kit.svg @@ -16,7 +16,7 @@ unicode: "ef5f" stroke-linejoin="round" > - + diff --git a/icons/outline/fish-hook-off.svg b/icons/outline/fish-hook-off.svg index 14ab2e72a..2e46e5618 100644 --- a/icons/outline/fish-hook-off.svg +++ b/icons/outline/fish-hook-off.svg @@ -16,7 +16,7 @@ unicode: "f3ee" stroke-linejoin="round" > - + diff --git a/icons/outline/fish-hook.svg b/icons/outline/fish-hook.svg index f69c7cfd0..4948e8326 100644 --- a/icons/outline/fish-hook.svg +++ b/icons/outline/fish-hook.svg @@ -16,6 +16,6 @@ unicode: "f1f9" stroke-linejoin="round" > - + diff --git a/icons/outline/flag-cancel.svg b/icons/outline/flag-cancel.svg index 5f47a2865..427f470db 100644 --- a/icons/outline/flag-cancel.svg +++ b/icons/outline/flag-cancel.svg @@ -17,6 +17,6 @@ unicode: "fb8b" > - + diff --git a/icons/outline/flag-cog.svg b/icons/outline/flag-cog.svg index 8f41dd465..f9b153c46 100644 --- a/icons/outline/flag-cog.svg +++ b/icons/outline/flag-cog.svg @@ -17,7 +17,7 @@ unicode: "fb8e" > - + diff --git a/icons/outline/flag-heart.svg b/icons/outline/flag-heart.svg index e7d5aceca..1e440ea9c 100644 --- a/icons/outline/flag-heart.svg +++ b/icons/outline/flag-heart.svg @@ -17,5 +17,5 @@ unicode: "fb93" > - + diff --git a/icons/outline/flag-pin.svg b/icons/outline/flag-pin.svg index e8ccadd33..f34dc4495 100644 --- a/icons/outline/flag-pin.svg +++ b/icons/outline/flag-pin.svg @@ -17,6 +17,6 @@ unicode: "fb96" > - + diff --git a/icons/outline/flag-search.svg b/icons/outline/flag-search.svg index 30f227141..4e355cf49 100644 --- a/icons/outline/flag-search.svg +++ b/icons/outline/flag-search.svg @@ -17,6 +17,6 @@ unicode: "fb99" > - + diff --git a/icons/outline/flag-star.svg b/icons/outline/flag-star.svg index e6295065f..c2db9bc38 100644 --- a/icons/outline/flag-star.svg +++ b/icons/outline/flag-star.svg @@ -17,5 +17,5 @@ unicode: "fb9b" > - + diff --git a/icons/outline/flag.svg b/icons/outline/flag.svg index ea2dda151..5c3514b85 100644 --- a/icons/outline/flag.svg +++ b/icons/outline/flag.svg @@ -15,6 +15,6 @@ unicode: "eaa6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/flame.svg b/icons/outline/flame.svg index 01ffbbdbb..b3c84cf8b 100644 --- a/icons/outline/flame.svg +++ b/icons/outline/flame.svg @@ -15,5 +15,5 @@ unicode: "ec2c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/flare.svg b/icons/outline/flare.svg index 1f9ce20e3..56f3a9576 100644 --- a/icons/outline/flare.svg +++ b/icons/outline/flare.svg @@ -15,5 +15,5 @@ unicode: "ee8e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/flask-2.svg b/icons/outline/flask-2.svg index faaf7ef0b..393a80d5b 100644 --- a/icons/outline/flask-2.svg +++ b/icons/outline/flask-2.svg @@ -16,6 +16,6 @@ unicode: "ef60" stroke-linejoin="round" > - + diff --git a/icons/outline/flip-flops.svg b/icons/outline/flip-flops.svg index 88e7e581e..d94952146 100644 --- a/icons/outline/flip-flops.svg +++ b/icons/outline/flip-flops.svg @@ -15,10 +15,10 @@ unicode: "f564" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/float-center.svg b/icons/outline/float-center.svg index 681c7ab0a..f9be1ff09 100644 --- a/icons/outline/float-center.svg +++ b/icons/outline/float-center.svg @@ -15,7 +15,7 @@ unicode: "ebb1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/float-left.svg b/icons/outline/float-left.svg index cc2d43b67..0004feb9e 100644 --- a/icons/outline/float-left.svg +++ b/icons/outline/float-left.svg @@ -15,7 +15,7 @@ unicode: "ebb2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/float-none.svg b/icons/outline/float-none.svg index 889314bde..baa4478f3 100644 --- a/icons/outline/float-none.svg +++ b/icons/outline/float-none.svg @@ -15,7 +15,7 @@ unicode: "ed13" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/float-right.svg b/icons/outline/float-right.svg index d348ab517..47fed7319 100644 --- a/icons/outline/float-right.svg +++ b/icons/outline/float-right.svg @@ -15,7 +15,7 @@ unicode: "ebb3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/flower.svg b/icons/outline/flower.svg index a5443d898..2f63f7c90 100644 --- a/icons/outline/flower.svg +++ b/icons/outline/flower.svg @@ -15,6 +15,6 @@ unicode: "eff6" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/focus-2.svg b/icons/outline/focus-2.svg index e2760e05a..80fb9aec8 100644 --- a/icons/outline/focus-2.svg +++ b/icons/outline/focus-2.svg @@ -15,8 +15,8 @@ unicode: "ebd3" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/focus-centered.svg b/icons/outline/focus-centered.svg index 5679cb736..3523c6f51 100644 --- a/icons/outline/focus-centered.svg +++ b/icons/outline/focus-centered.svg @@ -15,7 +15,7 @@ unicode: "f02a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/focus.svg b/icons/outline/focus.svg index 3428750f7..44ad01a43 100644 --- a/icons/outline/focus.svg +++ b/icons/outline/focus.svg @@ -15,6 +15,6 @@ unicode: "eb8d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/folder-cancel.svg b/icons/outline/folder-cancel.svg index 5e81b3c7f..e0530bd86 100644 --- a/icons/outline/folder-cancel.svg +++ b/icons/outline/folder-cancel.svg @@ -16,6 +16,6 @@ unicode: "f90d" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-cog.svg b/icons/outline/folder-cog.svg index 5ae692a19..d06bf0571 100644 --- a/icons/outline/folder-cog.svg +++ b/icons/outline/folder-cog.svg @@ -16,7 +16,7 @@ unicode: "f910" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-heart.svg b/icons/outline/folder-heart.svg index 1afa5f5d5..899babd27 100644 --- a/icons/outline/folder-heart.svg +++ b/icons/outline/folder-heart.svg @@ -16,5 +16,5 @@ unicode: "f914" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-pin.svg b/icons/outline/folder-pin.svg index db1588fa5..3a9b9cf0b 100644 --- a/icons/outline/folder-pin.svg +++ b/icons/outline/folder-pin.svg @@ -16,6 +16,6 @@ unicode: "f916" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-root.svg b/icons/outline/folder-root.svg index dfdb5c81b..bdca0261f 100644 --- a/icons/outline/folder-root.svg +++ b/icons/outline/folder-root.svg @@ -15,7 +15,7 @@ unicode: "fd43" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-search.svg b/icons/outline/folder-search.svg index fac5a0c84..0aa163353 100644 --- a/icons/outline/folder-search.svg +++ b/icons/outline/folder-search.svg @@ -16,6 +16,6 @@ unicode: "f918" stroke-linejoin="round" > - + diff --git a/icons/outline/folder-star.svg b/icons/outline/folder-star.svg index 7019c3010..89af061f4 100644 --- a/icons/outline/folder-star.svg +++ b/icons/outline/folder-star.svg @@ -16,5 +16,5 @@ unicode: "f91a" stroke-linejoin="round" > - + diff --git a/icons/outline/forbid-2.svg b/icons/outline/forbid-2.svg index 05effc52f..877ee4238 100644 --- a/icons/outline/forbid-2.svg +++ b/icons/outline/forbid-2.svg @@ -16,6 +16,6 @@ unicode: "ebd4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/forbid.svg b/icons/outline/forbid.svg index d6dca3890..1dc700b1d 100644 --- a/icons/outline/forbid.svg +++ b/icons/outline/forbid.svg @@ -16,6 +16,6 @@ unicode: "ebd5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/forklift.svg b/icons/outline/forklift.svg index 79b229b66..1dc7184a5 100644 --- a/icons/outline/forklift.svg +++ b/icons/outline/forklift.svg @@ -15,8 +15,8 @@ unicode: "ebe9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/fountain.svg b/icons/outline/fountain.svg index 97254e45d..681590937 100644 --- a/icons/outline/fountain.svg +++ b/icons/outline/fountain.svg @@ -19,5 +19,5 @@ unicode: "f09b" - + diff --git a/icons/outline/free-rights.svg b/icons/outline/free-rights.svg index d2f2c34e1..3ae402a0f 100644 --- a/icons/outline/free-rights.svg +++ b/icons/outline/free-rights.svg @@ -15,7 +15,7 @@ unicode: "efb6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/freeze-column.svg b/icons/outline/freeze-column.svg index 38c0b880f..3f6175be3 100644 --- a/icons/outline/freeze-column.svg +++ b/icons/outline/freeze-column.svg @@ -19,5 +19,5 @@ unicode: "fa63" - + diff --git a/icons/outline/freeze-row-column.svg b/icons/outline/freeze-row-column.svg index f3a86a71e..b428f59f2 100644 --- a/icons/outline/freeze-row-column.svg +++ b/icons/outline/freeze-row-column.svg @@ -15,7 +15,7 @@ unicode: "fa64" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/freeze-row.svg b/icons/outline/freeze-row.svg index 881ff98f2..ef4c82425 100644 --- a/icons/outline/freeze-row.svg +++ b/icons/outline/freeze-row.svg @@ -15,7 +15,7 @@ unicode: "fa65" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/fridge.svg b/icons/outline/fridge.svg index 571f94d71..809e836d2 100644 --- a/icons/outline/fridge.svg +++ b/icons/outline/fridge.svg @@ -15,7 +15,7 @@ unicode: "f1fa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/friends-off.svg b/icons/outline/friends-off.svg index c835ef717..d89768595 100644 --- a/icons/outline/friends-off.svg +++ b/icons/outline/friends-off.svg @@ -17,7 +17,7 @@ unicode: "f136" > - + diff --git a/icons/outline/friends.svg b/icons/outline/friends.svg index aa9b1d0d5..b8e3731f7 100644 --- a/icons/outline/friends.svg +++ b/icons/outline/friends.svg @@ -15,8 +15,8 @@ unicode: "eab0" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/frustum.svg b/icons/outline/frustum.svg index 33cd50bc9..79fa29c51 100644 --- a/icons/outline/frustum.svg +++ b/icons/outline/frustum.svg @@ -15,7 +15,7 @@ unicode: "fa9f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/function.svg b/icons/outline/function.svg index 883e9f5fb..afa84ea13 100644 --- a/icons/outline/function.svg +++ b/icons/outline/function.svg @@ -15,7 +15,7 @@ unicode: "f225" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/garden-cart.svg b/icons/outline/garden-cart.svg index 35ae34fa1..5d9177393 100644 --- a/icons/outline/garden-cart.svg +++ b/icons/outline/garden-cart.svg @@ -15,7 +15,7 @@ unicode: "f23e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gauge.svg b/icons/outline/gauge.svg index 41c8ebc2b..56a168c1d 100644 --- a/icons/outline/gauge.svg +++ b/icons/outline/gauge.svg @@ -15,8 +15,8 @@ unicode: "eab1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/gavel.svg b/icons/outline/gavel.svg index 5e506d9b2..cffd9f716 100644 --- a/icons/outline/gavel.svg +++ b/icons/outline/gavel.svg @@ -19,5 +19,5 @@ unicode: "ef90" - + diff --git a/icons/outline/gender-agender.svg b/icons/outline/gender-agender.svg index 003fb1f19..dcd39d6d1 100644 --- a/icons/outline/gender-agender.svg +++ b/icons/outline/gender-agender.svg @@ -15,6 +15,6 @@ unicode: "f0e1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-androgyne.svg b/icons/outline/gender-androgyne.svg index 37d70a9fa..43f8adcee 100644 --- a/icons/outline/gender-androgyne.svg +++ b/icons/outline/gender-androgyne.svg @@ -16,7 +16,7 @@ unicode: "f0e2" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-bigender.svg b/icons/outline/gender-bigender.svg index 363964ecf..9e72c4d77 100644 --- a/icons/outline/gender-bigender.svg +++ b/icons/outline/gender-bigender.svg @@ -15,7 +15,7 @@ unicode: "f0e3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-demiboy.svg b/icons/outline/gender-demiboy.svg index a5529814d..4bd9d481a 100644 --- a/icons/outline/gender-demiboy.svg +++ b/icons/outline/gender-demiboy.svg @@ -15,7 +15,7 @@ unicode: "f0e4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-demigirl.svg b/icons/outline/gender-demigirl.svg index caab96220..3143125bf 100644 --- a/icons/outline/gender-demigirl.svg +++ b/icons/outline/gender-demigirl.svg @@ -15,7 +15,7 @@ unicode: "f0e5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-epicene.svg b/icons/outline/gender-epicene.svg index f638d1d52..3d18c2672 100644 --- a/icons/outline/gender-epicene.svg +++ b/icons/outline/gender-epicene.svg @@ -15,7 +15,7 @@ unicode: "f0e6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-female.svg b/icons/outline/gender-female.svg index afdee646d..3a4bd8022 100644 --- a/icons/outline/gender-female.svg +++ b/icons/outline/gender-female.svg @@ -15,7 +15,7 @@ unicode: "f0e7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-femme.svg b/icons/outline/gender-femme.svg index ca98c070b..72a1ff731 100644 --- a/icons/outline/gender-femme.svg +++ b/icons/outline/gender-femme.svg @@ -15,7 +15,7 @@ unicode: "f0e8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-genderfluid.svg b/icons/outline/gender-genderfluid.svg index 91de26744..2f6d5ebc2 100644 --- a/icons/outline/gender-genderfluid.svg +++ b/icons/outline/gender-genderfluid.svg @@ -15,7 +15,7 @@ unicode: "f0e9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-genderless.svg b/icons/outline/gender-genderless.svg index 9f6363d4c..921762226 100644 --- a/icons/outline/gender-genderless.svg +++ b/icons/outline/gender-genderless.svg @@ -15,7 +15,7 @@ unicode: "f0ea" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-genderqueer.svg b/icons/outline/gender-genderqueer.svg index 3576b62ee..57bb50911 100644 --- a/icons/outline/gender-genderqueer.svg +++ b/icons/outline/gender-genderqueer.svg @@ -15,7 +15,7 @@ unicode: "f0eb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-hermaphrodite.svg b/icons/outline/gender-hermaphrodite.svg index 2b0d6c508..f26fa9993 100644 --- a/icons/outline/gender-hermaphrodite.svg +++ b/icons/outline/gender-hermaphrodite.svg @@ -17,6 +17,6 @@ unicode: "f0ec" > - + diff --git a/icons/outline/gender-intergender.svg b/icons/outline/gender-intergender.svg index c5b00a910..64f45915c 100644 --- a/icons/outline/gender-intergender.svg +++ b/icons/outline/gender-intergender.svg @@ -17,6 +17,6 @@ unicode: "f0ed" > - + diff --git a/icons/outline/gender-male.svg b/icons/outline/gender-male.svg index 552aea1b9..3e0feae00 100644 --- a/icons/outline/gender-male.svg +++ b/icons/outline/gender-male.svg @@ -15,7 +15,7 @@ unicode: "f0ee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-neutrois.svg b/icons/outline/gender-neutrois.svg index 98214a79f..fd75bf8d8 100644 --- a/icons/outline/gender-neutrois.svg +++ b/icons/outline/gender-neutrois.svg @@ -15,6 +15,6 @@ unicode: "f0ef" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-third.svg b/icons/outline/gender-third.svg index 32fb9c5d1..5c83aafbd 100644 --- a/icons/outline/gender-third.svg +++ b/icons/outline/gender-third.svg @@ -15,7 +15,7 @@ unicode: "f0f0" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/gender-transgender.svg b/icons/outline/gender-transgender.svg index c699bde51..9591d987c 100644 --- a/icons/outline/gender-transgender.svg +++ b/icons/outline/gender-transgender.svg @@ -15,7 +15,7 @@ unicode: "f0f1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/gender-trasvesti.svg b/icons/outline/gender-trasvesti.svg index d972b2c5a..adab707cd 100644 --- a/icons/outline/gender-trasvesti.svg +++ b/icons/outline/gender-trasvesti.svg @@ -15,7 +15,7 @@ unicode: "f0f2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/geometry.svg b/icons/outline/geometry.svg index ba820cf1f..b50ce3559 100644 --- a/icons/outline/geometry.svg +++ b/icons/outline/geometry.svg @@ -16,7 +16,7 @@ unicode: "ee90" stroke-linejoin="round" > - + diff --git a/icons/outline/ghost-2.svg b/icons/outline/ghost-2.svg index 137a50784..d54059fe9 100644 --- a/icons/outline/ghost-2.svg +++ b/icons/outline/ghost-2.svg @@ -17,6 +17,6 @@ unicode: "f57c" > - - + + diff --git a/icons/outline/gift-card.svg b/icons/outline/gift-card.svg index 01274bd7b..d3ee67db8 100644 --- a/icons/outline/gift-card.svg +++ b/icons/outline/gift-card.svg @@ -15,7 +15,7 @@ unicode: "f3aa" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/gift.svg b/icons/outline/gift.svg index 03fb659ce..0cc800742 100644 --- a/icons/outline/gift.svg +++ b/icons/outline/gift.svg @@ -15,7 +15,7 @@ unicode: "eb68" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/git-branch-deleted.svg b/icons/outline/git-branch-deleted.svg index 8610d5311..9f8d66bf2 100644 --- a/icons/outline/git-branch-deleted.svg +++ b/icons/outline/git-branch-deleted.svg @@ -15,8 +15,8 @@ unicode: "f57d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/git-branch.svg b/icons/outline/git-branch.svg index e15ebd739..b22c01ddc 100644 --- a/icons/outline/git-branch.svg +++ b/icons/outline/git-branch.svg @@ -15,9 +15,9 @@ unicode: "eab2" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/git-cherry-pick.svg b/icons/outline/git-cherry-pick.svg index da49feb12..c72389a50 100644 --- a/icons/outline/git-cherry-pick.svg +++ b/icons/outline/git-cherry-pick.svg @@ -15,7 +15,7 @@ unicode: "f57e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/git-commit.svg b/icons/outline/git-commit.svg index e1bacd10e..eaca0f68b 100644 --- a/icons/outline/git-commit.svg +++ b/icons/outline/git-commit.svg @@ -15,7 +15,7 @@ unicode: "eab3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/git-compare.svg b/icons/outline/git-compare.svg index f31c97719..dd4c3a771 100644 --- a/icons/outline/git-compare.svg +++ b/icons/outline/git-compare.svg @@ -15,8 +15,8 @@ unicode: "eab4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/git-fork.svg b/icons/outline/git-fork.svg index 39ed5519a..21d6add19 100644 --- a/icons/outline/git-fork.svg +++ b/icons/outline/git-fork.svg @@ -15,9 +15,9 @@ unicode: "eb8f" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/git-merge.svg b/icons/outline/git-merge.svg index 2f077c528..f9d25da9d 100644 --- a/icons/outline/git-merge.svg +++ b/icons/outline/git-merge.svg @@ -15,9 +15,9 @@ unicode: "eab5" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/git-pull-request-closed.svg b/icons/outline/git-pull-request-closed.svg index 02a3016ed..94b5bee0b 100644 --- a/icons/outline/git-pull-request-closed.svg +++ b/icons/outline/git-pull-request-closed.svg @@ -15,9 +15,9 @@ unicode: "ef7f" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/git-pull-request-draft.svg b/icons/outline/git-pull-request-draft.svg index cfdd11742..45cb644c8 100644 --- a/icons/outline/git-pull-request-draft.svg +++ b/icons/outline/git-pull-request-draft.svg @@ -15,9 +15,9 @@ unicode: "efb7" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/git-pull-request.svg b/icons/outline/git-pull-request.svg index a9105b7fb..e16655329 100644 --- a/icons/outline/git-pull-request.svg +++ b/icons/outline/git-pull-request.svg @@ -15,9 +15,9 @@ unicode: "eab6" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/gizmo.svg b/icons/outline/gizmo.svg index c05b2b00a..63b6ea132 100644 --- a/icons/outline/gizmo.svg +++ b/icons/outline/gizmo.svg @@ -17,7 +17,7 @@ unicode: "f02b" > - - - + + + diff --git a/icons/outline/glass-champagne.svg b/icons/outline/glass-champagne.svg index 20776cdf1..ece7cba67 100644 --- a/icons/outline/glass-champagne.svg +++ b/icons/outline/glass-champagne.svg @@ -17,6 +17,6 @@ unicode: "fd9c" > - + diff --git a/icons/outline/glass-cocktail.svg b/icons/outline/glass-cocktail.svg index 26417b343..f38e2225d 100644 --- a/icons/outline/glass-cocktail.svg +++ b/icons/outline/glass-cocktail.svg @@ -17,6 +17,6 @@ unicode: "fd9d" > - + diff --git a/icons/outline/glass-full.svg b/icons/outline/glass-full.svg index 49f440123..0ad4f9321 100644 --- a/icons/outline/glass-full.svg +++ b/icons/outline/glass-full.svg @@ -17,6 +17,6 @@ unicode: "eab7" > - + diff --git a/icons/outline/glass-gin.svg b/icons/outline/glass-gin.svg index f7f449073..382031e52 100644 --- a/icons/outline/glass-gin.svg +++ b/icons/outline/glass-gin.svg @@ -17,6 +17,6 @@ unicode: "fd9e" > - + diff --git a/icons/outline/glass.svg b/icons/outline/glass.svg index 71b8b990f..477843bca 100644 --- a/icons/outline/glass.svg +++ b/icons/outline/glass.svg @@ -18,5 +18,5 @@ unicode: "eab8" - + diff --git a/icons/outline/go-game.svg b/icons/outline/go-game.svg index 9653022b9..59775935b 100644 --- a/icons/outline/go-game.svg +++ b/icons/outline/go-game.svg @@ -15,10 +15,10 @@ unicode: "f512" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/gps.svg b/icons/outline/gps.svg index 825356835..5bf22d593 100644 --- a/icons/outline/gps.svg +++ b/icons/outline/gps.svg @@ -15,6 +15,6 @@ unicode: "ed7a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/gradienter.svg b/icons/outline/gradienter.svg index 03cffd5b5..61f34087f 100644 --- a/icons/outline/gradienter.svg +++ b/icons/outline/gradienter.svg @@ -17,5 +17,5 @@ unicode: "f3ab" > - + diff --git a/icons/outline/grain.svg b/icons/outline/grain.svg index c5b2f1910..cded2f16a 100644 --- a/icons/outline/grain.svg +++ b/icons/outline/grain.svg @@ -15,12 +15,12 @@ unicode: "ee92" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - - + + + + + + + + diff --git a/icons/outline/graph.svg b/icons/outline/graph.svg index 1c1ad21bd..24e511ee9 100644 --- a/icons/outline/graph.svg +++ b/icons/outline/graph.svg @@ -15,6 +15,6 @@ unicode: "f288" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/grave-2.svg b/icons/outline/grave-2.svg index b68e02ca4..3069e2ec9 100644 --- a/icons/outline/grave-2.svg +++ b/icons/outline/grave-2.svg @@ -18,5 +18,5 @@ unicode: "f57f" - + diff --git a/icons/outline/grave.svg b/icons/outline/grave.svg index 39e504b04..8ac2d90cb 100644 --- a/icons/outline/grave.svg +++ b/icons/outline/grave.svg @@ -15,6 +15,6 @@ unicode: "f580" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/grid-dots.svg b/icons/outline/grid-dots.svg index 0cf4b0371..e8e578259 100644 --- a/icons/outline/grid-dots.svg +++ b/icons/outline/grid-dots.svg @@ -15,13 +15,13 @@ unicode: "eaba" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - - - + + + + + + + + + diff --git a/icons/outline/grid-pattern.svg b/icons/outline/grid-pattern.svg index 162885c16..717331ea4 100644 --- a/icons/outline/grid-pattern.svg +++ b/icons/outline/grid-pattern.svg @@ -15,7 +15,7 @@ unicode: "efc9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/grill-fork.svg b/icons/outline/grill-fork.svg index 4cd0edc34..a526d04bb 100644 --- a/icons/outline/grill-fork.svg +++ b/icons/outline/grill-fork.svg @@ -16,6 +16,6 @@ unicode: "f35b" stroke-linejoin="round" > - + diff --git a/icons/outline/grill-spatula.svg b/icons/outline/grill-spatula.svg index 6183feca3..15259391f 100644 --- a/icons/outline/grill-spatula.svg +++ b/icons/outline/grill-spatula.svg @@ -16,6 +16,6 @@ unicode: "f35c" stroke-linejoin="round" > - - + + diff --git a/icons/outline/grill.svg b/icons/outline/grill.svg index a0080689f..2bc2c4b3d 100644 --- a/icons/outline/grill.svg +++ b/icons/outline/grill.svg @@ -15,8 +15,8 @@ unicode: "efa9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/grip-horizontal.svg b/icons/outline/grip-horizontal.svg index 41181522c..8a4bd00e6 100644 --- a/icons/outline/grip-horizontal.svg +++ b/icons/outline/grip-horizontal.svg @@ -15,10 +15,10 @@ unicode: "ec00" stroke-linecap="round" stroke-linejoin="round" > - - - - - - + + + + + + diff --git a/icons/outline/grip-vertical.svg b/icons/outline/grip-vertical.svg index cf9f99786..d0118542c 100644 --- a/icons/outline/grip-vertical.svg +++ b/icons/outline/grip-vertical.svg @@ -15,10 +15,10 @@ unicode: "ec01" stroke-linecap="round" stroke-linejoin="round" > - - - - - - + + + + + + diff --git a/icons/outline/guitar-pick.svg b/icons/outline/guitar-pick.svg index 7b39a6643..65e183554 100644 --- a/icons/outline/guitar-pick.svg +++ b/icons/outline/guitar-pick.svg @@ -15,5 +15,5 @@ unicode: "f4c6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/h-6.svg b/icons/outline/h-6.svg index 5dec8557a..443abc0c1 100644 --- a/icons/outline/h-6.svg +++ b/icons/outline/h-6.svg @@ -15,7 +15,7 @@ unicode: "ec99" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hammer.svg b/icons/outline/hammer.svg index bbdf52a5f..b0b1c66da 100644 --- a/icons/outline/hammer.svg +++ b/icons/outline/hammer.svg @@ -16,5 +16,5 @@ unicode: "ef91" stroke-linejoin="round" > - + diff --git a/icons/outline/hand-sanitizer.svg b/icons/outline/hand-sanitizer.svg index 5050d2da7..ad4455bea 100644 --- a/icons/outline/hand-sanitizer.svg +++ b/icons/outline/hand-sanitizer.svg @@ -15,7 +15,7 @@ unicode: "f5f4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hanger-2.svg b/icons/outline/hanger-2.svg index f0c7df3a0..aaad86168 100644 --- a/icons/outline/hanger-2.svg +++ b/icons/outline/hanger-2.svg @@ -17,5 +17,5 @@ unicode: "f09c" > - + diff --git a/icons/outline/hdr.svg b/icons/outline/hdr.svg index b3df1a08f..2833252ea 100644 --- a/icons/outline/hdr.svg +++ b/icons/outline/hdr.svg @@ -18,6 +18,6 @@ unicode: "fa7b" - + diff --git a/icons/outline/headphones-off.svg b/icons/outline/headphones-off.svg index 1899a8f07..61ac330ee 100644 --- a/icons/outline/headphones-off.svg +++ b/icons/outline/headphones-off.svg @@ -16,7 +16,7 @@ unicode: "ed1d" stroke-linejoin="round" > - + diff --git a/icons/outline/headphones.svg b/icons/outline/headphones.svg index 80aa29eb9..6586205fc 100644 --- a/icons/outline/headphones.svg +++ b/icons/outline/headphones.svg @@ -15,7 +15,7 @@ unicode: "eabd" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/headset-off.svg b/icons/outline/headset-off.svg index fb37a1ffa..ffcc4ffc5 100644 --- a/icons/outline/headset-off.svg +++ b/icons/outline/headset-off.svg @@ -17,7 +17,7 @@ unicode: "f3f6" > - + diff --git a/icons/outline/headset.svg b/icons/outline/headset.svg index 29a5adb37..b67f72170 100644 --- a/icons/outline/headset.svg +++ b/icons/outline/headset.svg @@ -17,6 +17,6 @@ unicode: "eb90" > - - + + diff --git a/icons/outline/health-recognition.svg b/icons/outline/health-recognition.svg index 903216caa..f21682286 100644 --- a/icons/outline/health-recognition.svg +++ b/icons/outline/health-recognition.svg @@ -19,5 +19,5 @@ unicode: "f1fb" - + diff --git a/icons/outline/heart-cancel.svg b/icons/outline/heart-cancel.svg index 0f057119a..a237cee3f 100644 --- a/icons/outline/heart-cancel.svg +++ b/icons/outline/heart-cancel.svg @@ -16,6 +16,6 @@ unicode: "fb9f" stroke-linejoin="round" > - + diff --git a/icons/outline/heart-cog.svg b/icons/outline/heart-cog.svg index 1c55a0d13..1f495a489 100644 --- a/icons/outline/heart-cog.svg +++ b/icons/outline/heart-cog.svg @@ -16,7 +16,7 @@ unicode: "fba2" stroke-linejoin="round" > - + diff --git a/icons/outline/heart-pin.svg b/icons/outline/heart-pin.svg index 560c09827..361acbd20 100644 --- a/icons/outline/heart-pin.svg +++ b/icons/outline/heart-pin.svg @@ -16,6 +16,6 @@ unicode: "fba8" stroke-linejoin="round" > - + diff --git a/icons/outline/heart-rate-monitor.svg b/icons/outline/heart-rate-monitor.svg index 1aeed682e..26b6c7db6 100644 --- a/icons/outline/heart-rate-monitor.svg +++ b/icons/outline/heart-rate-monitor.svg @@ -15,7 +15,7 @@ unicode: "ef61" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/heart-search.svg b/icons/outline/heart-search.svg index 477478d43..6b9bfa09d 100644 --- a/icons/outline/heart-search.svg +++ b/icons/outline/heart-search.svg @@ -16,6 +16,6 @@ unicode: "fbaa" stroke-linejoin="round" > - + diff --git a/icons/outline/heart-star.svg b/icons/outline/heart-star.svg index 339b3c545..8344aa609 100644 --- a/icons/outline/heart-star.svg +++ b/icons/outline/heart-star.svg @@ -16,5 +16,5 @@ unicode: "fbac" stroke-linejoin="round" > - + diff --git a/icons/outline/hearts.svg b/icons/outline/hearts.svg index b1a804fc7..60c87ca8e 100644 --- a/icons/outline/hearts.svg +++ b/icons/outline/hearts.svg @@ -16,5 +16,5 @@ unicode: "f387" stroke-linejoin="round" > - + diff --git a/icons/outline/helicopter-landing.svg b/icons/outline/helicopter-landing.svg index 0bfb81ee4..eb89141db 100644 --- a/icons/outline/helicopter-landing.svg +++ b/icons/outline/helicopter-landing.svg @@ -15,7 +15,7 @@ unicode: "ed8d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/helicopter.svg b/icons/outline/helicopter.svg index a31940383..8c37b6736 100644 --- a/icons/outline/helicopter.svg +++ b/icons/outline/helicopter.svg @@ -16,7 +16,7 @@ unicode: "ed8e" stroke-linejoin="round" > - + diff --git a/icons/outline/helmet.svg b/icons/outline/helmet.svg index fc01daf92..28551782a 100644 --- a/icons/outline/helmet.svg +++ b/icons/outline/helmet.svg @@ -15,6 +15,6 @@ unicode: "efca" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/help-hexagon.svg b/icons/outline/help-hexagon.svg index 458ce7264..44e6bb1b3 100644 --- a/icons/outline/help-hexagon.svg +++ b/icons/outline/help-hexagon.svg @@ -15,7 +15,7 @@ unicode: "f7a8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/help-octagon.svg b/icons/outline/help-octagon.svg index 9a703d082..37ed1f097 100644 --- a/icons/outline/help-octagon.svg +++ b/icons/outline/help-octagon.svg @@ -15,7 +15,7 @@ unicode: "f7a9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/help-square-rounded.svg b/icons/outline/help-square-rounded.svg index e7509bcb4..93e9478cc 100644 --- a/icons/outline/help-square-rounded.svg +++ b/icons/outline/help-square-rounded.svg @@ -15,7 +15,7 @@ category: System stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/help-square.svg b/icons/outline/help-square.svg index c4e822bff..1d6e6358f 100644 --- a/icons/outline/help-square.svg +++ b/icons/outline/help-square.svg @@ -15,7 +15,7 @@ category: System stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/help-triangle.svg b/icons/outline/help-triangle.svg index 2b4b0099e..415c6d67d 100644 --- a/icons/outline/help-triangle.svg +++ b/icons/outline/help-triangle.svg @@ -16,6 +16,6 @@ category: System stroke-linejoin="round" > - + diff --git a/icons/outline/help.svg b/icons/outline/help.svg index ad89d7ae8..1a3ceec36 100644 --- a/icons/outline/help.svg +++ b/icons/outline/help.svg @@ -15,7 +15,7 @@ unicode: "eabf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hemisphere-plus.svg b/icons/outline/hemisphere-plus.svg index 6bb13be30..967be75da 100644 --- a/icons/outline/hemisphere-plus.svg +++ b/icons/outline/hemisphere-plus.svg @@ -15,7 +15,7 @@ unicode: "faa1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hemisphere.svg b/icons/outline/hemisphere.svg index 53a8ecab1..7c3920ab5 100644 --- a/icons/outline/hemisphere.svg +++ b/icons/outline/hemisphere.svg @@ -15,6 +15,6 @@ unicode: "faa2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-3d.svg b/icons/outline/hexagon-3d.svg index 794a3270a..27d98148c 100644 --- a/icons/outline/hexagon-3d.svg +++ b/icons/outline/hexagon-3d.svg @@ -15,11 +15,11 @@ unicode: "f4c7" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/hexagon-asterisk.svg b/icons/outline/hexagon-asterisk.svg index d18d0f770..706ae8dc0 100644 --- a/icons/outline/hexagon-asterisk.svg +++ b/icons/outline/hexagon-asterisk.svg @@ -15,7 +15,7 @@ version: "3.36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-a.svg b/icons/outline/hexagon-letter-a.svg index 7b2e24f34..ec1226315 100644 --- a/icons/outline/hexagon-letter-a.svg +++ b/icons/outline/hexagon-letter-a.svg @@ -15,7 +15,7 @@ unicode: "f463" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-b.svg b/icons/outline/hexagon-letter-b.svg index 137c8fb7d..177044a85 100644 --- a/icons/outline/hexagon-letter-b.svg +++ b/icons/outline/hexagon-letter-b.svg @@ -15,6 +15,6 @@ unicode: "f464" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hexagon-letter-c.svg b/icons/outline/hexagon-letter-c.svg index 1dc46e0d2..d4951b6f0 100644 --- a/icons/outline/hexagon-letter-c.svg +++ b/icons/outline/hexagon-letter-c.svg @@ -15,6 +15,6 @@ unicode: "f465" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-d.svg b/icons/outline/hexagon-letter-d.svg index 7d02d8458..555458a54 100644 --- a/icons/outline/hexagon-letter-d.svg +++ b/icons/outline/hexagon-letter-d.svg @@ -15,6 +15,6 @@ unicode: "f466" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hexagon-letter-e.svg b/icons/outline/hexagon-letter-e.svg index 4aaf834c4..a8016ef5f 100644 --- a/icons/outline/hexagon-letter-e.svg +++ b/icons/outline/hexagon-letter-e.svg @@ -15,7 +15,7 @@ unicode: "f467" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-f.svg b/icons/outline/hexagon-letter-f.svg index e449e3f12..08f673c5d 100644 --- a/icons/outline/hexagon-letter-f.svg +++ b/icons/outline/hexagon-letter-f.svg @@ -15,7 +15,7 @@ unicode: "f468" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-g.svg b/icons/outline/hexagon-letter-g.svg index 5d98d882f..ada151273 100644 --- a/icons/outline/hexagon-letter-g.svg +++ b/icons/outline/hexagon-letter-g.svg @@ -15,6 +15,6 @@ unicode: "f469" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-h.svg b/icons/outline/hexagon-letter-h.svg index ee13c65b3..782f2d3b9 100644 --- a/icons/outline/hexagon-letter-h.svg +++ b/icons/outline/hexagon-letter-h.svg @@ -15,7 +15,7 @@ unicode: "f46a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-i.svg b/icons/outline/hexagon-letter-i.svg index 72f841206..209d4a5d8 100644 --- a/icons/outline/hexagon-letter-i.svg +++ b/icons/outline/hexagon-letter-i.svg @@ -15,6 +15,6 @@ unicode: "f46b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-j.svg b/icons/outline/hexagon-letter-j.svg index d3d19b816..91f253a10 100644 --- a/icons/outline/hexagon-letter-j.svg +++ b/icons/outline/hexagon-letter-j.svg @@ -15,6 +15,6 @@ unicode: "f46c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-k.svg b/icons/outline/hexagon-letter-k.svg index 1126cbadd..7eee7e692 100644 --- a/icons/outline/hexagon-letter-k.svg +++ b/icons/outline/hexagon-letter-k.svg @@ -15,7 +15,7 @@ unicode: "f46d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-l.svg b/icons/outline/hexagon-letter-l.svg index f2b10b162..c56550846 100644 --- a/icons/outline/hexagon-letter-l.svg +++ b/icons/outline/hexagon-letter-l.svg @@ -15,6 +15,6 @@ unicode: "f46e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-m.svg b/icons/outline/hexagon-letter-m.svg index 10f514d88..e955db553 100644 --- a/icons/outline/hexagon-letter-m.svg +++ b/icons/outline/hexagon-letter-m.svg @@ -15,6 +15,6 @@ unicode: "f46f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-n.svg b/icons/outline/hexagon-letter-n.svg index 0b0304cf5..64cf1114e 100644 --- a/icons/outline/hexagon-letter-n.svg +++ b/icons/outline/hexagon-letter-n.svg @@ -15,6 +15,6 @@ unicode: "f470" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-o.svg b/icons/outline/hexagon-letter-o.svg index bbadc7128..dfc78c4cd 100644 --- a/icons/outline/hexagon-letter-o.svg +++ b/icons/outline/hexagon-letter-o.svg @@ -15,6 +15,6 @@ unicode: "f471" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hexagon-letter-p.svg b/icons/outline/hexagon-letter-p.svg index b2674a27c..2032a01e0 100644 --- a/icons/outline/hexagon-letter-p.svg +++ b/icons/outline/hexagon-letter-p.svg @@ -15,6 +15,6 @@ unicode: "f472" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-q.svg b/icons/outline/hexagon-letter-q.svg index 78d661671..dbea3f203 100644 --- a/icons/outline/hexagon-letter-q.svg +++ b/icons/outline/hexagon-letter-q.svg @@ -15,7 +15,7 @@ unicode: "f473" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hexagon-letter-r.svg b/icons/outline/hexagon-letter-r.svg index 4d91f6578..cb327a25c 100644 --- a/icons/outline/hexagon-letter-r.svg +++ b/icons/outline/hexagon-letter-r.svg @@ -15,6 +15,6 @@ unicode: "f474" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-s.svg b/icons/outline/hexagon-letter-s.svg index 75f34cecc..017cfc326 100644 --- a/icons/outline/hexagon-letter-s.svg +++ b/icons/outline/hexagon-letter-s.svg @@ -15,6 +15,6 @@ unicode: "f475" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-t.svg b/icons/outline/hexagon-letter-t.svg index 027cf954d..327fadb54 100644 --- a/icons/outline/hexagon-letter-t.svg +++ b/icons/outline/hexagon-letter-t.svg @@ -15,7 +15,7 @@ unicode: "f476" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-u.svg b/icons/outline/hexagon-letter-u.svg index bc5d1608d..f92fe1fed 100644 --- a/icons/outline/hexagon-letter-u.svg +++ b/icons/outline/hexagon-letter-u.svg @@ -15,6 +15,6 @@ unicode: "f477" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-v.svg b/icons/outline/hexagon-letter-v.svg index b83ce6179..2948da18c 100644 --- a/icons/outline/hexagon-letter-v.svg +++ b/icons/outline/hexagon-letter-v.svg @@ -15,6 +15,6 @@ unicode: "f4b3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-w.svg b/icons/outline/hexagon-letter-w.svg index 8a77382b6..42bd24232 100644 --- a/icons/outline/hexagon-letter-w.svg +++ b/icons/outline/hexagon-letter-w.svg @@ -15,6 +15,6 @@ unicode: "f478" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-x.svg b/icons/outline/hexagon-letter-x.svg index 26a98773f..39df4a8f0 100644 --- a/icons/outline/hexagon-letter-x.svg +++ b/icons/outline/hexagon-letter-x.svg @@ -15,7 +15,7 @@ unicode: "f479" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-y.svg b/icons/outline/hexagon-letter-y.svg index 407d2714d..3090bf8b4 100644 --- a/icons/outline/hexagon-letter-y.svg +++ b/icons/outline/hexagon-letter-y.svg @@ -15,7 +15,7 @@ unicode: "f47a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-letter-z.svg b/icons/outline/hexagon-letter-z.svg index 0661fc371..731f50a32 100644 --- a/icons/outline/hexagon-letter-z.svg +++ b/icons/outline/hexagon-letter-z.svg @@ -15,6 +15,6 @@ unicode: "f47b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-minus.svg b/icons/outline/hexagon-minus.svg index 55a104243..06474ba6e 100644 --- a/icons/outline/hexagon-minus.svg +++ b/icons/outline/hexagon-minus.svg @@ -15,6 +15,6 @@ unicode: "fc8f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-0.svg b/icons/outline/hexagon-number-0.svg index 5905f8e29..e8b6e8177 100644 --- a/icons/outline/hexagon-number-0.svg +++ b/icons/outline/hexagon-number-0.svg @@ -15,6 +15,6 @@ unicode: "f459" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hexagon-number-1.svg b/icons/outline/hexagon-number-1.svg index c8543d757..11736429d 100644 --- a/icons/outline/hexagon-number-1.svg +++ b/icons/outline/hexagon-number-1.svg @@ -15,6 +15,6 @@ unicode: "f45a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-2.svg b/icons/outline/hexagon-number-2.svg index 775a0531d..59ba488b3 100644 --- a/icons/outline/hexagon-number-2.svg +++ b/icons/outline/hexagon-number-2.svg @@ -15,6 +15,6 @@ unicode: "f45b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-3.svg b/icons/outline/hexagon-number-3.svg index 044ce40ac..49c3ff0df 100644 --- a/icons/outline/hexagon-number-3.svg +++ b/icons/outline/hexagon-number-3.svg @@ -15,6 +15,6 @@ unicode: "f45c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-4.svg b/icons/outline/hexagon-number-4.svg index 540628b0b..d555421af 100644 --- a/icons/outline/hexagon-number-4.svg +++ b/icons/outline/hexagon-number-4.svg @@ -15,7 +15,7 @@ unicode: "f45d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-5.svg b/icons/outline/hexagon-number-5.svg index 993cecf3f..7d33814ad 100644 --- a/icons/outline/hexagon-number-5.svg +++ b/icons/outline/hexagon-number-5.svg @@ -15,6 +15,6 @@ unicode: "f45e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-6.svg b/icons/outline/hexagon-number-6.svg index 001cb0b35..5f34c9f1d 100644 --- a/icons/outline/hexagon-number-6.svg +++ b/icons/outline/hexagon-number-6.svg @@ -15,6 +15,6 @@ unicode: "f45f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-7.svg b/icons/outline/hexagon-number-7.svg index 75b7dd0eb..9fa62b435 100644 --- a/icons/outline/hexagon-number-7.svg +++ b/icons/outline/hexagon-number-7.svg @@ -15,6 +15,6 @@ unicode: "f460" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-8.svg b/icons/outline/hexagon-number-8.svg index 524558464..5f66e026c 100644 --- a/icons/outline/hexagon-number-8.svg +++ b/icons/outline/hexagon-number-8.svg @@ -15,6 +15,6 @@ unicode: "f461" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-number-9.svg b/icons/outline/hexagon-number-9.svg index a9bee91ce..da49a79c3 100644 --- a/icons/outline/hexagon-number-9.svg +++ b/icons/outline/hexagon-number-9.svg @@ -15,6 +15,6 @@ unicode: "f462" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon-plus.svg b/icons/outline/hexagon-plus.svg index 9bca1d9a9..9677f8adf 100644 --- a/icons/outline/hexagon-plus.svg +++ b/icons/outline/hexagon-plus.svg @@ -15,7 +15,7 @@ unicode: "fc45" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagon.svg b/icons/outline/hexagon.svg index 3fd53c902..e7f22a9b6 100644 --- a/icons/outline/hexagon.svg +++ b/icons/outline/hexagon.svg @@ -15,5 +15,5 @@ unicode: "ec02" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagonal-prism.svg b/icons/outline/hexagonal-prism.svg index ea5d43de2..9f42ed22b 100644 --- a/icons/outline/hexagonal-prism.svg +++ b/icons/outline/hexagonal-prism.svg @@ -18,5 +18,5 @@ unicode: "faa5" - + diff --git a/icons/outline/hexagonal-pyramid.svg b/icons/outline/hexagonal-pyramid.svg index 65fac3bf0..368b1538b 100644 --- a/icons/outline/hexagonal-pyramid.svg +++ b/icons/outline/hexagonal-pyramid.svg @@ -15,7 +15,7 @@ unicode: "faa8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagons-off.svg b/icons/outline/hexagons-off.svg index f07e2bd24..fa58922b0 100644 --- a/icons/outline/hexagons-off.svg +++ b/icons/outline/hexagons-off.svg @@ -15,7 +15,7 @@ unicode: "f3f9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hexagons.svg b/icons/outline/hexagons.svg index 74d5538fb..ab2623af8 100644 --- a/icons/outline/hexagons.svg +++ b/icons/outline/hexagons.svg @@ -15,7 +15,7 @@ unicode: "f09d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hierarchy-2.svg b/icons/outline/hierarchy-2.svg index d5f5595f1..fde247e24 100644 --- a/icons/outline/hierarchy-2.svg +++ b/icons/outline/hierarchy-2.svg @@ -15,9 +15,9 @@ unicode: "ee9d" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/hierarchy-3.svg b/icons/outline/hierarchy-3.svg index deb9c4653..c983d7449 100644 --- a/icons/outline/hierarchy-3.svg +++ b/icons/outline/hierarchy-3.svg @@ -15,12 +15,12 @@ unicode: "f289" stroke-linecap="round" stroke-linejoin="round" > - - - - - - + + + + + + diff --git a/icons/outline/hierarchy-off.svg b/icons/outline/hierarchy-off.svg index 6066bc088..4b4387e57 100644 --- a/icons/outline/hierarchy-off.svg +++ b/icons/outline/hierarchy-off.svg @@ -15,8 +15,8 @@ unicode: "f3fa" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hierarchy.svg b/icons/outline/hierarchy.svg index acae0eab3..ecc44aeea 100644 --- a/icons/outline/hierarchy.svg +++ b/icons/outline/hierarchy.svg @@ -15,9 +15,9 @@ unicode: "ee9e" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/highlight.svg b/icons/outline/highlight.svg index 89c56c3eb..b154890d1 100644 --- a/icons/outline/highlight.svg +++ b/icons/outline/highlight.svg @@ -18,5 +18,5 @@ unicode: "ef3f" - + diff --git a/icons/outline/home-2.svg b/icons/outline/home-2.svg index f1611f582..582c8c3b3 100644 --- a/icons/outline/home-2.svg +++ b/icons/outline/home-2.svg @@ -17,5 +17,5 @@ unicode: "eac0" > - + diff --git a/icons/outline/home-cancel.svg b/icons/outline/home-cancel.svg index 9437f2a2b..05fdd1640 100644 --- a/icons/outline/home-cancel.svg +++ b/icons/outline/home-cancel.svg @@ -15,7 +15,7 @@ unicode: "f350" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/home-cog.svg b/icons/outline/home-cog.svg index deaf43877..c2934ac5f 100644 --- a/icons/outline/home-cog.svg +++ b/icons/outline/home-cog.svg @@ -17,7 +17,7 @@ unicode: "f338" > - + diff --git a/icons/outline/home-dot.svg b/icons/outline/home-dot.svg index 79a028337..a517f9345 100644 --- a/icons/outline/home-dot.svg +++ b/icons/outline/home-dot.svg @@ -16,6 +16,6 @@ unicode: "f33a" stroke-linejoin="round" > - + diff --git a/icons/outline/home-eco.svg b/icons/outline/home-eco.svg index 1e4ffa7b6..bfdc0770e 100644 --- a/icons/outline/home-eco.svg +++ b/icons/outline/home-eco.svg @@ -18,5 +18,5 @@ unicode: "f351" - + diff --git a/icons/outline/home-edit.svg b/icons/outline/home-edit.svg index e355b6851..996c9f92f 100644 --- a/icons/outline/home-edit.svg +++ b/icons/outline/home-edit.svg @@ -17,5 +17,5 @@ unicode: "f352" > - + diff --git a/icons/outline/home-hand.svg b/icons/outline/home-hand.svg index 473038db2..22972e5f8 100644 --- a/icons/outline/home-hand.svg +++ b/icons/outline/home-hand.svg @@ -17,5 +17,5 @@ unicode: "f504" > - + diff --git a/icons/outline/home-heart.svg b/icons/outline/home-heart.svg index 2f906545b..dfb26fd3e 100644 --- a/icons/outline/home-heart.svg +++ b/icons/outline/home-heart.svg @@ -17,5 +17,5 @@ unicode: "f353" > - + diff --git a/icons/outline/home-link.svg b/icons/outline/home-link.svg index 3ea848ea3..1d2a0a630 100644 --- a/icons/outline/home-link.svg +++ b/icons/outline/home-link.svg @@ -17,8 +17,8 @@ unicode: "f354" > - - - + + + diff --git a/icons/outline/home-ribbon.svg b/icons/outline/home-ribbon.svg index ba472510d..92d9897fb 100644 --- a/icons/outline/home-ribbon.svg +++ b/icons/outline/home-ribbon.svg @@ -15,7 +15,7 @@ unicode: "f355" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/home-search.svg b/icons/outline/home-search.svg index 3ba72c652..c4c26c0a7 100644 --- a/icons/outline/home-search.svg +++ b/icons/outline/home-search.svg @@ -17,6 +17,6 @@ unicode: "f341" > - + diff --git a/icons/outline/home-shield.svg b/icons/outline/home-shield.svg index 2b145cf0b..e9907e826 100644 --- a/icons/outline/home-shield.svg +++ b/icons/outline/home-shield.svg @@ -17,5 +17,5 @@ unicode: "f343" > - + diff --git a/icons/outline/home-star.svg b/icons/outline/home-star.svg index bf5df4798..3aa112d15 100644 --- a/icons/outline/home-star.svg +++ b/icons/outline/home-star.svg @@ -17,5 +17,5 @@ unicode: "f344" > - + diff --git a/icons/outline/horse.svg b/icons/outline/horse.svg index 1982d49ca..43b9cae5d 100644 --- a/icons/outline/horse.svg +++ b/icons/outline/horse.svg @@ -15,6 +15,6 @@ unicode: "fc46" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/horseshoe.svg b/icons/outline/horseshoe.svg index c1da4a78d..364d7c9ae 100644 --- a/icons/outline/horseshoe.svg +++ b/icons/outline/horseshoe.svg @@ -15,5 +15,5 @@ unicode: "fcb7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hospital.svg b/icons/outline/hospital.svg index 7f794133f..5c548e787 100644 --- a/icons/outline/hospital.svg +++ b/icons/outline/hospital.svg @@ -15,7 +15,7 @@ unicode: "fd59" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hotel-service.svg b/icons/outline/hotel-service.svg index 08fc34afb..f2b3b5a5f 100644 --- a/icons/outline/hotel-service.svg +++ b/icons/outline/hotel-service.svg @@ -15,5 +15,5 @@ unicode: "ef80" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/hourglass-empty.svg b/icons/outline/hourglass-empty.svg index 0922c9f25..f14436088 100644 --- a/icons/outline/hourglass-empty.svg +++ b/icons/outline/hourglass-empty.svg @@ -15,6 +15,6 @@ unicode: "f146" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hourglass-high.svg b/icons/outline/hourglass-high.svg index b861a8afa..2a0e6eb9b 100644 --- a/icons/outline/hourglass-high.svg +++ b/icons/outline/hourglass-high.svg @@ -16,6 +16,6 @@ unicode: "f092" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hourglass-low.svg b/icons/outline/hourglass-low.svg index 228b77f76..fea9b0485 100644 --- a/icons/outline/hourglass-low.svg +++ b/icons/outline/hourglass-low.svg @@ -16,6 +16,6 @@ unicode: "f093" stroke-linejoin="round" > - - + + diff --git a/icons/outline/hourglass.svg b/icons/outline/hourglass.svg index 0ca948efe..312e01ba0 100644 --- a/icons/outline/hourglass.svg +++ b/icons/outline/hourglass.svg @@ -17,6 +17,6 @@ unicode: "ef93" > - - + + diff --git a/icons/outline/http-delete-off.svg b/icons/outline/http-delete-off.svg index 5a8888750..370049e0e 100644 --- a/icons/outline/http-delete-off.svg +++ b/icons/outline/http-delete-off.svg @@ -15,7 +15,7 @@ version: "3.26" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/http-delete.svg b/icons/outline/http-delete.svg index 071dd42ea..56b2bc0a6 100644 --- a/icons/outline/http-delete.svg +++ b/icons/outline/http-delete.svg @@ -15,7 +15,7 @@ unicode: "fa29" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ice-cream-2.svg b/icons/outline/ice-cream-2.svg index d9bd3fdfc..fb1d9d886 100644 --- a/icons/outline/ice-cream-2.svg +++ b/icons/outline/ice-cream-2.svg @@ -16,5 +16,5 @@ unicode: "ee9f" stroke-linejoin="round" > - + diff --git a/icons/outline/ice-cream.svg b/icons/outline/ice-cream.svg index b92dd031f..78cd41cae 100644 --- a/icons/outline/ice-cream.svg +++ b/icons/outline/ice-cream.svg @@ -16,7 +16,7 @@ unicode: "eac2" stroke-linejoin="round" > - + diff --git a/icons/outline/ice-skating.svg b/icons/outline/ice-skating.svg index ec56a0409..db480e1a1 100644 --- a/icons/outline/ice-skating.svg +++ b/icons/outline/ice-skating.svg @@ -15,7 +15,7 @@ unicode: "efcb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/icons-off.svg b/icons/outline/icons-off.svg index aa86ddc9e..eadff1938 100644 --- a/icons/outline/icons-off.svg +++ b/icons/outline/icons-off.svg @@ -16,7 +16,7 @@ unicode: "f3fc" stroke-linejoin="round" > - + diff --git a/icons/outline/icons.svg b/icons/outline/icons.svg index 3e7870294..3589ee922 100644 --- a/icons/outline/icons.svg +++ b/icons/outline/icons.svg @@ -15,9 +15,9 @@ unicode: "f1d4" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/id-badge-2.svg b/icons/outline/id-badge-2.svg index 4ba2013f1..93dd55a14 100644 --- a/icons/outline/id-badge-2.svg +++ b/icons/outline/id-badge-2.svg @@ -15,9 +15,9 @@ unicode: "f076" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/id-badge.svg b/icons/outline/id-badge.svg index 346bfd9ae..e672164de 100644 --- a/icons/outline/id-badge.svg +++ b/icons/outline/id-badge.svg @@ -15,8 +15,8 @@ unicode: "eff7" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/id.svg b/icons/outline/id.svg index 043ef30c5..f18da405f 100644 --- a/icons/outline/id.svg +++ b/icons/outline/id.svg @@ -15,8 +15,8 @@ unicode: "eac3" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/ikosaedr.svg b/icons/outline/ikosaedr.svg index a3907f10b..bc5976ab2 100644 --- a/icons/outline/ikosaedr.svg +++ b/icons/outline/ikosaedr.svg @@ -21,6 +21,6 @@ version: "3.3" - + diff --git a/icons/outline/image-in-picture.svg b/icons/outline/image-in-picture.svg index 2ffded7af..deb82a1da 100644 --- a/icons/outline/image-in-picture.svg +++ b/icons/outline/image-in-picture.svg @@ -16,7 +16,7 @@ unicode: "fd9f" stroke-linejoin="round" > - + diff --git a/icons/outline/inbox.svg b/icons/outline/inbox.svg index c5fcc6c0c..9356470b1 100644 --- a/icons/outline/inbox.svg +++ b/icons/outline/inbox.svg @@ -15,6 +15,6 @@ unicode: "eac4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/info-hexagon.svg b/icons/outline/info-hexagon.svg index f99b78039..e506578ed 100644 --- a/icons/outline/info-hexagon.svg +++ b/icons/outline/info-hexagon.svg @@ -15,7 +15,7 @@ unicode: "f7aa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/info-octagon.svg b/icons/outline/info-octagon.svg index e59b7a86a..786d130be 100644 --- a/icons/outline/info-octagon.svg +++ b/icons/outline/info-octagon.svg @@ -15,7 +15,7 @@ unicode: "f7ab" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/info-square-rounded.svg b/icons/outline/info-square-rounded.svg index b486d3411..6f9bb7166 100644 --- a/icons/outline/info-square-rounded.svg +++ b/icons/outline/info-square-rounded.svg @@ -17,5 +17,5 @@ unicode: "f635" > - + diff --git a/icons/outline/info-square.svg b/icons/outline/info-square.svg index 39fe9353f..1d73f0adc 100644 --- a/icons/outline/info-square.svg +++ b/icons/outline/info-square.svg @@ -16,6 +16,6 @@ unicode: "eac6" stroke-linejoin="round" > - + diff --git a/icons/outline/info-triangle.svg b/icons/outline/info-triangle.svg index 2ebd9d6bf..9fe6dc8f8 100644 --- a/icons/outline/info-triangle.svg +++ b/icons/outline/info-triangle.svg @@ -15,7 +15,7 @@ unicode: "f923" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-bottom-left.svg b/icons/outline/inner-shadow-bottom-left.svg index 8461c5a40..d1928edcd 100644 --- a/icons/outline/inner-shadow-bottom-left.svg +++ b/icons/outline/inner-shadow-bottom-left.svg @@ -15,6 +15,6 @@ unicode: "f51e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-bottom-right.svg b/icons/outline/inner-shadow-bottom-right.svg index 5e5934d5d..8451b71ad 100644 --- a/icons/outline/inner-shadow-bottom-right.svg +++ b/icons/outline/inner-shadow-bottom-right.svg @@ -15,6 +15,6 @@ unicode: "f51f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-bottom.svg b/icons/outline/inner-shadow-bottom.svg index 52e25a9f2..82617efb0 100644 --- a/icons/outline/inner-shadow-bottom.svg +++ b/icons/outline/inner-shadow-bottom.svg @@ -15,6 +15,6 @@ unicode: "f520" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-left.svg b/icons/outline/inner-shadow-left.svg index 25911a53f..15cc1fe43 100644 --- a/icons/outline/inner-shadow-left.svg +++ b/icons/outline/inner-shadow-left.svg @@ -15,6 +15,6 @@ unicode: "f521" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-right.svg b/icons/outline/inner-shadow-right.svg index d32269d70..1b934a3f9 100644 --- a/icons/outline/inner-shadow-right.svg +++ b/icons/outline/inner-shadow-right.svg @@ -15,6 +15,6 @@ unicode: "f522" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-top-left.svg b/icons/outline/inner-shadow-top-left.svg index 50741ee57..75ce93889 100644 --- a/icons/outline/inner-shadow-top-left.svg +++ b/icons/outline/inner-shadow-top-left.svg @@ -15,6 +15,6 @@ unicode: "f523" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-top-right.svg b/icons/outline/inner-shadow-top-right.svg index 97759eba7..112008c72 100644 --- a/icons/outline/inner-shadow-top-right.svg +++ b/icons/outline/inner-shadow-top-right.svg @@ -15,6 +15,6 @@ unicode: "f524" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/inner-shadow-top.svg b/icons/outline/inner-shadow-top.svg index 6bc8f7bbc..3755114c0 100644 --- a/icons/outline/inner-shadow-top.svg +++ b/icons/outline/inner-shadow-top.svg @@ -15,6 +15,6 @@ unicode: "f525" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/input-search.svg b/icons/outline/input-search.svg index 9ef858233..6e2b4a6e0 100644 --- a/icons/outline/input-search.svg +++ b/icons/outline/input-search.svg @@ -16,6 +16,6 @@ unicode: "f2a2" stroke-linejoin="round" > - + diff --git a/icons/outline/irregular-polyhedron.svg b/icons/outline/irregular-polyhedron.svg index 53655a217..31c45946d 100644 --- a/icons/outline/irregular-polyhedron.svg +++ b/icons/outline/irregular-polyhedron.svg @@ -15,7 +15,7 @@ unicode: "faab" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/jacket.svg b/icons/outline/jacket.svg index 2bd805e37..affcf9d2e 100644 --- a/icons/outline/jacket.svg +++ b/icons/outline/jacket.svg @@ -16,7 +16,7 @@ unicode: "f661" stroke-linejoin="round" > - + diff --git a/icons/outline/jetpack.svg b/icons/outline/jetpack.svg index fd1eb1de3..d848522c5 100644 --- a/icons/outline/jetpack.svg +++ b/icons/outline/jetpack.svg @@ -15,8 +15,8 @@ unicode: "f581" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/jewish-star.svg b/icons/outline/jewish-star.svg index bf922a0cd..d89ae56af 100644 --- a/icons/outline/jewish-star.svg +++ b/icons/outline/jewish-star.svg @@ -15,5 +15,5 @@ unicode: "f3ff" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/joker.svg b/icons/outline/joker.svg index b7f488acc..63d308c76 100644 --- a/icons/outline/joker.svg +++ b/icons/outline/joker.svg @@ -15,7 +15,7 @@ version: "3.18" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/json.svg b/icons/outline/json.svg index 9775a88d6..2f3d80eed 100644 --- a/icons/outline/json.svg +++ b/icons/outline/json.svg @@ -16,7 +16,7 @@ unicode: "f7b2" stroke-linejoin="round" > - + diff --git a/icons/outline/jump-rope.svg b/icons/outline/jump-rope.svg index 35d18fbb3..42e520a99 100644 --- a/icons/outline/jump-rope.svg +++ b/icons/outline/jump-rope.svg @@ -16,6 +16,6 @@ unicode: "ed8f" stroke-linejoin="round" > - - + + diff --git a/icons/outline/karate.svg b/icons/outline/karate.svg index 9548f5310..d36a8f4ca 100644 --- a/icons/outline/karate.svg +++ b/icons/outline/karate.svg @@ -15,7 +15,7 @@ unicode: "ed32" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/kayak.svg b/icons/outline/kayak.svg index f2ee9d6f9..af5763a5b 100644 --- a/icons/outline/kayak.svg +++ b/icons/outline/kayak.svg @@ -15,10 +15,10 @@ unicode: "f1d6" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/key.svg b/icons/outline/key.svg index c2006fa9e..601fb34e6 100644 --- a/icons/outline/key.svg +++ b/icons/outline/key.svg @@ -15,6 +15,6 @@ unicode: "eac7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyboard-hide.svg b/icons/outline/keyboard-hide.svg index f1abd5637..c60cbd1f2 100644 --- a/icons/outline/keyboard-hide.svg +++ b/icons/outline/keyboard-hide.svg @@ -15,7 +15,7 @@ unicode: "ec7e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyboard-show.svg b/icons/outline/keyboard-show.svg index 6397ef66d..a2159589c 100644 --- a/icons/outline/keyboard-show.svg +++ b/icons/outline/keyboard-show.svg @@ -15,7 +15,7 @@ unicode: "ec7f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyboard.svg b/icons/outline/keyboard.svg index 3db54e4a1..d1b52ed77 100644 --- a/icons/outline/keyboard.svg +++ b/icons/outline/keyboard.svg @@ -15,7 +15,7 @@ unicode: "ebd6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyframe-align-center.svg b/icons/outline/keyframe-align-center.svg index 4b41aae5a..9b7d83835 100644 --- a/icons/outline/keyframe-align-center.svg +++ b/icons/outline/keyframe-align-center.svg @@ -16,7 +16,7 @@ unicode: "f582" stroke-linejoin="round" > - + diff --git a/icons/outline/keyframe-align-horizontal.svg b/icons/outline/keyframe-align-horizontal.svg index a7385db45..46215f8ca 100644 --- a/icons/outline/keyframe-align-horizontal.svg +++ b/icons/outline/keyframe-align-horizontal.svg @@ -15,7 +15,7 @@ unicode: "f583" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyframe-align-vertical.svg b/icons/outline/keyframe-align-vertical.svg index 3a097f8e4..07bfa034a 100644 --- a/icons/outline/keyframe-align-vertical.svg +++ b/icons/outline/keyframe-align-vertical.svg @@ -16,6 +16,6 @@ unicode: "f584" stroke-linejoin="round" > - + diff --git a/icons/outline/keyframe.svg b/icons/outline/keyframe.svg index 9fbea8714..ee67c19b9 100644 --- a/icons/outline/keyframe.svg +++ b/icons/outline/keyframe.svg @@ -15,5 +15,5 @@ unicode: "f576" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/keyframes.svg b/icons/outline/keyframes.svg index 71a401b66..7932d9ae2 100644 --- a/icons/outline/keyframes.svg +++ b/icons/outline/keyframes.svg @@ -15,7 +15,7 @@ unicode: "f585" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ladle.svg b/icons/outline/ladle.svg index 1e0271542..11a341073 100644 --- a/icons/outline/ladle.svg +++ b/icons/outline/ladle.svg @@ -16,5 +16,5 @@ unicode: "fc14" stroke-linejoin="round" > - + diff --git a/icons/outline/lamp-2.svg b/icons/outline/lamp-2.svg index 56ead2067..b433182a7 100644 --- a/icons/outline/lamp-2.svg +++ b/icons/outline/lamp-2.svg @@ -17,7 +17,7 @@ unicode: "f09e" > - + diff --git a/icons/outline/lamp.svg b/icons/outline/lamp.svg index 7754dd103..e3a9ff7bb 100644 --- a/icons/outline/lamp.svg +++ b/icons/outline/lamp.svg @@ -17,5 +17,5 @@ unicode: "efab" > - + diff --git a/icons/outline/lasso-off.svg b/icons/outline/lasso-off.svg index 588147b95..492b19820 100644 --- a/icons/outline/lasso-off.svg +++ b/icons/outline/lasso-off.svg @@ -16,7 +16,7 @@ unicode: "f14f" stroke-linejoin="round" > - + diff --git a/icons/outline/lasso-polygon.svg b/icons/outline/lasso-polygon.svg index 9b450937b..5bcf128be 100644 --- a/icons/outline/lasso-polygon.svg +++ b/icons/outline/lasso-polygon.svg @@ -16,6 +16,6 @@ unicode: "f388" stroke-linejoin="round" > - + diff --git a/icons/outline/lasso.svg b/icons/outline/lasso.svg index 71dfa342e..8d0598f28 100644 --- a/icons/outline/lasso.svg +++ b/icons/outline/lasso.svg @@ -16,6 +16,6 @@ unicode: "efac" stroke-linejoin="round" > - + diff --git a/icons/outline/layers-intersect-2.svg b/icons/outline/layers-intersect-2.svg index 60bdb2268..e0e05f14d 100644 --- a/icons/outline/layers-intersect-2.svg +++ b/icons/outline/layers-intersect-2.svg @@ -15,7 +15,7 @@ unicode: "eff8" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/layers-intersect.svg b/icons/outline/layers-intersect.svg index c6305d86a..53976a090 100644 --- a/icons/outline/layers-intersect.svg +++ b/icons/outline/layers-intersect.svg @@ -15,6 +15,6 @@ unicode: "eac9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/layers-selected-bottom.svg b/icons/outline/layers-selected-bottom.svg index 7252dfc19..07045780d 100644 --- a/icons/outline/layers-selected-bottom.svg +++ b/icons/outline/layers-selected-bottom.svg @@ -16,8 +16,8 @@ unicode: "feaa" stroke-linejoin="round" > - + - + diff --git a/icons/outline/layers-selected.svg b/icons/outline/layers-selected.svg index 7a03c0157..882d601ae 100644 --- a/icons/outline/layers-selected.svg +++ b/icons/outline/layers-selected.svg @@ -16,8 +16,8 @@ version: "3.1" stroke-linejoin="round" > - + - + diff --git a/icons/outline/layers-subtract.svg b/icons/outline/layers-subtract.svg index 2c4efabeb..be5eb9e8d 100644 --- a/icons/outline/layers-subtract.svg +++ b/icons/outline/layers-subtract.svg @@ -15,6 +15,6 @@ unicode: "eaca" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-2.svg b/icons/outline/layout-2.svg index d91fd21d8..32d833e40 100644 --- a/icons/outline/layout-2.svg +++ b/icons/outline/layout-2.svg @@ -15,8 +15,8 @@ unicode: "eacc" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/layout-align-bottom.svg b/icons/outline/layout-align-bottom.svg index 3d77e2d61..8a237d2f9 100644 --- a/icons/outline/layout-align-bottom.svg +++ b/icons/outline/layout-align-bottom.svg @@ -16,5 +16,5 @@ unicode: "eacd" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-align-center.svg b/icons/outline/layout-align-center.svg index a5f54ca9b..5f7a5a513 100644 --- a/icons/outline/layout-align-center.svg +++ b/icons/outline/layout-align-center.svg @@ -17,5 +17,5 @@ unicode: "eace" > - + diff --git a/icons/outline/layout-align-left.svg b/icons/outline/layout-align-left.svg index 86fd8e19b..b8888f7cd 100644 --- a/icons/outline/layout-align-left.svg +++ b/icons/outline/layout-align-left.svg @@ -16,5 +16,5 @@ unicode: "eacf" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-align-middle.svg b/icons/outline/layout-align-middle.svg index e7eb0dd68..1433c2ea1 100644 --- a/icons/outline/layout-align-middle.svg +++ b/icons/outline/layout-align-middle.svg @@ -17,5 +17,5 @@ unicode: "ead0" > - + diff --git a/icons/outline/layout-align-right.svg b/icons/outline/layout-align-right.svg index b44735d86..aa6877db1 100644 --- a/icons/outline/layout-align-right.svg +++ b/icons/outline/layout-align-right.svg @@ -16,5 +16,5 @@ unicode: "ead1" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-align-top.svg b/icons/outline/layout-align-top.svg index 983040a9a..057a8c33a 100644 --- a/icons/outline/layout-align-top.svg +++ b/icons/outline/layout-align-top.svg @@ -16,5 +16,5 @@ unicode: "ead2" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-board-split.svg b/icons/outline/layout-board-split.svg index b74aecb62..09ba26c74 100644 --- a/icons/outline/layout-board-split.svg +++ b/icons/outline/layout-board-split.svg @@ -15,7 +15,7 @@ unicode: "ef94" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-board.svg b/icons/outline/layout-board.svg index ed2cdc9a6..62763bf5e 100644 --- a/icons/outline/layout-board.svg +++ b/icons/outline/layout-board.svg @@ -15,7 +15,7 @@ unicode: "ef95" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-bottombar-collapse.svg b/icons/outline/layout-bottombar-collapse.svg index cea2736df..587139a0f 100644 --- a/icons/outline/layout-bottombar-collapse.svg +++ b/icons/outline/layout-bottombar-collapse.svg @@ -15,7 +15,7 @@ unicode: "f28b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-bottombar-expand.svg b/icons/outline/layout-bottombar-expand.svg index b4868ca66..6bee00b59 100644 --- a/icons/outline/layout-bottombar-expand.svg +++ b/icons/outline/layout-bottombar-expand.svg @@ -15,7 +15,7 @@ unicode: "f28c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-bottombar-inactive.svg b/icons/outline/layout-bottombar-inactive.svg index 8dc8f3cfb..cebcd01f3 100644 --- a/icons/outline/layout-bottombar-inactive.svg +++ b/icons/outline/layout-bottombar-inactive.svg @@ -15,7 +15,7 @@ unicode: "fd45" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-bottombar.svg b/icons/outline/layout-bottombar.svg index e4303691d..bfd23e879 100644 --- a/icons/outline/layout-bottombar.svg +++ b/icons/outline/layout-bottombar.svg @@ -15,6 +15,6 @@ unicode: "ead3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-cards.svg b/icons/outline/layout-cards.svg index f99dfb55b..bc08e0274 100644 --- a/icons/outline/layout-cards.svg +++ b/icons/outline/layout-cards.svg @@ -15,6 +15,6 @@ unicode: "ec13" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/layout-collage.svg b/icons/outline/layout-collage.svg index 0e9232a7f..15c8da0c1 100644 --- a/icons/outline/layout-collage.svg +++ b/icons/outline/layout-collage.svg @@ -15,7 +15,7 @@ unicode: "f389" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-columns.svg b/icons/outline/layout-columns.svg index 348337c2a..55cc75f96 100644 --- a/icons/outline/layout-columns.svg +++ b/icons/outline/layout-columns.svg @@ -15,6 +15,6 @@ unicode: "ead4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-distribute-horizontal.svg b/icons/outline/layout-distribute-horizontal.svg index f64d8a02f..bef9e8d2e 100644 --- a/icons/outline/layout-distribute-horizontal.svg +++ b/icons/outline/layout-distribute-horizontal.svg @@ -17,5 +17,5 @@ unicode: "ead5" > - + diff --git a/icons/outline/layout-distribute-vertical.svg b/icons/outline/layout-distribute-vertical.svg index a5c415eb0..6cc464443 100644 --- a/icons/outline/layout-distribute-vertical.svg +++ b/icons/outline/layout-distribute-vertical.svg @@ -17,5 +17,5 @@ unicode: "ead6" > - + diff --git a/icons/outline/layout-grid-add.svg b/icons/outline/layout-grid-add.svg index bd241176f..b55837f2f 100644 --- a/icons/outline/layout-grid-add.svg +++ b/icons/outline/layout-grid-add.svg @@ -15,8 +15,8 @@ unicode: "edb9" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/layout-grid-remove.svg b/icons/outline/layout-grid-remove.svg index 4daf9b0c5..b382130cc 100644 --- a/icons/outline/layout-grid-remove.svg +++ b/icons/outline/layout-grid-remove.svg @@ -15,8 +15,8 @@ unicode: "fa7d" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/layout-grid.svg b/icons/outline/layout-grid.svg index 2dfc36e15..15f833819 100644 --- a/icons/outline/layout-grid.svg +++ b/icons/outline/layout-grid.svg @@ -15,8 +15,8 @@ unicode: "edba" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/layout-kanban.svg b/icons/outline/layout-kanban.svg index 9f7db459e..5596ebf53 100644 --- a/icons/outline/layout-kanban.svg +++ b/icons/outline/layout-kanban.svg @@ -17,6 +17,6 @@ unicode: "ec3f" > - - + + diff --git a/icons/outline/layout-list.svg b/icons/outline/layout-list.svg index 5982153d6..a3db3af00 100644 --- a/icons/outline/layout-list.svg +++ b/icons/outline/layout-list.svg @@ -15,6 +15,6 @@ unicode: "ec14" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/layout-navbar-collapse.svg b/icons/outline/layout-navbar-collapse.svg index f63625d24..c40370885 100644 --- a/icons/outline/layout-navbar-collapse.svg +++ b/icons/outline/layout-navbar-collapse.svg @@ -15,7 +15,7 @@ unicode: "f28d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-navbar-expand.svg b/icons/outline/layout-navbar-expand.svg index 29d2a3666..682f7709e 100644 --- a/icons/outline/layout-navbar-expand.svg +++ b/icons/outline/layout-navbar-expand.svg @@ -15,7 +15,7 @@ unicode: "f28e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-navbar-inactive.svg b/icons/outline/layout-navbar-inactive.svg index c870d9a68..e9232d459 100644 --- a/icons/outline/layout-navbar-inactive.svg +++ b/icons/outline/layout-navbar-inactive.svg @@ -15,7 +15,7 @@ unicode: "fd46" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-navbar.svg b/icons/outline/layout-navbar.svg index d2a7bf0c0..cb26d539e 100644 --- a/icons/outline/layout-navbar.svg +++ b/icons/outline/layout-navbar.svg @@ -15,6 +15,6 @@ unicode: "ead7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-off.svg b/icons/outline/layout-off.svg index d64a9b129..41800f5cb 100644 --- a/icons/outline/layout-off.svg +++ b/icons/outline/layout-off.svg @@ -16,7 +16,7 @@ unicode: "f151" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-rows.svg b/icons/outline/layout-rows.svg index 139a8b480..2d66236ab 100644 --- a/icons/outline/layout-rows.svg +++ b/icons/outline/layout-rows.svg @@ -15,6 +15,6 @@ unicode: "ead8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-inactive.svg b/icons/outline/layout-sidebar-inactive.svg index 7828487a7..db7ce9a03 100644 --- a/icons/outline/layout-sidebar-inactive.svg +++ b/icons/outline/layout-sidebar-inactive.svg @@ -15,7 +15,7 @@ unicode: "fd47" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-left-collapse.svg b/icons/outline/layout-sidebar-left-collapse.svg index 2ecd209db..797a2a608 100644 --- a/icons/outline/layout-sidebar-left-collapse.svg +++ b/icons/outline/layout-sidebar-left-collapse.svg @@ -15,7 +15,7 @@ unicode: "f004" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-left-expand.svg b/icons/outline/layout-sidebar-left-expand.svg index efa324caf..d672bcd57 100644 --- a/icons/outline/layout-sidebar-left-expand.svg +++ b/icons/outline/layout-sidebar-left-expand.svg @@ -15,7 +15,7 @@ unicode: "f005" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-right-collapse.svg b/icons/outline/layout-sidebar-right-collapse.svg index ea5142546..cb8264f7d 100644 --- a/icons/outline/layout-sidebar-right-collapse.svg +++ b/icons/outline/layout-sidebar-right-collapse.svg @@ -15,7 +15,7 @@ unicode: "f006" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-right-expand.svg b/icons/outline/layout-sidebar-right-expand.svg index 33192e814..79ed43074 100644 --- a/icons/outline/layout-sidebar-right-expand.svg +++ b/icons/outline/layout-sidebar-right-expand.svg @@ -15,7 +15,7 @@ unicode: "f007" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-right-inactive.svg b/icons/outline/layout-sidebar-right-inactive.svg index 600962bf8..aa4da235f 100644 --- a/icons/outline/layout-sidebar-right-inactive.svg +++ b/icons/outline/layout-sidebar-right-inactive.svg @@ -15,7 +15,7 @@ unicode: "fd48" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar-right.svg b/icons/outline/layout-sidebar-right.svg index b67521d5e..3acce8618 100644 --- a/icons/outline/layout-sidebar-right.svg +++ b/icons/outline/layout-sidebar-right.svg @@ -15,6 +15,6 @@ unicode: "ead9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout-sidebar.svg b/icons/outline/layout-sidebar.svg index e41991f10..918328325 100644 --- a/icons/outline/layout-sidebar.svg +++ b/icons/outline/layout-sidebar.svg @@ -15,6 +15,6 @@ unicode: "eada" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/layout.svg b/icons/outline/layout.svg index 9ef0f5881..17c38a17a 100644 --- a/icons/outline/layout.svg +++ b/icons/outline/layout.svg @@ -15,7 +15,7 @@ unicode: "eadb" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/leaf.svg b/icons/outline/leaf.svg index ea831ce85..7836cac99 100644 --- a/icons/outline/leaf.svg +++ b/icons/outline/leaf.svg @@ -16,5 +16,5 @@ unicode: "ed4f" stroke-linejoin="round" > - + diff --git a/icons/outline/lemon-2.svg b/icons/outline/lemon-2.svg index ed6a57730..2ff9b3d6a 100644 --- a/icons/outline/lemon-2.svg +++ b/icons/outline/lemon-2.svg @@ -15,5 +15,5 @@ unicode: "ef81" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-b-small.svg b/icons/outline/letter-b-small.svg index b690dfc31..e36b5cd63 100644 --- a/icons/outline/letter-b-small.svg +++ b/icons/outline/letter-b-small.svg @@ -15,5 +15,5 @@ unicode: "fcc8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-case-lower.svg b/icons/outline/letter-case-lower.svg index 870400887..d0572f9c8 100644 --- a/icons/outline/letter-case-lower.svg +++ b/icons/outline/letter-case-lower.svg @@ -15,8 +15,8 @@ unicode: "eea2" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/letter-case-toggle.svg b/icons/outline/letter-case-toggle.svg index c7496033c..540e8103e 100644 --- a/icons/outline/letter-case-toggle.svg +++ b/icons/outline/letter-case-toggle.svg @@ -15,7 +15,7 @@ unicode: "eea3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-case.svg b/icons/outline/letter-case.svg index d9fd29166..4b8758490 100644 --- a/icons/outline/letter-case.svg +++ b/icons/outline/letter-case.svg @@ -15,7 +15,7 @@ unicode: "eea5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-d-small.svg b/icons/outline/letter-d-small.svg index 55a05581f..9a671188e 100644 --- a/icons/outline/letter-d-small.svg +++ b/icons/outline/letter-d-small.svg @@ -15,5 +15,5 @@ unicode: "fcca" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-o-small.svg b/icons/outline/letter-o-small.svg index 157df7364..cb76df95b 100644 --- a/icons/outline/letter-o-small.svg +++ b/icons/outline/letter-o-small.svg @@ -15,5 +15,5 @@ unicode: "fcd5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/letter-q-small.svg b/icons/outline/letter-q-small.svg index 9248065df..d6d07890a 100644 --- a/icons/outline/letter-q-small.svg +++ b/icons/outline/letter-q-small.svg @@ -15,6 +15,6 @@ unicode: "fcd7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/library-minus.svg b/icons/outline/library-minus.svg index 04946de1c..eb9a70922 100644 --- a/icons/outline/library-minus.svg +++ b/icons/outline/library-minus.svg @@ -15,7 +15,7 @@ unicode: "fd49" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/library-photo.svg b/icons/outline/library-photo.svg index 0bb40fcfe..146b30976 100644 --- a/icons/outline/library-photo.svg +++ b/icons/outline/library-photo.svg @@ -15,7 +15,7 @@ unicode: "fd4a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/library-plus.svg b/icons/outline/library-plus.svg index c4e4edacf..1c1bafb94 100644 --- a/icons/outline/library-plus.svg +++ b/icons/outline/library-plus.svg @@ -15,7 +15,7 @@ unicode: "fd4b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/library.svg b/icons/outline/library.svg index ea5d151a2..66478650e 100644 --- a/icons/outline/library.svg +++ b/icons/outline/library.svg @@ -15,7 +15,7 @@ unicode: "fd4c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/lifebuoy.svg b/icons/outline/lifebuoy.svg index 1f7d4d167..2c0dd0ee9 100644 --- a/icons/outline/lifebuoy.svg +++ b/icons/outline/lifebuoy.svg @@ -15,8 +15,8 @@ unicode: "eadd" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/lighter.svg b/icons/outline/lighter.svg index 63f6225d0..72fa00555 100644 --- a/icons/outline/lighter.svg +++ b/icons/outline/lighter.svg @@ -15,6 +15,6 @@ unicode: "f794" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/line.svg b/icons/outline/line.svg index 108a88c37..9856b189e 100644 --- a/icons/outline/line.svg +++ b/icons/outline/line.svg @@ -15,7 +15,7 @@ unicode: "ec40" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/list-details.svg b/icons/outline/list-details.svg index c1d5002c5..5b96548fc 100644 --- a/icons/outline/list-details.svg +++ b/icons/outline/list-details.svg @@ -19,6 +19,6 @@ unicode: "ef40" - - + + diff --git a/icons/outline/list-letters.svg b/icons/outline/list-letters.svg index e7ca059d7..1976e618d 100644 --- a/icons/outline/list-letters.svg +++ b/icons/outline/list-letters.svg @@ -20,5 +20,5 @@ unicode: "fc47" - + diff --git a/icons/outline/list-search.svg b/icons/outline/list-search.svg index 625ac82e7..b15069dfa 100644 --- a/icons/outline/list-search.svg +++ b/icons/outline/list-search.svg @@ -15,7 +15,7 @@ unicode: "eea9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/live-photo.svg b/icons/outline/live-photo.svg index 8f2da17b9..b01be1fb2 100644 --- a/icons/outline/live-photo.svg +++ b/icons/outline/live-photo.svg @@ -15,8 +15,8 @@ unicode: "eadf" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/load-balancer.svg b/icons/outline/load-balancer.svg index 0b677dfb3..60806e4d4 100644 --- a/icons/outline/load-balancer.svg +++ b/icons/outline/load-balancer.svg @@ -15,8 +15,8 @@ unicode: "fa5c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/location-cancel.svg b/icons/outline/location-cancel.svg index 26922c3e6..cf9a5eb0a 100644 --- a/icons/outline/location-cancel.svg +++ b/icons/outline/location-cancel.svg @@ -16,6 +16,6 @@ unicode: "fbb0" stroke-linejoin="round" > - + diff --git a/icons/outline/location-cog.svg b/icons/outline/location-cog.svg index 89c1dd899..cd141962b 100644 --- a/icons/outline/location-cog.svg +++ b/icons/outline/location-cog.svg @@ -16,7 +16,7 @@ unicode: "fbb3" stroke-linejoin="round" > - + diff --git a/icons/outline/location-heart.svg b/icons/outline/location-heart.svg index 34ec43667..9aed1ca95 100644 --- a/icons/outline/location-heart.svg +++ b/icons/outline/location-heart.svg @@ -16,5 +16,5 @@ unicode: "fbb8" stroke-linejoin="round" > - + diff --git a/icons/outline/location-pin.svg b/icons/outline/location-pin.svg index 65f999b83..7ed7430d6 100644 --- a/icons/outline/location-pin.svg +++ b/icons/outline/location-pin.svg @@ -16,6 +16,6 @@ unicode: "fbbb" stroke-linejoin="round" > - + diff --git a/icons/outline/location-search.svg b/icons/outline/location-search.svg index 5faf3da1b..a4be25561 100644 --- a/icons/outline/location-search.svg +++ b/icons/outline/location-search.svg @@ -16,6 +16,6 @@ unicode: "fbbe" stroke-linejoin="round" > - + diff --git a/icons/outline/location-star.svg b/icons/outline/location-star.svg index 697dc85eb..de5b45213 100644 --- a/icons/outline/location-star.svg +++ b/icons/outline/location-star.svg @@ -16,5 +16,5 @@ unicode: "fbc0" stroke-linejoin="round" > - + diff --git a/icons/outline/lock-access.svg b/icons/outline/lock-access.svg index 215905300..e3330df9c 100644 --- a/icons/outline/lock-access.svg +++ b/icons/outline/lock-access.svg @@ -19,6 +19,6 @@ unicode: "eeaa" - + diff --git a/icons/outline/lock-cancel.svg b/icons/outline/lock-cancel.svg index af9de72a1..9d60a76f3 100644 --- a/icons/outline/lock-cancel.svg +++ b/icons/outline/lock-cancel.svg @@ -18,6 +18,6 @@ unicode: "f925" - + diff --git a/icons/outline/lock-cog.svg b/icons/outline/lock-cog.svg index 73e787617..6fcf6c708 100644 --- a/icons/outline/lock-cog.svg +++ b/icons/outline/lock-cog.svg @@ -18,7 +18,7 @@ unicode: "f928" - + diff --git a/icons/outline/lock-heart.svg b/icons/outline/lock-heart.svg index d94122f6b..796de6ab4 100644 --- a/icons/outline/lock-heart.svg +++ b/icons/outline/lock-heart.svg @@ -17,5 +17,5 @@ unicode: "f92c" > - + diff --git a/icons/outline/lock-open-2.svg b/icons/outline/lock-open-2.svg index f740320b1..528aa0c3e 100644 --- a/icons/outline/lock-open-2.svg +++ b/icons/outline/lock-open-2.svg @@ -15,7 +15,7 @@ version: "3.1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/lock-open-off.svg b/icons/outline/lock-open-off.svg index 2fc18274b..1fc155311 100644 --- a/icons/outline/lock-open-off.svg +++ b/icons/outline/lock-open-off.svg @@ -16,7 +16,7 @@ unicode: "f156" stroke-linejoin="round" > - + diff --git a/icons/outline/lock-open.svg b/icons/outline/lock-open.svg index 4b04b497a..b3da6bbe7 100644 --- a/icons/outline/lock-open.svg +++ b/icons/outline/lock-open.svg @@ -15,7 +15,7 @@ unicode: "eae1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/lock-password.svg b/icons/outline/lock-password.svg index 92e435b6c..a6553dbb5 100644 --- a/icons/outline/lock-password.svg +++ b/icons/outline/lock-password.svg @@ -15,7 +15,7 @@ version: "3.12" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/lock-pin.svg b/icons/outline/lock-pin.svg index 6d2353733..bb34dc89e 100644 --- a/icons/outline/lock-pin.svg +++ b/icons/outline/lock-pin.svg @@ -18,6 +18,6 @@ unicode: "f92f" - + diff --git a/icons/outline/lock-search.svg b/icons/outline/lock-search.svg index 26c443a05..6c1cf10d2 100644 --- a/icons/outline/lock-search.svg +++ b/icons/outline/lock-search.svg @@ -17,6 +17,6 @@ unicode: "f932" > - + diff --git a/icons/outline/lock-square-rounded.svg b/icons/outline/lock-square-rounded.svg index bea5fcf77..21f9d0f9a 100644 --- a/icons/outline/lock-square-rounded.svg +++ b/icons/outline/lock-square-rounded.svg @@ -15,7 +15,7 @@ unicode: "f636" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/lock-square.svg b/icons/outline/lock-square.svg index 48db4d7ad..0b8d8c12f 100644 --- a/icons/outline/lock-square.svg +++ b/icons/outline/lock-square.svg @@ -15,7 +15,7 @@ unicode: "ef51" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/lock-star.svg b/icons/outline/lock-star.svg index fe6e5f223..c58974a65 100644 --- a/icons/outline/lock-star.svg +++ b/icons/outline/lock-star.svg @@ -17,5 +17,5 @@ unicode: "f934" > - + diff --git a/icons/outline/lock.svg b/icons/outline/lock.svg index 4d1659c6c..984acce66 100644 --- a/icons/outline/lock.svg +++ b/icons/outline/lock.svg @@ -15,7 +15,7 @@ unicode: "eae2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/logic-and.svg b/icons/outline/logic-and.svg index 4fb7ceb98..67d98105a 100644 --- a/icons/outline/logic-and.svg +++ b/icons/outline/logic-and.svg @@ -18,5 +18,5 @@ unicode: "f240" - + diff --git a/icons/outline/logic-buffer.svg b/icons/outline/logic-buffer.svg index 6a51c62f3..20af445e6 100644 --- a/icons/outline/logic-buffer.svg +++ b/icons/outline/logic-buffer.svg @@ -18,5 +18,5 @@ unicode: "f241" - + diff --git a/icons/outline/logic-nand.svg b/icons/outline/logic-nand.svg index 1e77d1770..6ad138f0a 100644 --- a/icons/outline/logic-nand.svg +++ b/icons/outline/logic-nand.svg @@ -18,6 +18,6 @@ unicode: "f242" - - + + diff --git a/icons/outline/logic-nor.svg b/icons/outline/logic-nor.svg index 80d982250..938c6d4f5 100644 --- a/icons/outline/logic-nor.svg +++ b/icons/outline/logic-nor.svg @@ -18,6 +18,6 @@ unicode: "f243" - - + + diff --git a/icons/outline/logic-not.svg b/icons/outline/logic-not.svg index 0214995b2..96d4a6166 100644 --- a/icons/outline/logic-not.svg +++ b/icons/outline/logic-not.svg @@ -18,6 +18,6 @@ unicode: "f244" - - + + diff --git a/icons/outline/logic-or.svg b/icons/outline/logic-or.svg index 1478038fb..30f4a4a2f 100644 --- a/icons/outline/logic-or.svg +++ b/icons/outline/logic-or.svg @@ -18,5 +18,5 @@ unicode: "f245" - + diff --git a/icons/outline/logic-xnor.svg b/icons/outline/logic-xnor.svg index ea9aadcd2..13271c080 100644 --- a/icons/outline/logic-xnor.svg +++ b/icons/outline/logic-xnor.svg @@ -19,6 +19,6 @@ unicode: "f246" - - + + diff --git a/icons/outline/logic-xor.svg b/icons/outline/logic-xor.svg index 23ec3c392..0ee980e33 100644 --- a/icons/outline/logic-xor.svg +++ b/icons/outline/logic-xor.svg @@ -19,5 +19,5 @@ unicode: "f247" - + diff --git a/icons/outline/lollipop.svg b/icons/outline/lollipop.svg index 9f9248498..15e698482 100644 --- a/icons/outline/lollipop.svg +++ b/icons/outline/lollipop.svg @@ -15,7 +15,7 @@ unicode: "efcc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/luggage.svg b/icons/outline/luggage.svg index 8f3d4d9b1..7a318c928 100644 --- a/icons/outline/luggage.svg +++ b/icons/outline/luggage.svg @@ -15,7 +15,7 @@ unicode: "efad" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/lungs.svg b/icons/outline/lungs.svg index c3b0f6b29..952a6e03f 100644 --- a/icons/outline/lungs.svg +++ b/icons/outline/lungs.svg @@ -15,8 +15,8 @@ unicode: "ef62" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/macro.svg b/icons/outline/macro.svg index b2da5baf7..c01e531ac 100644 --- a/icons/outline/macro.svg +++ b/icons/outline/macro.svg @@ -19,5 +19,5 @@ unicode: "eeab" - + diff --git a/icons/outline/mail-cancel.svg b/icons/outline/mail-cancel.svg index 3f9c5c915..e31c6e1a3 100644 --- a/icons/outline/mail-cancel.svg +++ b/icons/outline/mail-cancel.svg @@ -16,7 +16,7 @@ unicode: "f938" stroke-linejoin="round" > - + diff --git a/icons/outline/mail-cog.svg b/icons/outline/mail-cog.svg index c1bad6f75..27fa3d392 100644 --- a/icons/outline/mail-cog.svg +++ b/icons/outline/mail-cog.svg @@ -17,7 +17,7 @@ unicode: "f93b" > - + diff --git a/icons/outline/mail-fast.svg b/icons/outline/mail-fast.svg index 3cdc7f018..ad9dced96 100644 --- a/icons/outline/mail-fast.svg +++ b/icons/outline/mail-fast.svg @@ -17,6 +17,6 @@ unicode: "f069" > - + diff --git a/icons/outline/mail-heart.svg b/icons/outline/mail-heart.svg index 924e0b08d..e218e9b2f 100644 --- a/icons/outline/mail-heart.svg +++ b/icons/outline/mail-heart.svg @@ -17,5 +17,5 @@ unicode: "f93f" > - + diff --git a/icons/outline/mail-pin.svg b/icons/outline/mail-pin.svg index b649f7b38..86010caf1 100644 --- a/icons/outline/mail-pin.svg +++ b/icons/outline/mail-pin.svg @@ -16,7 +16,7 @@ unicode: "f942" stroke-linejoin="round" > - + diff --git a/icons/outline/mail-search.svg b/icons/outline/mail-search.svg index bf1560bbe..0a39db20d 100644 --- a/icons/outline/mail-search.svg +++ b/icons/outline/mail-search.svg @@ -16,7 +16,7 @@ unicode: "f945" stroke-linejoin="round" > - + diff --git a/icons/outline/mail-star.svg b/icons/outline/mail-star.svg index 62c24a55f..2d08b4687 100644 --- a/icons/outline/mail-star.svg +++ b/icons/outline/mail-star.svg @@ -17,5 +17,5 @@ unicode: "f947" > - + diff --git a/icons/outline/mail.svg b/icons/outline/mail.svg index bc4f284b5..2e519460d 100644 --- a/icons/outline/mail.svg +++ b/icons/outline/mail.svg @@ -15,6 +15,6 @@ unicode: "eae5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/man.svg b/icons/outline/man.svg index 1ba636a4e..3dfdd48b0 100644 --- a/icons/outline/man.svg +++ b/icons/outline/man.svg @@ -17,8 +17,8 @@ unicode: "eae6" > - + - + diff --git a/icons/outline/manual-gearbox.svg b/icons/outline/manual-gearbox.svg index 789f73f9e..dda256d84 100644 --- a/icons/outline/manual-gearbox.svg +++ b/icons/outline/manual-gearbox.svg @@ -15,11 +15,11 @@ unicode: "ed7b" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/map-2.svg b/icons/outline/map-2.svg index aef6b8984..ea746ad31 100644 --- a/icons/outline/map-2.svg +++ b/icons/outline/map-2.svg @@ -18,6 +18,6 @@ unicode: "eae7" - + diff --git a/icons/outline/map-cancel.svg b/icons/outline/map-cancel.svg index 6c23ad493..f2c623418 100644 --- a/icons/outline/map-cancel.svg +++ b/icons/outline/map-cancel.svg @@ -18,6 +18,6 @@ unicode: "fbc4" - + diff --git a/icons/outline/map-cog.svg b/icons/outline/map-cog.svg index f35b785fa..dc026c206 100644 --- a/icons/outline/map-cog.svg +++ b/icons/outline/map-cog.svg @@ -18,7 +18,7 @@ unicode: "fbc7" - + diff --git a/icons/outline/map-east.svg b/icons/outline/map-east.svg index 866079db0..4711f3dcc 100644 --- a/icons/outline/map-east.svg +++ b/icons/outline/map-east.svg @@ -15,7 +15,7 @@ unicode: "fc5d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/map-heart.svg b/icons/outline/map-heart.svg index a243b64c9..a4344bab4 100644 --- a/icons/outline/map-heart.svg +++ b/icons/outline/map-heart.svg @@ -18,5 +18,5 @@ unicode: "fbcc" - + diff --git a/icons/outline/map-north.svg b/icons/outline/map-north.svg index 325b92ab4..bbab49036 100644 --- a/icons/outline/map-north.svg +++ b/icons/outline/map-north.svg @@ -15,6 +15,6 @@ unicode: "fc5e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/map-pin-2.svg b/icons/outline/map-pin-2.svg index 195a13bb2..823aebd29 100644 --- a/icons/outline/map-pin-2.svg +++ b/icons/outline/map-pin-2.svg @@ -18,6 +18,6 @@ unicode: "fc48" - + diff --git a/icons/outline/map-pin-cancel.svg b/icons/outline/map-pin-cancel.svg index e5d7566dc..d50bbfd52 100644 --- a/icons/outline/map-pin-cancel.svg +++ b/icons/outline/map-pin-cancel.svg @@ -17,6 +17,6 @@ unicode: "f94b" > - + diff --git a/icons/outline/map-pin-cog.svg b/icons/outline/map-pin-cog.svg index d5faca955..a65abba7a 100644 --- a/icons/outline/map-pin-cog.svg +++ b/icons/outline/map-pin-cog.svg @@ -17,7 +17,7 @@ unicode: "f94e" > - + diff --git a/icons/outline/map-pin-heart.svg b/icons/outline/map-pin-heart.svg index 013a4f071..d23521b57 100644 --- a/icons/outline/map-pin-heart.svg +++ b/icons/outline/map-pin-heart.svg @@ -17,5 +17,5 @@ unicode: "f952" > - + diff --git a/icons/outline/map-pin-pin.svg b/icons/outline/map-pin-pin.svg index 9eb7bc86c..397d0610a 100644 --- a/icons/outline/map-pin-pin.svg +++ b/icons/outline/map-pin-pin.svg @@ -17,6 +17,6 @@ unicode: "f955" > - + diff --git a/icons/outline/map-pin-search.svg b/icons/outline/map-pin-search.svg index d1df14b16..a062120a6 100644 --- a/icons/outline/map-pin-search.svg +++ b/icons/outline/map-pin-search.svg @@ -17,6 +17,6 @@ unicode: "f958" > - + diff --git a/icons/outline/map-pin-star.svg b/icons/outline/map-pin-star.svg index 23868951c..02e48cdb0 100644 --- a/icons/outline/map-pin-star.svg +++ b/icons/outline/map-pin-star.svg @@ -17,5 +17,5 @@ unicode: "f959" > - + diff --git a/icons/outline/map-pin.svg b/icons/outline/map-pin.svg index 919959cdb..7501d8ff4 100644 --- a/icons/outline/map-pin.svg +++ b/icons/outline/map-pin.svg @@ -16,5 +16,5 @@ unicode: "eae8" stroke-linejoin="round" > - + diff --git a/icons/outline/map-pins.svg b/icons/outline/map-pins.svg index 7afd40999..408b135da 100644 --- a/icons/outline/map-pins.svg +++ b/icons/outline/map-pins.svg @@ -15,8 +15,8 @@ unicode: "ed5e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/map-search.svg b/icons/outline/map-search.svg index 19d463509..e8ffdd959 100644 --- a/icons/outline/map-search.svg +++ b/icons/outline/map-search.svg @@ -18,6 +18,6 @@ unicode: "ef82" - + diff --git a/icons/outline/map-south.svg b/icons/outline/map-south.svg index dd5d0016f..788ec759f 100644 --- a/icons/outline/map-south.svg +++ b/icons/outline/map-south.svg @@ -15,6 +15,6 @@ unicode: "fc5f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/map-star.svg b/icons/outline/map-star.svg index 2665d6744..13ce50858 100644 --- a/icons/outline/map-star.svg +++ b/icons/outline/map-star.svg @@ -18,5 +18,5 @@ unicode: "fbd2" - + diff --git a/icons/outline/map-west.svg b/icons/outline/map-west.svg index ce4379e57..30acd8ef0 100644 --- a/icons/outline/map-west.svg +++ b/icons/outline/map-west.svg @@ -15,6 +15,6 @@ unicode: "fc60" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/markdown.svg b/icons/outline/markdown.svg index 0cb7601d4..66206f6b1 100644 --- a/icons/outline/markdown.svg +++ b/icons/outline/markdown.svg @@ -15,7 +15,7 @@ unicode: "ec41" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mars.svg b/icons/outline/mars.svg index 6d1c49ad7..ffb271fdb 100644 --- a/icons/outline/mars.svg +++ b/icons/outline/mars.svg @@ -15,7 +15,7 @@ unicode: "ec80" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mask.svg b/icons/outline/mask.svg index 38d75cce1..fc74fa080 100644 --- a/icons/outline/mask.svg +++ b/icons/outline/mask.svg @@ -15,6 +15,6 @@ unicode: "eeb0" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/masks-theater.svg b/icons/outline/masks-theater.svg index 7bfe8fa14..c5766ac72 100644 --- a/icons/outline/masks-theater.svg +++ b/icons/outline/masks-theater.svg @@ -15,7 +15,7 @@ unicode: "f263" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/massage.svg b/icons/outline/massage.svg index 51c0565dd..9ba01742b 100644 --- a/icons/outline/massage.svg +++ b/icons/outline/massage.svg @@ -15,8 +15,8 @@ unicode: "eeb1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/matchstick.svg b/icons/outline/matchstick.svg index c0b18975e..7317da3d7 100644 --- a/icons/outline/matchstick.svg +++ b/icons/outline/matchstick.svg @@ -16,6 +16,6 @@ unicode: "f577" stroke-linejoin="round" > - - + + diff --git a/icons/outline/math-avg.svg b/icons/outline/math-avg.svg index 6a2cbf623..20baceaec 100644 --- a/icons/outline/math-avg.svg +++ b/icons/outline/math-avg.svg @@ -16,5 +16,5 @@ unicode: "f0f4" stroke-linejoin="round" > - + diff --git a/icons/outline/meat-off.svg b/icons/outline/meat-off.svg index 961d02cff..fe7974415 100644 --- a/icons/outline/meat-off.svg +++ b/icons/outline/meat-off.svg @@ -16,7 +16,7 @@ unicode: "f40a" stroke-linejoin="round" > - + diff --git a/icons/outline/meat.svg b/icons/outline/meat.svg index 78ccd242c..e5950b81d 100644 --- a/icons/outline/meat.svg +++ b/icons/outline/meat.svg @@ -16,7 +16,7 @@ unicode: "ef12" stroke-linejoin="round" > - + diff --git a/icons/outline/medal-2.svg b/icons/outline/medal-2.svg index 29ea52545..c6ba2f81d 100644 --- a/icons/outline/medal-2.svg +++ b/icons/outline/medal-2.svg @@ -15,8 +15,8 @@ unicode: "efcd" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/medal.svg b/icons/outline/medal.svg index 26bc17a38..cd739a937 100644 --- a/icons/outline/medal.svg +++ b/icons/outline/medal.svg @@ -16,5 +16,5 @@ unicode: "ec78" stroke-linejoin="round" > - + diff --git a/icons/outline/medical-cross.svg b/icons/outline/medical-cross.svg index feb5b208a..c31371350 100644 --- a/icons/outline/medical-cross.svg +++ b/icons/outline/medical-cross.svg @@ -15,5 +15,5 @@ unicode: "ec2f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/medicine-syrup.svg b/icons/outline/medicine-syrup.svg index 5b849a116..6717fd0b7 100644 --- a/icons/outline/medicine-syrup.svg +++ b/icons/outline/medicine-syrup.svg @@ -15,7 +15,7 @@ unicode: "ef63" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/meeple.svg b/icons/outline/meeple.svg index 1d1cc5917..9053260bd 100644 --- a/icons/outline/meeple.svg +++ b/icons/outline/meeple.svg @@ -15,5 +15,5 @@ unicode: "f514" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/melon.svg b/icons/outline/melon.svg index 21980ff1a..6760459ac 100644 --- a/icons/outline/melon.svg +++ b/icons/outline/melon.svg @@ -15,5 +15,5 @@ unicode: "fc7a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-2-cancel.svg b/icons/outline/message-2-cancel.svg index 4d0cea76d..551e34951 100644 --- a/icons/outline/message-2-cancel.svg +++ b/icons/outline/message-2-cancel.svg @@ -18,6 +18,6 @@ unicode: "f95d" - + diff --git a/icons/outline/message-2-cog.svg b/icons/outline/message-2-cog.svg index 66b1cc355..40fc58cbf 100644 --- a/icons/outline/message-2-cog.svg +++ b/icons/outline/message-2-cog.svg @@ -18,7 +18,7 @@ unicode: "f95f" - + diff --git a/icons/outline/message-2-heart.svg b/icons/outline/message-2-heart.svg index 22e9b02b3..ee2e4604f 100644 --- a/icons/outline/message-2-heart.svg +++ b/icons/outline/message-2-heart.svg @@ -18,5 +18,5 @@ unicode: "f963" - + diff --git a/icons/outline/message-2-pin.svg b/icons/outline/message-2-pin.svg index 35daf5469..e09341f65 100644 --- a/icons/outline/message-2-pin.svg +++ b/icons/outline/message-2-pin.svg @@ -18,6 +18,6 @@ unicode: "f966" - + diff --git a/icons/outline/message-2-search.svg b/icons/outline/message-2-search.svg index e220cb4e9..8afef300b 100644 --- a/icons/outline/message-2-search.svg +++ b/icons/outline/message-2-search.svg @@ -18,6 +18,6 @@ unicode: "f969" - + diff --git a/icons/outline/message-2-star.svg b/icons/outline/message-2-star.svg index 8197a32c5..40d6dd60b 100644 --- a/icons/outline/message-2-star.svg +++ b/icons/outline/message-2-star.svg @@ -18,5 +18,5 @@ unicode: "f96a" - + diff --git a/icons/outline/message-2.svg b/icons/outline/message-2.svg index 2b1973b45..b68b9b9a6 100644 --- a/icons/outline/message-2.svg +++ b/icons/outline/message-2.svg @@ -17,5 +17,5 @@ unicode: "eaec" > - + diff --git a/icons/outline/message-cancel.svg b/icons/outline/message-cancel.svg index 4e9c2a23a..907709914 100644 --- a/icons/outline/message-cancel.svg +++ b/icons/outline/message-cancel.svg @@ -18,6 +18,6 @@ unicode: "f96e" - + diff --git a/icons/outline/message-chatbot.svg b/icons/outline/message-chatbot.svg index e34a99971..d786088b5 100644 --- a/icons/outline/message-chatbot.svg +++ b/icons/outline/message-chatbot.svg @@ -15,7 +15,7 @@ unicode: "f38a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-cancel.svg b/icons/outline/message-circle-cancel.svg index 9157701bd..1d1e333a3 100644 --- a/icons/outline/message-circle-cancel.svg +++ b/icons/outline/message-circle-cancel.svg @@ -16,6 +16,6 @@ unicode: "f971" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-cog.svg b/icons/outline/message-circle-cog.svg index 40dac9af0..0d66aff81 100644 --- a/icons/outline/message-circle-cog.svg +++ b/icons/outline/message-circle-cog.svg @@ -16,7 +16,7 @@ unicode: "f974" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-heart.svg b/icons/outline/message-circle-heart.svg index d1d44fd24..484b9258e 100644 --- a/icons/outline/message-circle-heart.svg +++ b/icons/outline/message-circle-heart.svg @@ -16,5 +16,5 @@ unicode: "f978" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-pin.svg b/icons/outline/message-circle-pin.svg index f40f2d78b..f8526ee7e 100644 --- a/icons/outline/message-circle-pin.svg +++ b/icons/outline/message-circle-pin.svg @@ -16,6 +16,6 @@ unicode: "f97b" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-search.svg b/icons/outline/message-circle-search.svg index 8165098af..1ce261982 100644 --- a/icons/outline/message-circle-search.svg +++ b/icons/outline/message-circle-search.svg @@ -16,6 +16,6 @@ unicode: "f97e" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-star.svg b/icons/outline/message-circle-star.svg index fd50c079a..9ab379f57 100644 --- a/icons/outline/message-circle-star.svg +++ b/icons/outline/message-circle-star.svg @@ -16,5 +16,5 @@ unicode: "f980" stroke-linejoin="round" > - + diff --git a/icons/outline/message-circle-user.svg b/icons/outline/message-circle-user.svg index bcc63b223..66abc761b 100644 --- a/icons/outline/message-circle-user.svg +++ b/icons/outline/message-circle-user.svg @@ -15,7 +15,7 @@ version: "3.3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-cog.svg b/icons/outline/message-cog.svg index 3133cf7d6..d85e939a8 100644 --- a/icons/outline/message-cog.svg +++ b/icons/outline/message-cog.svg @@ -18,7 +18,7 @@ unicode: "f983" - + diff --git a/icons/outline/message-dots.svg b/icons/outline/message-dots.svg index 5bc1999a9..bd89a5ce0 100644 --- a/icons/outline/message-dots.svg +++ b/icons/outline/message-dots.svg @@ -18,5 +18,5 @@ unicode: "eaee" - + diff --git a/icons/outline/message-forward.svg b/icons/outline/message-forward.svg index 6df818281..f5fc51d9d 100644 --- a/icons/outline/message-forward.svg +++ b/icons/outline/message-forward.svg @@ -15,7 +15,7 @@ unicode: "f28f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-heart.svg b/icons/outline/message-heart.svg index eb5903725..c8fc0252f 100644 --- a/icons/outline/message-heart.svg +++ b/icons/outline/message-heart.svg @@ -18,5 +18,5 @@ unicode: "f987" - + diff --git a/icons/outline/message-pin.svg b/icons/outline/message-pin.svg index c3cfb4857..8066a05d1 100644 --- a/icons/outline/message-pin.svg +++ b/icons/outline/message-pin.svg @@ -18,6 +18,6 @@ unicode: "f98a" - + diff --git a/icons/outline/message-reply.svg b/icons/outline/message-reply.svg index eec54723d..a58363de9 100644 --- a/icons/outline/message-reply.svg +++ b/icons/outline/message-reply.svg @@ -15,7 +15,7 @@ unicode: "fd4d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-report.svg b/icons/outline/message-report.svg index 4b7c7c395..b26d69775 100644 --- a/icons/outline/message-report.svg +++ b/icons/outline/message-report.svg @@ -15,7 +15,7 @@ unicode: "ec9b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/message-search.svg b/icons/outline/message-search.svg index ed5b9d80e..b77ebe8d0 100644 --- a/icons/outline/message-search.svg +++ b/icons/outline/message-search.svg @@ -18,6 +18,6 @@ unicode: "f98c" - + diff --git a/icons/outline/message-star.svg b/icons/outline/message-star.svg index 37dfd3253..cf61200dd 100644 --- a/icons/outline/message-star.svg +++ b/icons/outline/message-star.svg @@ -18,5 +18,5 @@ unicode: "f98d" - + diff --git a/icons/outline/message-user.svg b/icons/outline/message-user.svg index 59bea348f..dfcb03a5c 100644 --- a/icons/outline/message-user.svg +++ b/icons/outline/message-user.svg @@ -16,6 +16,6 @@ version: "3.3" stroke-linejoin="round" > - + diff --git a/icons/outline/message.svg b/icons/outline/message.svg index 4c5eb94c4..eb2b8a651 100644 --- a/icons/outline/message.svg +++ b/icons/outline/message.svg @@ -17,5 +17,5 @@ unicode: "eaef" > - + diff --git a/icons/outline/meteor-off.svg b/icons/outline/meteor-off.svg index f9aca87b9..649ec8e5d 100644 --- a/icons/outline/meteor-off.svg +++ b/icons/outline/meteor-off.svg @@ -16,6 +16,6 @@ unicode: "f40c" stroke-linejoin="round" > - + diff --git a/icons/outline/meteor.svg b/icons/outline/meteor.svg index b248e1636..725c21cc5 100644 --- a/icons/outline/meteor.svg +++ b/icons/outline/meteor.svg @@ -15,6 +15,6 @@ unicode: "f1fd" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/metronome.svg b/icons/outline/metronome.svg index 80b287be5..08882b444 100644 --- a/icons/outline/metronome.svg +++ b/icons/outline/metronome.svg @@ -16,5 +16,5 @@ unicode: "fd25" stroke-linejoin="round" > - + diff --git a/icons/outline/michelin-bib-gourmand.svg b/icons/outline/michelin-bib-gourmand.svg index 361a7c30f..ff2fba2da 100644 --- a/icons/outline/michelin-bib-gourmand.svg +++ b/icons/outline/michelin-bib-gourmand.svg @@ -16,8 +16,8 @@ unicode: "fae9" stroke-linejoin="round" > - - + + diff --git a/icons/outline/michelin-star.svg b/icons/outline/michelin-star.svg index 44502a4c8..6cdbdb3ae 100644 --- a/icons/outline/michelin-star.svg +++ b/icons/outline/michelin-star.svg @@ -15,5 +15,5 @@ unicode: "faeb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mickey.svg b/icons/outline/mickey.svg index 27e1361a1..b9b23d9f4 100644 --- a/icons/outline/mickey.svg +++ b/icons/outline/mickey.svg @@ -15,7 +15,7 @@ unicode: "f2a3" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/microphone-2.svg b/icons/outline/microphone-2.svg index 34e077115..35176c504 100644 --- a/icons/outline/microphone-2.svg +++ b/icons/outline/microphone-2.svg @@ -16,5 +16,5 @@ unicode: "ef2c" stroke-linejoin="round" > - + diff --git a/icons/outline/microphone.svg b/icons/outline/microphone.svg index c022e5d07..6ca9f220b 100644 --- a/icons/outline/microphone.svg +++ b/icons/outline/microphone.svg @@ -15,7 +15,7 @@ unicode: "eaf0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/microscope.svg b/icons/outline/microscope.svg index 541dc764e..d3efb720c 100644 --- a/icons/outline/microscope.svg +++ b/icons/outline/microscope.svg @@ -18,7 +18,7 @@ unicode: "ef64" - + diff --git a/icons/outline/microwave.svg b/icons/outline/microwave.svg index 84ae0302f..7b8603249 100644 --- a/icons/outline/microwave.svg +++ b/icons/outline/microwave.svg @@ -15,7 +15,7 @@ unicode: "f248" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/military-award.svg b/icons/outline/military-award.svg index 9e61c4700..7f4d33f6e 100644 --- a/icons/outline/military-award.svg +++ b/icons/outline/military-award.svg @@ -15,7 +15,7 @@ unicode: "f079" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/military-rank.svg b/icons/outline/military-rank.svg index 29ce51098..b9ae4e09c 100644 --- a/icons/outline/military-rank.svg +++ b/icons/outline/military-rank.svg @@ -15,7 +15,7 @@ unicode: "efcf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/milk-off.svg b/icons/outline/milk-off.svg index 831cf3f27..364517155 100644 --- a/icons/outline/milk-off.svg +++ b/icons/outline/milk-off.svg @@ -17,6 +17,6 @@ unicode: "f40f" > - + diff --git a/icons/outline/milk.svg b/icons/outline/milk.svg index fc1dfbd3b..c29d13490 100644 --- a/icons/outline/milk.svg +++ b/icons/outline/milk.svg @@ -15,8 +15,8 @@ unicode: "ef13" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/milkshake.svg b/icons/outline/milkshake.svg index f21a68ed8..8426cc659 100644 --- a/icons/outline/milkshake.svg +++ b/icons/outline/milkshake.svg @@ -16,7 +16,7 @@ unicode: "f4c8" stroke-linejoin="round" > - + diff --git a/icons/outline/moneybag-edit.svg b/icons/outline/moneybag-edit.svg index 75dd428a1..2617e0a55 100644 --- a/icons/outline/moneybag-edit.svg +++ b/icons/outline/moneybag-edit.svg @@ -17,5 +17,5 @@ unicode: "1013d" > - + diff --git a/icons/outline/moneybag-heart.svg b/icons/outline/moneybag-heart.svg index 1bfc6f199..2d59a15df 100644 --- a/icons/outline/moneybag-heart.svg +++ b/icons/outline/moneybag-heart.svg @@ -17,5 +17,5 @@ unicode: "1013c" > - + diff --git a/icons/outline/mood-angry.svg b/icons/outline/mood-angry.svg index 85bb95ae6..a255580b5 100644 --- a/icons/outline/mood-angry.svg +++ b/icons/outline/mood-angry.svg @@ -15,7 +15,7 @@ unicode: "f2de" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-annoyed-2.svg b/icons/outline/mood-annoyed-2.svg index c0d51f971..55017d258 100644 --- a/icons/outline/mood-annoyed-2.svg +++ b/icons/outline/mood-annoyed-2.svg @@ -15,7 +15,7 @@ unicode: "f2df" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-annoyed.svg b/icons/outline/mood-annoyed.svg index f859c8050..863d2de2d 100644 --- a/icons/outline/mood-annoyed.svg +++ b/icons/outline/mood-annoyed.svg @@ -15,7 +15,7 @@ unicode: "f2e0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-cog.svg b/icons/outline/mood-cog.svg index 90280c25e..238456409 100644 --- a/icons/outline/mood-cog.svg +++ b/icons/outline/mood-cog.svg @@ -16,7 +16,7 @@ unicode: "f7b4" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-confuzed.svg b/icons/outline/mood-confuzed.svg index ca7aab5ee..9d175c484 100644 --- a/icons/outline/mood-confuzed.svg +++ b/icons/outline/mood-confuzed.svg @@ -15,7 +15,7 @@ unicode: "eaf3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-crazy-happy.svg b/icons/outline/mood-crazy-happy.svg index 81dce20b7..a68087d95 100644 --- a/icons/outline/mood-crazy-happy.svg +++ b/icons/outline/mood-crazy-happy.svg @@ -15,7 +15,7 @@ unicode: "ed90" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-cry.svg b/icons/outline/mood-cry.svg index 24dbc7a9b..3aebd3421 100644 --- a/icons/outline/mood-cry.svg +++ b/icons/outline/mood-cry.svg @@ -18,6 +18,6 @@ unicode: "ecbb" - + diff --git a/icons/outline/mood-edit.svg b/icons/outline/mood-edit.svg index 51938b356..99c74e335 100644 --- a/icons/outline/mood-edit.svg +++ b/icons/outline/mood-edit.svg @@ -19,5 +19,5 @@ category: Mood - + diff --git a/icons/outline/mood-empty.svg b/icons/outline/mood-empty.svg index 5f1e31cab..571c820d8 100644 --- a/icons/outline/mood-empty.svg +++ b/icons/outline/mood-empty.svg @@ -15,7 +15,7 @@ unicode: "eeb5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-happy.svg b/icons/outline/mood-happy.svg index e1176dddf..70575f01e 100644 --- a/icons/outline/mood-happy.svg +++ b/icons/outline/mood-happy.svg @@ -15,7 +15,7 @@ unicode: "eaf4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-heart.svg b/icons/outline/mood-heart.svg index 30af4c924..48a0cec07 100644 --- a/icons/outline/mood-heart.svg +++ b/icons/outline/mood-heart.svg @@ -19,5 +19,5 @@ unicode: "f7b6" - + diff --git a/icons/outline/mood-kid.svg b/icons/outline/mood-kid.svg index cc0677592..d1f15da12 100644 --- a/icons/outline/mood-kid.svg +++ b/icons/outline/mood-kid.svg @@ -15,7 +15,7 @@ unicode: "ec03" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-look-left.svg b/icons/outline/mood-look-left.svg index 85017f548..21085e145 100644 --- a/icons/outline/mood-look-left.svg +++ b/icons/outline/mood-look-left.svg @@ -15,7 +15,7 @@ unicode: "f2c5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-look-right.svg b/icons/outline/mood-look-right.svg index 830bffa22..66cadb9e6 100644 --- a/icons/outline/mood-look-right.svg +++ b/icons/outline/mood-look-right.svg @@ -15,7 +15,7 @@ unicode: "f2c6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-nerd.svg b/icons/outline/mood-nerd.svg index 2e502d4db..b650ea601 100644 --- a/icons/outline/mood-nerd.svg +++ b/icons/outline/mood-nerd.svg @@ -15,9 +15,9 @@ unicode: "f2e1" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/mood-nervous.svg b/icons/outline/mood-nervous.svg index 438f67d6b..14f2db6fb 100644 --- a/icons/outline/mood-nervous.svg +++ b/icons/outline/mood-nervous.svg @@ -15,7 +15,7 @@ unicode: "ef96" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-neutral.svg b/icons/outline/mood-neutral.svg index 7db04c435..58cf5b8fa 100644 --- a/icons/outline/mood-neutral.svg +++ b/icons/outline/mood-neutral.svg @@ -15,7 +15,7 @@ unicode: "eaf5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-pin.svg b/icons/outline/mood-pin.svg index b5cbfbee7..f031e826b 100644 --- a/icons/outline/mood-pin.svg +++ b/icons/outline/mood-pin.svg @@ -19,6 +19,6 @@ unicode: "f7b8" - + diff --git a/icons/outline/mood-sad-2.svg b/icons/outline/mood-sad-2.svg index a53a6f881..9852c734d 100644 --- a/icons/outline/mood-sad-2.svg +++ b/icons/outline/mood-sad-2.svg @@ -15,7 +15,7 @@ unicode: "f2e2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-sad-dizzy.svg b/icons/outline/mood-sad-dizzy.svg index 7708b2981..70fb769a5 100644 --- a/icons/outline/mood-sad-dizzy.svg +++ b/icons/outline/mood-sad-dizzy.svg @@ -15,7 +15,7 @@ unicode: "f2e3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-sad-squint.svg b/icons/outline/mood-sad-squint.svg index 71939a434..a567ca0c6 100644 --- a/icons/outline/mood-sad-squint.svg +++ b/icons/outline/mood-sad-squint.svg @@ -15,7 +15,7 @@ unicode: "f2e4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-sad.svg b/icons/outline/mood-sad.svg index c0f817eea..7e71fbecb 100644 --- a/icons/outline/mood-sad.svg +++ b/icons/outline/mood-sad.svg @@ -15,7 +15,7 @@ unicode: "eaf6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-search.svg b/icons/outline/mood-search.svg index 9e5719bdb..8f004f30b 100644 --- a/icons/outline/mood-search.svg +++ b/icons/outline/mood-search.svg @@ -19,6 +19,6 @@ unicode: "f7ba" - + diff --git a/icons/outline/mood-sick.svg b/icons/outline/mood-sick.svg index b13c87834..52cf0ac6b 100644 --- a/icons/outline/mood-sick.svg +++ b/icons/outline/mood-sick.svg @@ -15,7 +15,7 @@ unicode: "f2e5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-silence.svg b/icons/outline/mood-silence.svg index 1708aaa54..6690af12c 100644 --- a/icons/outline/mood-silence.svg +++ b/icons/outline/mood-silence.svg @@ -15,7 +15,7 @@ unicode: "f2e6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-sing.svg b/icons/outline/mood-sing.svg index 9c2b7713a..223020e5a 100644 --- a/icons/outline/mood-sing.svg +++ b/icons/outline/mood-sing.svg @@ -15,8 +15,8 @@ unicode: "f2c7" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/mood-smile-beam.svg b/icons/outline/mood-smile-beam.svg index f23dd2250..2704fa1d9 100644 --- a/icons/outline/mood-smile-beam.svg +++ b/icons/outline/mood-smile-beam.svg @@ -15,7 +15,7 @@ unicode: "f2e7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-smile-dizzy.svg b/icons/outline/mood-smile-dizzy.svg index fe795ed0a..e77a4833a 100644 --- a/icons/outline/mood-smile-dizzy.svg +++ b/icons/outline/mood-smile-dizzy.svg @@ -15,7 +15,7 @@ unicode: "f2e8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-smile.svg b/icons/outline/mood-smile.svg index 7e969c55e..d90df67bf 100644 --- a/icons/outline/mood-smile.svg +++ b/icons/outline/mood-smile.svg @@ -15,7 +15,7 @@ unicode: "eaf7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-surprised.svg b/icons/outline/mood-surprised.svg index cf2c7ffe7..dfe858736 100644 --- a/icons/outline/mood-surprised.svg +++ b/icons/outline/mood-surprised.svg @@ -15,8 +15,8 @@ unicode: "ec04" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/mood-tongue-wink-2.svg b/icons/outline/mood-tongue-wink-2.svg index 2aaf48dc5..85e203804 100644 --- a/icons/outline/mood-tongue-wink-2.svg +++ b/icons/outline/mood-tongue-wink-2.svg @@ -15,8 +15,8 @@ unicode: "f2e9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/mood-tongue-wink.svg b/icons/outline/mood-tongue-wink.svg index b3b64e460..6b90e31b0 100644 --- a/icons/outline/mood-tongue-wink.svg +++ b/icons/outline/mood-tongue-wink.svg @@ -15,8 +15,8 @@ unicode: "f2ea" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/mood-tongue.svg b/icons/outline/mood-tongue.svg index 9e8d7bca7..7cbd59753 100644 --- a/icons/outline/mood-tongue.svg +++ b/icons/outline/mood-tongue.svg @@ -15,7 +15,7 @@ unicode: "eb95" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-unamused.svg b/icons/outline/mood-unamused.svg index f3df42b02..aa5999d9a 100644 --- a/icons/outline/mood-unamused.svg +++ b/icons/outline/mood-unamused.svg @@ -15,7 +15,7 @@ unicode: "f2eb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-wink-2.svg b/icons/outline/mood-wink-2.svg index f13ace00d..75dc9d940 100644 --- a/icons/outline/mood-wink-2.svg +++ b/icons/outline/mood-wink-2.svg @@ -15,7 +15,7 @@ unicode: "f2ec" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-wink.svg b/icons/outline/mood-wink.svg index 1c7810f18..fce80dfaa 100644 --- a/icons/outline/mood-wink.svg +++ b/icons/outline/mood-wink.svg @@ -15,7 +15,7 @@ unicode: "f2ed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-wrrr.svg b/icons/outline/mood-wrrr.svg index edd16fb4f..6a43e0952 100644 --- a/icons/outline/mood-wrrr.svg +++ b/icons/outline/mood-wrrr.svg @@ -15,7 +15,7 @@ unicode: "f2ee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mood-xd.svg b/icons/outline/mood-xd.svg index 57e9682cb..917eb9918 100644 --- a/icons/outline/mood-xd.svg +++ b/icons/outline/mood-xd.svg @@ -16,7 +16,7 @@ unicode: "f2ef" stroke-linejoin="round" > - + diff --git a/icons/outline/moon-2.svg b/icons/outline/moon-2.svg index 488a5c720..e1fbdf1ec 100644 --- a/icons/outline/moon-2.svg +++ b/icons/outline/moon-2.svg @@ -16,5 +16,5 @@ unicode: "ece6" stroke-linejoin="round" > - + diff --git a/icons/outline/moon-stars.svg b/icons/outline/moon-stars.svg index febf90705..d153bc449 100644 --- a/icons/outline/moon-stars.svg +++ b/icons/outline/moon-stars.svg @@ -15,7 +15,7 @@ unicode: "ece7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/moon.svg b/icons/outline/moon.svg index 1eb7ba167..232c171f1 100644 --- a/icons/outline/moon.svg +++ b/icons/outline/moon.svg @@ -15,5 +15,5 @@ unicode: "eaf8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/moped.svg b/icons/outline/moped.svg index 2eaa77aa2..6c6a417d8 100644 --- a/icons/outline/moped.svg +++ b/icons/outline/moped.svg @@ -15,7 +15,7 @@ unicode: "ecbc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/motorbike.svg b/icons/outline/motorbike.svg index 1c1f551da..dfbdf0b12 100644 --- a/icons/outline/motorbike.svg +++ b/icons/outline/motorbike.svg @@ -15,8 +15,8 @@ unicode: "eeb6" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/mountain.svg b/icons/outline/mountain.svg index 8dc8f1623..154f1f56f 100644 --- a/icons/outline/mountain.svg +++ b/icons/outline/mountain.svg @@ -15,6 +15,6 @@ unicode: "ef97" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mouse-2.svg b/icons/outline/mouse-2.svg index 9abe9b6ce..35df6a2ec 100644 --- a/icons/outline/mouse-2.svg +++ b/icons/outline/mouse-2.svg @@ -15,7 +15,7 @@ unicode: "f1d7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mouse.svg b/icons/outline/mouse.svg index b28f317db..5b51b5b31 100644 --- a/icons/outline/mouse.svg +++ b/icons/outline/mouse.svg @@ -15,6 +15,6 @@ unicode: "eaf9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/moustache.svg b/icons/outline/moustache.svg index aa731afa1..623d62dad 100644 --- a/icons/outline/moustache.svg +++ b/icons/outline/moustache.svg @@ -15,6 +15,6 @@ unicode: "f4c9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/movie.svg b/icons/outline/movie.svg index 2e1791dc4..c560da43b 100644 --- a/icons/outline/movie.svg +++ b/icons/outline/movie.svg @@ -15,7 +15,7 @@ unicode: "eafa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/mushroom.svg b/icons/outline/mushroom.svg index c2e36b423..908b8f581 100644 --- a/icons/outline/mushroom.svg +++ b/icons/outline/mushroom.svg @@ -15,6 +15,6 @@ unicode: "ef14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/music-cancel.svg b/icons/outline/music-cancel.svg index d7d232525..9c3af972f 100644 --- a/icons/outline/music-cancel.svg +++ b/icons/outline/music-cancel.svg @@ -18,6 +18,6 @@ unicode: "fbd6" - + diff --git a/icons/outline/music-cog.svg b/icons/outline/music-cog.svg index e9230e360..bc783468a 100644 --- a/icons/outline/music-cog.svg +++ b/icons/outline/music-cog.svg @@ -18,7 +18,7 @@ unicode: "fbd9" - + diff --git a/icons/outline/music-heart.svg b/icons/outline/music-heart.svg index 15cba3eed..beed4bb1a 100644 --- a/icons/outline/music-heart.svg +++ b/icons/outline/music-heart.svg @@ -18,5 +18,5 @@ unicode: "fbde" - + diff --git a/icons/outline/music-off.svg b/icons/outline/music-off.svg index 08f0f1744..f24ae2971 100644 --- a/icons/outline/music-off.svg +++ b/icons/outline/music-off.svg @@ -15,7 +15,7 @@ unicode: "f166" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/music-pin.svg b/icons/outline/music-pin.svg index d3e078e9c..ea654596f 100644 --- a/icons/outline/music-pin.svg +++ b/icons/outline/music-pin.svg @@ -18,6 +18,6 @@ unicode: "fbe1" - + diff --git a/icons/outline/music-search.svg b/icons/outline/music-search.svg index 96a7a8f3d..e1f1ac52c 100644 --- a/icons/outline/music-search.svg +++ b/icons/outline/music-search.svg @@ -18,6 +18,6 @@ unicode: "fbe4" - + diff --git a/icons/outline/music-star.svg b/icons/outline/music-star.svg index b7f8addd4..d3e021b18 100644 --- a/icons/outline/music-star.svg +++ b/icons/outline/music-star.svg @@ -18,5 +18,5 @@ unicode: "fbe6" - + diff --git a/icons/outline/navigation-cancel.svg b/icons/outline/navigation-cancel.svg index 04d8785f5..0d72e970b 100644 --- a/icons/outline/navigation-cancel.svg +++ b/icons/outline/navigation-cancel.svg @@ -16,6 +16,6 @@ unicode: "fbea" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-cog.svg b/icons/outline/navigation-cog.svg index f8a5a81b5..38c289d5d 100644 --- a/icons/outline/navigation-cog.svg +++ b/icons/outline/navigation-cog.svg @@ -16,7 +16,7 @@ unicode: "fbed" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-east.svg b/icons/outline/navigation-east.svg index 36ea0f7f1..cff332d9d 100644 --- a/icons/outline/navigation-east.svg +++ b/icons/outline/navigation-east.svg @@ -17,5 +17,5 @@ unicode: "fcba" > - + diff --git a/icons/outline/navigation-heart.svg b/icons/outline/navigation-heart.svg index 07b7f46f8..bb7b190dc 100644 --- a/icons/outline/navigation-heart.svg +++ b/icons/outline/navigation-heart.svg @@ -16,5 +16,5 @@ unicode: "fbf2" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-north.svg b/icons/outline/navigation-north.svg index 5241240a2..0db5cfc56 100644 --- a/icons/outline/navigation-north.svg +++ b/icons/outline/navigation-north.svg @@ -15,6 +15,6 @@ unicode: "fcbb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-pin.svg b/icons/outline/navigation-pin.svg index 09b2166df..2b7144223 100644 --- a/icons/outline/navigation-pin.svg +++ b/icons/outline/navigation-pin.svg @@ -16,6 +16,6 @@ unicode: "fbf5" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-search.svg b/icons/outline/navigation-search.svg index 0c09887f6..c28d87071 100644 --- a/icons/outline/navigation-search.svg +++ b/icons/outline/navigation-search.svg @@ -16,6 +16,6 @@ unicode: "fbf8" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-south.svg b/icons/outline/navigation-south.svg index ac39d7587..4f3c4a596 100644 --- a/icons/outline/navigation-south.svg +++ b/icons/outline/navigation-south.svg @@ -16,5 +16,5 @@ unicode: "fcbc" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-star.svg b/icons/outline/navigation-star.svg index 6ef43ebb4..efa55ffc3 100644 --- a/icons/outline/navigation-star.svg +++ b/icons/outline/navigation-star.svg @@ -16,5 +16,5 @@ unicode: "fbfa" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-top.svg b/icons/outline/navigation-top.svg index 5980f8a00..e61803956 100644 --- a/icons/outline/navigation-top.svg +++ b/icons/outline/navigation-top.svg @@ -15,6 +15,6 @@ unicode: "faec" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/navigation-west.svg b/icons/outline/navigation-west.svg index 0e977a612..822c98a48 100644 --- a/icons/outline/navigation-west.svg +++ b/icons/outline/navigation-west.svg @@ -16,5 +16,5 @@ unicode: "fcbd" stroke-linejoin="round" > - + diff --git a/icons/outline/needle-thread.svg b/icons/outline/needle-thread.svg index 355342c65..17067ed3e 100644 --- a/icons/outline/needle-thread.svg +++ b/icons/outline/needle-thread.svg @@ -15,7 +15,7 @@ unicode: "f507" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/needle.svg b/icons/outline/needle.svg index 8cdc0e001..652b443c7 100644 --- a/icons/outline/needle.svg +++ b/icons/outline/needle.svg @@ -15,6 +15,6 @@ unicode: "f508" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/nfc.svg b/icons/outline/nfc.svg index 321d65046..bc433a79a 100644 --- a/icons/outline/nfc.svg +++ b/icons/outline/nfc.svg @@ -17,5 +17,5 @@ unicode: "eeb7" > - + diff --git a/icons/outline/no-copyright.svg b/icons/outline/no-copyright.svg index 4f72daf66..1e9d07686 100644 --- a/icons/outline/no-copyright.svg +++ b/icons/outline/no-copyright.svg @@ -15,7 +15,7 @@ unicode: "efb9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/no-creative-commons.svg b/icons/outline/no-creative-commons.svg index 67204ec58..bcc59d68c 100644 --- a/icons/outline/no-creative-commons.svg +++ b/icons/outline/no-creative-commons.svg @@ -15,7 +15,7 @@ unicode: "efba" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/no-derivatives.svg b/icons/outline/no-derivatives.svg index 4a5685b50..ae021101d 100644 --- a/icons/outline/no-derivatives.svg +++ b/icons/outline/no-derivatives.svg @@ -15,7 +15,7 @@ unicode: "efbb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/notes.svg b/icons/outline/notes.svg index 8a9e143c0..a3f04ed91 100644 --- a/icons/outline/notes.svg +++ b/icons/outline/notes.svg @@ -15,7 +15,7 @@ unicode: "eb6e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/notification-off.svg b/icons/outline/notification-off.svg index efeab3892..411848e38 100644 --- a/icons/outline/notification-off.svg +++ b/icons/outline/notification-off.svg @@ -16,6 +16,6 @@ unicode: "f16b" stroke-linejoin="round" > - + diff --git a/icons/outline/notification.svg b/icons/outline/notification.svg index 7f27e869e..27aa7bdcf 100644 --- a/icons/outline/notification.svg +++ b/icons/outline/notification.svg @@ -16,5 +16,5 @@ unicode: "eafe" stroke-linejoin="round" > - + diff --git a/icons/outline/number-0.svg b/icons/outline/number-0.svg index 874e4d26c..47dec0b31 100644 --- a/icons/outline/number-0.svg +++ b/icons/outline/number-0.svg @@ -16,5 +16,5 @@ unicode: "edf0" stroke-linejoin="round" > - + diff --git a/icons/outline/number-18-small.svg b/icons/outline/number-18-small.svg index db8d8b5aa..5b3bb55f0 100644 --- a/icons/outline/number-18-small.svg +++ b/icons/outline/number-18-small.svg @@ -16,5 +16,5 @@ unicode: "fceb" stroke-linejoin="round" > - + diff --git a/icons/outline/number-28-small.svg b/icons/outline/number-28-small.svg index a4fac1988..6c31ce7d8 100644 --- a/icons/outline/number-28-small.svg +++ b/icons/outline/number-28-small.svg @@ -15,6 +15,6 @@ unicode: "fcf6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-38-small.svg b/icons/outline/number-38-small.svg index 0fd8fa119..5a9a3459e 100644 --- a/icons/outline/number-38-small.svg +++ b/icons/outline/number-38-small.svg @@ -15,6 +15,6 @@ version: "3.14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-48-small.svg b/icons/outline/number-48-small.svg index c7649699f..bb06c7e48 100644 --- a/icons/outline/number-48-small.svg +++ b/icons/outline/number-48-small.svg @@ -15,7 +15,7 @@ version: "3.14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-58-small.svg b/icons/outline/number-58-small.svg index 007379995..3212912e7 100644 --- a/icons/outline/number-58-small.svg +++ b/icons/outline/number-58-small.svg @@ -15,6 +15,6 @@ version: "3.14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-68-small.svg b/icons/outline/number-68-small.svg index 16b202975..bbb586c0c 100644 --- a/icons/outline/number-68-small.svg +++ b/icons/outline/number-68-small.svg @@ -15,6 +15,6 @@ unicode: "ffde" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-78-small.svg b/icons/outline/number-78-small.svg index f69bb2fdb..ee75cdfcd 100644 --- a/icons/outline/number-78-small.svg +++ b/icons/outline/number-78-small.svg @@ -15,6 +15,6 @@ unicode: "ffd4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-8-small.svg b/icons/outline/number-8-small.svg index 66d58689e..a08c11a3f 100644 --- a/icons/outline/number-8-small.svg +++ b/icons/outline/number-8-small.svg @@ -15,5 +15,5 @@ unicode: "fcfd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number-8.svg b/icons/outline/number-8.svg index d5f6ed881..fad0ebb6e 100644 --- a/icons/outline/number-8.svg +++ b/icons/outline/number-8.svg @@ -15,6 +15,6 @@ unicode: "edf8" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/number-80-small.svg b/icons/outline/number-80-small.svg index e7637667d..cff7964d3 100644 --- a/icons/outline/number-80-small.svg +++ b/icons/outline/number-80-small.svg @@ -16,5 +16,5 @@ unicode: "ffd2" stroke-linejoin="round" > - + diff --git a/icons/outline/number-81-small.svg b/icons/outline/number-81-small.svg index 2ab04b62e..768a174a0 100644 --- a/icons/outline/number-81-small.svg +++ b/icons/outline/number-81-small.svg @@ -16,5 +16,5 @@ unicode: "ffd1" stroke-linejoin="round" > - + diff --git a/icons/outline/number-82-small.svg b/icons/outline/number-82-small.svg index 2643675a9..e1f63efc6 100644 --- a/icons/outline/number-82-small.svg +++ b/icons/outline/number-82-small.svg @@ -16,5 +16,5 @@ unicode: "ffd0" stroke-linejoin="round" > - + diff --git a/icons/outline/number-83-small.svg b/icons/outline/number-83-small.svg index ed6bdd392..73d973670 100644 --- a/icons/outline/number-83-small.svg +++ b/icons/outline/number-83-small.svg @@ -16,5 +16,5 @@ unicode: "ffcf" stroke-linejoin="round" > - + diff --git a/icons/outline/number-84-small.svg b/icons/outline/number-84-small.svg index b63102e3a..2ffd43a19 100644 --- a/icons/outline/number-84-small.svg +++ b/icons/outline/number-84-small.svg @@ -17,5 +17,5 @@ unicode: "ffce" > - + diff --git a/icons/outline/number-85-small.svg b/icons/outline/number-85-small.svg index 8d79ab03e..9d0ac31e1 100644 --- a/icons/outline/number-85-small.svg +++ b/icons/outline/number-85-small.svg @@ -16,5 +16,5 @@ unicode: "ffcd" stroke-linejoin="round" > - + diff --git a/icons/outline/number-86-small.svg b/icons/outline/number-86-small.svg index df967f70a..9195bcaa3 100644 --- a/icons/outline/number-86-small.svg +++ b/icons/outline/number-86-small.svg @@ -16,5 +16,5 @@ unicode: "ffcc" stroke-linejoin="round" > - + diff --git a/icons/outline/number-87-small.svg b/icons/outline/number-87-small.svg index f04eca6d3..abc2ca511 100644 --- a/icons/outline/number-87-small.svg +++ b/icons/outline/number-87-small.svg @@ -16,5 +16,5 @@ unicode: "ffcb" stroke-linejoin="round" > - + diff --git a/icons/outline/number-88-small.svg b/icons/outline/number-88-small.svg index cfc5215aa..b08ab2596 100644 --- a/icons/outline/number-88-small.svg +++ b/icons/outline/number-88-small.svg @@ -15,6 +15,6 @@ unicode: "ffca" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/number-89-small.svg b/icons/outline/number-89-small.svg index f22ea858b..61b2b0b9f 100644 --- a/icons/outline/number-89-small.svg +++ b/icons/outline/number-89-small.svg @@ -16,5 +16,5 @@ unicode: "ffc9" stroke-linejoin="round" > - + diff --git a/icons/outline/number-98-small.svg b/icons/outline/number-98-small.svg index ef8ae9901..8c6bc9d4d 100644 --- a/icons/outline/number-98-small.svg +++ b/icons/outline/number-98-small.svg @@ -15,6 +15,6 @@ version: "3.14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/number.svg b/icons/outline/number.svg index 0b22e035f..708bfe2f7 100644 --- a/icons/outline/number.svg +++ b/icons/outline/number.svg @@ -17,5 +17,5 @@ category: Numbers > - + diff --git a/icons/outline/nut.svg b/icons/outline/nut.svg index 4d350ace8..f543ae351 100644 --- a/icons/outline/nut.svg +++ b/icons/outline/nut.svg @@ -15,6 +15,6 @@ unicode: "fc61" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/object-scan.svg b/icons/outline/object-scan.svg index af588c698..29a0db271 100644 --- a/icons/outline/object-scan.svg +++ b/icons/outline/object-scan.svg @@ -19,5 +19,5 @@ version: "3.5" - + diff --git a/icons/outline/octagon-minus.svg b/icons/outline/octagon-minus.svg index 0e776e8f2..d3b1ad92c 100644 --- a/icons/outline/octagon-minus.svg +++ b/icons/outline/octagon-minus.svg @@ -15,6 +15,6 @@ unicode: "fc92" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/octagon-plus.svg b/icons/outline/octagon-plus.svg index 270c474c4..72973a416 100644 --- a/icons/outline/octagon-plus.svg +++ b/icons/outline/octagon-plus.svg @@ -15,7 +15,7 @@ unicode: "fc94" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/octagon.svg b/icons/outline/octagon.svg index c5426aab3..cd750834f 100644 --- a/icons/outline/octagon.svg +++ b/icons/outline/octagon.svg @@ -15,5 +15,5 @@ unicode: "ecbd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/octahedron.svg b/icons/outline/octahedron.svg index 829c32b78..45408f0ac 100644 --- a/icons/outline/octahedron.svg +++ b/icons/outline/octahedron.svg @@ -15,7 +15,7 @@ unicode: "faae" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/old.svg b/icons/outline/old.svg index faa8602c9..e5ec2b6ee 100644 --- a/icons/outline/old.svg +++ b/icons/outline/old.svg @@ -17,7 +17,7 @@ unicode: "eeb9" > - + diff --git a/icons/outline/olympics-off.svg b/icons/outline/olympics-off.svg index b9de75c33..45cdeeac1 100644 --- a/icons/outline/olympics-off.svg +++ b/icons/outline/olympics-off.svg @@ -16,9 +16,9 @@ version: "1.94" stroke-linejoin="round" > - + - + diff --git a/icons/outline/olympics.svg b/icons/outline/olympics.svg index 78b94fae0..5b0f444e7 100644 --- a/icons/outline/olympics.svg +++ b/icons/outline/olympics.svg @@ -15,9 +15,9 @@ unicode: "eeba" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/outbound.svg b/icons/outline/outbound.svg index c0dda40d9..8b25f710d 100644 --- a/icons/outline/outbound.svg +++ b/icons/outline/outbound.svg @@ -15,7 +15,7 @@ unicode: "f249" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/outlet.svg b/icons/outline/outlet.svg index 341cb8fbf..68c1636fd 100644 --- a/icons/outline/outlet.svg +++ b/icons/outline/outlet.svg @@ -15,7 +15,7 @@ unicode: "ebd7" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/oval-vertical.svg b/icons/outline/oval-vertical.svg index 312a8abe2..c4eb7bd60 100644 --- a/icons/outline/oval-vertical.svg +++ b/icons/outline/oval-vertical.svg @@ -15,5 +15,5 @@ unicode: "f02d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/oval.svg b/icons/outline/oval.svg index f9ce7e069..36d886e19 100644 --- a/icons/outline/oval.svg +++ b/icons/outline/oval.svg @@ -15,5 +15,5 @@ unicode: "f02e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/packages.svg b/icons/outline/packages.svg index 5fd83cd12..9e96d0cff 100644 --- a/icons/outline/packages.svg +++ b/icons/outline/packages.svg @@ -15,10 +15,10 @@ unicode: "f2c9" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/pacman.svg b/icons/outline/pacman.svg index 45d64f412..d2a573e8c 100644 --- a/icons/outline/pacman.svg +++ b/icons/outline/pacman.svg @@ -15,6 +15,6 @@ unicode: "eebc" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/paint-off.svg b/icons/outline/paint-off.svg index 40617f31d..4b31632ce 100644 --- a/icons/outline/paint-off.svg +++ b/icons/outline/paint-off.svg @@ -17,6 +17,6 @@ unicode: "f16d" > - + diff --git a/icons/outline/paint.svg b/icons/outline/paint.svg index 79e69f59c..e2935638f 100644 --- a/icons/outline/paint.svg +++ b/icons/outline/paint.svg @@ -15,7 +15,7 @@ unicode: "eb00" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/palette-off.svg b/icons/outline/palette-off.svg index ba49f5a22..e38c5add2 100644 --- a/icons/outline/palette-off.svg +++ b/icons/outline/palette-off.svg @@ -17,8 +17,8 @@ unicode: "f16e" > - - - + + + diff --git a/icons/outline/palette.svg b/icons/outline/palette.svg index 01016c295..24a69f49e 100644 --- a/icons/outline/palette.svg +++ b/icons/outline/palette.svg @@ -16,7 +16,7 @@ unicode: "eb01" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/panorama-horizontal.svg b/icons/outline/panorama-horizontal.svg index df560a53a..b3e11a5b7 100644 --- a/icons/outline/panorama-horizontal.svg +++ b/icons/outline/panorama-horizontal.svg @@ -15,5 +15,5 @@ unicode: "ed33" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/panorama-vertical.svg b/icons/outline/panorama-vertical.svg index b0b70587b..4dad44b89 100644 --- a/icons/outline/panorama-vertical.svg +++ b/icons/outline/panorama-vertical.svg @@ -15,5 +15,5 @@ unicode: "ed34" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/paper-bag.svg b/icons/outline/paper-bag.svg index 8ce981b80..6a6b46bbf 100644 --- a/icons/outline/paper-bag.svg +++ b/icons/outline/paper-bag.svg @@ -15,8 +15,8 @@ unicode: "f02f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/parking.svg b/icons/outline/parking.svg index e0e141c52..f3fffcdf5 100644 --- a/icons/outline/parking.svg +++ b/icons/outline/parking.svg @@ -15,6 +15,6 @@ unicode: "eb03" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/paw-off.svg b/icons/outline/paw-off.svg index 7b5cfdf9e..abc5cfc9b 100644 --- a/icons/outline/paw-off.svg +++ b/icons/outline/paw-off.svg @@ -16,9 +16,9 @@ unicode: "f419" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/paw.svg b/icons/outline/paw.svg index 25db852c0..7cbe4529b 100644 --- a/icons/outline/paw.svg +++ b/icons/outline/paw.svg @@ -15,9 +15,9 @@ unicode: "eff9" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/pdf.svg b/icons/outline/pdf.svg index 3ebb9ee2c..4043511d2 100644 --- a/icons/outline/pdf.svg +++ b/icons/outline/pdf.svg @@ -15,7 +15,7 @@ unicode: "f7ac" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/peace.svg b/icons/outline/peace.svg index 4f4a0d3e7..2c5bf412a 100644 --- a/icons/outline/peace.svg +++ b/icons/outline/peace.svg @@ -15,7 +15,7 @@ unicode: "ecbe" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pencil-cancel.svg b/icons/outline/pencil-cancel.svg index b3e2a146e..6e90a0b35 100644 --- a/icons/outline/pencil-cancel.svg +++ b/icons/outline/pencil-cancel.svg @@ -17,6 +17,6 @@ unicode: "fbfe" > - + diff --git a/icons/outline/pencil-cog.svg b/icons/outline/pencil-cog.svg index d4c22c791..44ef3b3dc 100644 --- a/icons/outline/pencil-cog.svg +++ b/icons/outline/pencil-cog.svg @@ -17,7 +17,7 @@ unicode: "fc01" > - + diff --git a/icons/outline/pencil-heart.svg b/icons/outline/pencil-heart.svg index 93153c686..d23cb1ba9 100644 --- a/icons/outline/pencil-heart.svg +++ b/icons/outline/pencil-heart.svg @@ -17,5 +17,5 @@ unicode: "fc06" > - + diff --git a/icons/outline/pencil-pin.svg b/icons/outline/pencil-pin.svg index 17ce6b898..9a35e8b71 100644 --- a/icons/outline/pencil-pin.svg +++ b/icons/outline/pencil-pin.svg @@ -17,6 +17,6 @@ unicode: "fc08" > - + diff --git a/icons/outline/pencil-question.svg b/icons/outline/pencil-question.svg index 406794777..1860987d6 100644 --- a/icons/outline/pencil-question.svg +++ b/icons/outline/pencil-question.svg @@ -15,7 +15,7 @@ unicode: "fc09" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pencil-search.svg b/icons/outline/pencil-search.svg index da234f70b..bb5788785 100644 --- a/icons/outline/pencil-search.svg +++ b/icons/outline/pencil-search.svg @@ -17,6 +17,6 @@ unicode: "fc0a" > - + diff --git a/icons/outline/pencil-star.svg b/icons/outline/pencil-star.svg index ccf68873d..d9bcaa618 100644 --- a/icons/outline/pencil-star.svg +++ b/icons/outline/pencil-star.svg @@ -17,5 +17,5 @@ unicode: "fc0c" > - + diff --git a/icons/outline/pentagon-number-0.svg b/icons/outline/pentagon-number-0.svg index 1ede5e762..7d3138ce6 100644 --- a/icons/outline/pentagon-number-0.svg +++ b/icons/outline/pentagon-number-0.svg @@ -15,6 +15,6 @@ unicode: "fc7e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/pentagon-number-1.svg b/icons/outline/pentagon-number-1.svg index 069a2e317..7fef7f0d8 100644 --- a/icons/outline/pentagon-number-1.svg +++ b/icons/outline/pentagon-number-1.svg @@ -15,6 +15,6 @@ unicode: "fc7f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-2.svg b/icons/outline/pentagon-number-2.svg index 94174d1d8..25ab675ae 100644 --- a/icons/outline/pentagon-number-2.svg +++ b/icons/outline/pentagon-number-2.svg @@ -15,6 +15,6 @@ unicode: "fc80" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-3.svg b/icons/outline/pentagon-number-3.svg index 9a938f8f4..329f13ec8 100644 --- a/icons/outline/pentagon-number-3.svg +++ b/icons/outline/pentagon-number-3.svg @@ -15,6 +15,6 @@ unicode: "fc81" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-4.svg b/icons/outline/pentagon-number-4.svg index a3ee80d1f..a74ab24fa 100644 --- a/icons/outline/pentagon-number-4.svg +++ b/icons/outline/pentagon-number-4.svg @@ -15,7 +15,7 @@ unicode: "fc82" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-5.svg b/icons/outline/pentagon-number-5.svg index ba753e447..91c17e154 100644 --- a/icons/outline/pentagon-number-5.svg +++ b/icons/outline/pentagon-number-5.svg @@ -15,6 +15,6 @@ unicode: "fc83" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-6.svg b/icons/outline/pentagon-number-6.svg index 22ca2b9f6..12cf4362a 100644 --- a/icons/outline/pentagon-number-6.svg +++ b/icons/outline/pentagon-number-6.svg @@ -15,6 +15,6 @@ unicode: "fc84" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-7.svg b/icons/outline/pentagon-number-7.svg index 709ff5b97..12759fa39 100644 --- a/icons/outline/pentagon-number-7.svg +++ b/icons/outline/pentagon-number-7.svg @@ -15,6 +15,6 @@ unicode: "fc85" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-8.svg b/icons/outline/pentagon-number-8.svg index 2284f5f6b..be676d294 100644 --- a/icons/outline/pentagon-number-8.svg +++ b/icons/outline/pentagon-number-8.svg @@ -15,6 +15,6 @@ unicode: "fc86" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-number-9.svg b/icons/outline/pentagon-number-9.svg index aa1ad1160..4913413e9 100644 --- a/icons/outline/pentagon-number-9.svg +++ b/icons/outline/pentagon-number-9.svg @@ -15,6 +15,6 @@ unicode: "fc87" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon-x.svg b/icons/outline/pentagon-x.svg index 0cd577258..0b0cf436b 100644 --- a/icons/outline/pentagon-x.svg +++ b/icons/outline/pentagon-x.svg @@ -15,7 +15,7 @@ unicode: "fc88" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagon.svg b/icons/outline/pentagon.svg index 43a828e87..579064b88 100644 --- a/icons/outline/pentagon.svg +++ b/icons/outline/pentagon.svg @@ -15,5 +15,5 @@ unicode: "efe3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pentagram.svg b/icons/outline/pentagram.svg index 8503d0c65..938fdaec8 100644 --- a/icons/outline/pentagram.svg +++ b/icons/outline/pentagram.svg @@ -15,6 +15,6 @@ unicode: "f586" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/percentage-10.svg b/icons/outline/percentage-10.svg index 5b754b8c1..64c0e1d4a 100644 --- a/icons/outline/percentage-10.svg +++ b/icons/outline/percentage-10.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-20.svg b/icons/outline/percentage-20.svg index d9c6efc2a..985942147 100644 --- a/icons/outline/percentage-20.svg +++ b/icons/outline/percentage-20.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-30.svg b/icons/outline/percentage-30.svg index 906717152..d674083c0 100644 --- a/icons/outline/percentage-30.svg +++ b/icons/outline/percentage-30.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-33.svg b/icons/outline/percentage-33.svg index ccffe602b..3504c89ed 100644 --- a/icons/outline/percentage-33.svg +++ b/icons/outline/percentage-33.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-40.svg b/icons/outline/percentage-40.svg index f72e5b7aa..933d70f19 100644 --- a/icons/outline/percentage-40.svg +++ b/icons/outline/percentage-40.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-60.svg b/icons/outline/percentage-60.svg index 44d3ab096..619d3099a 100644 --- a/icons/outline/percentage-60.svg +++ b/icons/outline/percentage-60.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-66.svg b/icons/outline/percentage-66.svg index 9580f9948..7d2157c7e 100644 --- a/icons/outline/percentage-66.svg +++ b/icons/outline/percentage-66.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-70.svg b/icons/outline/percentage-70.svg index ecb186bbe..34a4ef067 100644 --- a/icons/outline/percentage-70.svg +++ b/icons/outline/percentage-70.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-80.svg b/icons/outline/percentage-80.svg index 1879c46ed..f5cc207e3 100644 --- a/icons/outline/percentage-80.svg +++ b/icons/outline/percentage-80.svg @@ -15,6 +15,6 @@ unicode: "fed8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage-90.svg b/icons/outline/percentage-90.svg index 501d03276..5d63067f6 100644 --- a/icons/outline/percentage-90.svg +++ b/icons/outline/percentage-90.svg @@ -15,6 +15,6 @@ version: "3.4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/percentage.svg b/icons/outline/percentage.svg index fc8c6a48f..84d7ac07f 100644 --- a/icons/outline/percentage.svg +++ b/icons/outline/percentage.svg @@ -15,7 +15,7 @@ unicode: "ecf4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/perfume.svg b/icons/outline/perfume.svg index 0499d9459..8e6efaf78 100644 --- a/icons/outline/perfume.svg +++ b/icons/outline/perfume.svg @@ -17,7 +17,7 @@ unicode: "f509" > - - - + + + diff --git a/icons/outline/perspective.svg b/icons/outline/perspective.svg index e7c54db95..dc893ff7f 100644 --- a/icons/outline/perspective.svg +++ b/icons/outline/perspective.svg @@ -15,5 +15,5 @@ unicode: "eebd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/photo-cancel.svg b/icons/outline/photo-cancel.svg index 71e71e8f2..03cae7bff 100644 --- a/icons/outline/photo-cancel.svg +++ b/icons/outline/photo-cancel.svg @@ -19,6 +19,6 @@ unicode: "f35d" - + diff --git a/icons/outline/photo-cog.svg b/icons/outline/photo-cog.svg index 5c3ba4c1b..821e91b32 100644 --- a/icons/outline/photo-cog.svg +++ b/icons/outline/photo-cog.svg @@ -19,7 +19,7 @@ unicode: "f992" - + diff --git a/icons/outline/photo-edit.svg b/icons/outline/photo-edit.svg index 10f413613..f50462a26 100644 --- a/icons/outline/photo-edit.svg +++ b/icons/outline/photo-edit.svg @@ -19,5 +19,5 @@ unicode: "f360" - + diff --git a/icons/outline/photo-heart.svg b/icons/outline/photo-heart.svg index 3a043d398..1467b8b65 100644 --- a/icons/outline/photo-heart.svg +++ b/icons/outline/photo-heart.svg @@ -18,5 +18,5 @@ unicode: "f361" - + diff --git a/icons/outline/photo-hexagon.svg b/icons/outline/photo-hexagon.svg index 8031c50ec..456331a64 100644 --- a/icons/outline/photo-hexagon.svg +++ b/icons/outline/photo-hexagon.svg @@ -16,7 +16,7 @@ unicode: "fc4b" stroke-linejoin="round" > - + diff --git a/icons/outline/photo-pentagon.svg b/icons/outline/photo-pentagon.svg index f4bdb40b4..4c7d140b6 100644 --- a/icons/outline/photo-pentagon.svg +++ b/icons/outline/photo-pentagon.svg @@ -15,7 +15,7 @@ unicode: "fc4c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/photo-pin.svg b/icons/outline/photo-pin.svg index b7650923f..941fd5b23 100644 --- a/icons/outline/photo-pin.svg +++ b/icons/outline/photo-pin.svg @@ -18,6 +18,6 @@ unicode: "f996" - + diff --git a/icons/outline/photo-search.svg b/icons/outline/photo-search.svg index 0e6b5dcff..1786d5718 100644 --- a/icons/outline/photo-search.svg +++ b/icons/outline/photo-search.svg @@ -17,7 +17,7 @@ unicode: "f364" > - + diff --git a/icons/outline/photo-sensor-2.svg b/icons/outline/photo-sensor-2.svg index 0d902a25f..f1840a612 100644 --- a/icons/outline/photo-sensor-2.svg +++ b/icons/outline/photo-sensor-2.svg @@ -17,5 +17,5 @@ unicode: "f796" > - + diff --git a/icons/outline/photo-sensor-3.svg b/icons/outline/photo-sensor-3.svg index 4732362f5..7ae467e65 100644 --- a/icons/outline/photo-sensor-3.svg +++ b/icons/outline/photo-sensor-3.svg @@ -19,7 +19,7 @@ unicode: "f797" - + diff --git a/icons/outline/photo-sensor.svg b/icons/outline/photo-sensor.svg index f616255ec..43bf58b68 100644 --- a/icons/outline/photo-sensor.svg +++ b/icons/outline/photo-sensor.svg @@ -19,5 +19,5 @@ unicode: "f798" - + diff --git a/icons/outline/photo-shield.svg b/icons/outline/photo-shield.svg index f6529b6a5..1b132c9e3 100644 --- a/icons/outline/photo-shield.svg +++ b/icons/outline/photo-shield.svg @@ -18,5 +18,5 @@ unicode: "f365" - + diff --git a/icons/outline/photo-square-rounded.svg b/icons/outline/photo-square-rounded.svg index 85f500b37..0a5015708 100644 --- a/icons/outline/photo-square-rounded.svg +++ b/icons/outline/photo-square-rounded.svg @@ -16,7 +16,7 @@ unicode: "fc4d" stroke-linejoin="round" > - + diff --git a/icons/outline/photo-star.svg b/icons/outline/photo-star.svg index c81e8758a..83110f450 100644 --- a/icons/outline/photo-star.svg +++ b/icons/outline/photo-star.svg @@ -18,5 +18,5 @@ unicode: "f366" - + diff --git a/icons/outline/photo-video.svg b/icons/outline/photo-video.svg index e41cf63c6..57a6479cb 100644 --- a/icons/outline/photo-video.svg +++ b/icons/outline/photo-video.svg @@ -16,8 +16,8 @@ unicode: "fc95" stroke-linejoin="round" > - + - + diff --git a/icons/outline/photo.svg b/icons/outline/photo.svg index a663c5cb8..cb045412b 100644 --- a/icons/outline/photo.svg +++ b/icons/outline/photo.svg @@ -16,7 +16,7 @@ unicode: "eb0a" stroke-linejoin="round" > - + diff --git a/icons/outline/physotherapist.svg b/icons/outline/physotherapist.svg index 75636c1d9..ef678f023 100644 --- a/icons/outline/physotherapist.svg +++ b/icons/outline/physotherapist.svg @@ -16,8 +16,8 @@ unicode: "eebe" stroke-linejoin="round" > - - + + diff --git a/icons/outline/piano.svg b/icons/outline/piano.svg index 40da86c70..3695777cd 100644 --- a/icons/outline/piano.svg +++ b/icons/outline/piano.svg @@ -15,7 +15,7 @@ unicode: "fad3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pick.svg b/icons/outline/pick.svg index f1678e44d..3aa54f174 100644 --- a/icons/outline/pick.svg +++ b/icons/outline/pick.svg @@ -16,5 +16,5 @@ unicode: "fafc" stroke-linejoin="round" > - + diff --git a/icons/outline/picture-in-picture-off.svg b/icons/outline/picture-in-picture-off.svg index b8d035d99..928d0eceb 100644 --- a/icons/outline/picture-in-picture-off.svg +++ b/icons/outline/picture-in-picture-off.svg @@ -16,7 +16,7 @@ unicode: "ed43" stroke-linejoin="round" > - + diff --git a/icons/outline/picture-in-picture-on.svg b/icons/outline/picture-in-picture-on.svg index 1e8527e00..8adca940a 100644 --- a/icons/outline/picture-in-picture-on.svg +++ b/icons/outline/picture-in-picture-on.svg @@ -16,7 +16,7 @@ unicode: "ed44" stroke-linejoin="round" > - + diff --git a/icons/outline/picture-in-picture-top.svg b/icons/outline/picture-in-picture-top.svg index 3c6e743e1..b4d1f6934 100644 --- a/icons/outline/picture-in-picture-top.svg +++ b/icons/outline/picture-in-picture-top.svg @@ -16,5 +16,5 @@ unicode: "efe4" stroke-linejoin="round" > - + diff --git a/icons/outline/picture-in-picture.svg b/icons/outline/picture-in-picture.svg index cfeac2052..a01a93bd0 100644 --- a/icons/outline/picture-in-picture.svg +++ b/icons/outline/picture-in-picture.svg @@ -16,5 +16,5 @@ unicode: "ed35" stroke-linejoin="round" > - + diff --git a/icons/outline/pig-money.svg b/icons/outline/pig-money.svg index b135b8378..fc28719e2 100644 --- a/icons/outline/pig-money.svg +++ b/icons/outline/pig-money.svg @@ -17,5 +17,5 @@ unicode: "f38c" > - + diff --git a/icons/outline/pig.svg b/icons/outline/pig.svg index 6f06fc3b8..3a3ccc6c2 100644 --- a/icons/outline/pig.svg +++ b/icons/outline/pig.svg @@ -16,5 +16,5 @@ unicode: "ef52" stroke-linejoin="round" > - + diff --git a/icons/outline/pills.svg b/icons/outline/pills.svg index e014c6f46..e1fe896cb 100644 --- a/icons/outline/pills.svg +++ b/icons/outline/pills.svg @@ -15,8 +15,8 @@ unicode: "ef66" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/pin-end.svg b/icons/outline/pin-end.svg index 141935864..b926b5c3e 100644 --- a/icons/outline/pin-end.svg +++ b/icons/outline/pin-end.svg @@ -16,7 +16,7 @@ unicode: "fd5b" stroke-linejoin="round" > - + diff --git a/icons/outline/pin-invoke.svg b/icons/outline/pin-invoke.svg index 22f8cb7b9..360b7a4a5 100644 --- a/icons/outline/pin-invoke.svg +++ b/icons/outline/pin-invoke.svg @@ -16,7 +16,7 @@ unicode: "fd5c" stroke-linejoin="round" > - + diff --git a/icons/outline/ping-pong.svg b/icons/outline/ping-pong.svg index f3b401f4b..bea33ec44 100644 --- a/icons/outline/ping-pong.svg +++ b/icons/outline/ping-pong.svg @@ -16,6 +16,6 @@ unicode: "f38d" stroke-linejoin="round" > - + diff --git a/icons/outline/pizza.svg b/icons/outline/pizza.svg index 7e77156cb..ed29b9eec 100644 --- a/icons/outline/pizza.svg +++ b/icons/outline/pizza.svg @@ -15,7 +15,7 @@ unicode: "edbb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/placeholder.svg b/icons/outline/placeholder.svg index 73cf37e26..3642f0d0b 100644 --- a/icons/outline/placeholder.svg +++ b/icons/outline/placeholder.svg @@ -17,5 +17,5 @@ unicode: "f626" > - + diff --git a/icons/outline/plane-arrival.svg b/icons/outline/plane-arrival.svg index cd109603a..39d4ff712 100644 --- a/icons/outline/plane-arrival.svg +++ b/icons/outline/plane-arrival.svg @@ -15,6 +15,6 @@ unicode: "eb99" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/plane-departure.svg b/icons/outline/plane-departure.svg index 49e7f9c45..05df4099e 100644 --- a/icons/outline/plane-departure.svg +++ b/icons/outline/plane-departure.svg @@ -15,6 +15,6 @@ unicode: "eb9a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/plane-inflight.svg b/icons/outline/plane-inflight.svg index 86c7e2477..2df88eef9 100644 --- a/icons/outline/plane-inflight.svg +++ b/icons/outline/plane-inflight.svg @@ -15,6 +15,6 @@ unicode: "ef98" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/plane-tilt.svg b/icons/outline/plane-tilt.svg index b7a99a173..af253c7a7 100644 --- a/icons/outline/plane-tilt.svg +++ b/icons/outline/plane-tilt.svg @@ -15,5 +15,5 @@ unicode: "f1ed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/plane.svg b/icons/outline/plane.svg index 48df984e9..9e9e29dc7 100644 --- a/icons/outline/plane.svg +++ b/icons/outline/plane.svg @@ -15,5 +15,5 @@ unicode: "eb6f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/planet-off.svg b/icons/outline/planet-off.svg index 649c41a1b..bac5ad7fb 100644 --- a/icons/outline/planet-off.svg +++ b/icons/outline/planet-off.svg @@ -15,7 +15,6 @@ unicode: "f17b" stroke-linecap="round" stroke-linejoin="round" > - diff --git a/icons/outline/planet.svg b/icons/outline/planet.svg index 6df7b7bfa..1b2ee788e 100644 --- a/icons/outline/planet.svg +++ b/icons/outline/planet.svg @@ -16,5 +16,5 @@ unicode: "ec08" stroke-linejoin="round" > - + diff --git a/icons/outline/plant.svg b/icons/outline/plant.svg index 684568262..da7aff3ed 100644 --- a/icons/outline/plant.svg +++ b/icons/outline/plant.svg @@ -15,7 +15,7 @@ unicode: "ed50" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/play-basketball.svg b/icons/outline/play-basketball.svg index 402bff645..ecf499313 100644 --- a/icons/outline/play-basketball.svg +++ b/icons/outline/play-basketball.svg @@ -19,5 +19,5 @@ unicode: "fa66" - + diff --git a/icons/outline/play-card-10.svg b/icons/outline/play-card-10.svg index 0982800c5..5b962488d 100644 --- a/icons/outline/play-card-10.svg +++ b/icons/outline/play-card-10.svg @@ -19,5 +19,5 @@ version: "3.18" - + diff --git a/icons/outline/play-card-8.svg b/icons/outline/play-card-8.svg index 3340d1b97..e062b0fc0 100644 --- a/icons/outline/play-card-8.svg +++ b/icons/outline/play-card-8.svg @@ -18,6 +18,6 @@ version: "3.18" - + diff --git a/icons/outline/play-card-star.svg b/icons/outline/play-card-star.svg index 9551150e5..1495d2b86 100644 --- a/icons/outline/play-card-star.svg +++ b/icons/outline/play-card-star.svg @@ -18,5 +18,5 @@ version: "3.18" - + diff --git a/icons/outline/play-card.svg b/icons/outline/play-card.svg index 040d51ebe..e6061154f 100644 --- a/icons/outline/play-card.svg +++ b/icons/outline/play-card.svg @@ -15,8 +15,8 @@ unicode: "eebf" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/play-football.svg b/icons/outline/play-football.svg index 26c2388be..79f84697d 100644 --- a/icons/outline/play-football.svg +++ b/icons/outline/play-football.svg @@ -19,5 +19,5 @@ unicode: "fa67" - + diff --git a/icons/outline/play-handball.svg b/icons/outline/play-handball.svg index b1d608f32..6e03aa451 100644 --- a/icons/outline/play-handball.svg +++ b/icons/outline/play-handball.svg @@ -19,5 +19,5 @@ unicode: "fa68" - + diff --git a/icons/outline/play-volleyball.svg b/icons/outline/play-volleyball.svg index e8171a135..d5d50dbf6 100644 --- a/icons/outline/play-volleyball.svg +++ b/icons/outline/play-volleyball.svg @@ -16,7 +16,7 @@ unicode: "fa69" stroke-linejoin="round" > - + diff --git a/icons/outline/player-eject.svg b/icons/outline/player-eject.svg index c2c84ec58..018d5e368 100644 --- a/icons/outline/player-eject.svg +++ b/icons/outline/player-eject.svg @@ -15,6 +15,6 @@ unicode: "efbc" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/player-pause.svg b/icons/outline/player-pause.svg index 6d9a2d080..b2a2a253d 100644 --- a/icons/outline/player-pause.svg +++ b/icons/outline/player-pause.svg @@ -15,6 +15,6 @@ unicode: "ed45" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/player-play.svg b/icons/outline/player-play.svg index 33a0a9270..bb84dbe9e 100644 --- a/icons/outline/player-play.svg +++ b/icons/outline/player-play.svg @@ -15,5 +15,5 @@ unicode: "ed46" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/player-record.svg b/icons/outline/player-record.svg index 6d13e9a4b..9b20c0378 100644 --- a/icons/outline/player-record.svg +++ b/icons/outline/player-record.svg @@ -15,5 +15,5 @@ unicode: "ed47" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/player-skip-back.svg b/icons/outline/player-skip-back.svg index 0281cdf1b..43bc5ba2e 100644 --- a/icons/outline/player-skip-back.svg +++ b/icons/outline/player-skip-back.svg @@ -15,6 +15,6 @@ unicode: "ed48" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/player-skip-forward.svg b/icons/outline/player-skip-forward.svg index b3b7cb709..51a55243d 100644 --- a/icons/outline/player-skip-forward.svg +++ b/icons/outline/player-skip-forward.svg @@ -15,6 +15,6 @@ unicode: "ed49" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/player-stop.svg b/icons/outline/player-stop.svg index 6a0d8d135..3b17dfd1a 100644 --- a/icons/outline/player-stop.svg +++ b/icons/outline/player-stop.svg @@ -15,5 +15,5 @@ unicode: "ed4a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/player-track-next.svg b/icons/outline/player-track-next.svg index f57d5b972..d593e468b 100644 --- a/icons/outline/player-track-next.svg +++ b/icons/outline/player-track-next.svg @@ -15,6 +15,6 @@ unicode: "ed4b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/player-track-prev.svg b/icons/outline/player-track-prev.svg index 439b3d017..87a67c0a1 100644 --- a/icons/outline/player-track-prev.svg +++ b/icons/outline/player-track-prev.svg @@ -15,6 +15,6 @@ unicode: "ed4c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/playlist.svg b/icons/outline/playlist.svg index dd1860280..6388c5833 100644 --- a/icons/outline/playlist.svg +++ b/icons/outline/playlist.svg @@ -15,7 +15,7 @@ unicode: "eec0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/playstation-circle.svg b/icons/outline/playstation-circle.svg index 0f585e797..2bfada57e 100644 --- a/icons/outline/playstation-circle.svg +++ b/icons/outline/playstation-circle.svg @@ -15,6 +15,6 @@ unicode: "f2ad" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/playstation-square.svg b/icons/outline/playstation-square.svg index 42da7caf0..20dd4b8e0 100644 --- a/icons/outline/playstation-square.svg +++ b/icons/outline/playstation-square.svg @@ -15,6 +15,6 @@ unicode: "f2ae" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/playstation-triangle.svg b/icons/outline/playstation-triangle.svg index 0734fd57c..12ac0ca71 100644 --- a/icons/outline/playstation-triangle.svg +++ b/icons/outline/playstation-triangle.svg @@ -15,6 +15,6 @@ unicode: "f2af" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/playstation-x.svg b/icons/outline/playstation-x.svg index 2191cda39..a48f359fe 100644 --- a/icons/outline/playstation-x.svg +++ b/icons/outline/playstation-x.svg @@ -15,7 +15,7 @@ unicode: "f2b0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/plug-connected-x.svg b/icons/outline/plug-connected-x.svg index 4103a696d..e961f507a 100644 --- a/icons/outline/plug-connected-x.svg +++ b/icons/outline/plug-connected-x.svg @@ -16,8 +16,8 @@ unicode: "f0a0" stroke-linejoin="round" > - - + + diff --git a/icons/outline/plug-connected.svg b/icons/outline/plug-connected.svg index 763e31d0a..bf0cc8bd5 100644 --- a/icons/outline/plug-connected.svg +++ b/icons/outline/plug-connected.svg @@ -15,8 +15,8 @@ unicode: "f00a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/plug.svg b/icons/outline/plug.svg index 29c5a033f..44dc214a6 100644 --- a/icons/outline/plug.svg +++ b/icons/outline/plug.svg @@ -15,7 +15,7 @@ unicode: "ebd9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/podium.svg b/icons/outline/podium.svg index 5e60ac7a8..9e0fcb771 100644 --- a/icons/outline/podium.svg +++ b/icons/outline/podium.svg @@ -15,7 +15,7 @@ unicode: "f1d8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/point.svg b/icons/outline/point.svg index bcbc638c3..2783f9a57 100644 --- a/icons/outline/point.svg +++ b/icons/outline/point.svg @@ -15,5 +15,5 @@ unicode: "eb0c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-cancel.svg b/icons/outline/pointer-cancel.svg index 0c8b44599..c31017f15 100644 --- a/icons/outline/pointer-cancel.svg +++ b/icons/outline/pointer-cancel.svg @@ -16,6 +16,6 @@ unicode: "f99a" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-cog.svg b/icons/outline/pointer-cog.svg index 2e15a0984..307f6399f 100644 --- a/icons/outline/pointer-cog.svg +++ b/icons/outline/pointer-cog.svg @@ -16,7 +16,7 @@ unicode: "f99d" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-heart.svg b/icons/outline/pointer-heart.svg index 7048c6657..d1543a40a 100644 --- a/icons/outline/pointer-heart.svg +++ b/icons/outline/pointer-heart.svg @@ -16,5 +16,5 @@ unicode: "f9a1" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-pin.svg b/icons/outline/pointer-pin.svg index 2c0ae7ddc..fef574e9d 100644 --- a/icons/outline/pointer-pin.svg +++ b/icons/outline/pointer-pin.svg @@ -16,6 +16,6 @@ unicode: "f9a5" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-search.svg b/icons/outline/pointer-search.svg index 6134812c0..79f02a5c5 100644 --- a/icons/outline/pointer-search.svg +++ b/icons/outline/pointer-search.svg @@ -16,6 +16,6 @@ unicode: "f9a8" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer-star.svg b/icons/outline/pointer-star.svg index 6c500530f..86f972b7c 100644 --- a/icons/outline/pointer-star.svg +++ b/icons/outline/pointer-star.svg @@ -16,5 +16,5 @@ unicode: "f9aa" stroke-linejoin="round" > - + diff --git a/icons/outline/pointer.svg b/icons/outline/pointer.svg index b33e01b7d..798362fee 100644 --- a/icons/outline/pointer.svg +++ b/icons/outline/pointer.svg @@ -15,5 +15,5 @@ unicode: "f265" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pokeball.svg b/icons/outline/pokeball.svg index 83618cd90..38447b33e 100644 --- a/icons/outline/pokeball.svg +++ b/icons/outline/pokeball.svg @@ -15,8 +15,8 @@ unicode: "eec1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/poker-chip.svg b/icons/outline/poker-chip.svg index 5a45f80e5..919b7775e 100644 --- a/icons/outline/poker-chip.svg +++ b/icons/outline/poker-chip.svg @@ -15,8 +15,8 @@ unicode: "f515" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/polaroid.svg b/icons/outline/polaroid.svg index b17c7469a..f2e017987 100644 --- a/icons/outline/polaroid.svg +++ b/icons/outline/polaroid.svg @@ -15,7 +15,7 @@ unicode: "eec2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/polygon-off.svg b/icons/outline/polygon-off.svg index 8a614c541..97dc5b252 100644 --- a/icons/outline/polygon-off.svg +++ b/icons/outline/polygon-off.svg @@ -15,10 +15,10 @@ unicode: "f182" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/polygon.svg b/icons/outline/polygon.svg index 6c662e130..c82bcb417 100644 --- a/icons/outline/polygon.svg +++ b/icons/outline/polygon.svg @@ -15,10 +15,10 @@ unicode: "efd0" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/poo.svg b/icons/outline/poo.svg index 37064d081..75a0534c5 100644 --- a/icons/outline/poo.svg +++ b/icons/outline/poo.svg @@ -18,5 +18,5 @@ unicode: "f258" - + diff --git a/icons/outline/pray.svg b/icons/outline/pray.svg index e991e7ef9..d71844caa 100644 --- a/icons/outline/pray.svg +++ b/icons/outline/pray.svg @@ -15,6 +15,6 @@ unicode: "ecbf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/premium-rights.svg b/icons/outline/premium-rights.svg index a4beee0e8..3d90c5708 100644 --- a/icons/outline/premium-rights.svg +++ b/icons/outline/premium-rights.svg @@ -15,7 +15,7 @@ unicode: "efbd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/printer.svg b/icons/outline/printer.svg index 29af343e4..7a662f1df 100644 --- a/icons/outline/printer.svg +++ b/icons/outline/printer.svg @@ -17,5 +17,5 @@ unicode: "eb0e" > - + diff --git a/icons/outline/prism.svg b/icons/outline/prism.svg index 90721c741..9cbd29409 100644 --- a/icons/outline/prism.svg +++ b/icons/outline/prism.svg @@ -16,6 +16,6 @@ unicode: "fab1" stroke-linejoin="round" > - + diff --git a/icons/outline/prison.svg b/icons/outline/prison.svg index 430fb891c..a40c9bf6e 100644 --- a/icons/outline/prison.svg +++ b/icons/outline/prison.svg @@ -20,7 +20,7 @@ unicode: "ef79" - + diff --git a/icons/outline/prong.svg b/icons/outline/prong.svg index 2d0afa744..64025eb71 100644 --- a/icons/outline/prong.svg +++ b/icons/outline/prong.svg @@ -16,6 +16,6 @@ unicode: "fda1" stroke-linejoin="round" > - + diff --git a/icons/outline/propeller.svg b/icons/outline/propeller.svg index 2a773ce22..e24159834 100644 --- a/icons/outline/propeller.svg +++ b/icons/outline/propeller.svg @@ -15,7 +15,7 @@ unicode: "eec4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pumpkin-scary.svg b/icons/outline/pumpkin-scary.svg index c1b88b01f..db69a72ad 100644 --- a/icons/outline/pumpkin-scary.svg +++ b/icons/outline/pumpkin-scary.svg @@ -18,6 +18,6 @@ unicode: "f587" - + diff --git a/icons/outline/puzzle-2.svg b/icons/outline/puzzle-2.svg index 5790bb3d5..ea7ed3db0 100644 --- a/icons/outline/puzzle-2.svg +++ b/icons/outline/puzzle-2.svg @@ -15,7 +15,7 @@ unicode: "ef83" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/pyramid.svg b/icons/outline/pyramid.svg index bd17254bc..303bfb836 100644 --- a/icons/outline/pyramid.svg +++ b/icons/outline/pyramid.svg @@ -15,6 +15,6 @@ unicode: "eec5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/qrcode-off.svg b/icons/outline/qrcode-off.svg index a351621d6..57e3dd60d 100644 --- a/icons/outline/qrcode-off.svg +++ b/icons/outline/qrcode-off.svg @@ -17,9 +17,9 @@ unicode: "f41e" > - + - + diff --git a/icons/outline/qrcode.svg b/icons/outline/qrcode.svg index f94269dc6..6b18739e4 100644 --- a/icons/outline/qrcode.svg +++ b/icons/outline/qrcode.svg @@ -15,11 +15,11 @@ unicode: "eb11" stroke-linecap="round" stroke-linejoin="round" > - + - + - + diff --git a/icons/outline/radar-2.svg b/icons/outline/radar-2.svg index 5ba8bcdac..4a4191991 100644 --- a/icons/outline/radar-2.svg +++ b/icons/outline/radar-2.svg @@ -15,7 +15,7 @@ unicode: "f016" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rainbow.svg b/icons/outline/rainbow.svg index 268370e80..29bed3990 100644 --- a/icons/outline/rainbow.svg +++ b/icons/outline/rainbow.svg @@ -15,7 +15,7 @@ unicode: "edbc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rating-12-plus.svg b/icons/outline/rating-12-plus.svg index bfcb40c98..c12f60100 100644 --- a/icons/outline/rating-12-plus.svg +++ b/icons/outline/rating-12-plus.svg @@ -15,7 +15,7 @@ unicode: "f266" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rating-14-plus.svg b/icons/outline/rating-14-plus.svg index 1fa4a387e..e4d6c9344 100644 --- a/icons/outline/rating-14-plus.svg +++ b/icons/outline/rating-14-plus.svg @@ -15,7 +15,7 @@ unicode: "f267" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rating-16-plus.svg b/icons/outline/rating-16-plus.svg index 079cd0c55..1846b5c35 100644 --- a/icons/outline/rating-16-plus.svg +++ b/icons/outline/rating-16-plus.svg @@ -15,8 +15,8 @@ unicode: "f268" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/rating-18-plus.svg b/icons/outline/rating-18-plus.svg index bc7299003..95a283c33 100644 --- a/icons/outline/rating-18-plus.svg +++ b/icons/outline/rating-18-plus.svg @@ -15,9 +15,9 @@ unicode: "f269" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/rating-21-plus.svg b/icons/outline/rating-21-plus.svg index 059d03c01..89c2db828 100644 --- a/icons/outline/rating-21-plus.svg +++ b/icons/outline/rating-21-plus.svg @@ -15,7 +15,7 @@ unicode: "f26a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/razor-electric.svg b/icons/outline/razor-electric.svg index 3bff28494..7af40497b 100644 --- a/icons/outline/razor-electric.svg +++ b/icons/outline/razor-electric.svg @@ -18,7 +18,7 @@ unicode: "f4b4" - - + + diff --git a/icons/outline/razor.svg b/icons/outline/razor.svg index b092e0027..188de315f 100644 --- a/icons/outline/razor.svg +++ b/icons/outline/razor.svg @@ -15,7 +15,7 @@ unicode: "f4b5" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/receipt-tax.svg b/icons/outline/receipt-tax.svg index b00116b6a..b86e4436c 100644 --- a/icons/outline/receipt-tax.svg +++ b/icons/outline/receipt-tax.svg @@ -16,7 +16,7 @@ unicode: "edbd" stroke-linejoin="round" > - - + + diff --git a/icons/outline/record-mail-off.svg b/icons/outline/record-mail-off.svg index e28fd1e17..f933580c4 100644 --- a/icons/outline/record-mail-off.svg +++ b/icons/outline/record-mail-off.svg @@ -15,7 +15,7 @@ unicode: "f18b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/record-mail.svg b/icons/outline/record-mail.svg index 4911eaf8b..22c8c91cb 100644 --- a/icons/outline/record-mail.svg +++ b/icons/outline/record-mail.svg @@ -15,7 +15,7 @@ unicode: "eb12" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/rectangle-rounded-bottom.svg b/icons/outline/rectangle-rounded-bottom.svg index 4471b09de..1fd7ce2b4 100644 --- a/icons/outline/rectangle-rounded-bottom.svg +++ b/icons/outline/rectangle-rounded-bottom.svg @@ -15,5 +15,5 @@ unicode: "faed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rectangle-rounded-top.svg b/icons/outline/rectangle-rounded-top.svg index f485c0bc6..e5165aa1b 100644 --- a/icons/outline/rectangle-rounded-top.svg +++ b/icons/outline/rectangle-rounded-top.svg @@ -15,5 +15,5 @@ unicode: "faee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rectangle-vertical.svg b/icons/outline/rectangle-vertical.svg index a0ddd40f0..177260568 100644 --- a/icons/outline/rectangle-vertical.svg +++ b/icons/outline/rectangle-vertical.svg @@ -15,5 +15,5 @@ unicode: "ed36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rectangle.svg b/icons/outline/rectangle.svg index dd762f8c8..65e9bc3e2 100644 --- a/icons/outline/rectangle.svg +++ b/icons/outline/rectangle.svg @@ -15,5 +15,5 @@ unicode: "ed37" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rectangular-prism.svg b/icons/outline/rectangular-prism.svg index b5cdff880..2c02b6087 100644 --- a/icons/outline/rectangular-prism.svg +++ b/icons/outline/rectangular-prism.svg @@ -15,7 +15,7 @@ unicode: "fab5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/refresh-dot.svg b/icons/outline/refresh-dot.svg index c2db35d8e..c2ffa98c2 100644 --- a/icons/outline/refresh-dot.svg +++ b/icons/outline/refresh-dot.svg @@ -17,5 +17,5 @@ unicode: "efbf" > - + diff --git a/icons/outline/regex-off.svg b/icons/outline/regex-off.svg index 72b1683c2..678d97871 100644 --- a/icons/outline/regex-off.svg +++ b/icons/outline/regex-off.svg @@ -15,7 +15,7 @@ unicode: "f421" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/regex.svg b/icons/outline/regex.svg index 5bb38a19e..26a59a333 100644 --- a/icons/outline/regex.svg +++ b/icons/outline/regex.svg @@ -15,7 +15,7 @@ unicode: "f31f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/registered.svg b/icons/outline/registered.svg index 8b60e5b0c..5b32a9b97 100644 --- a/icons/outline/registered.svg +++ b/icons/outline/registered.svg @@ -15,7 +15,7 @@ unicode: "eb14" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/relation-many-to-many.svg b/icons/outline/relation-many-to-many.svg index 0eaef2565..ca9f00748 100644 --- a/icons/outline/relation-many-to-many.svg +++ b/icons/outline/relation-many-to-many.svg @@ -15,7 +15,7 @@ unicode: "ed7f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/relation-one-to-many.svg b/icons/outline/relation-one-to-many.svg index db9faefcb..5d75f1006 100644 --- a/icons/outline/relation-one-to-many.svg +++ b/icons/outline/relation-one-to-many.svg @@ -15,7 +15,7 @@ unicode: "ed80" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/relation-one-to-one.svg b/icons/outline/relation-one-to-one.svg index 824e4a9af..85c0c5b73 100644 --- a/icons/outline/relation-one-to-one.svg +++ b/icons/outline/relation-one-to-one.svg @@ -15,7 +15,7 @@ unicode: "ed81" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/reorder.svg b/icons/outline/reorder.svg index 611e1332e..ff458fbcf 100644 --- a/icons/outline/reorder.svg +++ b/icons/outline/reorder.svg @@ -15,9 +15,9 @@ unicode: "fc15" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/replace-user.svg b/icons/outline/replace-user.svg index 526946a95..569f1fe74 100644 --- a/icons/outline/replace-user.svg +++ b/icons/outline/replace-user.svg @@ -17,8 +17,8 @@ version: "3.27" > - - + + diff --git a/icons/outline/replace.svg b/icons/outline/replace.svg index 54c3a21c0..82904656f 100644 --- a/icons/outline/replace.svg +++ b/icons/outline/replace.svg @@ -15,8 +15,8 @@ unicode: "ebc7" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/report-analytics.svg b/icons/outline/report-analytics.svg index 1592ef34f..7f70361a7 100644 --- a/icons/outline/report-analytics.svg +++ b/icons/outline/report-analytics.svg @@ -16,7 +16,7 @@ unicode: "eecb" stroke-linejoin="round" > - + diff --git a/icons/outline/report-medical.svg b/icons/outline/report-medical.svg index 6cdf92583..ceb7f771f 100644 --- a/icons/outline/report-medical.svg +++ b/icons/outline/report-medical.svg @@ -16,7 +16,7 @@ unicode: "eecc" stroke-linejoin="round" > - + diff --git a/icons/outline/report-money.svg b/icons/outline/report-money.svg index 278c39dfc..62593c39f 100644 --- a/icons/outline/report-money.svg +++ b/icons/outline/report-money.svg @@ -16,7 +16,7 @@ unicode: "eecd" stroke-linejoin="round" > - + diff --git a/icons/outline/report-search.svg b/icons/outline/report-search.svg index 12f5fe559..3e0844a14 100644 --- a/icons/outline/report-search.svg +++ b/icons/outline/report-search.svg @@ -17,9 +17,9 @@ unicode: "ef84" > - + - + diff --git a/icons/outline/report.svg b/icons/outline/report.svg index ffe582125..8af9e83df 100644 --- a/icons/outline/report.svg +++ b/icons/outline/report.svg @@ -18,8 +18,8 @@ unicode: "eece" - - + + diff --git a/icons/outline/reserved-line.svg b/icons/outline/reserved-line.svg index 3a4c39d54..6a502cfa5 100644 --- a/icons/outline/reserved-line.svg +++ b/icons/outline/reserved-line.svg @@ -17,6 +17,6 @@ unicode: "f9f6" > - + diff --git a/icons/outline/restore.svg b/icons/outline/restore.svg index 07c87ec93..936079082 100644 --- a/icons/outline/restore.svg +++ b/icons/outline/restore.svg @@ -17,5 +17,5 @@ unicode: "fafd" > - + diff --git a/icons/outline/rewind-backward-10.svg b/icons/outline/rewind-backward-10.svg index 21f8d0fc3..304a5d88b 100644 --- a/icons/outline/rewind-backward-10.svg +++ b/icons/outline/rewind-backward-10.svg @@ -18,5 +18,5 @@ unicode: "faba" - + diff --git a/icons/outline/rewind-backward-20.svg b/icons/outline/rewind-backward-20.svg index c26d44986..8774a306f 100644 --- a/icons/outline/rewind-backward-20.svg +++ b/icons/outline/rewind-backward-20.svg @@ -17,6 +17,6 @@ unicode: "fabc" > - + diff --git a/icons/outline/rewind-backward-30.svg b/icons/outline/rewind-backward-30.svg index 2369fb673..63cfa081c 100644 --- a/icons/outline/rewind-backward-30.svg +++ b/icons/outline/rewind-backward-30.svg @@ -16,7 +16,7 @@ unicode: "fabd" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-backward-40.svg b/icons/outline/rewind-backward-40.svg index b8840c408..165d4ea95 100644 --- a/icons/outline/rewind-backward-40.svg +++ b/icons/outline/rewind-backward-40.svg @@ -16,7 +16,7 @@ unicode: "fabe" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-backward-50.svg b/icons/outline/rewind-backward-50.svg index 829cfa4a7..53bfd1274 100644 --- a/icons/outline/rewind-backward-50.svg +++ b/icons/outline/rewind-backward-50.svg @@ -16,7 +16,7 @@ unicode: "fac0" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-backward-60.svg b/icons/outline/rewind-backward-60.svg index bb114c8fa..845b9334c 100644 --- a/icons/outline/rewind-backward-60.svg +++ b/icons/outline/rewind-backward-60.svg @@ -17,6 +17,6 @@ unicode: "fac1" > - + diff --git a/icons/outline/rewind-forward-10.svg b/icons/outline/rewind-forward-10.svg index f453be3d8..1e6cf0663 100644 --- a/icons/outline/rewind-forward-10.svg +++ b/icons/outline/rewind-forward-10.svg @@ -18,5 +18,5 @@ unicode: "fac2" - + diff --git a/icons/outline/rewind-forward-20.svg b/icons/outline/rewind-forward-20.svg index 85bdb68a1..7c9a78513 100644 --- a/icons/outline/rewind-forward-20.svg +++ b/icons/outline/rewind-forward-20.svg @@ -16,7 +16,7 @@ unicode: "fac4" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-forward-30.svg b/icons/outline/rewind-forward-30.svg index 07b992678..b9de4fc8c 100644 --- a/icons/outline/rewind-forward-30.svg +++ b/icons/outline/rewind-forward-30.svg @@ -16,7 +16,7 @@ unicode: "fac5" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-forward-40.svg b/icons/outline/rewind-forward-40.svg index 1a8ef488a..603edf5e6 100644 --- a/icons/outline/rewind-forward-40.svg +++ b/icons/outline/rewind-forward-40.svg @@ -16,7 +16,7 @@ unicode: "fac6" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-forward-50.svg b/icons/outline/rewind-forward-50.svg index c94a5a7e9..ed61b13b1 100644 --- a/icons/outline/rewind-forward-50.svg +++ b/icons/outline/rewind-forward-50.svg @@ -16,7 +16,7 @@ unicode: "fac8" stroke-linejoin="round" > - + diff --git a/icons/outline/rewind-forward-60.svg b/icons/outline/rewind-forward-60.svg index f9b5d94b0..c731a38fc 100644 --- a/icons/outline/rewind-forward-60.svg +++ b/icons/outline/rewind-forward-60.svg @@ -16,7 +16,7 @@ unicode: "fac9" stroke-linejoin="round" > - + diff --git a/icons/outline/rings.svg b/icons/outline/rings.svg index 873821dd4..2170937d1 100644 --- a/icons/outline/rings.svg +++ b/icons/outline/rings.svg @@ -15,8 +15,8 @@ unicode: "fa6a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/road-sign.svg b/icons/outline/road-sign.svg index 59c2e54aa..338d063fa 100644 --- a/icons/outline/road-sign.svg +++ b/icons/outline/road-sign.svg @@ -15,7 +15,7 @@ unicode: "ecdd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/robot-face.svg b/icons/outline/robot-face.svg index baa333466..18430ffc4 100644 --- a/icons/outline/robot-face.svg +++ b/icons/outline/robot-face.svg @@ -15,7 +15,7 @@ unicode: "fcbe" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/robot.svg b/icons/outline/robot.svg index c24ef4c0b..cdbb7b7cd 100644 --- a/icons/outline/robot.svg +++ b/icons/outline/robot.svg @@ -15,7 +15,7 @@ unicode: "f00b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rocket-off.svg b/icons/outline/rocket-off.svg index a0e814719..e9ce92413 100644 --- a/icons/outline/rocket-off.svg +++ b/icons/outline/rocket-off.svg @@ -17,6 +17,6 @@ unicode: "f193" > - + diff --git a/icons/outline/rocket.svg b/icons/outline/rocket.svg index 5eea27867..4bf0ecdf2 100644 --- a/icons/outline/rocket.svg +++ b/icons/outline/rocket.svg @@ -17,5 +17,5 @@ unicode: "ec45" > - + diff --git a/icons/outline/roller-skating.svg b/icons/outline/roller-skating.svg index 721a4f500..b3b1ca81c 100644 --- a/icons/outline/roller-skating.svg +++ b/icons/outline/roller-skating.svg @@ -15,7 +15,7 @@ unicode: "efd1" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/rollercoaster-off.svg b/icons/outline/rollercoaster-off.svg index 7927f7ad0..7af1de25e 100644 --- a/icons/outline/rollercoaster-off.svg +++ b/icons/outline/rollercoaster-off.svg @@ -20,7 +20,7 @@ unicode: "f423" - + diff --git a/icons/outline/rollercoaster.svg b/icons/outline/rollercoaster.svg index 8b815f0e2..484737b9e 100644 --- a/icons/outline/rollercoaster.svg +++ b/icons/outline/rollercoaster.svg @@ -20,6 +20,6 @@ unicode: "f0a2" - - + + diff --git a/icons/outline/rosette-asterisk.svg b/icons/outline/rosette-asterisk.svg index 14fc95740..a9ffe9f3c 100644 --- a/icons/outline/rosette-asterisk.svg +++ b/icons/outline/rosette-asterisk.svg @@ -15,7 +15,7 @@ version: "3.36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rosette-discount.svg b/icons/outline/rosette-discount.svg index 274c4407d..67c90a838 100644 --- a/icons/outline/rosette-discount.svg +++ b/icons/outline/rosette-discount.svg @@ -16,7 +16,7 @@ unicode: "ee7c" stroke-linejoin="round" > - - + + diff --git a/icons/outline/rosette-number-0.svg b/icons/outline/rosette-number-0.svg index 4c783613a..d172b1837 100644 --- a/icons/outline/rosette-number-0.svg +++ b/icons/outline/rosette-number-0.svg @@ -15,6 +15,6 @@ unicode: "f58f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rotate-3d.svg b/icons/outline/rotate-3d.svg index 408229f82..3046be047 100644 --- a/icons/outline/rotate-3d.svg +++ b/icons/outline/rotate-3d.svg @@ -17,7 +17,7 @@ unicode: "f020" > - + diff --git a/icons/outline/rotate-dot.svg b/icons/outline/rotate-dot.svg index 30a0b16cc..9040c506e 100644 --- a/icons/outline/rotate-dot.svg +++ b/icons/outline/rotate-dot.svg @@ -16,5 +16,5 @@ unicode: "efe5" stroke-linejoin="round" > - + diff --git a/icons/outline/route-2.svg b/icons/outline/route-2.svg index aea089d56..01e39978c 100644 --- a/icons/outline/route-2.svg +++ b/icons/outline/route-2.svg @@ -16,6 +16,6 @@ version: "1.97" stroke-linejoin="round" > - + diff --git a/icons/outline/route-off.svg b/icons/outline/route-off.svg index 633e954d9..2c7ec37c1 100644 --- a/icons/outline/route-off.svg +++ b/icons/outline/route-off.svg @@ -15,8 +15,8 @@ unicode: "f194" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/route-square-2.svg b/icons/outline/route-square-2.svg index 5bf8c4c0b..abff96bd3 100644 --- a/icons/outline/route-square-2.svg +++ b/icons/outline/route-square-2.svg @@ -16,6 +16,6 @@ unicode: "fcab" stroke-linejoin="round" > - - + + diff --git a/icons/outline/route-square.svg b/icons/outline/route-square.svg index 68b14c44f..17df81a4f 100644 --- a/icons/outline/route-square.svg +++ b/icons/outline/route-square.svg @@ -15,7 +15,7 @@ unicode: "fcac" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/route.svg b/icons/outline/route.svg index 2b2ffa7c6..52f23917c 100644 --- a/icons/outline/route.svg +++ b/icons/outline/route.svg @@ -16,6 +16,6 @@ unicode: "eb17" stroke-linejoin="round" > - + diff --git a/icons/outline/router.svg b/icons/outline/router.svg index 64199e9d5..3ba4232dc 100644 --- a/icons/outline/router.svg +++ b/icons/outline/router.svg @@ -15,7 +15,7 @@ unicode: "eb18" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/row-insert-bottom.svg b/icons/outline/row-insert-bottom.svg index 86bd14dd0..4f9d70bff 100644 --- a/icons/outline/row-insert-bottom.svg +++ b/icons/outline/row-insert-bottom.svg @@ -15,7 +15,7 @@ unicode: "eed0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/row-insert-top.svg b/icons/outline/row-insert-top.svg index b60f0af0b..0f3730a1d 100644 --- a/icons/outline/row-insert-top.svg +++ b/icons/outline/row-insert-top.svg @@ -15,7 +15,7 @@ unicode: "eed1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/row-remove.svg b/icons/outline/row-remove.svg index 0d5979951..c8004e065 100644 --- a/icons/outline/row-remove.svg +++ b/icons/outline/row-remove.svg @@ -15,7 +15,7 @@ unicode: "fafe" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rss.svg b/icons/outline/rss.svg index 3771bf389..485d5794c 100644 --- a/icons/outline/rss.svg +++ b/icons/outline/rss.svg @@ -15,7 +15,7 @@ unicode: "eb19" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rubber-stamp.svg b/icons/outline/rubber-stamp.svg index 3a4702a36..9e19e2252 100644 --- a/icons/outline/rubber-stamp.svg +++ b/icons/outline/rubber-stamp.svg @@ -15,6 +15,6 @@ unicode: "f5ab" stroke-linecap="round" stroke-linejoin="round" > - + \ No newline at end of file diff --git a/icons/outline/ruler-2.svg b/icons/outline/ruler-2.svg index fa87567bb..8c24cfd89 100644 --- a/icons/outline/ruler-2.svg +++ b/icons/outline/ruler-2.svg @@ -15,7 +15,7 @@ unicode: "eed2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ruler-3.svg b/icons/outline/ruler-3.svg index 409842c8a..5f246547b 100644 --- a/icons/outline/ruler-3.svg +++ b/icons/outline/ruler-3.svg @@ -15,7 +15,7 @@ unicode: "f290" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ruler-measure-2.svg b/icons/outline/ruler-measure-2.svg index 1c970bed5..392ec450f 100644 --- a/icons/outline/ruler-measure-2.svg +++ b/icons/outline/ruler-measure-2.svg @@ -15,7 +15,7 @@ unicode: "ff0f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ruler-measure.svg b/icons/outline/ruler-measure.svg index a8aabd92f..c8da77cb7 100644 --- a/icons/outline/ruler-measure.svg +++ b/icons/outline/ruler-measure.svg @@ -15,7 +15,7 @@ unicode: "f291" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/run.svg b/icons/outline/run.svg index 6f1451961..d7c159e07 100644 --- a/icons/outline/run.svg +++ b/icons/outline/run.svg @@ -15,7 +15,7 @@ unicode: "ec82" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/rv-truck.svg b/icons/outline/rv-truck.svg index 65e48a81c..ca34f18a7 100644 --- a/icons/outline/rv-truck.svg +++ b/icons/outline/rv-truck.svg @@ -15,11 +15,11 @@ unicode: "fcc0" stroke-linecap="round" stroke-linejoin="round" > - - + + - + diff --git a/icons/outline/s-turn-down.svg b/icons/outline/s-turn-down.svg index 79769c1b6..da44a9bef 100644 --- a/icons/outline/s-turn-down.svg +++ b/icons/outline/s-turn-down.svg @@ -15,7 +15,7 @@ unicode: "f516" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/s-turn-left.svg b/icons/outline/s-turn-left.svg index 1cde52e66..68928b2b0 100644 --- a/icons/outline/s-turn-left.svg +++ b/icons/outline/s-turn-left.svg @@ -15,7 +15,7 @@ unicode: "f517" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/s-turn-right.svg b/icons/outline/s-turn-right.svg index 78a681c9e..0c6082048 100644 --- a/icons/outline/s-turn-right.svg +++ b/icons/outline/s-turn-right.svg @@ -15,7 +15,7 @@ unicode: "f518" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/s-turn-up.svg b/icons/outline/s-turn-up.svg index 5b9e03f46..cbafade8b 100644 --- a/icons/outline/s-turn-up.svg +++ b/icons/outline/s-turn-up.svg @@ -15,7 +15,7 @@ unicode: "f519" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/salad.svg b/icons/outline/salad.svg index c6cda8173..e9465771d 100644 --- a/icons/outline/salad.svg +++ b/icons/outline/salad.svg @@ -15,7 +15,7 @@ unicode: "f50a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/salt.svg b/icons/outline/salt.svg index 6c09e1a7e..ace5c17b1 100644 --- a/icons/outline/salt.svg +++ b/icons/outline/salt.svg @@ -18,6 +18,6 @@ unicode: "ef16" - + diff --git a/icons/outline/satellite.svg b/icons/outline/satellite.svg index fe3053eb6..680fcc520 100644 --- a/icons/outline/satellite.svg +++ b/icons/outline/satellite.svg @@ -15,7 +15,7 @@ unicode: "eed3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sausage.svg b/icons/outline/sausage.svg index 0ec657434..c999721c9 100644 --- a/icons/outline/sausage.svg +++ b/icons/outline/sausage.svg @@ -15,7 +15,7 @@ unicode: "ef17" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/scale-outline.svg b/icons/outline/scale-outline.svg index 2510032f0..a2d9dc31e 100644 --- a/icons/outline/scale-outline.svg +++ b/icons/outline/scale-outline.svg @@ -15,6 +15,6 @@ unicode: "ef53" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/scan-position.svg b/icons/outline/scan-position.svg index bf85ba0a5..7ae627936 100644 --- a/icons/outline/scan-position.svg +++ b/icons/outline/scan-position.svg @@ -19,5 +19,5 @@ version: "3.0" - + diff --git a/icons/outline/schema-off.svg b/icons/outline/schema-off.svg index e0b8c9369..de74412b7 100644 --- a/icons/outline/schema-off.svg +++ b/icons/outline/schema-off.svg @@ -17,8 +17,8 @@ unicode: "f426" > - - + + diff --git a/icons/outline/schema.svg b/icons/outline/schema.svg index df9e9271c..d0a313bf4 100644 --- a/icons/outline/schema.svg +++ b/icons/outline/schema.svg @@ -15,10 +15,10 @@ unicode: "f200" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/school-bell.svg b/icons/outline/school-bell.svg index d7b6f79bb..b3a62efdf 100644 --- a/icons/outline/school-bell.svg +++ b/icons/outline/school-bell.svg @@ -17,5 +17,5 @@ unicode: "f64a" > - + diff --git a/icons/outline/scissors-off.svg b/icons/outline/scissors-off.svg index 4cde6af51..002001daa 100644 --- a/icons/outline/scissors-off.svg +++ b/icons/outline/scissors-off.svg @@ -16,7 +16,7 @@ unicode: "f19b" stroke-linejoin="round" > - + diff --git a/icons/outline/scissors.svg b/icons/outline/scissors.svg index edbe17e50..28b3ef932 100644 --- a/icons/outline/scissors.svg +++ b/icons/outline/scissors.svg @@ -15,8 +15,8 @@ unicode: "eb1b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/scooter-electric.svg b/icons/outline/scooter-electric.svg index 960227d4a..d42a1184d 100644 --- a/icons/outline/scooter-electric.svg +++ b/icons/outline/scooter-electric.svg @@ -15,8 +15,8 @@ unicode: "ecc1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/scooter.svg b/icons/outline/scooter.svg index 74f1a5547..8f971eb33 100644 --- a/icons/outline/scooter.svg +++ b/icons/outline/scooter.svg @@ -15,7 +15,7 @@ unicode: "ec6c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/scoreboard.svg b/icons/outline/scoreboard.svg index 3347b8241..88256186b 100644 --- a/icons/outline/scoreboard.svg +++ b/icons/outline/scoreboard.svg @@ -15,13 +15,13 @@ unicode: "fa6b" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/scuba-diving-tank.svg b/icons/outline/scuba-diving-tank.svg index d11d1fcb7..39478d764 100644 --- a/icons/outline/scuba-diving-tank.svg +++ b/icons/outline/scuba-diving-tank.svg @@ -15,10 +15,10 @@ unicode: "fefa" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/scuba-mask.svg b/icons/outline/scuba-mask.svg index 7f3965275..b0ce903c1 100644 --- a/icons/outline/scuba-mask.svg +++ b/icons/outline/scuba-mask.svg @@ -15,6 +15,6 @@ unicode: "eed4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sdk.svg b/icons/outline/sdk.svg index 3182de3b5..2b5cadd55 100644 --- a/icons/outline/sdk.svg +++ b/icons/outline/sdk.svg @@ -19,5 +19,5 @@ unicode: "f3af" - + diff --git a/icons/outline/search.svg b/icons/outline/search.svg index d910473da..3498a25ec 100644 --- a/icons/outline/search.svg +++ b/icons/outline/search.svg @@ -15,6 +15,6 @@ unicode: "eb1c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/section-sign.svg b/icons/outline/section-sign.svg index 0d64c496c..d80083629 100644 --- a/icons/outline/section-sign.svg +++ b/icons/outline/section-sign.svg @@ -17,5 +17,5 @@ unicode: "f019" > - + diff --git a/icons/outline/section.svg b/icons/outline/section.svg index 195889e53..322857fbc 100644 --- a/icons/outline/section.svg +++ b/icons/outline/section.svg @@ -25,5 +25,5 @@ unicode: "eed5" - + diff --git a/icons/outline/select-all.svg b/icons/outline/select-all.svg index df0aee884..6e5b2dcd3 100644 --- a/icons/outline/select-all.svg +++ b/icons/outline/select-all.svg @@ -15,7 +15,7 @@ unicode: "f9f7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/select.svg b/icons/outline/select.svg index f2c633185..b5be2c2b5 100644 --- a/icons/outline/select.svg +++ b/icons/outline/select.svg @@ -15,6 +15,6 @@ unicode: "ec9e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/send-2.svg b/icons/outline/send-2.svg index 530b90380..bdff0dec9 100644 --- a/icons/outline/send-2.svg +++ b/icons/outline/send-2.svg @@ -15,6 +15,6 @@ unicode: "fd5d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/seo.svg b/icons/outline/seo.svg index c1783460c..630c22b88 100644 --- a/icons/outline/seo.svg +++ b/icons/outline/seo.svg @@ -18,5 +18,5 @@ unicode: "f26b" - + diff --git a/icons/outline/server-2.svg b/icons/outline/server-2.svg index 25387a374..c181f8fbe 100644 --- a/icons/outline/server-2.svg +++ b/icons/outline/server-2.svg @@ -15,8 +15,8 @@ unicode: "f07c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/server-bolt.svg b/icons/outline/server-bolt.svg index 8289b463c..2dcbde3ed 100644 --- a/icons/outline/server-bolt.svg +++ b/icons/outline/server-bolt.svg @@ -15,7 +15,7 @@ unicode: "f320" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/server-cog.svg b/icons/outline/server-cog.svg index 39b9f7ba8..8e265705f 100644 --- a/icons/outline/server-cog.svg +++ b/icons/outline/server-cog.svg @@ -15,9 +15,9 @@ unicode: "f321" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/server-spark.svg b/icons/outline/server-spark.svg index 4127780d3..daf2c692d 100644 --- a/icons/outline/server-spark.svg +++ b/icons/outline/server-spark.svg @@ -16,7 +16,7 @@ unicode: "ffaf" stroke-linejoin="round" > - + diff --git a/icons/outline/server.svg b/icons/outline/server.svg index 8e40d7473..5bfc72d3b 100644 --- a/icons/outline/server.svg +++ b/icons/outline/server.svg @@ -15,8 +15,8 @@ unicode: "eb1f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/settings-2.svg b/icons/outline/settings-2.svg index 465b5e126..5ffe3353e 100644 --- a/icons/outline/settings-2.svg +++ b/icons/outline/settings-2.svg @@ -15,6 +15,6 @@ unicode: "f5ac" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/settings-automation.svg b/icons/outline/settings-automation.svg index 36cc7971a..9847d6c8a 100644 --- a/icons/outline/settings-automation.svg +++ b/icons/outline/settings-automation.svg @@ -15,6 +15,6 @@ unicode: "eed6" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/settings-cancel.svg b/icons/outline/settings-cancel.svg index a18285bda..0aa92fd53 100644 --- a/icons/outline/settings-cancel.svg +++ b/icons/outline/settings-cancel.svg @@ -16,7 +16,7 @@ unicode: "f9ae" stroke-linejoin="round" > - + diff --git a/icons/outline/settings-cog.svg b/icons/outline/settings-cog.svg index 93412c3fc..12a908ba7 100644 --- a/icons/outline/settings-cog.svg +++ b/icons/outline/settings-cog.svg @@ -17,7 +17,7 @@ unicode: "f9b1" > - + diff --git a/icons/outline/settings-heart.svg b/icons/outline/settings-heart.svg index 982218ced..39c37862e 100644 --- a/icons/outline/settings-heart.svg +++ b/icons/outline/settings-heart.svg @@ -17,5 +17,5 @@ unicode: "f9b5" > - + diff --git a/icons/outline/settings-pin.svg b/icons/outline/settings-pin.svg index 32ff4c201..09b0c6e33 100644 --- a/icons/outline/settings-pin.svg +++ b/icons/outline/settings-pin.svg @@ -17,6 +17,6 @@ unicode: "f9b8" > - + diff --git a/icons/outline/settings-search.svg b/icons/outline/settings-search.svg index 7d902c79e..457f294c2 100644 --- a/icons/outline/settings-search.svg +++ b/icons/outline/settings-search.svg @@ -17,6 +17,6 @@ unicode: "f9bb" > - + diff --git a/icons/outline/settings-share.svg b/icons/outline/settings-share.svg index a0f6337fd..7cef419d6 100644 --- a/icons/outline/settings-share.svg +++ b/icons/outline/settings-share.svg @@ -16,7 +16,7 @@ unicode: "f9bc" stroke-linejoin="round" > - + diff --git a/icons/outline/settings-star.svg b/icons/outline/settings-star.svg index cef5666a1..1c7650ee4 100644 --- a/icons/outline/settings-star.svg +++ b/icons/outline/settings-star.svg @@ -17,5 +17,5 @@ unicode: "f9bd" > - + diff --git a/icons/outline/settings.svg b/icons/outline/settings.svg index 980209f7c..687049304 100644 --- a/icons/outline/settings.svg +++ b/icons/outline/settings.svg @@ -15,6 +15,6 @@ unicode: "eb20" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/shadow.svg b/icons/outline/shadow.svg index e94a6fafd..233525e27 100644 --- a/icons/outline/shadow.svg +++ b/icons/outline/shadow.svg @@ -15,7 +15,7 @@ unicode: "eed8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/shape-2.svg b/icons/outline/shape-2.svg index 821742ef8..430661f71 100644 --- a/icons/outline/shape-2.svg +++ b/icons/outline/shape-2.svg @@ -15,9 +15,9 @@ unicode: "eed9" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/shape-3.svg b/icons/outline/shape-3.svg index 3999233d9..4435fdf51 100644 --- a/icons/outline/shape-3.svg +++ b/icons/outline/shape-3.svg @@ -15,9 +15,9 @@ unicode: "eeda" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/shape-off.svg b/icons/outline/shape-off.svg index c2c1a9e6d..16612bb38 100644 --- a/icons/outline/shape-off.svg +++ b/icons/outline/shape-off.svg @@ -16,8 +16,8 @@ unicode: "f1a0" stroke-linejoin="round" > - - + + diff --git a/icons/outline/shape.svg b/icons/outline/shape.svg index ab5d6ebd1..4162a380f 100644 --- a/icons/outline/shape.svg +++ b/icons/outline/shape.svg @@ -15,10 +15,10 @@ unicode: "eb9c" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/share-3.svg b/icons/outline/share-3.svg index ff7c89bc5..53451f153 100644 --- a/icons/outline/share-3.svg +++ b/icons/outline/share-3.svg @@ -15,5 +15,5 @@ unicode: "f7bd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/share-off.svg b/icons/outline/share-off.svg index ea27efe16..f2ab3f183 100644 --- a/icons/outline/share-off.svg +++ b/icons/outline/share-off.svg @@ -15,8 +15,8 @@ unicode: "f1a1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/share.svg b/icons/outline/share.svg index 448ef0ea6..6a2ff8da3 100644 --- a/icons/outline/share.svg +++ b/icons/outline/share.svg @@ -15,9 +15,9 @@ unicode: "eb21" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/shareplay.svg b/icons/outline/shareplay.svg index 307addd3e..05a425b52 100644 --- a/icons/outline/shareplay.svg +++ b/icons/outline/shareplay.svg @@ -16,5 +16,5 @@ version: "3.1" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-cancel.svg b/icons/outline/shield-cancel.svg index 149ae75a4..52199bdbd 100644 --- a/icons/outline/shield-cancel.svg +++ b/icons/outline/shield-cancel.svg @@ -16,6 +16,6 @@ unicode: "f9c1" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-cog.svg b/icons/outline/shield-cog.svg index b7bc34bd2..fa71ee732 100644 --- a/icons/outline/shield-cog.svg +++ b/icons/outline/shield-cog.svg @@ -16,7 +16,7 @@ unicode: "f9c3" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-heart.svg b/icons/outline/shield-heart.svg index ca0732040..cdd6ca04f 100644 --- a/icons/outline/shield-heart.svg +++ b/icons/outline/shield-heart.svg @@ -16,5 +16,5 @@ unicode: "f9c7" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-lock.svg b/icons/outline/shield-lock.svg index 0f3c88b4c..f4a90366a 100644 --- a/icons/outline/shield-lock.svg +++ b/icons/outline/shield-lock.svg @@ -16,6 +16,6 @@ unicode: "ed58" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-pin.svg b/icons/outline/shield-pin.svg index 753542785..9d2b9fcdc 100644 --- a/icons/outline/shield-pin.svg +++ b/icons/outline/shield-pin.svg @@ -16,6 +16,6 @@ unicode: "f9ca" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-search.svg b/icons/outline/shield-search.svg index e01dd1293..710aa3807 100644 --- a/icons/outline/shield-search.svg +++ b/icons/outline/shield-search.svg @@ -16,6 +16,6 @@ unicode: "f9cd" stroke-linejoin="round" > - + diff --git a/icons/outline/shield-star.svg b/icons/outline/shield-star.svg index 7e070bcc0..aa35a3307 100644 --- a/icons/outline/shield-star.svg +++ b/icons/outline/shield-star.svg @@ -16,5 +16,5 @@ unicode: "f9cf" stroke-linejoin="round" > - + diff --git a/icons/outline/shoe.svg b/icons/outline/shoe.svg index 2af8afaae..de0d7cb6e 100644 --- a/icons/outline/shoe.svg +++ b/icons/outline/shoe.svg @@ -15,7 +15,7 @@ unicode: "efd2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/shopping-bag-edit.svg b/icons/outline/shopping-bag-edit.svg index a20e039fc..4762833f1 100644 --- a/icons/outline/shopping-bag-edit.svg +++ b/icons/outline/shopping-bag-edit.svg @@ -17,5 +17,5 @@ unicode: "fc18" > - + diff --git a/icons/outline/shopping-bag-heart.svg b/icons/outline/shopping-bag-heart.svg index 405902dcc..f15495694 100644 --- a/icons/outline/shopping-bag-heart.svg +++ b/icons/outline/shopping-bag-heart.svg @@ -17,5 +17,5 @@ unicode: "fda2" > - + diff --git a/icons/outline/shopping-bag-search.svg b/icons/outline/shopping-bag-search.svg index 14c30179c..667ae2f62 100644 --- a/icons/outline/shopping-bag-search.svg +++ b/icons/outline/shopping-bag-search.svg @@ -17,6 +17,6 @@ unicode: "fc1c" > - + diff --git a/icons/outline/shopping-bag.svg b/icons/outline/shopping-bag.svg index 26d42e215..c7a346964 100644 --- a/icons/outline/shopping-bag.svg +++ b/icons/outline/shopping-bag.svg @@ -15,6 +15,6 @@ unicode: "f5f8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/shopping-cart-cancel.svg b/icons/outline/shopping-cart-cancel.svg index bc8aba1f3..a25348e69 100644 --- a/icons/outline/shopping-cart-cancel.svg +++ b/icons/outline/shopping-cart-cancel.svg @@ -18,6 +18,6 @@ unicode: "fb58" - + diff --git a/icons/outline/shopping-cart-cog.svg b/icons/outline/shopping-cart-cog.svg index b110f5003..3d2edab40 100644 --- a/icons/outline/shopping-cart-cog.svg +++ b/icons/outline/shopping-cart-cog.svg @@ -18,7 +18,7 @@ unicode: "fb5b" - + diff --git a/icons/outline/shopping-cart-heart.svg b/icons/outline/shopping-cart-heart.svg index 12b2853e0..10d0cc4a6 100644 --- a/icons/outline/shopping-cart-heart.svg +++ b/icons/outline/shopping-cart-heart.svg @@ -18,5 +18,5 @@ unicode: "fb61" - + diff --git a/icons/outline/shopping-cart-off.svg b/icons/outline/shopping-cart-off.svg index c7ec0cef4..a138c7b20 100644 --- a/icons/outline/shopping-cart-off.svg +++ b/icons/outline/shopping-cart-off.svg @@ -15,7 +15,7 @@ unicode: "eedc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/shopping-cart-pin.svg b/icons/outline/shopping-cart-pin.svg index e31137390..da6ec77a0 100644 --- a/icons/outline/shopping-cart-pin.svg +++ b/icons/outline/shopping-cart-pin.svg @@ -18,6 +18,6 @@ unicode: "fb64" - + diff --git a/icons/outline/shopping-cart-search.svg b/icons/outline/shopping-cart-search.svg index 1e9e471e8..ba9ae9d58 100644 --- a/icons/outline/shopping-cart-search.svg +++ b/icons/outline/shopping-cart-search.svg @@ -18,6 +18,6 @@ unicode: "fb67" - + diff --git a/icons/outline/shopping-cart-star.svg b/icons/outline/shopping-cart-star.svg index 43a158983..d487d29a5 100644 --- a/icons/outline/shopping-cart-star.svg +++ b/icons/outline/shopping-cart-star.svg @@ -18,5 +18,5 @@ unicode: "fb69" - + diff --git a/icons/outline/shopping-cart.svg b/icons/outline/shopping-cart.svg index 8d16277e5..d7e3cbc7b 100644 --- a/icons/outline/shopping-cart.svg +++ b/icons/outline/shopping-cart.svg @@ -15,8 +15,8 @@ unicode: "eb25" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/shovel-pitchforks.svg b/icons/outline/shovel-pitchforks.svg index cf1e3663c..21b0359ef 100644 --- a/icons/outline/shovel-pitchforks.svg +++ b/icons/outline/shovel-pitchforks.svg @@ -17,7 +17,7 @@ unicode: "fd3a" > - + diff --git a/icons/outline/shovel.svg b/icons/outline/shovel.svg index 47af78f76..c902da91c 100644 --- a/icons/outline/shovel.svg +++ b/icons/outline/shovel.svg @@ -17,5 +17,5 @@ unicode: "f1d9" > - + diff --git a/icons/outline/shredder.svg b/icons/outline/shredder.svg index 1e4543a6d..c4bad9ddb 100644 --- a/icons/outline/shredder.svg +++ b/icons/outline/shredder.svg @@ -15,6 +15,6 @@ unicode: "eedf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sign-left.svg b/icons/outline/sign-left.svg index 765d1c4e5..a9591cd88 100644 --- a/icons/outline/sign-left.svg +++ b/icons/outline/sign-left.svg @@ -18,5 +18,5 @@ unicode: "f06b" - + diff --git a/icons/outline/sign-right.svg b/icons/outline/sign-right.svg index f238ddf7d..1da270c57 100644 --- a/icons/outline/sign-right.svg +++ b/icons/outline/sign-right.svg @@ -18,5 +18,5 @@ unicode: "f06c" - + diff --git a/icons/outline/sitemap-off.svg b/icons/outline/sitemap-off.svg index 55d2f5e89..9d649fc60 100644 --- a/icons/outline/sitemap-off.svg +++ b/icons/outline/sitemap-off.svg @@ -15,7 +15,7 @@ unicode: "f1a6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sitemap.svg b/icons/outline/sitemap.svg index 3bee2b3d8..907bc3469 100644 --- a/icons/outline/sitemap.svg +++ b/icons/outline/sitemap.svg @@ -15,9 +15,9 @@ category: Development stroke-linecap="round" stroke-linejoin="round" > - - - + + + \ No newline at end of file diff --git a/icons/outline/skateboard-off.svg b/icons/outline/skateboard-off.svg index 0228293ed..0cfc6d733 100644 --- a/icons/outline/skateboard-off.svg +++ b/icons/outline/skateboard-off.svg @@ -15,7 +15,7 @@ unicode: "f42b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/skateboard.svg b/icons/outline/skateboard.svg index 38c72bc94..84d8c1f90 100644 --- a/icons/outline/skateboard.svg +++ b/icons/outline/skateboard.svg @@ -15,7 +15,7 @@ unicode: "ecc2" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/skateboarding.svg b/icons/outline/skateboarding.svg index e3283f8bf..b24b9e46a 100644 --- a/icons/outline/skateboarding.svg +++ b/icons/outline/skateboarding.svg @@ -19,7 +19,7 @@ unicode: "faca" - + - + diff --git a/icons/outline/skew-x.svg b/icons/outline/skew-x.svg index a1bea7ad4..aebe7391b 100644 --- a/icons/outline/skew-x.svg +++ b/icons/outline/skew-x.svg @@ -15,5 +15,5 @@ unicode: "fd3b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/skew-y.svg b/icons/outline/skew-y.svg index 2ba33735a..f22bb0e00 100644 --- a/icons/outline/skew-y.svg +++ b/icons/outline/skew-y.svg @@ -15,5 +15,5 @@ unicode: "fd3c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/skull.svg b/icons/outline/skull.svg index 450ce4214..096c46f32 100644 --- a/icons/outline/skull.svg +++ b/icons/outline/skull.svg @@ -15,9 +15,9 @@ unicode: "f292" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/sleigh.svg b/icons/outline/sleigh.svg index ae7b8d140..dfd1ea771 100644 --- a/icons/outline/sleigh.svg +++ b/icons/outline/sleigh.svg @@ -16,7 +16,7 @@ unicode: "ef9c" stroke-linejoin="round" > - + diff --git a/icons/outline/slideshow.svg b/icons/outline/slideshow.svg index a10c0a380..f3f26a63d 100644 --- a/icons/outline/slideshow.svg +++ b/icons/outline/slideshow.svg @@ -16,7 +16,7 @@ unicode: "ebc9" stroke-linejoin="round" > - + diff --git a/icons/outline/smoking.svg b/icons/outline/smoking.svg index dab93784a..cd8c1e60a 100644 --- a/icons/outline/smoking.svg +++ b/icons/outline/smoking.svg @@ -15,7 +15,7 @@ unicode: "ecc4" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/snowman.svg b/icons/outline/snowman.svg index 6edb79ec2..95497da3c 100644 --- a/icons/outline/snowman.svg +++ b/icons/outline/snowman.svg @@ -15,7 +15,7 @@ unicode: "f26d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/soccer-field.svg b/icons/outline/soccer-field.svg index 281142512..cc8a5015c 100644 --- a/icons/outline/soccer-field.svg +++ b/icons/outline/soccer-field.svg @@ -15,9 +15,9 @@ unicode: "ed92" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/social-off.svg b/icons/outline/social-off.svg index 7db99ec9e..cddaca397 100644 --- a/icons/outline/social-off.svg +++ b/icons/outline/social-off.svg @@ -15,8 +15,8 @@ unicode: "f1a9" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/social.svg b/icons/outline/social.svg index 3af46f656..ea5b565c3 100644 --- a/icons/outline/social.svg +++ b/icons/outline/social.svg @@ -15,10 +15,10 @@ unicode: "ebec" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/sock.svg b/icons/outline/sock.svg index 33721bc95..d0dc3a89d 100644 --- a/icons/outline/sock.svg +++ b/icons/outline/sock.svg @@ -15,6 +15,6 @@ unicode: "eee1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sofa.svg b/icons/outline/sofa.svg index 227422e27..43ab771ab 100644 --- a/icons/outline/sofa.svg +++ b/icons/outline/sofa.svg @@ -15,7 +15,7 @@ unicode: "efaf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/solar-electricity.svg b/icons/outline/solar-electricity.svg index 66daf03d5..6824452c9 100644 --- a/icons/outline/solar-electricity.svg +++ b/icons/outline/solar-electricity.svg @@ -15,7 +15,7 @@ unicode: "fcc1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/solar-panel-2.svg b/icons/outline/solar-panel-2.svg index efc42e912..e5c9aa1f7 100644 --- a/icons/outline/solar-panel-2.svg +++ b/icons/outline/solar-panel-2.svg @@ -21,7 +21,7 @@ unicode: "f7be" - + diff --git a/icons/outline/solar-panel.svg b/icons/outline/solar-panel.svg index d2c0e59c3..9796a9861 100644 --- a/icons/outline/solar-panel.svg +++ b/icons/outline/solar-panel.svg @@ -15,7 +15,7 @@ unicode: "f7bf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sort-0-9.svg b/icons/outline/sort-0-9.svg index e0242c068..f4f733695 100644 --- a/icons/outline/sort-0-9.svg +++ b/icons/outline/sort-0-9.svg @@ -16,6 +16,6 @@ unicode: "f54d" stroke-linejoin="round" > - + diff --git a/icons/outline/sort-9-0.svg b/icons/outline/sort-9-0.svg index e5a857bf2..b5057219a 100644 --- a/icons/outline/sort-9-0.svg +++ b/icons/outline/sort-9-0.svg @@ -16,6 +16,6 @@ unicode: "f54e" stroke-linejoin="round" > - + diff --git a/icons/outline/sort-ascending-2.svg b/icons/outline/sort-ascending-2.svg index 81d6fee8a..99e7298f0 100644 --- a/icons/outline/sort-ascending-2.svg +++ b/icons/outline/sort-ascending-2.svg @@ -16,7 +16,6 @@ unicode: "eee2" stroke-linejoin="round" > - - + diff --git a/icons/outline/sort-ascending-numbers.svg b/icons/outline/sort-ascending-numbers.svg index b5f36d0d4..33772c03c 100644 --- a/icons/outline/sort-ascending-numbers.svg +++ b/icons/outline/sort-ascending-numbers.svg @@ -17,7 +17,7 @@ unicode: "ef19" > - - + + diff --git a/icons/outline/sort-ascending-shapes.svg b/icons/outline/sort-ascending-shapes.svg index 763460866..acf6c0461 100644 --- a/icons/outline/sort-ascending-shapes.svg +++ b/icons/outline/sort-ascending-shapes.svg @@ -17,6 +17,6 @@ unicode: "fd94" > - - + + diff --git a/icons/outline/sort-ascending-small-big.svg b/icons/outline/sort-ascending-small-big.svg index ac5251929..2ad342450 100644 --- a/icons/outline/sort-ascending-small-big.svg +++ b/icons/outline/sort-ascending-small-big.svg @@ -17,6 +17,6 @@ unicode: "fd95" > - - + + diff --git a/icons/outline/sort-descending-2.svg b/icons/outline/sort-descending-2.svg index a90902acd..8064d24a0 100644 --- a/icons/outline/sort-descending-2.svg +++ b/icons/outline/sort-descending-2.svg @@ -15,8 +15,7 @@ unicode: "eee3" stroke-linecap="round" stroke-linejoin="round" > - - + diff --git a/icons/outline/sort-descending-numbers.svg b/icons/outline/sort-descending-numbers.svg index a10a29172..464b42dab 100644 --- a/icons/outline/sort-descending-numbers.svg +++ b/icons/outline/sort-descending-numbers.svg @@ -17,7 +17,7 @@ unicode: "ef1b" > - - + + diff --git a/icons/outline/sort-descending-shapes.svg b/icons/outline/sort-descending-shapes.svg index c496c698b..5c909bf7c 100644 --- a/icons/outline/sort-descending-shapes.svg +++ b/icons/outline/sort-descending-shapes.svg @@ -17,6 +17,6 @@ unicode: "fd97" > - - + + diff --git a/icons/outline/sort-descending-small-big.svg b/icons/outline/sort-descending-small-big.svg index 3fb4cab75..247cfeedb 100644 --- a/icons/outline/sort-descending-small-big.svg +++ b/icons/outline/sort-descending-small-big.svg @@ -17,6 +17,6 @@ unicode: "fd96" > - - + + diff --git a/icons/outline/soup.svg b/icons/outline/soup.svg index ef6f8d35e..29259c042 100644 --- a/icons/outline/soup.svg +++ b/icons/outline/soup.svg @@ -15,7 +15,7 @@ unicode: "ef2e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/spade.svg b/icons/outline/spade.svg index c06fbf821..b1d6216af 100644 --- a/icons/outline/spade.svg +++ b/icons/outline/spade.svg @@ -15,5 +15,5 @@ unicode: "effa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sparkles.svg b/icons/outline/sparkles.svg index 14923a991..16d2cab00 100644 --- a/icons/outline/sparkles.svg +++ b/icons/outline/sparkles.svg @@ -15,5 +15,5 @@ unicode: "f6d7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/speakerphone.svg b/icons/outline/speakerphone.svg index 2cf0e3df6..7ec571765 100644 --- a/icons/outline/speakerphone.svg +++ b/icons/outline/speakerphone.svg @@ -17,5 +17,5 @@ unicode: "ed61" > - + diff --git a/icons/outline/speedboat.svg b/icons/outline/speedboat.svg index 92432d58a..9351b11d9 100644 --- a/icons/outline/speedboat.svg +++ b/icons/outline/speedboat.svg @@ -15,7 +15,7 @@ unicode: "ed93" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sphere.svg b/icons/outline/sphere.svg index b2d24b971..5ed344356 100644 --- a/icons/outline/sphere.svg +++ b/icons/outline/sphere.svg @@ -16,5 +16,5 @@ unicode: "fab8" stroke-linejoin="round" > - + diff --git a/icons/outline/spider.svg b/icons/outline/spider.svg index e94dc0c42..b5888618b 100644 --- a/icons/outline/spider.svg +++ b/icons/outline/spider.svg @@ -21,6 +21,6 @@ unicode: "f293" - - + + diff --git a/icons/outline/sport-billard.svg b/icons/outline/sport-billard.svg index 1c3a6c928..f6a829e8e 100644 --- a/icons/outline/sport-billard.svg +++ b/icons/outline/sport-billard.svg @@ -15,7 +15,7 @@ unicode: "eee4" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/spray.svg b/icons/outline/spray.svg index b320a752f..63e3cc6f9 100644 --- a/icons/outline/spray.svg +++ b/icons/outline/spray.svg @@ -15,7 +15,7 @@ unicode: "f50b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/spy-off.svg b/icons/outline/spy-off.svg index b3896f362..8ec25cbfa 100644 --- a/icons/outline/spy-off.svg +++ b/icons/outline/spy-off.svg @@ -17,7 +17,7 @@ unicode: "f42f" > - + diff --git a/icons/outline/spy.svg b/icons/outline/spy.svg index 5306fd1f9..97ec99c48 100644 --- a/icons/outline/spy.svg +++ b/icons/outline/spy.svg @@ -17,7 +17,7 @@ unicode: "f227" > - - + + diff --git a/icons/outline/sql.svg b/icons/outline/sql.svg index e32b26559..2b4b3f049 100644 --- a/icons/outline/sql.svg +++ b/icons/outline/sql.svg @@ -15,7 +15,7 @@ unicode: "f7c0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-arrow-down.svg b/icons/outline/square-arrow-down.svg index 81f5039f8..0f7f47970 100644 --- a/icons/outline/square-arrow-down.svg +++ b/icons/outline/square-arrow-down.svg @@ -17,5 +17,5 @@ unicode: "f4b7" > - + diff --git a/icons/outline/square-arrow-left.svg b/icons/outline/square-arrow-left.svg index 4fc58a8f9..02e40d8f1 100644 --- a/icons/outline/square-arrow-left.svg +++ b/icons/outline/square-arrow-left.svg @@ -17,5 +17,5 @@ unicode: "f4b8" > - + diff --git a/icons/outline/square-arrow-right.svg b/icons/outline/square-arrow-right.svg index 6ff426f0a..e7c59e981 100644 --- a/icons/outline/square-arrow-right.svg +++ b/icons/outline/square-arrow-right.svg @@ -17,5 +17,5 @@ unicode: "f4b9" > - + diff --git a/icons/outline/square-arrow-up.svg b/icons/outline/square-arrow-up.svg index 8a6ee408f..8f452f82a 100644 --- a/icons/outline/square-arrow-up.svg +++ b/icons/outline/square-arrow-up.svg @@ -17,5 +17,5 @@ unicode: "f4ba" > - + diff --git a/icons/outline/square-asterisk.svg b/icons/outline/square-asterisk.svg index 7f555666e..726ee4680 100644 --- a/icons/outline/square-asterisk.svg +++ b/icons/outline/square-asterisk.svg @@ -15,7 +15,7 @@ unicode: "f01a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-check.svg b/icons/outline/square-check.svg index eeab69650..f98bdf47c 100644 --- a/icons/outline/square-check.svg +++ b/icons/outline/square-check.svg @@ -15,6 +15,6 @@ unicode: "eb28" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-chevron-down.svg b/icons/outline/square-chevron-down.svg index 9736513b4..03b945386 100644 --- a/icons/outline/square-chevron-down.svg +++ b/icons/outline/square-chevron-down.svg @@ -16,5 +16,5 @@ unicode: "f627" stroke-linejoin="round" > - + diff --git a/icons/outline/square-chevron-left.svg b/icons/outline/square-chevron-left.svg index 1c05d8c26..6cb5823db 100644 --- a/icons/outline/square-chevron-left.svg +++ b/icons/outline/square-chevron-left.svg @@ -16,5 +16,5 @@ unicode: "f628" stroke-linejoin="round" > - + diff --git a/icons/outline/square-chevron-right.svg b/icons/outline/square-chevron-right.svg index 0a5bfd0f6..b29563d4b 100644 --- a/icons/outline/square-chevron-right.svg +++ b/icons/outline/square-chevron-right.svg @@ -16,5 +16,5 @@ unicode: "f629" stroke-linejoin="round" > - + diff --git a/icons/outline/square-chevron-up.svg b/icons/outline/square-chevron-up.svg index 46f0ba929..1dec55345 100644 --- a/icons/outline/square-chevron-up.svg +++ b/icons/outline/square-chevron-up.svg @@ -15,6 +15,6 @@ unicode: "f62a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-chevrons-down.svg b/icons/outline/square-chevrons-down.svg index d2e909005..04e07f30b 100644 --- a/icons/outline/square-chevrons-down.svg +++ b/icons/outline/square-chevrons-down.svg @@ -17,5 +17,5 @@ unicode: "f64b" > - + diff --git a/icons/outline/square-chevrons-left.svg b/icons/outline/square-chevrons-left.svg index 48148b399..def85dc7e 100644 --- a/icons/outline/square-chevrons-left.svg +++ b/icons/outline/square-chevrons-left.svg @@ -17,5 +17,5 @@ unicode: "f64c" > - + diff --git a/icons/outline/square-chevrons-right.svg b/icons/outline/square-chevrons-right.svg index d7790c32c..9016e0a49 100644 --- a/icons/outline/square-chevrons-right.svg +++ b/icons/outline/square-chevrons-right.svg @@ -17,5 +17,5 @@ unicode: "f64d" > - + diff --git a/icons/outline/square-chevrons-up.svg b/icons/outline/square-chevrons-up.svg index 6509f25ea..e103a4999 100644 --- a/icons/outline/square-chevrons-up.svg +++ b/icons/outline/square-chevrons-up.svg @@ -17,5 +17,5 @@ unicode: "f64e" > - + diff --git a/icons/outline/square-dashed.svg b/icons/outline/square-dashed.svg index aad27cd78..da175c4c8 100644 --- a/icons/outline/square-dashed.svg +++ b/icons/outline/square-dashed.svg @@ -15,5 +15,5 @@ unicode: "100bb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-dot.svg b/icons/outline/square-dot.svg index 439caa4d3..076f728a0 100644 --- a/icons/outline/square-dot.svg +++ b/icons/outline/square-dot.svg @@ -15,6 +15,6 @@ unicode: "ed59" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-f0.svg b/icons/outline/square-f0.svg index a03406b79..34ff87345 100644 --- a/icons/outline/square-f0.svg +++ b/icons/outline/square-f0.svg @@ -15,8 +15,8 @@ unicode: "f526" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-f1.svg b/icons/outline/square-f1.svg index 7db6a784a..78eb68c4e 100644 --- a/icons/outline/square-f1.svg +++ b/icons/outline/square-f1.svg @@ -15,7 +15,7 @@ unicode: "f527" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f2.svg b/icons/outline/square-f2.svg index c43795eb9..20a92156c 100644 --- a/icons/outline/square-f2.svg +++ b/icons/outline/square-f2.svg @@ -15,7 +15,7 @@ unicode: "f528" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f3.svg b/icons/outline/square-f3.svg index 2b0877617..94ba20ec4 100644 --- a/icons/outline/square-f3.svg +++ b/icons/outline/square-f3.svg @@ -15,7 +15,7 @@ unicode: "f529" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f4.svg b/icons/outline/square-f4.svg index 2044b7ce7..a794962a7 100644 --- a/icons/outline/square-f4.svg +++ b/icons/outline/square-f4.svg @@ -15,7 +15,7 @@ unicode: "f52a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f5.svg b/icons/outline/square-f5.svg index 5929a3a6e..c80060a11 100644 --- a/icons/outline/square-f5.svg +++ b/icons/outline/square-f5.svg @@ -15,7 +15,7 @@ unicode: "f52b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f6.svg b/icons/outline/square-f6.svg index 18a4abdf1..365cf3d2c 100644 --- a/icons/outline/square-f6.svg +++ b/icons/outline/square-f6.svg @@ -15,7 +15,7 @@ unicode: "f52c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f7.svg b/icons/outline/square-f7.svg index 19dee637d..5b92e6a2f 100644 --- a/icons/outline/square-f7.svg +++ b/icons/outline/square-f7.svg @@ -15,7 +15,7 @@ unicode: "f52d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f8.svg b/icons/outline/square-f8.svg index 23914697a..fe3000429 100644 --- a/icons/outline/square-f8.svg +++ b/icons/outline/square-f8.svg @@ -15,7 +15,7 @@ unicode: "f52e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-f9.svg b/icons/outline/square-f9.svg index 275bbf738..888737da4 100644 --- a/icons/outline/square-f9.svg +++ b/icons/outline/square-f9.svg @@ -15,7 +15,7 @@ unicode: "f52f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-forbid-2.svg b/icons/outline/square-forbid-2.svg index 355956052..e9b027167 100644 --- a/icons/outline/square-forbid-2.svg +++ b/icons/outline/square-forbid-2.svg @@ -15,6 +15,6 @@ unicode: "ed5a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-forbid.svg b/icons/outline/square-forbid.svg index 37381d153..6537ceeee 100644 --- a/icons/outline/square-forbid.svg +++ b/icons/outline/square-forbid.svg @@ -15,6 +15,6 @@ unicode: "ed5b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-half.svg b/icons/outline/square-half.svg index f5a90c94f..e7b81ab6e 100644 --- a/icons/outline/square-half.svg +++ b/icons/outline/square-half.svg @@ -16,7 +16,7 @@ unicode: "effb" stroke-linejoin="round" > - + diff --git a/icons/outline/square-key.svg b/icons/outline/square-key.svg index 55c6b6189..b86335f1a 100644 --- a/icons/outline/square-key.svg +++ b/icons/outline/square-key.svg @@ -15,8 +15,8 @@ unicode: "f638" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/square-letter-a.svg b/icons/outline/square-letter-a.svg index 8770ed8ff..b13f8fd9a 100644 --- a/icons/outline/square-letter-a.svg +++ b/icons/outline/square-letter-a.svg @@ -15,7 +15,7 @@ unicode: "f47c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-b.svg b/icons/outline/square-letter-b.svg index 9f27ce6d5..f28ca3694 100644 --- a/icons/outline/square-letter-b.svg +++ b/icons/outline/square-letter-b.svg @@ -15,6 +15,6 @@ unicode: "f47d" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-letter-c.svg b/icons/outline/square-letter-c.svg index 026276a13..a3a5ca754 100644 --- a/icons/outline/square-letter-c.svg +++ b/icons/outline/square-letter-c.svg @@ -15,6 +15,6 @@ unicode: "f47e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-d.svg b/icons/outline/square-letter-d.svg index ec6c06491..3db4a25ef 100644 --- a/icons/outline/square-letter-d.svg +++ b/icons/outline/square-letter-d.svg @@ -15,6 +15,6 @@ unicode: "f47f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-letter-e.svg b/icons/outline/square-letter-e.svg index 92f679ebf..ca9eaabe2 100644 --- a/icons/outline/square-letter-e.svg +++ b/icons/outline/square-letter-e.svg @@ -15,7 +15,7 @@ unicode: "f480" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-f.svg b/icons/outline/square-letter-f.svg index 9f7a66785..1c3e195c5 100644 --- a/icons/outline/square-letter-f.svg +++ b/icons/outline/square-letter-f.svg @@ -15,7 +15,7 @@ unicode: "f481" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-g.svg b/icons/outline/square-letter-g.svg index 6fba1437d..2c4c4e756 100644 --- a/icons/outline/square-letter-g.svg +++ b/icons/outline/square-letter-g.svg @@ -15,6 +15,6 @@ unicode: "f482" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-h.svg b/icons/outline/square-letter-h.svg index 24f3af981..7d10ca529 100644 --- a/icons/outline/square-letter-h.svg +++ b/icons/outline/square-letter-h.svg @@ -15,7 +15,7 @@ unicode: "f483" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-i.svg b/icons/outline/square-letter-i.svg index e176d0c7a..5cd6e95a8 100644 --- a/icons/outline/square-letter-i.svg +++ b/icons/outline/square-letter-i.svg @@ -15,6 +15,6 @@ unicode: "f484" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-j.svg b/icons/outline/square-letter-j.svg index 82e34b95b..7b7023394 100644 --- a/icons/outline/square-letter-j.svg +++ b/icons/outline/square-letter-j.svg @@ -15,6 +15,6 @@ unicode: "f485" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-k.svg b/icons/outline/square-letter-k.svg index fa707696a..30eb4a2b0 100644 --- a/icons/outline/square-letter-k.svg +++ b/icons/outline/square-letter-k.svg @@ -15,7 +15,7 @@ unicode: "f486" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-l.svg b/icons/outline/square-letter-l.svg index 055515310..0e7c512bb 100644 --- a/icons/outline/square-letter-l.svg +++ b/icons/outline/square-letter-l.svg @@ -15,6 +15,6 @@ unicode: "f487" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-m.svg b/icons/outline/square-letter-m.svg index 28e5984a9..594e9f8a9 100644 --- a/icons/outline/square-letter-m.svg +++ b/icons/outline/square-letter-m.svg @@ -15,6 +15,6 @@ unicode: "f488" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-n.svg b/icons/outline/square-letter-n.svg index 60cfa062b..4a86c7080 100644 --- a/icons/outline/square-letter-n.svg +++ b/icons/outline/square-letter-n.svg @@ -15,6 +15,6 @@ unicode: "f489" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-o.svg b/icons/outline/square-letter-o.svg index 24acefec2..919bdfacc 100644 --- a/icons/outline/square-letter-o.svg +++ b/icons/outline/square-letter-o.svg @@ -15,6 +15,6 @@ unicode: "f48a" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-letter-p.svg b/icons/outline/square-letter-p.svg index 06ae189ab..f17c52fed 100644 --- a/icons/outline/square-letter-p.svg +++ b/icons/outline/square-letter-p.svg @@ -15,6 +15,6 @@ unicode: "f48b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-q.svg b/icons/outline/square-letter-q.svg index 931939683..ebe2722eb 100644 --- a/icons/outline/square-letter-q.svg +++ b/icons/outline/square-letter-q.svg @@ -15,7 +15,7 @@ unicode: "f48c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-letter-r.svg b/icons/outline/square-letter-r.svg index b4ed8c5cc..2a5cc319b 100644 --- a/icons/outline/square-letter-r.svg +++ b/icons/outline/square-letter-r.svg @@ -15,6 +15,6 @@ unicode: "f48d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-s.svg b/icons/outline/square-letter-s.svg index 1c6825811..13a9a99cb 100644 --- a/icons/outline/square-letter-s.svg +++ b/icons/outline/square-letter-s.svg @@ -15,6 +15,6 @@ unicode: "f48e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-t.svg b/icons/outline/square-letter-t.svg index 1b05a9be4..eccc8f5e7 100644 --- a/icons/outline/square-letter-t.svg +++ b/icons/outline/square-letter-t.svg @@ -15,7 +15,7 @@ unicode: "f48f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-u.svg b/icons/outline/square-letter-u.svg index a2004cfe7..a754356a1 100644 --- a/icons/outline/square-letter-u.svg +++ b/icons/outline/square-letter-u.svg @@ -15,6 +15,6 @@ unicode: "f490" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-v.svg b/icons/outline/square-letter-v.svg index 6779638bf..29ac1bc7c 100644 --- a/icons/outline/square-letter-v.svg +++ b/icons/outline/square-letter-v.svg @@ -15,6 +15,6 @@ unicode: "f4bb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-w.svg b/icons/outline/square-letter-w.svg index c7a2baef6..a8a953e50 100644 --- a/icons/outline/square-letter-w.svg +++ b/icons/outline/square-letter-w.svg @@ -15,6 +15,6 @@ unicode: "f491" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-x.svg b/icons/outline/square-letter-x.svg index b694e8525..5aac3082b 100644 --- a/icons/outline/square-letter-x.svg +++ b/icons/outline/square-letter-x.svg @@ -15,7 +15,7 @@ unicode: "f4bc" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-y.svg b/icons/outline/square-letter-y.svg index b9621ad14..33c1e3701 100644 --- a/icons/outline/square-letter-y.svg +++ b/icons/outline/square-letter-y.svg @@ -15,7 +15,7 @@ unicode: "f492" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-letter-z.svg b/icons/outline/square-letter-z.svg index 0f92c385e..8a3e90536 100644 --- a/icons/outline/square-letter-z.svg +++ b/icons/outline/square-letter-z.svg @@ -15,6 +15,6 @@ unicode: "f493" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-minus.svg b/icons/outline/square-minus.svg index 19c9a215f..61f390c79 100644 --- a/icons/outline/square-minus.svg +++ b/icons/outline/square-minus.svg @@ -16,5 +16,5 @@ unicode: "1019e" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-0.svg b/icons/outline/square-number-0.svg index eea869685..1c0b9f30f 100644 --- a/icons/outline/square-number-0.svg +++ b/icons/outline/square-number-0.svg @@ -15,6 +15,6 @@ unicode: "eee5" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-number-1.svg b/icons/outline/square-number-1.svg index cea7dc0de..3ee47d262 100644 --- a/icons/outline/square-number-1.svg +++ b/icons/outline/square-number-1.svg @@ -15,6 +15,6 @@ unicode: "eee6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-2.svg b/icons/outline/square-number-2.svg index 5d8ff71d9..ff238a023 100644 --- a/icons/outline/square-number-2.svg +++ b/icons/outline/square-number-2.svg @@ -15,6 +15,6 @@ unicode: "eee7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-3.svg b/icons/outline/square-number-3.svg index d6bed2454..869acb6e6 100644 --- a/icons/outline/square-number-3.svg +++ b/icons/outline/square-number-3.svg @@ -15,6 +15,6 @@ unicode: "eee8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-4.svg b/icons/outline/square-number-4.svg index b54779137..76dbc4665 100644 --- a/icons/outline/square-number-4.svg +++ b/icons/outline/square-number-4.svg @@ -15,7 +15,7 @@ unicode: "eee9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-5.svg b/icons/outline/square-number-5.svg index 2e24896c5..36b6ef6af 100644 --- a/icons/outline/square-number-5.svg +++ b/icons/outline/square-number-5.svg @@ -15,6 +15,6 @@ unicode: "eeea" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-6.svg b/icons/outline/square-number-6.svg index 657df074f..5e3a306d5 100644 --- a/icons/outline/square-number-6.svg +++ b/icons/outline/square-number-6.svg @@ -15,6 +15,6 @@ unicode: "eeeb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-7.svg b/icons/outline/square-number-7.svg index c7169d4f1..449fe101e 100644 --- a/icons/outline/square-number-7.svg +++ b/icons/outline/square-number-7.svg @@ -15,6 +15,6 @@ unicode: "eeec" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-8.svg b/icons/outline/square-number-8.svg index b03e391de..bb8817d0a 100644 --- a/icons/outline/square-number-8.svg +++ b/icons/outline/square-number-8.svg @@ -15,6 +15,6 @@ unicode: "eeed" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-number-9.svg b/icons/outline/square-number-9.svg index 04b01a251..d5ffa9015 100644 --- a/icons/outline/square-number-9.svg +++ b/icons/outline/square-number-9.svg @@ -15,6 +15,6 @@ unicode: "eeee" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-percentage.svg b/icons/outline/square-percentage.svg index f4964ed03..c48bbe00f 100644 --- a/icons/outline/square-percentage.svg +++ b/icons/outline/square-percentage.svg @@ -15,7 +15,7 @@ unicode: "fd83" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-plus.svg b/icons/outline/square-plus.svg index 9a0efde6c..5369946a7 100644 --- a/icons/outline/square-plus.svg +++ b/icons/outline/square-plus.svg @@ -17,5 +17,5 @@ unicode: "eb2a" > - + diff --git a/icons/outline/square-rotated-asterisk.svg b/icons/outline/square-rotated-asterisk.svg index 0b38a11f3..33f6585bb 100644 --- a/icons/outline/square-rotated-asterisk.svg +++ b/icons/outline/square-rotated-asterisk.svg @@ -15,7 +15,7 @@ version: "3.36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rotated-forbid-2.svg b/icons/outline/square-rotated-forbid-2.svg index d7a7c1563..e86a886f9 100644 --- a/icons/outline/square-rotated-forbid-2.svg +++ b/icons/outline/square-rotated-forbid-2.svg @@ -15,6 +15,6 @@ unicode: "f01b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rotated-forbid.svg b/icons/outline/square-rotated-forbid.svg index 3df82f988..bbfa4ae17 100644 --- a/icons/outline/square-rotated-forbid.svg +++ b/icons/outline/square-rotated-forbid.svg @@ -15,6 +15,6 @@ unicode: "f01c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rotated.svg b/icons/outline/square-rotated.svg index e68bea46c..d484c1e49 100644 --- a/icons/outline/square-rotated.svg +++ b/icons/outline/square-rotated.svg @@ -15,5 +15,5 @@ unicode: "ecdf" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-arrow-down.svg b/icons/outline/square-rounded-arrow-down.svg index 7115e8b36..9096f140e 100644 --- a/icons/outline/square-rounded-arrow-down.svg +++ b/icons/outline/square-rounded-arrow-down.svg @@ -17,5 +17,5 @@ unicode: "f639" > - + diff --git a/icons/outline/square-rounded-arrow-left.svg b/icons/outline/square-rounded-arrow-left.svg index f68875cf6..3f0f8fc75 100644 --- a/icons/outline/square-rounded-arrow-left.svg +++ b/icons/outline/square-rounded-arrow-left.svg @@ -17,5 +17,5 @@ unicode: "f63a" > - + diff --git a/icons/outline/square-rounded-arrow-right.svg b/icons/outline/square-rounded-arrow-right.svg index 8ff772b37..18aca7289 100644 --- a/icons/outline/square-rounded-arrow-right.svg +++ b/icons/outline/square-rounded-arrow-right.svg @@ -17,5 +17,5 @@ unicode: "f63b" > - + diff --git a/icons/outline/square-rounded-arrow-up.svg b/icons/outline/square-rounded-arrow-up.svg index 62695fb7d..b220d798c 100644 --- a/icons/outline/square-rounded-arrow-up.svg +++ b/icons/outline/square-rounded-arrow-up.svg @@ -17,5 +17,5 @@ unicode: "f63c" > - + diff --git a/icons/outline/square-rounded-check.svg b/icons/outline/square-rounded-check.svg index 7cd0481a3..ee418cad0 100644 --- a/icons/outline/square-rounded-check.svg +++ b/icons/outline/square-rounded-check.svg @@ -16,5 +16,5 @@ unicode: "f63d" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-chevron-down.svg b/icons/outline/square-rounded-chevron-down.svg index 07c8bb017..9fe5b0d07 100644 --- a/icons/outline/square-rounded-chevron-down.svg +++ b/icons/outline/square-rounded-chevron-down.svg @@ -16,5 +16,5 @@ unicode: "f62b" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-chevron-left.svg b/icons/outline/square-rounded-chevron-left.svg index 22fab919e..89df9f88b 100644 --- a/icons/outline/square-rounded-chevron-left.svg +++ b/icons/outline/square-rounded-chevron-left.svg @@ -16,5 +16,5 @@ unicode: "f62c" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-chevron-right.svg b/icons/outline/square-rounded-chevron-right.svg index 113ccef23..1f395c506 100644 --- a/icons/outline/square-rounded-chevron-right.svg +++ b/icons/outline/square-rounded-chevron-right.svg @@ -16,5 +16,5 @@ unicode: "f62d" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-chevron-up.svg b/icons/outline/square-rounded-chevron-up.svg index b16ba5219..45676b16d 100644 --- a/icons/outline/square-rounded-chevron-up.svg +++ b/icons/outline/square-rounded-chevron-up.svg @@ -16,5 +16,5 @@ unicode: "f62e" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-chevrons-down.svg b/icons/outline/square-rounded-chevrons-down.svg index 6a267f89f..daa824ff8 100644 --- a/icons/outline/square-rounded-chevrons-down.svg +++ b/icons/outline/square-rounded-chevrons-down.svg @@ -17,5 +17,5 @@ unicode: "f64f" > - + diff --git a/icons/outline/square-rounded-chevrons-left.svg b/icons/outline/square-rounded-chevrons-left.svg index 546ea6dd0..d173d6e22 100644 --- a/icons/outline/square-rounded-chevrons-left.svg +++ b/icons/outline/square-rounded-chevrons-left.svg @@ -17,5 +17,5 @@ unicode: "f650" > - + diff --git a/icons/outline/square-rounded-chevrons-right.svg b/icons/outline/square-rounded-chevrons-right.svg index 5a11ba3b8..80e919967 100644 --- a/icons/outline/square-rounded-chevrons-right.svg +++ b/icons/outline/square-rounded-chevrons-right.svg @@ -17,5 +17,5 @@ unicode: "f651" > - + diff --git a/icons/outline/square-rounded-chevrons-up.svg b/icons/outline/square-rounded-chevrons-up.svg index ef6d340de..263b7fc5b 100644 --- a/icons/outline/square-rounded-chevrons-up.svg +++ b/icons/outline/square-rounded-chevrons-up.svg @@ -17,5 +17,5 @@ unicode: "f652" > - + diff --git a/icons/outline/square-rounded-letter-a.svg b/icons/outline/square-rounded-letter-a.svg index d3b9c2b79..e2c5c39db 100644 --- a/icons/outline/square-rounded-letter-a.svg +++ b/icons/outline/square-rounded-letter-a.svg @@ -17,5 +17,5 @@ unicode: "f5ae" > - + diff --git a/icons/outline/square-rounded-letter-b.svg b/icons/outline/square-rounded-letter-b.svg index 32442826f..8491648f6 100644 --- a/icons/outline/square-rounded-letter-b.svg +++ b/icons/outline/square-rounded-letter-b.svg @@ -15,6 +15,6 @@ unicode: "f5af" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-rounded-letter-c.svg b/icons/outline/square-rounded-letter-c.svg index 865bddd74..e9caa0e98 100644 --- a/icons/outline/square-rounded-letter-c.svg +++ b/icons/outline/square-rounded-letter-c.svg @@ -16,5 +16,5 @@ unicode: "f5b0" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-d.svg b/icons/outline/square-rounded-letter-d.svg index 6dfce513e..97e6e2165 100644 --- a/icons/outline/square-rounded-letter-d.svg +++ b/icons/outline/square-rounded-letter-d.svg @@ -15,6 +15,6 @@ unicode: "f5b1" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-rounded-letter-e.svg b/icons/outline/square-rounded-letter-e.svg index b86f98f97..d4dfc5d2f 100644 --- a/icons/outline/square-rounded-letter-e.svg +++ b/icons/outline/square-rounded-letter-e.svg @@ -17,5 +17,5 @@ unicode: "f5b2" > - + diff --git a/icons/outline/square-rounded-letter-f.svg b/icons/outline/square-rounded-letter-f.svg index a10433642..1ca23671e 100644 --- a/icons/outline/square-rounded-letter-f.svg +++ b/icons/outline/square-rounded-letter-f.svg @@ -17,5 +17,5 @@ unicode: "f5b3" > - + diff --git a/icons/outline/square-rounded-letter-g.svg b/icons/outline/square-rounded-letter-g.svg index b67e3caf3..e60020cea 100644 --- a/icons/outline/square-rounded-letter-g.svg +++ b/icons/outline/square-rounded-letter-g.svg @@ -16,5 +16,5 @@ unicode: "f5b4" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-h.svg b/icons/outline/square-rounded-letter-h.svg index d8fab0322..746d81454 100644 --- a/icons/outline/square-rounded-letter-h.svg +++ b/icons/outline/square-rounded-letter-h.svg @@ -17,5 +17,5 @@ unicode: "f5b5" > - + diff --git a/icons/outline/square-rounded-letter-i.svg b/icons/outline/square-rounded-letter-i.svg index a5ba22385..2cbdf7571 100644 --- a/icons/outline/square-rounded-letter-i.svg +++ b/icons/outline/square-rounded-letter-i.svg @@ -16,5 +16,5 @@ unicode: "f5b6" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-j.svg b/icons/outline/square-rounded-letter-j.svg index e74f4e2c2..d8a3ca92a 100644 --- a/icons/outline/square-rounded-letter-j.svg +++ b/icons/outline/square-rounded-letter-j.svg @@ -16,5 +16,5 @@ unicode: "f5b7" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-k.svg b/icons/outline/square-rounded-letter-k.svg index 3948921e6..7e4c1d901 100644 --- a/icons/outline/square-rounded-letter-k.svg +++ b/icons/outline/square-rounded-letter-k.svg @@ -18,5 +18,5 @@ unicode: "f5b8" - + diff --git a/icons/outline/square-rounded-letter-l.svg b/icons/outline/square-rounded-letter-l.svg index 7477b6466..eda84ae00 100644 --- a/icons/outline/square-rounded-letter-l.svg +++ b/icons/outline/square-rounded-letter-l.svg @@ -16,5 +16,5 @@ unicode: "f5b9" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-m.svg b/icons/outline/square-rounded-letter-m.svg index 17820de79..3cd998ab8 100644 --- a/icons/outline/square-rounded-letter-m.svg +++ b/icons/outline/square-rounded-letter-m.svg @@ -16,5 +16,5 @@ unicode: "f5ba" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-n.svg b/icons/outline/square-rounded-letter-n.svg index faead0f4e..643a15f5a 100644 --- a/icons/outline/square-rounded-letter-n.svg +++ b/icons/outline/square-rounded-letter-n.svg @@ -16,5 +16,5 @@ unicode: "f5bb" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-o.svg b/icons/outline/square-rounded-letter-o.svg index 3628f4693..edf02f9de 100644 --- a/icons/outline/square-rounded-letter-o.svg +++ b/icons/outline/square-rounded-letter-o.svg @@ -15,6 +15,6 @@ unicode: "f5bc" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-rounded-letter-p.svg b/icons/outline/square-rounded-letter-p.svg index a7217d3c6..6fdad6c79 100644 --- a/icons/outline/square-rounded-letter-p.svg +++ b/icons/outline/square-rounded-letter-p.svg @@ -16,5 +16,5 @@ unicode: "f5bd" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-q.svg b/icons/outline/square-rounded-letter-q.svg index 9c7ddfa8b..4c77c977f 100644 --- a/icons/outline/square-rounded-letter-q.svg +++ b/icons/outline/square-rounded-letter-q.svg @@ -15,7 +15,7 @@ unicode: "f5be" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/square-rounded-letter-r.svg b/icons/outline/square-rounded-letter-r.svg index 747f2c10c..8a9957da0 100644 --- a/icons/outline/square-rounded-letter-r.svg +++ b/icons/outline/square-rounded-letter-r.svg @@ -16,5 +16,5 @@ unicode: "f5bf" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-s.svg b/icons/outline/square-rounded-letter-s.svg index 8f1d86bf8..9d366430f 100644 --- a/icons/outline/square-rounded-letter-s.svg +++ b/icons/outline/square-rounded-letter-s.svg @@ -16,5 +16,5 @@ unicode: "f5c0" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-t.svg b/icons/outline/square-rounded-letter-t.svg index 8c07562db..5679ce3f5 100644 --- a/icons/outline/square-rounded-letter-t.svg +++ b/icons/outline/square-rounded-letter-t.svg @@ -17,5 +17,5 @@ unicode: "f5c1" > - + diff --git a/icons/outline/square-rounded-letter-u.svg b/icons/outline/square-rounded-letter-u.svg index 26acbc66b..ab1f27059 100644 --- a/icons/outline/square-rounded-letter-u.svg +++ b/icons/outline/square-rounded-letter-u.svg @@ -16,5 +16,5 @@ unicode: "f5c2" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-v.svg b/icons/outline/square-rounded-letter-v.svg index dedcb77f4..b28fefb87 100644 --- a/icons/outline/square-rounded-letter-v.svg +++ b/icons/outline/square-rounded-letter-v.svg @@ -16,5 +16,5 @@ unicode: "f5c3" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-w.svg b/icons/outline/square-rounded-letter-w.svg index 801ed0702..da920855a 100644 --- a/icons/outline/square-rounded-letter-w.svg +++ b/icons/outline/square-rounded-letter-w.svg @@ -16,5 +16,5 @@ unicode: "f5c4" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-letter-x.svg b/icons/outline/square-rounded-letter-x.svg index e3ace0d59..a7092a19f 100644 --- a/icons/outline/square-rounded-letter-x.svg +++ b/icons/outline/square-rounded-letter-x.svg @@ -17,5 +17,5 @@ unicode: "f5c5" > - + diff --git a/icons/outline/square-rounded-letter-y.svg b/icons/outline/square-rounded-letter-y.svg index e825248c0..796a1bfac 100644 --- a/icons/outline/square-rounded-letter-y.svg +++ b/icons/outline/square-rounded-letter-y.svg @@ -17,5 +17,5 @@ unicode: "f5c6" > - + diff --git a/icons/outline/square-rounded-letter-z.svg b/icons/outline/square-rounded-letter-z.svg index 11bf9fbb0..663ada854 100644 --- a/icons/outline/square-rounded-letter-z.svg +++ b/icons/outline/square-rounded-letter-z.svg @@ -16,5 +16,5 @@ unicode: "f5c7" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-minus.svg b/icons/outline/square-rounded-minus.svg index fa9abc251..e11b687df 100644 --- a/icons/outline/square-rounded-minus.svg +++ b/icons/outline/square-rounded-minus.svg @@ -16,5 +16,5 @@ unicode: "f63e" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-0.svg b/icons/outline/square-rounded-number-0.svg index 711fc117d..87ff65bce 100644 --- a/icons/outline/square-rounded-number-0.svg +++ b/icons/outline/square-rounded-number-0.svg @@ -15,6 +15,6 @@ unicode: "f5c8" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/square-rounded-number-1.svg b/icons/outline/square-rounded-number-1.svg index 07a3d4b6c..9d33e7915 100644 --- a/icons/outline/square-rounded-number-1.svg +++ b/icons/outline/square-rounded-number-1.svg @@ -16,5 +16,5 @@ unicode: "f5c9" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-2.svg b/icons/outline/square-rounded-number-2.svg index ddf183f32..89362974d 100644 --- a/icons/outline/square-rounded-number-2.svg +++ b/icons/outline/square-rounded-number-2.svg @@ -16,5 +16,5 @@ unicode: "f5ca" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-3.svg b/icons/outline/square-rounded-number-3.svg index 139487151..27efe5f85 100644 --- a/icons/outline/square-rounded-number-3.svg +++ b/icons/outline/square-rounded-number-3.svg @@ -16,5 +16,5 @@ unicode: "f5cb" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-4.svg b/icons/outline/square-rounded-number-4.svg index 0faee6dc7..e17ece499 100644 --- a/icons/outline/square-rounded-number-4.svg +++ b/icons/outline/square-rounded-number-4.svg @@ -17,5 +17,5 @@ unicode: "f5cc" > - + diff --git a/icons/outline/square-rounded-number-5.svg b/icons/outline/square-rounded-number-5.svg index 15c0e14c4..f503179d9 100644 --- a/icons/outline/square-rounded-number-5.svg +++ b/icons/outline/square-rounded-number-5.svg @@ -16,5 +16,5 @@ unicode: "f5cd" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-6.svg b/icons/outline/square-rounded-number-6.svg index ff0dafde0..350eea7e7 100644 --- a/icons/outline/square-rounded-number-6.svg +++ b/icons/outline/square-rounded-number-6.svg @@ -16,5 +16,5 @@ unicode: "f5ce" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-7.svg b/icons/outline/square-rounded-number-7.svg index 4356d44f0..b04d147f8 100644 --- a/icons/outline/square-rounded-number-7.svg +++ b/icons/outline/square-rounded-number-7.svg @@ -16,5 +16,5 @@ unicode: "f5cf" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-8.svg b/icons/outline/square-rounded-number-8.svg index fdbdcb67a..00c546fd5 100644 --- a/icons/outline/square-rounded-number-8.svg +++ b/icons/outline/square-rounded-number-8.svg @@ -16,5 +16,5 @@ unicode: "f5d0" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-number-9.svg b/icons/outline/square-rounded-number-9.svg index 1f1615730..df949c5fc 100644 --- a/icons/outline/square-rounded-number-9.svg +++ b/icons/outline/square-rounded-number-9.svg @@ -16,5 +16,5 @@ unicode: "f5d1" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-percentage.svg b/icons/outline/square-rounded-percentage.svg index 3743c8fbf..69465ad01 100644 --- a/icons/outline/square-rounded-percentage.svg +++ b/icons/outline/square-rounded-percentage.svg @@ -15,7 +15,7 @@ unicode: "fd84" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-plus.svg b/icons/outline/square-rounded-plus.svg index f2b495d02..0d3b01657 100644 --- a/icons/outline/square-rounded-plus.svg +++ b/icons/outline/square-rounded-plus.svg @@ -15,7 +15,7 @@ unicode: "f63f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded-x.svg b/icons/outline/square-rounded-x.svg index 6c7a0d0d7..b03b60ce5 100644 --- a/icons/outline/square-rounded-x.svg +++ b/icons/outline/square-rounded-x.svg @@ -16,5 +16,5 @@ unicode: "f640" stroke-linejoin="round" > - + diff --git a/icons/outline/square-rounded.svg b/icons/outline/square-rounded.svg index f6357fcf5..89964c3d2 100644 --- a/icons/outline/square-rounded.svg +++ b/icons/outline/square-rounded.svg @@ -15,5 +15,5 @@ unicode: "f59a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square-x.svg b/icons/outline/square-x.svg index e3a9f0499..c8a3e689a 100644 --- a/icons/outline/square-x.svg +++ b/icons/outline/square-x.svg @@ -15,6 +15,6 @@ unicode: "eb2b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/square.svg b/icons/outline/square.svg index 79694ad6f..a7efd5aed 100644 --- a/icons/outline/square.svg +++ b/icons/outline/square.svg @@ -15,5 +15,5 @@ unicode: "eb2c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/squares-diagonal.svg b/icons/outline/squares-diagonal.svg index d66327115..1ead22e52 100644 --- a/icons/outline/squares-diagonal.svg +++ b/icons/outline/squares-diagonal.svg @@ -15,7 +15,7 @@ unicode: "eef5" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/squares-selected.svg b/icons/outline/squares-selected.svg index fd186bd0c..5d871a189 100644 --- a/icons/outline/squares-selected.svg +++ b/icons/outline/squares-selected.svg @@ -15,9 +15,9 @@ version: "3.1" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/squares.svg b/icons/outline/squares.svg index 93ac4e135..539c987a5 100644 --- a/icons/outline/squares.svg +++ b/icons/outline/squares.svg @@ -15,6 +15,6 @@ unicode: "eef6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/stack-back.svg b/icons/outline/stack-back.svg index 0f6faf795..63540af09 100644 --- a/icons/outline/stack-back.svg +++ b/icons/outline/stack-back.svg @@ -15,7 +15,7 @@ unicode: "fd26" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/stack-backward.svg b/icons/outline/stack-backward.svg index 99a223714..84b08e567 100644 --- a/icons/outline/stack-backward.svg +++ b/icons/outline/stack-backward.svg @@ -16,5 +16,5 @@ unicode: "fd27" stroke-linejoin="round" > - + diff --git a/icons/outline/stack-middle.svg b/icons/outline/stack-middle.svg index 34cc00846..f85dff2b8 100644 --- a/icons/outline/stack-middle.svg +++ b/icons/outline/stack-middle.svg @@ -16,6 +16,6 @@ unicode: "fd2a" stroke-linejoin="round" > - + diff --git a/icons/outline/star-half.svg b/icons/outline/star-half.svg index 3176fbae1..1629a2165 100644 --- a/icons/outline/star-half.svg +++ b/icons/outline/star-half.svg @@ -15,5 +15,5 @@ unicode: "ed19" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/star.svg b/icons/outline/star.svg index 5a5ab337b..38eecdb23 100644 --- a/icons/outline/star.svg +++ b/icons/outline/star.svg @@ -15,5 +15,5 @@ unicode: "eb2e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/stars-off.svg b/icons/outline/stars-off.svg index 4f0e72464..37932298f 100644 --- a/icons/outline/stars-off.svg +++ b/icons/outline/stars-off.svg @@ -16,7 +16,7 @@ unicode: "f430" stroke-linejoin="round" > - + diff --git a/icons/outline/stars.svg b/icons/outline/stars.svg index 66e236df7..0e4eb3c17 100644 --- a/icons/outline/stars.svg +++ b/icons/outline/stars.svg @@ -15,7 +15,7 @@ unicode: "ed38" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/status-change.svg b/icons/outline/status-change.svg index 19701cd06..f5be92662 100644 --- a/icons/outline/status-change.svg +++ b/icons/outline/status-change.svg @@ -15,8 +15,8 @@ unicode: "f3b0" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/steam.svg b/icons/outline/steam.svg index 010d5c667..32b810286 100644 --- a/icons/outline/steam.svg +++ b/icons/outline/steam.svg @@ -15,10 +15,10 @@ unicode: "f24b" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/steering-wheel.svg b/icons/outline/steering-wheel.svg index c8a397a7e..744682e8c 100644 --- a/icons/outline/steering-wheel.svg +++ b/icons/outline/steering-wheel.svg @@ -15,8 +15,8 @@ unicode: "ec7b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/step-into.svg b/icons/outline/step-into.svg index d0473a6fe..b7f8f877a 100644 --- a/icons/outline/step-into.svg +++ b/icons/outline/step-into.svg @@ -18,5 +18,5 @@ unicode: "ece0" - + diff --git a/icons/outline/step-out.svg b/icons/outline/step-out.svg index f0bf44dcf..5d2ed8ce6 100644 --- a/icons/outline/step-out.svg +++ b/icons/outline/step-out.svg @@ -18,5 +18,5 @@ unicode: "ece1" - + diff --git a/icons/outline/stereo-glasses.svg b/icons/outline/stereo-glasses.svg index 12fbda545..9a2ba204c 100644 --- a/icons/outline/stereo-glasses.svg +++ b/icons/outline/stereo-glasses.svg @@ -17,7 +17,7 @@ unicode: "f4cb" > - + diff --git a/icons/outline/stethoscope-off.svg b/icons/outline/stethoscope-off.svg index 271279f01..aa5256807 100644 --- a/icons/outline/stethoscope-off.svg +++ b/icons/outline/stethoscope-off.svg @@ -18,6 +18,6 @@ version: "1.94" - + diff --git a/icons/outline/stethoscope.svg b/icons/outline/stethoscope.svg index 7ed87126c..08eb5e846 100644 --- a/icons/outline/stethoscope.svg +++ b/icons/outline/stethoscope.svg @@ -15,9 +15,9 @@ unicode: "edbe" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/sticker-2.svg b/icons/outline/sticker-2.svg index 95ea71031..b9ca7da32 100644 --- a/icons/outline/sticker-2.svg +++ b/icons/outline/sticker-2.svg @@ -15,6 +15,6 @@ unicode: "fd3d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/stopwatch.svg b/icons/outline/stopwatch.svg index 5e30e9768..9d85b9042 100644 --- a/icons/outline/stopwatch.svg +++ b/icons/outline/stopwatch.svg @@ -15,7 +15,7 @@ unicode: "ff9b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/storm.svg b/icons/outline/storm.svg index 75230a420..2e291f01b 100644 --- a/icons/outline/storm.svg +++ b/icons/outline/storm.svg @@ -15,8 +15,8 @@ unicode: "f24c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/stretching.svg b/icons/outline/stretching.svg index d7a572723..1572d93dd 100644 --- a/icons/outline/stretching.svg +++ b/icons/outline/stretching.svg @@ -15,7 +15,7 @@ unicode: "f2db" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/submarine.svg b/icons/outline/submarine.svg index a88dbcb7a..567f2a5bd 100644 --- a/icons/outline/submarine.svg +++ b/icons/outline/submarine.svg @@ -15,7 +15,7 @@ unicode: "ed94" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/subtask.svg b/icons/outline/subtask.svg index b978199dd..4de9fa892 100644 --- a/icons/outline/subtask.svg +++ b/icons/outline/subtask.svg @@ -18,6 +18,6 @@ unicode: "ec9f" - - + + diff --git a/icons/outline/subtitles-edit.svg b/icons/outline/subtitles-edit.svg index 64e961818..5edbcb8f7 100644 --- a/icons/outline/subtitles-edit.svg +++ b/icons/outline/subtitles-edit.svg @@ -19,5 +19,5 @@ version: "3.36" - + diff --git a/icons/outline/subtitles.svg b/icons/outline/subtitles.svg index 95ac580d2..0358a3596 100644 --- a/icons/outline/subtitles.svg +++ b/icons/outline/subtitles.svg @@ -15,7 +15,7 @@ version: "3.36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sun-high.svg b/icons/outline/sun-high.svg index 897457686..9ebed531d 100644 --- a/icons/outline/sun-high.svg +++ b/icons/outline/sun-high.svg @@ -15,7 +15,7 @@ unicode: "f236" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sun-low.svg b/icons/outline/sun-low.svg index 6c3d640de..92df4cb7c 100644 --- a/icons/outline/sun-low.svg +++ b/icons/outline/sun-low.svg @@ -15,7 +15,7 @@ unicode: "f237" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/sun.svg b/icons/outline/sun.svg index 7a97f4827..d1fc6f209 100644 --- a/icons/outline/sun.svg +++ b/icons/outline/sun.svg @@ -15,6 +15,6 @@ unicode: "eb30" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swimming.svg b/icons/outline/swimming.svg index b0e63f4dc..7a47aa383 100644 --- a/icons/outline/swimming.svg +++ b/icons/outline/swimming.svg @@ -15,7 +15,7 @@ unicode: "ec92" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swipe-down.svg b/icons/outline/swipe-down.svg index f425b3c36..6cd466993 100644 --- a/icons/outline/swipe-down.svg +++ b/icons/outline/swipe-down.svg @@ -15,7 +15,7 @@ unicode: "fd5e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swipe-left.svg b/icons/outline/swipe-left.svg index 32f52d181..bd855ecf5 100644 --- a/icons/outline/swipe-left.svg +++ b/icons/outline/swipe-left.svg @@ -15,7 +15,7 @@ unicode: "fd5f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swipe-right.svg b/icons/outline/swipe-right.svg index e0e5ccfe4..16d0ccb6e 100644 --- a/icons/outline/swipe-right.svg +++ b/icons/outline/swipe-right.svg @@ -15,7 +15,7 @@ unicode: "fd60" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swipe-up.svg b/icons/outline/swipe-up.svg index bf747b93f..0f835484d 100644 --- a/icons/outline/swipe-up.svg +++ b/icons/outline/swipe-up.svg @@ -15,7 +15,7 @@ unicode: "fd61" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swipe.svg b/icons/outline/swipe.svg index 69be04638..d1b9b730b 100644 --- a/icons/outline/swipe.svg +++ b/icons/outline/swipe.svg @@ -16,5 +16,5 @@ unicode: "f551" stroke-linejoin="round" > - + diff --git a/icons/outline/sword.svg b/icons/outline/sword.svg index 5dc3eda38..5469d3266 100644 --- a/icons/outline/sword.svg +++ b/icons/outline/sword.svg @@ -15,6 +15,6 @@ unicode: "f030" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/swords.svg b/icons/outline/swords.svg index f56526ab9..6191d0fa4 100644 --- a/icons/outline/swords.svg +++ b/icons/outline/swords.svg @@ -15,7 +15,7 @@ unicode: "f132" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/table-alias.svg b/icons/outline/table-alias.svg index 6fe1e23d3..ec6a62852 100644 --- a/icons/outline/table-alias.svg +++ b/icons/outline/table-alias.svg @@ -18,5 +18,5 @@ unicode: "f25b" - + diff --git a/icons/outline/table-column.svg b/icons/outline/table-column.svg index 719f8d912..e04e5a706 100644 --- a/icons/outline/table-column.svg +++ b/icons/outline/table-column.svg @@ -15,7 +15,7 @@ unicode: "faff" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/table-dashed.svg b/icons/outline/table-dashed.svg index a1b805a23..06b2c2d4f 100644 --- a/icons/outline/table-dashed.svg +++ b/icons/outline/table-dashed.svg @@ -15,7 +15,7 @@ version: "3.24" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/table-heart.svg b/icons/outline/table-heart.svg index d4c9afee0..a75dee340 100644 --- a/icons/outline/table-heart.svg +++ b/icons/outline/table-heart.svg @@ -18,5 +18,5 @@ unicode: "fa1d" - + diff --git a/icons/outline/table-options.svg b/icons/outline/table-options.svg index 48505a355..57cd8b6c8 100644 --- a/icons/outline/table-options.svg +++ b/icons/outline/table-options.svg @@ -18,7 +18,7 @@ unicode: "f25c" - + diff --git a/icons/outline/table-row.svg b/icons/outline/table-row.svg index bfcce756d..5dd2d3c4c 100644 --- a/icons/outline/table-row.svg +++ b/icons/outline/table-row.svg @@ -15,7 +15,7 @@ unicode: "fb00" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/table.svg b/icons/outline/table.svg index 2f651aa73..69d7d38a1 100644 --- a/icons/outline/table.svg +++ b/icons/outline/table.svg @@ -15,7 +15,7 @@ unicode: "eba1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tag-minus.svg b/icons/outline/tag-minus.svg index cd351a98f..81d906fb9 100644 --- a/icons/outline/tag-minus.svg +++ b/icons/outline/tag-minus.svg @@ -15,7 +15,7 @@ unicode: "eb34" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tag-plus.svg b/icons/outline/tag-plus.svg index ee7c36f04..6a4f7ff1e 100644 --- a/icons/outline/tag-plus.svg +++ b/icons/outline/tag-plus.svg @@ -15,7 +15,7 @@ unicode: "10097" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tag-starred.svg b/icons/outline/tag-starred.svg index ce2ebfe7a..be43494be 100644 --- a/icons/outline/tag-starred.svg +++ b/icons/outline/tag-starred.svg @@ -15,7 +15,7 @@ unicode: "fc99" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/tag.svg b/icons/outline/tag.svg index ba08dbad3..5767b977a 100644 --- a/icons/outline/tag.svg +++ b/icons/outline/tag.svg @@ -15,6 +15,6 @@ unicode: "10096" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/tags.svg b/icons/outline/tags.svg index 43dcdfb25..f0918bcf6 100644 --- a/icons/outline/tags.svg +++ b/icons/outline/tags.svg @@ -15,7 +15,7 @@ unicode: "ef86" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tank.svg b/icons/outline/tank.svg index d40fcfda2..65e5c0cb5 100644 --- a/icons/outline/tank.svg +++ b/icons/outline/tank.svg @@ -15,7 +15,7 @@ unicode: "ed95" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/target-arrow.svg b/icons/outline/target-arrow.svg index 50872b0cd..c3a1a5db4 100644 --- a/icons/outline/target-arrow.svg +++ b/icons/outline/target-arrow.svg @@ -15,9 +15,9 @@ unicode: "f51a" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/target.svg b/icons/outline/target.svg index 30dfb3cdd..a58e6992a 100644 --- a/icons/outline/target.svg +++ b/icons/outline/target.svg @@ -15,7 +15,7 @@ unicode: "eb35" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/tax-euro.svg b/icons/outline/tax-euro.svg index 030d8cf5c..14f7e71cf 100644 --- a/icons/outline/tax-euro.svg +++ b/icons/outline/tax-euro.svg @@ -16,7 +16,7 @@ version: "3.5" stroke-linejoin="round" > - + diff --git a/icons/outline/tax-pound.svg b/icons/outline/tax-pound.svg index 670ef18ae..822b74c94 100644 --- a/icons/outline/tax-pound.svg +++ b/icons/outline/tax-pound.svg @@ -16,7 +16,7 @@ version: "3.5" stroke-linejoin="round" > - + diff --git a/icons/outline/tax.svg b/icons/outline/tax.svg index c4fb5ba1b..2ee6aab50 100644 --- a/icons/outline/tax.svg +++ b/icons/outline/tax.svg @@ -16,7 +16,7 @@ version: "3.5" stroke-linejoin="round" > - + diff --git a/icons/outline/teapot.svg b/icons/outline/teapot.svg index 46591cd35..89eec3427 100644 --- a/icons/outline/teapot.svg +++ b/icons/outline/teapot.svg @@ -15,7 +15,7 @@ unicode: "f552" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/telescope.svg b/icons/outline/telescope.svg index 0d196897e..b5ab664b1 100644 --- a/icons/outline/telescope.svg +++ b/icons/outline/telescope.svg @@ -17,6 +17,6 @@ unicode: "f07d" > - + diff --git a/icons/outline/temperature-celsius.svg b/icons/outline/temperature-celsius.svg index 13afc2f60..e9456f72d 100644 --- a/icons/outline/temperature-celsius.svg +++ b/icons/outline/temperature-celsius.svg @@ -15,6 +15,6 @@ unicode: "eb36" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/temperature-fahrenheit.svg b/icons/outline/temperature-fahrenheit.svg index c08d224a7..f4889d881 100644 --- a/icons/outline/temperature-fahrenheit.svg +++ b/icons/outline/temperature-fahrenheit.svg @@ -15,7 +15,7 @@ unicode: "eb37" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/template-off.svg b/icons/outline/template-off.svg index a2f3b5b9c..a6ace967b 100644 --- a/icons/outline/template-off.svg +++ b/icons/outline/template-off.svg @@ -16,7 +16,7 @@ unicode: "f1b0" stroke-linejoin="round" > - + diff --git a/icons/outline/template.svg b/icons/outline/template.svg index 589d9d955..d55c8e935 100644 --- a/icons/outline/template.svg +++ b/icons/outline/template.svg @@ -15,8 +15,8 @@ unicode: "eb39" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/terminal-2.svg b/icons/outline/terminal-2.svg index d8e138eec..383836348 100644 --- a/icons/outline/terminal-2.svg +++ b/icons/outline/terminal-2.svg @@ -17,5 +17,5 @@ unicode: "ebef" > - + diff --git a/icons/outline/test-pipe.svg b/icons/outline/test-pipe.svg index 4e3e995b1..8429f0c3f 100644 --- a/icons/outline/test-pipe.svg +++ b/icons/outline/test-pipe.svg @@ -17,6 +17,6 @@ unicode: "eb3a" > - + diff --git a/icons/outline/text-caption.svg b/icons/outline/text-caption.svg index 2e903447f..34068e4d4 100644 --- a/icons/outline/text-caption.svg +++ b/icons/outline/text-caption.svg @@ -16,6 +16,6 @@ unicode: "f4a4" stroke-linejoin="round" > - + diff --git a/icons/outline/text-resize.svg b/icons/outline/text-resize.svg index b3b4e1bee..e54649bf2 100644 --- a/icons/outline/text-resize.svg +++ b/icons/outline/text-resize.svg @@ -15,10 +15,10 @@ unicode: "ef87" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/theater.svg b/icons/outline/theater.svg index da8820260..e68dbe017 100644 --- a/icons/outline/theater.svg +++ b/icons/outline/theater.svg @@ -16,5 +16,5 @@ unicode: "f79b" stroke-linejoin="round" > - + diff --git a/icons/outline/thermometer.svg b/icons/outline/thermometer.svg index 345388f9d..915f1c092 100644 --- a/icons/outline/thermometer.svg +++ b/icons/outline/thermometer.svg @@ -15,7 +15,7 @@ unicode: "ef67" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tic-tac.svg b/icons/outline/tic-tac.svg index 227edd9ca..229d57c95 100644 --- a/icons/outline/tic-tac.svg +++ b/icons/outline/tic-tac.svg @@ -15,12 +15,12 @@ unicode: "f51c" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/tie.svg b/icons/outline/tie.svg index d00bcc0d3..fd44ded87 100644 --- a/icons/outline/tie.svg +++ b/icons/outline/tie.svg @@ -15,6 +15,6 @@ unicode: "f07e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tilt-shift.svg b/icons/outline/tilt-shift.svg index c39b3bd51..5dc79b50f 100644 --- a/icons/outline/tilt-shift.svg +++ b/icons/outline/tilt-shift.svg @@ -23,5 +23,5 @@ unicode: "eefe" - + diff --git a/icons/outline/time-duration-0.svg b/icons/outline/time-duration-0.svg index 9f62f1080..f0a1f77c1 100644 --- a/icons/outline/time-duration-0.svg +++ b/icons/outline/time-duration-0.svg @@ -27,5 +27,5 @@ unicode: "fad4" - + diff --git a/icons/outline/time-duration-10.svg b/icons/outline/time-duration-10.svg index 2edd8e0fd..fd1616d61 100644 --- a/icons/outline/time-duration-10.svg +++ b/icons/outline/time-duration-10.svg @@ -16,7 +16,7 @@ unicode: "fad5" stroke-linejoin="round" > - + diff --git a/icons/outline/time-duration-30.svg b/icons/outline/time-duration-30.svg index 3f163d05b..c9c02ef78 100644 --- a/icons/outline/time-duration-30.svg +++ b/icons/outline/time-duration-30.svg @@ -15,7 +15,7 @@ unicode: "fad7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/time-duration-60.svg b/icons/outline/time-duration-60.svg index dd672a110..fd7de2727 100644 --- a/icons/outline/time-duration-60.svg +++ b/icons/outline/time-duration-60.svg @@ -15,7 +15,7 @@ unicode: "fada" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/time-duration-90.svg b/icons/outline/time-duration-90.svg index 2dcb404ee..0ce96ae32 100644 --- a/icons/outline/time-duration-90.svg +++ b/icons/outline/time-duration-90.svg @@ -16,6 +16,6 @@ unicode: "fadb" stroke-linejoin="round" > - + diff --git a/icons/outline/timeline-event-exclamation.svg b/icons/outline/timeline-event-exclamation.svg index 912117ee2..9052adfd7 100644 --- a/icons/outline/timeline-event-exclamation.svg +++ b/icons/outline/timeline-event-exclamation.svg @@ -15,10 +15,10 @@ unicode: "f662" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline-event-minus.svg b/icons/outline/timeline-event-minus.svg index 60fdf549f..0fa529206 100644 --- a/icons/outline/timeline-event-minus.svg +++ b/icons/outline/timeline-event-minus.svg @@ -15,9 +15,9 @@ unicode: "f663" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline-event-plus.svg b/icons/outline/timeline-event-plus.svg index bee100198..c557d8f61 100644 --- a/icons/outline/timeline-event-plus.svg +++ b/icons/outline/timeline-event-plus.svg @@ -15,10 +15,10 @@ unicode: "f664" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline-event-text.svg b/icons/outline/timeline-event-text.svg index 8085f34ad..935a24be8 100644 --- a/icons/outline/timeline-event-text.svg +++ b/icons/outline/timeline-event-text.svg @@ -15,10 +15,10 @@ unicode: "f665" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline-event-x.svg b/icons/outline/timeline-event-x.svg index 53a79b0d6..2d07d5647 100644 --- a/icons/outline/timeline-event-x.svg +++ b/icons/outline/timeline-event-x.svg @@ -15,10 +15,10 @@ unicode: "f666" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline-event.svg b/icons/outline/timeline-event.svg index 575ddbba0..1e137cf22 100644 --- a/icons/outline/timeline-event.svg +++ b/icons/outline/timeline-event.svg @@ -15,8 +15,8 @@ unicode: "f553" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/timeline.svg b/icons/outline/timeline.svg index ee249eb53..0648d9e6e 100644 --- a/icons/outline/timeline.svg +++ b/icons/outline/timeline.svg @@ -16,8 +16,8 @@ unicode: "f031" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/timezone.svg b/icons/outline/timezone.svg index 37dc1229a..97a2bd616 100644 --- a/icons/outline/timezone.svg +++ b/icons/outline/timezone.svg @@ -20,6 +20,6 @@ version: "3.5" - + diff --git a/icons/outline/tip-jar-euro.svg b/icons/outline/tip-jar-euro.svg index 62c8506e3..c8d493b84 100644 --- a/icons/outline/tip-jar-euro.svg +++ b/icons/outline/tip-jar-euro.svg @@ -16,7 +16,7 @@ version: "3.5" stroke-linejoin="round" > - + diff --git a/icons/outline/tip-jar-pound.svg b/icons/outline/tip-jar-pound.svg index d175c1277..c25f06296 100644 --- a/icons/outline/tip-jar-pound.svg +++ b/icons/outline/tip-jar-pound.svg @@ -16,7 +16,7 @@ version: "3.5" stroke-linejoin="round" > - + diff --git a/icons/outline/tip-jar.svg b/icons/outline/tip-jar.svg index d09a9b482..eb8e02161 100644 --- a/icons/outline/tip-jar.svg +++ b/icons/outline/tip-jar.svg @@ -19,5 +19,5 @@ version: "3.5" - + diff --git a/icons/outline/tir.svg b/icons/outline/tir.svg index 168eaf9d9..5ff086377 100644 --- a/icons/outline/tir.svg +++ b/icons/outline/tir.svg @@ -15,8 +15,8 @@ unicode: "ebf0" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/toggle-left.svg b/icons/outline/toggle-left.svg index f14128720..c33796274 100644 --- a/icons/outline/toggle-left.svg +++ b/icons/outline/toggle-left.svg @@ -15,6 +15,6 @@ unicode: "eb3e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/toggle-right.svg b/icons/outline/toggle-right.svg index 708c5d0e8..5f9a139ab 100644 --- a/icons/outline/toggle-right.svg +++ b/icons/outline/toggle-right.svg @@ -15,6 +15,6 @@ unicode: "eb3f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/toilet-paper.svg b/icons/outline/toilet-paper.svg index 497997d18..65439fd55 100644 --- a/icons/outline/toilet-paper.svg +++ b/icons/outline/toilet-paper.svg @@ -15,7 +15,7 @@ unicode: "efd3" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/toml.svg b/icons/outline/toml.svg index 6de7810a6..6bfea4c67 100644 --- a/icons/outline/toml.svg +++ b/icons/outline/toml.svg @@ -17,7 +17,7 @@ unicode: "fa5d" > - + diff --git a/icons/outline/tools-kitchen-2.svg b/icons/outline/tools-kitchen-2.svg index 485f4e8de..a36696496 100644 --- a/icons/outline/tools-kitchen-2.svg +++ b/icons/outline/tools-kitchen-2.svg @@ -15,5 +15,5 @@ unicode: "eeff" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tools-kitchen-3.svg b/icons/outline/tools-kitchen-3.svg index 2ccb16f03..0eac83649 100644 --- a/icons/outline/tools-kitchen-3.svg +++ b/icons/outline/tools-kitchen-3.svg @@ -16,6 +16,6 @@ unicode: "fd2b" stroke-linejoin="round" > - + diff --git a/icons/outline/tools-kitchen-off.svg b/icons/outline/tools-kitchen-off.svg index 6f0ef73cc..3d663fc55 100644 --- a/icons/outline/tools-kitchen-off.svg +++ b/icons/outline/tools-kitchen-off.svg @@ -16,7 +16,7 @@ unicode: "f1b6" stroke-linejoin="round" > - + diff --git a/icons/outline/tools-kitchen.svg b/icons/outline/tools-kitchen.svg index 971c65c4b..70485c0fc 100644 --- a/icons/outline/tools-kitchen.svg +++ b/icons/outline/tools-kitchen.svg @@ -15,9 +15,9 @@ unicode: "ed64" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/tooltip.svg b/icons/outline/tooltip.svg index 5d71db554..7ebc8a638 100644 --- a/icons/outline/tooltip.svg +++ b/icons/outline/tooltip.svg @@ -15,6 +15,6 @@ unicode: "f2dd" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/topology-bus.svg b/icons/outline/topology-bus.svg index 845931e96..518d17a3f 100644 --- a/icons/outline/topology-bus.svg +++ b/icons/outline/topology-bus.svg @@ -15,9 +15,9 @@ unicode: "f5d9" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/topology-complex.svg b/icons/outline/topology-complex.svg index 783d6af34..44e4db52f 100644 --- a/icons/outline/topology-complex.svg +++ b/icons/outline/topology-complex.svg @@ -15,11 +15,11 @@ unicode: "f5da" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/topology-full-hierarchy.svg b/icons/outline/topology-full-hierarchy.svg index 253581e60..9988c07c4 100644 --- a/icons/outline/topology-full-hierarchy.svg +++ b/icons/outline/topology-full-hierarchy.svg @@ -15,11 +15,11 @@ unicode: "f5db" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/topology-full.svg b/icons/outline/topology-full.svg index 79a2015bd..4247cc2a6 100644 --- a/icons/outline/topology-full.svg +++ b/icons/outline/topology-full.svg @@ -15,10 +15,10 @@ unicode: "f5dc" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/topology-ring-2.svg b/icons/outline/topology-ring-2.svg index 8b231e420..a8df0deb2 100644 --- a/icons/outline/topology-ring-2.svg +++ b/icons/outline/topology-ring-2.svg @@ -15,9 +15,9 @@ unicode: "f5dd" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/topology-ring-3.svg b/icons/outline/topology-ring-3.svg index d2e03e157..ea2e0e928 100644 --- a/icons/outline/topology-ring-3.svg +++ b/icons/outline/topology-ring-3.svg @@ -15,10 +15,10 @@ unicode: "f5de" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/topology-ring.svg b/icons/outline/topology-ring.svg index 75c37d150..0a97a1de1 100644 --- a/icons/outline/topology-ring.svg +++ b/icons/outline/topology-ring.svg @@ -15,10 +15,10 @@ unicode: "f5df" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/topology-star-2.svg b/icons/outline/topology-star-2.svg index 3031d8bdb..96d48f349 100644 --- a/icons/outline/topology-star-2.svg +++ b/icons/outline/topology-star-2.svg @@ -15,11 +15,11 @@ unicode: "f5e0" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/topology-star-3.svg b/icons/outline/topology-star-3.svg index a5fa412d7..7d8d7e4fd 100644 --- a/icons/outline/topology-star-3.svg +++ b/icons/outline/topology-star-3.svg @@ -15,13 +15,13 @@ unicode: "f5e1" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/topology-star-ring-2.svg b/icons/outline/topology-star-ring-2.svg index 3572f3892..836b45ea8 100644 --- a/icons/outline/topology-star-ring-2.svg +++ b/icons/outline/topology-star-ring-2.svg @@ -15,11 +15,11 @@ unicode: "f5e2" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/topology-star-ring-3.svg b/icons/outline/topology-star-ring-3.svg index 84fd40b4d..874a930d3 100644 --- a/icons/outline/topology-star-ring-3.svg +++ b/icons/outline/topology-star-ring-3.svg @@ -15,13 +15,13 @@ unicode: "f5e3" stroke-linecap="round" stroke-linejoin="round" > - - - - - - - + + + + + + + diff --git a/icons/outline/topology-star-ring.svg b/icons/outline/topology-star-ring.svg index 4c6dcc6f0..0925ad864 100644 --- a/icons/outline/topology-star-ring.svg +++ b/icons/outline/topology-star-ring.svg @@ -15,11 +15,11 @@ unicode: "f5e4" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/topology-star.svg b/icons/outline/topology-star.svg index 5245ae67d..f5015d59d 100644 --- a/icons/outline/topology-star.svg +++ b/icons/outline/topology-star.svg @@ -15,11 +15,11 @@ unicode: "f5e5" stroke-linecap="round" stroke-linejoin="round" > - - - - - + + + + + diff --git a/icons/outline/tournament.svg b/icons/outline/tournament.svg index 35b1dd79d..eef148a4a 100644 --- a/icons/outline/tournament.svg +++ b/icons/outline/tournament.svg @@ -15,10 +15,10 @@ unicode: "ecd0" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/tower.svg b/icons/outline/tower.svg index d193a7f47..51f82145d 100644 --- a/icons/outline/tower.svg +++ b/icons/outline/tower.svg @@ -15,6 +15,6 @@ unicode: "f2cb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/tractor.svg b/icons/outline/tractor.svg index 13da9981c..647ab4ee4 100644 --- a/icons/outline/tractor.svg +++ b/icons/outline/tractor.svg @@ -15,9 +15,9 @@ unicode: "ec0d" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/traffic-lights-off.svg b/icons/outline/traffic-lights-off.svg index 882ab4c15..2013802d5 100644 --- a/icons/outline/traffic-lights-off.svg +++ b/icons/outline/traffic-lights-off.svg @@ -18,6 +18,6 @@ unicode: "f1b9" - + diff --git a/icons/outline/traffic-lights.svg b/icons/outline/traffic-lights.svg index 9bcad8fd3..a00fd3a0d 100644 --- a/icons/outline/traffic-lights.svg +++ b/icons/outline/traffic-lights.svg @@ -15,8 +15,8 @@ unicode: "ed39" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transaction-bitcoin.svg b/icons/outline/transaction-bitcoin.svg index f7e128706..924dd65de 100644 --- a/icons/outline/transaction-bitcoin.svg +++ b/icons/outline/transaction-bitcoin.svg @@ -20,8 +20,8 @@ unicode: "fd6e" - - + + diff --git a/icons/outline/transaction-dollar.svg b/icons/outline/transaction-dollar.svg index f9f361f0f..852507e27 100644 --- a/icons/outline/transaction-dollar.svg +++ b/icons/outline/transaction-dollar.svg @@ -17,8 +17,8 @@ unicode: "fd6f" > - - + + diff --git a/icons/outline/transaction-euro.svg b/icons/outline/transaction-euro.svg index 3e5a43009..cdc7d18cb 100644 --- a/icons/outline/transaction-euro.svg +++ b/icons/outline/transaction-euro.svg @@ -17,8 +17,8 @@ unicode: "fd70" > - - + + diff --git a/icons/outline/transaction-pound.svg b/icons/outline/transaction-pound.svg index 5ae5c2a1c..e94152eaf 100644 --- a/icons/outline/transaction-pound.svg +++ b/icons/outline/transaction-pound.svg @@ -17,8 +17,8 @@ unicode: "fd71" > - - + + diff --git a/icons/outline/transaction-rupee.svg b/icons/outline/transaction-rupee.svg index 5b9080acc..631260895 100644 --- a/icons/outline/transaction-rupee.svg +++ b/icons/outline/transaction-rupee.svg @@ -17,8 +17,8 @@ unicode: "fd85" > - - + + diff --git a/icons/outline/transaction-yen.svg b/icons/outline/transaction-yen.svg index dd0ebe25b..7e3199385 100644 --- a/icons/outline/transaction-yen.svg +++ b/icons/outline/transaction-yen.svg @@ -19,8 +19,8 @@ unicode: "fd72" - - + + diff --git a/icons/outline/transaction-yuan.svg b/icons/outline/transaction-yuan.svg index 3616734f8..6a525849e 100644 --- a/icons/outline/transaction-yuan.svg +++ b/icons/outline/transaction-yuan.svg @@ -18,8 +18,8 @@ unicode: "fd73" - - + + diff --git a/icons/outline/transform-point-bottom-left.svg b/icons/outline/transform-point-bottom-left.svg index f9961df17..df0725e58 100644 --- a/icons/outline/transform-point-bottom-left.svg +++ b/icons/outline/transform-point-bottom-left.svg @@ -15,10 +15,10 @@ unicode: "fda5" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transform-point-bottom-right.svg b/icons/outline/transform-point-bottom-right.svg index cea14f78a..48f801865 100644 --- a/icons/outline/transform-point-bottom-right.svg +++ b/icons/outline/transform-point-bottom-right.svg @@ -15,10 +15,10 @@ unicode: "fda6" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transform-point-top-left.svg b/icons/outline/transform-point-top-left.svg index 97cb41281..4bf085ead 100644 --- a/icons/outline/transform-point-top-left.svg +++ b/icons/outline/transform-point-top-left.svg @@ -15,10 +15,10 @@ unicode: "fda7" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transform-point-top-right.svg b/icons/outline/transform-point-top-right.svg index 4ed7fe446..138dc533e 100644 --- a/icons/outline/transform-point-top-right.svg +++ b/icons/outline/transform-point-top-right.svg @@ -15,10 +15,10 @@ unicode: "fda8" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transform-point.svg b/icons/outline/transform-point.svg index 289591003..7b79a7511 100644 --- a/icons/outline/transform-point.svg +++ b/icons/outline/transform-point.svg @@ -15,10 +15,10 @@ unicode: "fda9" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/transition-bottom.svg b/icons/outline/transition-bottom.svg index 83c089d05..6e1f7178a 100644 --- a/icons/outline/transition-bottom.svg +++ b/icons/outline/transition-bottom.svg @@ -16,7 +16,7 @@ unicode: "f2b2" stroke-linejoin="round" > - + diff --git a/icons/outline/transition-left.svg b/icons/outline/transition-left.svg index 37c68d56b..4ad8de390 100644 --- a/icons/outline/transition-left.svg +++ b/icons/outline/transition-left.svg @@ -16,7 +16,7 @@ unicode: "f2b3" stroke-linejoin="round" > - + diff --git a/icons/outline/transition-right.svg b/icons/outline/transition-right.svg index 35187a990..daf126dd5 100644 --- a/icons/outline/transition-right.svg +++ b/icons/outline/transition-right.svg @@ -16,7 +16,7 @@ unicode: "f2b4" stroke-linejoin="round" > - + diff --git a/icons/outline/transition-top.svg b/icons/outline/transition-top.svg index c55700dc2..c5e1033e4 100644 --- a/icons/outline/transition-top.svg +++ b/icons/outline/transition-top.svg @@ -16,7 +16,7 @@ unicode: "f2b5" stroke-linejoin="round" > - + diff --git a/icons/outline/tree.svg b/icons/outline/tree.svg index 89ab4ef03..eb3a97d36 100644 --- a/icons/outline/tree.svg +++ b/icons/outline/tree.svg @@ -18,5 +18,5 @@ unicode: "ef01" - + diff --git a/icons/outline/trees.svg b/icons/outline/trees.svg index 142fb23fb..b4e194f0e 100644 --- a/icons/outline/trees.svg +++ b/icons/outline/trees.svg @@ -20,5 +20,5 @@ unicode: "ec10" - + diff --git a/icons/outline/trekking.svg b/icons/outline/trekking.svg index 6f50cc1f8..d03d89142 100644 --- a/icons/outline/trekking.svg +++ b/icons/outline/trekking.svg @@ -15,7 +15,7 @@ unicode: "f5ad" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/triangle-inverted.svg b/icons/outline/triangle-inverted.svg index 36884dbf5..8fe350357 100644 --- a/icons/outline/triangle-inverted.svg +++ b/icons/outline/triangle-inverted.svg @@ -15,5 +15,5 @@ unicode: "f01d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/triangle-minus.svg b/icons/outline/triangle-minus.svg index 406be5865..3da641885 100644 --- a/icons/outline/triangle-minus.svg +++ b/icons/outline/triangle-minus.svg @@ -15,6 +15,6 @@ unicode: "fc9b" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/triangle-plus.svg b/icons/outline/triangle-plus.svg index a526b9cc1..fd012a462 100644 --- a/icons/outline/triangle-plus.svg +++ b/icons/outline/triangle-plus.svg @@ -15,7 +15,7 @@ unicode: "fc9d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/triangle-square-circle.svg b/icons/outline/triangle-square-circle.svg index f820a6fcb..9abec42de 100644 --- a/icons/outline/triangle-square-circle.svg +++ b/icons/outline/triangle-square-circle.svg @@ -15,7 +15,7 @@ unicode: "ece8" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/triangle.svg b/icons/outline/triangle.svg index 6866ec2a8..a5b597d34 100644 --- a/icons/outline/triangle.svg +++ b/icons/outline/triangle.svg @@ -15,5 +15,5 @@ unicode: "eb44" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/triangles.svg b/icons/outline/triangles.svg index 811c31da4..c1ed47874 100644 --- a/icons/outline/triangles.svg +++ b/icons/outline/triangles.svg @@ -15,6 +15,6 @@ unicode: "f0a5" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/trolley.svg b/icons/outline/trolley.svg index 69c7609eb..6f73d1352 100644 --- a/icons/outline/trolley.svg +++ b/icons/outline/trolley.svg @@ -15,9 +15,9 @@ unicode: "f4cc" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/trophy-off.svg b/icons/outline/trophy-off.svg index 98df4d72b..ed867ac9e 100644 --- a/icons/outline/trophy-off.svg +++ b/icons/outline/trophy-off.svg @@ -19,7 +19,7 @@ unicode: "f438" - - + + diff --git a/icons/outline/trophy.svg b/icons/outline/trophy.svg index 43519c832..6b7d40ea7 100644 --- a/icons/outline/trophy.svg +++ b/icons/outline/trophy.svg @@ -19,6 +19,6 @@ unicode: "eb45" - - + + diff --git a/icons/outline/trowel.svg b/icons/outline/trowel.svg index 184b88e49..3f0f89142 100644 --- a/icons/outline/trowel.svg +++ b/icons/outline/trowel.svg @@ -15,7 +15,7 @@ unicode: "f368" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/truck-delivery.svg b/icons/outline/truck-delivery.svg index e99599c4a..769c89179 100644 --- a/icons/outline/truck-delivery.svg +++ b/icons/outline/truck-delivery.svg @@ -15,8 +15,8 @@ unicode: "ec4b" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/truck-loading.svg b/icons/outline/truck-loading.svg index 46e43f4f2..1b5b15f68 100644 --- a/icons/outline/truck-loading.svg +++ b/icons/outline/truck-loading.svg @@ -16,7 +16,7 @@ unicode: "f1da" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/truck-off.svg b/icons/outline/truck-off.svg index de081f796..6ba9d2f5d 100644 --- a/icons/outline/truck-off.svg +++ b/icons/outline/truck-off.svg @@ -15,7 +15,7 @@ unicode: "ef03" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/truck-return.svg b/icons/outline/truck-return.svg index e8f69cb3b..25881ef04 100644 --- a/icons/outline/truck-return.svg +++ b/icons/outline/truck-return.svg @@ -15,8 +15,8 @@ unicode: "ec4c" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/truck.svg b/icons/outline/truck.svg index 51ae7197e..9b1a418d0 100644 --- a/icons/outline/truck.svg +++ b/icons/outline/truck.svg @@ -15,7 +15,7 @@ unicode: "ebc4" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/typeface.svg b/icons/outline/typeface.svg index da2b16b11..ef56778b3 100644 --- a/icons/outline/typeface.svg +++ b/icons/outline/typeface.svg @@ -15,7 +15,7 @@ version: "3.0" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/uhd.svg b/icons/outline/uhd.svg index 5e9c1a1c7..5eb0a2d95 100644 --- a/icons/outline/uhd.svg +++ b/icons/outline/uhd.svg @@ -18,6 +18,6 @@ version: "3.23" - + diff --git a/icons/outline/umbrella-2.svg b/icons/outline/umbrella-2.svg index db4f485ff..d5062b3a5 100644 --- a/icons/outline/umbrella-2.svg +++ b/icons/outline/umbrella-2.svg @@ -15,6 +15,6 @@ unicode: "ff0e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/umbrella-closed-2.svg b/icons/outline/umbrella-closed-2.svg index db98b497a..ec080d4f9 100644 --- a/icons/outline/umbrella-closed-2.svg +++ b/icons/outline/umbrella-closed-2.svg @@ -15,6 +15,6 @@ version: "3.7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/umbrella-closed.svg b/icons/outline/umbrella-closed.svg index cd314b0d1..47d56a877 100644 --- a/icons/outline/umbrella-closed.svg +++ b/icons/outline/umbrella-closed.svg @@ -15,6 +15,6 @@ unicode: "ff0c" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/umbrella.svg b/icons/outline/umbrella.svg index 794cd5597..b11bbfae5 100644 --- a/icons/outline/umbrella.svg +++ b/icons/outline/umbrella.svg @@ -15,6 +15,6 @@ unicode: "ebf1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/universe.svg b/icons/outline/universe.svg index 2744baba9..c92c31ae8 100644 --- a/icons/outline/universe.svg +++ b/icons/outline/universe.svg @@ -17,7 +17,7 @@ unicode: "fcc4" > - - - + + + diff --git a/icons/outline/urgent.svg b/icons/outline/urgent.svg index 6b34129fb..f88172f22 100644 --- a/icons/outline/urgent.svg +++ b/icons/outline/urgent.svg @@ -17,5 +17,5 @@ unicode: "eb48" > - + diff --git a/icons/outline/usb.svg b/icons/outline/usb.svg index 3e904f038..fc0489e35 100644 --- a/icons/outline/usb.svg +++ b/icons/outline/usb.svg @@ -15,11 +15,11 @@ unicode: "f00c" stroke-linecap="round" stroke-linejoin="round" > - + - - - + + + diff --git a/icons/outline/user-cancel.svg b/icons/outline/user-cancel.svg index 55fa48ced..56f6eb242 100644 --- a/icons/outline/user-cancel.svg +++ b/icons/outline/user-cancel.svg @@ -17,6 +17,6 @@ unicode: "f9d2" > - + diff --git a/icons/outline/user-circle.svg b/icons/outline/user-circle.svg index f9374fd9f..e6bff2e54 100644 --- a/icons/outline/user-circle.svg +++ b/icons/outline/user-circle.svg @@ -15,7 +15,7 @@ unicode: "ef68" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/user-cog.svg b/icons/outline/user-cog.svg index 607611df7..f8e78ae2d 100644 --- a/icons/outline/user-cog.svg +++ b/icons/outline/user-cog.svg @@ -17,7 +17,7 @@ unicode: "f9d4" > - + diff --git a/icons/outline/user-edit.svg b/icons/outline/user-edit.svg index 5a9caa410..5d6abd9c7 100644 --- a/icons/outline/user-edit.svg +++ b/icons/outline/user-edit.svg @@ -17,5 +17,5 @@ unicode: "f7cc" > - + diff --git a/icons/outline/user-heart.svg b/icons/outline/user-heart.svg index 8d31ccdf7..14578c044 100644 --- a/icons/outline/user-heart.svg +++ b/icons/outline/user-heart.svg @@ -17,5 +17,5 @@ unicode: "f7cd" > - + diff --git a/icons/outline/user-hexagon.svg b/icons/outline/user-hexagon.svg index cb6e50ba0..60f9c3cca 100644 --- a/icons/outline/user-hexagon.svg +++ b/icons/outline/user-hexagon.svg @@ -15,7 +15,7 @@ unicode: "fc4e" stroke-linecap="round" stroke-linejoin="round" > - + - + diff --git a/icons/outline/user-pentagon.svg b/icons/outline/user-pentagon.svg index b56ad0a55..47edfa11b 100644 --- a/icons/outline/user-pentagon.svg +++ b/icons/outline/user-pentagon.svg @@ -15,7 +15,7 @@ unicode: "fc4f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/user-pin.svg b/icons/outline/user-pin.svg index ccdb8aa8e..f740fb70b 100644 --- a/icons/outline/user-pin.svg +++ b/icons/outline/user-pin.svg @@ -17,6 +17,6 @@ unicode: "f7ce" > - + diff --git a/icons/outline/user-search.svg b/icons/outline/user-search.svg index 97f0acb32..8b81d7b3b 100644 --- a/icons/outline/user-search.svg +++ b/icons/outline/user-search.svg @@ -17,6 +17,6 @@ unicode: "ef89" > - + diff --git a/icons/outline/user-shield.svg b/icons/outline/user-shield.svg index a22d3b397..b2feee6a0 100644 --- a/icons/outline/user-shield.svg +++ b/icons/outline/user-shield.svg @@ -16,6 +16,6 @@ unicode: "f7d0" stroke-linejoin="round" > - + diff --git a/icons/outline/user-square-rounded.svg b/icons/outline/user-square-rounded.svg index 2f6631bc3..f5cbc13a7 100644 --- a/icons/outline/user-square-rounded.svg +++ b/icons/outline/user-square-rounded.svg @@ -15,7 +15,7 @@ unicode: "fc50" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/user-square.svg b/icons/outline/user-square.svg index 07d12ad4a..897957b69 100644 --- a/icons/outline/user-square.svg +++ b/icons/outline/user-square.svg @@ -17,5 +17,5 @@ unicode: "fc51" > - + diff --git a/icons/outline/user-star.svg b/icons/outline/user-star.svg index e067c660d..8bf71f7e1 100644 --- a/icons/outline/user-star.svg +++ b/icons/outline/user-star.svg @@ -17,5 +17,5 @@ unicode: "f7d1" > - + diff --git a/icons/outline/users.svg b/icons/outline/users.svg index ab159fb19..1eca1af7d 100644 --- a/icons/outline/users.svg +++ b/icons/outline/users.svg @@ -15,7 +15,7 @@ unicode: "ebf2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/ux-circle.svg b/icons/outline/ux-circle.svg index d76e262b2..1cab8ebe5 100644 --- a/icons/outline/ux-circle.svg +++ b/icons/outline/ux-circle.svg @@ -15,7 +15,7 @@ unicode: "f369" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/vaccine-bottle.svg b/icons/outline/vaccine-bottle.svg index 00405d35f..ef646fd15 100644 --- a/icons/outline/vaccine-bottle.svg +++ b/icons/outline/vaccine-bottle.svg @@ -15,7 +15,7 @@ unicode: "ef69" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/vacuum-cleaner.svg b/icons/outline/vacuum-cleaner.svg index a0e9e92a6..b0b3d4774 100644 --- a/icons/outline/vacuum-cleaner.svg +++ b/icons/outline/vacuum-cleaner.svg @@ -15,7 +15,7 @@ unicode: "f5e6" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/vector-bezier-2.svg b/icons/outline/vector-bezier-2.svg index 0bdfff141..258c82d5b 100644 --- a/icons/outline/vector-bezier-2.svg +++ b/icons/outline/vector-bezier-2.svg @@ -15,11 +15,11 @@ unicode: "f1a3" stroke-linecap="round" stroke-linejoin="round" > - - + + - - + + diff --git a/icons/outline/vector-bezier-arc.svg b/icons/outline/vector-bezier-arc.svg index d5b0ac03e..d952791e2 100644 --- a/icons/outline/vector-bezier-arc.svg +++ b/icons/outline/vector-bezier-arc.svg @@ -15,10 +15,10 @@ unicode: "f4cd" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/vector-bezier-circle.svg b/icons/outline/vector-bezier-circle.svg index e0d418944..924496d79 100644 --- a/icons/outline/vector-bezier-circle.svg +++ b/icons/outline/vector-bezier-circle.svg @@ -15,10 +15,10 @@ unicode: "f4ce" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/vector-bezier.svg b/icons/outline/vector-bezier.svg index 0e079beb1..e0e9e370b 100644 --- a/icons/outline/vector-bezier.svg +++ b/icons/outline/vector-bezier.svg @@ -15,13 +15,13 @@ unicode: "ef1d" stroke-linecap="round" stroke-linejoin="round" > - - - + + + - - + + diff --git a/icons/outline/vector-off.svg b/icons/outline/vector-off.svg index 1e330f307..9b1fe0ed1 100644 --- a/icons/outline/vector-off.svg +++ b/icons/outline/vector-off.svg @@ -16,9 +16,9 @@ unicode: "f1be" stroke-linejoin="round" > - + - + diff --git a/icons/outline/vector-spline.svg b/icons/outline/vector-spline.svg index 508c90f8c..ae2f85859 100644 --- a/icons/outline/vector-spline.svg +++ b/icons/outline/vector-spline.svg @@ -15,7 +15,7 @@ unicode: "f565" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/vector-triangle-off.svg b/icons/outline/vector-triangle-off.svg index 2bb41f7db..468b37959 100644 --- a/icons/outline/vector-triangle-off.svg +++ b/icons/outline/vector-triangle-off.svg @@ -16,7 +16,7 @@ unicode: "f1bf" stroke-linejoin="round" > - + diff --git a/icons/outline/vector-triangle.svg b/icons/outline/vector-triangle.svg index 2dee07f24..5f12f1705 100644 --- a/icons/outline/vector-triangle.svg +++ b/icons/outline/vector-triangle.svg @@ -15,9 +15,9 @@ unicode: "eca8" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/vector.svg b/icons/outline/vector.svg index 767461663..1b761571a 100644 --- a/icons/outline/vector.svg +++ b/icons/outline/vector.svg @@ -15,10 +15,10 @@ unicode: "eca9" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/venus.svg b/icons/outline/venus.svg index 68812bcf4..d128b5329 100644 --- a/icons/outline/venus.svg +++ b/icons/outline/venus.svg @@ -15,7 +15,7 @@ unicode: "ec86" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/versions.svg b/icons/outline/versions.svg index 73081b50b..b6e1bd35f 100644 --- a/icons/outline/versions.svg +++ b/icons/outline/versions.svg @@ -15,7 +15,7 @@ unicode: "ed52" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/video-minus.svg b/icons/outline/video-minus.svg index 246a1e178..ff24dd596 100644 --- a/icons/outline/video-minus.svg +++ b/icons/outline/video-minus.svg @@ -15,7 +15,7 @@ unicode: "ed1f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/video-plus.svg b/icons/outline/video-plus.svg index c09860d8c..ba096b0c4 100644 --- a/icons/outline/video-plus.svg +++ b/icons/outline/video-plus.svg @@ -15,8 +15,8 @@ unicode: "ed21" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/video.svg b/icons/outline/video.svg index 833573a6c..0ea98ef2a 100644 --- a/icons/outline/video.svg +++ b/icons/outline/video.svg @@ -15,6 +15,6 @@ unicode: "ed22" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/view-360-number.svg b/icons/outline/view-360-number.svg index 1325053d8..40a1ecd41 100644 --- a/icons/outline/view-360-number.svg +++ b/icons/outline/view-360-number.svg @@ -17,6 +17,6 @@ unicode: "f566" > - + diff --git a/icons/outline/view-360.svg b/icons/outline/view-360.svg index 2441f714b..a9f8b7058 100644 --- a/icons/outline/view-360.svg +++ b/icons/outline/view-360.svg @@ -15,7 +15,7 @@ unicode: "ed84" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/viewfinder.svg b/icons/outline/viewfinder.svg index 56e7015ca..70cd7ceab 100644 --- a/icons/outline/viewfinder.svg +++ b/icons/outline/viewfinder.svg @@ -15,7 +15,7 @@ unicode: "eb4e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/vinyl.svg b/icons/outline/vinyl.svg index 8cc7349ff..c89c9968f 100644 --- a/icons/outline/vinyl.svg +++ b/icons/outline/vinyl.svg @@ -16,7 +16,7 @@ unicode: "f00d" stroke-linejoin="round" > - - + + diff --git a/icons/outline/virus-search.svg b/icons/outline/virus-search.svg index c52c3f00e..609fa2e66 100644 --- a/icons/outline/virus-search.svg +++ b/icons/outline/virus-search.svg @@ -30,6 +30,6 @@ unicode: "ed67" - + diff --git a/icons/outline/virus.svg b/icons/outline/virus.svg index 350f12fbc..2630ed3f5 100644 --- a/icons/outline/virus.svg +++ b/icons/outline/virus.svg @@ -15,7 +15,7 @@ unicode: "eb74" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/vocabulary.svg b/icons/outline/vocabulary.svg index e55aa4b67..db1465b7c 100644 --- a/icons/outline/vocabulary.svg +++ b/icons/outline/vocabulary.svg @@ -15,7 +15,7 @@ unicode: "ef1e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/walk.svg b/icons/outline/walk.svg index 2e6e66062..221ca63da 100644 --- a/icons/outline/walk.svg +++ b/icons/outline/walk.svg @@ -15,7 +15,7 @@ unicode: "ec87" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wall.svg b/icons/outline/wall.svg index e3bed9510..8b18d5220 100644 --- a/icons/outline/wall.svg +++ b/icons/outline/wall.svg @@ -15,7 +15,7 @@ unicode: "ef7a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wallpaper-off.svg b/icons/outline/wallpaper-off.svg index 16c9192ea..88b9091e4 100644 --- a/icons/outline/wallpaper-off.svg +++ b/icons/outline/wallpaper-off.svg @@ -16,7 +16,7 @@ unicode: "f1c5" stroke-linejoin="round" > - + diff --git a/icons/outline/wallpaper.svg b/icons/outline/wallpaper.svg index 45d9b1e19..57024048c 100644 --- a/icons/outline/wallpaper.svg +++ b/icons/outline/wallpaper.svg @@ -16,6 +16,6 @@ unicode: "ef56" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-1.svg b/icons/outline/wash-dry-1.svg index 641e7feca..652669ae4 100644 --- a/icons/outline/wash-dry-1.svg +++ b/icons/outline/wash-dry-1.svg @@ -15,7 +15,7 @@ unicode: "f2fa" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wash-dry-2.svg b/icons/outline/wash-dry-2.svg index 72763a552..71688abdd 100644 --- a/icons/outline/wash-dry-2.svg +++ b/icons/outline/wash-dry-2.svg @@ -15,8 +15,8 @@ unicode: "f2fb" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wash-dry-3.svg b/icons/outline/wash-dry-3.svg index 718efcbaf..29e489a52 100644 --- a/icons/outline/wash-dry-3.svg +++ b/icons/outline/wash-dry-3.svg @@ -15,8 +15,8 @@ unicode: "f2fc" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wash-dry-a.svg b/icons/outline/wash-dry-a.svg index 09a1d68dc..11a7b38b3 100644 --- a/icons/outline/wash-dry-a.svg +++ b/icons/outline/wash-dry-a.svg @@ -15,7 +15,7 @@ unicode: "f2fd" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-dip.svg b/icons/outline/wash-dry-dip.svg index 3bd9c11fa..cd53e3894 100644 --- a/icons/outline/wash-dry-dip.svg +++ b/icons/outline/wash-dry-dip.svg @@ -15,7 +15,7 @@ unicode: "f2fe" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-f.svg b/icons/outline/wash-dry-f.svg index 405367554..40cb26e62 100644 --- a/icons/outline/wash-dry-f.svg +++ b/icons/outline/wash-dry-f.svg @@ -15,7 +15,7 @@ unicode: "f2ff" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-flat.svg b/icons/outline/wash-dry-flat.svg index 531a89668..9cb932b41 100644 --- a/icons/outline/wash-dry-flat.svg +++ b/icons/outline/wash-dry-flat.svg @@ -15,6 +15,6 @@ unicode: "fa7f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-hang.svg b/icons/outline/wash-dry-hang.svg index b2e44dd30..aad5862cb 100644 --- a/icons/outline/wash-dry-hang.svg +++ b/icons/outline/wash-dry-hang.svg @@ -15,6 +15,6 @@ unicode: "f300" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-p.svg b/icons/outline/wash-dry-p.svg index 33b05ffad..c6a00a7d8 100644 --- a/icons/outline/wash-dry-p.svg +++ b/icons/outline/wash-dry-p.svg @@ -15,6 +15,6 @@ unicode: "f302" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-shade.svg b/icons/outline/wash-dry-shade.svg index f5eeef10b..1d3a363f5 100644 --- a/icons/outline/wash-dry-shade.svg +++ b/icons/outline/wash-dry-shade.svg @@ -15,7 +15,7 @@ unicode: "f303" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry-w.svg b/icons/outline/wash-dry-w.svg index c97ba97e7..3baeeae7e 100644 --- a/icons/outline/wash-dry-w.svg +++ b/icons/outline/wash-dry-w.svg @@ -15,6 +15,6 @@ unicode: "f322" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dry.svg b/icons/outline/wash-dry.svg index 4635a6d8c..471e7be92 100644 --- a/icons/outline/wash-dry.svg +++ b/icons/outline/wash-dry.svg @@ -15,5 +15,5 @@ unicode: "f304" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-dryclean.svg b/icons/outline/wash-dryclean.svg index 02d858101..1df79e917 100644 --- a/icons/outline/wash-dryclean.svg +++ b/icons/outline/wash-dryclean.svg @@ -15,5 +15,5 @@ unicode: "f305" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wash-eco.svg b/icons/outline/wash-eco.svg index 5eace69ae..d50701aa8 100644 --- a/icons/outline/wash-eco.svg +++ b/icons/outline/wash-eco.svg @@ -18,5 +18,5 @@ unicode: "fa80" - + diff --git a/icons/outline/wash-hand.svg b/icons/outline/wash-hand.svg index 03312b3f9..33ce750d3 100644 --- a/icons/outline/wash-hand.svg +++ b/icons/outline/wash-hand.svg @@ -17,6 +17,6 @@ unicode: "fa81" > - + diff --git a/icons/outline/wash-machine.svg b/icons/outline/wash-machine.svg index 48a2c1aa2..ee7414068 100644 --- a/icons/outline/wash-machine.svg +++ b/icons/outline/wash-machine.svg @@ -15,8 +15,8 @@ unicode: "f25e" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wash-tumble-dry.svg b/icons/outline/wash-tumble-dry.svg index afca2c965..45d081b8f 100644 --- a/icons/outline/wash-tumble-dry.svg +++ b/icons/outline/wash-tumble-dry.svg @@ -15,6 +15,6 @@ unicode: "f30f" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/waterpolo.svg b/icons/outline/waterpolo.svg index ec0a91a44..2fa8c3387 100644 --- a/icons/outline/waterpolo.svg +++ b/icons/outline/waterpolo.svg @@ -19,5 +19,5 @@ unicode: "fa6f" - + diff --git a/icons/outline/weight.svg b/icons/outline/weight.svg index 2393c49c2..5a0ce2a45 100644 --- a/icons/outline/weight.svg +++ b/icons/outline/weight.svg @@ -15,6 +15,6 @@ unicode: "f589" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wheat-off.svg b/icons/outline/wheat-off.svg index e96df3e6d..27e1c00fe 100644 --- a/icons/outline/wheat-off.svg +++ b/icons/outline/wheat-off.svg @@ -17,7 +17,7 @@ version: "3.23" > - + diff --git a/icons/outline/wheat.svg b/icons/outline/wheat.svg index 104707e48..13ce90cdc 100644 --- a/icons/outline/wheat.svg +++ b/icons/outline/wheat.svg @@ -16,7 +16,7 @@ version: "3.23" stroke-linejoin="round" > - + - + diff --git a/icons/outline/wheel.svg b/icons/outline/wheel.svg index c30052e18..8b985a423 100644 --- a/icons/outline/wheel.svg +++ b/icons/outline/wheel.svg @@ -15,8 +15,8 @@ unicode: "fc64" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/wheelchair-off.svg b/icons/outline/wheelchair-off.svg index e07bffb99..5954f77fc 100644 --- a/icons/outline/wheelchair-off.svg +++ b/icons/outline/wheelchair-off.svg @@ -15,7 +15,7 @@ unicode: "f43e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wheelchair.svg b/icons/outline/wheelchair.svg index 0ec9562ca..27450ac51 100644 --- a/icons/outline/wheelchair.svg +++ b/icons/outline/wheelchair.svg @@ -15,8 +15,8 @@ unicode: "f1db" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/whirl.svg b/icons/outline/whirl.svg index 24aac4676..1c5a4d903 100644 --- a/icons/outline/whirl.svg +++ b/icons/outline/whirl.svg @@ -15,7 +15,7 @@ unicode: "f51d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/windmill-off.svg b/icons/outline/windmill-off.svg index 3f8697ad5..ec18259dd 100644 --- a/icons/outline/windmill-off.svg +++ b/icons/outline/windmill-off.svg @@ -17,7 +17,7 @@ unicode: "f1c8" > - + diff --git a/icons/outline/windmill.svg b/icons/outline/windmill.svg index 8848c2cd0..4ae6fc5d5 100644 --- a/icons/outline/windmill.svg +++ b/icons/outline/windmill.svg @@ -15,8 +15,8 @@ unicode: "ed85" stroke-linecap="round" stroke-linejoin="round" > - - - - + + + + diff --git a/icons/outline/window-maximize.svg b/icons/outline/window-maximize.svg index 241da4bc3..e048cb8a0 100644 --- a/icons/outline/window-maximize.svg +++ b/icons/outline/window-maximize.svg @@ -15,7 +15,7 @@ unicode: "f1f1" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/window-minimize.svg b/icons/outline/window-minimize.svg index 596f0b50c..4e35df419 100644 --- a/icons/outline/window-minimize.svg +++ b/icons/outline/window-minimize.svg @@ -15,7 +15,7 @@ unicode: "f1f2" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/window.svg b/icons/outline/window.svg index 9b785fc16..a6677f94c 100644 --- a/icons/outline/window.svg +++ b/icons/outline/window.svg @@ -15,7 +15,7 @@ unicode: "ef06" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wiper-wash.svg b/icons/outline/wiper-wash.svg index eebf872ac..4aa6cf2ca 100644 --- a/icons/outline/wiper-wash.svg +++ b/icons/outline/wiper-wash.svg @@ -15,7 +15,7 @@ unicode: "ecaa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/wiper.svg b/icons/outline/wiper.svg index cb65f9d2b..89fec68ce 100644 --- a/icons/outline/wiper.svg +++ b/icons/outline/wiper.svg @@ -15,7 +15,7 @@ unicode: "ecab" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/woman.svg b/icons/outline/woman.svg index 30350ee13..334b30fad 100644 --- a/icons/outline/woman.svg +++ b/icons/outline/woman.svg @@ -17,8 +17,8 @@ unicode: "eb53" > - + - + diff --git a/icons/outline/wood.svg b/icons/outline/wood.svg index 0944c2e24..b1509f7e9 100644 --- a/icons/outline/wood.svg +++ b/icons/outline/wood.svg @@ -15,7 +15,7 @@ unicode: "f359" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/world-cancel.svg b/icons/outline/world-cancel.svg index ca5ec0009..0389d9722 100644 --- a/icons/outline/world-cancel.svg +++ b/icons/outline/world-cancel.svg @@ -20,6 +20,6 @@ unicode: "f9da" - + diff --git a/icons/outline/world-cog.svg b/icons/outline/world-cog.svg index 94068a673..01048c49d 100644 --- a/icons/outline/world-cog.svg +++ b/icons/outline/world-cog.svg @@ -20,7 +20,7 @@ unicode: "f9dd" - + diff --git a/icons/outline/world-heart.svg b/icons/outline/world-heart.svg index c3e99c7cd..a46878542 100644 --- a/icons/outline/world-heart.svg +++ b/icons/outline/world-heart.svg @@ -20,5 +20,5 @@ unicode: "f9e1" - + diff --git a/icons/outline/world-latitude.svg b/icons/outline/world-latitude.svg index 303b5b722..0e9f239bd 100644 --- a/icons/outline/world-latitude.svg +++ b/icons/outline/world-latitude.svg @@ -15,7 +15,7 @@ unicode: "ed2e" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/world-longitude.svg b/icons/outline/world-longitude.svg index b6129dd23..f2633b6f9 100644 --- a/icons/outline/world-longitude.svg +++ b/icons/outline/world-longitude.svg @@ -15,7 +15,7 @@ unicode: "ed2f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/world-pin.svg b/icons/outline/world-pin.svg index d538d447c..f75c58db0 100644 --- a/icons/outline/world-pin.svg +++ b/icons/outline/world-pin.svg @@ -20,6 +20,6 @@ unicode: "f9e4" - + diff --git a/icons/outline/world-search.svg b/icons/outline/world-search.svg index ad69ac609..36624665f 100644 --- a/icons/outline/world-search.svg +++ b/icons/outline/world-search.svg @@ -20,6 +20,6 @@ unicode: "f9e7" - + diff --git a/icons/outline/world-star.svg b/icons/outline/world-star.svg index 07234f104..cb5aa4be8 100644 --- a/icons/outline/world-star.svg +++ b/icons/outline/world-star.svg @@ -20,5 +20,5 @@ unicode: "f9e9" - + diff --git a/icons/outline/wrecking-ball.svg b/icons/outline/wrecking-ball.svg index 129c134cd..ab9369d0e 100644 --- a/icons/outline/wrecking-ball.svg +++ b/icons/outline/wrecking-ball.svg @@ -15,9 +15,9 @@ unicode: "ed97" stroke-linecap="round" stroke-linejoin="round" > - - - + + + diff --git a/icons/outline/writing-sign.svg b/icons/outline/writing-sign.svg index 60af1ff1b..352d20709 100644 --- a/icons/outline/writing-sign.svg +++ b/icons/outline/writing-sign.svg @@ -16,6 +16,6 @@ unicode: "ef07" stroke-linejoin="round" > - + diff --git a/icons/outline/writing.svg b/icons/outline/writing.svg index 4e7d67790..02981fdb3 100644 --- a/icons/outline/writing.svg +++ b/icons/outline/writing.svg @@ -15,7 +15,7 @@ unicode: "ef08" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/xbox-a.svg b/icons/outline/xbox-a.svg index 31e9f9a33..177f0bb22 100644 --- a/icons/outline/xbox-a.svg +++ b/icons/outline/xbox-a.svg @@ -15,7 +15,7 @@ unicode: "f2b6" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/xbox-b.svg b/icons/outline/xbox-b.svg index aeb897e96..e22a06d2a 100644 --- a/icons/outline/xbox-b.svg +++ b/icons/outline/xbox-b.svg @@ -15,7 +15,7 @@ unicode: "f2b7" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/xbox-x.svg b/icons/outline/xbox-x.svg index ddcce80a7..e5155f252 100644 --- a/icons/outline/xbox-x.svg +++ b/icons/outline/xbox-x.svg @@ -15,7 +15,7 @@ unicode: "f2b8" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/xbox-y.svg b/icons/outline/xbox-y.svg index 31b7ae7ed..84638054e 100644 --- a/icons/outline/xbox-y.svg +++ b/icons/outline/xbox-y.svg @@ -15,7 +15,7 @@ unicode: "f2b9" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/xd.svg b/icons/outline/xd.svg index ad0d2943a..5bfae8c21 100644 --- a/icons/outline/xd.svg +++ b/icons/outline/xd.svg @@ -17,5 +17,5 @@ unicode: "fa33" > - + diff --git a/icons/outline/yin-yang.svg b/icons/outline/yin-yang.svg index 85ffdb687..12e736537 100644 --- a/icons/outline/yin-yang.svg +++ b/icons/outline/yin-yang.svg @@ -15,8 +15,8 @@ unicode: "ec35" stroke-linecap="round" stroke-linejoin="round" > - + - - + + diff --git a/icons/outline/yoga.svg b/icons/outline/yoga.svg index d716feac6..664f6dcad 100644 --- a/icons/outline/yoga.svg +++ b/icons/outline/yoga.svg @@ -15,7 +15,7 @@ unicode: "f01f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zeppelin.svg b/icons/outline/zeppelin.svg index 2548963fd..45f792e67 100644 --- a/icons/outline/zeppelin.svg +++ b/icons/outline/zeppelin.svg @@ -15,6 +15,6 @@ unicode: "f270" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zodiac-cancer.svg b/icons/outline/zodiac-cancer.svg index 507f3b500..fec8f8e07 100644 --- a/icons/outline/zodiac-cancer.svg +++ b/icons/outline/zodiac-cancer.svg @@ -15,8 +15,8 @@ unicode: "ecae" stroke-linecap="round" stroke-linejoin="round" > - - + + diff --git a/icons/outline/zodiac-capricorn.svg b/icons/outline/zodiac-capricorn.svg index 8c6fd4a7e..95fd54dd7 100644 --- a/icons/outline/zodiac-capricorn.svg +++ b/icons/outline/zodiac-capricorn.svg @@ -17,5 +17,5 @@ unicode: "ecaf" > - + diff --git a/icons/outline/zodiac-leo.svg b/icons/outline/zodiac-leo.svg index ef0dd4ce6..99e8205a3 100644 --- a/icons/outline/zodiac-leo.svg +++ b/icons/outline/zodiac-leo.svg @@ -16,8 +16,8 @@ unicode: "ecb1" stroke-linejoin="round" > - - + + diff --git a/icons/outline/zodiac-taurus.svg b/icons/outline/zodiac-taurus.svg index d0c16c2ad..8aa565a06 100644 --- a/icons/outline/zodiac-taurus.svg +++ b/icons/outline/zodiac-taurus.svg @@ -16,5 +16,5 @@ unicode: "ecb6" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-cancel.svg b/icons/outline/zoom-cancel.svg index 481d9fcb3..c1953045f 100644 --- a/icons/outline/zoom-cancel.svg +++ b/icons/outline/zoom-cancel.svg @@ -15,7 +15,7 @@ unicode: "ec4d" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-check.svg b/icons/outline/zoom-check.svg index bc50ae38f..059153d83 100644 --- a/icons/outline/zoom-check.svg +++ b/icons/outline/zoom-check.svg @@ -15,7 +15,7 @@ unicode: "ef09" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-code.svg b/icons/outline/zoom-code.svg index fc9f84ec2..8ee9a786b 100644 --- a/icons/outline/zoom-code.svg +++ b/icons/outline/zoom-code.svg @@ -15,7 +15,7 @@ unicode: "f07f" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-exclamation.svg b/icons/outline/zoom-exclamation.svg index f9063752d..65e8c3b7e 100644 --- a/icons/outline/zoom-exclamation.svg +++ b/icons/outline/zoom-exclamation.svg @@ -15,7 +15,7 @@ unicode: "f080" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-in-area.svg b/icons/outline/zoom-in-area.svg index f75820a55..d6e25708a 100644 --- a/icons/outline/zoom-in-area.svg +++ b/icons/outline/zoom-in-area.svg @@ -17,7 +17,7 @@ unicode: "f1dc" > - + diff --git a/icons/outline/zoom-in.svg b/icons/outline/zoom-in.svg index 670f472a5..c6f3ee1cb 100644 --- a/icons/outline/zoom-in.svg +++ b/icons/outline/zoom-in.svg @@ -15,7 +15,7 @@ unicode: "eb56" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-money.svg b/icons/outline/zoom-money.svg index baba6cfbc..fd1867f38 100644 --- a/icons/outline/zoom-money.svg +++ b/icons/outline/zoom-money.svg @@ -15,7 +15,7 @@ unicode: "ef0a" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-out-area.svg b/icons/outline/zoom-out-area.svg index f51505080..7fe02b3ea 100644 --- a/icons/outline/zoom-out-area.svg +++ b/icons/outline/zoom-out-area.svg @@ -16,7 +16,7 @@ unicode: "f1dd" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-out.svg b/icons/outline/zoom-out.svg index f60adc2e6..0c07bbad7 100644 --- a/icons/outline/zoom-out.svg +++ b/icons/outline/zoom-out.svg @@ -15,7 +15,7 @@ unicode: "eb57" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom-question.svg b/icons/outline/zoom-question.svg index 869f49e88..5bbeebd44 100644 --- a/icons/outline/zoom-question.svg +++ b/icons/outline/zoom-question.svg @@ -15,7 +15,7 @@ unicode: "edeb" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/icons/outline/zoom.svg b/icons/outline/zoom.svg index 029e40f29..c0371fb8b 100644 --- a/icons/outline/zoom.svg +++ b/icons/outline/zoom.svg @@ -15,6 +15,6 @@ unicode: "fdaa" stroke-linecap="round" stroke-linejoin="round" > - + diff --git a/package.json b/package.json index f4f88bf27..2844e526f 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,6 @@ "html-minifier": "^4.0.0", "jest-serializer-html": "^7.1.0", "jsdom": "^24.0.0", - "lodash.template": "4.5.0", "minimist": "1.2.8", "openai": "^4.73.1", "parse-svg-path": "^0.1.2", @@ -113,13 +112,14 @@ "release": true } }, - "packageManager": "pnpm@10.26.0", + "packageManager": "pnpm@10.26.1", "pnpm": { - "overrides": { - "sharp": "^0.33.5" - } - }, - "dependencies": { - "crypto-js": "^4.2.0" + "ignoredBuiltDependencies": [ + "@parcel/watcher", + "esbuild", + "sharp", + "svelte-preprocess", + "ttf2woff2" + ] } } diff --git a/packages/icons-webfont/.build/build-outline.mjs b/packages/icons-webfont/.build/build-outline.mjs deleted file mode 100644 index 21f42e1cd..000000000 --- a/packages/icons-webfont/.build/build-outline.mjs +++ /dev/null @@ -1,176 +0,0 @@ -import outlineStroke from 'svg-outline-stroke' -import { asyncForEach, getAllIcons, getCompileOptions, getPackageDir, HOME_DIR } from '../../../.build/helpers.mjs' -import fs from 'fs' -import { resolve, basename } from 'path' -import crypto from 'crypto' -import { glob } from 'glob' -import { optimize } from 'svgo' -import { fixOutline } from './fix-outline.mjs' -import os from 'os' - -const DIR = getPackageDir('icons-webfont') - -// Parallel processing with concurrency limit -const parallelLimit = async (items, fn, concurrency = os.cpus().length * 2) => { - const results = [] - let index = 0 - - const worker = async () => { - while (index < items.length) { - const i = index++ - results[i] = await fn(items[i], i) - } - } - - await Promise.all(Array(Math.min(concurrency, items.length)).fill(null).map(worker)) - return results -} - -const strokes = { - 200: 1, - 300: 1.5, - 400: 2, -} - -const buildOutline = async () => { - const icons = getAllIcons(true) - const compileOptions = getCompileOptions() - - // Process all strokes in parallel (200, 300, 400 at once) - await Promise.all(Object.entries(strokes).map(async ([strokeName, stroke]) => { - let filesList = {} - - for (const [type, typeIcons] of Object.entries(icons)) { - fs.mkdirSync(resolve(DIR, `icons-outlined/${strokeName}/${type}`), { recursive: true }) - - // Filter icons first - const iconsToProcess = typeIcons.filter(({ name, unicode }) => { - if (!unicode) return false - if (compileOptions.includeIcons.length > 0 && compileOptions.includeIcons.indexOf(name) < 0) return false - return true - }) - - // Collect filenames for later cleanup (Set for O(1) lookup) - filesList[type] = new Set(iconsToProcess.map(({ name, unicode }) => `u${unicode.toUpperCase()}-${name}.svg`)) - - // Process icons in parallel with concurrency limit - let processed = 0 - let cached = 0 - const total = iconsToProcess.length - const startTime = Date.now() - - // Progress update interval (every 50 icons to avoid console spam) - let lastProgress = 0 - const showProgress = () => { - const done = processed + cached - if (done - lastProgress >= 50 || done === total) { - const percent = Math.round((done / total) * 100) - const elapsed = ((Date.now() - startTime) / 1000).toFixed(1) - process.stdout.write(`\r[${strokeName}/${type}] ${done}/${total} (${percent}%) - ${elapsed}s`.padEnd(60)) - lastProgress = done - } - } - - await parallelLimit(iconsToProcess, async ({ name, content, unicode }) => { - const filename = `u${unicode.toUpperCase()}-${name}.svg` - const filePath = resolve(DIR, `icons-outlined/${strokeName}/${type}/${filename}`) - - // Check cache (try/catch faster than existsSync + readFileSync) - try { - const cachedContent = fs.readFileSync(filePath, 'utf-8') - let cachedHash = '' - const contentWithoutHash = cachedContent.replace(//, (m, hash) => { - cachedHash = hash - return '' - }) - - if (cachedHash && crypto.createHash('sha1').update(contentWithoutHash).digest("hex") === cachedHash) { - cached++ - showProgress() - return - } - } catch (e) { - // File doesn't exist, will be created - } - - // Prepare content - content = content - .replace('width="24"', 'width="1000"') - .replace('height="24"', 'height="1000"') - .replace('stroke-width="2"', `stroke-width="${stroke}"`) - - try { - const outlined = await outlineStroke(content, { - optCurve: true, - steps: 4, - round: 0, - centerHorizontally: true, - fixedWidth: false, - color: 'black' - }) - - // Fix outline direction (using JS instead of fontforge) - const fixed = fixOutline(outlined) - - // Optimize with svgo (in memory, no subprocess) - const optimized = optimize(fixed, { multipass: true }).data - - // Prepare final content with hash - const finalContent = optimized.replace(/\n/g, ' ').trim() - const hashString = `` - - // Save file - fs.writeFileSync(filePath, finalContent + hashString, 'utf-8') - - processed++ - showProgress() - } catch (error) { - console.error(`\nError processing ${strokeName}/${type}/${name}:`, error.message) - } - }, 64) // 64 concurrent tasks - - const totalTime = ((Date.now() - startTime) / 1000).toFixed(1) - console.log(`\n[${strokeName}/${type}] Done: ${processed} processed, ${cached} cached in ${totalTime}s`) - } - - // Remove old files - for (const [type] of Object.entries(icons)) { - const existedFiles = (await glob(resolve(DIR, `icons-outlined/${strokeName}/${type}/*.svg`))).map(file => basename(file)) - existedFiles.forEach(file => { - if (!filesList[type].has(file)) { - console.log('Remove:', file) - fs.unlinkSync(resolve(DIR, `icons-outlined/${strokeName}/${type}/${file}`)) - } - }) - } - - // Copy icons to all directory (parallel) - fs.mkdirSync(resolve(DIR, `icons-outlined/${strokeName}/all`), { recursive: true }) - - const copyTasks = [] - for (const [type, typeIcons] of Object.entries(icons)) { - for (const { name, unicode } of typeIcons) { - if (!unicode) continue - copyTasks.push({ type, name, unicode }) - } - } - - await parallelLimit(copyTasks, async ({ type, name, unicode }) => { - const iconName = `u${unicode.toUpperCase()}-${name}` - const srcPath = resolve(DIR, `icons-outlined/${strokeName}/${type}/${iconName}.svg`) - const destPath = resolve(DIR, `icons-outlined/${strokeName}/all/${iconName}${type !== 'outline' ? `-${type}` : ''}.svg`) - - try { - fs.copyFileSync(srcPath, destPath) - } catch (e) { - // Source file doesn't exist, skip - } - }, 128) // High concurrency for simple I/O - - console.log(`Stroke ${strokeName}: completed`) - })) - - console.log('Done') -} - -await buildOutline() diff --git a/packages/icons-webfont/.build/build-utilities.mjs b/packages/icons-webfont/.build/build-utilities.mjs deleted file mode 100644 index 0f06a3661..000000000 --- a/packages/icons-webfont/.build/build-utilities.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import fsPromises from 'node:fs/promises'; -import {createReadStream} from 'node:fs'; -import {SVGIcons2SVGFontStream} from "svgicons2svgfont"; - -/** - * @typedef {stream.Readable & { metadata?: import('svgicons2svgfont').FileMetadata }} Svgicons2svgfontStream - */ - -/** - * - * @param name {string} name - * @return {import('svgicons2svgfont').FileMetadata} - */ -function getMetadataFromSvgName(name) { - // we process uUnicode-Name.svg - const firstHyphen = name.indexOf('-'); - const unicode = name.slice(1, firstHyphen); - const iconName = name.slice(firstHyphen + 1, -4); - - const unicodeChar = String.fromCodePoint(parseInt(unicode, 16)); - return { - unicode: [unicodeChar], - name: iconName, - } -} - -/** - * - * @param path {string} The directory contains SVG files - * @return {Promise} - */ -export async function loadSvgFiles(path) { - const svgFiles = await fsPromises.readdir(path).then(files => files.filter(file => file.endsWith('.svg'))); - svgFiles.sort(); - return svgFiles.map(file => { - /** @type {Svgicons2svgfontStream} */ - const stream = createReadStream(`${path}/${file}`); - stream.metadata = getMetadataFromSvgName(file); - return stream; - }); -} - -/** - * - * @param svgStreams {Svgicons2svgfontStream[]} SVG files - * @return {Promise} - */ -export async function buildSvgFont(svgStreams) { - const fontStream = new SVGIcons2SVGFontStream({ - fontName: 'tabler-icons', - normalize: true, - fontHeight: 1000, - descent: 100, - ascent: 900, - fixedWidth: false, - }); - - const fontStreamPromise = new Promise((resolve, reject) => { - const buffers = []; - fontStream.on('data', chunk => buffers.push(chunk)); - fontStream.on('finish', () => { - resolve(buffers.join('')); - }); - fontStream.on('error', reject); - }); - - svgStreams.forEach(stream => { - fontStream.write(stream); - }); - fontStream.end(); - - return await fontStreamPromise; -} diff --git a/packages/icons-webfont/.build/build-webfont.mjs b/packages/icons-webfont/.build/build-webfont.mjs index 440bf66bc..f5a9a743e 100644 --- a/packages/icons-webfont/.build/build-webfont.mjs +++ b/packages/icons-webfont/.build/build-webfont.mjs @@ -1,75 +1,35 @@ -import { mkdirSync, writeFileSync, readFileSync } from 'node:fs' -import template from 'lodash.template' -import { getPackageDir, getPackageJson, getAliases, types, asyncForEach, toPascalCase } from '../../../.build/helpers.mjs' -import {buildSvgFont, loadSvgFiles} from "./build-utilities.mjs"; -import svg2ttf from "svg2ttf"; -import ttf2woff from "ttf2woff"; -import wawoff2 from "wawoff2"; +import path from 'node:path'; +import { getAllIcons, getPackageDir, strokes } from '../../../.build/helpers.mjs'; +import { generateFont, offsetPath, processIcons, removeComments, reorientPath, splitPaths } from './utilities.mjs'; -const p = getPackageJson() const DIR = getPackageDir('icons-webfont') -const strokes = { - 200: 1, - 300: 1.5, - 400: 2, +const outlineFiles = getAllIcons(true).outline; +const filledFiles = getAllIcons(true).filled; + +// Generate outline icons +for await (const [strokeName, strokeWidth] of Object.entries(strokes)) { + const dirname = path.join(DIR, 'icons-outlined', strokeName); + + await processIcons( + outlineFiles, + dirname, + 'outline', + DIR, + strokeName, + (svgContent) => { + svgContent = removeComments(svgContent); + svgContent = splitPaths(svgContent); + svgContent = offsetPath(svgContent, strokeWidth); + svgContent = reorientPath(svgContent); + return svgContent; + } + ); + + await generateFont(strokeName, 'outline', DIR); } -const aliases = getAliases(true) - -mkdirSync(`${DIR}/dist/fonts`, { recursive: true }) - -types.push('all') - -const getAlliasesFlat = () => { - let allAliases = {} - - Object.entries(aliases).forEach(([type, aliases]) => { - Object.entries(aliases).forEach(([from, to]) => { - allAliases[`${from}${type !== 'outline' ? `-${type}` : ''}`] = `${to}${type !== 'outline' ? `-${type}` : ''}` - }) - }) - - return allAliases -} - -for (const strokeName in strokes) { - asyncForEach(types, async type => { - console.log(`Building ${strokeName} webfont for ${type} icons`) - - const svgFiles = await loadSvgFiles(`icons-outlined/${strokeName}/${type}`); - const svgFontFileSource = await buildSvgFont(svgFiles); - const ttfFile = Buffer.from(svg2ttf(svgFontFileSource).buffer); - const woffFile = Buffer.from(ttf2woff(ttfFile).buffer); - const woff2File = await wawoff2.compress(ttfFile); - - const fileName = `tabler-icons${strokeName !== "400" ? `-${strokeName}` : ''}${type !== 'all' ? `-${type}` : ''}`; - //writeFileSync(`${DIR}/dist/fonts/${fileName}.svg`, svgFontFileSource); // for debug - writeFileSync(`${DIR}/dist/fonts/${fileName}.ttf`, ttfFile); - writeFileSync(`${DIR}/dist/fonts/${fileName}.woff`, woffFile); - writeFileSync(`${DIR}/dist/fonts/${fileName}.woff2`, woff2File); - - const glyphs = svgFiles.map(f => f.metadata) - .sort(function (a, b) { - return a.name.localeCompare(b.name) - }) - - const options = { - name: `Tabler Icons${type !== 'all' ? ` ${toPascalCase(type)}` : ''}`, - fileName, - glyphs, - v: p.version, - aliases: (type === 'all' ? getAlliasesFlat() : aliases[type]) || {} - } - - //scss - const compiled = template(readFileSync(`${DIR}/.build/iconfont.scss`).toString()) - const resultSCSS = compiled(options) - writeFileSync(`${DIR}/dist/${fileName}.scss`, resultSCSS) - - //html - const compiledHtml = template(readFileSync(`${DIR}/.build/iconfont.html`).toString()) - const resultHtml = compiledHtml(options) - writeFileSync(`${DIR}/dist/${fileName}.html`, resultHtml) - }) -} +// Generate filled icons +const filledDirname = path.join(DIR, 'icons-filled'); +await processIcons(filledFiles, filledDirname, 'filled', DIR); +await generateFont('filled', 'filled', DIR); \ No newline at end of file diff --git a/packages/icons-webfont/.build/fix-outline.mjs b/packages/icons-webfont/.build/fix-outline.mjs deleted file mode 100644 index 1a429b695..000000000 --- a/packages/icons-webfont/.build/fix-outline.mjs +++ /dev/null @@ -1,94 +0,0 @@ -import fs from 'fs' -import SVGPathCommander from 'svg-path-commander' - -/** - * Fix SVG outline directions - replacement for fontforge fix-outline.py - * Operations: - * 1. Round coordinates - * 2. Correct path direction (outer paths counterclockwise, inner paths clockwise) - */ -export function fixOutline(svgContent) { - // Extract all path elements - const pathRegex = /]*\sd="([^"]+)"[^>]*>/g - - let result = svgContent.replace(pathRegex, (match, pathData) => { - try { - // Round coordinates to integers (like fontforge's round()) and optimize - const commander = new SVGPathCommander(pathData, { round: 0 }) - const optimized = commander.optimize().toString() - - // Check and correct direction - // For font glyphs: outer paths should be counterclockwise - const segments = new SVGPathCommander(optimized).segments - const isClockwise = getPathDirection(segments) - - let finalPath = optimized - - // If path is clockwise, reverse it to make it counterclockwise (standard for outer contours) - if (isClockwise) { - finalPath = new SVGPathCommander(optimized, { round: 0 }).reverse().toString() - } - - return match.replace(pathData, finalPath) - } catch (e) { - console.warn('Could not process path:', e.message) - return match - } - }) - - return result -} - -/** - * Calculate path direction using shoelace formula - * Returns true if clockwise, false if counterclockwise - */ -function getPathDirection(segments) { - let sum = 0 - let points = [] - - // Extract points from segments - for (const seg of segments) { - if (seg[0] === 'M' || seg[0] === 'L') { - points.push({ x: seg[1], y: seg[2] }) - } else if (seg[0] === 'C') { - // For curves, use the endpoint - points.push({ x: seg[5], y: seg[6] }) - } else if (seg[0] === 'Q') { - points.push({ x: seg[3], y: seg[4] }) - } else if (seg[0] === 'Z' || seg[0] === 'z') { - // Close path - use first point - if (points.length > 0) { - points.push(points[0]) - } - } - } - - // Calculate signed area using shoelace formula - for (let i = 0; i < points.length - 1; i++) { - sum += (points[i + 1].x - points[i].x) * (points[i + 1].y + points[i].y) - } - - // Positive = clockwise, negative = counterclockwise (in SVG coordinate system where Y increases downward) - return sum > 0 -} - -/** - * Process SVG file - */ -export function fixOutlineFile(inputPath, outputPath = null) { - const content = fs.readFileSync(inputPath, 'utf-8') - const fixed = fixOutline(content) - fs.writeFileSync(outputPath || inputPath, fixed, 'utf-8') - return fixed -} - -// CLI support -if (process.argv[1] && process.argv[1].endsWith('fix-outline.mjs')) { - const file = process.argv[2] - if (file) { - console.log(`Correcting outline for ${file}`) - fixOutlineFile(file) - console.log('Finished fixing svg outline directions!') - } -} diff --git a/packages/icons-webfont/.build/iconfont.html b/packages/icons-webfont/.build/iconfont.html index c8c73bbd8..c92f9d90e 100644 --- a/packages/icons-webfont/.build/iconfont.html +++ b/packages/icons-webfont/.build/iconfont.html @@ -5,12 +5,12 @@ - Tabler Icons - version <%= v %> + Tabler Icons - version <%= it.v %> - +