@speedkit/cli 2.37.0 → 2.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +5 -5
- package/dist/commands/build-parameter-query.d.ts +1 -1
- package/dist/commands/build-prewarm-query.d.ts +1 -1
- package/dist/commands/deploy.d.ts +1 -1
- package/dist/commands/document-handler.d.ts +1 -1
- package/dist/commands/find-pops.js +0 -1
- package/dist/commands/onboarding.d.ts +1 -1
- package/dist/commands/onboarding.js +1 -1
- package/dist/commands/prewarm.d.ts +1 -1
- package/dist/commands/pull.d.ts +1 -1
- package/dist/dummy.spec.js +2 -3
- package/dist/helpers/build-query-helper.js +5 -6
- package/dist/helpers/file-helper.js +2 -3
- package/dist/helpers/get-parsed-config.js +3 -4
- package/dist/helpers/is-directory.js +1 -2
- package/dist/helpers/is-file.js +1 -2
- package/dist/helpers/logging-helper.js +3 -4
- package/dist/helpers/normalize.d.ts +0 -1
- package/dist/helpers/normalize.js +4 -5
- package/dist/helpers/race.js +1 -2
- package/dist/helpers/safe.js +1 -2
- package/dist/helpers/scrape.js +1 -1
- package/dist/helpers/speed-kit-rule-to-reg-exp.js +1 -2
- package/dist/models/cli-parameters.d.ts +1 -1
- package/dist/services/athena/athena-service-factory.js +1 -1
- package/dist/services/athena/athena-service.d.ts +3 -1
- package/dist/services/athena/athena-service.js +14 -2
- package/dist/services/config-api-service.d.ts +1 -1
- package/dist/services/config-api-service.js +1 -0
- package/dist/services/customer-config/templates/config_customer.js.hbs +5 -1
- package/dist/services/integration-api/file-reader.d.ts +0 -1
- package/dist/services/onboarding/browser/extension/devtools-extension-api.d.ts +7 -0
- package/dist/services/onboarding/browser/extension/devtools-extension-api.js +16 -0
- package/dist/services/onboarding/browser/extension/extension-validator.d.ts +10 -0
- package/dist/services/onboarding/browser/extension/extension-validator.js +71 -0
- package/dist/services/onboarding/dashboard/index.d.ts +1 -0
- package/dist/services/onboarding/dashboard/index.js +23 -22
- package/dist/services/onboarding/dashboard/request-diff-service.d.ts +2 -1
- package/dist/services/onboarding/dashboard/request-diff-service.js +34 -6
- package/dist/services/onboarding/error/browser-extension-error.d.ts +5 -0
- package/dist/services/onboarding/error/browser-extension-error.js +12 -0
- package/dist/services/onboarding/fetch-event-handler.js +13 -14
- package/dist/services/onboarding/onboarding-model.d.ts +33 -3
- package/dist/services/onboarding/onboarding-model.js +32 -5
- package/dist/services/onboarding/onboarding-service-factory.d.ts +1 -0
- package/dist/services/onboarding/onboarding-service-factory.js +22 -4
- package/dist/services/onboarding/onboarding-service.d.ts +3 -3
- package/dist/services/onboarding/onboarding-service.js +35 -30
- package/dist/services/onboarding/todo-collector.d.ts +2 -2
- package/dist/services/onboarding/todo-collector.js +1 -1
- package/dist/services/prewarm/assets/asset-api-client.js +0 -1
- package/oclif.manifest.json +1 -1
- package/package.json +19 -19
- package/dist/services/onboarding/dashboard/frontend-dist/assets/index-e3bd4f6e.css +0 -1
- package/dist/services/onboarding/dashboard/frontend-dist/assets/main-215271c2.js +0 -9
- package/dist/services/onboarding/dashboard/frontend-dist/index.html +0 -18
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InstallResourceInterface } from "../integration-api/integration-api-model";
|
|
2
2
|
export type task = {
|
|
3
3
|
todo: string;
|
|
4
4
|
context: string;
|
|
@@ -11,7 +11,7 @@ export type task = {
|
|
|
11
11
|
*/
|
|
12
12
|
export declare class TodoCollector {
|
|
13
13
|
private files;
|
|
14
|
-
constructor(files:
|
|
14
|
+
constructor(files: InstallResourceInterface[]);
|
|
15
15
|
getOpenTasks(): task[];
|
|
16
16
|
lineNumber(needle: string, haystack: string): number;
|
|
17
17
|
lineNumberByIndex(index: number, string: string): number;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speedkit/cli",
|
|
3
3
|
"description": "Speed Kit CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.39.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Baqend.com",
|
|
7
7
|
"email": "info@baqend.com"
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"prepare": "husky install",
|
|
24
24
|
"prebuild": "shx rm -rf dist",
|
|
25
|
-
"build": "tsc -b && copyfiles -u 1 src/**/*hbs ./dist && copyfiles -u 1 src/**/*js ./dist
|
|
26
|
-
"build:dashboard": "copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.html dist && copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.js dist && copyfiles -u 1 src/services/onboarding/dashboard/frontend-dist/**/*.css dist",
|
|
25
|
+
"build": "tsc -b && copyfiles -u 1 src/**/*hbs ./dist && copyfiles -u 1 src/**/*js ./dist",
|
|
27
26
|
"postbuild": "oclif manifest && oclif readme",
|
|
28
27
|
"prepack": "npm run build",
|
|
29
28
|
"test": "mocha --config ./.mocharc.cjs --reporter mocha-junit-reporter --reporter-options mochaFile=junit.xml",
|
|
@@ -83,21 +82,22 @@
|
|
|
83
82
|
"domhandler": "5.0.3",
|
|
84
83
|
"domutils": "^3.1",
|
|
85
84
|
"dotenv": "^16.4",
|
|
86
|
-
"esbuild": "^0.20",
|
|
87
85
|
"extract-zip": "^2.0.1",
|
|
88
|
-
"fs-extra": "^
|
|
89
|
-
"handlebars": "^4.7",
|
|
86
|
+
"fs-extra": "^11.2.0",
|
|
87
|
+
"handlebars": "^4.7.8",
|
|
90
88
|
"htmlparser2": "8.0",
|
|
91
89
|
"json2csv": "^6.0.0-alpha.2",
|
|
92
|
-
"node-fetch": "^2.
|
|
90
|
+
"node-fetch": "^2.7.0",
|
|
93
91
|
"parse5": "7.1",
|
|
94
92
|
"parse5-htmlparser2-tree-adapter": "7.0.0",
|
|
95
|
-
"puppeteer": "^
|
|
96
|
-
"puppeteer-core": "^22.
|
|
97
|
-
"puppeteer-extra": "^3.3",
|
|
98
|
-
"puppeteer-extra-plugin-user-preferences": "^2.4",
|
|
93
|
+
"puppeteer": "^22.6.5",
|
|
94
|
+
"puppeteer-core": "^22.6.5",
|
|
95
|
+
"puppeteer-extra": "^3.3.6",
|
|
96
|
+
"puppeteer-extra-plugin-user-preferences": "^2.4.1",
|
|
99
97
|
"strip-comments": "^2.0.1",
|
|
100
|
-
"uuid": "^
|
|
98
|
+
"uuid": "^9.0.1",
|
|
99
|
+
"esbuild": "^0.20.2",
|
|
100
|
+
"ts-node": "^10.9.2"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@commitlint/cli": "^17.7.1",
|
|
@@ -109,10 +109,10 @@
|
|
|
109
109
|
"@types/fs-extra": "^9.0.13",
|
|
110
110
|
"@types/mocha": "^10.0",
|
|
111
111
|
"@types/mock-fs": "^4.13.4",
|
|
112
|
-
"@types/node": "^
|
|
113
|
-
"@types/uuid": "^
|
|
112
|
+
"@types/node": "^20.12.7",
|
|
113
|
+
"@types/uuid": "^9.0.8",
|
|
114
114
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
115
|
-
"chai": "^4.4",
|
|
115
|
+
"chai": "^4.4.1",
|
|
116
116
|
"copyfiles": "^2.4.1",
|
|
117
117
|
"eslint": "^8.57",
|
|
118
118
|
"eslint-config-prettier": "^9.1",
|
|
@@ -124,16 +124,16 @@
|
|
|
124
124
|
"memfs": "^4.8.0",
|
|
125
125
|
"mocha": "^10.1.0",
|
|
126
126
|
"mocha-junit-reporter": "^2.2.1",
|
|
127
|
+
"mock-fs": "^5.2.0",
|
|
127
128
|
"nock": "^13.5",
|
|
128
129
|
"nyc": "^15.1.0",
|
|
129
|
-
"oclif": "^4.
|
|
130
|
+
"oclif": "^4.8.8",
|
|
130
131
|
"shx": "^0.3.4",
|
|
131
132
|
"ts-mocha": "^10.0.0",
|
|
132
|
-
"ts-node": "^10.9",
|
|
133
133
|
"ts-sinon": "^2.0.2",
|
|
134
134
|
"tslib": "^2.6",
|
|
135
|
-
"typescript": "^5.4",
|
|
136
|
-
"typescript-json-serializer": "^
|
|
135
|
+
"typescript": "^5.4.5",
|
|
136
|
+
"typescript-json-serializer": "^6.0.1"
|
|
137
137
|
},
|
|
138
138
|
"lint-staged": {
|
|
139
139
|
"*.ts": [
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Poppins-Regular;font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--red: #ff4c3f;--red-dimmed: #bb382e;--green: #10af80;--greenOpacity: RGBA(12, 217, 149, .16);--blue: #0568fd;--blue-dimmed: #034cb9;--disabled: #6b7c96;--disabled-dimmed: #525f73;--fontPrimary: #282c39;--fontSecondary: #6b7c96;--backgroundPrimary: #fff;--backgroundSecondary: #eef2f7;--borderPrimary: #d8e1ed;--borderSecondary: #d8e1ed;--whiteOpacity: RGBA(255, 255, 255, .6);--tableFontPrimary: var(--fontPrimary);--tableFontSecondary: var(--fontSecondary);--tableBackgroundPrimary: var(--backgroundPrimary);--tableBackgroundSecondary: #f7f8fb;--tableBackgroundTernary: var(--backgroundSecondary);--tableBorder: #d8e1ed;--hover: var(--backgroundSecondary);--input-background: var(--backgroundPrimary);font-family:Inter,system-ui,Avenir,Helvetica,Arial,sans-serif;font-weight:400;color-scheme:light dark;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}@media (prefers-contrast: more){:root{--fontSecondary: #282c39;--backgroundPrimary: #fff;--backgroundSecondary: #d8e1ed;--borderPrimary: #6b7c96;--borderSecondary: #6b7c96;--buttonPrimary: #0568fd;--buttonSecondary: #282c39;--whiteOpacity: RGBA(255, 255, 255, 1)}}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local("Lato Regular"),local("Lato-Regular"),url(/fonts/Lato-Regular.ttf) format("truetype")}@font-face{font-family:Lato-Bold;font-style:normal;font-weight:700;src:local("Lato Bold"),local("Lato-Bold"),url(/fonts/Lato-Bold.ttf) format("truetype")}@font-face{font-family:Poppins-Regular;font-style:normal;font-weight:400;src:local("Poppins Regular"),local("Poppins-Regular"),url(/fonts/Poppins-Regular.ttf) format("truetype")}@font-face{font-family:Poppins-SemiBold;font-style:normal;font-weight:600;src:local("Poppins SemiBold"),local("Poppins-SemiBold"),url(/fonts/Poppins-SemiBold.ttf) format("truetype")}a{font-weight:500;text-decoration:inherit}a:hover{color:var(--blue-dimmed)}body{margin:0;min-width:320px;min-height:100vh}h1{font-size:3.2em;line-height:1.1}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.pointer-events-none{pointer-events:none}.visible{visibility:visible}.collapse{visibility:collapse}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-y-\[0\.185rem\]{top:.185rem;bottom:.185rem}.left-1\/2-2{left:calc(50% - 2px)}.left-\[2px\]{left:2px}.top-\[0\]{top:0}.m-1{margin:.25rem}.m-2{margin:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.-ml-8{margin-left:-2rem}.mb-0{margin-bottom:0}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.min-h-screen{min-height:100vh}.w-1\/12{width:8.333333%}.w-1\/2{width:50%}.w-2\/12{width:16.666667%}.w-7\/12{width:58.333333%}.w-full{width:100%}.w-sidebar{width:clamp(60px,80px,130px)}.min-w-full{min-width:100%}.max-w-full{max-width:100%}.flex-auto{flex:1 1 auto}.flex-grow{flex-grow:1}.border-collapse{border-collapse:collapse}.scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.content-between{align-content:space-between}.content-evenly{align-content:space-evenly}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-evenly{justify-content:space-evenly}.overflow-hidden{overflow:hidden}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-bq-blue{border-color:var(--blue)}.border-bq-sec-border{border-color:var(--borderSecondary)}.border-bq-table-border{border-color:var(--tableBorder)}.border-b-bq-table-border{border-bottom-color:var(--tableBorder)}.bg-bq-blue{background-color:var(--blue)}.bg-bq-grey-light{--tw-bg-opacity: 1;background-color:rgb(242 244 246 / var(--tw-bg-opacity))}.bg-bq-prim-background{background-color:var(--backgroundPrimary)}.bg-bq-sec-background{background-color:var(--backgroundSecondary)}.bg-bq-table-background-prim{background-color:var(--tableBackgroundPrimary)}.bg-bq-table-background-sec{background-color:var(--tableBackgroundSecondary)}.bg-green-200{--tw-bg-opacity: 1;background-color:rgb(187 247 208 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-\[0\.185rem\]{padding:.185rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.text-left{text-align:left}.text-center{text-align:center}.font-bold{font-family:Poppins-SemiBold}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-clamp font-size{-d-e-f-a-u-l-t:clamp(.8rem,.425rem + 3vw,2rem);s:clamp(.3rem,.3438rem + 1.25vw,.8rem);m:clamp(.5rem,.3438rem + 1.25vw,1rem);xl:clamp(1rem,.6875rem + 2.5vw,2rem)}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-bold{font-weight:700}.capitalize{text-transform:capitalize}.text-bq-blue{color:var(--blue)}.text-bq-prim-font{color:var(--fontPrimary)}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.opacity-60{opacity:.6}.shadow{--tw-shadow: 0px 1px 4px 0px #282C3914;--tw-shadow-colored: 0px 1px 4px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}*:disabled{cursor:default}*:disabled:disabled{opacity:.5}@media (prefers-color-scheme: dark){html{--fontPrimary: #e1e8f0;--fontSecondary: #8493ad;--backgroundPrimary: #282c39;--backgroundSecondary: #121212;--borderPrimary: #2e373e;--borderSecondary: #4a5a65;--buttonPrimary: #0568fd;--buttonSecondary: #d8e1ed;--whiteOpacity: RGBA(255, 255, 255, .06);--hover: #393f51;--tableFontPrimary: #d8e1ed;--tableFontSecondary: rgba(216 225 237, .6);--tableBackgroundPrimary: var(--backgroundPrimary);--tableBackgroundSecondary: #21242d;--tableBackgroundTernary: #1d1f26;--tableBorder: #333a4b;--input-background: var(--backgroundSecondary);color-scheme:dark}}.g-input:focus-within{margin:-1px;border-width:2px;border-color:var(--blue)}.g-content-divider{margin-top:1.25rem;margin-bottom:1.25rem;border-width:1px;border-left-width:0px;border-right-width:0px;border-bottom-width:0px;border-color:var(--borderPrimary)}#app{height:100%;width:100%}.tabs-component{margin-bottom:1rem;display:flex;flex-direction:column;padding-left:.5rem;padding-right:.5rem}.tabs-component-tabs{margin-bottom:-.5rem;display:flex}.tabs-component-tabs .tabs-component-tab-a{display:block;background-color:var(--backgroundSecondary);padding:.5rem .75rem;color:var(--fontSecondary)}.tabs-component-tabs .tabs-component-tab-a.is-active,.tabs-component-tabs .tabs-component-tab-a:hover{background-color:var(--backgroundPrimary);color:var(--fontPrimary)}.tabs-component-panels{padding:.5rem;color:var(--fontPrimary)}.router-link-exact-active{background-color:var(--tableBackgroundSecondary)}.hover\:scale-95:hover{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:bg-blue-200:hover{--tw-bg-opacity: 1;background-color:rgb(191 219 254 / var(--tw-bg-opacity))}.hover\:outline:hover{outline-style:solid}.hover\:outline-bq-blue-dimmed:hover{outline-color:var(--blue-dimmed)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.datatable{border-collapse:collapse;table-layout:fixed}.data-table th{text-align:left}.datatable tr:nth-child(odd) textarea,.datatable tr:nth-child(odd) input,.datatable tr:nth-child(odd){background-color:var(--tableBackgroundPrimary)}.datatable tr:nth-child(2n) textarea,.datatable tr:nth-child(2n) input,.datatable tr:nth-child(2n){background-color:var(--tableBackgroundSecondary)}.datatable td{padding:.25rem}.datatable tr textarea.identical,.datatable tr input.identical{--tw-bg-opacity: 1;background-color:rgb(187 247 208 / var(--tw-bg-opacity))}.datatable tr textarea.diff,.datatable tr input.diff{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerPolicy&&(o.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?o.credentials="include":r.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function s(r){if(r.ep)return;r.ep=!0;const o=n(r);fetch(r.href,o)}})();function u1(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r<s.length;r++)n[s[r]]=!0;return t?r=>!!n[r.toLowerCase()]:r=>!!n[r]}function f1(e){if(N(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=de(s)?U0(s):f1(s);if(r)for(const o in r)t[o]=r[o]}return t}else{if(de(e))return e;if(oe(e))return e}}const j0=/;(?![^(]*\))/g,D0=/:([^]+)/,K0=/\/\*.*?\*\//gs;function U0(e){const t={};return e.replace(K0,"").split(j0).forEach(n=>{if(n){const s=n.split(D0);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function it(e){let t="";if(de(e))t=e;else if(N(e))for(let n=0;n<e.length;n++){const s=it(e[n]);s&&(t+=s+" ")}else if(oe(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const q0="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",z0=u1(q0);function Ps(e){return!!e||e===""}const ot=e=>de(e)?e:e==null?"":N(e)||oe(e)&&(e.toString===Ls||!j(e.toString))?JSON.stringify(e,Os,2):String(e),Os=(e,t)=>t&&t.__v_isRef?Os(e,t.value):Zt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:Ts(t)?{[`Set(${t.size})`]:[...t.values()]}:oe(t)&&!N(t)&&!Is(t)?String(t):t,ne={},Mt=[],ke=()=>{},W0=()=>!1,Q0=/^on[^a-z]/,An=e=>Q0.test(e),d1=e=>e.startsWith("onUpdate:"),be=Object.assign,h1=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},J0=Object.prototype.hasOwnProperty,Q=(e,t)=>J0.call(e,t),N=Array.isArray,Zt=e=>En(e)==="[object Map]",Ts=e=>En(e)==="[object Set]",j=e=>typeof e=="function",de=e=>typeof e=="string",p1=e=>typeof e=="symbol",oe=e=>e!==null&&typeof e=="object",Ss=e=>oe(e)&&j(e.then)&&j(e.catch),Ls=Object.prototype.toString,En=e=>Ls.call(e),G0=e=>En(e).slice(8,-1),Is=e=>En(e)==="[object Object]",m1=e=>de(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,fn=u1(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Rn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Y0=/-(\w)/g,qe=Rn(e=>e.replace(Y0,(t,n)=>n?n.toUpperCase():"")),X0=/\B([A-Z])/g,Ft=Rn(e=>e.replace(X0,"-$1").toLowerCase()),Mn=Rn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Bn=Rn(e=>e?`on${Mn(e)}`:""),Qt=(e,t)=>!Object.is(e,t),dn=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},_n=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},zn=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let k1;const er=()=>k1||(k1=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let He;class Hs{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=He,!t&&He&&(this.index=(He.scopes||(He.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=He;try{return He=this,t()}finally{He=n}}}on(){He=this}off(){He=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this._active=!1}}}function tr(e){return new Hs(e)}function nr(e,t=He){t&&t.active&&t.effects.push(e)}function sr(){return He}const g1=e=>{const t=new Set(e);return t.w=0,t.n=0,t},Bs=e=>(e.w&at)>0,Fs=e=>(e.n&at)>0,rr=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=at},or=e=>{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s<t.length;s++){const r=t[s];Bs(r)&&!Fs(r)?r.delete(e):t[n++]=r,r.w&=~at,r.n&=~at}t.length=n}},Wn=new WeakMap;let Kt=0,at=1;const Qn=30;let Be;const bt=Symbol(""),Jn=Symbol("");class _1{constructor(t,n=null,s){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,nr(this,s)}run(){if(!this.active)return this.fn();let t=Be,n=lt;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=Be,Be=this,lt=!0,at=1<<++Kt,Kt<=Qn?rr(this):V1(this),this.fn()}finally{Kt<=Qn&&or(this),at=1<<--Kt,Be=this.parent,lt=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){Be===this?this.deferStop=!0:this.active&&(V1(this),this.onStop&&this.onStop(),this.active=!1)}}function V1(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let lt=!0;const ks=[];function kt(){ks.push(lt),lt=!1}function Vt(){const e=ks.pop();lt=e===void 0?!0:e}function Ae(e,t,n){if(lt&&Be){let s=Wn.get(e);s||Wn.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=g1()),Vs(r)}}function Vs(e,t){let n=!1;Kt<=Qn?Fs(e)||(e.n|=at,n=!Bs(e)):n=!e.has(Be),n&&(e.add(Be),Be.deps.push(e))}function Ye(e,t,n,s,r,o){const i=Wn.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&N(e)){const a=Number(s);i.forEach((d,u)=>{(u==="length"||u>=a)&&l.push(d)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":N(e)?m1(n)&&l.push(i.get("length")):(l.push(i.get(bt)),Zt(e)&&l.push(i.get(Jn)));break;case"delete":N(e)||(l.push(i.get(bt)),Zt(e)&&l.push(i.get(Jn)));break;case"set":Zt(e)&&l.push(i.get(bt));break}if(l.length===1)l[0]&&Gn(l[0]);else{const a=[];for(const d of l)d&&a.push(...d);Gn(g1(a))}}function Gn(e,t){const n=N(e)?e:[...e];for(const s of n)s.computed&&N1(s);for(const s of n)s.computed||N1(s)}function N1(e,t){(e!==Be||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const ir=u1("__proto__,__v_isRef,__isVue"),Ns=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(p1)),lr=v1(),cr=v1(!1,!0),ar=v1(!0),j1=ur();function ur(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=J(this);for(let o=0,i=this.length;o<i;o++)Ae(s,"get",o+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(J)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){kt();const s=J(this)[t].apply(this,n);return Vt(),s}}),e}function fr(e){const t=J(this);return Ae(t,"has",e),t.hasOwnProperty(e)}function v1(e=!1,t=!1){return function(s,r,o){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&o===(e?t?Rr:qs:t?Us:Ks).get(s))return s;const i=N(s);if(!e){if(i&&Q(j1,r))return Reflect.get(j1,r,o);if(r==="hasOwnProperty")return fr}const l=Reflect.get(s,r,o);return(p1(r)?Ns.has(r):ir(r))||(e||Ae(s,"get",r),t)?l:he(l)?i&&m1(r)?l:l.value:oe(l)?e?zs(l):nn(l):l}}const dr=js(),hr=js(!0);function js(e=!1){return function(n,s,r,o){let i=n[s];if(St(i)&&he(i)&&!he(r))return!1;if(!e&&(!vn(r)&&!St(r)&&(i=J(i),r=J(r)),!N(n)&&he(i)&&!he(r)))return i.value=r,!0;const l=N(n)&&m1(s)?Number(s)<n.length:Q(n,s),a=Reflect.set(n,s,r,o);return n===J(o)&&(l?Qt(r,i)&&Ye(n,"set",s,r):Ye(n,"add",s,r)),a}}function pr(e,t){const n=Q(e,t);e[t];const s=Reflect.deleteProperty(e,t);return s&&n&&Ye(e,"delete",t,void 0),s}function mr(e,t){const n=Reflect.has(e,t);return(!p1(t)||!Ns.has(t))&&Ae(e,"has",t),n}function gr(e){return Ae(e,"iterate",N(e)?"length":bt),Reflect.ownKeys(e)}const Ds={get:lr,set:dr,deleteProperty:pr,has:mr,ownKeys:gr},_r={get:ar,set(e,t){return!0},deleteProperty(e,t){return!0}},vr=be({},Ds,{get:cr,set:hr}),x1=e=>e,Zn=e=>Reflect.getPrototypeOf(e);function rn(e,t,n=!1,s=!1){e=e.__v_raw;const r=J(e),o=J(t);n||(t!==o&&Ae(r,"get",t),Ae(r,"get",o));const{has:i}=Zn(r),l=s?x1:n?C1:Jt;if(i.call(r,t))return l(e.get(t));if(i.call(r,o))return l(e.get(o));e!==r&&e.get(t)}function on(e,t=!1){const n=this.__v_raw,s=J(n),r=J(e);return t||(e!==r&&Ae(s,"has",e),Ae(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function ln(e,t=!1){return e=e.__v_raw,!t&&Ae(J(e),"iterate",bt),Reflect.get(e,"size",e)}function D1(e){e=J(e);const t=J(this);return Zn(t).has.call(t,e)||(t.add(e),Ye(t,"add",e,e)),this}function K1(e,t){t=J(t);const n=J(this),{has:s,get:r}=Zn(n);let o=s.call(n,e);o||(e=J(e),o=s.call(n,e));const i=r.call(n,e);return n.set(e,t),o?Qt(t,i)&&Ye(n,"set",e,t):Ye(n,"add",e,t),this}function U1(e){const t=J(this),{has:n,get:s}=Zn(t);let r=n.call(t,e);r||(e=J(e),r=n.call(t,e)),s&&s.call(t,e);const o=t.delete(e);return r&&Ye(t,"delete",e,void 0),o}function q1(){const e=J(this),t=e.size!==0,n=e.clear();return t&&Ye(e,"clear",void 0,void 0),n}function cn(e,t){return function(s,r){const o=this,i=o.__v_raw,l=J(i),a=t?x1:e?C1:Jt;return!e&&Ae(l,"iterate",bt),i.forEach((d,u)=>s.call(r,a(d),a(u),o))}}function an(e,t,n){return function(...s){const r=this.__v_raw,o=J(r),i=Zt(o),l=e==="entries"||e===Symbol.iterator&&i,a=e==="keys"&&i,d=r[e](...s),u=n?x1:t?C1:Jt;return!t&&Ae(o,"iterate",a?Jn:bt),{next(){const{value:h,done:p}=d.next();return p?{value:h,done:p}:{value:l?[u(h[0]),u(h[1])]:u(h),done:p}},[Symbol.iterator](){return this}}}}function et(e){return function(...t){return e==="delete"?!1:this}}function xr(){const e={get(o){return rn(this,o)},get size(){return ln(this)},has:on,add:D1,set:K1,delete:U1,clear:q1,forEach:cn(!1,!1)},t={get(o){return rn(this,o,!1,!0)},get size(){return ln(this)},has:on,add:D1,set:K1,delete:U1,clear:q1,forEach:cn(!1,!0)},n={get(o){return rn(this,o,!0)},get size(){return ln(this,!0)},has(o){return on.call(this,o,!0)},add:et("add"),set:et("set"),delete:et("delete"),clear:et("clear"),forEach:cn(!0,!1)},s={get(o){return rn(this,o,!0,!0)},get size(){return ln(this,!0)},has(o){return on.call(this,o,!0)},add:et("add"),set:et("set"),delete:et("delete"),clear:et("clear"),forEach:cn(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=an(o,!1,!1),n[o]=an(o,!0,!1),t[o]=an(o,!1,!0),s[o]=an(o,!0,!0)}),[e,n,t,s]}const[br,wr,yr,Cr]=xr();function b1(e,t){const n=t?e?Cr:yr:e?wr:br;return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(Q(n,r)&&r in s?n:s,r,o)}const $r={get:b1(!1,!1)},Ar={get:b1(!1,!0)},Er={get:b1(!0,!1)},Ks=new WeakMap,Us=new WeakMap,qs=new WeakMap,Rr=new WeakMap;function Mr(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Zr(e){return e.__v_skip||!Object.isExtensible(e)?0:Mr(G0(e))}function nn(e){return St(e)?e:w1(e,!1,Ds,$r,Ks)}function Pr(e){return w1(e,!1,vr,Ar,Us)}function zs(e){return w1(e,!0,_r,Er,qs)}function w1(e,t,n,s,r){if(!oe(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=Zr(e);if(i===0)return e;const l=new Proxy(e,i===2?s:n);return r.set(e,l),l}function Pt(e){return St(e)?Pt(e.__v_raw):!!(e&&e.__v_isReactive)}function St(e){return!!(e&&e.__v_isReadonly)}function vn(e){return!!(e&&e.__v_isShallow)}function Ws(e){return Pt(e)||St(e)}function J(e){const t=e&&e.__v_raw;return t?J(t):e}function y1(e){return _n(e,"__v_skip",!0),e}const Jt=e=>oe(e)?nn(e):e,C1=e=>oe(e)?zs(e):e;function Qs(e){lt&&Be&&(e=J(e),Vs(e.dep||(e.dep=g1())))}function Js(e,t){e=J(e);const n=e.dep;n&&Gn(n)}function he(e){return!!(e&&e.__v_isRef===!0)}function Ot(e){return Gs(e,!1)}function Or(e){return Gs(e,!0)}function Gs(e,t){return he(e)?e:new Tr(e,t)}class Tr{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:J(t),this._value=n?t:Jt(t)}get value(){return Qs(this),this._value}set value(t){const n=this.__v_isShallow||vn(t)||St(t);t=n?t:J(t),Qt(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Jt(t),Js(this))}}function Re(e){return he(e)?e.value:e}const Sr={get:(e,t,n)=>Re(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return he(r)&&!he(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function Ys(e){return Pt(e)?e:new Proxy(e,Sr)}var Xs;class Lr{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Xs]=!1,this._dirty=!0,this.effect=new _1(t,()=>{this._dirty||(this._dirty=!0,Js(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=J(this);return Qs(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Xs="__v_isReadonly";function Ir(e,t,n=!1){let s,r;const o=j(e);return o?(s=e,r=ke):(s=e.get,r=e.set),new Lr(s,r,o||!r,n)}function ct(e,t,n,s){let r;try{r=s?e(...s):e()}catch(o){Pn(o,t,n)}return r}function Pe(e,t,n,s){if(j(e)){const o=ct(e,t,n,s);return o&&Ss(o)&&o.catch(i=>{Pn(i,t,n)}),o}const r=[];for(let o=0;o<e.length;o++)r.push(Pe(e[o],t,n,s));return r}function Pn(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,l=n;for(;o;){const d=o.ec;if(d){for(let u=0;u<d.length;u++)if(d[u](e,i,l)===!1)return}o=o.parent}const a=t.appContext.config.errorHandler;if(a){ct(a,null,10,[e,i,l]);return}}Hr(e,n,r,s)}function Hr(e,t,n,s=!0){console.error(e)}let Gt=!1,Yn=!1;const xe=[];let Ue=0;const Tt=[];let Je=null,mt=0;const e0=Promise.resolve();let $1=null;function t0(e){const t=$1||e0;return e?t.then(this?e.bind(this):e):t}function Br(e){let t=Ue+1,n=xe.length;for(;t<n;){const s=t+n>>>1;Yt(xe[s])<e?t=s+1:n=s}return t}function A1(e){(!xe.length||!xe.includes(e,Gt&&e.allowRecurse?Ue+1:Ue))&&(e.id==null?xe.push(e):xe.splice(Br(e.id),0,e),n0())}function n0(){!Gt&&!Yn&&(Yn=!0,$1=e0.then(r0))}function Fr(e){const t=xe.indexOf(e);t>Ue&&xe.splice(t,1)}function kr(e){N(e)?Tt.push(...e):(!Je||!Je.includes(e,e.allowRecurse?mt+1:mt))&&Tt.push(e),n0()}function z1(e,t=Gt?Ue+1:0){for(;t<xe.length;t++){const n=xe[t];n&&n.pre&&(xe.splice(t,1),t--,n())}}function s0(e){if(Tt.length){const t=[...new Set(Tt)];if(Tt.length=0,Je){Je.push(...t);return}for(Je=t,Je.sort((n,s)=>Yt(n)-Yt(s)),mt=0;mt<Je.length;mt++)Je[mt]();Je=null,mt=0}}const Yt=e=>e.id==null?1/0:e.id,Vr=(e,t)=>{const n=Yt(e)-Yt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function r0(e){Yn=!1,Gt=!0,xe.sort(Vr);const t=ke;try{for(Ue=0;Ue<xe.length;Ue++){const n=xe[Ue];n&&n.active!==!1&&ct(n,null,14)}}finally{Ue=0,xe.length=0,s0(),Gt=!1,$1=null,(xe.length||Tt.length)&&r0()}}function Nr(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||ne;let r=n;const o=t.startsWith("update:"),i=o&&t.slice(7);if(i&&i in s){const u=`${i==="modelValue"?"model":i}Modifiers`,{number:h,trim:p}=s[u]||ne;p&&(r=n.map(v=>de(v)?v.trim():v)),h&&(r=n.map(zn))}let l,a=s[l=Bn(t)]||s[l=Bn(qe(t))];!a&&o&&(a=s[l=Bn(Ft(t))]),a&&Pe(a,e,6,r);const d=s[l+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Pe(d,e,6,r)}}function o0(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},l=!1;if(!j(e)){const a=d=>{const u=o0(d,t,!0);u&&(l=!0,be(i,u))};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}return!o&&!l?(oe(e)&&s.set(e,null),null):(N(o)?o.forEach(a=>i[a]=null):be(i,o),oe(e)&&s.set(e,i),i)}function On(e,t){return!e||!An(t)?!1:(t=t.slice(2).replace(/Once$/,""),Q(e,t[0].toLowerCase()+t.slice(1))||Q(e,Ft(t))||Q(e,t))}let pe=null,i0=null;function xn(e){const t=pe;return pe=e,i0=e&&e.type.__scopeId||null,t}function fe(e,t=pe,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&ss(-1);const o=xn(t);let i;try{i=e(...r)}finally{xn(o),s._d&&ss(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function Fn(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:o,propsOptions:[i],slots:l,attrs:a,emit:d,render:u,renderCache:h,data:p,setupState:v,ctx:m,inheritAttrs:E}=e;let F,T;const k=xn(e);try{if(n.shapeFlag&4){const z=r||s;F=Ke(u.call(z,z,h,o,v,p,m)),T=a}else{const z=t;F=Ke(z.length>1?z(o,{attrs:a,slots:l,emit:d}):z(o,null)),T=t.props?a:jr(a)}}catch(z){zt.length=0,Pn(z,e,1),F=U(Oe)}let L=F;if(T&&E!==!1){const z=Object.keys(T),{shapeFlag:se}=L;z.length&&se&7&&(i&&z.some(d1)&&(T=Dr(T,i)),L=ut(L,T))}return n.dirs&&(L=ut(L),L.dirs=L.dirs?L.dirs.concat(n.dirs):n.dirs),n.transition&&(L.transition=n.transition),F=L,xn(k),F}const jr=e=>{let t;for(const n in e)(n==="class"||n==="style"||An(n))&&((t||(t={}))[n]=e[n]);return t},Dr=(e,t)=>{const n={};for(const s in e)(!d1(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Kr(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:l,patchFlag:a}=t,d=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&a>=0){if(a&1024)return!0;if(a&16)return s?W1(s,i,d):!!i;if(a&8){const u=t.dynamicProps;for(let h=0;h<u.length;h++){const p=u[h];if(i[p]!==s[p]&&!On(d,p))return!0}}}else return(r||l)&&(!l||!l.$stable)?!0:s===i?!1:s?i?W1(s,i,d):!0:!!i;return!1}function W1(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const o=s[r];if(t[o]!==e[o]&&!On(n,o))return!0}return!1}function Ur({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const qr=e=>e.__isSuspense;function zr(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):kr(e)}function hn(e,t){if(ce){let n=ce.provides;const s=ce.parent&&ce.parent.provides;s===n&&(n=ce.provides=Object.create(s)),n[e]=t}}function Ge(e,t,n=!1){const s=ce||pe;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&j(t)?t.call(s.proxy):t}}const un={};function pn(e,t,n){return l0(e,t,n)}function l0(e,t,{immediate:n,deep:s,flush:r,onTrack:o,onTrigger:i}=ne){const l=sr()===(ce==null?void 0:ce.scope)?ce:null;let a,d=!1,u=!1;if(he(e)?(a=()=>e.value,d=vn(e)):Pt(e)?(a=()=>e,s=!0):N(e)?(u=!0,d=e.some(L=>Pt(L)||vn(L)),a=()=>e.map(L=>{if(he(L))return L.value;if(Pt(L))return vt(L);if(j(L))return ct(L,l,2)})):j(e)?t?a=()=>ct(e,l,2):a=()=>{if(!(l&&l.isUnmounted))return h&&h(),Pe(e,l,3,[p])}:a=ke,t&&s){const L=a;a=()=>vt(L())}let h,p=L=>{h=T.onStop=()=>{ct(L,l,4)}},v;if(en)if(p=ke,t?n&&Pe(t,l,3,[a(),u?[]:void 0,p]):a(),r==="sync"){const L=Ko();v=L.__watcherHandles||(L.__watcherHandles=[])}else return ke;let m=u?new Array(e.length).fill(un):un;const E=()=>{if(T.active)if(t){const L=T.run();(s||d||(u?L.some((z,se)=>Qt(z,m[se])):Qt(L,m)))&&(h&&h(),Pe(t,l,3,[L,m===un?void 0:u&&m[0]===un?[]:m,p]),m=L)}else T.run()};E.allowRecurse=!!t;let F;r==="sync"?F=E:r==="post"?F=()=>$e(E,l&&l.suspense):(E.pre=!0,l&&(E.id=l.uid),F=()=>A1(E));const T=new _1(a,F);t?n?E():m=T.run():r==="post"?$e(T.run.bind(T),l&&l.suspense):T.run();const k=()=>{T.stop(),l&&l.scope&&h1(l.scope.effects,T)};return v&&v.push(k),k}function Wr(e,t,n){const s=this.proxy,r=de(e)?e.includes(".")?c0(s,e):()=>s[e]:e.bind(s,s);let o;j(t)?o=t:(o=t.handler,n=t);const i=ce;It(this);const l=l0(r,o.bind(s),n);return i?It(i):wt(),l}function c0(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function vt(e,t){if(!oe(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),he(e))vt(e.value,t);else if(N(e))for(let n=0;n<e.length;n++)vt(e[n],t);else if(Ts(e)||Zt(e))e.forEach(n=>{vt(n,t)});else if(Is(e))for(const n in e)vt(e[n],t);return e}function Qr(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return E1(()=>{e.isMounted=!0}),d0(()=>{e.isUnmounting=!0}),e}const Me=[Function,Array],Jr={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Me,onEnter:Me,onAfterEnter:Me,onEnterCancelled:Me,onBeforeLeave:Me,onLeave:Me,onAfterLeave:Me,onLeaveCancelled:Me,onBeforeAppear:Me,onAppear:Me,onAfterAppear:Me,onAppearCancelled:Me},setup(e,{slots:t}){const n=Ho(),s=Qr();let r;return()=>{const o=t.default&&u0(t.default(),!0);if(!o||!o.length)return;let i=o[0];if(o.length>1){for(const E of o)if(E.type!==Oe){i=E;break}}const l=J(e),{mode:a}=l;if(s.isLeaving)return kn(i);const d=Q1(i);if(!d)return kn(i);const u=Xn(d,l,s,n);e1(d,u);const h=n.subTree,p=h&&Q1(h);let v=!1;const{getTransitionKey:m}=d.type;if(m){const E=m();r===void 0?r=E:E!==r&&(r=E,v=!0)}if(p&&p.type!==Oe&&(!gt(d,p)||v)){const E=Xn(p,l,s,n);if(e1(p,E),a==="out-in")return s.isLeaving=!0,E.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},kn(i);a==="in-out"&&d.type!==Oe&&(E.delayLeave=(F,T,k)=>{const L=a0(s,p);L[String(p.key)]=p,F._leaveCb=()=>{T(),F._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=k})}return i}}},Gr=Jr;function a0(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Xn(e,t,n,s){const{appear:r,mode:o,persisted:i=!1,onBeforeEnter:l,onEnter:a,onAfterEnter:d,onEnterCancelled:u,onBeforeLeave:h,onLeave:p,onAfterLeave:v,onLeaveCancelled:m,onBeforeAppear:E,onAppear:F,onAfterAppear:T,onAppearCancelled:k}=t,L=String(e.key),z=a0(n,e),se=(D,le)=>{D&&Pe(D,s,9,le)},me=(D,le)=>{const te=le[1];se(D,le),N(D)?D.every(ge=>ge.length<=1)&&te():D.length<=1&&te()},ye={mode:o,persisted:i,beforeEnter(D){let le=l;if(!n.isMounted)if(r)le=E||l;else return;D._leaveCb&&D._leaveCb(!0);const te=z[L];te&>(e,te)&&te.el._leaveCb&&te.el._leaveCb(),se(le,[D])},enter(D){let le=a,te=d,ge=u;if(!n.isMounted)if(r)le=F||a,te=T||d,ge=k||u;else return;let _e=!1;const Te=D._enterCb=We=>{_e||(_e=!0,We?se(ge,[D]):se(te,[D]),ye.delayedLeave&&ye.delayedLeave(),D._enterCb=void 0)};le?me(le,[D,Te]):Te()},leave(D,le){const te=String(e.key);if(D._enterCb&&D._enterCb(!0),n.isUnmounting)return le();se(h,[D]);let ge=!1;const _e=D._leaveCb=Te=>{ge||(ge=!0,le(),Te?se(m,[D]):se(v,[D]),D._leaveCb=void 0,z[te]===e&&delete z[te])};z[te]=e,p?me(p,[D,_e]):_e()},clone(D){return Xn(D,t,n,s)}};return ye}function kn(e){if(Tn(e))return e=ut(e),e.children=null,e}function Q1(e){return Tn(e)?e.children?e.children[0]:void 0:e}function e1(e,t){e.shapeFlag&6&&e.component?e1(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function u0(e,t=!1,n){let s=[],r=0;for(let o=0;o<e.length;o++){let i=e[o];const l=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===ve?(i.patchFlag&128&&r++,s=s.concat(u0(i.children,t,l))):(t||i.type!==Oe)&&s.push(l!=null?ut(i,{key:l}):i)}if(r>1)for(let o=0;o<s.length;o++)s[o].patchFlag=-2;return s}function ze(e){return j(e)?{setup:e,name:e.name}:e}const Ut=e=>!!e.type.__asyncLoader,Tn=e=>e.type.__isKeepAlive;function Yr(e,t){f0(e,"a",t)}function Xr(e,t){f0(e,"da",t)}function f0(e,t,n=ce){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Sn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Tn(r.parent.vnode)&&eo(s,t,n,r),r=r.parent}}function eo(e,t,n,s){const r=Sn(t,e,s,!0);h0(()=>{h1(s[t],r)},n)}function Sn(e,t,n=ce,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;kt(),It(n);const l=Pe(t,n,e,i);return wt(),Vt(),l});return s?r.unshift(o):r.push(o),o}}const Xe=e=>(t,n=ce)=>(!en||e==="sp")&&Sn(e,(...s)=>t(...s),n),to=Xe("bm"),E1=Xe("m"),no=Xe("bu"),so=Xe("u"),d0=Xe("bum"),h0=Xe("um"),ro=Xe("sp"),oo=Xe("rtg"),io=Xe("rtc");function lo(e,t=ce){Sn("ec",e,t)}function co(e,t){const n=pe;if(n===null)return e;const s=Hn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let o=0;o<t.length;o++){let[i,l,a,d=ne]=t[o];i&&(j(i)&&(i={mounted:i,updated:i}),i.deep&&vt(l),r.push({dir:i,instance:s,value:l,oldValue:void 0,arg:a,modifiers:d}))}return e}function dt(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;i<r.length;i++){const l=r[i];o&&(l.oldValue=o[i].value);let a=l.dir[s];a&&(kt(),Pe(a,n,8,[e.el,l,e,t]),Vt())}}const R1="components";function p0(e,t){return g0(R1,e,!0,t)||e}const m0=Symbol();function ao(e){return de(e)?g0(R1,e,!1)||e:e||m0}function g0(e,t,n=!0,s=!1){const r=pe||ce;if(r){const o=r.type;if(e===R1){const l=No(o,!1);if(l&&(l===t||l===qe(t)||l===Mn(qe(t))))return o}const i=J1(r[e]||o[e],t)||J1(r.appContext[e],t);return!i&&s?o:i}}function J1(e,t){return e&&(e[t]||e[qe(t)]||e[Mn(qe(t))])}function M1(e,t,n,s){let r;const o=n&&n[s];if(N(e)||de(e)){r=new Array(e.length);for(let i=0,l=e.length;i<l;i++)r[i]=t(e[i],i,void 0,o&&o[i])}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,o&&o[i])}else if(oe(e))if(e[Symbol.iterator])r=Array.from(e,(i,l)=>t(i,l,void 0,o&&o[l]));else{const i=Object.keys(e);r=new Array(i.length);for(let l=0,a=i.length;l<a;l++){const d=i[l];r[l]=t(e[d],d,l,o&&o[l])}}else r=[];return n&&(n[s]=r),r}function Lt(e,t,n={},s,r){if(pe.isCE||pe.parent&&Ut(pe.parent)&&pe.parent.isCE)return t!=="default"&&(n.name=t),U("slot",n,s&&s());let o=e[t];o&&o._c&&(o._d=!1),P();const i=o&&_0(o(n)),l=yt(ve,{key:n.key||i&&i.key||`_${t}`},i||(s?s():[]),i&&e._===1?64:-2);return!r&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function _0(e){return e.some(t=>wn(t)?!(t.type===Oe||t.type===ve&&!_0(t.children)):!0)?e:null}const t1=e=>e?M0(e)?Hn(e)||e.proxy:t1(e.parent):null,qt=be(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>t1(e.parent),$root:e=>t1(e.root),$emit:e=>e.emit,$options:e=>Z1(e),$forceUpdate:e=>e.f||(e.f=()=>A1(e.update)),$nextTick:e=>e.n||(e.n=t0.bind(e.proxy)),$watch:e=>Wr.bind(e)}),Vn=(e,t)=>e!==ne&&!e.__isScriptSetup&&Q(e,t),uo={get({_:e},t){const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:l,appContext:a}=e;let d;if(t[0]!=="$"){const v=i[t];if(v!==void 0)switch(v){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(Vn(s,t))return i[t]=1,s[t];if(r!==ne&&Q(r,t))return i[t]=2,r[t];if((d=e.propsOptions[0])&&Q(d,t))return i[t]=3,o[t];if(n!==ne&&Q(n,t))return i[t]=4,n[t];n1&&(i[t]=0)}}const u=qt[t];let h,p;if(u)return t==="$attrs"&&Ae(e,"get",t),u(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==ne&&Q(n,t))return i[t]=4,n[t];if(p=a.config.globalProperties,Q(p,t))return p[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return Vn(r,t)?(r[t]=n,!0):s!==ne&&Q(s,t)?(s[t]=n,!0):Q(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let l;return!!n[i]||e!==ne&&Q(e,i)||Vn(t,i)||(l=o[0])&&Q(l,i)||Q(s,i)||Q(qt,i)||Q(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Q(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let n1=!0;function fo(e){const t=Z1(e),n=e.proxy,s=e.ctx;n1=!1,t.beforeCreate&&G1(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:l,provide:a,inject:d,created:u,beforeMount:h,mounted:p,beforeUpdate:v,updated:m,activated:E,deactivated:F,beforeDestroy:T,beforeUnmount:k,destroyed:L,unmounted:z,render:se,renderTracked:me,renderTriggered:ye,errorCaptured:D,serverPrefetch:le,expose:te,inheritAttrs:ge,components:_e,directives:Te,filters:We}=t;if(d&&ho(d,s,null,e.appContext.config.unwrapInjectedRef),i)for(const X in i){const G=i[X];j(G)&&(s[X]=G.bind(n))}if(r){const X=r.call(n,n);oe(X)&&(e.data=nn(X))}if(n1=!0,o)for(const X in o){const G=o[X],Se=j(G)?G.bind(n,n):j(G.get)?G.get.bind(n,n):ke,ft=!j(G)&&j(G.set)?G.set.bind(n):ke,Le=Ze({get:Se,set:ft});Object.defineProperty(s,X,{enumerable:!0,configurable:!0,get:()=>Le.value,set:Ce=>Le.value=Ce})}if(l)for(const X in l)v0(l[X],s,n,X);if(a){const X=j(a)?a.call(n):a;Reflect.ownKeys(X).forEach(G=>{hn(G,X[G])})}u&&G1(u,e,"c");function ae(X,G){N(G)?G.forEach(Se=>X(Se.bind(n))):G&&X(G.bind(n))}if(ae(to,h),ae(E1,p),ae(no,v),ae(so,m),ae(Yr,E),ae(Xr,F),ae(lo,D),ae(io,me),ae(oo,ye),ae(d0,k),ae(h0,z),ae(ro,le),N(te))if(te.length){const X=e.exposed||(e.exposed={});te.forEach(G=>{Object.defineProperty(X,G,{get:()=>n[G],set:Se=>n[G]=Se})})}else e.exposed||(e.exposed={});se&&e.render===ke&&(e.render=se),ge!=null&&(e.inheritAttrs=ge),_e&&(e.components=_e),Te&&(e.directives=Te)}function ho(e,t,n=ke,s=!1){N(e)&&(e=s1(e));for(const r in e){const o=e[r];let i;oe(o)?"default"in o?i=Ge(o.from||r,o.default,!0):i=Ge(o.from||r):i=Ge(o),he(i)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:l=>i.value=l}):t[r]=i}}function G1(e,t,n){Pe(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function v0(e,t,n,s){const r=s.includes(".")?c0(n,s):()=>n[s];if(de(e)){const o=t[e];j(o)&&pn(r,o)}else if(j(e))pn(r,e.bind(n));else if(oe(e))if(N(e))e.forEach(o=>v0(o,t,n,s));else{const o=j(e.handler)?e.handler.bind(n):t[e.handler];j(o)&&pn(r,o,e)}}function Z1(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let a;return l?a=l:!r.length&&!n&&!s?a=t:(a={},r.length&&r.forEach(d=>bn(a,d,i,!0)),bn(a,t,i)),oe(t)&&o.set(t,a),a}function bn(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&bn(e,o,n,!0),r&&r.forEach(i=>bn(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const l=po[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const po={data:Y1,props:pt,emits:pt,methods:pt,computed:pt,beforeCreate:we,created:we,beforeMount:we,mounted:we,beforeUpdate:we,updated:we,beforeDestroy:we,beforeUnmount:we,destroyed:we,unmounted:we,activated:we,deactivated:we,errorCaptured:we,serverPrefetch:we,components:pt,directives:pt,watch:go,provide:Y1,inject:mo};function Y1(e,t){return t?e?function(){return be(j(e)?e.call(this,this):e,j(t)?t.call(this,this):t)}:t:e}function mo(e,t){return pt(s1(e),s1(t))}function s1(e){if(N(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function we(e,t){return e?[...new Set([].concat(e,t))]:t}function pt(e,t){return e?be(be(Object.create(null),e),t):t}function go(e,t){if(!e)return t;if(!t)return e;const n=be(Object.create(null),e);for(const s in t)n[s]=we(e[s],t[s]);return n}function _o(e,t,n,s=!1){const r={},o={};_n(o,In,1),e.propsDefaults=Object.create(null),x0(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:Pr(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function vo(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,l=J(r),[a]=e.propsOptions;let d=!1;if((s||i>0)&&!(i&16)){if(i&8){const u=e.vnode.dynamicProps;for(let h=0;h<u.length;h++){let p=u[h];if(On(e.emitsOptions,p))continue;const v=t[p];if(a)if(Q(o,p))v!==o[p]&&(o[p]=v,d=!0);else{const m=qe(p);r[m]=r1(a,l,m,v,e,!1)}else v!==o[p]&&(o[p]=v,d=!0)}}}else{x0(e,t,r,o)&&(d=!0);let u;for(const h in l)(!t||!Q(t,h)&&((u=Ft(h))===h||!Q(t,u)))&&(a?n&&(n[h]!==void 0||n[u]!==void 0)&&(r[h]=r1(a,l,h,void 0,e,!0)):delete r[h]);if(o!==l)for(const h in o)(!t||!Q(t,h))&&(delete o[h],d=!0)}d&&Ye(e,"set","$attrs")}function x0(e,t,n,s){const[r,o]=e.propsOptions;let i=!1,l;if(t)for(let a in t){if(fn(a))continue;const d=t[a];let u;r&&Q(r,u=qe(a))?!o||!o.includes(u)?n[u]=d:(l||(l={}))[u]=d:On(e.emitsOptions,a)||(!(a in s)||d!==s[a])&&(s[a]=d,i=!0)}if(o){const a=J(n),d=l||ne;for(let u=0;u<o.length;u++){const h=o[u];n[h]=r1(r,a,h,d[h],e,!Q(d,h))}}return i}function r1(e,t,n,s,r,o){const i=e[n];if(i!=null){const l=Q(i,"default");if(l&&s===void 0){const a=i.default;if(i.type!==Function&&j(a)){const{propsDefaults:d}=r;n in d?s=d[n]:(It(r),s=d[n]=a.call(null,t),wt())}else s=a}i[0]&&(o&&!l?s=!1:i[1]&&(s===""||s===Ft(n))&&(s=!0))}return s}function b0(e,t,n=!1){const s=t.propsCache,r=s.get(e);if(r)return r;const o=e.props,i={},l=[];let a=!1;if(!j(e)){const u=h=>{a=!0;const[p,v]=b0(h,t,!0);be(i,p),v&&l.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}if(!o&&!a)return oe(e)&&s.set(e,Mt),Mt;if(N(o))for(let u=0;u<o.length;u++){const h=qe(o[u]);X1(h)&&(i[h]=ne)}else if(o)for(const u in o){const h=qe(u);if(X1(h)){const p=o[u],v=i[h]=N(p)||j(p)?{type:p}:Object.assign({},p);if(v){const m=ns(Boolean,v.type),E=ns(String,v.type);v[0]=m>-1,v[1]=E<0||m<E,(m>-1||Q(v,"default"))&&l.push(h)}}}const d=[i,l];return oe(e)&&s.set(e,d),d}function X1(e){return e[0]!=="$"}function es(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function ts(e,t){return es(e)===es(t)}function ns(e,t){return N(t)?t.findIndex(n=>ts(n,e)):j(t)&&ts(t,e)?0:-1}const w0=e=>e[0]==="_"||e==="$stable",P1=e=>N(e)?e.map(Ke):[Ke(e)],xo=(e,t,n)=>{if(t._n)return t;const s=fe((...r)=>P1(t(...r)),n);return s._c=!1,s},y0=(e,t,n)=>{const s=e._ctx;for(const r in e){if(w0(r))continue;const o=e[r];if(j(o))t[r]=xo(r,o,s);else if(o!=null){const i=P1(o);t[r]=()=>i}}},C0=(e,t)=>{const n=P1(t);e.slots.default=()=>n},bo=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=J(t),_n(t,"_",n)):y0(t,e.slots={})}else e.slots={},t&&C0(e,t);_n(e.slots,In,1)},wo=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=ne;if(s.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(be(r,t),!n&&l===1&&delete r._):(o=!t.$stable,y0(t,r)),i=t}else t&&(C0(e,t),i={default:1});if(o)for(const l in r)!w0(l)&&!(l in i)&&delete r[l]};function $0(){return{app:null,config:{isNativeTag:W0,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let yo=0;function Co(e,t){return function(s,r=null){j(s)||(s=Object.assign({},s)),r!=null&&!oe(r)&&(r=null);const o=$0(),i=new Set;let l=!1;const a=o.app={_uid:yo++,_component:s,_props:r,_container:null,_context:o,_instance:null,version:Uo,get config(){return o.config},set config(d){},use(d,...u){return i.has(d)||(d&&j(d.install)?(i.add(d),d.install(a,...u)):j(d)&&(i.add(d),d(a,...u))),a},mixin(d){return o.mixins.includes(d)||o.mixins.push(d),a},component(d,u){return u?(o.components[d]=u,a):o.components[d]},directive(d,u){return u?(o.directives[d]=u,a):o.directives[d]},mount(d,u,h){if(!l){const p=U(s,r);return p.appContext=o,u&&t?t(p,d):e(p,d,h),l=!0,a._container=d,d.__vue_app__=a,Hn(p.component)||p.component.proxy}},unmount(){l&&(e(null,a._container),delete a._container.__vue_app__)},provide(d,u){return o.provides[d]=u,a}};return a}}function o1(e,t,n,s,r=!1){if(N(e)){e.forEach((p,v)=>o1(p,t&&(N(t)?t[v]:t),n,s,r));return}if(Ut(s)&&!r)return;const o=s.shapeFlag&4?Hn(s.component)||s.component.proxy:s.el,i=r?null:o,{i:l,r:a}=e,d=t&&t.r,u=l.refs===ne?l.refs={}:l.refs,h=l.setupState;if(d!=null&&d!==a&&(de(d)?(u[d]=null,Q(h,d)&&(h[d]=null)):he(d)&&(d.value=null)),j(a))ct(a,l,12,[i,u]);else{const p=de(a),v=he(a);if(p||v){const m=()=>{if(e.f){const E=p?Q(h,a)?h[a]:u[a]:a.value;r?N(E)&&h1(E,o):N(E)?E.includes(o)||E.push(o):p?(u[a]=[o],Q(h,a)&&(h[a]=u[a])):(a.value=[o],e.k&&(u[e.k]=a.value))}else p?(u[a]=i,Q(h,a)&&(h[a]=i)):v&&(a.value=i,e.k&&(u[e.k]=i))};i?(m.id=-1,$e(m,n)):m()}}}const $e=zr;function $o(e){return Ao(e)}function Ao(e,t){const n=er();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:l,createComment:a,setText:d,setElementText:u,parentNode:h,nextSibling:p,setScopeId:v=ke,insertStaticContent:m}=e,E=(c,f,g,_=null,b=null,$=null,M=!1,C=null,A=!!f.dynamicChildren)=>{if(c===f)return;c&&!gt(c,f)&&(_=R(c),Ce(c,b,$,!0),c=null),f.patchFlag===-2&&(A=!1,f.dynamicChildren=null);const{type:w,ref:H,shapeFlag:O}=f;switch(w){case Ln:F(c,f,g,_);break;case Oe:T(c,f,g,_);break;case mn:c==null&&k(f,g,_,M);break;case ve:_e(c,f,g,_,b,$,M,C,A);break;default:O&1?se(c,f,g,_,b,$,M,C,A):O&6?Te(c,f,g,_,b,$,M,C,A):(O&64||O&128)&&w.process(c,f,g,_,b,$,M,C,A,W)}H!=null&&b&&o1(H,c&&c.ref,$,f||c,!f)},F=(c,f,g,_)=>{if(c==null)s(f.el=l(f.children),g,_);else{const b=f.el=c.el;f.children!==c.children&&d(b,f.children)}},T=(c,f,g,_)=>{c==null?s(f.el=a(f.children||""),g,_):f.el=c.el},k=(c,f,g,_)=>{[c.el,c.anchor]=m(c.children,f,g,_,c.el,c.anchor)},L=({el:c,anchor:f},g,_)=>{let b;for(;c&&c!==f;)b=p(c),s(c,g,_),c=b;s(f,g,_)},z=({el:c,anchor:f})=>{let g;for(;c&&c!==f;)g=p(c),r(c),c=g;r(f)},se=(c,f,g,_,b,$,M,C,A)=>{M=M||f.type==="svg",c==null?me(f,g,_,b,$,M,C,A):le(c,f,b,$,M,C,A)},me=(c,f,g,_,b,$,M,C)=>{let A,w;const{type:H,props:O,shapeFlag:B,transition:V,dirs:q}=c;if(A=c.el=i(c.type,$,O&&O.is,O),B&8?u(A,c.children):B&16&&D(c.children,A,null,_,b,$&&H!=="foreignObject",M,C),q&&dt(c,null,_,"created"),ye(A,c,c.scopeId,M,_),O){for(const Y in O)Y!=="value"&&!fn(Y)&&o(A,Y,null,O[Y],$,c.children,_,b,Z);"value"in O&&o(A,"value",null,O.value),(w=O.onVnodeBeforeMount)&&je(w,_,c)}q&&dt(c,null,_,"beforeMount");const ee=(!b||b&&!b.pendingBranch)&&V&&!V.persisted;ee&&V.beforeEnter(A),s(A,f,g),((w=O&&O.onVnodeMounted)||ee||q)&&$e(()=>{w&&je(w,_,c),ee&&V.enter(A),q&&dt(c,null,_,"mounted")},b)},ye=(c,f,g,_,b)=>{if(g&&v(c,g),_)for(let $=0;$<_.length;$++)v(c,_[$]);if(b){let $=b.subTree;if(f===$){const M=b.vnode;ye(c,M,M.scopeId,M.slotScopeIds,b.parent)}}},D=(c,f,g,_,b,$,M,C,A=0)=>{for(let w=A;w<c.length;w++){const H=c[w]=C?st(c[w]):Ke(c[w]);E(null,H,f,g,_,b,$,M,C)}},le=(c,f,g,_,b,$,M)=>{const C=f.el=c.el;let{patchFlag:A,dynamicChildren:w,dirs:H}=f;A|=c.patchFlag&16;const O=c.props||ne,B=f.props||ne;let V;g&&ht(g,!1),(V=B.onVnodeBeforeUpdate)&&je(V,g,f,c),H&&dt(f,c,g,"beforeUpdate"),g&&ht(g,!0);const q=b&&f.type!=="foreignObject";if(w?te(c.dynamicChildren,w,C,g,_,q,$):M||G(c,f,C,null,g,_,q,$,!1),A>0){if(A&16)ge(C,f,O,B,g,_,b);else if(A&2&&O.class!==B.class&&o(C,"class",null,B.class,b),A&4&&o(C,"style",O.style,B.style,b),A&8){const ee=f.dynamicProps;for(let Y=0;Y<ee.length;Y++){const ue=ee[Y],Ie=O[ue],$t=B[ue];($t!==Ie||ue==="value")&&o(C,ue,Ie,$t,b,c.children,g,_,Z)}}A&1&&c.children!==f.children&&u(C,f.children)}else!M&&w==null&&ge(C,f,O,B,g,_,b);((V=B.onVnodeUpdated)||H)&&$e(()=>{V&&je(V,g,f,c),H&&dt(f,c,g,"updated")},_)},te=(c,f,g,_,b,$,M)=>{for(let C=0;C<f.length;C++){const A=c[C],w=f[C],H=A.el&&(A.type===ve||!gt(A,w)||A.shapeFlag&70)?h(A.el):g;E(A,w,H,null,_,b,$,M,!0)}},ge=(c,f,g,_,b,$,M)=>{if(g!==_){if(g!==ne)for(const C in g)!fn(C)&&!(C in _)&&o(c,C,g[C],null,M,f.children,b,$,Z);for(const C in _){if(fn(C))continue;const A=_[C],w=g[C];A!==w&&C!=="value"&&o(c,C,w,A,M,f.children,b,$,Z)}"value"in _&&o(c,"value",g.value,_.value)}},_e=(c,f,g,_,b,$,M,C,A)=>{const w=f.el=c?c.el:l(""),H=f.anchor=c?c.anchor:l("");let{patchFlag:O,dynamicChildren:B,slotScopeIds:V}=f;V&&(C=C?C.concat(V):V),c==null?(s(w,g,_),s(H,g,_),D(f.children,g,H,b,$,M,C,A)):O>0&&O&64&&B&&c.dynamicChildren?(te(c.dynamicChildren,B,g,b,$,M,C),(f.key!=null||b&&f===b.subTree)&&A0(c,f,!0)):G(c,f,g,H,b,$,M,C,A)},Te=(c,f,g,_,b,$,M,C,A)=>{f.slotScopeIds=C,c==null?f.shapeFlag&512?b.ctx.activate(f,g,_,M,A):We(f,g,_,b,$,M,A):Nt(c,f,A)},We=(c,f,g,_,b,$,M)=>{const C=c.component=Io(c,_,b);if(Tn(c)&&(C.ctx.renderer=W),Bo(C),C.asyncDep){if(b&&b.registerDep(C,ae),!c.el){const A=C.subTree=U(Oe);T(null,A,f,g)}return}ae(C,c,f,g,b,$,M)},Nt=(c,f,g)=>{const _=f.component=c.component;if(Kr(c,f,g))if(_.asyncDep&&!_.asyncResolved){X(_,f,g);return}else _.next=f,Fr(_.update),_.update();else f.el=c.el,_.vnode=f},ae=(c,f,g,_,b,$,M)=>{const C=()=>{if(c.isMounted){let{next:H,bu:O,u:B,parent:V,vnode:q}=c,ee=H,Y;ht(c,!1),H?(H.el=q.el,X(c,H,M)):H=q,O&&dn(O),(Y=H.props&&H.props.onVnodeBeforeUpdate)&&je(Y,V,H,q),ht(c,!0);const ue=Fn(c),Ie=c.subTree;c.subTree=ue,E(Ie,ue,h(Ie.el),R(Ie),c,b,$),H.el=ue.el,ee===null&&Ur(c,ue.el),B&&$e(B,b),(Y=H.props&&H.props.onVnodeUpdated)&&$e(()=>je(Y,V,H,q),b)}else{let H;const{el:O,props:B}=f,{bm:V,m:q,parent:ee}=c,Y=Ut(f);if(ht(c,!1),V&&dn(V),!Y&&(H=B&&B.onVnodeBeforeMount)&&je(H,ee,f),ht(c,!0),O&&K){const ue=()=>{c.subTree=Fn(c),K(O,c.subTree,c,b,null)};Y?f.type.__asyncLoader().then(()=>!c.isUnmounted&&ue()):ue()}else{const ue=c.subTree=Fn(c);E(null,ue,g,_,c,b,$),f.el=ue.el}if(q&&$e(q,b),!Y&&(H=B&&B.onVnodeMounted)){const ue=f;$e(()=>je(H,ee,ue),b)}(f.shapeFlag&256||ee&&Ut(ee.vnode)&&ee.vnode.shapeFlag&256)&&c.a&&$e(c.a,b),c.isMounted=!0,f=g=_=null}},A=c.effect=new _1(C,()=>A1(w),c.scope),w=c.update=()=>A.run();w.id=c.uid,ht(c,!0),w()},X=(c,f,g)=>{f.component=c;const _=c.vnode.props;c.vnode=f,c.next=null,vo(c,f.props,_,g),wo(c,f.children,g),kt(),z1(),Vt()},G=(c,f,g,_,b,$,M,C,A=!1)=>{const w=c&&c.children,H=c?c.shapeFlag:0,O=f.children,{patchFlag:B,shapeFlag:V}=f;if(B>0){if(B&128){ft(w,O,g,_,b,$,M,C,A);return}else if(B&256){Se(w,O,g,_,b,$,M,C,A);return}}V&8?(H&16&&Z(w,b,$),O!==w&&u(g,O)):H&16?V&16?ft(w,O,g,_,b,$,M,C,A):Z(w,b,$,!0):(H&8&&u(g,""),V&16&&D(O,g,_,b,$,M,C,A))},Se=(c,f,g,_,b,$,M,C,A)=>{c=c||Mt,f=f||Mt;const w=c.length,H=f.length,O=Math.min(w,H);let B;for(B=0;B<O;B++){const V=f[B]=A?st(f[B]):Ke(f[B]);E(c[B],V,g,null,b,$,M,C,A)}w>H?Z(c,b,$,!0,!1,O):D(f,g,_,b,$,M,C,A,O)},ft=(c,f,g,_,b,$,M,C,A)=>{let w=0;const H=f.length;let O=c.length-1,B=H-1;for(;w<=O&&w<=B;){const V=c[w],q=f[w]=A?st(f[w]):Ke(f[w]);if(gt(V,q))E(V,q,g,null,b,$,M,C,A);else break;w++}for(;w<=O&&w<=B;){const V=c[O],q=f[B]=A?st(f[B]):Ke(f[B]);if(gt(V,q))E(V,q,g,null,b,$,M,C,A);else break;O--,B--}if(w>O){if(w<=B){const V=B+1,q=V<H?f[V].el:_;for(;w<=B;)E(null,f[w]=A?st(f[w]):Ke(f[w]),g,q,b,$,M,C,A),w++}}else if(w>B)for(;w<=O;)Ce(c[w],b,$,!0),w++;else{const V=w,q=w,ee=new Map;for(w=q;w<=B;w++){const Ee=f[w]=A?st(f[w]):Ke(f[w]);Ee.key!=null&&ee.set(Ee.key,w)}let Y,ue=0;const Ie=B-q+1;let $t=!1,H1=0;const jt=new Array(Ie);for(w=0;w<Ie;w++)jt[w]=0;for(w=V;w<=O;w++){const Ee=c[w];if(ue>=Ie){Ce(Ee,b,$,!0);continue}let Ne;if(Ee.key!=null)Ne=ee.get(Ee.key);else for(Y=q;Y<=B;Y++)if(jt[Y-q]===0&>(Ee,f[Y])){Ne=Y;break}Ne===void 0?Ce(Ee,b,$,!0):(jt[Ne-q]=w+1,Ne>=H1?H1=Ne:$t=!0,E(Ee,f[Ne],g,null,b,$,M,C,A),ue++)}const B1=$t?Eo(jt):Mt;for(Y=B1.length-1,w=Ie-1;w>=0;w--){const Ee=q+w,Ne=f[Ee],F1=Ee+1<H?f[Ee+1].el:_;jt[w]===0?E(null,Ne,g,F1,b,$,M,C,A):$t&&(Y<0||w!==B1[Y]?Le(Ne,g,F1,2):Y--)}}},Le=(c,f,g,_,b=null)=>{const{el:$,type:M,transition:C,children:A,shapeFlag:w}=c;if(w&6){Le(c.component.subTree,f,g,_);return}if(w&128){c.suspense.move(f,g,_);return}if(w&64){M.move(c,f,g,W);return}if(M===ve){s($,f,g);for(let O=0;O<A.length;O++)Le(A[O],f,g,_);s(c.anchor,f,g);return}if(M===mn){L(c,f,g);return}if(_!==2&&w&1&&C)if(_===0)C.beforeEnter($),s($,f,g),$e(()=>C.enter($),b);else{const{leave:O,delayLeave:B,afterLeave:V}=C,q=()=>s($,f,g),ee=()=>{O($,()=>{q(),V&&V()})};B?B($,q,ee):ee()}else s($,f,g)},Ce=(c,f,g,_=!1,b=!1)=>{const{type:$,props:M,ref:C,children:A,dynamicChildren:w,shapeFlag:H,patchFlag:O,dirs:B}=c;if(C!=null&&o1(C,null,g,c,!0),H&256){f.ctx.deactivate(c);return}const V=H&1&&B,q=!Ut(c);let ee;if(q&&(ee=M&&M.onVnodeBeforeUnmount)&&je(ee,f,c),H&6)x(c.component,g,_);else{if(H&128){c.suspense.unmount(g,_);return}V&&dt(c,null,f,"beforeUnmount"),H&64?c.type.remove(c,f,g,b,W,_):w&&($!==ve||O>0&&O&64)?Z(w,f,g,!1,!0):($===ve&&O&384||!b&&H&16)&&Z(A,f,g),_&&Ct(c)}(q&&(ee=M&&M.onVnodeUnmounted)||V)&&$e(()=>{ee&&je(ee,f,c),V&&dt(c,null,f,"unmounted")},g)},Ct=c=>{const{type:f,el:g,anchor:_,transition:b}=c;if(f===ve){sn(g,_);return}if(f===mn){z(c);return}const $=()=>{r(g),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(c.shapeFlag&1&&b&&!b.persisted){const{leave:M,delayLeave:C}=b,A=()=>M(g,$);C?C(c.el,$,A):A()}else $()},sn=(c,f)=>{let g;for(;c!==f;)g=p(c),r(c),c=g;r(f)},x=(c,f,g)=>{const{bum:_,scope:b,update:$,subTree:M,um:C}=c;_&&dn(_),b.stop(),$&&($.active=!1,Ce(M,c,f,g)),C&&$e(C,f),$e(()=>{c.isUnmounted=!0},f),f&&f.pendingBranch&&!f.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===f.pendingId&&(f.deps--,f.deps===0&&f.resolve())},Z=(c,f,g,_=!1,b=!1,$=0)=>{for(let M=$;M<c.length;M++)Ce(c[M],f,g,_,b)},R=c=>c.shapeFlag&6?R(c.component.subTree):c.shapeFlag&128?c.suspense.next():p(c.anchor||c.el),I=(c,f,g)=>{c==null?f._vnode&&Ce(f._vnode,null,null,!0):E(f._vnode||null,c,f,null,null,null,g),z1(),s0(),f._vnode=c},W={p:E,um:Ce,m:Le,r:Ct,mt:We,mc:D,pc:G,pbc:te,n:R,o:e};let ie,K;return t&&([ie,K]=t(W)),{render:I,hydrate:ie,createApp:Co(I,ie)}}function ht({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function A0(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let o=0;o<s.length;o++){const i=s[o];let l=r[o];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=r[o]=st(r[o]),l.el=i.el),n||A0(i,l)),l.type===Ln&&(l.el=i.el)}}function Eo(e){const t=e.slice(),n=[0];let s,r,o,i,l;const a=e.length;for(s=0;s<a;s++){const d=e[s];if(d!==0){if(r=n[n.length-1],e[r]<d){t[s]=r,n.push(s);continue}for(o=0,i=n.length-1;o<i;)l=o+i>>1,e[n[l]]<d?o=l+1:i=l;d<e[n[o]]&&(o>0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}const Ro=e=>e.__isTeleport,ve=Symbol(void 0),Ln=Symbol(void 0),Oe=Symbol(void 0),mn=Symbol(void 0),zt=[];let Fe=null;function P(e=!1){zt.push(Fe=e?null:[])}function Mo(){zt.pop(),Fe=zt[zt.length-1]||null}let Xt=1;function ss(e){Xt+=e}function E0(e){return e.dynamicChildren=Xt>0?Fe||Mt:null,Mo(),Xt>0&&Fe&&Fe.push(e),e}function S(e,t,n,s,r,o){return E0(y(e,t,n,s,r,o,!0))}function yt(e,t,n,s,r){return E0(U(e,t,n,s,r,!0))}function wn(e){return e?e.__v_isVNode===!0:!1}function gt(e,t){return e.type===t.type&&e.key===t.key}const In="__vInternal",R0=({key:e})=>e??null,gn=({ref:e,ref_key:t,ref_for:n})=>e!=null?de(e)||he(e)||j(e)?{i:pe,r:e,k:t,f:!!n}:e:null;function y(e,t=null,n=null,s=0,r=null,o=e===ve?0:1,i=!1,l=!1){const a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&R0(t),ref:t&&gn(t),scopeId:i0,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:pe};return l?(T1(a,n),o&128&&e.normalize(a)):n&&(a.shapeFlag|=de(n)?8:16),Xt>0&&!i&&Fe&&(a.patchFlag>0||o&6)&&a.patchFlag!==32&&Fe.push(a),a}const U=Zo;function Zo(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===m0)&&(e=Oe),wn(e)){const l=ut(e,t,!0);return n&&T1(l,n),Xt>0&&!o&&Fe&&(l.shapeFlag&6?Fe[Fe.indexOf(e)]=l:Fe.push(l)),l.patchFlag|=-2,l}if(jo(e)&&(e=e.__vccOpts),t){t=Po(t);let{class:l,style:a}=t;l&&!de(l)&&(t.class=it(l)),oe(a)&&(Ws(a)&&!N(a)&&(a=be({},a)),t.style=f1(a))}const i=de(e)?1:qr(e)?128:Ro(e)?64:oe(e)?4:j(e)?2:0;return y(e,t,n,s,r,i,o,!0)}function Po(e){return e?Ws(e)||In in e?be({},e):e:null}function ut(e,t,n=!1){const{props:s,ref:r,patchFlag:o,children:i}=e,l=t?To(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&R0(l),ref:t&&t.ref?n&&r?N(r)?r.concat(gn(t)):[r,gn(t)]:gn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ve?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&ut(e.ssContent),ssFallback:e.ssFallback&&ut(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function xt(e=" ",t=0){return U(Ln,null,e,t)}function Oo(e,t){const n=U(mn,null,e);return n.staticCount=t,n}function O1(e="",t=!1){return t?(P(),yt(Oe,null,e)):U(Oe,null,e)}function Ke(e){return e==null||typeof e=="boolean"?U(Oe):N(e)?U(ve,null,e.slice()):typeof e=="object"?st(e):U(Ln,null,String(e))}function st(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:ut(e)}function T1(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),T1(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(In in t)?t._ctx=pe:r===3&&pe&&(pe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else j(t)?(t={default:t,_ctx:pe},n=32):(t=String(t),s&64?(n=16,t=[xt(t)]):n=8);e.children=t,e.shapeFlag|=n}function To(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=it([t.class,s.class]));else if(r==="style")t.style=f1([t.style,s.style]);else if(An(r)){const o=t[r],i=s[r];i&&o!==i&&!(N(o)&&o.includes(i))&&(t[r]=o?[].concat(o,i):i)}else r!==""&&(t[r]=s[r])}return t}function je(e,t,n,s=null){Pe(e,t,7,[n,s])}const So=$0();let Lo=0;function Io(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||So,o={uid:Lo++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Hs(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:b0(s,r),emitsOptions:o0(s,r),emit:null,emitted:null,propsDefaults:ne,inheritAttrs:s.inheritAttrs,ctx:ne,data:ne,props:ne,attrs:ne,slots:ne,refs:ne,setupState:ne,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=Nr.bind(null,o),e.ce&&e.ce(o),o}let ce=null;const Ho=()=>ce||pe,It=e=>{ce=e,e.scope.on()},wt=()=>{ce&&ce.scope.off(),ce=null};function M0(e){return e.vnode.shapeFlag&4}let en=!1;function Bo(e,t=!1){en=t;const{props:n,children:s}=e.vnode,r=M0(e);_o(e,n,r,t),bo(e,s);const o=r?Fo(e,t):void 0;return en=!1,o}function Fo(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=y1(new Proxy(e.ctx,uo));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?Vo(e):null;It(e),kt();const o=ct(s,e,0,[e.props,r]);if(Vt(),wt(),Ss(o)){if(o.then(wt,wt),t)return o.then(i=>{rs(e,i,t)}).catch(i=>{Pn(i,e,0)});e.asyncDep=o}else rs(e,o,t)}else Z0(e,t)}function rs(e,t,n){j(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:oe(t)&&(e.setupState=Ys(t)),Z0(e,n)}let os;function Z0(e,t,n){const s=e.type;if(!e.render){if(!t&&os&&!s.render){const r=s.template||Z1(e).template;if(r){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:a}=s,d=be(be({isCustomElement:o,delimiters:l},i),a);s.render=os(r,d)}}e.render=s.render||ke}It(e),kt(),fo(e),Vt(),wt()}function ko(e){return new Proxy(e.attrs,{get(t,n){return Ae(e,"get","$attrs"),t[n]}})}function Vo(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=ko(e))},slots:e.slots,emit:e.emit,expose:t}}function Hn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Ys(y1(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in qt)return qt[n](e)},has(t,n){return n in t||n in qt}}))}function No(e,t=!0){return j(e)?e.displayName||e.name:e.name||t&&e.__name}function jo(e){return j(e)&&"__vccOpts"in e}const Ze=(e,t)=>Ir(e,t,en);function P0(e,t,n){const s=arguments.length;return s===2?oe(t)&&!N(t)?wn(t)?U(e,null,[t]):U(e,t):U(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&wn(n)&&(n=[n]),U(e,t,n))}const Do=Symbol(""),Ko=()=>Ge(Do),Uo="3.2.47",qo="http://www.w3.org/2000/svg",_t=typeof document<"u"?document:null,is=_t&&_t.createElement("template"),zo={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?_t.createElementNS(qo,e):_t.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>_t.createTextNode(e),createComment:e=>_t.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>_t.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{is.innerHTML=s?`<svg>${e}</svg>`:e;const l=is.content;if(s){const a=l.firstChild;for(;a.firstChild;)l.appendChild(a.firstChild);l.removeChild(a)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function Wo(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function Qo(e,t,n){const s=e.style,r=de(n);if(n&&!r){if(t&&!de(t))for(const o in t)n[o]==null&&i1(s,o,"");for(const o in n)i1(s,o,n[o])}else{const o=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=o)}}const ls=/\s*!important$/;function i1(e,t,n){if(N(n))n.forEach(s=>i1(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Jo(e,t);ls.test(n)?e.setProperty(Ft(s),n.replace(ls,""),"important"):e[s]=n}}const cs=["Webkit","Moz","ms"],Nn={};function Jo(e,t){const n=Nn[t];if(n)return n;let s=qe(t);if(s!=="filter"&&s in e)return Nn[t]=s;s=Mn(s);for(let r=0;r<cs.length;r++){const o=cs[r]+s;if(o in e)return Nn[t]=o}return t}const as="http://www.w3.org/1999/xlink";function Go(e,t,n,s,r){if(s&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(as,t.slice(6,t.length)):e.setAttributeNS(as,t,n);else{const o=z0(t);n==null||o&&!Ps(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}function Yo(e,t,n,s,r,o,i){if(t==="innerHTML"||t==="textContent"){s&&i(s,r,o),e[t]=n??"";return}if(t==="value"&&e.tagName!=="PROGRESS"&&!e.tagName.includes("-")){e._value=n;const a=n??"";(e.value!==a||e.tagName==="OPTION")&&(e.value=a),n==null&&e.removeAttribute(t);return}let l=!1;if(n===""||n==null){const a=typeof e[t];a==="boolean"?n=Ps(n):n==null&&a==="string"?(n="",l=!0):a==="number"&&(n=0,l=!0)}try{e[t]=n}catch{}l&&e.removeAttribute(t)}function Et(e,t,n,s){e.addEventListener(t,n,s)}function Xo(e,t,n,s){e.removeEventListener(t,n,s)}function e2(e,t,n,s,r=null){const o=e._vei||(e._vei={}),i=o[t];if(s&&i)i.value=s;else{const[l,a]=t2(t);if(s){const d=o[t]=r2(s,r);Et(e,l,d,a)}else i&&(Xo(e,l,i,a),o[t]=void 0)}}const us=/(?:Once|Passive|Capture)$/;function t2(e){let t;if(us.test(e)){t={};let s;for(;s=e.match(us);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):Ft(e.slice(2)),t]}let jn=0;const n2=Promise.resolve(),s2=()=>jn||(n2.then(()=>jn=0),jn=Date.now());function r2(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Pe(o2(s,n.value),t,5,[s])};return n.value=e,n.attached=s2(),n}function o2(e,t){if(N(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const fs=/^on[a-z]/,i2=(e,t,n,s,r=!1,o,i,l,a)=>{t==="class"?Wo(e,s,r):t==="style"?Qo(e,n,s):An(t)?d1(t)||e2(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):l2(e,t,s,r))?Yo(e,t,s,o,i,l,a):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Go(e,t,s,r))};function l2(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&fs.test(t)&&j(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||fs.test(t)&&de(n)?!1:t in e}const c2={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Gr.props;const ds=e=>{const t=e.props["onUpdate:modelValue"]||!1;return N(t)?n=>dn(t,n):t};function a2(e){e.target.composing=!0}function hs(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const u2={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e._assign=ds(r);const o=s||r.props&&r.props.type==="number";Et(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=zn(l)),e._assign(l)}),n&&Et(e,"change",()=>{e.value=e.value.trim()}),t||(Et(e,"compositionstart",a2),Et(e,"compositionend",hs),Et(e,"change",hs))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:s,number:r}},o){if(e._assign=ds(o),e.composing||document.activeElement===e&&e.type!=="range"&&(n||s&&e.value.trim()===t||(r||e.type==="number")&&zn(e.value)===t))return;const i=t??"";e.value!==i&&(e.value=i)}},f2=be({patchProp:i2},zo);let ps;function d2(){return ps||(ps=$o(f2))}const h2=(...e)=>{const t=d2().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=p2(s);if(!r)return;const o=t._component;!j(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t};function p2(e){return de(e)?document.querySelector(e):e}var m2=!1;/*!
|
|
2
|
-
* pinia v2.0.32
|
|
3
|
-
* (c) 2023 Eduardo San Martin Morote
|
|
4
|
-
* @license MIT
|
|
5
|
-
*/const g2=Symbol();var ms;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(ms||(ms={}));function _2(){const e=tr(!0),t=e.run(()=>Ot({}));let n=[],s=[];const r=y1({install(o){r._a=o,o.provide(g2,r),o.config.globalProperties.$pinia=r,s.forEach(i=>n.push(i)),s=[]},use(o){return!this._a&&!m2?s.push(o):n.push(o),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return r}/*!
|
|
6
|
-
* vue-router v4.1.6
|
|
7
|
-
* (c) 2022 Eduardo San Martin Morote
|
|
8
|
-
* @license MIT
|
|
9
|
-
*/const Rt=typeof window<"u";function v2(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const re=Object.assign;function Dn(e,t){const n={};for(const s in t){const r=t[s];n[s]=Ve(r)?r.map(e):e(r)}return n}const Wt=()=>{},Ve=Array.isArray,x2=/\/$/,b2=e=>e.replace(x2,"");function Kn(e,t,n="/"){let s,r={},o="",i="";const l=t.indexOf("#");let a=t.indexOf("?");return l<a&&l>=0&&(a=-1),a>-1&&(s=t.slice(0,a),o=t.slice(a+1,l>-1?l:t.length),r=e(o)),l>-1&&(s=s||t.slice(0,l),i=t.slice(l,t.length)),s=$2(s??t,n),{fullPath:s+(o&&"?")+o+i,path:s,query:r,hash:i}}function w2(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function y2(e,t,n){const s=t.matched.length-1,r=n.matched.length-1;return s>-1&&s===r&&Ht(t.matched[s],n.matched[r])&&O0(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ht(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function O0(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!C2(e[n],t[n]))return!1;return!0}function C2(e,t){return Ve(e)?gs(e,t):Ve(t)?gs(t,e):e===t}function gs(e,t){return Ve(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function $2(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/");let r=n.length-1,o,i;for(o=0;o<s.length;o++)if(i=s[o],i!==".")if(i==="..")r>1&&r--;else break;return n.slice(0,r).join("/")+"/"+s.slice(o-(o===s.length?1:0)).join("/")}var tn;(function(e){e.pop="pop",e.push="push"})(tn||(tn={}));var yn;(function(e){e.back="back",e.forward="forward",e.unknown=""})(yn||(yn={}));const Un="";function A2(e){if(!e)if(Rt){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),b2(e)}const E2=/^[^#]+#/;function R2(e,t){return e.replace(E2,"#")+t}function M2(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const Z2=()=>({left:window.pageXOffset,top:window.pageYOffset});function P2(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),r=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!r)return;t=M2(r,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function _s(e,t){return(history.state?history.state.position-t:-1)+e}const l1=new Map;function O2(e,t){l1.set(e,t)}function T2(e){const t=l1.get(e);return l1.delete(e),t}function S2(e=""){let t=[],n=[Un],s=0;e=A2(e);function r(l){s++,s===n.length||n.splice(s),n.push(l)}function o(l,a,{direction:d,delta:u}){const h={direction:d,delta:u,type:tn.pop};for(const p of t)p(l,a,h)}const i={location:Un,state:{},base:e,createHref:R2.bind(null,e),replace(l){n.splice(s--,1),r(l)},push(l,a){r(l)},listen(l){return t.push(l),()=>{const a=t.indexOf(l);a>-1&&t.splice(a,1)}},destroy(){t=[],n=[Un],s=0},go(l,a=!0){const d=this.location,u=l<0?yn.back:yn.forward;s=Math.max(0,Math.min(s+l,n.length-1)),a&&o(this.location,d,{direction:u,delta:l})}};return Object.defineProperty(i,"location",{enumerable:!0,get:()=>n[s]}),i}function L2(e){return typeof e=="string"||e&&typeof e=="object"}function T0(e){return typeof e=="string"||typeof e=="symbol"}const tt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},S0=Symbol("");var vs;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(vs||(vs={}));function Bt(e,t){return re(new Error,{type:e,[S0]:!0},t)}function Qe(e,t){return e instanceof Error&&S0 in e&&(t==null||!!(e.type&t))}const xs="[^/]+?",I2={sensitive:!1,strict:!1,start:!0,end:!0},H2=/[.+*?^${}()[\]/\\]/g;function B2(e,t){const n=re({},I2,t),s=[];let r=n.start?"^":"";const o=[];for(const d of e){const u=d.length?[]:[90];n.strict&&!d.length&&(r+="/");for(let h=0;h<d.length;h++){const p=d[h];let v=40+(n.sensitive?.25:0);if(p.type===0)h||(r+="/"),r+=p.value.replace(H2,"\\$&"),v+=40;else if(p.type===1){const{value:m,repeatable:E,optional:F,regexp:T}=p;o.push({name:m,repeatable:E,optional:F});const k=T||xs;if(k!==xs){v+=10;try{new RegExp(`(${k})`)}catch(z){throw new Error(`Invalid custom RegExp for param "${m}" (${k}): `+z.message)}}let L=E?`((?:${k})(?:/(?:${k}))*)`:`(${k})`;h||(L=F&&d.length<2?`(?:/${L})`:"/"+L),F&&(L+="?"),r+=L,v+=20,F&&(v+=-8),E&&(v+=-20),k===".*"&&(v+=-50)}u.push(v)}s.push(u)}if(n.strict&&n.end){const d=s.length-1;s[d][s[d].length-1]+=.7000000000000001}n.strict||(r+="/?"),n.end?r+="$":n.strict&&(r+="(?:/|$)");const i=new RegExp(r,n.sensitive?"":"i");function l(d){const u=d.match(i),h={};if(!u)return null;for(let p=1;p<u.length;p++){const v=u[p]||"",m=o[p-1];h[m.name]=v&&m.repeatable?v.split("/"):v}return h}function a(d){let u="",h=!1;for(const p of e){(!h||!u.endsWith("/"))&&(u+="/"),h=!1;for(const v of p)if(v.type===0)u+=v.value;else if(v.type===1){const{value:m,repeatable:E,optional:F}=v,T=m in d?d[m]:"";if(Ve(T)&&!E)throw new Error(`Provided param "${m}" is an array but it is not repeatable (* or + modifiers)`);const k=Ve(T)?T.join("/"):T;if(!k)if(F)p.length<2&&(u.endsWith("/")?u=u.slice(0,-1):h=!0);else throw new Error(`Missing required param "${m}"`);u+=k}}return u||"/"}return{re:i,score:s,keys:o,parse:l,stringify:a}}function F2(e,t){let n=0;for(;n<e.length&&n<t.length;){const s=t[n]-e[n];if(s)return s;n++}return e.length<t.length?e.length===1&&e[0]===40+40?-1:1:e.length>t.length?t.length===1&&t[0]===40+40?1:-1:0}function k2(e,t){let n=0;const s=e.score,r=t.score;for(;n<s.length&&n<r.length;){const o=F2(s[n],r[n]);if(o)return o;n++}if(Math.abs(r.length-s.length)===1){if(bs(s))return 1;if(bs(r))return-1}return r.length-s.length}function bs(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const V2={type:0,value:""},N2=/[a-zA-Z0-9_]/;function j2(e){if(!e)return[[]];if(e==="/")return[[V2]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(v){throw new Error(`ERR (${n})/"${d}": ${v}`)}let n=0,s=n;const r=[];let o;function i(){o&&r.push(o),o=[]}let l=0,a,d="",u="";function h(){d&&(n===0?o.push({type:0,value:d}):n===1||n===2||n===3?(o.length>1&&(a==="*"||a==="+")&&t(`A repeatable param (${d}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:d,regexp:u,repeatable:a==="*"||a==="+",optional:a==="*"||a==="?"})):t("Invalid state to consume buffer"),d="")}function p(){d+=a}for(;l<e.length;){if(a=e[l++],a==="\\"&&n!==2){s=n,n=4;continue}switch(n){case 0:a==="/"?(d&&h(),i()):a===":"?(h(),n=1):p();break;case 4:p(),n=s;break;case 1:a==="("?n=2:N2.test(a)?p():(h(),n=0,a!=="*"&&a!=="?"&&a!=="+"&&l--);break;case 2:a===")"?u[u.length-1]=="\\"?u=u.slice(0,-1)+a:n=3:u+=a;break;case 3:h(),n=0,a!=="*"&&a!=="?"&&a!=="+"&&l--,u="";break;default:t("Unknown state");break}}return n===2&&t(`Unfinished custom RegExp for param "${d}"`),h(),i(),r}function D2(e,t,n){const s=B2(j2(e.path),n),r=re(s,{record:e,parent:t,children:[],alias:[]});return t&&!r.record.aliasOf==!t.record.aliasOf&&t.children.push(r),r}function K2(e,t){const n=[],s=new Map;t=Cs({strict:!1,end:!0,sensitive:!1},t);function r(u){return s.get(u)}function o(u,h,p){const v=!p,m=U2(u);m.aliasOf=p&&p.record;const E=Cs(t,u),F=[m];if("alias"in u){const L=typeof u.alias=="string"?[u.alias]:u.alias;for(const z of L)F.push(re({},m,{components:p?p.record.components:m.components,path:z,aliasOf:p?p.record:m}))}let T,k;for(const L of F){const{path:z}=L;if(h&&z[0]!=="/"){const se=h.record.path,me=se[se.length-1]==="/"?"":"/";L.path=h.record.path+(z&&me+z)}if(T=D2(L,h,E),p?p.alias.push(T):(k=k||T,k!==T&&k.alias.push(T),v&&u.name&&!ys(T)&&i(u.name)),m.children){const se=m.children;for(let me=0;me<se.length;me++)o(se[me],T,p&&p.children[me])}p=p||T,(T.record.components&&Object.keys(T.record.components).length||T.record.name||T.record.redirect)&&a(T)}return k?()=>{i(k)}:Wt}function i(u){if(T0(u)){const h=s.get(u);h&&(s.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&s.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function l(){return n}function a(u){let h=0;for(;h<n.length&&k2(u,n[h])>=0&&(u.record.path!==n[h].record.path||!L0(u,n[h]));)h++;n.splice(h,0,u),u.record.name&&!ys(u)&&s.set(u.record.name,u)}function d(u,h){let p,v={},m,E;if("name"in u&&u.name){if(p=s.get(u.name),!p)throw Bt(1,{location:u});E=p.record.name,v=re(ws(h.params,p.keys.filter(k=>!k.optional).map(k=>k.name)),u.params&&ws(u.params,p.keys.map(k=>k.name))),m=p.stringify(v)}else if("path"in u)m=u.path,p=n.find(k=>k.re.test(m)),p&&(v=p.parse(m),E=p.record.name);else{if(p=h.name?s.get(h.name):n.find(k=>k.re.test(h.path)),!p)throw Bt(1,{location:u,currentLocation:h});E=p.record.name,v=re({},h.params,u.params),m=p.stringify(v)}const F=[];let T=p;for(;T;)F.unshift(T.record),T=T.parent;return{name:E,path:m,params:v,matched:F,meta:z2(F)}}return e.forEach(u=>o(u)),{addRoute:o,resolve:d,removeRoute:i,getRoutes:l,getRecordMatcher:r}}function ws(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function U2(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:q2(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function q2(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="boolean"?n:n[s];return t}function ys(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function z2(e){return e.reduce((t,n)=>re(t,n.meta),{})}function Cs(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}function L0(e,t){return t.children.some(n=>n===e||L0(e,n))}const I0=/#/g,W2=/&/g,Q2=/\//g,J2=/=/g,G2=/\?/g,H0=/\+/g,Y2=/%5B/g,X2=/%5D/g,B0=/%5E/g,ei=/%60/g,F0=/%7B/g,ti=/%7C/g,k0=/%7D/g,ni=/%20/g;function S1(e){return encodeURI(""+e).replace(ti,"|").replace(Y2,"[").replace(X2,"]")}function si(e){return S1(e).replace(F0,"{").replace(k0,"}").replace(B0,"^")}function c1(e){return S1(e).replace(H0,"%2B").replace(ni,"+").replace(I0,"%23").replace(W2,"%26").replace(ei,"`").replace(F0,"{").replace(k0,"}").replace(B0,"^")}function ri(e){return c1(e).replace(J2,"%3D")}function oi(e){return S1(e).replace(I0,"%23").replace(G2,"%3F")}function ii(e){return e==null?"":oi(e).replace(Q2,"%2F")}function Cn(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function li(e){const t={};if(e===""||e==="?")return t;const s=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;r<s.length;++r){const o=s[r].replace(H0," "),i=o.indexOf("="),l=Cn(i<0?o:o.slice(0,i)),a=i<0?null:Cn(o.slice(i+1));if(l in t){let d=t[l];Ve(d)||(d=t[l]=[d]),d.push(a)}else t[l]=a}return t}function $s(e){let t="";for(let n in e){const s=e[n];if(n=ri(n),s==null){s!==void 0&&(t+=(t.length?"&":"")+n);continue}(Ve(s)?s.map(o=>o&&c1(o)):[s&&c1(s)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function ci(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Ve(s)?s.map(r=>r==null?null:""+r):s==null?s:""+s)}return t}const ai=Symbol(""),As=Symbol(""),L1=Symbol(""),V0=Symbol(""),a1=Symbol("");function Dt(){let e=[];function t(s){return e.push(s),()=>{const r=e.indexOf(s);r>-1&&e.splice(r,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function rt(e,t,n,s,r){const o=s&&(s.enterCallbacks[r]=s.enterCallbacks[r]||[]);return()=>new Promise((i,l)=>{const a=h=>{h===!1?l(Bt(4,{from:n,to:t})):h instanceof Error?l(h):L2(h)?l(Bt(2,{from:t,to:h})):(o&&s.enterCallbacks[r]===o&&typeof h=="function"&&o.push(h),i())},d=e.call(s&&s.instances[r],t,n,a);let u=Promise.resolve(d);e.length<3&&(u=u.then(a)),u.catch(h=>l(h))})}function qn(e,t,n,s){const r=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(ui(l)){const d=(l.__vccOpts||l)[t];d&&r.push(rt(d,n,s,o,i))}else{let a=l();r.push(()=>a.then(d=>{if(!d)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${o.path}"`));const u=v2(d)?d.default:d;o.components[i]=u;const p=(u.__vccOpts||u)[t];return p&&rt(p,n,s,o,i)()}))}}return r}function ui(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Es(e){const t=Ge(L1),n=Ge(V0),s=Ze(()=>t.resolve(Re(e.to))),r=Ze(()=>{const{matched:a}=s.value,{length:d}=a,u=a[d-1],h=n.matched;if(!u||!h.length)return-1;const p=h.findIndex(Ht.bind(null,u));if(p>-1)return p;const v=Rs(a[d-2]);return d>1&&Rs(u)===v&&h[h.length-1].path!==v?h.findIndex(Ht.bind(null,a[d-2])):p}),o=Ze(()=>r.value>-1&&pi(n.params,s.value.params)),i=Ze(()=>r.value>-1&&r.value===n.matched.length-1&&O0(n.params,s.value.params));function l(a={}){return hi(a)?t[Re(e.replace)?"replace":"push"](Re(e.to)).catch(Wt):Promise.resolve()}return{route:s,href:Ze(()=>s.value.href),isActive:o,isExactActive:i,navigate:l}}const fi=ze({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Es,setup(e,{slots:t}){const n=nn(Es(e)),{options:s}=Ge(L1),r=Ze(()=>({[Ms(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[Ms(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:P0("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:r.value},o)}}}),di=fi;function hi(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function pi(e,t){for(const n in t){const s=t[n],r=e[n];if(typeof s=="string"){if(s!==r)return!1}else if(!Ve(r)||r.length!==s.length||s.some((o,i)=>o!==r[i]))return!1}return!0}function Rs(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Ms=(e,t,n)=>e??t??n,mi=ze({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=Ge(a1),r=Ze(()=>e.route||s.value),o=Ge(As,0),i=Ze(()=>{let d=Re(o);const{matched:u}=r.value;let h;for(;(h=u[d])&&!h.components;)d++;return d}),l=Ze(()=>r.value.matched[i.value]);hn(As,Ze(()=>i.value+1)),hn(ai,l),hn(a1,r);const a=Ot();return pn(()=>[a.value,l.value,e.name],([d,u,h],[p,v,m])=>{u&&(u.instances[h]=d,v&&v!==u&&d&&d===p&&(u.leaveGuards.size||(u.leaveGuards=v.leaveGuards),u.updateGuards.size||(u.updateGuards=v.updateGuards))),d&&u&&(!v||!Ht(u,v)||!p)&&(u.enterCallbacks[h]||[]).forEach(E=>E(d))},{flush:"post"}),()=>{const d=r.value,u=e.name,h=l.value,p=h&&h.components[u];if(!p)return Zs(n.default,{Component:p,route:d});const v=h.props[u],m=v?v===!0?d.params:typeof v=="function"?v(d):v:null,F=P0(p,re({},m,t,{onVnodeUnmounted:T=>{T.component.isUnmounted&&(h.instances[u]=null)},ref:a}));return Zs(n.default,{Component:F,route:d})||F}}});function Zs(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const gi=mi;function _i(e){const t=K2(e.routes,e),n=e.parseQuery||li,s=e.stringifyQuery||$s,r=e.history,o=Dt(),i=Dt(),l=Dt(),a=Or(tt);let d=tt;Rt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=Dn.bind(null,x=>""+x),h=Dn.bind(null,ii),p=Dn.bind(null,Cn);function v(x,Z){let R,I;return T0(x)?(R=t.getRecordMatcher(x),I=Z):I=x,t.addRoute(I,R)}function m(x){const Z=t.getRecordMatcher(x);Z&&t.removeRoute(Z)}function E(){return t.getRoutes().map(x=>x.record)}function F(x){return!!t.getRecordMatcher(x)}function T(x,Z){if(Z=re({},Z||a.value),typeof x=="string"){const c=Kn(n,x,Z.path),f=t.resolve({path:c.path},Z),g=r.createHref(c.fullPath);return re(c,f,{params:p(f.params),hash:Cn(c.hash),redirectedFrom:void 0,href:g})}let R;if("path"in x)R=re({},x,{path:Kn(n,x.path,Z.path).path});else{const c=re({},x.params);for(const f in c)c[f]==null&&delete c[f];R=re({},x,{params:h(x.params)}),Z.params=h(Z.params)}const I=t.resolve(R,Z),W=x.hash||"";I.params=u(p(I.params));const ie=w2(s,re({},x,{hash:si(W),path:I.path})),K=r.createHref(ie);return re({fullPath:ie,hash:W,query:s===$s?ci(x.query):x.query||{}},I,{redirectedFrom:void 0,href:K})}function k(x){return typeof x=="string"?Kn(n,x,a.value.path):re({},x)}function L(x,Z){if(d!==x)return Bt(8,{from:Z,to:x})}function z(x){return ye(x)}function se(x){return z(re(k(x),{replace:!0}))}function me(x){const Z=x.matched[x.matched.length-1];if(Z&&Z.redirect){const{redirect:R}=Z;let I=typeof R=="function"?R(x):R;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=k(I):{path:I},I.params={}),re({query:x.query,hash:x.hash,params:"path"in I?{}:x.params},I)}}function ye(x,Z){const R=d=T(x),I=a.value,W=x.state,ie=x.force,K=x.replace===!0,c=me(R);if(c)return ye(re(k(c),{state:typeof c=="object"?re({},W,c.state):W,force:ie,replace:K}),Z||R);const f=R;f.redirectedFrom=Z;let g;return!ie&&y2(s,I,R)&&(g=Bt(16,{to:f,from:I}),ft(I,I,!0,!1)),(g?Promise.resolve(g):le(f,I)).catch(_=>Qe(_)?Qe(_,2)?_:Se(_):X(_,f,I)).then(_=>{if(_){if(Qe(_,2))return ye(re({replace:K},k(_.to),{state:typeof _.to=="object"?re({},W,_.to.state):W,force:ie}),Z||f)}else _=ge(f,I,!0,K,W);return te(f,I,_),_})}function D(x,Z){const R=L(x,Z);return R?Promise.reject(R):Promise.resolve()}function le(x,Z){let R;const[I,W,ie]=vi(x,Z);R=qn(I.reverse(),"beforeRouteLeave",x,Z);for(const c of I)c.leaveGuards.forEach(f=>{R.push(rt(f,x,Z))});const K=D.bind(null,x,Z);return R.push(K),At(R).then(()=>{R=[];for(const c of o.list())R.push(rt(c,x,Z));return R.push(K),At(R)}).then(()=>{R=qn(W,"beforeRouteUpdate",x,Z);for(const c of W)c.updateGuards.forEach(f=>{R.push(rt(f,x,Z))});return R.push(K),At(R)}).then(()=>{R=[];for(const c of x.matched)if(c.beforeEnter&&!Z.matched.includes(c))if(Ve(c.beforeEnter))for(const f of c.beforeEnter)R.push(rt(f,x,Z));else R.push(rt(c.beforeEnter,x,Z));return R.push(K),At(R)}).then(()=>(x.matched.forEach(c=>c.enterCallbacks={}),R=qn(ie,"beforeRouteEnter",x,Z),R.push(K),At(R))).then(()=>{R=[];for(const c of i.list())R.push(rt(c,x,Z));return R.push(K),At(R)}).catch(c=>Qe(c,8)?c:Promise.reject(c))}function te(x,Z,R){for(const I of l.list())I(x,Z,R)}function ge(x,Z,R,I,W){const ie=L(x,Z);if(ie)return ie;const K=Z===tt,c=Rt?history.state:{};R&&(I||K?r.replace(x.fullPath,re({scroll:K&&c&&c.scroll},W)):r.push(x.fullPath,W)),a.value=x,ft(x,Z,R,K),Se()}let _e;function Te(){_e||(_e=r.listen((x,Z,R)=>{if(!sn.listening)return;const I=T(x),W=me(I);if(W){ye(re(W,{replace:!0}),I).catch(Wt);return}d=I;const ie=a.value;Rt&&O2(_s(ie.fullPath,R.delta),Z2()),le(I,ie).catch(K=>Qe(K,12)?K:Qe(K,2)?(ye(K.to,I).then(c=>{Qe(c,20)&&!R.delta&&R.type===tn.pop&&r.go(-1,!1)}).catch(Wt),Promise.reject()):(R.delta&&r.go(-R.delta,!1),X(K,I,ie))).then(K=>{K=K||ge(I,ie,!1),K&&(R.delta&&!Qe(K,8)?r.go(-R.delta,!1):R.type===tn.pop&&Qe(K,20)&&r.go(-1,!1)),te(I,ie,K)}).catch(Wt)}))}let We=Dt(),Nt=Dt(),ae;function X(x,Z,R){Se(x);const I=Nt.list();return I.length?I.forEach(W=>W(x,Z,R)):console.error(x),Promise.reject(x)}function G(){return ae&&a.value!==tt?Promise.resolve():new Promise((x,Z)=>{We.add([x,Z])})}function Se(x){return ae||(ae=!x,Te(),We.list().forEach(([Z,R])=>x?R(x):Z()),We.reset()),x}function ft(x,Z,R,I){const{scrollBehavior:W}=e;if(!Rt||!W)return Promise.resolve();const ie=!R&&T2(_s(x.fullPath,0))||(I||!R)&&history.state&&history.state.scroll||null;return t0().then(()=>W(x,Z,ie)).then(K=>K&&P2(K)).catch(K=>X(K,x,Z))}const Le=x=>r.go(x);let Ce;const Ct=new Set,sn={currentRoute:a,listening:!0,addRoute:v,removeRoute:m,hasRoute:F,getRoutes:E,resolve:T,options:e,push:z,replace:se,go:Le,back:()=>Le(-1),forward:()=>Le(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:Nt.add,isReady:G,install(x){const Z=this;x.component("RouterLink",di),x.component("RouterView",gi),x.config.globalProperties.$router=Z,Object.defineProperty(x.config.globalProperties,"$route",{enumerable:!0,get:()=>Re(a)}),Rt&&!Ce&&a.value===tt&&(Ce=!0,z(r.location).catch(W=>{}));const R={};for(const W in tt)R[W]=Ze(()=>a.value[W]);x.provide(L1,Z),x.provide(V0,nn(R)),x.provide(a1,a);const I=x.unmount;Ct.add(x),x.unmount=function(){Ct.delete(x),Ct.size<1&&(d=tt,_e&&_e(),_e=null,a.value=tt,Ce=!1,ae=!1),I()}}};return sn}function At(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function vi(e,t){const n=[],s=[],r=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;i<o;i++){const l=t.matched[i];l&&(e.matched.find(d=>Ht(d,l))?s.push(l):n.push(l));const a=e.matched[i];a&&(t.matched.find(d=>Ht(d,a))||r.push(a))}return[n,s,r]}const xi={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},bi=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm3.004 6.4H7.347a.571.571 0 0 0-.403.974L8.559 8.96l-2.426 2.426c-.446.478-.443 1.2.003 1.647l.808.808a1.14 1.14 0 0 0 1.615.001l2.425-2.425 1.616 1.616a.571.571 0 0 0 .976-.404h-.033V6.939a.537.537 0 0 0-.54-.539Z"},null,-1),wi=[bi];function yi(e,t){return P(),S("svg",xi,wi)}const Ci={render:yi},$i={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 16 16"},Ai=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M15.724 12.02a.397.397 0 0 0 .246-.367L15.972.398A.4.4 0 0 0 15.574 0L4.334.019a.398.398 0 0 0-.28.678l3.093 3.094-7.03 7.03a.398.398 0 0 0 0 .563l4.499 4.5a.398.398 0 0 0 .562 0l7.031-7.031 3.082 3.082a.399.399 0 0 0 .433.086Z"},null,-1),Ei=[Ai];function Ri(e,t){return P(),S("svg",$i,Ei)}const Mi={render:Ri},Zi={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"2em",viewBox:"0 0 5 9"},Pi=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M4.777 3.698 1.302.223a.763.763 0 0 0-1.079 1.08L3.19 4.267.223 7.235a.763.763 0 0 0 1.08 1.078L4.776 4.84a.76.76 0 0 0 .221-.486v-.169a.76.76 0 0 0-.221-.486Z"},null,-1),Oi=[Pi];function Ti(e,t){return P(),S("svg",Zi,Oi)}const Si={render:Ti},Li={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16"},Ii=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M15.389 11.168A8.13 8.13 0 0 0 16 8.009a8.061 8.061 0 0 0-.611-3.149 7.91 7.91 0 0 0-1.683-2.538A7.823 7.823 0 0 0 11.168.62 8.022 8.022 0 0 0 8.009 0a7.954 7.954 0 0 0-5.687 2.322A7.96 7.96 0 0 0 0 8.009c0 1.128.207 2.181.62 3.159.414.978.981 1.824 1.702 2.538A7.91 7.91 0 0 0 4.86 15.39 8.061 8.061 0 0 0 8.01 16a8.13 8.13 0 0 0 3.158-.611 7.775 7.775 0 0 0 2.538-1.683 7.775 7.775 0 0 0 1.683-2.538Zm-4.936-3.159a.849.849 0 0 1-.263.62l-2.425 2.426a.806.806 0 0 1-.592.245.806.806 0 0 1-.593-.245.796.796 0 0 1-.244-.583.83.83 0 0 1 .226-.582L8.46 8.01 6.6 6.147a.746.746 0 0 1-.245-.573.87.87 0 0 1 .244-.611.807.807 0 0 1 .592-.245c.232 0 .423.075.574.226l2.425 2.444a.849.849 0 0 1 .263.62Z","clip-rule":"evenodd"},null,-1),Hi=[Ii];function Bi(e,t){return P(),S("svg",Li,Hi)}const Fi={render:Bi},ki={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 18 18"},Vi=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M13.378 3.957c-1.252-1.104-2.701-1.65-4.386-1.65-1.86 0-3.425.65-4.74 1.965C2.934 5.59 2.285 7.154 2.285 9.014c0 1.678.547 3.137 1.654 4.411l.31.357.352.306c1.26 1.092 2.711 1.632 4.39 1.632 1.86 0 3.428-.649 4.748-1.966 1.32-1.316 1.97-2.88 1.97-4.74 0-1.684-.546-3.134-1.65-4.385l-.277-.314-.405-.358ZM16.096 0l1.902 1.93-2.213 2.212c1.046 1.42 1.573 3.051 1.574 4.872 0 2.298-.825 4.282-2.454 5.908-1.63 1.625-3.615 2.447-5.913 2.447-1.814 0-3.445-.522-4.868-1.557L1.924 18 0 16.076 2.21 13.9C1.165 12.465.637 10.829.637 9.014c0-2.298.823-4.282 2.448-5.908C4.711 1.481 6.695.66 8.993.66c1.82 0 3.452.527 4.87 1.573L16.097 0Zm-2.39 3.459.673.58L4.017 14.4l-.58-.673C2.28 12.383 1.695 10.8 1.695 9.014c0-1.996.722-3.729 2.145-5.152 1.424-1.424 3.157-2.146 5.153-2.146 1.786 0 3.369.585 4.713 1.743Zm-4.713-.094c-1.558 0-2.871.547-3.987 1.663-1.115 1.115-1.662 2.429-1.662 3.986 0 1.083.268 2.05.81 2.917l7.756-7.756c-.868-.542-1.835-.81-2.917-.81Zm7.297 5.649c0 1.996-.722 3.728-2.145 5.152-1.424 1.424-3.157 2.146-5.153 2.146-1.786 0-3.369-.585-4.713-1.743l-.673-.58L13.968 3.627l.58.673c1.158 1.344 1.742 2.927 1.742 4.714Zm-2.46-2.917-7.755 7.755c.868.542 1.835.81 2.917.81 1.558 0 2.871-.547 3.987-1.662 1.115-1.115 1.662-2.429 1.662-3.986 0-1.083-.268-2.05-.81-2.917Z"},null,-1),Ni=[Vi];function ji(e,t){return P(),S("svg",ki,Ni)}const Di={render:ji},Ki={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 18 18"},Ui=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M1.8 0h14.4a1.8 1.8 0 1 1 0 3.6H1.8a1.8 1.8 0 1 1 0-3.6Zm0 7.2h14.4a1.8 1.8 0 1 1 0 3.6H1.8a1.8 1.8 0 1 1 0-3.6Zm0 7.2h14.4a1.8 1.8 0 1 1 0 3.6H1.8a1.8 1.8 0 1 1 0-3.6Z"},null,-1),qi=[Ui];function zi(e,t){return P(),S("svg",Ki,qi)}const Wi={render:zi},Qi={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 18 18"},Ji=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M6.359 9.93v1.426a.408.408 0 0 1-.409.409H4.524a.408.408 0 0 1-.408-.409V9.93c0-.225.183-.408.408-.408H5.95c.226 0 .409.183.409.408Zm3.563 0v1.426a.408.408 0 0 1-.408.409H8.088a.408.408 0 0 1-.409-.409V9.93c0-.225.183-.408.409-.408h1.426c.225 0 .408.183.408.408Zm3.563 0v1.426a.408.408 0 0 1-.408.409H11.65a.408.408 0 0 1-.409-.409V9.93c0-.225.183-.408.409-.408h1.426c.225 0 .408.183.408.408Zm-7.126 3.564v1.425a.408.408 0 0 1-.409.409H4.524a.408.408 0 0 1-.408-.409v-1.425c0-.226.183-.408.408-.408H5.95c.226 0 .409.182.409.408Zm3.563 0v1.425a.408.408 0 0 1-.408.409H8.088a.408.408 0 0 1-.409-.409v-1.425c0-.226.183-.408.409-.408h1.426c.225 0 .408.182.408.408Zm3.563 0v1.425a.408.408 0 0 1-.408.409H11.65a.408.408 0 0 1-.409-.409v-1.425c0-.226.183-.408.409-.408h1.426c.225 0 .408.182.408.408Zm2.55-11.49A1.62 1.62 0 0 1 17.6 3.616v12.761c0 .89-.724 1.623-1.613 1.623H1.613A1.622 1.622 0 0 1 0 16.377V3.617a1.62 1.62 0 0 1 1.567-1.613v2.178c0 .984.798 1.777 1.782 1.777h1.125c.984 0 1.792-.793 1.792-1.777V1.996h5.068v2.186c0 .984.81 1.777 1.793 1.777h1.125c.984 0 1.782-.793 1.782-1.777V2.004Zm-.523 13.578v-6.59a.698.698 0 0 0-.698-.699H2.756a.698.698 0 0 0-.698.698v6.591c0 .385.312.698.698.698h12.059a.698.698 0 0 0 .697-.698ZM3.345 4.792a.611.611 0 0 1-.611-.611V.61c0-.338.273-.611.611-.611h1.112c.338 0 .612.273.612.611v3.57c0 .337-.274.61-.612.61H3.345Zm9.768 0a.611.611 0 0 1-.611-.611V.61c0-.338.274-.611.611-.611h1.112c.338 0 .611.273.611.611v3.57a.61.61 0 0 1-.61.61h-1.113Z"},null,-1),Gi=[Ji];function Yi(e,t){return P(),S("svg",Qi,Gi)}const Xi={render:Yi},el={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},tl=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M10 8.188 8.188 6.375a1.282 1.282 0 0 0-1.813 1.813L8.188 10l-1.813 1.812a1.282 1.282 0 0 0 1.813 1.813L10 11.812l1.812 1.813a1.282 1.282 0 0 0 1.813-1.813L11.812 10l1.813-1.812a1.282 1.282 0 0 0-1.813-1.813L10 8.188Z"},null,-1),nl=[tl];function sl(e,t){return P(),S("svg",el,nl)}const rl={render:sl},ol={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},il=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10Zm0-11.812L8.188 6.375a1.282 1.282 0 0 0-1.813 1.813L8.188 10l-1.813 1.812a1.282 1.282 0 0 0 1.813 1.813L10 11.812l1.812 1.813a1.282 1.282 0 0 0 1.813-1.813L11.812 10l1.813-1.812a1.282 1.282 0 0 0-1.813-1.813L10 8.188Z"},null,-1),ll=[il];function cl(e,t){return P(),S("svg",ol,ll)}const al={render:cl},ul={xmlns:"http://www.w3.org/2000/svg",width:"1.4em",height:"1em",viewBox:"0 0 20 16"},fl=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M8.284 15.835a.467.467 0 0 1-.68.035L.154 8.818a.495.495 0 0 1-.02-.698l2.374-2.508a.495.495 0 0 1 .698-.02l4.07 3.853c.197.186.503.17.68-.035L15.907.17a.495.495 0 0 1 .696-.052l2.617 2.253c.206.177.23.49.052.695L8.284 15.835Z"},null,-1),dl=[fl];function hl(e,t){return P(),S("svg",ul,dl)}const pl={render:hl},ml={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 18 18"},gl=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M12.857 3.214c1.065 0 1.929.864 1.929 1.929V16.07A1.929 1.929 0 0 1 12.857 18H1.93A1.929 1.929 0 0 1 0 16.071V5.143c0-1.065.863-1.929 1.929-1.929h10.928ZM16.071 0C17.137 0 18 .863 18 1.929V13.5c0 1.06-.854 1.92-1.914 1.929h-.015V5.143a3.218 3.218 0 0 0-3.214-3.214H2.571v-.015A1.929 1.929 0 0 1 4.5 0h11.571Z"},null,-1),_l=[gl];function vl(e,t){return P(),S("svg",ml,_l)}const xl={render:vl},bl={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14"},wl=y("path",{fill:"currentColor",d:"M9.802 9.225h-8.69c-.611 0-1.112.5-1.112 1.113 0 .612.5 1.112 1.113 1.112h8.689v1.992c0 .5.6.745.946.39l3.093-3.105a.571.571 0 0 0 0-.79l-3.093-3.104c-.345-.356-.946-.1-.946.39v2.002ZM4.198 6.766V4.775h8.69c.611 0 1.112-.5 1.112-1.113 0-.612-.5-1.112-1.113-1.112H4.198V.558a.55.55 0 0 0-.946-.39L.16 3.274a.571.571 0 0 0 0 .79l3.093 3.104c.346.345.946.1.946-.4Z"},null,-1),yl=[wl];function Cl(e,t){return P(),S("svg",bl,yl)}const $l={render:Cl},Al={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14"},El=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M13.125 12.104c0 .047-.003.093-.009.137a.99.99 0 0 0 .578-.297.98.98 0 0 0 .306-.715V1.021a.98.98 0 0 0-.306-.715A.98.98 0 0 0 12.98 0H2.77a.98.98 0 0 0-.714.306.99.99 0 0 0-.297.578c.045-.006.09-.009.137-.009h10.209a.98.98 0 0 1 .714.306.98.98 0 0 1 .306.715v10.209ZM1.021 14a.98.98 0 0 1-.715-.306A.98.98 0 0 1 0 12.98V2.77a.98.98 0 0 1 .306-.714.98.98 0 0 1 .715-.306h10.208a.98.98 0 0 1 .715.306.98.98 0 0 1 .306.715V12.98a.98.98 0 0 1-.306.714.98.98 0 0 1-.715.306H1.021Zm7.878-8.736a.722.722 0 0 0-1.011.142L5.3 8.84l-.997-1.032A.722.722 0 1 0 3.265 8.81l1.505 1.558a.745.745 0 0 0 .035.034.723.723 0 0 0 1.14-.018L9.04 6.276a.722.722 0 0 0-.142-1.012Z","clip-rule":"evenodd"},null,-1),Rl=[El];function Ml(e,t){return P(),S("svg",Al,Rl)}const Zl={render:Ml},Pl={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 20 20"},Ol=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm.013-3.005a6.98 6.98 0 0 1-7.022-7.023 6.98 6.98 0 0 1 7.022-7.022v7.022h7.023a6.98 6.98 0 0 1-7.023 7.023Z","clip-rule":"evenodd"},null,-1),Tl=[Ol];function Sl(e,t){return P(),S("svg",Pl,Tl)}const Ll={render:Sl},Il={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14"},Hl=y("path",{fill:"currentColor",d:"M3.053 10.908H8.4V9.742H3.053v1.166Zm0-3.325h7.894V6.417H3.053v1.166Zm0-3.325h7.894V3.092H3.053v1.166ZM1.167 14a1.12 1.12 0 0 1-.817-.35 1.12 1.12 0 0 1-.35-.817V1.167C0 .856.117.583.35.35A1.12 1.12 0 0 1 1.167 0h11.666c.311 0 .584.117.817.35.233.233.35.506.35.817v11.666c0 .311-.117.584-.35.817a1.12 1.12 0 0 1-.817.35H1.167Z"},null,-1),Bl=[Hl];function Fl(e,t){return P(),S("svg",Il,Bl)}const kl={render:Fl},Vl={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14"},Nl=y("path",{fill:"currentColor",d:"M13.125 9.625h-3.65l-1.238 1.237c-.33.33-.77.513-1.237.513-.468 0-.907-.182-1.237-.513L4.525 9.625H.875A.875.875 0 0 0 0 10.5v2.625c0 .483.392.875.875.875h12.25a.875.875 0 0 0 .875-.875V10.5a.874.874 0 0 0-.875-.875Zm-1.313 2.844a.658.658 0 0 1-.656-.656c0-.361.296-.657.656-.657.361 0 .657.296.657.656 0 .361-.296.657-.656.657Zm-5.43-2.226a.87.87 0 0 0 1.236 0l3.5-3.5a.875.875 0 0 0-1.237-1.237L7.875 7.514V.875a.875.875 0 0 0-1.75 0v6.64L4.118 5.506a.875.875 0 1 0-1.237 1.237l3.501 3.499Z"},null,-1),jl=[Nl];function Dl(e,t){return P(),S("svg",Vl,jl)}const Kl={render:Dl},Ul={xmlns:"http://www.w3.org/2000/svg",width:".8em",height:".6em",viewBox:"0 0 8 6"},ql=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M4.734 4.776a.897.897 0 0 1-.146.131c-.406.29-.998.23-1.322-.131L.206 1.364A.785.785 0 0 1 0 .839C0 .376.421 0 .94 0h6.12c.213 0 .42.065.587.184.406.29.471.818.147 1.18l-3.06 3.412Z"},null,-1),zl=[ql];function Wl(e,t){return P(),S("svg",Ul,zl)}const Ql={render:Wl},Jl={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},Gl=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M9.213 7.262c.219-.22.478-.329.775-.329.298 0 .556.11.776.329l3.055 3.032a.971.971 0 0 1 .282.717c0 .29-.102.536-.305.74-.22.204-.474.305-.764.305a.933.933 0 0 1-.717-.305L9.988 9.424l-2.35 2.374a1.037 1.037 0 0 1-.728.282.995.995 0 0 1-.729-.306 1.008 1.008 0 0 1-.306-.74c0-.29.102-.537.306-.74l3.032-3.032ZM9.988 0C8.578 0 7.262.255 6.04.764a9.72 9.72 0 0 0-3.173 2.103A9.72 9.72 0 0 0 .764 6.04C.254 7.262 0 8.578 0 9.988c0 1.41.255 2.723.764 3.937a9.887 9.887 0 0 0 2.103 3.173 9.78 9.78 0 0 0 3.173 2.126c1.222.517 2.538.776 3.948.776 1.41 0 2.723-.259 3.937-.776a9.95 9.95 0 0 0 3.173-2.126 9.95 9.95 0 0 0 2.126-3.173c.517-1.214.776-2.527.776-3.937 0-1.41-.259-2.726-.776-3.948a9.78 9.78 0 0 0-2.126-3.173A9.887 9.887 0 0 0 13.925.764C12.71.254 11.398 0 9.988 0Z"},null,-1),Yl=[Gl];function Xl(e,t){return P(),S("svg",Jl,Yl)}const ec={render:Xl},tc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 18 18"},nc=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"m11.19 3.004 3.662 3.68-9.267 9.313-3.659-3.68 9.265-9.313Zm6.44-.887L15.997.476a1.614 1.614 0 0 0-2.289 0l-1.564 1.571 3.661 3.68 1.825-1.833c.489-.492.489-1.286 0-1.777ZM.01 17.49a.418.418 0 0 0 .504.498l4.08-.994-3.66-3.68L.01 17.49Z"},null,-1),sc=[nc];function rc(e,t){return P(),S("svg",tc,sc)}const oc={render:rc},ic={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 100 100"},lc=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M7.813 0h84.385a7.788 7.788 0 0 1 7.051 4.445c1.31 2.715.899 5.927-1.172 8.252l-35.57 43.45v37.636a6.191 6.191 0 0 1-3.457 5.559 6.271 6.271 0 0 1-6.544-.583L40.004 89.43a6.166 6.166 0 0 1-2.5-4.975V56.147L1.766 12.697A7.742 7.742 0 0 1 .753 4.445 7.814 7.814 0 0 1 7.813 0Z"},null,-1),cc=[lc];function ac(e,t){return P(),S("svg",ic,cc)}const uc={render:ac},fc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 52 40"},dc=y("path",{fill:"currentColor",d:"M37.143 34.286h-2.305L22.598 1.854A2.853 2.853 0 0 0 19.928 0c-1.191 0-2.263.74-2.68 1.854L5.161 34.286H2.857a2.856 2.856 0 1 0 0 5.714h8.572a2.856 2.856 0 1 0 0-5.714h-.161L12.795 30h14.25l1.526 4.286a2.856 2.856 0 1 0 0 5.714h8.572A2.856 2.856 0 0 0 40 37.143a2.855 2.855 0 0 0-2.857-2.857Zm-22.125-10L20 10.99l4.984 13.295h-9.966ZM50.571 17.143H49.42L43.3.927A1.427 1.427 0 0 0 41.964 0c-.596 0-1.131.37-1.34.927L34.58 17.143h-1.152a1.428 1.428 0 1 0 0 2.857h4.285a1.428 1.428 0 1 0 0-2.857h-.08L38.397 15h7.125l.764 2.143a1.428 1.428 0 1 0 0 2.857h4.285a1.428 1.428 0 1 0 0-2.857Zm-11.062-5L42 5.496l2.492 6.647h-4.983Z"},null,-1),hc=[dc];function pc(e,t){return P(),S("svg",fc,hc)}const mc={render:pc},gc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},_c=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm1.01 4H8.987a.464.464 0 0 0-.46.375l-.246 1.53a3.21 3.21 0 0 0-.614.27c-.214.12-.404.245-.567.375l-1.427-.645a.465.465 0 0 0-.337-.022.442.442 0 0 0-.261.217L4.06 7.855a.382.382 0 0 0-.046.315.5.5 0 0 0 .184.27l1.32.945c-.02.09-.034.193-.039.308a7 7 0 0 0 0 .614c.005.115.018.218.039.308l-1.32.945a.5.5 0 0 0-.184.27.382.382 0 0 0 .046.315L5.074 13.9c.061.11.148.182.26.217a.465.465 0 0 0 .338-.022L7.1 13.45c.163.13.353.255.567.375.215.12.42.215.614.285l.245 1.515a.464.464 0 0 0 .46.375h2.026a.464.464 0 0 0 .46-.375l.245-1.515c.205-.06.412-.152.622-.277.21-.126.396-.253.56-.383l1.426.645c.113.05.225.057.338.022a.442.442 0 0 0 .26-.217l1.013-1.755a.382.382 0 0 0 .046-.315.5.5 0 0 0-.184-.27l-1.32-.93c.021-.1.034-.205.039-.315a6.794 6.794 0 0 0 0-.637 2.069 2.069 0 0 0-.038-.323l1.319-.915a.444.444 0 0 0 .138-.6L14.923 6.1a.442.442 0 0 0-.261-.217.465.465 0 0 0-.338.022l-1.426.645a2.642 2.642 0 0 0-.56-.382 5.029 5.029 0 0 0-.622-.278l-.245-1.515A.464.464 0 0 0 11.01 4ZM9.999 8.05c.552 0 1.023.19 1.412.57.388.38.582.84.582 1.38 0 .54-.194 1-.582 1.38-.39.38-.86.57-1.412.57-.552 0-1.023-.19-1.411-.57A1.859 1.859 0 0 1 8.004 10c0-.54.194-1 .583-1.38.388-.38.859-.57 1.411-.57Z"},null,-1),vc=[_c];function xc(e,t){return P(),S("svg",gc,vc)}const bc={render:xc},wc={xmlns:"http://www.w3.org/2000/svg",width:"4em",height:"1em",viewBox:"0 0 85 22"},yc=y("g",{fill:"currentColor","fill-rule":"evenodd"},[y("path",{d:"M35.06 17.176c-1.76 0-3.216-.576-4.368-1.712-1.152-1.152-1.728-2.608-1.728-4.368 0-1.776.592-3.232 1.792-4.384 1.2-1.168 2.656-1.744 4.384-1.744 1.968 0 3.808.832 4.88 2.096l-1.264 1.248c-.944-1.04-2.144-1.552-3.6-1.552-1.232 0-2.256.416-3.072 1.232-.816.816-1.232 1.856-1.232 3.104 0 1.232.4 2.272 1.216 3.088.816.816 1.824 1.216 3.04 1.216 1.36 0 2.704-.592 3.6-1.536v-2.112H34.98v-1.664h5.44v4.64c-1.472 1.632-3.264 2.448-5.36 2.448ZM43.3 7.24c-.688 0-1.216-.512-1.216-1.2 0-.656.528-1.168 1.216-1.168.656 0 1.168.512 1.168 1.168 0 .688-.512 1.2-1.168 1.2Zm.848 1.136V17h-1.76V8.376h1.76Zm7.488 6.736.608 1.376c-.64.48-1.44.72-2.384.72-1.872 0-2.832-1.168-2.832-3.296V9.88H45.54V8.376h1.504V5.32h1.744v3.056h2.976V9.88h-2.976v4.064c0 1.104.448 1.648 1.328 1.648.464 0 .976-.16 1.52-.48ZM55.572 17h-1.84V5.176h1.84v4.912h5.632V5.176h1.84V17h-1.84v-5.136h-5.632V17Zm13.616.208c-2.304 0-3.776-1.44-3.776-3.744V8.376h1.76v5.072c0 1.296.752 2.128 2.016 2.128 1.28 0 2.016-.8 2.016-2.128V8.376h1.776v5.088c0 2.352-1.424 3.744-3.792 3.744Zm10.624-9.04c1.232 0 2.256.432 3.072 1.312.816.88 1.232 1.952 1.232 3.216 0 1.264-.416 2.336-1.232 3.216-.816.864-1.856 1.296-3.088 1.296-1.184 0-2.16-.48-2.912-1.44V17H75.14V4.872h1.76v4.752c.768-.976 1.744-1.456 2.912-1.456Zm-.24 7.392c.816 0 1.472-.272 1.968-.832.512-.56.768-1.232.768-2.048 0-.816-.256-1.488-.768-2.048-.496-.56-1.152-.832-1.968-.832-.816 0-1.488.288-2 .848-.496.56-.752 1.232-.752 2.032 0 .816.256 1.488.752 2.048.512.56 1.184.832 2 .832ZM11.278 0C5.05 0 0 5.05 0 11.278c0 4.984 3.232 9.211 7.713 10.703.564.104.77-.245.77-.543 0-.269-.01-1.157-.015-2.1-3.137.682-3.8-1.33-3.8-1.33-.513-1.304-1.252-1.65-1.252-1.65-1.023-.7.077-.686.077-.686 1.133.08 1.73 1.162 1.73 1.162 1.005 1.724 2.638 1.226 3.281.937.101-.729.394-1.226.716-1.508-2.505-.285-5.138-1.252-5.138-5.574 0-1.23.44-2.237 1.162-3.027-.117-.284-.503-1.431.11-2.985 0 0 .946-.303 3.102 1.156.9-.25 1.864-.375 2.822-.379.959.004 1.925.13 2.826.38 2.153-1.46 3.098-1.157 3.098-1.157.614 1.554.228 2.701.11 2.985.724.79 1.162 1.796 1.162 3.027 0 4.332-2.639 5.286-5.15 5.565.404.35.765 1.037.765 2.089 0 1.509-.013 2.724-.013 3.095 0 .3.203.652.774.541 4.48-1.493 7.707-5.72 7.707-10.7C22.557 5.048 17.507 0 11.278 0"})],-1),Cc=[yc];function $c(e,t){return P(),S("svg",wc,Cc)}const Ac={render:$c},Ec={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},Rc=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M13.75 10c0 .867-.047 1.703-.129 2.5H6.38c-.082-.797-.164-1.633-.164-2.5s.082-1.703.164-2.5h7.242c.082.797.129 1.633.129 2.5Zm5.934-2.5c.207.8.316 1.637.316 2.5s-.11 1.7-.316 2.5h-4.809a25.207 25.207 0 0 0 0-5h4.809Zm-.41-1.25h-4.56c-.39-2.495-1.163-4.585-2.16-5.92a10.022 10.022 0 0 1 6.72 5.92Zm-5.825 0H6.551c.238-1.422.605-2.68 1.054-3.697.41-.923.868-1.592 1.31-2.014C9.351.124 9.714 0 10 0c.285 0 .648.124 1.086.54.441.421.898 1.09 1.309 2.013.449 1.017.816 2.275 1.054 3.697Zm-12.722 0A10.02 10.02 0 0 1 7.445.33c-.996 1.335-1.77 3.425-2.16 5.92H.727ZM5.125 7.5c-.082.805-.16 1.64-.16 2.5 0 .824.078 1.695.16 2.5H.315C.109 11.7 0 10.863 0 10s.11-1.7.315-2.5h4.81Zm2.48 9.945c-.449-1.015-.816-2.273-1.054-3.695h6.898c-.238 1.422-.605 2.68-1.054 3.695-.41.926-.868 1.594-1.31 2.016-.437.414-.8.539-1.12.539-.25 0-.613-.125-1.05-.54-.442-.42-.9-1.089-1.31-2.015Zm-.16 2.227A10.023 10.023 0 0 1 .727 13.75h4.558c.39 2.496 1.164 4.586 2.16 5.922Zm5.11 0c.996-1.336 1.77-3.426 2.16-5.922h4.558a10.026 10.026 0 0 1-6.718 5.922Z"},null,-1),Mc=[Rc];function Zc(e,t){return P(),S("svg",Ec,Mc)}const Pc={render:Zc},Oc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 27 16"},Tc=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M4.382 12.293a.455.455 0 0 1-.4.816 2.378 2.378 0 0 1-1.088-3.177.454.454 0 0 1 .816.399c-.172.352-.197.75-.07 1.12.126.37.39.67.742.842Zm21.596-3.524a4.988 4.988 0 0 1 .24 3.837 4.992 4.992 0 0 1-2.545 2.882A4.978 4.978 0 0 1 21.47 16a4.994 4.994 0 0 1-4.931-4.077l-2.561 1.138a1.8 1.8 0 0 1-1.46 0l-2.563-1.138A4.993 4.993 0 0 1 5.024 16c-.769 0-1.51-.172-2.205-.512a4.992 4.992 0 0 1-2.544-2.882 4.992 4.992 0 0 1 .238-3.837 5.044 5.044 0 0 1 1.039-1.41s3.262-4.19 4.474-5.789C7.037.236 8.71-.434 10.241.314a3.252 3.252 0 0 1 1.596 4.099L11.36 6.27h3.772l-.478-1.858A3.253 3.253 0 0 1 16.25.314c1.532-.748 3.224-.092 4.216 1.256 1.084 1.475 4.473 5.788 4.473 5.788.416.4.774.87 1.038 1.41Zm-18.07 3.616a3.21 3.21 0 0 0-2.879-4.617 3.19 3.19 0 0 0-2.884 1.799 3.188 3.188 0 0 0-.153 2.449c.279.81.855 1.464 1.625 1.84.444.218.917.328 1.407.328 1.235 0 2.34-.69 2.883-1.8Zm5.338-1.611a1.249 1.249 0 1 0 0-2.497 1.249 1.249 0 0 0 0 2.497Zm11.253 1.242a3.18 3.18 0 0 0-.153-2.45 3.189 3.189 0 0 0-2.883-1.798 3.21 3.21 0 0 0-2.878 4.617 3.19 3.19 0 0 0 2.884 1.799c.49 0 .962-.11 1.406-.328a3.186 3.186 0 0 0 1.624-1.84ZM22.99 9.724a.454.454 0 0 1 .608.208 2.377 2.377 0 0 1-1.09 3.177.453.453 0 0 1-.607-.208.454.454 0 0 1 .208-.608c.352-.172.615-.471.743-.842.126-.37.102-.768-.07-1.12a.454.454 0 0 1 .208-.607Z"},null,-1),Sc=[Tc];function Lc(e,t){return P(),S("svg",Oc,Sc)}const Ic={render:Lc},Hc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},Bc=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M18 6.975a9.06 9.06 0 0 0-1.987-2.987A9.06 9.06 0 0 0 13.025 2L11.5 5.75a4.177 4.177 0 0 1 1.65 1.038 5.076 5.076 0 0 1 1.1 1.737L18 6.975ZM7.025 2c-1.25.517-2.308 1.212-3.175 2.087C2.983 4.962 2.367 5.95 2 7.05l3.725 1.5A5.02 5.02 0 0 1 6.85 6.8a4.32 4.32 0 0 1 1.675-1.05L7.025 2ZM2 12.975a10.132 10.132 0 0 0 2.05 3.075A8.345 8.345 0 0 0 6.975 18l1.575-3.75a4.5 4.5 0 0 1-1.688-1.038 4.55 4.55 0 0 1-1.112-1.737L2 12.975ZM13.025 18a8.862 8.862 0 0 0 3-1.987A9.157 9.157 0 0 0 18 13.025l-3.75-1.55c-.25.7-.62 1.288-1.113 1.762a4.24 4.24 0 0 1-1.687 1.013L13.025 18ZM10 20a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 0 10c0-1.383.262-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 10 0c1.383 0 2.683.262 3.9.788a10.099 10.099 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 20 10a9.738 9.738 0 0 1-.788 3.9 10.099 10.099 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 10 20Zm0-7c.833 0 1.542-.292 2.125-.875A2.893 2.893 0 0 0 13 10c0-.833-.292-1.542-.875-2.125A2.893 2.893 0 0 0 10 7c-.833 0-1.542.292-2.125.875A2.893 2.893 0 0 0 7 10c0 .833.292 1.542.875 2.125A2.893 2.893 0 0 0 10 13Z"},null,-1),Fc=[Bc];function kc(e,t){return P(),S("svg",Hc,Fc)}const Vc={render:kc},Nc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 14 14"},jc=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M7 0a7 7 0 1 1 0 14A7 7 0 0 1 7 0Zm.94 6.319H6.069v4.666h1.87V6.32ZM7 3.145c-.58 0-1.045.456-1.045 1.036 0 .598.446 1.035 1.045 1.035.598 0 1.044-.437 1.044-1.035 0-.58-.446-1.036-1.044-1.036Z"},null,-1),Dc=[jc];function Kc(e,t){return P(),S("svg",Nc,Dc)}const Uc={render:Kc},qc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},zc=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M10 0C4.477 0 0 4.477 0 10s4.477 10 10 10 10-4.477 10-10S15.523 0 10 0Zm-.938 5.938A.94.94 0 0 1 10 5c.516 0 .938.42.938.938v5a.938.938 0 0 1-1.876 0v-5ZM10 15.624a1.228 1.228 0 1 1 0-2.457 1.228 1.228 0 0 1 0 2.457Z"},null,-1),Wc=[zc];function Qc(e,t){return P(),S("svg",qc,Wc)}const Jc={render:Qc},Gc={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16"},Yc=y("g",{"clip-path":"url(#a)"},[y("path",{fill:"currentColor",d:"M.857 16A.832.832 0 0 1 0 15.143v-3.8a.833.833 0 0 1 .857-.857.832.832 0 0 1 .857.857v2.943h2.943a.832.832 0 0 1 .857.857.832.832 0 0 1-.857.857h-3.8Zm0-10.486a.833.833 0 0 1-.614-.243A.833.833 0 0 1 0 4.657v-3.8A.833.833 0 0 1 .857 0h3.8a.833.833 0 0 1 .857.857.833.833 0 0 1-.243.614.833.833 0 0 1-.614.243H1.714v2.943a.833.833 0 0 1-.243.614.833.833 0 0 1-.614.243ZM11.343 16a.832.832 0 0 1-.857-.857.832.832 0 0 1 .857-.857h2.943v-2.943a.832.832 0 0 1 .857-.857.832.832 0 0 1 .857.857v3.8a.832.832 0 0 1-.857.857h-3.8Zm3.8-10.486a.832.832 0 0 1-.614-.243.833.833 0 0 1-.243-.614V1.714h-2.943a.832.832 0 0 1-.614-.243.833.833 0 0 1-.243-.614.832.832 0 0 1 .857-.857h3.8A.832.832 0 0 1 16 .857v3.8a.832.832 0 0 1-.857.857Z"})],-1),Xc=y("defs",null,[y("clipPath",{id:"a"},[y("path",{fill:"#fff",d:"M0 0h16v16H0z"})])],-1),e3=[Yc,Xc];function t3(e,t){return P(),S("svg",Gc,e3)}const n3={render:t3},s3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16"},r3=y("path",{fill:"currentColor",d:"M4.657 16a.832.832 0 0 1-.857-.857V12.2H.857A.832.832 0 0 1 0 11.343a.833.833 0 0 1 .857-.857h3.8a.832.832 0 0 1 .857.857v3.8a.832.832 0 0 1-.857.857ZM.857 5.514a.833.833 0 0 1-.614-.243A.833.833 0 0 1 0 4.657.833.833 0 0 1 .857 3.8H3.8V.857A.833.833 0 0 1 4.657 0a.833.833 0 0 1 .857.857v3.8a.833.833 0 0 1-.243.614.833.833 0 0 1-.614.243h-3.8ZM11.343 16a.832.832 0 0 1-.857-.857v-3.8a.832.832 0 0 1 .857-.857h3.8a.832.832 0 0 1 .857.857.832.832 0 0 1-.857.857H12.2v2.943a.832.832 0 0 1-.857.857Zm0-10.486a.832.832 0 0 1-.614-.243.833.833 0 0 1-.243-.614v-3.8A.832.832 0 0 1 11.343 0a.832.832 0 0 1 .857.857V3.8h2.943a.832.832 0 0 1 .857.857.832.832 0 0 1-.857.857h-3.8Z"},null,-1),o3=[r3];function i3(e,t){return P(),S("svg",s3,o3)}const l3={render:i3},c3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 161 161"},a3=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"m157 66.475-43.875 43.875c3.375 9.525 4.8 25.425-9.9 45a12.225 12.225 0 0 1-8.775 4.8h-.825a12.075 12.075 0 0 1-8.475-3.525L49 120.475l-25.725 25.8a6.15 6.15 0 0 1-8.55 0 6.075 6.075 0 0 1 0-8.55L40.525 112l-36.3-36.3A11.925 11.925 0 0 1 5.2 57.85c19.05-15.375 37.275-12.3 45.3-9.825L94.525 4c4.7-4.632 12.25-4.632 16.95 0L157 49.525a11.925 11.925 0 0 1 0 16.95Z"},null,-1),u3=[a3];function f3(e,t){return P(),S("svg",c3,u3)}const d3={render:f3},h3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},p3=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10Zm1.02-7.407v-.66c0-.891.977-1.538 1.767-2.242.532-.503.963-1.264.963-2.17 0-.89-.33-1.637-.977-2.24-.647-.604-1.523-.906-2.63-.906-1.565 0-2.873.66-3.893 1.983l1.58 1.738c.733-.876 1.423-1.322 2.098-1.322.618 0 1.049.36 1.049.934 0 .747-.876 1.308-1.566 1.969a2.901 2.901 0 0 0-.862 2.069v.847h2.471Zm-1.192 3.32c.747 0 1.35-.59 1.35-1.38 0-.761-.589-1.365-1.35-1.365-.79 0-1.394.604-1.394 1.365 0 .79.632 1.38 1.394 1.38Z"},null,-1),m3=[p3];function g3(e,t){return P(),S("svg",h3,m3)}const _3={render:g3},v3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 11 14"},x3=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M9.664 9.285a.75.75 0 0 1-.679-.039.666.666 0 0 1-.379-.418.776.776 0 0 1 .04-.574c.087-.21.148-.418.182-.627.035-.21.053-.427.053-.653 0-.453-.092-.906-.275-1.358a3.578 3.578 0 0 0-.796-1.202 3.47 3.47 0 0 0-1.254-.796 4.074 4.074 0 0 0-1.437-.275l.601.601c.157.157.235.34.235.549a.752.752 0 0 1-.235.548.707.707 0 0 1-.548.222.856.856 0 0 1-.549-.222L2.481 2.925a.4.4 0 0 1-.13-.287.4.4 0 0 1 .13-.287L4.623.235A.752.752 0 0 1 5.172 0c.209 0 .391.078.548.235.157.157.24.34.248.549a.707.707 0 0 1-.222.548l-.47.47c.662 0 1.31.122 1.946.366a4.868 4.868 0 0 1 1.71 1.123 4.966 4.966 0 0 1 1.137 1.737A5.43 5.43 0 0 1 10.448 7c0 .296-.026.592-.079.888-.052.296-.13.592-.235.888a.828.828 0 0 1-.47.51ZM5.276 14a.752.752 0 0 1-.548-.235.752.752 0 0 1-.235-.549c0-.208.078-.391.235-.548l.444-.444a5.524 5.524 0 0 1-1.933-.405 5.062 5.062 0 0 1-1.698-1.136 5.16 5.16 0 0 1-1.15-1.724 5.174 5.174 0 0 1-.313-2.886 5.49 5.49 0 0 1 .235-.901.84.84 0 0 1 .458-.457.725.725 0 0 1 .666.039.76.76 0 0 1 .378.43.818.818 0 0 1-.039.588 2.07 2.07 0 0 0-.17.614c-.026.218-.039.431-.039.64 0 .453.092.906.274 1.358.183.453.449.854.797 1.202.366.365.78.635 1.24.81.462.174.937.252 1.424.235l-.574-.575a.752.752 0 0 1-.235-.549c0-.208.078-.391.235-.548a.707.707 0 0 1 .548-.222.856.856 0 0 1 .549.222l2.141 2.116a.4.4 0 0 1 .131.287.4.4 0 0 1-.13.287l-2.142 2.116a.752.752 0 0 1-.549.235Z","clip-rule":"evenodd"},null,-1),b3=[x3];function w3(e,t){return P(),S("svg",v3,b3)}const y3={render:w3},C3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 12 12"},$3=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"m1.084.679.888.88A6.062 6.062 0 0 1 6 0c.813 0 1.59.159 2.33.477a6.052 6.052 0 0 1 1.912 1.28 6.052 6.052 0 0 1 1.281 1.914C11.841 4.41 12 5.187 12 6c0 .812-.159 1.59-.477 2.329a6.052 6.052 0 0 1-1.28 1.913 6.054 6.054 0 0 1-1.914 1.28A5.841 5.841 0 0 1 6 12a5.957 5.957 0 0 1-2.554-.567c-.583-.272-1.073-.565-1.574-1.004a7.244 7.244 0 0 1-.41-.433 1.163 1.163 0 0 1 .06-1.623 1.159 1.159 0 0 1 1.6.002c.568.544 1.012.804 1.258.925.518.254 1.038.42 1.62.42.508 0 .993-.063 1.455-.26a3.784 3.784 0 0 0 1.2-.804c.338-.338.605-.737.804-1.2.198-.463.297-.947.297-1.456s-.1-.994-.297-1.455a3.784 3.784 0 0 0-.804-1.2 3.788 3.788 0 0 0-1.2-.804A3.655 3.655 0 0 0 6 2.244c-.934 0-1.747.3-2.447.904l.942.942c.2.193.248.433.138.688a.6.6 0 0 1-.584.393H.634a.615.615 0 0 1-.446-.188A.615.615 0 0 1 0 4.537V1.122C0 .85.134.648.388.537c.264-.11.506-.06.696.142Z"},null,-1),A3=[$3];function E3(e,t){return P(),S("svg",C3,A3)}const R3={render:E3},M3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"-0.5 -0.5 21.5 21.5"},Z3=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M2.37 0h16c1.31 0 2.37 1.065 2.37 2.38v16.06a2.375 2.375 0 0 1-2.37 2.38h-16A2.375 2.375 0 0 1 0 18.44V2.38A2.375 2.375 0 0 1 2.37 0ZM16.93 6.291c.446-1.33.454-2.311.182-2.584-.273-.273-1.25-.255-2.586.2.204.447.533.93.98 1.378.463.465.964.803 1.424 1.006Zm-.123.346a5.3 5.3 0 0 1-1.553-1.1c-.475-.477-.838-1-1.072-1.507-1.16.441-2.55 1.194-3.969 2.342-2.017 1.634-3.389 3.433-4.116 5.399a.762.762 0 0 0 .175.802l1.995 2.003c.216.217.54.282.823.165 1.899-.783 3.678-2.162 5.337-4.139 1.179-1.404 1.94-2.798 2.38-3.965Zm-4.401 1.768a1.312 1.312 0 0 1 0-1.85 1.3 1.3 0 0 1 1.843 0c.51.51.51 1.339 0 1.85a1.3 1.3 0 0 1-1.843 0Zm-6.42 2.74C6.584 9.651 7.585 8.27 8.986 7c-.574-.064-1.307.176-2.2.722-1.104.674-2.12 1.594-3.046 2.763a.238.238 0 0 0 .153.383l2.092.278Zm3.674 3.688.277 2.1a.237.237 0 0 0 .382.154c1.164-.93 2.081-1.95 2.753-3.057.543-.897.783-1.633.718-2.21-1.264 1.408-2.64 2.412-4.13 3.013Zm-2.796 1.628s.105-.09.14-.126a1.791 1.791 0 0 0 .003-2.52l-.003-.003a1.775 1.775 0 0 0-2.584.073c-.693.736-.52 1.269-.512 1.291a.099.099 0 0 0 .152.047c.006-.004.496-.367.842-.142-.183.185-.452.472-.637.783a2.53 2.53 0 0 0-.292 1.609.099.099 0 0 0 .167.054c.327-.327.712-.384 1.158-.45.482-.072 1.028-.153 1.566-.616Zm-.301-2.207c.323.325.335.842.026 1.152-.016.016-.033.03-.05.044-.274.235-.54.267-.797.298-.18.022-.365.044-.534.13.005-.192.054-.389.139-.535a2.24 2.24 0 0 1 .361-.438c.049-.05.044-.132-.01-.187-.165-.165-.367-.166-.533-.113a.922.922 0 0 1 .217-.342c.012-.014.023-.024.034-.035.309-.31.823-.298 1.147.026Z"},null,-1),P3=[Z3];function O3(e,t){return P(),S("svg",M3,P3)}const T3={render:O3},S3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 14 14"},L3=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"m.417 11.565 2.04-2.034a6.24 6.24 0 1 1 2.012 2.012l-2.034 2.04a1.43 1.43 0 0 1-2.018 0 1.43 1.43 0 0 1 0-2.018Zm7.342-1.567a3.757 3.757 0 1 0 0-7.515 3.757 3.757 0 0 0 0 7.515Z"},null,-1),I3=[L3];function H3(e,t){return P(),S("svg",S3,I3)}const B3={render:H3},F3={xmlns:"http://www.w3.org/2000/svg",width:"10.5em",height:"2em",viewBox:"0 0 127 24"},k3=y("g",{fill:"none","fill-rule":"evenodd"},[y("path",{fill:"currentColor",d:"M35.41 19.376c-2.453 0-4.672-1.07-5.973-3.01l1.813-2.247c1.024 1.461 2.56 2.246 4.18 2.246 1.302 0 2.262-.698 2.262-1.723 0-.654-.47-1.222-1.43-1.68-.212-.109-.724-.305-1.556-.632-.81-.327-1.43-.633-1.856-.873-1.664-.981-2.496-2.312-2.496-4.013 0-1.353.49-2.465 1.493-3.36 1.003-.894 2.304-1.352 3.883-1.352 2.047 0 3.775.72 5.183 2.181L39.228 7.27c-.875-.96-2.283-1.505-3.456-1.505-1.258 0-2.026.61-2.026 1.549 0 .632.426 1.156 1.28 1.592l1.557.698c.874.371 1.514.655 1.92.85 1.791.895 2.687 2.226 2.687 4.015 0 1.44-.533 2.617-1.6 3.533-1.066.916-2.453 1.375-4.18 1.375ZM49.047 6.92c1.643 0 3.008.61 4.096 1.81 1.088 1.2 1.621 2.684 1.621 4.429s-.554 3.228-1.642 4.428c-1.088 1.2-2.453 1.81-4.096 1.81-1.43 0-2.645-.545-3.648-1.657V24h-3.007V7.225h2.986v1.462c1.003-1.178 2.219-1.767 3.69-1.767Zm-.533 9.663c.96 0 1.728-.327 2.325-.981.598-.655.896-1.462.896-2.421 0-.96-.298-1.767-.896-2.422-.597-.654-1.365-.981-2.325-.981-.938 0-1.706.327-2.304.981-.597.655-.896 1.462-.896 2.422 0 .96.3 1.766.896 2.42.598.655 1.366.982 2.304.982Zm18.779-3.686c0 .414-.043.873-.107 1.352h-8.724c.426 1.68 1.557 2.53 3.391 2.53 1.259 0 2.752-.501 3.755-1.199l1.194 2.16c-1.472 1.09-3.157 1.636-5.077 1.636-2.047 0-3.605-.611-4.693-1.811-1.087-1.2-1.62-2.683-1.62-4.406 0-1.81.554-3.294 1.684-4.472 1.131-1.178 2.582-1.767 4.373-1.767 1.686 0 3.093.545 4.181 1.614 1.088 1.07 1.643 2.509 1.643 4.363Zm-5.824-3.425c-1.514 0-2.645.938-3.007 2.487h5.908c-.277-1.549-1.365-2.487-2.9-2.487Zm18.288 3.425c0 .414-.042.873-.106 1.352h-8.725c.427 1.68 1.558 2.53 3.392 2.53 1.259 0 2.752-.501 3.754-1.199l1.195 2.16c-1.472 1.09-3.157 1.636-5.077 1.636-2.048 0-3.605-.611-4.693-1.811-1.088-1.2-1.621-2.683-1.621-4.406 0-1.81.555-3.294 1.685-4.472 1.13-1.178 2.581-1.767 4.373-1.767 1.685 0 3.093.545 4.181 1.614 1.088 1.07 1.642 2.509 1.642 4.363Zm-5.823-3.425c-1.514 0-2.645.938-3.008 2.487h5.91c-.278-1.549-1.366-2.487-2.902-2.487ZM89.62 8.6V2.536h3.007v16.578h-2.943v-1.462c-.939 1.156-2.133 1.745-3.605 1.745-1.643 0-3.03-.589-4.117-1.767-1.088-1.2-1.643-2.683-1.643-4.471 0-1.767.555-3.25 1.643-4.45 1.109-1.2 2.474-1.789 4.117-1.789 1.408 0 2.58.567 3.54 1.68Zm.149 4.559c0-.96-.299-1.767-.896-2.422-.597-.676-1.365-1.003-2.325-1.003-.96 0-1.728.327-2.346 1.003-.598.655-.896 1.462-.896 2.422 0 .981.298 1.788.896 2.465.618.654 1.386.981 2.346.981.96 0 1.728-.327 2.325-.981.597-.677.896-1.484.896-2.465Zm22.817 5.955h-3.882l-4.373-6.392-1.94 2.378v4.014h-3.158V2.994h3.157v7.613l5.973-7.613h3.818l-5.78 7.329 6.185 8.79Zm3.1-13.764c-.703.72-1.94.72-2.644 0-.704-.72-.704-1.986 0-2.684.703-.72 1.94-.72 2.645 0 .704.698.704 1.964 0 2.684Zm.171 1.875v11.889h-3.007V7.225h3.007Zm9.308 8.77.896 2.42c-.96.655-2.09.982-3.435.982-2.666 0-4.053-1.614-4.053-4.69V9.8h-1.898V7.225h1.92v-4.21h2.986v4.21h3.84V9.8h-3.84v4.712c0 1.396.555 2.094 1.643 2.094.576 0 1.237-.196 1.94-.61Z"}),y("path",{fill:"#E1E8F0",d:"M2 2h18v18H2z"}),y("path",{fill:"#0568FD",d:"M2.49 0H19.3c1.376 0 2.49 1.12 2.49 2.5v16.874c0 1.38-1.114 2.5-2.49 2.5H2.49a2.495 2.495 0 0 1-2.49-2.5V2.5C0 1.12 1.115 0 2.49 0Zm15.296 6.61c.469-1.398.477-2.429.192-2.715-.287-.288-1.314-.269-2.717.21.214.47.56.977 1.028 1.448a5.039 5.039 0 0 0 1.497 1.057Zm-.13.363a5.568 5.568 0 0 1-1.63-1.156c-.5-.5-.881-1.05-1.127-1.583-1.22.464-2.68 1.254-4.17 2.46-2.119 1.717-3.56 3.608-4.324 5.673a.8.8 0 0 0 .183.842l2.097 2.105a.793.793 0 0 0 .864.174c1.995-.823 3.864-2.272 5.608-4.35 1.238-1.474 2.038-2.938 2.5-4.165ZM13.034 8.83a1.379 1.379 0 0 1 0-1.944 1.366 1.366 0 0 1 1.937 0 1.379 1.379 0 0 1 0 1.944 1.366 1.366 0 0 1-1.937 0Zm-6.745 2.88c.63-1.57 1.68-3.023 3.153-4.356-.603-.068-1.373.185-2.312.758-1.16.708-2.226 1.675-3.2 2.902a.25.25 0 0 0 .162.403l2.197.293Zm3.86 3.874.292 2.206a.249.249 0 0 0 .4.162c1.223-.977 2.187-2.048 2.892-3.212.571-.942.823-1.716.756-2.32-1.329 1.478-2.775 2.533-4.34 3.164Zm-2.937 1.71s.11-.095.146-.132c.727-.73.729-1.916.004-2.647v-.001l-.004-.003a1.865 1.865 0 0 0-2.714.077c-.728.774-.547 1.333-.539 1.356a.103.103 0 0 0 .16.05c.006-.005.522-.386.885-.15-.192.195-.475.497-.669.823-.278.47-.399 1.133-.307 1.69a.104.104 0 0 0 .176.057c.343-.344.748-.403 1.216-.473.506-.075 1.08-.16 1.646-.646Zm-.317-2.318c.34.341.352.884.027 1.21-.017.017-.034.032-.051.046-.289.247-.568.28-.839.314-.189.023-.382.046-.56.137a1.23 1.23 0 0 1 .145-.563c.1-.174.249-.33.38-.46.051-.052.046-.14-.01-.196-.174-.174-.386-.175-.56-.12a.969.969 0 0 1 .228-.359c.012-.014.024-.025.035-.036.325-.326.865-.314 1.205.027Z"})],-1),V3=[k3];function N3(e,t){return P(),S("svg",F3,V3)}const j3={render:N3},D3={xmlns:"http://www.w3.org/2000/svg",width:"6em",height:"1em",viewBox:"0 0 120 23"},K3=Oo('<defs><linearGradient id="a" x1="0%" x2="102%" y1="0%" y2="101%"><stop offset="0%" stop-color="#1201E8"></stop><stop offset="100%" stop-color="#E808F2"></stop></linearGradient></defs><g fill="none" fill-rule="evenodd"><path fill="currentColor" d="M33.703 18.442c-2.335 0-4.446-1.018-5.685-2.865l1.726-2.139c.975 1.391 2.436 2.139 3.98 2.139 1.238 0 2.152-.665 2.152-1.64 0-.623-.447-1.163-1.36-1.6-.204-.103-.691-.29-1.483-.601a15.51 15.51 0 0 1-1.766-.83c-1.584-.935-2.376-2.202-2.376-3.821 0-1.287.467-2.346 1.421-3.197.955-.852 2.193-1.288 3.696-1.288 1.949 0 3.593.685 4.933 2.076L37.337 6.92c-.832-.914-2.172-1.433-3.289-1.433-1.198 0-1.929.582-1.929 1.474 0 .602.407 1.1 1.219 1.516l1.482.664c.832.353 1.441.623 1.827.81 1.706.851 2.558 2.118 2.558 3.82 0 1.37-.507 2.492-1.522 3.364-1.016.872-2.335 1.308-3.98 1.308Zm12.98-11.855c1.564 0 2.863.58 3.899 1.723 1.035 1.142 1.543 2.554 1.543 4.215 0 1.66-.528 3.072-1.563 4.214-1.036 1.142-2.335 1.724-3.899 1.724-1.36 0-2.517-.52-3.471-1.578v5.958h-2.863V6.877h2.842v1.391c.955-1.12 2.112-1.681 3.513-1.681Zm-.507 9.197c.914 0 1.645-.311 2.213-.934.569-.623.853-1.391.853-2.305 0-.913-.284-1.681-.853-2.304-.568-.623-1.3-.935-2.213-.935-.893 0-1.624.312-2.193.935-.568.623-.852 1.39-.852 2.304 0 .914.284 1.682.852 2.305.569.623 1.3.934 2.193.934Zm17.874-3.509c0 .395-.04.83-.102 1.288h-8.304c.406 1.598 1.482 2.408 3.228 2.408 1.198 0 2.62-.477 3.574-1.142l1.137 2.056c-1.401 1.038-3.005 1.557-4.832 1.557-1.95 0-3.432-.582-4.467-1.723-1.036-1.142-1.543-2.554-1.543-4.194 0-1.724.528-3.136 1.604-4.257 1.076-1.12 2.457-1.681 4.162-1.681 1.604 0 2.944.519 3.98 1.536 1.035 1.017 1.563 2.388 1.563 4.152Zm-5.543-3.26c-1.442 0-2.518.894-2.863 2.368h5.624c-.264-1.474-1.3-2.367-2.761-2.367Zm17.407 3.26c0 .395-.04.83-.102 1.288h-8.304c.406 1.598 1.482 2.408 3.228 2.408 1.198 0 2.62-.477 3.574-1.142l1.137 2.056c-1.401 1.038-3.005 1.557-4.832 1.557-1.95 0-3.432-.582-4.467-1.723-1.036-1.142-1.543-2.554-1.543-4.194 0-1.724.528-3.136 1.604-4.257 1.076-1.12 2.456-1.681 4.162-1.681 1.604 0 2.944.519 3.98 1.536 1.035 1.017 1.563 2.388 1.563 4.152Zm-5.543-3.26c-1.442 0-2.518.894-2.863 2.368h5.624c-.264-1.474-1.3-2.367-2.761-2.367Zm14.93-.83V2.413h2.862v15.78h-2.801v-1.391c-.894 1.1-2.03 1.66-3.432 1.66-1.563 0-2.883-.56-3.918-1.681-1.036-1.142-1.564-2.554-1.564-4.256 0-1.682.528-3.094 1.564-4.236 1.056-1.142 2.355-1.702 3.918-1.702 1.34 0 2.457.54 3.37 1.598Zm.142 4.34c0-.914-.284-1.682-.853-2.305-.568-.644-1.3-.955-2.213-.955-.914 0-1.645.311-2.233.955-.569.623-.853 1.391-.853 2.305 0 .934.284 1.702.853 2.346.588.623 1.32.934 2.233.934.914 0 1.645-.311 2.213-.934.569-.644.853-1.412.853-2.346Zm21.718 5.668h-3.696l-4.162-6.084-1.847 2.263v3.82H94.45V2.85h3.005v7.246l5.685-7.246h3.634l-5.502 6.976 5.888 8.368Zm2.95-13.101c-.67.685-1.847.685-2.517 0-.67-.685-.67-1.89 0-2.554.67-.685 1.847-.685 2.517 0 .67.664.67 1.869 0 2.554Zm.163 1.785v11.316h-2.863V6.877h2.863Zm8.859 8.347.853 2.304c-.914.623-1.99.935-3.27.935-2.537 0-3.857-1.537-3.857-4.464V9.327h-1.807v-2.45h1.827V2.87h2.843v4.007h3.654v2.45h-3.654v4.485c0 1.329.528 1.993 1.563 1.993.548 0 1.178-.187 1.848-.581Z"></path><path fill="url(#a)" d="M2.37 0h16c1.31 0 2.37 1.065 2.37 2.38v16.06a2.375 2.375 0 0 1-2.37 2.38h-16A2.375 2.375 0 0 1 0 18.44V2.38A2.375 2.375 0 0 1 2.37 0ZM16.93 6.291c.446-1.33.454-2.311.182-2.584-.273-.273-1.25-.255-2.586.2.204.447.533.93.98 1.378.463.465.964.803 1.424 1.006Zm-.123.346a5.3 5.3 0 0 1-1.553-1.1c-.475-.477-.838-1-1.072-1.507-1.16.441-2.55 1.194-3.969 2.342-2.017 1.634-3.389 3.433-4.116 5.399a.762.762 0 0 0 .175.802l1.995 2.003c.216.217.54.282.823.165 1.899-.783 3.678-2.162 5.337-4.139 1.179-1.404 1.94-2.798 2.38-3.965Zm-4.401 1.768a1.312 1.312 0 0 1 0-1.85 1.3 1.3 0 0 1 1.843 0c.51.51.51 1.339 0 1.85a1.3 1.3 0 0 1-1.843 0Zm-6.42 2.74C6.584 9.651 7.585 8.27 8.986 7c-.574-.064-1.307.176-2.2.722-1.104.674-2.12 1.594-3.046 2.763a.238.238 0 0 0 .153.383l2.092.278Zm3.674 3.688.277 2.1a.237.237 0 0 0 .382.154c1.164-.93 2.081-1.95 2.753-3.057.543-.897.783-1.633.718-2.21-1.264 1.408-2.64 2.412-4.13 3.013Zm-2.796 1.628s.105-.09.14-.126a1.791 1.791 0 0 0 .003-2.52l-.003-.003a1.775 1.775 0 0 0-2.584.073c-.693.736-.52 1.269-.512 1.291a.099.099 0 0 0 .152.047c.006-.004.496-.367.842-.142-.183.185-.452.472-.637.783a2.53 2.53 0 0 0-.292 1.609.099.099 0 0 0 .167.054c.327-.327.712-.384 1.158-.45.482-.072 1.028-.153 1.566-.616Zm-.301-2.207c.323.325.335.842.026 1.152-.016.016-.033.03-.05.044-.274.235-.54.267-.797.298-.18.022-.365.044-.534.13.005-.192.054-.389.139-.535a2.24 2.24 0 0 1 .361-.438c.049-.05.044-.132-.01-.187-.165-.165-.367-.166-.533-.113a.922.922 0 0 1 .217-.342c.012-.014.023-.024.034-.035.309-.31.823-.298 1.147.026Z"></path></g>',2),U3=[K3];function q3(e,t){return P(),S("svg",D3,U3)}const z3={render:q3},W3={xmlns:"http://www.w3.org/2000/svg",width:"6em",height:"1em",viewBox:"0 0 162 31"},Q3=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M45.5 24.58c-3.153 0-6.003-1.368-7.675-3.853l2.33-2.876c1.315 1.87 3.289 2.876 5.372 2.876 1.672 0 2.905-.894 2.905-2.206 0-.838-.603-1.564-1.836-2.15-.274-.14-.932-.391-2.001-.81a20.974 20.974 0 0 1-2.385-1.117c-2.138-1.256-3.207-2.96-3.207-5.138 0-1.731.63-3.155 1.919-4.3 1.288-1.145 2.96-1.731 4.988-1.731 2.632 0 4.852.921 6.66 2.792l-2.164 3.016c-1.124-1.229-2.933-1.927-4.44-1.927-1.618 0-2.605.782-2.605 1.983 0 .81.548 1.48 1.645 2.038l2 .894c1.125.474 1.947.837 2.468 1.089 2.302 1.145 3.453 2.848 3.453 5.138 0 1.842-.685 3.35-2.056 4.523-1.37 1.173-3.152 1.76-5.372 1.76ZM63.022 8.636c2.11 0 3.865.782 5.263 2.318 1.398 1.536 2.083 3.434 2.083 5.668s-.713 4.133-2.11 5.669c-1.399 1.535-3.153 2.317-5.263 2.317-1.837 0-3.4-.698-4.687-2.122V30.5h-3.865V9.027h3.837v1.87c1.288-1.507 2.85-2.26 4.742-2.26Zm-.685 12.37c1.233 0 2.22-.419 2.987-1.256.768-.838 1.152-1.871 1.152-3.1s-.384-2.262-1.152-3.1c-.767-.837-1.754-1.256-2.987-1.256-1.206 0-2.193.419-2.96 1.257-.768.837-1.152 1.87-1.152 3.1 0 1.228.384 2.26 1.152 3.099.767.837 1.754 1.256 2.96 1.256Zm24.13-4.719c0 .53-.056 1.117-.138 1.731H75.12c.548 2.15 2 3.24 4.358 3.24 1.617 0 3.536-.643 4.824-1.536l1.535 2.764c-1.891 1.396-4.057 2.094-6.524 2.094-2.63 0-4.632-.782-6.03-2.317-1.398-1.536-2.083-3.435-2.083-5.64 0-2.318.713-4.217 2.166-5.725 1.452-1.508 3.316-2.262 5.618-2.262 2.166 0 3.975.698 5.373 2.066 1.398 1.369 2.11 3.212 2.11 5.585Zm-7.484-4.384c-1.946 0-3.398 1.2-3.864 3.183h7.592c-.356-1.982-1.754-3.183-3.728-3.183Zm23.5 4.384c0 .53-.055 1.117-.137 1.731H91.136c.548 2.15 2 3.24 4.358 3.24 1.617 0 3.536-.643 4.824-1.536l1.535 2.764c-1.891 1.396-4.056 2.094-6.523 2.094-2.632 0-4.633-.782-6.03-2.317-1.398-1.536-2.084-3.435-2.084-5.64 0-2.318.713-4.217 2.166-5.725C90.835 9.39 92.698 8.636 95 8.636c2.165 0 3.974.698 5.372 2.066 1.398 1.369 2.11 3.212 2.11 5.585ZM95 11.903c-1.946 0-3.399 1.2-3.865 3.183h7.592c-.356-1.982-1.754-3.183-3.727-3.183Zm20.155-1.117V3.024h3.865v21.221h-3.783v-1.87c-1.206 1.48-2.74 2.233-4.632 2.233-2.11 0-3.892-.754-5.29-2.262-1.398-1.535-2.11-3.434-2.11-5.724 0-2.262.712-4.16 2.11-5.696 1.425-1.536 3.18-2.29 5.29-2.29 1.809 0 3.316.726 4.55 2.15Zm.192 5.836c0-1.228-.384-2.262-1.151-3.1-.768-.865-1.755-1.284-2.988-1.284s-2.22.42-3.015 1.285c-.768.837-1.151 1.87-1.151 3.1 0 1.256.383 2.289 1.15 3.154.796.838 1.783 1.257 3.016 1.257s2.22-.419 2.988-1.257c.767-.865 1.15-1.898 1.15-3.155Zm29.319 7.623h-4.989l-5.619-8.181-2.494 3.043v5.138h-4.057V3.61h4.057v9.745l7.675-9.745h4.906l-7.428 9.382 7.949 11.253Zm3.983-17.62c-.904.922-2.494.922-3.398 0-.905-.92-.905-2.54 0-3.434.904-.921 2.494-.921 3.398 0 .905.894.905 2.513 0 3.435Zm.22 2.402v15.218h-3.865V9.027h3.865Zm11.96 11.225 1.15 3.1c-1.233.837-2.686 1.256-4.412 1.256-3.427 0-5.208-2.066-5.208-6.003v-6.283h-2.44V9.027h2.467v-5.39h3.837v5.39h4.934v3.295h-4.934v6.031c0 1.787.713 2.681 2.111 2.681.74 0 1.59-.251 2.494-.782ZM3.2 0h21.6A3.2 3.2 0 0 1 28 3.2v21.6a3.2 3.2 0 0 1-3.2 3.2H3.2A3.2 3.2 0 0 1 0 24.8V3.2A3.2 3.2 0 0 1 3.2 0Zm19.654 8.46c.603-1.788.612-3.108.246-3.474-.368-.368-1.688-.344-3.491.268.276.602.72 1.251 1.322 1.854.626.625 1.302 1.08 1.923 1.353Zm-.166.466c-.703-.314-1.433-.816-2.096-1.48-.641-.641-1.132-1.344-1.447-2.026-1.568.593-3.444 1.606-5.358 3.15-2.723 2.197-4.575 4.617-5.557 7.26-.14.375-.047.797.235 1.08l2.694 2.693c.292.292.73.38 1.111.223 2.563-1.053 4.965-2.909 7.205-5.567 1.591-1.888 2.619-3.763 3.213-5.333Zm-5.942 2.378a1.76 1.76 0 1 1 2.49-2.49 1.76 1.76 0 0 1-2.49 2.49ZM8.08 14.99c.808-2.01 2.158-3.87 4.051-5.576-.774-.087-1.765.236-2.97.97-1.49.906-2.861 2.144-4.113 3.715a.32.32 0 0 0 .208.516l2.824.375Zm4.96 4.96.374 2.823a.32.32 0 0 0 .516.208c1.57-1.252 2.81-2.622 3.715-4.112.734-1.206 1.057-2.197.97-2.971-1.706 1.893-3.565 3.243-5.575 4.051Zm-3.775 2.189s.142-.122.189-.17a2.403 2.403 0 0 0 .005-3.389h-.001l-.004-.005a2.403 2.403 0 0 0-3.489.099c-.935.99-.702 1.706-.691 1.736a.133.133 0 0 0 .206.063c.007-.005.67-.493 1.136-.19-.246.248-.61.635-.86 1.052-.357.6-.512 1.45-.393 2.165.007.049.043.09.09.105.048.015.1.002.136-.033.44-.44.96-.517 1.562-.606.65-.096 1.388-.204 2.114-.827Zm-.407-2.968c.437.436.453 1.131.036 1.548-.022.022-.044.041-.067.06-.37.316-.73.359-1.077.4-.243.03-.492.06-.72.177.007-.26.073-.524.187-.722.128-.222.319-.42.488-.589.065-.065.059-.177-.014-.25-.222-.223-.495-.224-.719-.153a1.24 1.24 0 0 1 .293-.46c.016-.018.03-.032.045-.046.417-.418 1.112-.402 1.548.035Z"},null,-1),J3=[Q3];function G3(e,t){return P(),S("svg",W3,J3)}const Y3={render:G3},X3={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 20 20"},e5=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M6.05 19.238C7.267 19.745 8.583 20 10 20c1.4 0 2.708-.254 3.925-.762a9.759 9.759 0 0 0 3.175-2.113c.9-.9 1.608-1.958 2.125-3.175.517-1.217.775-2.533.775-3.95 0-1.4-.258-2.708-.775-3.925A9.927 9.927 0 0 0 17.1 2.9 9.927 9.927 0 0 0 13.925.775C12.708.258 11.4 0 10 0 8.583 0 7.267.258 6.05.775A9.927 9.927 0 0 0 2.875 2.9 9.76 9.76 0 0 0 .763 6.075C.254 7.292 0 8.6 0 10c0 1.417.254 2.733.762 3.95a9.76 9.76 0 0 0 2.113 3.175 9.76 9.76 0 0 0 3.175 2.113Zm.332-10.474c.921.454 2.127.68 3.618.68 1.49 0 2.697-.226 3.618-.68C14.54 8.31 15 7.796 15 7.222c0-.583-.46-1.1-1.382-1.548C12.697 5.224 11.491 5 10 5c-1.49 0-2.697.225-3.618.674C5.46 6.123 5 6.639 5 7.222c0 .574.46 1.088 1.382 1.542Zm.104 2.847c.99.407 2.162.611 3.514.611 1.352 0 2.523-.204 3.514-.61.99-.408 1.486-.899 1.486-1.473V8.75c0 .37-.174.688-.52.951-.348.264-.779.48-1.293.646a9.432 9.432 0 0 1-1.631.368c-.574.079-1.093.118-1.556.118-.454 0-.97-.039-1.549-.118a9.013 9.013 0 0 1-1.639-.375c-.513-.171-.944-.389-1.291-.652C5.174 9.424 5 9.11 5 8.75v1.389c0 .574.495 1.065 1.486 1.472Zm0 2.778c.99.407 2.162.611 3.514.611 1.352 0 2.523-.204 3.514-.611.99-.407 1.486-.898 1.486-1.472v-1.39c0 .371-.174.688-.52.952-.348.264-.779.48-1.293.646a9.432 9.432 0 0 1-1.631.368c-.574.079-1.093.118-1.556.118-.454 0-.97-.04-1.549-.118a9.013 9.013 0 0 1-1.639-.375c-.513-.171-.944-.389-1.291-.653S5 11.89 5 11.528v1.389c0 .574.495 1.065 1.486 1.472Z","clip-rule":"evenodd"},null,-1),t5=[e5];function n5(e,t){return P(),S("svg",X3,t5)}const s5={render:n5},r5={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 16 16"},o5=y("path",{fill:"currentColor","fill-rule":"evenodd",d:"M15.2 16H.267a.267.267 0 0 1-.202-.44L6.581 8 .065.44A.267.267 0 0 1 .267 0H15.2c.147 0 .267.12.267.267v4c0 .147-.12.266-.267.266h-1.866a.267.267 0 0 1-.267-.266V2.4H5.63l4.443 5.431c.08.098.08.24 0 .338L5.63 13.6h7.437v-1.867c0-.147.12-.266.267-.266H15.2c.148 0 .267.119.267.266v4c0 .148-.12.267-.267.267Z"},null,-1),i5=[o5];function l5(e,t){return P(),S("svg",r5,i5)}const c5={render:l5},a5={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},u5=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"M13.6 12.15c.217.117.433.13.65.037a.792.792 0 0 0 .45-.487c.1-.283.175-.567.225-.85.05-.283.075-.567.075-.85 0-.633-.12-1.263-.363-1.888A4.754 4.754 0 0 0 13.55 6.45a4.659 4.659 0 0 0-1.637-1.075 5.16 5.16 0 0 0-1.863-.35l.45-.45c.15-.15.22-.325.212-.525a.767.767 0 0 0-.237-.525.72.72 0 0 0-.525-.225.72.72 0 0 0-.525.225L7.375 5.55a.382.382 0 0 0-.125.275c0 .1.042.192.125.275l2.05 2.025a.82.82 0 0 0 .525.213c.2.008.375-.063.525-.213A.72.72 0 0 0 10.7 7.6a.72.72 0 0 0-.225-.525L9.9 6.5a3.9 3.9 0 0 1 1.375.263c.467.175.867.429 1.2.762.333.333.588.717.763 1.15.175.433.262.867.262 1.3 0 .217-.017.425-.05.625s-.092.4-.175.6a.743.743 0 0 0-.037.55c.058.183.179.317.362.4Zm-4.075 4.325a.72.72 0 0 0 .525.225.72.72 0 0 0 .525-.225l2.05-2.025a.382.382 0 0 0 .125-.275c0-.1-.042-.192-.125-.275l-2.05-2.025a.82.82 0 0 0-.525-.213.677.677 0 0 0-.525.213.72.72 0 0 0-.225.525c0 .2.075.375.225.525l.55.55a3.472 3.472 0 0 1-1.363-.225 3.33 3.33 0 0 1-1.187-.775 3.425 3.425 0 0 1-.763-1.15 3.449 3.449 0 0 1-.262-1.3c0-.2.012-.404.038-.613.024-.208.079-.404.162-.587a.783.783 0 0 0 .038-.562.727.727 0 0 0-.363-.413.694.694 0 0 0-.637-.037.804.804 0 0 0-.438.437A5.255 5.255 0 0 0 5 10c0 .633.125 1.258.375 1.875a4.94 4.94 0 0 0 1.1 1.65A4.845 4.845 0 0 0 8.1 14.612c.6.242 1.217.371 1.85.388l-.425.425a.72.72 0 0 0-.225.525c0 .2.075.375.225.525ZM10 20c-1.417 0-2.733-.254-3.95-.763a9.76 9.76 0 0 1-3.175-2.112A9.76 9.76 0 0 1 .762 13.95C.254 12.733 0 11.417 0 10c0-1.4.254-2.708.762-3.925A9.76 9.76 0 0 1 2.875 2.9C3.775 2 4.833 1.292 6.05.775 7.267.258 8.583 0 10 0c1.4 0 2.708.258 3.925.775A9.927 9.927 0 0 1 17.1 2.9c.9.9 1.608 1.958 2.125 3.175C19.742 7.292 20 8.6 20 10c0 1.417-.258 2.733-.775 3.95a9.927 9.927 0 0 1-2.125 3.175 9.76 9.76 0 0 1-3.175 2.112C12.708 19.746 11.4 20 10 20Z"},null,-1),f5=[u5];function d5(e,t){return P(),S("svg",a5,f5)}const h5={render:d5},p5={xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 20 20"},m5=y("path",{fill:"currentColor","fill-rule":"nonzero",d:"m7.325 8.65-2.15-2.125a3.405 3.405 0 0 0-.45 1.7c0 .95.333 1.754 1 2.412.667.659 1.475.988 2.425.988.233 0 .463-.02.687-.063a4.46 4.46 0 0 0 .688-.187l3.625 3.65a.738.738 0 0 0 .513.213.735.735 0 0 0 .537-.188l.8-.75a.7.7 0 0 0 .25-.538.734.734 0 0 0-.225-.537l-3.65-3.65c.083-.233.15-.458.2-.675.05-.217.075-.442.075-.675 0-.967-.342-1.792-1.025-2.475a3.372 3.372 0 0 0-3.325-.9c-.283.083-.558.2-.825.35l2.2 2.175-1.35 1.275ZM10 20c-1.417 0-2.733-.254-3.95-.762a9.76 9.76 0 0 1-3.175-2.113A9.76 9.76 0 0 1 .762 13.95C.254 12.733 0 11.417 0 10c0-1.4.254-2.708.762-3.925A9.76 9.76 0 0 1 2.875 2.9C3.775 2 4.833 1.292 6.05.775 7.267.258 8.583 0 10 0c1.4 0 2.708.258 3.925.775A9.927 9.927 0 0 1 17.1 2.9c.9.9 1.608 1.958 2.125 3.175C19.742 7.292 20 8.6 20 10c0 1.417-.258 2.733-.775 3.95a9.927 9.927 0 0 1-2.125 3.175 9.76 9.76 0 0 1-3.175 2.113C12.708 19.746 11.4 20 10 20Z"},null,-1),g5=[m5];function _5(e,t){return P(),S("svg",p5,g5)}const v5={render:_5},x5={name:"IconComponent",components:{ArrowDiagonalRounded:Ci,ArrowDiagonal:Mi,ArrowRight:Si,ArrowRightRounded:Fi,Average:Di,Burgermenu:Wi,Calendar:Xi,Cancel:rl,CancelRound:al,Check:pl,Clone:xl,Compare:$l,CopyCheck:Zl,DiagramRounded:Ll,Document:kl,Download:Kl,Dropdown:Ql,DropdownRounded:ec,Edit:oc,Filter:uc,Fonts:mc,GearsRounded:bc,Github:Ac,Globe:Pc,Goggles:Ic,HelpCenterRounded:Vc,InfoTooltipRounded:Uc,IssueRounded:Jc,Maximize:n3,Minimize:l3,PinNeedle:d3,QuestionRounded:_3,Refresh:y3,Reload:R3,Rocket:T3,Search:B3,SpeedKitLogo:j3,SpeedKitLogoGradient:z3,SpeedKitLogoSingleColor:Y3,StorageRounded:s5,TotalSum:c5,UpdateRounded:h5,WrenchRounded:v5}},De=ze({...x5,props:{icon:null},setup(e){return(t,n)=>(P(),yt(ao(e.icon)))}}),b5={class:"relative w-sidebar min-h-screen bg-bq-prim-background"},w5={class:"flex flex-col sticky top-[0]"},y5={class:"w-full border-b border-b-bq-table-border flex justify-center items-center py-2"},C5={class:"flex flex-col justify-evenly content-evenly"},$5=ze({__name:"sidebar",setup(e){return(t,n)=>(P(),S("div",b5,[y("div",w5,[y("div",y5,[U(De,{icon:"SpeedKitLogoSingleColor",class:"max-w-full text-bq-prim-font"})]),y("div",C5,[Lt(t.$slots,"default")])])]))}}),A5={class:"text-clamp"},E5=ze({__name:"sidebar-item",props:{title:null,path:null,icon:null,isDisabled:null},emits:["sidebar-item-selected"],setup(e,{emit:t}){function n(s){t("sidebar-item-selected",s)}return(s,r)=>{const o=p0("router-link");return P(),yt(o,{class:it(["relative text-center nav-item-container hover:bg-blue-200 text-bq-prim-font p-2 mb-1 flex flex-col items-center justify-center",{"opacity-60":e.isDisabled&&e.isDisabled()}]),to:e.isDisabled&&e.isDisabled()?{}:{name:e.path},onClick:r[0]||(r[0]=i=>n(e.title))},{default:fe(()=>[e.icon?(P(),yt(De,{key:0,icon:e.icon,class:"text-3xl mb-0.5"},null,8,["icon"])):O1("",!0),y("span",A5,ot(e.title),1)]),_:1},8,["to","class"])}}}),R5=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},M5={},Z5={class:"p-2 bg-bq-prim-background m-2 rounded-xl flex-auto"},P5={key:0,class:"border-b border-bq-sec-border text-xl text-center break-all text-bq-blue"};function O5(e,t){return P(),S("div",Z5,[e.$slots.title?(P(),S("div",P5,[Lt(e.$slots,"title")])):O1("",!0),Lt(e.$slots,"default")])}const $n=R5(M5,[["render",O5]]),T5=["type"],nt=ze({__name:"bq-button",props:{btnType:{default:"button"},sec:{type:Boolean,default:!1}},setup(e){return(t,n)=>(P(),S("button",{class:it(["bg-bq-blue text-white border-bq-blue py-1 px-2 rounded flex justify-center items-center focus:outline-none m-1 transition-transform hover:scale-95",{"bg-bq-sec-background":e.sec}]),type:e.btnType},[Lt(t.$slots,"default",{class:"select-none"})],10,T5))}}),S5={class:"datatable max-w-full w-full"},L5={class:"hover:outline hover:outline-bq-blue-dimmed"},I5=ze({__name:"data-table",props:{head:null,body:null},setup(e){return(t,n)=>(P(),S("table",S5,[y("thead",null,[y("tr",null,[Lt(t.$slots,"thead")])]),y("tbody",null,[(P(!0),S(ve,null,M1(e.body,(s,r)=>(P(),S("tr",L5,[Lt(t.$slots,"default",{index:r,row:s})]))),256))])]))}});const H5={class:"flex flex-wrap content-between"},B5=y("div",{class:"text-left"},"Query",-1),F5={class:"flex"},k5={class:"flex items-center"},V5={class:"text-sm mr-auto"},N5=y("th",{class:"w-2/12"},"params",-1),j5=y("th",{class:"w-1/12"},"pGain",-1),D5=y("th",{class:"w-1/12"},"cUrls",-1),K5=y("th",{class:"w-1/12"},"PIs",-1),U5=y("th",{class:"w-7/12"},"Examples",-1),q5={class:"w-2/12"},z5={readonly:"",rows:"1"},W5={class:"w-1/12"},Q5={class:"w-1/12"},J5={class:"w-1/12"},G5={class:"w-7/12"},Y5={class:"flex relative"},X5=["value","onFocus"],ea=["id"],ta={class:"flex"},na=["value","onFocus"],sa={class:"flex"},ra=["value","onFocus"],oa=ze({__name:"analyse-parameters",setup(e){let t=Ot(null),n=Ot(""),s=!1;const r=async()=>{if(s){console.error("query is currently running");return}s=!0;const h=await fetch("/query/execute",{method:"post",headers:{"Content-Type":"application/json","Access-Control-Allow-Origin":"*"},body:JSON.stringify({query:n.value})});if(!h.ok){const v=`An error has occured: ${h.status} - ${h.statusText}`;throw new Error(v)}const p=await h.json();t.value={head:p[0],body:p},s=!1},o=()=>{window.location.assign("/query/download")},i=h=>{var p;(p=window==null?void 0:window.navigator)!=null&&p.clipboard&&window.navigator.clipboard.writeText(h)},l=async(h,p,v,m)=>{try{const F=await(await fetch("http://skonboarding.local/diff",{method:"post",headers:{"Content-Type":"application/json","Access-Control-Allow-Origin":"*"},body:JSON.stringify({url:v,paramKeys:m})})).json();F.status==="success"&&t.value&&h in t.value.body&&(t.value.body[h][p]=F==null?void 0:F.isIdentical,console.log("updateRow:",{param:t.value.body[h].paramKeys,example:t.value.body[h].example1,isIdentical:F==null?void 0:F.isIdentical}))}catch(E){console.error(E)}},a=Ot([]),d=h=>{a.value[h]&&(console.log(a.value[h]),a.value[h].classList.toggle("hidden"))},u=async()=>{fetch("/query/create").then(h=>h.json()).then(h=>{n.value=h.query})};return E1(async()=>{await u()}),(h,p)=>(P(),S("div",H5,[U($n,{class:"flex-grow min-w-full"},{title:fe(()=>[B5]),default:fe(()=>[co(y("textarea",{class:"w-full p-1",rows:"10",name:"query","onUpdate:modelValue":p[0]||(p[0]=v=>he(n)?n.value=v:n=v)},null,512),[[u2,Re(n)]]),y("div",F5,[U(nt,{class:"mr-auto text-sm",onClick:p[1]||(p[1]=v=>u())},{default:fe(()=>[xt("update query "),U(De,{icon:"Refresh",class:"ml-1"})]),_:1}),U(nt,{class:"mx-auto",onClick:p[2]||(p[2]=v=>r())},{default:fe(()=>[xt("execute query "),U(De,{icon:"Rocket",class:"ml-1"})]),_:1})])]),_:1}),Re(t)?(P(),yt($n,{key:0,class:"flex-grow min-w-full"},{title:fe(()=>[y("div",k5,[xt(" Result "),y("span",V5,"("+ot(Re(t).body.length)+")",1),U(nt,{class:"text-sm ml-auto",onClick:p[3]||(p[3]=v=>o())},{default:fe(()=>[xt("download "),U(De,{icon:"Download",class:"ml-1"})]),_:1})])]),default:fe(()=>[U(I5,{head:Re(t).head,body:Re(t).body},{thead:fe(()=>[N5,j5,D5,K5,U5]),default:fe(({index:v,row:m})=>[y("td",q5,[y("textarea",z5,ot(m==null?void 0:m.paramKeys),1)]),y("td",W5,ot(m==null?void 0:m.potentialGain),1),y("td",Q5,ot(m==null?void 0:m.cachedUrls),1),y("td",J5,ot(m==null?void 0:m.PIs),1),y("td",G5,[y("div",Y5,[y("input",{class:it(["w-full px-1",{identical:(m==null?void 0:m.isIdentical1)===!0,diff:(m==null?void 0:m.isIdentical1)===!1}]),value:m==null?void 0:m.example1,onFocus:E=>i(m==null?void 0:m.example1)},null,42,X5),U(nt,{title:"diff",class:"text-sm",onClick:E=>l(v,"isIdentical1",m==null?void 0:m.example1,m==null?void 0:m.paramKeys)},{default:fe(()=>[U(De,{icon:"Compare"})]),_:2},1032,["onClick"]),U(nt,{title:"show all",class:"text-sm",onClick:E=>d(v)},{default:fe(()=>[U(De,{icon:"Dropdown"})]),_:2},1032,["onClick"])]),y("div",{class:"hidden",id:"examples"+v,ref:E=>a.value.push(E)},[y("div",ta,[y("input",{class:it(["w-full px-1",{identical:(m==null?void 0:m.isIdentical2)===!0,diff:(m==null?void 0:m.isIdentical2)===!1}]),value:m==null?void 0:m.example2,onFocus:E=>i(m==null?void 0:m.example2)},null,42,na),U(nt,{title:"diff",class:"text-sm",onClick:E=>l(v,"isIdentical2",m==null?void 0:m.example2,m==null?void 0:m.paramKeys)},{default:fe(()=>[U(De,{icon:"Compare"})]),_:2},1032,["onClick"])]),y("div",sa,[y("input",{class:it(["w-full px-1",{identical:(m==null?void 0:m.isIdentical3)===!0,diff:(m==null?void 0:m.isIdentical3)===!1}]),value:m==null?void 0:m.example3,onFocus:E=>i(m==null?void 0:m.example3)},null,42,ra),U(nt,{title:"diff",class:"text-sm",onClick:E=>l(v,"isIdentical3",m==null?void 0:m.example3,m==null?void 0:m.paramKeys)},{default:fe(()=>[U(De,{icon:"Compare"})]),_:2},1032,["onClick"])])],8,ea)])]),_:1},8,["head","body"])]),_:1})):O1("",!0)]))}}),ia={class:"flex items-center justify-between"},la=ze({__name:"local-asset-cache",setup(e){let t=Ot([{url:"loading",response:{contentType:"none"}}]);const n=()=>{fetch("/cache/get").then(s=>s.json()).then(s=>{t.value=s})};return(s,r)=>(P(),S(ve,null,[U($n,null,{default:fe(()=>[y("fieldset",ia,[U(nt,{"btn-type":"button",class:"mr-4",onClick:r[0]||(r[0]=o=>n())},{default:fe(()=>[xt("get cached assets "),U(De,{icon:"Refresh",class:"ml-1"})]),_:1})])]),_:1}),U($n,{class:"flex-grow min-w-full"},{title:fe(()=>[xt(" Asset Cache ")]),default:fe(()=>[(P(!0),S(ve,null,M1(Re(t),({url:o,response:i})=>(P(),S("div",{key:o},ot(o)+" ("+ot(i==null?void 0:i.contentType)+") ",1))),128))]),_:1})],64))}}),N0=[{path:"",name:"params",component:oa,title:"params",icon:"Search"},{path:"",name:"asset-cache",component:la,title:"asset cache",icon:"Document"}],ca={class:"bg-bq-sec-background relative"},aa={class:"min-h-screen max-w-full flex content-between bg-bq-sec-background text-bq-prim-font"},ua={id:"contentContainer",class:"content-height p-4 w-full max-w-[calc(100% - clamp(50px,80px,130px))] overflow-hidden","data-content-container":""},fa=ze({__name:"default",setup(e){return(t,n)=>{const s=p0("router-view");return P(),S("main",ca,[y("div",aa,[U($5,null,{default:fe(()=>[(P(!0),S(ve,null,M1(Re(N0),r=>(P(),yt(E5,{path:r.name,title:r.title||r.name,icon:r.icon,"is-disabled":r.isDisabled},null,8,["path","title","icon","is-disabled"]))),256))]),_:1}),y("div",ua,[U(s)])])])}}}),da=_2(),ha=_i({history:S2(),routes:[{path:"/",children:N0}]}),I1=h2(fa);I1.use(da);I1.use(ha);I1.mount("#app");
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
-
<title>Speedkit Devtools</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/main-215271c2.js"></script>
|
|
10
|
-
<link rel="stylesheet" href="/assets/index-e3bd4f6e.css">
|
|
11
|
-
</head>
|
|
12
|
-
|
|
13
|
-
<body>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
|
|
16
|
-
</body>
|
|
17
|
-
|
|
18
|
-
</html>
|