From ad438651554c4e2a20c36817b2f42426b7d6f870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=8D=8E=E6=98=A5?= Date: Sun, 16 Jul 2023 11:27:27 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=BC=94=E7=A4=BA?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ide/src/main.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/ide/src/main.ts b/packages/ide/src/main.ts index ad0b1b9f5..253f1cfb4 100644 --- a/packages/ide/src/main.ts +++ b/packages/ide/src/main.ts @@ -21,7 +21,10 @@ const modules = isDev const options = isDev || idDemo ? undefined : await ideConfig(); const provider = await createProvider({ service: idDemo ? 'storage' : 'file', - project: isDev || idDemo ? ({ home: '/startup' } as any) : undefined, + project: + isDev || idDemo + ? ({ home: '/startup', name: '项目样例' } as any) + : undefined, ...options, app, modules, -- Gitee From 2b2f80a6dcc2ad900c2167de2aac33165c0da4ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=8D=8E=E6=98=A5?= Date: Fri, 21 Jul 2023 17:56:26 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/package.json | 5 +- dev/src/api/index.ts | 1 + dev/src/api/lcdp.ts | 5 + dev/src/router/routes/lcdp.ts | 8 + dev/src/views/lcdp/engine/coder.vue | 181 ++++ dev/src/views/lcdp/engine/template.vue | 97 ++ dev/src/views/lcdp/engine/test.vue | 103 +++ dev/vite.config.ts | 3 +- packages/boot/src/api/index.ts | 2 +- packages/boot/src/api/vtj.ts | 5 + packages/boot/src/router/routes.ts | 2 + packages/boot/src/router/vtj.ts | 1 + packages/cli/package.json | 16 +- packages/cli/src/helpers/createViteConfig.ts | 3 +- packages/cli/src/helpers/types.ts | 2 + packages/engine/src/coder/Collecter.ts | 3 + packages/engine/src/coder/dsl.ts | 38 - packages/engine/src/coder/index.ts | 24 +- packages/engine/src/coder/template.ts | 79 +- .../engine/src/coder/{parser.ts => tokens.ts} | 489 +++++----- packages/engine/src/core/Assets.ts | 13 +- packages/engine/src/core/built-in.ts | 5 + packages/engine/src/core/emitter.ts | 2 + packages/engine/src/hooks/useBinder.ts | 2 +- packages/engine/src/models/Project.ts | 5 + packages/engine/src/renderer/block.ts | 2 +- packages/engine/src/renderer/context.ts | 4 +- packages/engine/src/runtime.ts | 7 +- packages/engine/src/views/widgets/Actions.vue | 54 +- packages/ide/src/views/index.vue | 41 +- packages/runtime/src/Provider.ts | 46 +- .../runtime/src/components/MaskContainer.ts | 1 + .../runtime/src/components/PageContainer.ts | 4 +- packages/runtime/src/hooks/useMask.ts | 6 +- packages/runtime/src/shared.ts | 6 +- packages/ui/src/components/shared.ts | 1 + .../src/components/simple-mask/SimpleMask.vue | 3 +- pnpm-lock.yaml | 851 +++++++++--------- 38 files changed, 1337 insertions(+), 783 deletions(-) create mode 100644 dev/src/api/lcdp.ts create mode 100644 dev/src/views/lcdp/engine/coder.vue create mode 100644 dev/src/views/lcdp/engine/template.vue create mode 100644 dev/src/views/lcdp/engine/test.vue create mode 100644 packages/boot/src/api/vtj.ts create mode 100644 packages/boot/src/router/vtj.ts create mode 100644 packages/engine/src/coder/Collecter.ts delete mode 100644 packages/engine/src/coder/dsl.ts rename packages/engine/src/coder/{parser.ts => tokens.ts} (34%) diff --git a/dev/package.json b/dev/package.json index 68d5d1751..cf5054480 100644 --- a/dev/package.json +++ b/dev/package.json @@ -21,7 +21,8 @@ "@vtj/engine": "workspace:*", "@vtj/icons": "workspace:*", "@vtj/ui": "workspace:*", - "@vtj/utils": "workspace:*" + "@vtj/utils": "workspace:*", + "@vtj/runtime": "workspace:*" }, "devDependencies": { "@vtj/cli": "workspace:*" @@ -30,4 +31,4 @@ "author": "陈华春 ", "homepage": "", "license": "ISC" -} +} \ No newline at end of file diff --git a/dev/src/api/index.ts b/dev/src/api/index.ts index 5f2365a2c..fe1bd329f 100644 --- a/dev/src/api/index.ts +++ b/dev/src/api/index.ts @@ -1 +1,2 @@ +export * from './lcdp'; export * from './sys'; diff --git a/dev/src/api/lcdp.ts b/dev/src/api/lcdp.ts new file mode 100644 index 000000000..b04fdf54d --- /dev/null +++ b/dev/src/api/lcdp.ts @@ -0,0 +1,5 @@ +import { createApi } from '@vtj/utils'; + +export const testApi = createApi({ + url: '/' +}); diff --git a/dev/src/router/routes/lcdp.ts b/dev/src/router/routes/lcdp.ts index 350414996..764979058 100644 --- a/dev/src/router/routes/lcdp.ts +++ b/dev/src/router/routes/lcdp.ts @@ -2,5 +2,13 @@ export const lcdp = [ { path: '/lcdp/engine', component: () => import('@/views/lcdp/engine/index.vue') + }, + { + path: '/lcdp/coder', + component: () => import('@/views/lcdp/engine/coder.vue') + }, + { + path: '/lcdp/template', + component: () => import('@/views/lcdp/engine/template.vue') } ]; diff --git a/dev/src/views/lcdp/engine/coder.vue b/dev/src/views/lcdp/engine/coder.vue new file mode 100644 index 000000000..4a0cf36c1 --- /dev/null +++ b/dev/src/views/lcdp/engine/coder.vue @@ -0,0 +1,181 @@ + + diff --git a/dev/src/views/lcdp/engine/template.vue b/dev/src/views/lcdp/engine/template.vue new file mode 100644 index 000000000..3c1848280 --- /dev/null +++ b/dev/src/views/lcdp/engine/template.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/dev/src/views/lcdp/engine/test.vue b/dev/src/views/lcdp/engine/test.vue new file mode 100644 index 000000000..adfd86bc7 --- /dev/null +++ b/dev/src/views/lcdp/engine/test.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/dev/vite.config.ts b/dev/vite.config.ts index 6ca5c5e58..cba4dc1d0 100644 --- a/dev/vite.config.ts +++ b/dev/vite.config.ts @@ -17,7 +17,8 @@ const alias = '@vtj/icons/lib/style.css': join(packagesPath, 'icons/src/style.scss'), '@vtj/ui': join(packagesPath, 'ui/src'), '@vtj/icons': join(packagesPath, 'icons/src'), - '@vtj/engine': join(packagesPath, 'engine/src') + '@vtj/engine': join(packagesPath, 'engine/src'), + '@vtj/runtime': join(packagesPath, 'runtime/src') } : undefined; diff --git a/packages/boot/src/api/index.ts b/packages/boot/src/api/index.ts index cb0ff5c3b..8331bbf1f 100644 --- a/packages/boot/src/api/index.ts +++ b/packages/boot/src/api/index.ts @@ -1 +1 @@ -export {}; +export * from './vtj'; diff --git a/packages/boot/src/api/vtj.ts b/packages/boot/src/api/vtj.ts new file mode 100644 index 000000000..63ad77417 --- /dev/null +++ b/packages/boot/src/api/vtj.ts @@ -0,0 +1,5 @@ +import { createApi } from '@vtj/utils'; + +export const testApi = createApi({ + url: '/api/user' +}); diff --git a/packages/boot/src/router/routes.ts b/packages/boot/src/router/routes.ts index a523a7342..d19f2f573 100644 --- a/packages/boot/src/router/routes.ts +++ b/packages/boot/src/router/routes.ts @@ -1,4 +1,6 @@ +import { vtj } from './vtj'; export const routes = [ + ...vtj, { path: '/:pathMatch(.*)*', name: 'NotFound', diff --git a/packages/boot/src/router/vtj.ts b/packages/boot/src/router/vtj.ts new file mode 100644 index 000000000..9d3aae97b --- /dev/null +++ b/packages/boot/src/router/vtj.ts @@ -0,0 +1 @@ +export const vtj = []; diff --git a/packages/cli/package.json b/packages/cli/package.json index 761feb775..de983d472 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -15,13 +15,13 @@ "node": ">=16.0.0" }, "dependencies": { - "@babel/core": "7.22.8", - "@babel/preset-env": "7.22.7", + "@babel/core": "7.22.9", + "@babel/preset-env": "7.22.9", "@babel/types": "7.22.5", "@rollup/plugin-babel": "6.0.3", "@types/fs-extra": "11.0.1", "@types/jsdom": "21.1.1", - "@types/node": "20.4.1", + "@types/node": "20.4.2", "@types/serve-static": "1.15.2", "@vitejs/plugin-basic-ssl": "1.0.1", "@vitejs/plugin-legacy": "4.1.0", @@ -37,13 +37,13 @@ "rollup-plugin-visualizer": "5.9.2", "sass": "1.63.6", "serve-static": "1.15.0", - "terser": "5.19.0", + "terser": "5.19.1", "typescript": "5.1.6", "unplugin-element-plus": "0.7.2", - "vite": "4.4.3", - "vite-plugin-dts": "3.2.0", + "vite": "4.4.4", + "vite-plugin-dts": "3.3.1", "vitest": "0.33.0", - "vue-tsc": "1.8.4" + "vue-tsc": "1.8.5" }, "devDependencies": { "@types/babel__core": "7.20.1", @@ -66,4 +66,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file diff --git a/packages/cli/src/helpers/createViteConfig.ts b/packages/cli/src/helpers/createViteConfig.ts index 127dcd519..98022e8be 100644 --- a/packages/cli/src/helpers/createViteConfig.ts +++ b/packages/cli/src/helpers/createViteConfig.ts @@ -36,6 +36,7 @@ const defaults: IOptions = { previewPort: 3010, targets: ['chrome > 40'], dtsOutputDir: 'types', + dtsCleanVueFileName: true, envType: 'local', lib: false, entry: 'src/index.ts', @@ -138,7 +139,7 @@ const mergePlugins = (options: IOptions) => { // outputDir: options.dtsOutputDir, outDir: options.dtsOutputDir, staticImport: true, - cleanVueFileName: true + cleanVueFileName: options.dtsCleanVueFileName // skipDiagnostics: false }) as PluginOption ); diff --git a/packages/cli/src/helpers/types.ts b/packages/cli/src/helpers/types.ts index 9696c734f..843b8aeef 100644 --- a/packages/cli/src/helpers/types.ts +++ b/packages/cli/src/helpers/types.ts @@ -84,6 +84,8 @@ export interface IOptions { */ dtsOutputDir?: string; + dtsCleanVueFileName?: boolean; + /** * 环境变量配置 */ diff --git a/packages/engine/src/coder/Collecter.ts b/packages/engine/src/coder/Collecter.ts new file mode 100644 index 000000000..b278ea745 --- /dev/null +++ b/packages/engine/src/coder/Collecter.ts @@ -0,0 +1,3 @@ +export class Collecter { + constructor() {} +} diff --git a/packages/engine/src/coder/dsl.ts b/packages/engine/src/coder/dsl.ts deleted file mode 100644 index 97b91d56a..000000000 --- a/packages/engine/src/coder/dsl.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { BlockSchema } from '../core'; -import { compiled } from './template'; - -import { schemaParser } from './parser'; -import { tsFormatter, htmlFormatter, cssFormatter } from './formatters'; - -export interface IDslOptions { - ts?: boolean; - scss?: boolean; - scoped?: boolean; -} - -export function dsl(schema: BlockSchema, options?: IDslOptions) { - const opts = { - ts: true, - scss: true, - scoped: true, - ...options - }; - const tokens = schemaParser(schema); - const source = compiled(tokens); - const template = htmlFormatter(tokens.template); - const css = cssFormatter(tokens.css); - const script = tsFormatter(source); - - const scriptLang = opts.ts ? 'lang="ts"' : ''; - const styleLang = opts.scss ? 'lang="scss"' : 'lang="css"'; - const styleScoped = opts.scoped ? 'scoped' : ''; - const vue = htmlFormatter(` - - - - `); - - console.log(vue); -} diff --git a/packages/engine/src/coder/index.ts b/packages/engine/src/coder/index.ts index 3eb0e6ab8..3e8a97913 100644 --- a/packages/engine/src/coder/index.ts +++ b/packages/engine/src/coder/index.ts @@ -1,2 +1,22 @@ -export * from './parser'; -export * from './dsl'; +import { BlockSchema, Assets } from '../core'; +import { compiled } from './template'; +import { parser } from './tokens'; +import { tsFormatter, htmlFormatter, cssFormatter } from './formatters'; + +export function coder(dsl: BlockSchema, assets: Assets) { + const tokens = parser(dsl, assets); + const source = compiled(tokens); + return htmlFormatter(` + + + + `); +} + +export function vueCoder() {} + +export function routeCoder() {} + +export function apiCoder() {} diff --git a/packages/engine/src/coder/template.ts b/packages/engine/src/coder/template.ts index 87ccb86dc..0f70b930f 100644 --- a/packages/engine/src/coder/template.ts +++ b/packages/engine/src/coder/template.ts @@ -1,50 +1,41 @@ import { template } from '@vtj/utils'; -const content = ` -import { <%= vueImports %> } from 'vue'; -import { Context, ContextMode } from '@vtj/engine'; -<%= imports %> -export interface Props { - <%= Props %> -} - -const props = withDefaults(defineProps(), { <%= propsDefault %> }); - -const vtj = new Context({ - mode: ContextMode.RAW, - dsl: { id: '<%= id %>', name: '<%= name %>' }, - attrs: { <%= importItems %> } -}); - -const state = reactive({ - <%= state %> -}); - -<%= computedValues %> - -<%= methodsValues %> - -<%= injectValues %> - +const blockTsContent = ` +<%= imports %> - -vtj.setup({props, state <%= injectNames %> <%= computedNames %> <%= methodsNames %>}) - - -<%= watch %> - -<%= lifeCycles %> - -defineOptions({ - name: '<%= name %>' -}); - -defineEmits([<%= emits %>]); - -defineExpose({ - vtj +export default defineComponent({ + name: '<%= name %>', + inject: { + <%= inject %> + }, + components: { + <%= components %> + }, + props: { + <%= props %> + }, + emits: [<%= emits %>], + expose: [<%= expose %>], + setup(props) { + const instance = getCurrentInstance(); + const state = reactive({ <%= state %> }); + return { + state, + props, + vtj: instance?.proxy as ComponentPublicInstance + }; + }, + computed: { + <%= computed %> + }, + watch: { + <%= watch %> + }, + methods: { + <%= methods %> + } + <%= lifeCycles %> }); - `; -export const compiled = template(content); +export const compiled = template(blockTsContent); diff --git a/packages/engine/src/coder/parser.ts b/packages/engine/src/coder/tokens.ts similarity index 34% rename from packages/engine/src/coder/parser.ts rename to packages/engine/src/coder/tokens.ts index 4c316bde7..4b52ab29c 100644 --- a/packages/engine/src/coder/parser.ts +++ b/packages/engine/src/coder/tokens.ts @@ -1,20 +1,21 @@ import { BlockSchema, - DefineProps, - JSFunction, - JSExpression, StateSchema, + JSExpression, + JSFunction, + DefineProps, + PropDataType, + InjectSchema, WatchSchema, NodeSchema, - InjectSchema, - NodeChildrenSchema, PropsSchema, - NodeSlotSchema, - NodeDirectiveSchema, NodeEventSchema, NodeEventsSchema, - ComponentsSchema, - UtilsSchema + NodeChildrenSchema, + NodeDirectiveSchema, + NodeSlotSchema, + Assets, + DataSourceSchema } from '../core'; import { isJSFunction, @@ -23,69 +24,51 @@ import { isPlainObject, getModifiers, toTsType, - getDiretives + getDiretives, + dedupArray } from '../utils'; -export interface ICodeToken { - id: string; - name: string; - template: string; - Props: string; - propsDefault: string; - state: string; - computedValues: string; - computedNames: string; - methodsValues: string; - methodsNames: string; - injectValues: string; - injectNames: string; - watch: string; - lifeCycles: string; - emits: string; - css: string; - vueImports: string; - imports: string; - importItems: string; +function replaceComputedValue(content: string, keys: string[] = []) { + let result = content; + for (const key of keys) { + result = result.replaceAll(`this.${key}.value`, `this.${key}`); + } + return result; +} + +function replaceFunctionTag(content: string) { + let handler: string = content.trim(); + if (handler.startsWith('function')) { + handler = handler.replace('function', ''); + } else { + handler = handler.replace(/() \=\>/, ''); + } + return handler; +} + +function replaceThis(content: string) { + return content.replaceAll('this.', ''); } -function parseValue(val: any, stringify: boolean = true) { - const value = isJSExpression(val) +function parseValue(val: unknown, stringify: boolean = true) { + return isJSExpression(val) ? `${(val as JSExpression).value}` : isJSFunction(val) ? (val as JSFunction).value : stringify ? JSON.stringify(val) : val; - return replaceContext(value); } -function replaceContext(val: string) { - return val.replace(/this.context./g, '').replace(/this./g, ''); -} - -function parseProps(props: DefineProps = []) { - const res = props.map((n) => { - return typeof n === 'string' - ? { - name: n - } - : n; - }); - const Props: string[] = res.map((n) => { - return `${n.name}${n.required ? '' : '?'}: ${ - n.type ? toTsType(n.type) : 'any' - }`; +function parseFunctionMap( + map: Record = {}, + computedKeys: string[] = [] +) { + return Object.entries(map).map(([name, val]) => { + let handler = replaceFunctionTag(parseValue(val) as string); + handler = replaceComputedValue(handler, computedKeys); + return `${name}${handler}`; }); - const defaults = res - .filter((n) => n.default !== undefined) - .map((n) => { - const value = parseValue(n.default); - return `${n.name}: ${value}`; - }); - return { - Props, - defaults - }; } function parseState(state: StateSchema = {}) { @@ -95,68 +78,106 @@ function parseState(state: StateSchema = {}) { }); } -function parseComputed(computed: Record = {}) { - const names: string[] = []; - const values = Object.entries(computed).map(([name, val]) => { - const value = parseValue(val); - names.push(name); - return `const ${name} = computed(${value})`; - }); - return { - names, - values +function parseProps(props: DefineProps = []) { + const toTypes = (type?: PropDataType | PropDataType[]) => { + if (!type) return undefined; + const types = Array.isArray(type) ? type : [type]; + const _types = types.map((n) => { + return n.replace(/\'|\"/gi, ''); + }); + return `[${_types.join(',')}]`; }; + + return props.map((prop) => { + if (typeof prop === 'string') { + return `${prop}: {}`; + } else { + return `${prop.name}: { + type:${toTypes(prop.type)}, + required: ${prop.required}, + default: ${parseValue(prop.default)} + }`; + } + }); } -function parseMethods(methods: Record = {}) { - const names: string[] = []; - const values = Object.entries(methods).map(([name, val]) => { - names.push(name); - const value = parseValue(val); - return `const ${name} = ${value}`; +function parseInject(inject: InjectSchema[] = []) { + return inject.map((n) => { + return `${n.name}: { + from: '${n.from}', + default: ${parseValue(n.default)} + }`; }); - return { - names, - values - }; } -function parseWatch(watches: WatchSchema[] = []) { - return watches.map((n) => { - return `watch(${parseValue(n.source)}, - ${parseValue(n.handler)}, - { - deep:${parseValue(!!n.deep)}, - immediate:${parseValue(!!n.immediate)} - })`; +function parseEmits(emits: string[] = []) { + return emits.map((n) => { + return `'${n}'`; }); } -function parseLifeCycles(lifeCycles: Record = {}) { - const names: string[] = []; - const value = Object.entries(lifeCycles).map(([key, val]) => { - const name = `on${upperFirstCamelCase(key)}`; - const value = parseValue(val); - names.push(name); - return `${name}(${value})`; +function parseWatch(watch: WatchSchema[] = [], computedKeys: string[] = []) { + const watchers = watch.reduce((prev, current) => { + if (current.id && isJSFunction(current.source)) { + prev[`watcher_${current.id}`] = current.source; + } + return prev; + }, {} as Record); + const computed = parseFunctionMap(watchers, computedKeys); + + const watches = watch.map((n) => { + return `watcher_${n.id}: { + deep: ${n.deep}, + immediate:${n.immediate}, + handler${replaceFunctionTag(n.handler.value)} + }`; }); return { - names, - value + computed, + watches }; } -function parseInject(injects: InjectSchema[]) { - const names: string[] = []; - const values = injects.map((n) => { - names.push(n.name); - const key = n.from ? parseValue(n.from) : JSON.stringify(n.name); - const defaultValue = parseValue(n.default ?? null); - return `const ${n.name} = inject(${key}, ${defaultValue})`; - }); +function parseTemplate( + children: NodeSchema[] = [], + computedKeys: string[] = [] +) { + const nodes: string[] = []; + let methods: Record = {}; + let components: string[] = []; + for (let child of children) { + const { id, name, invisible, slot } = child; + if (invisible) { + continue; + } + components.push(name); + const props = bindNodeProps(child.props).join(' '); + const { binders, handlers } = bindNodeEvents(id || name, child.events); + const events = binders.join(' '); + Object.assign(methods, handlers); + const directives = parseDirectives(child.directives).join(' '); + const nodeChildren = parseNodeChildren(child.children, computedKeys); + let childContent = ''; + if (typeof nodeChildren === 'string') { + childContent = nodeChildren; + } else { + childContent = (nodeChildren?.nodes || []).join('\n'); + Object.assign(methods, nodeChildren?.methods || {}); + components = components.concat(nodeChildren?.components || []); + } + + const node = wrapSlot( + slot, + `<${name} ${directives} ${props} ${events}> + ${childContent} + ` + ); + nodes.push(node); + } return { - names, - values + nodes, + methods, + components: dedupArray(components) as string[] }; } @@ -180,33 +201,53 @@ function bindProp(name: string, value: unknown) { } } -function bindEvent(name: string, value: NodeEventSchema) { - const modifiers = getModifiers(value.modifiers, true); - return `@${name}${modifiers}="${parseValue(value.handler)}"`; +function bindNodeProps(props: PropsSchema = {}) { + return Object.entries(props).map(([name, value]) => { + return bindProp(name, value); + }); } -function bindNodeEvents(events: NodeEventsSchema = {}) { - return Object.entries(events).map(([name, value]) => { - return bindEvent(name, value); - }); +function bindEvent( + id: string, + name: string, + value: NodeEventSchema, + binder: string +) { + const modifiers = getModifiers(value.modifiers, true); + return `@${name}${modifiers.join('')}="${binder}"`; } -function bindNodeProps(props: PropsSchema = {}) { - return Object.entries(props).map(([name, value]) => { - return bindProp(name, value); +function bindNodeEvents(id: string, events: NodeEventsSchema = {}) { + const handlers: Record = {}; + const binders = Object.entries(events).map(([name, value]) => { + const binder = `${name}_handler_${id}`; + handlers[binder] = value.handler; + return bindEvent(id, name, value, binder); }); + return { + binders, + handlers + }; } -function wrapSlot(slot: string | NodeSlotSchema | undefined, content: string) { - if (!slot) return content; - const realSlot = - typeof slot === 'string' - ? { name: slot, params: [] } - : { params: [], ...slot }; - const slotString = `#${realSlot.name}="${ - realSlot.params?.length > 0 ? `{${realSlot.params?.join(',')}}` : 'scope' - }"`; - return ``; +function parseNodeChildren( + children?: NodeChildrenSchema, + computedKeys: string[] = [] +) { + if (!children) return ''; + if (typeof children === 'string') { + return children; + } + if (isJSExpression(children)) { + let content = parseValue(children) as string; + content = replaceComputedValue(content, computedKeys); + content = replaceThis(content); + return `{{ ${content} }}`; + } + + if (Array.isArray(children)) { + return parseTemplate(children, computedKeys); + } } function parseDirectives(directives: NodeDirectiveSchema[] = []) { @@ -237,105 +278,121 @@ function parseDirectives(directives: NodeDirectiveSchema[] = []) { return result; } -function parseTemplate(children: NodeSchema[] = []) { - const result: string[] = []; - for (let child of children) { - const { name, invisible, slot } = child; - if (invisible) { - continue; - } - const props = bindNodeProps(child.props).join(' '); - const events = bindNodeEvents(child.events).join(' '); - const directives = parseDirectives(child.directives).join(' '); - const node = wrapSlot( - slot, - `<${name} ${directives} ${props} ${events}> - ${parseNodeChildren(child.children)} - ` - ); - result.push(node); - } - return result; +function wrapSlot(slot: string | NodeSlotSchema | undefined, content: string) { + if (!slot) return content; + const realSlot = + typeof slot === 'string' + ? { name: slot, params: [] } + : { params: [], ...slot }; + const slotString = `#${realSlot.name}="${ + realSlot.params?.length > 0 ? `{${realSlot.params?.join(',')}}` : 'scope' + }"`; + return ``; } -function parseNodeChildren(children?: NodeChildrenSchema) { - if (!children) return ''; - if (typeof children === 'string') { - return children; - } - if (isJSExpression(children)) { - return `{{ ${parseValue(children)} }}`; +function parseImports( + assets: Assets, + components: string[] = [], + dataSources: Record = {} +) { + const { componentMap, project } = assets; + const imports: Record = { + vue: [ + 'defineComponent', + 'reactive', + 'getCurrentInstance', + 'ComponentPublicInstance' + ] + }; + + for (const name of components) { + const desc = componentMap[name]; + if (desc && desc.package) { + const items = imports[desc.package] ?? (imports[desc.package] = []); + items.push(name); + } } - if (Array.isArray(children)) { - return parseTemplate(children).join('\n'); + for (const item of Object.values(dataSources)) { + const apis = imports['@/api'] ?? (imports['@/api'] = []); + apis.push(item.detail); } + + return Object.entries(imports) + .filter(([name, values]) => !!values.length) + .map(([name, values]) => { + return `import { ${(dedupArray(values) as string[]).join( + ',' + )}} from '${name}'`; + }); } -function parseImports(schema: BlockSchema) { - // todo: 分析 schema 生成引用 components, utils - const imports: string[] = []; - let items: string[] = []; - // Object.entries({ ...components, ...utils }).forEach(([name, value]) => { - // if (value.length > 0) { - // imports.push(`import {${value.join(',')}} from '${name}';`); - // items = items.concat(value); - // } - // }); - return { - imports, - items - }; +function parseDataSources(dataSources: Record = {}) { + return Object.values(dataSources).map((item) => { + const transform = isJSFunction(item.transform) + ? item.transform.value || `(res) => res` + : `(res) => res`; + return `async ${item.name}(...args:any[]) { + return await ${item.detail}.call(this, ...args).then(${transform}); + }`; + }); } -export function schemaParser(schema: BlockSchema): ICodeToken { - const vueImports = new Set(['reactive']); - const { id = '', name = '', css = '', emits = [] } = schema; - const { Props, defaults } = parseProps(schema.props); - const state = parseState(schema.state); - const computed = parseComputed(schema.computed); - const methods = parseMethods(schema.methods); - const injects = parseInject(schema.inject ?? []); - const watches = parseWatch(schema.watch ?? []); - const lifeCycles = parseLifeCycles(schema.lifeCycles ?? {}); - const nodes = parseTemplate(schema.children ?? []); - - const { imports, items: importItems } = parseImports(schema); - - if (computed.names.length > 0) { - vueImports.add('computed'); - } - if (watches.length > 0) { - vueImports.add('watch'); - } - if (injects.names.length > 0) { - vueImports.add('inject'); - } +export interface Tokens { + name: string; + state: string; + inject: string; + props: string; + emits: string; + expose: string; + computed: string; + watch: string; + methods: string; + lifeCycles: string; + template: string; + css: string; + imports: string; + components: string; +} - lifeCycles.names.forEach((n) => { - vueImports.add(n); - }); +export function parser(dsl: BlockSchema, assets: Assets) { + const tokens = {} as Tokens; + const computedKeys = Object.keys(dsl.computed || {}); + const lifeCycles = parseFunctionMap(dsl.lifeCycles, computedKeys); + const computed = parseFunctionMap(dsl.computed, computedKeys); + const watch = parseWatch(dsl.watch, computedKeys); + const dataSources = parseDataSources(dsl.dataSources); - return { - id, - name, - css, - emits: emits.join(','), - Props: Props.join(','), - propsDefault: defaults.join(','), - state: state.join(','), - computedValues: computed.values.join('\n'), - computedNames: - computed.names.length > 0 ? ',' + computed.names.join(',') : '', - methodsValues: methods.values.join('\n'), - methodsNames: methods.names.length > 0 ? ',' + methods.names.join(',') : '', - injectValues: injects.values.join('\n'), - injectNames: injects.names.length > 0 ? ',' + injects.names.join(',') : '', - watch: watches.join('\n'), - lifeCycles: lifeCycles.value.join('\n'), - template: nodes.join('\n'), - vueImports: Array.from(vueImports).join(','), - imports: imports.join('\n'), - importItems: importItems.join(',') - }; + const { methods, nodes, components } = parseTemplate( + dsl.children, + computedKeys + ); + const mergeComputed = [...computed, ...watch.computed]; + + const mergeMethods = parseFunctionMap( + { + ...methods, + ...(dsl.methods || {}) + }, + computedKeys + ); + + const imports = parseImports(assets, components, dsl.dataSources || {}); + + tokens.name = dsl.name; + tokens.state = parseState(dsl.state).join(','); + tokens.inject = parseInject(dsl.inject).join(','); + tokens.props = parseProps(dsl.props).join(','); + tokens.emits = parseEmits(dsl.emits).join(','); + tokens.expose = `'vtj'`; + tokens.computed = mergeComputed.join(','); + tokens.watch = watch.watches.join(','); + tokens.methods = [...dataSources, ...mergeMethods].join(','); + tokens.lifeCycles = lifeCycles.length ? ',' + lifeCycles.join(',') : ''; + tokens.template = nodes.join('\n'); + tokens.css = dsl.css || ''; + tokens.imports = imports.join('\n'); + tokens.components = components.join(','); + + return tokens; } diff --git a/packages/engine/src/core/Assets.ts b/packages/engine/src/core/Assets.ts index 83ceb76cf..a144e53df 100644 --- a/packages/engine/src/core/Assets.ts +++ b/packages/engine/src/core/Assets.ts @@ -1,4 +1,10 @@ -import { watch, WatchStopHandle, ShallowReactive, computed } from 'vue'; +import { + watch, + WatchStopHandle, + ShallowReactive, + computed, + ComputedRef +} from 'vue'; import { jsonp } from '@vtj/utils'; import { Dependencie, @@ -31,7 +37,10 @@ export class Assets { componentMap: Record = {}; componentGroups: IComponentGroup[] = []; public isReady: boolean = false; - constructor(public service: Service, project?: ShallowReactive) { + constructor( + public service: Service, + public project?: ShallowReactive + ) { if (project) { this.unwatch = watch(project.dependencies, (v) => this.load(v), { deep: true diff --git a/packages/engine/src/core/built-in.ts b/packages/engine/src/core/built-in.ts index a42e0bbca..bb9276e92 100644 --- a/packages/engine/src/core/built-in.ts +++ b/packages/engine/src/core/built-in.ts @@ -50,6 +50,7 @@ export const builtInComponents: ComponentDescription[] = [ name: 'Transition', title: '过渡效果', categoryId: 'components', + package: 'vue', doc: 'https://cn.vuejs.org/api/built-in-components.html#transition', props: [ { @@ -172,6 +173,7 @@ export const builtInComponents: ComponentDescription[] = [ { name: 'TransitionGroup', title: '过渡效果组', + package: 'vue', categoryId: 'components', doc: 'https://cn.vuejs.org/api/built-in-components.html#transitiongroup', props: [ @@ -301,6 +303,7 @@ export const builtInComponents: ComponentDescription[] = [ { name: 'KeepAlive', title: '缓存切换组件', + package: 'vue', categoryId: 'components', doc: 'https://cn.vuejs.org/api/built-in-components.html#keepalive', props: [ @@ -327,6 +330,7 @@ export const builtInComponents: ComponentDescription[] = [ { name: 'Teleport', title: '传送组件', + package: 'vue', categoryId: 'components', doc: 'https://cn.vuejs.org/api/built-in-components.html#teleport', props: [ @@ -348,6 +352,7 @@ export const builtInComponents: ComponentDescription[] = [ { name: 'Suspense', title: '异步依赖', + package: 'vue', categoryId: 'components', doc: 'https://cn.vuejs.org/api/built-in-components.html#suspense', props: [ diff --git a/packages/engine/src/core/emitter.ts b/packages/engine/src/core/emitter.ts index e41d20f18..802b0109d 100644 --- a/packages/engine/src/core/emitter.ts +++ b/packages/engine/src/core/emitter.ts @@ -86,6 +86,8 @@ export const EVENT_OUTLINE_CHANGE = 'EVENT_OUTLINE_CHANGE'; export const EVENT_DESIGNER_ACTIVE_CHANGE = 'EVENT_DESIGNER_ACTIVE_CHANGE'; export const EVENT_ACTION_PREVIEW = 'EVENT_ACTION_PREVIEW'; +export const EVENT_ACTION_HOME = 'EVENT_ACTION_HOME'; +export const EVENT_ACTION_CODER = 'EVENT_ACTION_CODER'; export const EVENT_HISTORY_GO = 'EVENT_HISTORY_GO'; export const EVENT_HISTORY_BACK = 'EVENT_HISTORY_BACK'; diff --git a/packages/engine/src/hooks/useBinder.ts b/packages/engine/src/hooks/useBinder.ts index bb72f5d2b..657728591 100644 --- a/packages/engine/src/hooks/useBinder.ts +++ b/packages/engine/src/hooks/useBinder.ts @@ -37,7 +37,7 @@ export function useBinder(block: Ref, keyword: Ref) { // 组件props const props = block.value.props.map((n) => - typeof n === 'string' ? `this.props.${n}` : `this.props.${n.name}` + typeof n === 'string' ? `this.$props.${n}` : `this.$props.${n.name}` ); if (props.length) { opts.push({ title: '属性', items: props }); diff --git a/packages/engine/src/models/Project.ts b/packages/engine/src/models/Project.ts index 9d7a49516..5be77bcfd 100644 --- a/packages/engine/src/models/Project.ts +++ b/packages/engine/src/models/Project.ts @@ -161,6 +161,11 @@ export class Project { return finder(this.pages.value); } + getHomePage() { + const pages = this.getPages(); + return pages.find((n) => !!n.home); + } + clearHomePage() { const pages = this.getPages(); pages.forEach((page) => { diff --git a/packages/engine/src/renderer/block.ts b/packages/engine/src/renderer/block.ts index 79284c901..a43e40e00 100644 --- a/packages/engine/src/renderer/block.ts +++ b/packages/engine/src/renderer/block.ts @@ -257,7 +257,7 @@ export function createBlockRenderer( ...methods, ...dataSources }; - context.setup(Vue, attrs); + context.setup(attrs, Vue); setWatches(Vue, dsl.value.watch ?? [], context); if (block && block.id === context.__id) { diff --git a/packages/engine/src/renderer/context.ts b/packages/engine/src/renderer/context.ts index 160e2ed79..72cbc3770 100644 --- a/packages/engine/src/renderer/context.ts +++ b/packages/engine/src/renderer/context.ts @@ -1,6 +1,6 @@ -import type { DefineComponent } from 'vue'; import type { BlockRendererInstance } from './block'; import type { BlockSchema, JSExpression, JSFunction, NodeFrom } from '../core'; +import * as globalVue from 'vue'; import { parseExpression, parseFunction } from '../utils'; import { CONTEXT_HOST } from '../constants'; import { defaultLoader, type ComponentLoader } from './loader'; @@ -80,7 +80,7 @@ export class Context { } } - setup(Vue: any, attrs: IContextOptionsAttrs = {}) { + setup(attrs: IContextOptionsAttrs = {}, Vue: any = globalVue) { const instance = Vue.getCurrentInstance(); if (!instance) return; this.__instance = instance.proxy as BlockRendererInstance; diff --git a/packages/engine/src/runtime.ts b/packages/engine/src/runtime.ts index 6d70ba72a..5aa5f5a58 100644 --- a/packages/engine/src/runtime.ts +++ b/packages/engine/src/runtime.ts @@ -1,5 +1,10 @@ export { isJSUrl, isCSSUrl, createApiHandler } from './utils'; -export { createBlockRenderer, createLoader } from './renderer'; +export { + createBlockRenderer, + createLoader, + Context, + ContextMode +} from './renderer'; export { VUE } from './constants'; export type { Dependencie, diff --git a/packages/engine/src/views/widgets/Actions.vue b/packages/engine/src/views/widgets/Actions.vue index a3ec726e1..a3ceac6ed 100644 --- a/packages/engine/src/views/widgets/Actions.vue +++ b/packages/engine/src/views/widgets/Actions.vue @@ -18,21 +18,23 @@ + 浏览 预览 - - - 出码 - + 出码 diff --git a/packages/engine/src/views/shared/ContextViewer.vue b/packages/engine/src/views/shared/ContextViewer.vue index cd73fc13c..6f725a6c4 100644 --- a/packages/engine/src/views/shared/ContextViewer.vue +++ b/packages/engine/src/views/shared/ContextViewer.vue @@ -20,89 +20,93 @@ diff --git a/packages/engine/src/views/widgets/About.vue b/packages/engine/src/views/widgets/About.vue new file mode 100644 index 000000000..5e064b631 --- /dev/null +++ b/packages/engine/src/views/widgets/About.vue @@ -0,0 +1,55 @@ + + + diff --git a/packages/engine/src/views/widgets/Actions.vue b/packages/engine/src/views/widgets/Actions.vue index 11adbfe68..04d6699f1 100644 --- a/packages/engine/src/views/widgets/Actions.vue +++ b/packages/engine/src/views/widgets/Actions.vue @@ -18,99 +18,113 @@ - 浏览 + + 浏览 + 预览 - + 出码 diff --git a/packages/engine/src/views/widgets/Pages.vue b/packages/engine/src/views/widgets/Pages.vue index 7df59953d..40512d4a7 100644 --- a/packages/engine/src/views/widgets/Pages.vue +++ b/packages/engine/src/views/widgets/Pages.vue @@ -88,151 +88,152 @@ diff --git a/packages/engine/src/views/widgets/index.ts b/packages/engine/src/views/widgets/index.ts index 0d8b516f3..741fc1d3a 100644 --- a/packages/engine/src/views/widgets/index.ts +++ b/packages/engine/src/views/widgets/index.ts @@ -21,6 +21,7 @@ import Apis from './Apis.vue'; import DataSources from './DataSources.vue'; import History from './History.vue'; import NodePath from './NodePath.vue'; +import About from './About.vue'; export const buildInWidgets = { Empty, @@ -45,5 +46,6 @@ export const buildInWidgets = { Apis, DataSources, History, - NodePath + NodePath, + About }; diff --git a/packages/engine/vite.config.ts b/packages/engine/vite.config.ts index c8f8f1e04..9ca6cc70d 100644 --- a/packages/engine/vite.config.ts +++ b/packages/engine/vite.config.ts @@ -1,4 +1,4 @@ -import { createViteConfig } from '@vtj/cli'; +import { createViteConfig, writeVersion } from '@vtj/cli'; const index = createViteConfig({ debug: false, @@ -108,4 +108,6 @@ const map = { shared }; +writeVersion(); + export default map[process.env.FILE] || index; diff --git a/packages/ide/index.html b/packages/ide/index.html index b0e48cdc0..ef6455106 100644 --- a/packages/ide/index.html +++ b/packages/ide/index.html @@ -8,9 +8,51 @@ VTJ.design +
+
+
正在加载资源....
+
+ +
+
diff --git a/packages/ide/src/main.ts b/packages/ide/src/main.ts index 9c689795e..2f2759f59 100644 --- a/packages/ide/src/main.ts +++ b/packages/ide/src/main.ts @@ -2,6 +2,7 @@ import { createApp } from 'vue'; import App from './App.vue'; import router from './router'; import { createProvider } from '@vtj/runtime'; +import { ElLoading } from 'element-plus'; import 'element-plus/dist/index.css'; import '@vtj/icons/lib/style.css'; import '@vtj/engine/lib/style.css'; @@ -17,11 +18,16 @@ const modules = isDev ? import.meta.glob([ '/.vtj/project/*.json', '/.vtj/file/*.json', - '/src/views/pages/*.vue' + '/src/views/pages/*.vue', + '/src/components/blocks/*.vue' ]) : undefined; (async () => { + const loading = ElLoading.service({ + body: true, + fullscreen: true + }); const options = isDev || idDemo ? undefined : await ideConfig(); const provider = await createProvider({ service: idDemo ? 'storage' : 'file', @@ -36,6 +42,7 @@ const modules = isDev ide: isDev || idDemo ? { path: '/' } : null, startup: isDev || idDemo ? true : false }); + loading.close(); app.use(provider); app.use(router); app.mount('#app'); diff --git a/packages/ide/src/views/index.vue b/packages/ide/src/views/index.vue index f1ca25dcf..b90ffe462 100644 --- a/packages/ide/src/views/index.vue +++ b/packages/ide/src/views/index.vue @@ -3,102 +3,111 @@ diff --git a/packages/ide/vite.config.ts b/packages/ide/vite.config.ts index 1f61bd350..58f1185b0 100644 --- a/packages/ide/vite.config.ts +++ b/packages/ide/vite.config.ts @@ -8,15 +8,15 @@ const packagesPath = resolve('../../packages'); const alias = ENV_TYPE === 'local' ? { - '@vtj/utils': join(packagesPath, 'utils/src/index.ts'), - '@vtj/ui/lib/style.css': join(packagesPath, 'ui/src/style/index.scss'), + // '@vtj/utils': join(packagesPath, 'utils/src/index.ts'), + // '@vtj/ui/lib/style.css': join(packagesPath, 'ui/src/style/index.scss'), '@vtj/engine/lib/style.css': join( packagesPath, 'engine/src/style/index.scss' ), - '@vtj/icons/lib/style.css': join(packagesPath, 'icons/src/style.scss'), - '@vtj/ui': join(packagesPath, 'ui/src'), - '@vtj/icons': join(packagesPath, 'icons/src'), + // '@vtj/icons/lib/style.css': join(packagesPath, 'icons/src/style.scss'), + // '@vtj/ui': join(packagesPath, 'ui/src'), + // '@vtj/icons': join(packagesPath, 'icons/src'), '@vtj/engine': join(packagesPath, 'engine/src'), '@vtj/runtime': join(packagesPath, 'runtime/src') } diff --git a/packages/runtime/src/Provider.ts b/packages/runtime/src/Provider.ts index f37b63c73..b63b5b1c3 100644 --- a/packages/runtime/src/Provider.ts +++ b/packages/runtime/src/Provider.ts @@ -15,6 +15,7 @@ import PreviewContainer from './components/PreviewContainer'; import MaskContainer from './components/MaskContainer'; import Homepage from './components/Homepage'; import { ServiceType, Service } from './Service'; + import { VUE, parseDependencies, @@ -109,6 +110,7 @@ export class Provider { public dsl: ShallowRef = shallowRef(null); public pages?: ComputedRef; public blocks?: ComputedRef; + public apis?: ComputedRef>; constructor(options: Partial = {}) { const app = options.app; // merge app 会引发警告 @@ -127,7 +129,8 @@ export class Provider { const { ide, router, app } = this.options; this.dsl.value = await this.service.getProject(); this.pages = computed(() => getPages(this.dsl.value?.pages ?? [])); - this.blocks = computed(() => getPages(this.dsl.value?.blocks ?? [])); + this.blocks = computed(() => this.dsl.value?.blocks ?? []); + this.apis = computed(() => parseApis(this.dsl.value?.apis || [])); if (app) { await this.setup(app); } @@ -213,8 +216,7 @@ export class Provider { await loadScripts(scripts); await loadScripts(assets); const { libs, components } = getLibs(libraries); - const apis = parseApis(dsl.value?.apis || []); - cache = caches[id] = { libs, components, apis }; + cache = caches[id] = { libs, components, apis: this.apis?.value }; if (app) { install(app, libs); } diff --git a/packages/serve/src/server/controllers.ts b/packages/serve/src/server/controllers.ts index 2d8f04912..88ce5f866 100644 --- a/packages/serve/src/server/controllers.ts +++ b/packages/serve/src/server/controllers.ts @@ -143,16 +143,6 @@ export async function projectCoder(req: ApiRequest) { } const pagesDir = join(SRC_PATH, 'views/pages'); const blocksDir = join(SRC_PATH, 'components/blocks'); - const apisPath = join(SRC_PATH, 'api/vtj.ts'); - - // console.log('project.pages-------------'); - // console.log(project.pages); - // console.log('project.blocks -------------'); - // console.log(project.blocks); - // console.log('project.apis-------------'); - // console.log(project.apis); - // console.log('assets.componentMap-------------'); - // console.log(assets.componentMap); const jsonPages = getPages(project.pages || []) .map((n) => { @@ -175,7 +165,7 @@ export async function projectCoder(req: ApiRequest) { .filter((n: any) => !!n); try { - const { apis, pages, blocks } = coder({ + const { pages, blocks } = coder({ pages: jsonPages, blocks: jsonBlocks, apis: project.apis || [], @@ -199,8 +189,6 @@ export async function projectCoder(req: ApiRequest) { writeFileSync(filePath, file.content, 'utf-8'); } - - writeFileSync(apisPath, apis, 'utf-8'); } catch (e: any) { // console.log(e); return fail(e.message); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 012eaebb2..45120ca1f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,14 +9,17 @@ importers: .: devDependencies: axios: - specifier: 1.4.0 + specifier: ~1.4.0 version: 1.4.0 fs-extra: - specifier: 11.1.1 + specifier: ~11.1.1 version: 11.1.1 lerna: - specifier: 7.1.1 + specifier: ~7.1.1 version: 7.1.1 + pnpm: + specifier: ~8.6.10 + version: 8.6.10 dev: dependencies: @@ -271,10 +274,10 @@ importers: specifier: ~3.0.1 version: 3.0.1 monaco-editor: - specifier: ~0.39.0 - version: 0.39.0 + specifier: ~0.40.0 + version: 0.40.0 prettier: - specifier: ~2.8.0 + specifier: ~2.8.8 version: 2.8.8 zen-logger: specifier: ~1.1.4 @@ -5949,8 +5952,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /monaco-editor@0.39.0: - resolution: {integrity: sha512-zhbZ2Nx93tLR8aJmL2zI1mhJpsl87HMebNBM6R8z4pLfs8pj604pIVIVwyF1TivcfNtIPpMXL+nb3DsBmE/x6Q==} + /monaco-editor@0.40.0: + resolution: {integrity: sha512-1wymccLEuFSMBvCk/jT1YDW/GuxMLYwnFwF9CDyYCxoTw2Pt379J3FUhwy9c43j51JdcxVPjwk0jm0EVDsBS2g==} dev: false /mri@1.2.0: @@ -6616,6 +6619,12 @@ packages: mlly: 1.4.0 pathe: 1.1.1 + /pnpm@8.6.10: + resolution: {integrity: sha512-EBlPdgrAqmIDK6lflNm8M4lueWGM4PKJIDngt6vJ1+fmzh3e0482tg52nUjiuGvkzZ2sngA181GLqknXhAHgIg==} + engines: {node: '>=16.14'} + hasBin: true + dev: true + /postcss@8.4.27: resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==} engines: {node: ^10 || ^12 || >=14} -- Gitee From cdd4b46a73832d338b5e8a5dc4b11e869d770fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=8D=8E=E6=98=A5?= Date: Thu, 27 Jul 2023 19:29:32 +0800 Subject: [PATCH 6/9] =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=87=BA=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/boot/package.json | 3 +- packages/boot/src/components/Mask.vue | 13 + packages/boot/src/components/index.ts | 1 - packages/boot/src/main.ts | 13 +- packages/ide/index.html | 2 +- packages/ide/package.json | 3 +- packages/ide/src/api/index.ts | 1 - packages/ide/src/api/vtj.ts | 1 - packages/ide/src/components/Mask.vue | 13 + packages/ide/src/main.ts | 63 ++--- packages/ide/src/views/index.vue | 21 +- packages/ide/src/views/preview.vue | 18 -- packages/ide/vite.config.ts | 12 +- packages/runtime/src/Provider.ts | 257 +++++++++--------- packages/runtime/src/Service.ts | 20 +- packages/runtime/src/components/Empty.ts | 2 +- packages/runtime/src/components/Homepage.ts | 78 +++--- .../src/components/{Link.ts => IdeLink.ts} | 2 +- packages/runtime/src/components/Loading.ts | 15 - .../runtime/src/components/MaskContainer.ts | 38 +-- .../runtime/src/components/PageContainer.ts | 49 +--- .../src/components/PreviewContainer.ts | 36 +-- packages/runtime/src/components/index.ts | 6 + packages/runtime/src/hooks/index.ts | 2 - packages/runtime/src/hooks/useBlock.ts | 80 +++--- packages/runtime/src/hooks/useMask.ts | 43 --- packages/runtime/src/hooks/usePage.ts | 15 - packages/runtime/src/hooks/useProvider.ts | 14 +- packages/runtime/src/shared.ts | 46 +++- packages/serve/src/IDEPlugin.ts | 1 + 30 files changed, 414 insertions(+), 454 deletions(-) create mode 100644 packages/boot/src/components/Mask.vue delete mode 100644 packages/boot/src/components/index.ts delete mode 100644 packages/ide/src/api/vtj.ts create mode 100644 packages/ide/src/components/Mask.vue delete mode 100644 packages/ide/src/views/preview.vue rename packages/runtime/src/components/{Link.ts => IdeLink.ts} (97%) delete mode 100644 packages/runtime/src/components/Loading.ts create mode 100644 packages/runtime/src/components/index.ts delete mode 100644 packages/runtime/src/hooks/useMask.ts delete mode 100644 packages/runtime/src/hooks/usePage.ts diff --git a/packages/boot/package.json b/packages/boot/package.json index b5ce1a9b5..8f3a3d02a 100644 --- a/packages/boot/package.json +++ b/packages/boot/package.json @@ -43,6 +43,7 @@ "project": { "id": "demo", "name": "示例项目" - } + }, + "raw": true } } \ No newline at end of file diff --git a/packages/boot/src/components/Mask.vue b/packages/boot/src/components/Mask.vue new file mode 100644 index 000000000..b7bff53d1 --- /dev/null +++ b/packages/boot/src/components/Mask.vue @@ -0,0 +1,13 @@ + + diff --git a/packages/boot/src/components/index.ts b/packages/boot/src/components/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/packages/boot/src/components/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/packages/boot/src/main.ts b/packages/boot/src/main.ts index 28e32de97..7f08be4a9 100644 --- a/packages/boot/src/main.ts +++ b/packages/boot/src/main.ts @@ -2,24 +2,27 @@ import { createApp } from 'vue'; import App from './App.vue'; import router from './router'; import { createProvider } from '@vtj/runtime'; +import Mask from '@/components/Mask.vue'; import '@vtj/icons/lib/style.css'; import '@vtj/ui/lib/style.css'; import '@/style/index.scss'; const modules = import.meta.glob([ '/.vtj/project/*.json', '/.vtj/file/*.json', - '/src/views/pages/*.vue' + '/src/views/pages/*.vue', + '/src/components/blocks/*.vue' ]); const app = createApp(App); (async () => { - const provider = await createProvider({ + await createProvider({ app, - modules, router, - startup: true + modules, + components: { + Mask + } }); app.use(router); - app.use(provider); app.mount('#app'); })(); diff --git a/packages/ide/index.html b/packages/ide/index.html index ef6455106..89b6b7f34 100644 --- a/packages/ide/index.html +++ b/packages/ide/index.html @@ -78,7 +78,7 @@ loading = null; countEl = null; valueEl = null; - }, 300); + }, 100); } } diff --git a/packages/ide/package.json b/packages/ide/package.json index ebd115520..ee5ddabb0 100644 --- a/packages/ide/package.json +++ b/packages/ide/package.json @@ -9,8 +9,7 @@ "build": "npm run build:prod", "build:prod": "vue-tsc && cross-env ENV_TYPE=live vite build", "build:uat": "vue-tsc && cross-env ENV_TYPE=uat vite build", - "preview": "cross-env ENV_TYPE=live vite preview", - "preview:demo": "cross-env ENV_TYPE=uat vite preview" + "preview": "cross-env ENV_TYPE=live vite preview" }, "engines": { "node": ">=16.0.0" diff --git a/packages/ide/src/api/index.ts b/packages/ide/src/api/index.ts index 409fb85c9..056175ab3 100644 --- a/packages/ide/src/api/index.ts +++ b/packages/ide/src/api/index.ts @@ -1,6 +1,5 @@ import { createApi } from '@vtj/utils'; import { ElNotification } from 'element-plus'; -export * from './vtj'; export const ideConfig = createApi({ url: '/vtj.json', diff --git a/packages/ide/src/api/vtj.ts b/packages/ide/src/api/vtj.ts deleted file mode 100644 index 866eec21b..000000000 --- a/packages/ide/src/api/vtj.ts +++ /dev/null @@ -1 +0,0 @@ -import { createApi } from '@vtj/utils'; diff --git a/packages/ide/src/components/Mask.vue b/packages/ide/src/components/Mask.vue new file mode 100644 index 000000000..b7bff53d1 --- /dev/null +++ b/packages/ide/src/components/Mask.vue @@ -0,0 +1,13 @@ + + diff --git a/packages/ide/src/main.ts b/packages/ide/src/main.ts index 2f2759f59..3c8b3b38e 100644 --- a/packages/ide/src/main.ts +++ b/packages/ide/src/main.ts @@ -2,53 +2,44 @@ import { createApp } from 'vue'; import App from './App.vue'; import router from './router'; import { createProvider } from '@vtj/runtime'; -import { ElLoading } from 'element-plus'; +import { merge } from '@vtj/utils'; import 'element-plus/dist/index.css'; import '@vtj/icons/lib/style.css'; import '@vtj/engine/lib/style.css'; import '@vtj/ui/lib/style.css'; import '@/style/index.scss'; import { ideConfig } from '@/api'; +import Mask from '@/components/Mask.vue'; -const isDev = process.env.ENV_TYPE === 'local'; -const idDemo = process.env.ENV_TYPE === 'uat'; const app = createApp(App); -const modules = isDev - ? import.meta.glob([ - '/.vtj/project/*.json', - '/.vtj/file/*.json', - '/src/views/pages/*.vue', - '/src/components/blocks/*.vue' - ]) - : undefined; +const modules = import.meta.glob([ + '/.vtj/project/*.json', + '/.vtj/file/*.json', + '/src/views/pages/*.vue', + '/src/components/blocks/*.vue' +]); (async () => { - const loading = ElLoading.service({ - body: true, - fullscreen: true - }); - const options = isDev || idDemo ? undefined : await ideConfig(); - const provider = await createProvider({ - service: idDemo ? 'storage' : 'file', - project: - isDev || idDemo - ? ({ home: '/startup', name: '项目样例' } as any) - : undefined, - ...options, - app, - modules, - router, - ide: isDev || idDemo ? { path: '/' } : null, - startup: isDev || idDemo ? true : false - }); - loading.close(); - app.use(provider); + const options: any = await ideConfig(); + await createProvider( + merge( + { + service: 'file', + project: { home: '/startup', name: '项目样例' }, + app, + modules, + router, + ide: { path: '/' }, + startup: true, + raw: true, + components: { + Mask + } + }, + options + ) + ); app.use(router); app.mount('#app'); - - if ((isDev || idDemo) && !sessionStorage.getItem('startup')) { - sessionStorage.setItem('startup', '1'); - router.push('/startup'); - } })(); diff --git a/packages/ide/src/views/index.vue b/packages/ide/src/views/index.vue index b90ffe462..35edc380f 100644 --- a/packages/ide/src/views/index.vue +++ b/packages/ide/src/views/index.vue @@ -20,8 +20,9 @@ import { useProvider, isPage } from '@vtj/runtime'; import { ElMessage, ElNotification } from 'element-plus'; import { ideBase } from '@/api'; - const provider = useProvider(); const container = ref(); + const provider = useProvider(); + const { project, options } = provider || {}; const { id = 'ide', name = 'IDE', @@ -30,9 +31,10 @@ page = '/page', preview = '/preview', home = '/' - } = provider?.options.project || {}; + } = project || {}; + + const service = options?.service; - const service = provider?.options.service; const engine = new Engine(container, { service: service === 'file' ? new FileService() : new StorageService(), config: { @@ -46,7 +48,7 @@ { name: 'actions', props: { - coder: true + coder: !!options?.raw } } ] @@ -65,8 +67,17 @@ engine.emitter.on( EVENT_ACTION_PREVIEW, (file: PageSchema | SummarySchema) => { + const raw = provider?.options.raw; const split = mode === 'hash' ? '#' : ''; - const url = `${base}${split}${preview}/${(file as SummarySchema).id}`; + let url = ''; + if (isPage(file)) { + url = raw + ? `${base}${split}${preview}/${(file as SummarySchema).id}` + : `${base}${split}${page}/${(file as SummarySchema).id}`; + } else { + url = `${base}${split}${preview}/${(file as SummarySchema).id}`; + } + window.open(url); } ); diff --git a/packages/ide/src/views/preview.vue b/packages/ide/src/views/preview.vue deleted file mode 100644 index e9ef582a9..000000000 --- a/packages/ide/src/views/preview.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/packages/ide/vite.config.ts b/packages/ide/vite.config.ts index 58f1185b0..e6b76a93b 100644 --- a/packages/ide/vite.config.ts +++ b/packages/ide/vite.config.ts @@ -10,14 +10,14 @@ const alias = ? { // '@vtj/utils': join(packagesPath, 'utils/src/index.ts'), // '@vtj/ui/lib/style.css': join(packagesPath, 'ui/src/style/index.scss'), - '@vtj/engine/lib/style.css': join( - packagesPath, - 'engine/src/style/index.scss' - ), + // '@vtj/engine/lib/style.css': join( + // packagesPath, + // 'engine/src/style/index.scss' + // ), // '@vtj/icons/lib/style.css': join(packagesPath, 'icons/src/style.scss'), // '@vtj/ui': join(packagesPath, 'ui/src'), // '@vtj/icons': join(packagesPath, 'icons/src'), - '@vtj/engine': join(packagesPath, 'engine/src'), + // '@vtj/engine': join(packagesPath, 'engine/src'), '@vtj/runtime': join(packagesPath, 'runtime/src') } : undefined; @@ -39,7 +39,7 @@ export default createViteConfig({ plugins: [IDEPlugin()], defineConfig: (config) => { config.server.watch = { - ignored: ['**/.vtj/**'] + // ignored: ['**/.vtj/**'] }; return config; } diff --git a/packages/runtime/src/Provider.ts b/packages/runtime/src/Provider.ts index b63b5b1c3..244eea3c3 100644 --- a/packages/runtime/src/Provider.ts +++ b/packages/runtime/src/Provider.ts @@ -1,22 +1,19 @@ -import { - createApp, - App, - ShallowRef, - shallowRef, - ComputedRef, - computed -} from 'vue'; -import { Router, useRouter } from 'vue-router'; +import { App, InjectionKey } from 'vue'; +import { ElLoading } from 'element-plus'; +import { Router } from 'vue-router'; import { merge } from '@vtj/utils'; -import { XSimpleMask } from '@vtj/ui'; -import IDELink from './components/Link'; -import PageContainer from './components/PageContainer'; -import PreviewContainer from './components/PreviewContainer'; -import MaskContainer from './components/MaskContainer'; -import Homepage from './components/Homepage'; +import { XStartup } from '@vtj/ui'; import { ServiceType, Service } from './Service'; - import { + Empty, + IDELink, + MaskContainer, + PageContainer, + PreviewContainer, + Homepage +} from './components'; +import { + createIdeLink, VUE, parseDependencies, loadCss, @@ -27,7 +24,9 @@ import { ProjectSchema, PageSchema, SummarySchema, - getPages + getPages, + addRoute, + addRouteWithMask } from './shared'; export interface ProjectProvider { @@ -60,6 +59,12 @@ export interface ProviderBuiltinComponents { // 404页面组件 Empty?: any; + + // 启动页组件 + Startup?: any; + + // Ide入口组件 + IDELink?: any; } export interface ProviderOptions { @@ -67,7 +72,13 @@ export interface ProviderOptions { service: ServiceType; // 项目配置 - project: ProjectProvider; + project: Partial; + + // Vue应用 + app: App; + + // 路由实例 + router: Router; // 文件模块 service = file 是,需要传 modules?: Record Promise>; @@ -75,167 +86,153 @@ export interface ProviderOptions { // IDE 配置 ide?: null | IDEProvider; - // Vue应用 - app?: App; - - // 路由实例 - router?: Router; - // 显示启动页 startup?: boolean; // 内置组件 components?: ProviderBuiltinComponents; + + // 生成源码模式 + raw?: boolean; } -const defaults: ProviderOptions = { +const defaults: Partial = { service: 'storage', project: { - id: '', - name: '', + id: 'demo', + name: '示例项目', base: '/', mode: 'hash', page: '/page', preview: '/preview', home: '/' }, - components: {}, - ide: undefined + components: { + Empty, + IDELink, + Startup: XStartup + }, + ide: undefined, + raw: true, + startup: true }; +export const providerInjectKey: InjectionKey = Symbol('$provider'); + export class Provider { public options: ProviderOptions; - public caches: Record = {}; + public project: ProjectProvider; public service: Service; - public dsl: ShallowRef = shallowRef(null); - public pages?: ComputedRef; - public blocks?: ComputedRef; - public apis?: ComputedRef>; + public dsl: ProjectSchema | null = null; + public pages: PageSchema[] = []; + public blocks: SummarySchema[] = []; + public apis: Record = {}; + public libs: Record = {}; + public components: Record = {}; constructor(options: Partial = {}) { - const app = options.app; - // merge app 会引发警告 + const app = options.app as App; delete options.app; - this.options = merge( - {}, - defaults, - window.__VTJ_PROVIDER_OPTIONS__, - options - ); + this.options = merge(defaults, window.__VTJ_PROVIDER_OPTIONS__, options); this.options.app = app; const { service, project, modules } = this.options; - this.service = new Service(service, project.id, modules); + this.project = project as ProjectProvider; + this.service = new Service(service, this.project.id, modules); } async init() { - const { ide, router, app } = this.options; - this.dsl.value = await this.service.getProject(); - this.pages = computed(() => getPages(this.dsl.value?.pages ?? [])); - this.blocks = computed(() => this.dsl.value?.blocks ?? []); - this.apis = computed(() => parseApis(this.dsl.value?.apis || [])); - if (app) { - await this.setup(app); - } - if (ide) { - this.createLink(ide); - } - if (router) { - this.createRoutes(); + const { ide, app, components = {} } = this.options; + this.dsl = await this.service.getProject(); + this.pages = getPages(this.dsl?.pages || []); + this.blocks = this.dsl?.blocks || []; + this.apis = parseApis(this.dsl?.apis || []); + await this.setup(); + this.createRoutes(); + const { IDELink } = components; + if (ide && IDELink) { + createIdeLink(IDELink, ide); } + + app.use(this.install.bind(this)); } - private createLink(props: IDEProvider) { - const app = createApp(IDELink, props); - const el = document.createElement('div'); - document.body.appendChild(el); - app.mount(el); + private async setup() { + const { options, dsl } = this; + const { dependencies = [] } = dsl || {}; + const deps = dependencies.filter((n) => !!n.enabled && n.library !== VUE); + const { scripts, css, assets, libraries } = parseDependencies(deps); + loadCss(css); + await loadScripts(scripts); + await loadScripts(assets); + const { libs, components } = getLibs(libraries); + install(options.app, libs); + this.libs = libs; + this.components = components; } + private createRoutes() { - const { router, components = {}, project, startup } = this.options; - const { Mask = XSimpleMask } = components; - if (!router) return; + const { options, project } = this; + const { router, components = {}, raw = true, startup } = options; - if (Mask) { - router.addRoute({ - path: project.preview, - name: 'VtjPreviewMask', - component: MaskContainer, - children: [ - { - path: ':id', - name: 'vtj-preview', - props: (route: any) => route.query, - component: PreviewContainer - } - ] - }); - router.addRoute({ - path: project.page, - name: 'VtjPageMask', - component: MaskContainer, - children: [ - { - path: ':id', - name: 'VtjPage', - props: (route: any) => route.query, - component: PageContainer - } - ] - }); - } else { - router.addRoute({ - path: `${project.preview}/:id`, - name: 'VtjPpreview', - props: (route: any) => route.query, - component: PreviewContainer - }); - router.addRoute({ - path: `${project.page}/:id`, - name: 'VtjPage', - props: (route: any) => route.query, - component: PageContainer - }); - } + const Mask = components.Mask; if (startup) { router.addRoute({ - name: 'startup', path: project.home, + name: 'Home', + props: (route: any) => route.query, component: Homepage }); } - } + if (!Mask) { + addRoute(router, 'VtjPage', project.page, PageContainer); + addRoute(router, 'VtjPpreview', project.preview, PreviewContainer); + return; + } + addRouteWithMask( + router, + 'VtjPage', + project.page, + MaskContainer, + PageContainer + ); - public async setup(app?: App) { - const { caches, options, dsl } = this; - const { id } = options.project; - let cache = caches[id]; - if (cache) return cache; - const { dependencies = [] } = dsl.value || {}; - const deps = dependencies.filter((n) => !!n.enabled && n.library !== VUE); - const { scripts, css, assets, libraries } = parseDependencies(deps); - loadCss(css); - await loadScripts(scripts); - await loadScripts(assets); - const { libs, components } = getLibs(libraries); - cache = caches[id] = { libs, components, apis: this.apis?.value }; - if (app) { - install(app, libs); + if (raw) { + addRouteWithMask( + router, + 'VtjPreview', + project.preview, + MaskContainer, + PreviewContainer + ); } - return cache; + } + + private install(app: App) { + app.config.globalProperties.$provider = this; + app.provide(providerInjectKey, this); } public go(id: string, query: Record = {}) { - const router = useRouter(); + const { router } = this.options; router.push({ name: 'VtjPage', params: { id }, query }); } + + public getFile(id: string) { + const { pages, blocks } = this; + return pages.find((n) => id === n.id) || blocks.find((n) => id === n.id); + } + + public getHomepage() { + return this.pages.find((n) => !!n.home); + } } export async function createProvider(options: Partial = {}) { + const loading = ElLoading.service({ + body: true, + fullscreen: true + }); const instance = new Provider(options); await instance.init(); - return { - instance, - install: (app: App) => { - app.config.globalProperties.$provider = instance; - } - }; + loading.close(); + return instance; } diff --git a/packages/runtime/src/Service.ts b/packages/runtime/src/Service.ts index d12bce254..cfcea3724 100644 --- a/packages/runtime/src/Service.ts +++ b/packages/runtime/src/Service.ts @@ -1,4 +1,5 @@ import { StorageService, ProjectSchema, BlockSchema } from './shared'; +import { DefineComponent, markRaw } from 'vue'; export type ServiceType = 'storage' | 'file'; export class Service { public storage?: StorageService; @@ -25,7 +26,7 @@ export class Service { return null; } - async getFile(id: string): Promise { + async getDsl(id: string): Promise { const { type, storage, modules } = this; if (type === 'storage' && storage) { return await storage.getFile(id); @@ -37,4 +38,21 @@ export class Service { } return null; } + + async getComponent( + id: string + ): Promise | null> { + const { type, storage, modules } = this; + if (type === 'storage' && storage) { + return null; + } + if (type === 'file' && modules) { + const loader = + modules[`/src/views/pages/${id}.vue`] || + modules[`/src/components/blocks/${id}.vue`]; + const vue = loader ? await loader() : null; + return vue?.default ? markRaw(vue?.default) : null; + } + return null; + } } diff --git a/packages/runtime/src/components/Empty.ts b/packages/runtime/src/components/Empty.ts index 4739b0d43..d23ffe92f 100644 --- a/packages/runtime/src/components/Empty.ts +++ b/packages/runtime/src/components/Empty.ts @@ -1,6 +1,6 @@ import { defineComponent, h } from 'vue'; import { ElEmpty } from 'element-plus'; -export default defineComponent({ +export const Empty = defineComponent({ name: 'VtjEmpty', render() { return h(ElEmpty, { description: '页面不存在!' }); diff --git a/packages/runtime/src/components/Homepage.ts b/packages/runtime/src/components/Homepage.ts index 66414c85e..8ad6e1669 100644 --- a/packages/runtime/src/components/Homepage.ts +++ b/packages/runtime/src/components/Homepage.ts @@ -1,50 +1,54 @@ -import { defineComponent, h, computed } from 'vue'; -import { XStartup } from '@vtj/ui'; -import { useProvider, usePage, useMask } from '../hooks'; -import { useRoute } from 'vue-router'; +import { defineComponent, h, markRaw, Suspense } from 'vue'; +import { useProvider } from '../hooks'; +import { createBlockRenderer, createLoader, isMask } from '../shared'; import { useTitle } from '@vueuse/core'; -export default defineComponent({ +export const Homepage = defineComponent({ name: 'VtjHomepage', - setup() { + async setup() { const provider = useProvider(); - const page = computed(() => { - const pages = provider?.pages?.value || []; - return pages.find((n) => !!n.home); + const { options, service, libs, apis, components } = provider; + const homepage = provider.getHomepage(); + const { Startup, Mask } = options.components || {}; + useTitle(homepage?.title || 'Hello VTJ.'); + if (!homepage) return { renderer: markRaw(Startup), file: homepage, Mask }; + + const isRaw = !!options.raw; + let renderer = null; + const Vue = window.Vue; + const loader = createLoader({ + getFile: service.getDsl.bind(service), + options: { libs, components, apis, Vue } }); - const pageId = computed(() => page.value?.id); - const { renderer, loading, dsl } = usePage(pageId); - const { Mask, maskable, maskProps } = useMask(pageId); - const route = useRoute(); - const title = computed(() => dsl.value?.title || 'Hello VTJ.'); - useTitle(title); + if (isRaw) { + renderer = await service.getComponent(homepage.id as string); + } else { + const dsl = await service.getDsl(homepage.id as string); + renderer = dsl + ? markRaw( + createBlockRenderer({ + dsl, + Vue, + libs, + apis, + components, + loader + }) + ) + : null; + } return { - route, - provider, - page, renderer, - loading, - Mask, - maskable, - maskProps + file: homepage, + Mask }; }, render() { - // 找不到首页 - if (!this.page) { - return h(XStartup); - } - // 首页带母版 - if (this.Mask && this.maskable && this.renderer) { - return h(this.Mask, this.maskProps, () => - h(this.renderer as any, this.route.query) - ); - } else if (this.renderer) { - // 首页无母版 - return h(this.renderer, this.route.query); - } else { - // 未加载完成数据时,不渲染 - return null; + const { file, renderer, Mask } = this; + + if (isMask(file) && Mask) { + return h(Suspense, [h(Mask, () => h(renderer))]); } + return h(Suspense, [h(renderer)]); } }); diff --git a/packages/runtime/src/components/Link.ts b/packages/runtime/src/components/IdeLink.ts similarity index 97% rename from packages/runtime/src/components/Link.ts rename to packages/runtime/src/components/IdeLink.ts index 87326ab9f..983cf3686 100644 --- a/packages/runtime/src/components/Link.ts +++ b/packages/runtime/src/components/IdeLink.ts @@ -23,7 +23,7 @@ const CSS_TEXT = ` } `; -export default defineComponent({ +export const IDELink = defineComponent({ name: 'VtjIdeLink', props: { path: { diff --git a/packages/runtime/src/components/Loading.ts b/packages/runtime/src/components/Loading.ts deleted file mode 100644 index d8ef1d127..000000000 --- a/packages/runtime/src/components/Loading.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { defineComponent, h } from 'vue'; -export default defineComponent({ - name: 'VtjLoading', - render() { - return h( - 'div', - { - style: { - padding: '20px' - } - }, - '正在加载页面...' - ); - } -}); diff --git a/packages/runtime/src/components/MaskContainer.ts b/packages/runtime/src/components/MaskContainer.ts index bb48396f1..c9a7a88b0 100644 --- a/packages/runtime/src/components/MaskContainer.ts +++ b/packages/runtime/src/components/MaskContainer.ts @@ -1,34 +1,34 @@ -import { defineComponent, h, computed } from 'vue'; -import { useProvider, useMask } from '../hooks'; +import { defineComponent, h, computed, Suspense, watchEffect, ref } from 'vue'; import { RouterView, useRoute } from 'vue-router'; -import DefaultEmpty from './Empty'; -export default defineComponent({ +import { useProvider } from '../hooks'; +import { isMask } from '../shared'; + +export const MaskContainer = defineComponent({ name: 'VtjMaskContainer', setup(props) { const provider = useProvider(); - const { Empty = DefaultEmpty } = provider?.options.components ?? {}; const route = useRoute(); const fileId = computed(() => route.params.id as string); - - const { maskable, page, Mask, maskProps } = useMask(fileId); + const file = ref(); + watchEffect(() => { + file.value = provider.getFile(fileId.value); + }); return { - Empty, - Mask, - maskable, - page, - maskProps + provider, + file }; }, render() { - const { page, Mask, Empty, maskable, maskProps } = this; - if (!page) { - return h(Empty); + const { provider, file } = this; + const { Mask, Empty } = provider.options.components || {}; + if (!file) { + return h(Suspense, [h(Empty)]); } - if (Mask && maskable) { - return h(Mask, maskProps, this.$slots); - } else { - return h(RouterView, this.$slots); + + if (isMask(file) && Mask) { + return h(Suspense, [h(Mask)]); } + return h(Suspense, [h(RouterView)]); } }); diff --git a/packages/runtime/src/components/PageContainer.ts b/packages/runtime/src/components/PageContainer.ts index 26d72243f..5ced0c4a4 100644 --- a/packages/runtime/src/components/PageContainer.ts +++ b/packages/runtime/src/components/PageContainer.ts @@ -1,49 +1,22 @@ -import { defineComponent, h, computed, ref, markRaw } from 'vue'; -import { useRoute } from 'vue-router'; -import { useProvider } from '../hooks'; +import { defineComponent, h } from 'vue'; +import { useProvider, useBlock } from '../hooks'; import { useTitle } from '@vueuse/core'; -import Loading from './Loading'; -import VtjEmpty from './Empty'; -export default defineComponent({ + +export const PageContainer = defineComponent({ name: 'VtjPageContainer', - setup(props) { - const route = useRoute(); - const fileId = computed(() => route.params.id as string); + async setup() { const provider = useProvider(); - const { modules = {} } = provider?.options || {}; - const page = computed(() => { - const pages = provider?.pages?.value || []; - return pages.find((n) => n.id === fileId.value); - }); - const renderer = ref(); - const loading = ref(true); - const loader = modules[`/src/views/pages/${fileId.value}.vue`]; - loading.value = !!loader; - if (loader) { - loader() - .then((r) => { - renderer.value = markRaw(r.default); - }) - .finally(() => { - loading.value = false; - }); + const { renderer, file } = await useBlock(provider); + if (file) { + useTitle(file.title); } - const title = computed(() => page.value?.title || ''); - useTitle(title); return { - fileId, + provider, renderer, - loading, - title + file }; }, render() { - if (this.renderer) { - return h(this.renderer, this.$attrs); - } else if (this.loading) { - return h(Loading); - } else { - return h(VtjEmpty); - } + return this.renderer ? h(this.renderer) : null; } }); diff --git a/packages/runtime/src/components/PreviewContainer.ts b/packages/runtime/src/components/PreviewContainer.ts index 9a21f3399..2018927d5 100644 --- a/packages/runtime/src/components/PreviewContainer.ts +++ b/packages/runtime/src/components/PreviewContainer.ts @@ -1,33 +1,21 @@ -import { defineComponent, h, computed } from 'vue'; -import { useRoute } from 'vue-router'; -import { usePage } from '../hooks'; +import { defineComponent, h } from 'vue'; +import { useProvider, useBlock } from '../hooks'; import { useTitle } from '@vueuse/core'; -import Loading from './Loading'; -import VtjEmpty from './Empty'; -export default defineComponent({ +export const PreviewContainer = defineComponent({ name: 'VtjPreviewContainer', - setup(props) { - const route = useRoute(); - const fileId = computed(() => route.params.id as string); - - const { renderer, dsl, loading } = usePage(fileId); - const title = computed(() => dsl.value?.title || ''); - useTitle(title); + async setup() { + const provider = useProvider(); + const { renderer, file } = await useBlock(provider); + if (file) { + useTitle(file.title); + } return { - fileId, - renderer, - dsl, - loading + provider, + renderer }; }, render() { - if (this.renderer) { - return h(this.renderer, this.$attrs); - } else if (this.loading) { - return h(Loading); - } else { - return h(VtjEmpty); - } + return this.renderer ? h(this.renderer) : null; } }); diff --git a/packages/runtime/src/components/index.ts b/packages/runtime/src/components/index.ts new file mode 100644 index 000000000..cdc1d6274 --- /dev/null +++ b/packages/runtime/src/components/index.ts @@ -0,0 +1,6 @@ +export * from './Empty'; +export * from './IdeLink'; +export * from './MaskContainer'; +export * from './PageContainer'; +export * from './PreviewContainer'; +export * from './Homepage'; diff --git a/packages/runtime/src/hooks/index.ts b/packages/runtime/src/hooks/index.ts index 050532bee..2fb25b41b 100644 --- a/packages/runtime/src/hooks/index.ts +++ b/packages/runtime/src/hooks/index.ts @@ -1,4 +1,2 @@ export * from './useProvider'; export * from './useBlock'; -export * from './usePage'; -export * from './useMask'; diff --git a/packages/runtime/src/hooks/useBlock.ts b/packages/runtime/src/hooks/useBlock.ts index 6ca4c2ed0..e03efb73f 100644 --- a/packages/runtime/src/hooks/useBlock.ts +++ b/packages/runtime/src/hooks/useBlock.ts @@ -4,58 +4,48 @@ import { getCurrentInstance, markRaw, computed, - watch + watchEffect } from 'vue'; -import { useProvider } from './useProvider'; +import { Provider } from '../Provider'; import { createBlockRenderer, createLoader } from '../shared'; +import { useRoute } from 'vue-router'; -export function useBlock(id: ComputedRef) { - const provider = useProvider(); - const instance = getCurrentInstance(); - const dsl = ref(); - const deps = ref(); - const loading = ref(false); - if (!provider) { - throw new Error('VTJ Provider is not found'); - } - - watch( - id, - async (v, o) => { - loading.value = !!v; - deps.value = v ? await provider.setup(instance?.appContext.app) : null; - dsl.value = v ? await provider.service.getFile(v) : null; - loading.value = false; - }, - { immediate: true } - ); - - const renderer = computed(() => { - if (dsl.value && deps.value) { - const { apis, components, libs } = deps.value; - const Vue = window.Vue; - const loader = createLoader({ - getFile: provider.service.getFile.bind(provider.service), - options: { libs, components, apis, Vue } - }); - return markRaw( - createBlockRenderer({ - dsl: dsl.value, - libs, - components, - apis, - Vue, - loader - }) - ); +export async function useBlock(provider: Provider) { + const { options, project, service } = provider; + const { page } = project; + const route = useRoute(); + const fileId = computed(() => route.params.id as string); + const file = provider.getFile(fileId.value); + const isRaw = options.raw && route.path.startsWith(page); + const { libs, apis, components } = provider; + const Vue = window.Vue; + let renderer = ref(); + const loader = createLoader({ + getFile: service.getDsl.bind(service), + options: { libs, components, apis, Vue } + }); + watchEffect(async () => { + if (isRaw) { + renderer.value = await service.getComponent(fileId.value); + } else { + const dsl = await service.getDsl(fileId.value); + renderer.value = dsl + ? markRaw( + createBlockRenderer({ + dsl, + Vue, + libs, + apis, + components, + loader + }) + ) + : null; } - return null; }); return { renderer, - dsl, - deps, - loading + file }; } diff --git a/packages/runtime/src/hooks/useMask.ts b/packages/runtime/src/hooks/useMask.ts deleted file mode 100644 index 3ce405746..000000000 --- a/packages/runtime/src/hooks/useMask.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { ComputedRef, computed } from 'vue'; -import { useRoute } from 'vue-router'; -import { useProvider } from './useProvider'; -import { isMask } from '../shared'; -import { XSimpleMask, BaseMaskProps } from '@vtj/ui'; - -export function useMask(id: ComputedRef) { - const provider = useProvider(); - const route = useRoute(); - if (!provider) { - throw new Error('VTJ Provider is not found'); - } - - const { Mask = XSimpleMask } = provider.options.components || {}; - - const page = computed(() => { - const pages = provider?.pages?.value || []; - const blocks = provider?.blocks?.value || []; - return ( - pages.find((n) => id.value === n.id) || - blocks.find((n) => id.value === n.id) - ); - }); - - const maskProps = computed(() => { - const { project } = provider.options; - return { - project, - menu: { - data: provider.dsl.value?.pages || [] - }, - preview: route.path.startsWith('/preview') - } as BaseMaskProps; - }); - - const maskable = computed(() => isMask(page.value)); - return { - Mask, - page, - maskable, - maskProps - }; -} diff --git a/packages/runtime/src/hooks/usePage.ts b/packages/runtime/src/hooks/usePage.ts deleted file mode 100644 index dcfb5f797..000000000 --- a/packages/runtime/src/hooks/usePage.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { ComputedRef } from 'vue'; -import { useBlock } from './useBlock'; -import { useMask } from './useMask'; - -export function usePage(id: ComputedRef) { - const { renderer, dsl, deps, loading } = useBlock(id); - const { page } = useMask(id); - return { - renderer, - dsl, - deps, - loading, - page - }; -} diff --git a/packages/runtime/src/hooks/useProvider.ts b/packages/runtime/src/hooks/useProvider.ts index 9c5ae65b0..9a659d555 100644 --- a/packages/runtime/src/hooks/useProvider.ts +++ b/packages/runtime/src/hooks/useProvider.ts @@ -1,6 +1,10 @@ -import { getCurrentInstance } from 'vue'; -import { Provider } from '../Provider'; -export function useProvider(): Provider | undefined { - const instance = getCurrentInstance(); - return instance?.appContext.app.config.globalProperties.$provider; +import { inject } from 'vue'; +import { Provider, providerInjectKey } from '../Provider'; + +export function useProvider(): Provider { + const provider = inject(providerInjectKey, null); + if (!provider) { + throw new Error(`useProvider Provider 未定义`); + } + return provider as Provider; } diff --git a/packages/runtime/src/shared.ts b/packages/runtime/src/shared.ts index 96504fa5f..d1be3eec3 100644 --- a/packages/runtime/src/shared.ts +++ b/packages/runtime/src/shared.ts @@ -16,7 +16,8 @@ import { SummarySchema } from '@vtj/engine/runtime'; -import { markRaw, App } from 'vue'; +import { markRaw, App, createApp } from 'vue'; +import { Router } from 'vue-router'; export { createBlockRenderer, @@ -31,6 +32,13 @@ export { type SummarySchema }; +export function createIdeLink(IDELink: any, props: Record) { + const app = createApp(IDELink, props); + const el = document.createElement('div'); + document.body.appendChild(el); + app.mount(el); +} + export function isPage(schema: unknown): schema is PageSchema { return typeof (schema as PageSchema)?.isDir === 'boolean'; } @@ -168,3 +176,39 @@ export function getPages(pages: PageSchema[] = []) { } return result; } + +export function addRoute( + router: Router, + name: string, + path: string, + component: any +) { + router.addRoute({ + path: `${path}/:id`, + name, + props: (route: any) => route.query, + component + }); +} + +export function addRouteWithMask( + router: Router, + name: string, + path: string, + mask: any, + component: any +) { + router.addRoute({ + path, + name: `${name}Mask`, + component: mask, + children: [ + { + path: ':id', + name, + props: (route: any) => route.query, + component: component + } + ] + }); +} diff --git a/packages/serve/src/IDEPlugin.ts b/packages/serve/src/IDEPlugin.ts index 83e863e1c..86942e54f 100644 --- a/packages/serve/src/IDEPlugin.ts +++ b/packages/serve/src/IDEPlugin.ts @@ -32,6 +32,7 @@ const getProviderOptions = (config: UserConfig, build?: boolean) => { const { base = '/' } = config || {}; return { service: vtj.service || 'file', + raw: !!vtj.raw, project: { id: name, name: name, -- Gitee From dbf8730e6433992d13f952db1ec6c721cc4a9f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=8D=8E=E6=98=A5?= Date: Fri, 28 Jul 2023 10:42:28 +0800 Subject: [PATCH 7/9] add example --- package.json | 5 +- packages/boot/src/main.ts | 9 +- packages/boot/src/vite-env.d.ts | 20 + packages/engine/src/config/dependencies.ts | 46 +- .../engine/src/views/widgets/NodePath.vue | 53 +- .../example/assets/12bhlwd2aj0-6802e92a.js | 1 + .../example/assets/16gd78t8ld2-e60c9367.js | 1 + packages/ide/example/assets/@ctrl-b0f23ca4.js | 1 + .../example/assets/@element-plus-45f3a8b7.js | 3 + .../example/assets/@floating-ui-4ed993c7.js | 1 + .../ide/example/assets/@popperjs-7c8154ca.js | 1 + packages/ide/example/assets/@vue-062efada.js | 12 + .../ide/example/assets/@vueuse-5c9c5b32.js | 1 + .../assets/Editor-c713e86f-83fa9a14.js | 1 + .../assets/async-validator-e3c32ad3.js | 12 + .../ide/example/assets/codicon-79f233d0.ttf | Bin 0 -> 73464 bytes .../ide/example/assets/css.worker-bb872bbe.js | 86 + packages/ide/example/assets/dayjs-4ed993c7.js | 1 + .../example/assets/editor.worker-446b5315.js | 10 + .../example/assets/element-plus-66d46916.js | 9 + .../example/assets/element-plus-7e4f732e.css | 1 + .../example/assets/escape-html-4ed993c7.js | 1 + .../example/assets/html.worker-48d88763.js | 458 + packages/ide/example/assets/ide-2512294d.js | 1 + .../ide/example/assets/index-02d652d2.css | 1 + .../ide/example/assets/index-6ed7b77c.css | 1 + packages/ide/example/assets/index-7f8c78da.js | 39 + packages/ide/example/assets/index-e3bd3db9.js | 49 + .../example/assets/json.worker-978a7a20.js | 41 + .../ide/example/assets/lodash-es-74278d6e.js | 1 + .../example/assets/lodash-unified-4ed993c7.js | 1 + .../example/assets/memoize-one-4ed993c7.js | 1 + packages/ide/example/assets/mitt-c2f3c268.js | 1 + .../example/assets/monaco-editor-456639a7.css | 1 + .../example/assets/monaco-editor-dada22c1.js | 1916 + .../assets/normalize-wheel-es-4ed993c7.js | 1 + .../ide/example/assets/not-found-ee0760e6.js | 1 + .../ide/example/assets/polyfills-e1016800.js | 1 + .../ide/example/assets/ts.worker-3bd4bb91.js | 37020 ++++++++++++++++ .../ide/example/assets/vue-demi-4ed993c7.js | 1 + packages/ide/example/assets/vue-f0a73811.js | 1 + .../ide/example/assets/vue-router-967a0738.js | 5 + packages/ide/example/favicon.ico | Bin 0 -> 4286 bytes packages/ide/example/index.html | 120 + .../ide/example/libs/element-plus-assets.js | 17 + .../example/libs/element-plus-icons-vue.js | 3 + .../ide/example/libs/element-plus.full.min.js | 32 + .../ide/example/libs/element-plus.index.css | 1 + .../ide/example/libs/index.full.min.js.map | 1 + packages/ide/example/libs/lodash.min.js | 140 + packages/ide/example/libs/vtj-icons.css | 1 + packages/ide/example/libs/vtj-icons.js | 1 + packages/ide/example/libs/vtj-ui-assets.js | 1 + packages/ide/example/libs/vtj-ui.css | 1 + packages/ide/example/libs/vtj-ui.js | 1 + packages/ide/example/libs/vtj-utils.js | 22 + .../ide/example/libs/vue-router.global.js | 6 + packages/ide/example/libs/vue.global.js | 1 + .../ide/example/libs/vueuse.core.iife.min.js | 1 + .../example/libs/vueuse.shared.iife.min.js | 1 + packages/ide/example/libs/vxe-table.css | 1 + packages/ide/example/libs/vxe-table.min.js | 1 + packages/ide/example/libs/xe-utils.min.js | 6 + packages/ide/example/vtj.json | 11 + packages/ide/index.html | 2 +- packages/ide/package.json | 10 +- packages/ide/src/main.ts | 17 +- packages/ide/src/views/index.vue | 78 +- packages/ide/vite.config.ts | 8 +- packages/runtime/main.d.ts | 2 + packages/runtime/main.js | 16 + packages/runtime/package.json | 14 +- packages/runtime/src/Provider.ts | 9 +- packages/runtime/src/index.ts | 1 + packages/runtime/src/main.ts | 16 + packages/serve/src/server/controllers.ts | 8 +- packages/vtj/template-web/package.json | 6 +- .../vtj/template-web/src/components/Mask.vue | 13 + .../vtj/template-web/src/components/index.ts | 1 - packages/vtj/template-web/src/main.ts | 12 +- packages/vtj/template-web/src/vite-env.d.ts | 20 + packages/vtj/template-web/vite.config.ts | 5 +- 82 files changed, 40317 insertions(+), 106 deletions(-) create mode 100644 packages/ide/example/assets/12bhlwd2aj0-6802e92a.js create mode 100644 packages/ide/example/assets/16gd78t8ld2-e60c9367.js create mode 100644 packages/ide/example/assets/@ctrl-b0f23ca4.js create mode 100644 packages/ide/example/assets/@element-plus-45f3a8b7.js create mode 100644 packages/ide/example/assets/@floating-ui-4ed993c7.js create mode 100644 packages/ide/example/assets/@popperjs-7c8154ca.js create mode 100644 packages/ide/example/assets/@vue-062efada.js create mode 100644 packages/ide/example/assets/@vueuse-5c9c5b32.js create mode 100644 packages/ide/example/assets/Editor-c713e86f-83fa9a14.js create mode 100644 packages/ide/example/assets/async-validator-e3c32ad3.js create mode 100644 packages/ide/example/assets/codicon-79f233d0.ttf create mode 100644 packages/ide/example/assets/css.worker-bb872bbe.js create mode 100644 packages/ide/example/assets/dayjs-4ed993c7.js create mode 100644 packages/ide/example/assets/editor.worker-446b5315.js create mode 100644 packages/ide/example/assets/element-plus-66d46916.js create mode 100644 packages/ide/example/assets/element-plus-7e4f732e.css create mode 100644 packages/ide/example/assets/escape-html-4ed993c7.js create mode 100644 packages/ide/example/assets/html.worker-48d88763.js create mode 100644 packages/ide/example/assets/ide-2512294d.js create mode 100644 packages/ide/example/assets/index-02d652d2.css create mode 100644 packages/ide/example/assets/index-6ed7b77c.css create mode 100644 packages/ide/example/assets/index-7f8c78da.js create mode 100644 packages/ide/example/assets/index-e3bd3db9.js create mode 100644 packages/ide/example/assets/json.worker-978a7a20.js create mode 100644 packages/ide/example/assets/lodash-es-74278d6e.js create mode 100644 packages/ide/example/assets/lodash-unified-4ed993c7.js create mode 100644 packages/ide/example/assets/memoize-one-4ed993c7.js create mode 100644 packages/ide/example/assets/mitt-c2f3c268.js create mode 100644 packages/ide/example/assets/monaco-editor-456639a7.css create mode 100644 packages/ide/example/assets/monaco-editor-dada22c1.js create mode 100644 packages/ide/example/assets/normalize-wheel-es-4ed993c7.js create mode 100644 packages/ide/example/assets/not-found-ee0760e6.js create mode 100644 packages/ide/example/assets/polyfills-e1016800.js create mode 100644 packages/ide/example/assets/ts.worker-3bd4bb91.js create mode 100644 packages/ide/example/assets/vue-demi-4ed993c7.js create mode 100644 packages/ide/example/assets/vue-f0a73811.js create mode 100644 packages/ide/example/assets/vue-router-967a0738.js create mode 100644 packages/ide/example/favicon.ico create mode 100644 packages/ide/example/index.html create mode 100644 packages/ide/example/libs/element-plus-assets.js create mode 100644 packages/ide/example/libs/element-plus-icons-vue.js create mode 100644 packages/ide/example/libs/element-plus.full.min.js create mode 100644 packages/ide/example/libs/element-plus.index.css create mode 100644 packages/ide/example/libs/index.full.min.js.map create mode 100644 packages/ide/example/libs/lodash.min.js create mode 100644 packages/ide/example/libs/vtj-icons.css create mode 100644 packages/ide/example/libs/vtj-icons.js create mode 100644 packages/ide/example/libs/vtj-ui-assets.js create mode 100644 packages/ide/example/libs/vtj-ui.css create mode 100644 packages/ide/example/libs/vtj-ui.js create mode 100644 packages/ide/example/libs/vtj-utils.js create mode 100644 packages/ide/example/libs/vue-router.global.js create mode 100644 packages/ide/example/libs/vue.global.js create mode 100644 packages/ide/example/libs/vueuse.core.iife.min.js create mode 100644 packages/ide/example/libs/vueuse.shared.iife.min.js create mode 100644 packages/ide/example/libs/vxe-table.css create mode 100644 packages/ide/example/libs/vxe-table.min.js create mode 100644 packages/ide/example/libs/xe-utils.min.js create mode 100644 packages/ide/example/vtj.json create mode 100644 packages/runtime/main.d.ts create mode 100644 packages/runtime/main.js create mode 100644 packages/runtime/src/main.ts create mode 100644 packages/vtj/template-web/src/components/Mask.vue delete mode 100644 packages/vtj/template-web/src/components/index.ts diff --git a/package.json b/package.json index 3917f8542..bdb0dc62a 100644 --- a/package.json +++ b/package.json @@ -22,15 +22,18 @@ "dev:mui": "pnpm run copy:uni && cd packages/mui && pnpm run dev", "dev:docs": "cd packages/docs && npm run docs:dev", "dev:ide": "pnpm run copy && pnpm --filter @vtj/ide dev", + "dev:example": "pnpm run copy && pnpm --filter @vtj/ide dev:example", "preview": "cd dev && pnpm run preview", "preview:mui": "cd packages/mui && pnpm run preview", "preview:ide": "pnpm --filter @vtj/ide preview", "preview:boot": "pnpm --filter @vtj/boot preview", + "preview:example": "pnpm --filter @vtj/ide preview:example", "clean": "lerna clean -y && node scripts/clean.mjs", - "build": "pnpm run copy:uni && lerna run --no-private build && node scripts/mui.mjs", + "build": "pnpm run copy:uni && lerna run --no-private build && npm run build:example && node scripts/mui.mjs", "build:dev": "pnpm run copy && cd dev && pnpm run build", "build:boot": "pnpm --filter @vtj/boot build", "build:ide": "pnpm run copy && pnpm run copy && pnpm --filter @vtj/ide build", + "build:example": "pnpm run copy && pnpm run copy && pnpm --filter @vtj/ide build:example", "build:ui": "pnpm --filter @vtj/ui build", "build:utils": "pnpm --filter @vtj/utils build", "build:cli": "pnpm --filter @vtj/cli build", diff --git a/packages/boot/src/main.ts b/packages/boot/src/main.ts index 7f08be4a9..1c0ff8e58 100644 --- a/packages/boot/src/main.ts +++ b/packages/boot/src/main.ts @@ -6,19 +6,13 @@ import Mask from '@/components/Mask.vue'; import '@vtj/icons/lib/style.css'; import '@vtj/ui/lib/style.css'; import '@/style/index.scss'; -const modules = import.meta.glob([ - '/.vtj/project/*.json', - '/.vtj/file/*.json', - '/src/views/pages/*.vue', - '/src/components/blocks/*.vue' -]); + const app = createApp(App); (async () => { await createProvider({ app, router, - modules, components: { Mask } @@ -26,3 +20,4 @@ const app = createApp(App); app.use(router); app.mount('#app'); })(); + diff --git a/packages/boot/src/vite-env.d.ts b/packages/boot/src/vite-env.d.ts index 3345a8b69..3962c1218 100644 --- a/packages/boot/src/vite-env.d.ts +++ b/packages/boot/src/vite-env.d.ts @@ -1,9 +1,29 @@ /// +import type { ElMessageBox, Notify, ElLoading, Message } from 'element-plus'; + declare module '*.vue' { import type { DefineComponent } from 'vue'; const component: DefineComponent<{}, {}, any>; export default component; + + interface ComponentCustomProperties { + $message: any; + } } declare module '*.json'; + +declare module 'vue' { + interface ComponentCustomProperties { + $message: Message; + $msgbox: ElMessageBox; + $loading: ElLoading.service; + $notify: Notify; + $alert: ElMessageBox.alert; + $confirm: ElMessageBox.confirm; + $prompt: ElMessageBox.prompt; + } +} + +export {}; diff --git a/packages/engine/src/config/dependencies.ts b/packages/engine/src/config/dependencies.ts index 93d462207..4cdf1e29a 100644 --- a/packages/engine/src/config/dependencies.ts +++ b/packages/engine/src/config/dependencies.ts @@ -79,31 +79,31 @@ export const dependencies: Dependencie[] = [ required: false, official: true, enabled: false - }, - { - package: 'xe-utils', - version: 'latest', - library: 'XEUtils', - urls: ['./libs/xe-utils.min.js'], - required: false, - official: true, - enabled: false - }, - { - package: 'vxe-table', - version: 'latest', - library: 'VXETable', - urls: [ - './libs/vxe-table.css', - // '/libs/vxe-table-pro.css', - './libs/vxe-table.min.js' - // '/libs/vxe-table-pro.min.js' - ], - required: false, - official: true, - enabled: false } // { + // package: 'xe-utils', + // version: 'latest', + // library: 'XEUtils', + // urls: ['./libs/xe-utils.min.js'], + // required: false, + // official: true, + // enabled: false + // }, + // { + // package: 'vxe-table', + // version: 'latest', + // library: 'VXETable', + // urls: [ + // './libs/vxe-table.css', + // // '/libs/vxe-table-pro.css', + // './libs/vxe-table.min.js' + // // '/libs/vxe-table-pro.min.js' + // ], + // required: false, + // official: true, + // enabled: false + // } + // { // package: 'echarts', // version: 'latest', // library: 'echarts', diff --git a/packages/engine/src/views/widgets/NodePath.vue b/packages/engine/src/views/widgets/NodePath.vue index d76148d68..44d7215db 100644 --- a/packages/engine/src/views/widgets/NodePath.vue +++ b/packages/engine/src/views/widgets/NodePath.vue @@ -12,38 +12,39 @@ diff --git a/packages/ide/example/assets/12bhlwd2aj0-6802e92a.js b/packages/ide/example/assets/12bhlwd2aj0-6802e92a.js new file mode 100644 index 000000000..bb2064f98 --- /dev/null +++ b/packages/ide/example/assets/12bhlwd2aj0-6802e92a.js @@ -0,0 +1 @@ +import{C as l,_ as c}from"./index-e3bd3db9.js";import{m as i,l as _}from"./element-plus-66d46916.js";import{I as d,_ as f,f as B,ag as p,o as E,c as x,W as t,O as o,U as r,X as h}from"./@vue-062efada.js";import"./vue-router-967a0738.js";import"./monaco-editor-dada22c1.js";import"./vue-f0a73811.js";import"./@vueuse-5c9c5b32.js";import"./lodash-es-74278d6e.js";import"./async-validator-e3c32ad3.js";import"./@element-plus-45f3a8b7.js";import"./@ctrl-b0f23ca4.js";import"./@popperjs-7c8154ca.js";const v=d({name:"Users",inject:{},components:{ElButton:i,ElButtonGroup:_},props:{},emits:[],expose:["vtj"],setup(s){const e=B(),a=l();return{state:f({}),props:s,provider:a,vtj:e==null?void 0:e.proxy}},computed:{},watch:{},methods:{}});function C(s,e,a,u,j,$){const n=p("ElButton"),m=p("ElButtonGroup");return E(),x(h,null,[t(n,{type:"primary"},{default:o(()=>[r(" 按钮3 ")]),_:1}),t(m,null,{default:o(()=>[t(n,null,{default:o(()=>[r(" Button1 ")]),_:1}),t(n,null,{default:o(()=>[r(" Button2 ")]),_:1}),t(n,null,{default:o(()=>[r(" Button3 ")]),_:1})]),_:1})],64)}const O=c(v,[["render",C]]);export{O as default}; diff --git a/packages/ide/example/assets/16gd78t8ld2-e60c9367.js b/packages/ide/example/assets/16gd78t8ld2-e60c9367.js new file mode 100644 index 000000000..9106a0fc3 --- /dev/null +++ b/packages/ide/example/assets/16gd78t8ld2-e60c9367.js @@ -0,0 +1 @@ +import{C as m,_ as l}from"./index-e3bd3db9.js";import{l as i,m as _}from"./element-plus-66d46916.js";import{I as d,_ as f,f as B,ag as a,o as x,M as E,O as o,W as n,U as r}from"./@vue-062efada.js";import"./vue-router-967a0738.js";import"./monaco-editor-dada22c1.js";import"./vue-f0a73811.js";import"./@vueuse-5c9c5b32.js";import"./lodash-es-74278d6e.js";import"./async-validator-e3c32ad3.js";import"./@element-plus-45f3a8b7.js";import"./@ctrl-b0f23ca4.js";import"./@popperjs-7c8154ca.js";const v=d({name:"MyBlock",inject:{},components:{ElButtonGroup:i,ElButton:_},props:{},emits:[],expose:["vtj"],setup(s){const t=B(),p=m();return{state:f({}),props:s,provider:p,vtj:t==null?void 0:t.proxy}},computed:{},watch:{},methods:{}});function C(s,t,p,u,h,$){const e=a("ElButton"),c=a("ElButtonGroup");return x(),E(c,null,{default:o(()=>[n(e,null,{default:o(()=>[r(" Button1 ")]),_:1}),n(e,null,{default:o(()=>[r(" Button2 ")]),_:1}),n(e,null,{default:o(()=>[r(" Button3 ")]),_:1})]),_:1})}const U=l(v,[["render",C]]);export{U as default}; diff --git a/packages/ide/example/assets/@ctrl-b0f23ca4.js b/packages/ide/example/assets/@ctrl-b0f23ca4.js new file mode 100644 index 000000000..adcda1360 --- /dev/null +++ b/packages/ide/example/assets/@ctrl-b0f23ca4.js @@ -0,0 +1 @@ +function h(r,t){F(r)&&(r="100%");var e=I(r);return r=t===360?r:Math.min(t,Math.max(0,parseFloat(r))),e&&(r=parseInt(String(r*t),10)/100),Math.abs(r-t)<1e-6?1:(t===360?r=(r<0?r%t+t:r%t)/parseFloat(String(t)):r=r%t/parseFloat(String(t)),r)}function v(r){return Math.min(1,Math.max(0,r))}function F(r){return typeof r=="string"&&r.indexOf(".")!==-1&&parseFloat(r)===1}function I(r){return typeof r=="string"&&r.indexOf("%")!==-1}function A(r){return r=parseFloat(r),(isNaN(r)||r<0||r>1)&&(r=1),r}function p(r){return r<=1?"".concat(Number(r)*100,"%"):r}function b(r){return r.length===1?"0"+r:String(r)}function E(r,t,e){return{r:h(r,255)*255,g:h(t,255)*255,b:h(e,255)*255}}function M(r,t,e){r=h(r,255),t=h(t,255),e=h(e,255);var a=Math.max(r,t,e),n=Math.min(r,t,e),i=0,f=0,s=(a+n)/2;if(a===n)f=0,i=0;else{var u=a-n;switch(f=s>.5?u/(2-a-n):u/(a+n),a){case r:i=(t-e)/u+(t1&&(e-=1),e<1/6?r+(t-r)*(6*e):e<1/2?t:e<2/3?r+(t-r)*(2/3-e)*6:r}function B(r,t,e){var a,n,i;if(r=h(r,360),t=h(t,100),e=h(e,100),t===0)n=e,i=e,a=e;else{var f=e<.5?e*(1+t):e+t-e*t,s=2*e-f;a=l(s,f,r+1/3),n=l(s,f,r),i=l(s,f,r-1/3)}return{r:a*255,g:n*255,b:i*255}}function S(r,t,e){r=h(r,255),t=h(t,255),e=h(e,255);var a=Math.max(r,t,e),n=Math.min(r,t,e),i=0,f=a,s=a-n,u=a===0?0:s/a;if(a===n)i=0;else{switch(a){case r:i=(t-e)/s+(t>16,g:(r&65280)>>8,b:r&255}}var x={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function W(r){var t={r:0,g:0,b:0},e=1,a=null,n=null,i=null,f=!1,s=!1;return typeof r=="string"&&(r=U(r)),typeof r=="object"&&(g(r.r)&&g(r.g)&&g(r.b)?(t=E(r.r,r.g,r.b),f=!0,s=String(r.r).substr(-1)==="%"?"prgb":"rgb"):g(r.h)&&g(r.s)&&g(r.v)?(a=p(r.s),n=p(r.v),t=N(r.h,a,n),f=!0,s="hsv"):g(r.h)&&g(r.s)&&g(r.l)&&(a=p(r.s),i=p(r.l),t=B(r.h,a,i),f=!0,s="hsl"),Object.prototype.hasOwnProperty.call(r,"a")&&(e=r.a)),e=A(e),{ok:f,format:r.format||s,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:e}}var G="[-\\+]?\\d+%?",q="[-\\+]?\\d*\\.\\d+%?",d="(?:".concat(q,")|(?:").concat(G,")"),y="[\\s|\\(]+(".concat(d,")[,|\\s]+(").concat(d,")[,|\\s]+(").concat(d,")\\s*\\)?"),m="[\\s|\\(]+(".concat(d,")[,|\\s]+(").concat(d,")[,|\\s]+(").concat(d,")[,|\\s]+(").concat(d,")\\s*\\)?"),c={CSS_UNIT:new RegExp(d),rgb:new RegExp("rgb"+y),rgba:new RegExp("rgba"+m),hsl:new RegExp("hsl"+y),hsla:new RegExp("hsla"+m),hsv:new RegExp("hsv"+y),hsva:new RegExp("hsva"+m),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function U(r){if(r=r.trim().toLowerCase(),r.length===0)return!1;var t=!1;if(x[r])r=x[r],t=!0;else if(r==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var e=c.rgb.exec(r);return e?{r:e[1],g:e[2],b:e[3]}:(e=c.rgba.exec(r),e?{r:e[1],g:e[2],b:e[3],a:e[4]}:(e=c.hsl.exec(r),e?{h:e[1],s:e[2],l:e[3]}:(e=c.hsla.exec(r),e?{h:e[1],s:e[2],l:e[3],a:e[4]}:(e=c.hsv.exec(r),e?{h:e[1],s:e[2],v:e[3]}:(e=c.hsva.exec(r),e?{h:e[1],s:e[2],v:e[3],a:e[4]}:(e=c.hex8.exec(r),e?{r:o(e[1]),g:o(e[2]),b:o(e[3]),a:w(e[4]),format:t?"name":"hex8"}:(e=c.hex6.exec(r),e?{r:o(e[1]),g:o(e[2]),b:o(e[3]),format:t?"name":"hex"}:(e=c.hex4.exec(r),e?{r:o(e[1]+e[1]),g:o(e[2]+e[2]),b:o(e[3]+e[3]),a:w(e[4]+e[4]),format:t?"name":"hex8"}:(e=c.hex3.exec(r),e?{r:o(e[1]+e[1]),g:o(e[2]+e[2]),b:o(e[3]+e[3]),format:t?"name":"hex"}:!1)))))))))}function g(r){return!!c.CSS_UNIT.exec(String(r))}var D=function(){function r(t,e){t===void 0&&(t=""),e===void 0&&(e={});var a;if(t instanceof r)return t;typeof t=="number"&&(t=O(t)),this.originalInput=t;var n=W(t);this.originalInput=t,this.r=n.r,this.g=n.g,this.b=n.b,this.a=n.a,this.roundA=Math.round(100*this.a)/100,this.format=(a=e.format)!==null&&a!==void 0?a:n.format,this.gradientType=e.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=n.ok}return r.prototype.isDark=function(){return this.getBrightness()<128},r.prototype.isLight=function(){return!this.isDark()},r.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},r.prototype.getLuminance=function(){var t=this.toRgb(),e,a,n,i=t.r/255,f=t.g/255,s=t.b/255;return i<=.03928?e=i/12.92:e=Math.pow((i+.055)/1.055,2.4),f<=.03928?a=f/12.92:a=Math.pow((f+.055)/1.055,2.4),s<=.03928?n=s/12.92:n=Math.pow((s+.055)/1.055,2.4),.2126*e+.7152*a+.0722*n},r.prototype.getAlpha=function(){return this.a},r.prototype.setAlpha=function(t){return this.a=A(t),this.roundA=Math.round(100*this.a)/100,this},r.prototype.isMonochrome=function(){var t=this.toHsl().s;return t===0},r.prototype.toHsv=function(){var t=S(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},r.prototype.toHsvString=function(){var t=S(this.r,this.g,this.b),e=Math.round(t.h*360),a=Math.round(t.s*100),n=Math.round(t.v*100);return this.a===1?"hsv(".concat(e,", ").concat(a,"%, ").concat(n,"%)"):"hsva(".concat(e,", ").concat(a,"%, ").concat(n,"%, ").concat(this.roundA,")")},r.prototype.toHsl=function(){var t=M(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},r.prototype.toHslString=function(){var t=M(this.r,this.g,this.b),e=Math.round(t.h*360),a=Math.round(t.s*100),n=Math.round(t.l*100);return this.a===1?"hsl(".concat(e,", ").concat(a,"%, ").concat(n,"%)"):"hsla(".concat(e,", ").concat(a,"%, ").concat(n,"%, ").concat(this.roundA,")")},r.prototype.toHex=function(t){return t===void 0&&(t=!1),k(this.r,this.g,this.b,t)},r.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},r.prototype.toHex8=function(t){return t===void 0&&(t=!1),P(this.r,this.g,this.b,this.a,t)},r.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},r.prototype.toHexShortString=function(t){return t===void 0&&(t=!1),this.a===1?this.toHexString(t):this.toHex8String(t)},r.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},r.prototype.toRgbString=function(){var t=Math.round(this.r),e=Math.round(this.g),a=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(e,", ").concat(a,")"):"rgba(".concat(t,", ").concat(e,", ").concat(a,", ").concat(this.roundA,")")},r.prototype.toPercentageRgb=function(){var t=function(a){return"".concat(Math.round(h(a,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},r.prototype.toPercentageRgbString=function(){var t=function(a){return Math.round(h(a,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},r.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+k(this.r,this.g,this.b,!1),e=0,a=Object.entries(x);e=0,i=!e&&n&&(t.startsWith("hex")||t==="name");return i?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(a=this.toRgbString()),t==="prgb"&&(a=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(a=this.toHexString()),t==="hex3"&&(a=this.toHexString(!0)),t==="hex4"&&(a=this.toHex8String(!0)),t==="hex8"&&(a=this.toHex8String()),t==="name"&&(a=this.toName()),t==="hsl"&&(a=this.toHslString()),t==="hsv"&&(a=this.toHsvString()),a||this.toHexString())},r.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},r.prototype.clone=function(){return new r(this.toString())},r.prototype.lighten=function(t){t===void 0&&(t=10);var e=this.toHsl();return e.l+=t/100,e.l=v(e.l),new r(e)},r.prototype.brighten=function(t){t===void 0&&(t=10);var e=this.toRgb();return e.r=Math.max(0,Math.min(255,e.r-Math.round(255*-(t/100)))),e.g=Math.max(0,Math.min(255,e.g-Math.round(255*-(t/100)))),e.b=Math.max(0,Math.min(255,e.b-Math.round(255*-(t/100)))),new r(e)},r.prototype.darken=function(t){t===void 0&&(t=10);var e=this.toHsl();return e.l-=t/100,e.l=v(e.l),new r(e)},r.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},r.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},r.prototype.desaturate=function(t){t===void 0&&(t=10);var e=this.toHsl();return e.s-=t/100,e.s=v(e.s),new r(e)},r.prototype.saturate=function(t){t===void 0&&(t=10);var e=this.toHsl();return e.s+=t/100,e.s=v(e.s),new r(e)},r.prototype.greyscale=function(){return this.desaturate(100)},r.prototype.spin=function(t){var e=this.toHsl(),a=(e.h+t)%360;return e.h=a<0?360+a:a,new r(e)},r.prototype.mix=function(t,e){e===void 0&&(e=50);var a=this.toRgb(),n=new r(t).toRgb(),i=e/100,f={r:(n.r-a.r)*i+a.r,g:(n.g-a.g)*i+a.g,b:(n.b-a.b)*i+a.b,a:(n.a-a.a)*i+a.a};return new r(f)},r.prototype.analogous=function(t,e){t===void 0&&(t=6),e===void 0&&(e=30);var a=this.toHsl(),n=360/e,i=[this];for(a.h=(a.h-(n*t>>1)+720)%360;--t;)a.h=(a.h+n)%360,i.push(new r(a));return i},r.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new r(t)},r.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var e=this.toHsv(),a=e.h,n=e.s,i=e.v,f=[],s=1/t;t--;)f.push(new r({h:a,s:n,v:i})),i=(i+s)%1;return f},r.prototype.splitcomplement=function(){var t=this.toHsl(),e=t.h;return[this,new r({h:(e+72)%360,s:t.s,l:t.l}),new r({h:(e+216)%360,s:t.s,l:t.l})]},r.prototype.onBackground=function(t){var e=this.toRgb(),a=new r(t).toRgb(),n=e.a+a.a*(1-e.a);return new r({r:(e.r*e.a+a.r*a.a*(1-e.a))/n,g:(e.g*e.a+a.g*a.a*(1-e.a))/n,b:(e.b*e.a+a.b*a.a*(1-e.a))/n,a:n})},r.prototype.triad=function(){return this.polyad(3)},r.prototype.tetrad=function(){return this.polyad(4)},r.prototype.polyad=function(t){for(var e=this.toHsl(),a=e.h,n=[this],i=360/t,f=1;f=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(d){throw d},f:l}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o=!0,v=!1,c;return{s:function(){_=_.call(t)},n:function(){var d=_.next();return o=d.done,d},e:function(d){v=!0,c=d},f:function(){try{!o&&_.return!=null&&_.return()}finally{if(v)throw c}}}}function p(t,a){if(t){if(typeof t=="string")return h(t,a);var _=Object.prototype.toString.call(t).slice(8,-1);if(_==="Object"&&t.constructor&&(_=t.constructor.name),_==="Map"||_==="Set")return Array.from(t);if(_==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(_))return h(t,a)}}function h(t,a){(a==null||a>t.length)&&(a=t.length);for(var _=0,r=new Array(a);_',5),q0=[S0];function F0(t,a,_,r,l,o){return n(),s("svg",k0,q0)}var D0=i(b0,[["render",F0],["__file","bicycle.vue"]]),P0={name:"BottomLeft"},T0={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},R0=e("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"},null,-1),O0=e("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"},null,-1),I0=[R0,O0];function U0(t,a,_,r,l,o){return n(),s("svg",T0,I0)}var W0=i(P0,[["render",U0],["__file","bottom-left.vue"]]),G0={name:"BottomRight"},E0={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},N0=e("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"},null,-1),j0=e("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"},null,-1),Z0=[N0,j0];function K0(t,a,_,r,l,o){return n(),s("svg",E0,Z0)}var Q0=i(G0,[["render",K0],["__file","bottom-right.vue"]]),J0={name:"Bottom"},X0={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Y0=e("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"},null,-1),e1=[Y0];function t1(t,a,_,r,l,o){return n(),s("svg",X0,e1)}var _1=i(J0,[["render",t1],["__file","bottom.vue"]]),a1={name:"Bowl"},r1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},l1=e("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256h404.864zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64v-65.408zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248L493.248 320zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424L680.576 320zM352 768v64h320v-64H352z"},null,-1),o1=[l1];function n1(t,a,_,r,l,o){return n(),s("svg",r1,o1)}var s1=i(a1,[["render",n1],["__file","bowl.vue"]]),i1={name:"Box"},u1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},d1=e("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128H317.056zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"},null,-1),v1=e("path",{fill:"currentColor",d:"M64 320h896v64H64z"},null,-1),c1=e("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16L448 327.872zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320l64-256z"},null,-1),h1=[d1,v1,c1];function p1(t,a,_,r,l,o){return n(),s("svg",u1,h1)}var f1=i(i1,[["render",p1],["__file","box.vue"]]),w1={name:"Briefcase"},m1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},g1=e("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320h192zM128 576h768v320H128V576zm256-256h256.064V192H384v128z"},null,-1),$1=[g1];function z1(t,a,_,r,l,o){return n(),s("svg",m1,$1)}var x1=i(w1,[["render",z1],["__file","briefcase.vue"]]),H1={name:"BrushFilled"},M1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},C1=e("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128h-96zM192 512V128.064h640V512H192z"},null,-1),V1=[C1];function y1(t,a,_,r,l,o){return n(),s("svg",M1,V1)}var B1=i(H1,[["render",y1],["__file","brush-filled.vue"]]),L1={name:"Brush"},A1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},b1=e("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64V448zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"},null,-1),k1=[b1];function S1(t,a,_,r,l,o){return n(),s("svg",A1,k1)}var q1=i(L1,[["render",S1],["__file","brush.vue"]]),F1={name:"Burger"},D1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},P1=e("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H160zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44zM832 448a320 320 0 0 0-640 0h640zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704H512z"},null,-1),T1=[P1];function R1(t,a,_,r,l,o){return n(),s("svg",D1,T1)}var O1=i(F1,[["render",R1],["__file","burger.vue"]]),I1={name:"Calendar"},U1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},W1=e("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"},null,-1),G1=[W1];function E1(t,a,_,r,l,o){return n(),s("svg",U1,G1)}var N1=i(I1,[["render",E1],["__file","calendar.vue"]]),j1={name:"CameraFilled"},Z1={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},K1=e("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224H160zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4zm0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),Q1=[K1];function J1(t,a,_,r,l,o){return n(),s("svg",Z1,Q1)}var X1=i(j1,[["render",J1],["__file","camera-filled.vue"]]),Y1={name:"Camera"},e4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},t4=e("path",{fill:"currentColor",d:"M896 256H128v576h768V256zm-199.424-64-32.064-64h-304.96l-32 64h369.024zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32zm416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448z"},null,-1),_4=[t4];function a4(t,a,_,r,l,o){return n(),s("svg",e4,_4)}var r4=i(Y1,[["render",a4],["__file","camera.vue"]]),l4={name:"CaretBottom"},o4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},n4=e("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"},null,-1),s4=[n4];function i4(t,a,_,r,l,o){return n(),s("svg",o4,s4)}var u4=i(l4,[["render",i4],["__file","caret-bottom.vue"]]),d4={name:"CaretLeft"},v4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},c4=e("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"},null,-1),h4=[c4];function p4(t,a,_,r,l,o){return n(),s("svg",v4,h4)}var f4=i(d4,[["render",p4],["__file","caret-left.vue"]]),w4={name:"CaretRight"},m4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},g4=e("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"},null,-1),$4=[g4];function z4(t,a,_,r,l,o){return n(),s("svg",m4,$4)}var x4=i(w4,[["render",z4],["__file","caret-right.vue"]]),H4={name:"CaretTop"},M4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},C4=e("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"},null,-1),V4=[C4];function y4(t,a,_,r,l,o){return n(),s("svg",M4,V4)}var B4=i(H4,[["render",y4],["__file","caret-top.vue"]]),L4={name:"Cellphone"},A4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},b4=e("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H256zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64zm128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64zm128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),k4=[b4];function S4(t,a,_,r,l,o){return n(),s("svg",A4,k4)}var q4=i(L4,[["render",S4],["__file","cellphone.vue"]]),F4={name:"ChatDotRound"},D4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},P4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),T4=e("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),R4=[P4,T4];function O4(t,a,_,r,l,o){return n(),s("svg",D4,R4)}var I4=i(F4,[["render",O4],["__file","chat-dot-round.vue"]]),U4={name:"ChatDotSquare"},W4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},G4=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),E4=e("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),N4=[G4,E4];function j4(t,a,_,r,l,o){return n(),s("svg",W4,N4)}var Z4=i(U4,[["render",j4],["__file","chat-dot-square.vue"]]),K4={name:"ChatLineRound"},Q4={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},J4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),X4=e("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),Y4=[J4,X4];function e6(t,a,_,r,l,o){return n(),s("svg",Q4,Y4)}var t6=i(K4,[["render",e6],["__file","chat-line-round.vue"]]),_6={name:"ChatLineSquare"},a6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},r6=e("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),l6=e("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),o6=[r6,l6];function n6(t,a,_,r,l,o){return n(),s("svg",a6,o6)}var s6=i(_6,[["render",n6],["__file","chat-line-square.vue"]]),i6={name:"ChatRound"},u6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},d6=e("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"},null,-1),v6=[d6];function c6(t,a,_,r,l,o){return n(),s("svg",u6,v6)}var h6=i(i6,[["render",c6],["__file","chat-round.vue"]]),p6={name:"ChatSquare"},f6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},w6=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),m6=[w6];function g6(t,a,_,r,l,o){return n(),s("svg",f6,m6)}var $6=i(p6,[["render",g6],["__file","chat-square.vue"]]),z6={name:"Check"},x6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},H6=e("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"},null,-1),M6=[H6];function C6(t,a,_,r,l,o){return n(),s("svg",x6,M6)}var V6=i(z6,[["render",C6],["__file","check.vue"]]),y6={name:"Checked"},B6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},L6=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704v-64zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024 311.616 537.28zM384 192V96h256v96H384z"},null,-1),A6=[L6];function b6(t,a,_,r,l,o){return n(),s("svg",B6,A6)}var k6=i(y6,[["render",b6],["__file","checked.vue"]]),S6={name:"Cherry"},q6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},F6=e("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320z"},null,-1),D6=[F6];function P6(t,a,_,r,l,o){return n(),s("svg",q6,D6)}var T6=i(S6,[["render",P6],["__file","cherry.vue"]]),R6={name:"Chicken"},O6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},I6=e("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84zM244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52 3.52-56.32zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"},null,-1),U6=[I6];function W6(t,a,_,r,l,o){return n(),s("svg",O6,U6)}var G6=i(R6,[["render",W6],["__file","chicken.vue"]]),E6={name:"ChromeFilled"},N6={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},j6=e("path",{fill:"currentColor",d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z"},null,-1),Z6=e("path",{fill:"currentColor",d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91z"},null,-1),K6=e("path",{fill:"currentColor",d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21zm117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z"},null,-1),Q6=[j6,Z6,K6];function J6(t,a,_,r,l,o){return n(),s("svg",N6,Q6)}var X6=i(E6,[["render",J6],["__file","chrome-filled.vue"]]),Y6={name:"CircleCheckFilled"},e3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},t3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"},null,-1),_3=[t3];function a3(t,a,_,r,l,o){return n(),s("svg",e3,_3)}var r3=i(Y6,[["render",a3],["__file","circle-check-filled.vue"]]),l3={name:"CircleCheck"},o3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},n3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),s3=e("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"},null,-1),i3=[n3,s3];function u3(t,a,_,r,l,o){return n(),s("svg",o3,i3)}var d3=i(l3,[["render",u3],["__file","circle-check.vue"]]),v3={name:"CircleCloseFilled"},c3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},h3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"},null,-1),p3=[h3];function f3(t,a,_,r,l,o){return n(),s("svg",c3,p3)}var w3=i(v3,[["render",f3],["__file","circle-close-filled.vue"]]),m3={name:"CircleClose"},g3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},$3=e("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"},null,-1),z3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),x3=[$3,z3];function H3(t,a,_,r,l,o){return n(),s("svg",g3,x3)}var M3=i(m3,[["render",H3],["__file","circle-close.vue"]]),C3={name:"CirclePlusFilled"},V3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},y3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"},null,-1),B3=[y3];function L3(t,a,_,r,l,o){return n(),s("svg",V3,B3)}var A3=i(C3,[["render",L3],["__file","circle-plus-filled.vue"]]),b3={name:"CirclePlus"},k3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},S3=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),q3=e("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0z"},null,-1),F3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),D3=[S3,q3,F3];function P3(t,a,_,r,l,o){return n(),s("svg",k3,D3)}var T3=i(b3,[["render",P3],["__file","circle-plus.vue"]]),R3={name:"Clock"},O3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},I3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),U3=e("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),W3=e("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"},null,-1),G3=[I3,U3,W3];function E3(t,a,_,r,l,o){return n(),s("svg",O3,G3)}var N3=i(R3,[["render",E3],["__file","clock.vue"]]),j3={name:"CloseBold"},Z3={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},K3=e("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"},null,-1),Q3=[K3];function J3(t,a,_,r,l,o){return n(),s("svg",Z3,Q3)}var X3=i(j3,[["render",J3],["__file","close-bold.vue"]]),Y3={name:"Close"},ee={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},te=e("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"},null,-1),_e=[te];function ae(t,a,_,r,l,o){return n(),s("svg",ee,_e)}var re=i(Y3,[["render",ae],["__file","close.vue"]]),le={name:"Cloudy"},oe={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ne=e("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),se=[ne];function ie(t,a,_,r,l,o){return n(),s("svg",oe,se)}var ue=i(le,[["render",ie],["__file","cloudy.vue"]]),de={name:"CoffeeCup"},ve={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ce=e("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v32zm0 64v256a128 128 0 1 0 0-256zM96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192H128z"},null,-1),he=[ce];function pe(t,a,_,r,l,o){return n(),s("svg",ve,he)}var fe=i(de,[["render",pe],["__file","coffee-cup.vue"]]),we={name:"Coffee"},me={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ge=e("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304L822.592 192zm-64.128 0 4.544-64H260.736l4.544 64h493.184zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784zm68.736 64 36.544 512H708.16l36.544-512H279.04z"},null,-1),$e=[ge];function ze(t,a,_,r,l,o){return n(),s("svg",me,$e)}var xe=i(we,[["render",ze],["__file","coffee.vue"]]),He={name:"Coin"},Me={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ce=e("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),Ve=e("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),ye=e("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224zm0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160z"},null,-1),Be=[Ce,Ve,ye];function Le(t,a,_,r,l,o){return n(),s("svg",Me,Be)}var Ae=i(He,[["render",Le],["__file","coin.vue"]]),be={name:"ColdDrink"},ke={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Se=e("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64zM656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928H299.008z"},null,-1),qe=[Se];function Fe(t,a,_,r,l,o){return n(),s("svg",ke,qe)}var De=i(be,[["render",Fe],["__file","cold-drink.vue"]]),Pe={name:"CollectionTag"},Te={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Re=e("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"},null,-1),Oe=[Re];function Ie(t,a,_,r,l,o){return n(),s("svg",Te,Oe)}var Ue=i(Pe,[["render",Ie],["__file","collection-tag.vue"]]),We={name:"Collection"},Ge={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ee=e("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64v544zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64z"},null,-1),Ne=e("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96H240zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224zm144-608v250.88l96-76.8 96 76.8V128H384zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44V64z"},null,-1),je=[Ee,Ne];function Ze(t,a,_,r,l,o){return n(),s("svg",Ge,je)}var Ke=i(We,[["render",Ze],["__file","collection.vue"]]),Qe={name:"Comment"},Je={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xe=e("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zM128 128v640h192v160l224-160h352V128H128z"},null,-1),Ye=[Xe];function e8(t,a,_,r,l,o){return n(),s("svg",Je,Ye)}var t8=i(Qe,[["render",e8],["__file","comment.vue"]]),_8={name:"Compass"},a8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},r8=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),l8=e("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832z"},null,-1),o8=[r8,l8];function n8(t,a,_,r,l,o){return n(),s("svg",a8,o8)}var s8=i(_8,[["render",n8],["__file","compass.vue"]]),i8={name:"Connection"},u8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},d8=e("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192h192z"},null,-1),v8=e("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192H384z"},null,-1),c8=[d8,v8];function h8(t,a,_,r,l,o){return n(),s("svg",u8,c8)}var p8=i(i8,[["render",h8],["__file","connection.vue"]]),f8={name:"Coordinate"},w8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},m8=e("path",{fill:"currentColor",d:"M480 512h64v320h-64z"},null,-1),g8=e("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64zm64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128zm256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),$8=[m8,g8];function z8(t,a,_,r,l,o){return n(),s("svg",w8,$8)}var x8=i(f8,[["render",z8],["__file","coordinate.vue"]]),H8={name:"CopyDocument"},M8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},C8=e("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64h64z"},null,-1),V8=e("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H384zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64z"},null,-1),y8=[C8,V8];function B8(t,a,_,r,l,o){return n(),s("svg",M8,y8)}var L8=i(H8,[["render",B8],["__file","copy-document.vue"]]),A8={name:"Cpu"},b8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},k8=e("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H320zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128z"},null,-1),S8=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zM64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32z"},null,-1),q8=[k8,S8];function F8(t,a,_,r,l,o){return n(),s("svg",b8,q8)}var D8=i(A8,[["render",F8],["__file","cpu.vue"]]),P8={name:"CreditCard"},T8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},R8=e("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416V324.096zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"},null,-1),O8=e("path",{fill:"currentColor",d:"M64 320h896v64H64v-64zm0 128h896v64H64v-64zm128 192h256v64H192z"},null,-1),I8=[R8,O8];function U8(t,a,_,r,l,o){return n(),s("svg",T8,I8)}var W8=i(P8,[["render",U8],["__file","credit-card.vue"]]),G8={name:"Crop"},E8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},N8=e("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0v672z"},null,-1),j8=e("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32z"},null,-1),Z8=[N8,j8];function K8(t,a,_,r,l,o){return n(),s("svg",E8,Z8)}var Q8=i(G8,[["render",K8],["__file","crop.vue"]]),J8={name:"DArrowLeft"},X8={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Y8=e("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"},null,-1),et=[Y8];function tt(t,a,_,r,l,o){return n(),s("svg",X8,et)}var _t=i(J8,[["render",tt],["__file","d-arrow-left.vue"]]),at={name:"DArrowRight"},rt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},lt=e("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688zm-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"},null,-1),ot=[lt];function nt(t,a,_,r,l,o){return n(),s("svg",rt,ot)}var st=i(at,[["render",nt],["__file","d-arrow-right.vue"]]),it={name:"DCaret"},ut={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},dt=e("path",{fill:"currentColor",d:"m512 128 288 320H224l288-320zM224 576h576L512 896 224 576z"},null,-1),vt=[dt];function ct(t,a,_,r,l,o){return n(),s("svg",ut,vt)}var ht=i(it,[["render",ct],["__file","d-caret.vue"]]),pt={name:"DataAnalysis"},ft={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},wt=e("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216zM832 192H192v512h640V192zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32z"},null,-1),mt=[wt];function gt(t,a,_,r,l,o){return n(),s("svg",ft,mt)}var $t=i(pt,[["render",gt],["__file","data-analysis.vue"]]),zt={name:"DataBoard"},xt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ht=e("path",{fill:"currentColor",d:"M32 128h960v64H32z"},null,-1),Mt=e("path",{fill:"currentColor",d:"M192 192v512h640V192H192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V128z"},null,-1),Ct=e("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32L322.176 960zm453.888 0h-73.856L576 741.44l55.424-32L776.064 960z"},null,-1),Vt=[Ht,Mt,Ct];function yt(t,a,_,r,l,o){return n(),s("svg",xt,Vt)}var Bt=i(zt,[["render",yt],["__file","data-board.vue"]]),Lt={name:"DataLine"},At={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},bt=e("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192zM832 192H192v512h640V192zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"},null,-1),kt=[bt];function St(t,a,_,r,l,o){return n(),s("svg",At,kt)}var qt=i(Lt,[["render",St],["__file","data-line.vue"]]),Ft={name:"DeleteFilled"},Dt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Pt=e("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"},null,-1),Tt=[Pt];function Rt(t,a,_,r,l,o){return n(),s("svg",Dt,Tt)}var Ot=i(Ft,[["render",Rt],["__file","delete-filled.vue"]]),It={name:"DeleteLocation"},Ut={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Wt=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),Gt=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),Et=e("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),Nt=[Wt,Gt,Et];function jt(t,a,_,r,l,o){return n(),s("svg",Ut,Nt)}var Zt=i(It,[["render",jt],["__file","delete-location.vue"]]),Kt={name:"Delete"},Qt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Jt=e("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"},null,-1),Xt=[Jt];function Yt(t,a,_,r,l,o){return n(),s("svg",Qt,Xt)}var e_=i(Kt,[["render",Yt],["__file","delete.vue"]]),t_={name:"Dessert"},__={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},a_=e("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416zm287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736zM384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64z"},null,-1),r_=[a_];function l_(t,a,_,r,l,o){return n(),s("svg",__,r_)}var o_=i(t_,[["render",l_],["__file","dessert.vue"]]),n_={name:"Discount"},s_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},i_=e("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336V704zm0 64v128h576V768H224zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),u_=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),d_=[i_,u_];function v_(t,a,_,r,l,o){return n(),s("svg",s_,d_)}var c_=i(n_,[["render",v_],["__file","discount.vue"]]),h_={name:"DishDot"},p_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},f_=e("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-128h768a384 384 0 1 0-768 0zm447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256h127.68z"},null,-1),w_=[f_];function m_(t,a,_,r,l,o){return n(),s("svg",p_,w_)}var g_=i(h_,[["render",m_],["__file","dish-dot.vue"]]),$_={name:"Dish"},z_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},x_=e("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152zM128 704h768a384 384 0 1 0-768 0zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64z"},null,-1),H_=[x_];function M_(t,a,_,r,l,o){return n(),s("svg",z_,H_)}var C_=i($_,[["render",M_],["__file","dish.vue"]]),V_={name:"DocumentAdd"},y_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},B_=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"},null,-1),L_=[B_];function A_(t,a,_,r,l,o){return n(),s("svg",y_,L_)}var b_=i(V_,[["render",A_],["__file","document-add.vue"]]),k_={name:"DocumentChecked"},S_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},q_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312L478.4 646.144z"},null,-1),F_=[q_];function D_(t,a,_,r,l,o){return n(),s("svg",S_,F_)}var P_=i(k_,[["render",D_],["__file","document-checked.vue"]]),T_={name:"DocumentCopy"},R_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},O_=e("path",{fill:"currentColor",d:"M128 320v576h576V320H128zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zM960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32zM256 672h320v64H256v-64zm0-192h320v64H256v-64z"},null,-1),I_=[O_];function U_(t,a,_,r,l,o){return n(),s("svg",R_,I_)}var W_=i(T_,[["render",U_],["__file","document-copy.vue"]]),G_={name:"DocumentDelete"},E_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},N_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"},null,-1),j_=[N_];function Z_(t,a,_,r,l,o){return n(),s("svg",E_,j_)}var K_=i(G_,[["render",Z_],["__file","document-delete.vue"]]),Q_={name:"DocumentRemove"},J_={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},X_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm192 512h320v64H352v-64z"},null,-1),Y_=[X_];function ea(t,a,_,r,l,o){return n(),s("svg",J_,Y_)}var ta=i(Q_,[["render",ea],["__file","document-remove.vue"]]),_a={name:"Document"},aa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ra=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h160v64H320v-64zm0 384h384v64H320v-64z"},null,-1),la=[ra];function oa(t,a,_,r,l,o){return n(),s("svg",aa,la)}var na=i(_a,[["render",oa],["__file","document.vue"]]),sa={name:"Download"},ia={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ua=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64v450.304z"},null,-1),da=[ua];function va(t,a,_,r,l,o){return n(),s("svg",ia,da)}var ca=i(sa,[["render",va],["__file","download.vue"]]),ha={name:"Drizzling"},pa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},fa=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM288 800h64v64h-64v-64zm192 0h64v64h-64v-64zm-96 96h64v64h-64v-64zm192 0h64v64h-64v-64zm96-96h64v64h-64v-64z"},null,-1),wa=[fa];function ma(t,a,_,r,l,o){return n(),s("svg",pa,wa)}var ga=i(ha,[["render",ma],["__file","drizzling.vue"]]),$a={name:"EditPen"},za={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},xa=e("path",{fill:"currentColor",d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696L175.168 732.8zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336L104.32 708.8zm384 254.272v-64h448v64h-448z"},null,-1),Ha=[xa];function Ma(t,a,_,r,l,o){return n(),s("svg",za,Ha)}var Ca=i($a,[["render",Ma],["__file","edit-pen.vue"]]),Va={name:"Edit"},ya={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ba=e("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"},null,-1),La=e("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"},null,-1),Aa=[Ba,La];function ba(t,a,_,r,l,o){return n(),s("svg",ya,Aa)}var ka=i(Va,[["render",ba],["__file","edit.vue"]]),Sa={name:"ElemeFilled"},qa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Fa=e("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112zm150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"},null,-1),Da=[Fa];function Pa(t,a,_,r,l,o){return n(),s("svg",qa,Da)}var Ta=i(Sa,[["render",Pa],["__file","eleme-filled.vue"]]),Ra={name:"Eleme"},Oa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ia=e("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"},null,-1),Ua=[Ia];function Wa(t,a,_,r,l,o){return n(),s("svg",Oa,Ua)}var Ga=i(Ra,[["render",Wa],["__file","eleme.vue"]]),Ea={name:"ElementPlus"},Na={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ja=e("path",{fill:"currentColor",d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8zM714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z"},null,-1),Za=[ja];function Ka(t,a,_,r,l,o){return n(),s("svg",Na,Za)}var Qa=i(Ea,[["render",Ka],["__file","element-plus.vue"]]),Ja={name:"Expand"},Xa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ya=e("path",{fill:"currentColor",d:"M128 192h768v128H128V192zm0 256h512v128H128V448zm0 256h768v128H128V704zm576-352 192 160-192 128V352z"},null,-1),er=[Ya];function tr(t,a,_,r,l,o){return n(),s("svg",Xa,er)}var _r=i(Ja,[["render",tr],["__file","expand.vue"]]),ar={name:"Failed"},rr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},lr=e("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384v-64zm-320 0V96h256v96H384z"},null,-1),or=[lr];function nr(t,a,_,r,l,o){return n(),s("svg",rr,or)}var sr=i(ar,[["render",nr],["__file","failed.vue"]]),ir={name:"Female"},ur={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},dr=e("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),vr=e("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32z"},null,-1),cr=e("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),hr=[dr,vr,cr];function pr(t,a,_,r,l,o){return n(),s("svg",ur,hr)}var fr=i(ir,[["render",pr],["__file","female.vue"]]),wr={name:"Files"},mr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},gr=e("path",{fill:"currentColor",d:"M128 384v448h768V384H128zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32zm64-128h704v64H160zm96-128h512v64H256z"},null,-1),$r=[gr];function zr(t,a,_,r,l,o){return n(),s("svg",mr,$r)}var xr=i(wr,[["render",zr],["__file","files.vue"]]),Hr={name:"Film"},Mr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Cr=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),Vr=e("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64h192z"},null,-1),yr=[Cr,Vr];function Br(t,a,_,r,l,o){return n(),s("svg",Mr,yr)}var Lr=i(Hr,[["render",Br],["__file","film.vue"]]),Ar={name:"Filter"},br={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},kr=e("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288L384 523.392z"},null,-1),Sr=[kr];function qr(t,a,_,r,l,o){return n(),s("svg",br,Sr)}var Fr=i(Ar,[["render",qr],["__file","filter.vue"]]),Dr={name:"Finished"},Pr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Tr=e("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64H736zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64H608zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64H480z"},null,-1),Rr=[Tr];function Or(t,a,_,r,l,o){return n(),s("svg",Pr,Rr)}var Ir=i(Dr,[["render",Or],["__file","finished.vue"]]),Ur={name:"FirstAidKit"},Wr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Gr=e("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H192zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),Er=e("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96zM352 128v64h320v-64H352zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),Nr=[Gr,Er];function jr(t,a,_,r,l,o){return n(),s("svg",Wr,Nr)}var Zr=i(Ur,[["render",jr],["__file","first-aid-kit.vue"]]),Kr={name:"Flag"},Qr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Jr=e("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96v64z"},null,-1),Xr=[Jr];function Yr(t,a,_,r,l,o){return n(),s("svg",Qr,Xr)}var el=i(Kr,[["render",Yr],["__file","flag.vue"]]),tl={name:"Fold"},_l={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},al=e("path",{fill:"currentColor",d:"M896 192H128v128h768V192zm0 256H384v128h512V448zm0 256H128v128h768V704zM320 384 128 512l192 128V384z"},null,-1),rl=[al];function ll(t,a,_,r,l,o){return n(),s("svg",_l,rl)}var ol=i(tl,[["render",ll],["__file","fold.vue"]]),nl={name:"FolderAdd"},sl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},il=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm384 416V416h64v128h128v64H544v128h-64V608H352v-64h128z"},null,-1),ul=[il];function dl(t,a,_,r,l,o){return n(),s("svg",sl,ul)}var vl=i(nl,[["render",dl],["__file","folder-add.vue"]]),cl={name:"FolderChecked"},hl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},pl=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312L510.08 630.144z"},null,-1),fl=[pl];function wl(t,a,_,r,l,o){return n(),s("svg",hl,fl)}var ml=i(cl,[["render",wl],["__file","folder-checked.vue"]]),gl={name:"FolderDelete"},$l={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},zl=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248L466.752 576z"},null,-1),xl=[zl];function Hl(t,a,_,r,l,o){return n(),s("svg",$l,xl)}var Ml=i(gl,[["render",Hl],["__file","folder-delete.vue"]]),Cl={name:"FolderOpened"},Vl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},yl=e("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"},null,-1),Bl=[yl];function Ll(t,a,_,r,l,o){return n(),s("svg",Vl,Bl)}var Al=i(Cl,[["render",Ll],["__file","folder-opened.vue"]]),bl={name:"FolderRemove"},kl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Sl=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm256 416h320v64H352v-64z"},null,-1),ql=[Sl];function Fl(t,a,_,r,l,o){return n(),s("svg",kl,ql)}var Dl=i(bl,[["render",Fl],["__file","folder-remove.vue"]]),Pl={name:"Folder"},Tl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Rl=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32z"},null,-1),Ol=[Rl];function Il(t,a,_,r,l,o){return n(),s("svg",Tl,Ol)}var Ul=i(Pl,[["render",Il],["__file","folder.vue"]]),Wl={name:"Food"},Gl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},El=e("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0zm128 0h192a96 96 0 0 0-192 0zm439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352zM672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32v-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288z"},null,-1),Nl=[El];function jl(t,a,_,r,l,o){return n(),s("svg",Gl,Nl)}var Zl=i(Wl,[["render",jl],["__file","food.vue"]]),Kl={name:"Football"},Ql={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Jl=e("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768z"},null,-1),Xl=e("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0zm-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0l-11.136-63.104zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"},null,-1),Yl=[Jl,Xl];function e5(t,a,_,r,l,o){return n(),s("svg",Ql,Yl)}var t5=i(Kl,[["render",e5],["__file","football.vue"]]),_5={name:"ForkSpoon"},a5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},r5=e("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0V572.48zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192z"},null,-1),l5=[r5];function o5(t,a,_,r,l,o){return n(),s("svg",a5,l5)}var n5=i(_5,[["render",o5],["__file","fork-spoon.vue"]]),s5={name:"Fries"},i5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},u5=e("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096V224zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160h37.12zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160h-16zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512h-1.216zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480V288zm-128 96V224a32 32 0 0 0-64 0v160h64-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704H253.12z"},null,-1),d5=[u5];function v5(t,a,_,r,l,o){return n(),s("svg",i5,d5)}var c5=i(s5,[["render",v5],["__file","fries.vue"]]),h5={name:"FullScreen"},p5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},f5=e("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64v.064zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64l-192 .192zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64v-.064z"},null,-1),w5=[f5];function m5(t,a,_,r,l,o){return n(),s("svg",p5,w5)}var g5=i(h5,[["render",m5],["__file","full-screen.vue"]]),$5={name:"GobletFull"},z5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},x5=e("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320zm503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4z"},null,-1),H5=[x5];function M5(t,a,_,r,l,o){return n(),s("svg",z5,H5)}var C5=i($5,[["render",M5],["__file","goblet-full.vue"]]),V5={name:"GobletSquareFull"},y5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},B5=e("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848z"},null,-1),L5=[B5];function A5(t,a,_,r,l,o){return n(),s("svg",y5,L5)}var b5=i(V5,[["render",A5],["__file","goblet-square-full.vue"]]),k5={name:"GobletSquare"},S5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},q5=e("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912zM256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256v191.68z"},null,-1),F5=[q5];function D5(t,a,_,r,l,o){return n(),s("svg",S5,F5)}var P5=i(k5,[["render",D5],["__file","goblet-square.vue"]]),T5={name:"Goblet"},R5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},O5=e("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4zM256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320z"},null,-1),I5=[O5];function U5(t,a,_,r,l,o){return n(),s("svg",R5,I5)}var W5=i(T5,[["render",U5],["__file","goblet.vue"]]),G5={name:"GoldMedal"},E5={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},N5=e("path",{fill:"currentColor",d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128h128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128H384zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z"},null,-1),j5=e("path",{fill:"currentColor",d:"M544 480H416v64h64v192h-64v64h192v-64h-64z"},null,-1),Z5=[N5,j5];function K5(t,a,_,r,l,o){return n(),s("svg",E5,Z5)}var Q5=i(G5,[["render",K5],["__file","gold-medal.vue"]]),J5={name:"GoodsFilled"},X5={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Y5=e("path",{fill:"currentColor",d:"M192 352h640l64 544H128l64-544zm128 224h64V448h-64v128zm320 0h64V448h-64v128zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0z"},null,-1),eo=[Y5];function to(t,a,_,r,l,o){return n(),s("svg",X5,eo)}var _o=i(J5,[["render",to],["__file","goods-filled.vue"]]),ao={name:"Goods"},ro={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},lo=e("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96z"},null,-1),oo=[lo];function no(t,a,_,r,l,o){return n(),s("svg",ro,oo)}var so=i(ao,[["render",no],["__file","goods.vue"]]),io={name:"Grape"},uo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},vo=e("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64v67.2zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),co=[vo];function ho(t,a,_,r,l,o){return n(),s("svg",uo,co)}var po=i(io,[["render",ho],["__file","grape.vue"]]),fo={name:"Grid"},wo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},mo=e("path",{fill:"currentColor",d:"M640 384v256H384V384h256zm64 0h192v256H704V384zm-64 512H384V704h256v192zm64 0V704h192v192H704zm-64-768v192H384V128h256zm64 0h192v192H704V128zM320 384v256H128V384h192zm0 512H128V704h192v192zm0-768v192H128V128h192z"},null,-1),go=[mo];function $o(t,a,_,r,l,o){return n(),s("svg",wo,go)}var zo=i(fo,[["render",$o],["__file","grid.vue"]]),xo={name:"Guide"},Ho={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Mo=e("path",{fill:"currentColor",d:"M640 608h-64V416h64v192zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768h64zM384 608V416h64v192h-64zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32v160z"},null,-1),Co=e("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192zm678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"},null,-1),Vo=[Mo,Co];function yo(t,a,_,r,l,o){return n(),s("svg",Ho,Vo)}var Bo=i(xo,[["render",yo],["__file","guide.vue"]]),Lo={name:"Handbag"},Ao={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},bo=e("path",{fill:"currentColor",d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01zM421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5zM832 896H192V320h128v128h64V320h256v128h64V320h128v576z"},null,-1),ko=[bo];function So(t,a,_,r,l,o){return n(),s("svg",Ao,ko)}var qo=i(Lo,[["render",So],["__file","handbag.vue"]]),Fo={name:"Headset"},Do={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Po=e("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848zM896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0V640zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0z"},null,-1),To=[Po];function Ro(t,a,_,r,l,o){return n(),s("svg",Do,To)}var Oo=i(Fo,[["render",Ro],["__file","headset.vue"]]),Io={name:"HelpFilled"},Uo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Wo=e("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480zm0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544h225.472zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"},null,-1),Go=[Wo];function Eo(t,a,_,r,l,o){return n(),s("svg",Uo,Go)}var No=i(Io,[["render",Eo],["__file","help-filled.vue"]]),jo={name:"Help"},Zo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ko=e("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752zm45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992l-91.008-90.944zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Qo=[Ko];function Jo(t,a,_,r,l,o){return n(),s("svg",Zo,Qo)}var Xo=i(jo,[["render",Jo],["__file","help.vue"]]),Yo={name:"Hide"},e9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},t9=e("path",{fill:"currentColor",d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"},null,-1),_9=e("path",{fill:"currentColor",d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z"},null,-1),a9=[t9,_9];function r9(t,a,_,r,l,o){return n(),s("svg",e9,a9)}var l9=i(Yo,[["render",r9],["__file","hide.vue"]]),o9={name:"Histogram"},n9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},s9=e("path",{fill:"currentColor",d:"M416 896V128h192v768H416zm-288 0V448h192v448H128zm576 0V320h192v576H704z"},null,-1),i9=[s9];function u9(t,a,_,r,l,o){return n(),s("svg",n9,i9)}var d9=i(o9,[["render",u9],["__file","histogram.vue"]]),v9={name:"HomeFilled"},c9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},h9=e("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"},null,-1),p9=[h9];function f9(t,a,_,r,l,o){return n(),s("svg",c9,p9)}var w9=i(v9,[["render",f9],["__file","home-filled.vue"]]),m9={name:"HotWater"},g9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},$9=e("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067v68.267zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133zm273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133zM170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"},null,-1),z9=[$9];function x9(t,a,_,r,l,o){return n(),s("svg",g9,z9)}var H9=i(m9,[["render",x9],["__file","hot-water.vue"]]),M9={name:"House"},C9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},V9=e("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328 192 413.952zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576z"},null,-1),y9=[V9];function B9(t,a,_,r,l,o){return n(),s("svg",C9,y9)}var L9=i(M9,[["render",B9],["__file","house.vue"]]),A9={name:"IceCreamRound"},b9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},k9=e("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248L398.848 670.4zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"},null,-1),S9=[k9];function q9(t,a,_,r,l,o){return n(),s("svg",b9,S9)}var F9=i(A9,[["render",q9],["__file","ice-cream-round.vue"]]),D9={name:"IceCreamSquare"},P9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},T9=e("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h64zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96h-64zm-64 0h-64v160a32 32 0 1 0 64 0V704z"},null,-1),R9=[T9];function O9(t,a,_,r,l,o){return n(),s("svg",P9,R9)}var I9=i(D9,[["render",O9],["__file","ice-cream-square.vue"]]),U9={name:"IceCream"},W9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},G9=e("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448h.64zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56z"},null,-1),E9=[G9];function N9(t,a,_,r,l,o){return n(),s("svg",W9,E9)}var j9=i(U9,[["render",N9],["__file","ice-cream.vue"]]),Z9={name:"IceDrink"},K9={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Q9=e("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128H512zm-64 0H256.256l16.064 128H448V448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64zm-64 8.064A256.448 256.448 0 0 0 264.256 384H448V200.704zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32v32.64zM743.68 640H280.32l32.128 256h399.104l32.128-256z"},null,-1),J9=[Q9];function X9(t,a,_,r,l,o){return n(),s("svg",K9,J9)}var Y9=i(Z9,[["render",X9],["__file","ice-drink.vue"]]),en={name:"IceTea"},tn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},_n=e("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352zM264.064 256h495.872a256.128 256.128 0 0 0-495.872 0zm495.424 256H264.512l48 384h398.976l48-384zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32zm160 192h64v64h-64v-64zm192 64h64v64h-64v-64zm-128 64h64v64h-64v-64zm64-192h64v64h-64v-64z"},null,-1),an=[_n];function rn(t,a,_,r,l,o){return n(),s("svg",tn,an)}var ln=i(en,[["render",rn],["__file","ice-tea.vue"]]),on={name:"InfoFilled"},nn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},sn=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64zm67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344zM590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"},null,-1),un=[sn];function dn(t,a,_,r,l,o){return n(),s("svg",nn,un)}var vn=i(on,[["render",dn],["__file","info-filled.vue"]]),cn={name:"Iphone"},hn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},pn=e("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768H224zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64v544zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96H256zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0z"},null,-1),fn=[pn];function wn(t,a,_,r,l,o){return n(),s("svg",hn,fn)}var mn=i(cn,[["render",wn],["__file","iphone.vue"]]),gn={name:"Key"},$n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},zn=e("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064zM512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384z"},null,-1),xn=[zn];function Hn(t,a,_,r,l,o){return n(),s("svg",$n,xn)}var Mn=i(gn,[["render",Hn],["__file","key.vue"]]),Cn={name:"KnifeFork"},Vn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},yn=e("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56zm384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288H640z"},null,-1),Bn=[yn];function Ln(t,a,_,r,l,o){return n(),s("svg",Vn,Bn)}var An=i(Cn,[["render",Ln],["__file","knife-fork.vue"]]),bn={name:"Lightning"},kn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Sn=e("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"},null,-1),qn=e("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736H416z"},null,-1),Fn=[Sn,qn];function Dn(t,a,_,r,l,o){return n(),s("svg",kn,Fn)}var Pn=i(bn,[["render",Dn],["__file","lightning.vue"]]),Tn={name:"Link"},Rn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},On=e("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"},null,-1),In=[On];function Un(t,a,_,r,l,o){return n(),s("svg",Rn,In)}var Wn=i(Tn,[["render",Un],["__file","link.vue"]]),Gn={name:"List"},En={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Nn=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384v-64zM288 512h448v-64H288v64zm0 256h448v-64H288v64zm96-576V96h256v96H384z"},null,-1),jn=[Nn];function Zn(t,a,_,r,l,o){return n(),s("svg",En,jn)}var Kn=i(Gn,[["render",Zn],["__file","list.vue"]]),Qn={name:"Loading"},Jn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xn=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"},null,-1),Yn=[Xn];function es(t,a,_,r,l,o){return n(),s("svg",Jn,Yn)}var ts=i(Qn,[["render",es],["__file","loading.vue"]]),_s={name:"LocationFilled"},as={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},rs=e("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928zm0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6z"},null,-1),ls=[rs];function os(t,a,_,r,l,o){return n(),s("svg",as,ls)}var ns=i(_s,[["render",os],["__file","location-filled.vue"]]),ss={name:"LocationInformation"},is={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},us=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),ds=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),vs=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),cs=[us,ds,vs];function hs(t,a,_,r,l,o){return n(),s("svg",is,cs)}var ps=i(ss,[["render",hs],["__file","location-information.vue"]]),fs={name:"Location"},ws={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ms=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),gs=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),$s=[ms,gs];function zs(t,a,_,r,l,o){return n(),s("svg",ws,$s)}var xs=i(fs,[["render",zs],["__file","location.vue"]]),Hs={name:"Lock"},Ms={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Cs=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),Vs=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"},null,-1),ys=[Cs,Vs];function Bs(t,a,_,r,l,o){return n(),s("svg",Ms,ys)}var Ls=i(Hs,[["render",Bs],["__file","lock.vue"]]),As={name:"Lollipop"},bs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ks=e("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0h1.28zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696zm105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"},null,-1),Ss=[ks];function qs(t,a,_,r,l,o){return n(),s("svg",bs,Ss)}var Fs=i(As,[["render",qs],["__file","lollipop.vue"]]),Ds={name:"MagicStick"},Ps={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ts=e("path",{fill:"currentColor",d:"M512 64h64v192h-64V64zm0 576h64v192h-64V640zM160 480v-64h192v64H160zm576 0v-64h192v64H736zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248L657.152 606.4zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248-316.8 316.8zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248L702.4 334.848z"},null,-1),Rs=[Ts];function Os(t,a,_,r,l,o){return n(),s("svg",Ps,Rs)}var Is=i(Ds,[["render",Os],["__file","magic-stick.vue"]]),Us={name:"Magnet"},Ws={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Gs=e("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64h128zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0z"},null,-1),Es=[Gs];function Ns(t,a,_,r,l,o){return n(),s("svg",Ws,Es)}var js=i(Us,[["render",Ns],["__file","magnet.vue"]]),Zs={name:"Male"},Ks={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Qs=e("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450zm0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5zm253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125z"},null,-1),Js=e("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125z"},null,-1),Xs=e("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"},null,-1),Ys=[Qs,Js,Xs];function ei(t,a,_,r,l,o){return n(),s("svg",Ks,Ys)}var ti=i(Zs,[["render",ei],["__file","male.vue"]]),_i={name:"Management"},ai={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ri=e("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128h256zm-448 0h128v768H128V128z"},null,-1),li=[ri];function oi(t,a,_,r,l,o){return n(),s("svg",ai,li)}var ni=i(_i,[["render",oi],["__file","management.vue"]]),si={name:"MapLocation"},ii={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ui=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),di=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256zm345.6 192L960 960H672v-64H352v64H64l102.4-256h691.2zm-68.928 0H235.328l-76.8 192h706.944l-76.8-192z"},null,-1),vi=[ui,di];function ci(t,a,_,r,l,o){return n(),s("svg",ii,vi)}var hi=i(si,[["render",ci],["__file","map-location.vue"]]),pi={name:"Medal"},fi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},wi=e("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),mi=e("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8V128zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128H640zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64z"},null,-1),gi=[wi,mi];function $i(t,a,_,r,l,o){return n(),s("svg",fi,gi)}var zi=i(pi,[["render",$i],["__file","medal.vue"]]),xi={name:"Memo"},Hi={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},Mi=e("path",{fill:"currentColor",d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z"},null,-1),Ci=e("path",{fill:"currentColor",d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01zM192 896V128h96v768h-96zm640 0H352V128h480v768z"},null,-1),Vi=e("path",{fill:"currentColor",d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32zm0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z"},null,-1),yi=[Mi,Ci,Vi];function Bi(t,a,_,r,l,o){return n(),s("svg",Hi,yi)}var Li=i(xi,[["render",Bi],["__file","memo.vue"]]),Ai={name:"Menu"},bi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ki=e("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H608zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H608z"},null,-1),Si=[ki];function qi(t,a,_,r,l,o){return n(),s("svg",bi,Si)}var Fi=i(Ai,[["render",qi],["__file","menu.vue"]]),Di={name:"MessageBox"},Pi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ti=e("path",{fill:"currentColor",d:"M288 384h448v64H288v-64zm96-128h256v64H384v-64zM131.456 512H384v128h256V512h252.544L721.856 192H302.144L131.456 512zM896 576H704v128H320V576H128v256h768V576zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"},null,-1),Ri=[Ti];function Oi(t,a,_,r,l,o){return n(),s("svg",Pi,Ri)}var Ii=i(Di,[["render",Oi],["__file","message-box.vue"]]),Ui={name:"Message"},Wi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Gi=e("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224H128zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64z"},null,-1),Ei=e("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224h784zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056z"},null,-1),Ni=[Gi,Ei];function ji(t,a,_,r,l,o){return n(),s("svg",Wi,Ni)}var Zi=i(Ui,[["render",ji],["__file","message.vue"]]),Ki={name:"Mic"},Qi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ji=e("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64h96zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128h-96z"},null,-1),Xi=[Ji];function Yi(t,a,_,r,l,o){return n(),s("svg",Qi,Xi)}var eu=i(Ki,[["render",Yi],["__file","mic.vue"]]),tu={name:"Microphone"},_u={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},au=e("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128zm0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64zm-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64z"},null,-1),ru=[au];function lu(t,a,_,r,l,o){return n(),s("svg",_u,ru)}var ou=i(tu,[["render",lu],["__file","microphone.vue"]]),nu={name:"MilkTea"},su={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},iu=e("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128h192zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320H276.48zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64zm493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12z"},null,-1),uu=[iu];function du(t,a,_,r,l,o){return n(),s("svg",su,uu)}var vu=i(nu,[["render",du],["__file","milk-tea.vue"]]),cu={name:"Minus"},hu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},pu=e("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"},null,-1),fu=[pu];function wu(t,a,_,r,l,o){return n(),s("svg",hu,fu)}var mu=i(cu,[["render",wu],["__file","minus.vue"]]),gu={name:"Money"},$u={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},zu=e("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640h64z"},null,-1),xu=e("path",{fill:"currentColor",d:"M768 192H128v448h640V192zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"},null,-1),Hu=e("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320zm0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),Mu=[zu,xu,Hu];function Cu(t,a,_,r,l,o){return n(),s("svg",$u,Mu)}var Vu=i(gu,[["render",Cu],["__file","money.vue"]]),yu={name:"Monitor"},Bu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Lu=e("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H544zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H192z"},null,-1),Au=[Lu];function bu(t,a,_,r,l,o){return n(),s("svg",Bu,Au)}var ku=i(yu,[["render",bu],["__file","monitor.vue"]]),Su={name:"MoonNight"},qu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Fu=e("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512zM171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"},null,-1),Du=e("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"},null,-1),Pu=[Fu,Du];function Tu(t,a,_,r,l,o){return n(),s("svg",qu,Pu)}var Ru=i(Su,[["render",Tu],["__file","moon-night.vue"]]),Ou={name:"Moon"},Iu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Uu=e("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696z"},null,-1),Wu=[Uu];function Gu(t,a,_,r,l,o){return n(),s("svg",Iu,Wu)}var Eu=i(Ou,[["render",Gu],["__file","moon.vue"]]),Nu={name:"MoreFilled"},ju={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Zu=e("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224z"},null,-1),Ku=[Zu];function Qu(t,a,_,r,l,o){return n(),s("svg",ju,Ku)}var Ju=i(Nu,[["render",Qu],["__file","more-filled.vue"]]),Xu={name:"More"},Yu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ed=e("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"},null,-1),td=[ed];function _d(t,a,_,r,l,o){return n(),s("svg",Yu,td)}var ad=i(Xu,[["render",_d],["__file","more.vue"]]),rd={name:"MostlyCloudy"},ld={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},od=e("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048zm15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72z"},null,-1),nd=[od];function sd(t,a,_,r,l,o){return n(),s("svg",ld,nd)}var id=i(rd,[["render",sd],["__file","mostly-cloudy.vue"]]),ud={name:"Mouse"},dd={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},vd=e("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256H438.144zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"},null,-1),cd=e("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32zm32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96v64z"},null,-1),hd=[vd,cd];function pd(t,a,_,r,l,o){return n(),s("svg",dd,hd)}var fd=i(ud,[["render",pd],["__file","mouse.vue"]]),wd={name:"Mug"},md={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},gd=e("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64zm64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32H800z"},null,-1),$d=[gd];function zd(t,a,_,r,l,o){return n(),s("svg",md,$d)}var xd=i(wd,[["render",zd],["__file","mug.vue"]]),Hd={name:"MuteNotification"},Md={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Cd=e("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64H241.216zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0z"},null,-1),Vd=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),yd=[Cd,Vd];function Bd(t,a,_,r,l,o){return n(),s("svg",Md,yd)}var Ld=i(Hd,[["render",Bd],["__file","mute-notification.vue"]]),Ad={name:"Mute"},bd={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},kd=e("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128zm51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528l47.808-47.808zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032zM266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288L266.752 737.6z"},null,-1),Sd=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),qd=[kd,Sd];function Fd(t,a,_,r,l,o){return n(),s("svg",bd,qd)}var Dd=i(Ad,[["render",Fd],["__file","mute.vue"]]),Pd={name:"NoSmoking"},Td={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Rd=e("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256l-64 64zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744l64-64zM768 576v128h128V576H768zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Od=[Rd];function Id(t,a,_,r,l,o){return n(),s("svg",Td,Od)}var Ud=i(Pd,[["render",Id],["__file","no-smoking.vue"]]),Wd={name:"Notebook"},Gd={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ed=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),Nd=e("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),jd=[Ed,Nd];function Zd(t,a,_,r,l,o){return n(),s("svg",Gd,jd)}var Kd=i(Wd,[["render",Zd],["__file","notebook.vue"]]),Qd={name:"Notification"},Jd={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xd=e("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128h256z"},null,-1),Yd=e("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"},null,-1),ev=[Xd,Yd];function tv(t,a,_,r,l,o){return n(),s("svg",Jd,ev)}var _v=i(Qd,[["render",tv],["__file","notification.vue"]]),av={name:"Odometer"},rv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},lv=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),ov=e("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0z"},null,-1),nv=e("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928z"},null,-1),sv=[lv,ov,nv];function iv(t,a,_,r,l,o){return n(),s("svg",rv,sv)}var uv=i(av,[["render",iv],["__file","odometer.vue"]]),dv={name:"OfficeBuilding"},vv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},cv=e("path",{fill:"currentColor",d:"M192 128v704h384V128H192zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),hv=e("path",{fill:"currentColor",d:"M256 256h256v64H256v-64zm0 192h256v64H256v-64zm0 192h256v64H256v-64zm384-128h128v64H640v-64zm0 128h128v64H640v-64zM64 832h896v64H64v-64z"},null,-1),pv=e("path",{fill:"currentColor",d:"M640 384v448h192V384H640zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32z"},null,-1),fv=[cv,hv,pv];function wv(t,a,_,r,l,o){return n(),s("svg",vv,fv)}var mv=i(dv,[["render",wv],["__file","office-building.vue"]]),gv={name:"Open"},$v={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},zv=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),xv=e("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),Hv=[zv,xv];function Mv(t,a,_,r,l,o){return n(),s("svg",$v,Hv)}var Cv=i(gv,[["render",Mv],["__file","open.vue"]]),Vv={name:"Operation"},yv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Bv=e("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64h261.44zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64h453.44zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64h133.44z"},null,-1),Lv=[Bv];function Av(t,a,_,r,l,o){return n(),s("svg",yv,Lv)}var bv=i(Vv,[["render",Av],["__file","operation.vue"]]),kv={name:"Opportunity"},Sv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},qv=e("path",{fill:"currentColor",d:"M384 960v-64h192.064v64H384zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416zm-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288h64z"},null,-1),Fv=[qv];function Dv(t,a,_,r,l,o){return n(),s("svg",Sv,Fv)}var Pv=i(kv,[["render",Dv],["__file","opportunity.vue"]]),Tv={name:"Orange"},Rv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ov=e("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696l182.912-182.976zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696V129.344zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024L218.752 264.064zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544H129.344zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696L264.064 805.248zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128z"},null,-1),Iv=[Ov];function Uv(t,a,_,r,l,o){return n(),s("svg",Rv,Iv)}var Wv=i(Tv,[["render",Uv],["__file","orange.vue"]]),Gv={name:"Paperclip"},Ev={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Nv=e("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"},null,-1),jv=[Nv];function Zv(t,a,_,r,l,o){return n(),s("svg",Ev,jv)}var Kv=i(Gv,[["render",Zv],["__file","paperclip.vue"]]),Qv={name:"PartlyCloudy"},Jv={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xv=e("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),Yv=e("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"},null,-1),e7=[Xv,Yv];function t7(t,a,_,r,l,o){return n(),s("svg",Jv,e7)}var _7=i(Qv,[["render",t7],["__file","partly-cloudy.vue"]]),a7={name:"Pear"},r7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},l7=e("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"},null,-1),o7=[l7];function n7(t,a,_,r,l,o){return n(),s("svg",r7,o7)}var s7=i(a7,[["render",n7],["__file","pear.vue"]]),i7={name:"PhoneFilled"},u7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},d7=e("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"},null,-1),v7=[d7];function c7(t,a,_,r,l,o){return n(),s("svg",u7,v7)}var h7=i(i7,[["render",c7],["__file","phone-filled.vue"]]),p7={name:"Phone"},f7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},w7=e("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192zm0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384z"},null,-1),m7=[w7];function g7(t,a,_,r,l,o){return n(),s("svg",f7,m7)}var $7=i(p7,[["render",g7],["__file","phone.vue"]]),z7={name:"PictureFilled"},x7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},H7=e("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32H96zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112zM256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384z"},null,-1),M7=[H7];function C7(t,a,_,r,l,o){return n(),s("svg",x7,M7)}var V7=i(z7,[["render",C7],["__file","picture-filled.vue"]]),y7={name:"PictureRounded"},B7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},L7=e("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768zm0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z"},null,-1),A7=e("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"},null,-1),b7=[L7,A7];function k7(t,a,_,r,l,o){return n(),s("svg",B7,b7)}var S7=i(y7,[["render",k7],["__file","picture-rounded.vue"]]),q7={name:"Picture"},F7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},D7=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),P7=e("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952L185.408 876.992z"},null,-1),T7=[D7,P7];function R7(t,a,_,r,l,o){return n(),s("svg",F7,T7)}var O7=i(q7,[["render",R7],["__file","picture.vue"]]),I7={name:"PieChart"},U7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},W7=e("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"},null,-1),G7=e("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512V64z"},null,-1),E7=[W7,G7];function N7(t,a,_,r,l,o){return n(),s("svg",U7,E7)}var j7=i(I7,[["render",N7],["__file","pie-chart.vue"]]),Z7={name:"Place"},K7={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Q7=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),J7=e("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32z"},null,-1),X7=e("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912z"},null,-1),Y7=[Q7,J7,X7];function ec(t,a,_,r,l,o){return n(),s("svg",K7,Y7)}var tc=i(Z7,[["render",ec],["__file","place.vue"]]),_c={name:"Platform"},ac={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},rc=e("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64h192zM128 704V128h768v576H128z"},null,-1),lc=[rc];function oc(t,a,_,r,l,o){return n(),s("svg",ac,lc)}var nc=i(_c,[["render",oc],["__file","platform.vue"]]),sc={name:"Plus"},ic={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},uc=e("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"},null,-1),dc=[uc];function vc(t,a,_,r,l,o){return n(),s("svg",ic,dc)}var cc=i(sc,[["render",vc],["__file","plus.vue"]]),hc={name:"Pointer"},pc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},fc=e("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128zM359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32L359.04 556.8z"},null,-1),wc=[fc];function mc(t,a,_,r,l,o){return n(),s("svg",pc,wc)}var gc=i(hc,[["render",mc],["__file","pointer.vue"]]),$c={name:"Position"},zc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},xc=e("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"},null,-1),Hc=[xc];function Mc(t,a,_,r,l,o){return n(),s("svg",zc,Hc)}var Cc=i($c,[["render",Mc],["__file","position.vue"]]),Vc={name:"Postcard"},yc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Bc=e("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32H160zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96z"},null,-1),Lc=e("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128zM288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32zm0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),Ac=[Bc,Lc];function bc(t,a,_,r,l,o){return n(),s("svg",yc,Ac)}var kc=i(Vc,[["render",bc],["__file","postcard.vue"]]),Sc={name:"Pouring"},qc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Fc=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32z"},null,-1),Dc=[Fc];function Pc(t,a,_,r,l,o){return n(),s("svg",qc,Dc)}var Tc=i(Sc,[["render",Pc],["__file","pouring.vue"]]),Rc={name:"Present"},Oc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ic=e("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576h288zm64 0h288V320H544v256h288v64H544v256zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V256z"},null,-1),Uc=e("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),Wc=e("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Gc=e("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Ec=[Ic,Uc,Wc,Gc];function Nc(t,a,_,r,l,o){return n(),s("svg",Oc,Ec)}var jc=i(Rc,[["render",Nc],["__file","present.vue"]]),Zc={name:"PriceTag"},Kc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Qc=e("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),Jc=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Xc=[Qc,Jc];function Yc(t,a,_,r,l,o){return n(),s("svg",Kc,Xc)}var eh=i(Zc,[["render",Yc],["__file","price-tag.vue"]]),th={name:"Printer"},_h={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ah=e("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256V768zm64-192v320h384V576H320zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704h128zm64-448h384V128H320v128zm-64 128h64v64h-64v-64zm128 0h64v64h-64v-64z"},null,-1),rh=[ah];function lh(t,a,_,r,l,o){return n(),s("svg",_h,rh)}var oh=i(th,[["render",lh],["__file","printer.vue"]]),nh={name:"Promotion"},sh={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ih=e("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472 64 448zm256 512V657.024L512 768 320 960z"},null,-1),uh=[ih];function dh(t,a,_,r,l,o){return n(),s("svg",sh,uh)}var vh=i(nh,[["render",dh],["__file","promotion.vue"]]),ch={name:"QuartzWatch"},hh={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},ph=e("path",{fill:"currentColor",d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49v-.01zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01zm6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49zM512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99zm183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01z"},null,-1),fh=e("path",{fill:"currentColor",d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5zM416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68V128zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68V896zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768z"},null,-1),wh=e("path",{fill:"currentColor",d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99zm112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02z"},null,-1),mh=[ph,fh,wh];function gh(t,a,_,r,l,o){return n(),s("svg",hh,mh)}var $h=i(ch,[["render",gh],["__file","quartz-watch.vue"]]),zh={name:"QuestionFilled"},xh={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Hh=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"},null,-1),Mh=[Hh];function Ch(t,a,_,r,l,o){return n(),s("svg",xh,Mh)}var Vh=i(zh,[["render",Ch],["__file","question-filled.vue"]]),yh={name:"Rank"},Bh={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Lh=e("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"},null,-1),Ah=[Lh];function bh(t,a,_,r,l,o){return n(),s("svg",Bh,Ah)}var kh=i(yh,[["render",bh],["__file","rank.vue"]]),Sh={name:"ReadingLamp"},qh={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Fh=e("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm-44.672-768-99.52 448h608.384l-99.52-448H307.328zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"},null,-1),Dh=e("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32zm-192-.064h64V960h-64z"},null,-1),Ph=[Fh,Dh];function Th(t,a,_,r,l,o){return n(),s("svg",qh,Ph)}var Rh=i(Sh,[["render",Th],["__file","reading-lamp.vue"]]),Oh={name:"Reading"},Ih={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Uh=e("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72l384 54.848zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"},null,-1),Wh=e("path",{fill:"currentColor",d:"M480 192h64v704h-64z"},null,-1),Gh=[Uh,Wh];function Eh(t,a,_,r,l,o){return n(),s("svg",Ih,Gh)}var Nh=i(Oh,[["render",Eh],["__file","reading.vue"]]),jh={name:"RefreshLeft"},Zh={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Kh=e("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"},null,-1),Qh=[Kh];function Jh(t,a,_,r,l,o){return n(),s("svg",Zh,Qh)}var Xh=i(jh,[["render",Jh],["__file","refresh-left.vue"]]),Yh={name:"RefreshRight"},ep={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},tp=e("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"},null,-1),_p=[tp];function ap(t,a,_,r,l,o){return n(),s("svg",ep,_p)}var rp=i(Yh,[["render",ap],["__file","refresh-right.vue"]]),lp={name:"Refresh"},op={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},np=e("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"},null,-1),sp=[np];function ip(t,a,_,r,l,o){return n(),s("svg",op,sp)}var up=i(lp,[["render",ip],["__file","refresh.vue"]]),dp={name:"Refrigerator"},vp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},cp=e("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32v288zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512H256zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96zm32 224h64v96h-64v-96zm0 288h64v96h-64v-96z"},null,-1),hp=[cp];function pp(t,a,_,r,l,o){return n(),s("svg",vp,hp)}var fp=i(dp,[["render",pp],["__file","refrigerator.vue"]]),wp={name:"RemoveFilled"},mp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},gp=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zM288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512z"},null,-1),$p=[gp];function zp(t,a,_,r,l,o){return n(),s("svg",mp,$p)}var xp=i(wp,[["render",zp],["__file","remove-filled.vue"]]),Hp={name:"Remove"},Mp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Cp=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),Vp=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),yp=[Cp,Vp];function Bp(t,a,_,r,l,o){return n(),s("svg",Mp,yp)}var Lp=i(Hp,[["render",Bp],["__file","remove.vue"]]),Ap={name:"Right"},bp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},kp=e("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312L754.752 480z"},null,-1),Sp=[kp];function qp(t,a,_,r,l,o){return n(),s("svg",bp,Sp)}var Fp=i(Ap,[["render",qp],["__file","right.vue"]]),Dp={name:"ScaleToOriginal"},Pp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Tp=e("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"},null,-1),Rp=[Tp];function Op(t,a,_,r,l,o){return n(),s("svg",Pp,Rp)}var Ip=i(Dp,[["render",Op],["__file","scale-to-original.vue"]]),Up={name:"School"},Wp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Gp=e("path",{fill:"currentColor",d:"M224 128v704h576V128H224zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),Ep=e("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"},null,-1),Np=e("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0v64zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192zM320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"},null,-1),jp=[Gp,Ep,Np];function Zp(t,a,_,r,l,o){return n(),s("svg",Wp,jp)}var Kp=i(Up,[["render",Zp],["__file","school.vue"]]),Qp={name:"Scissor"},Jp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xp=e("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248z"},null,-1),Yp=[Xp];function ef(t,a,_,r,l,o){return n(),s("svg",Jp,Yp)}var tf=i(Qp,[["render",ef],["__file","scissor.vue"]]),_f={name:"Search"},af={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},rf=e("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704z"},null,-1),lf=[rf];function of(t,a,_,r,l,o){return n(),s("svg",af,lf)}var nf=i(_f,[["render",of],["__file","search.vue"]]),sf={name:"Select"},uf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},df=e("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"},null,-1),vf=[df];function cf(t,a,_,r,l,o){return n(),s("svg",uf,vf)}var hf=i(sf,[["render",cf],["__file","select.vue"]]),pf={name:"Sell"},ff={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},wf=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"},null,-1),mf=[wf];function gf(t,a,_,r,l,o){return n(),s("svg",ff,mf)}var $f=i(pf,[["render",gf],["__file","sell.vue"]]),zf={name:"SemiSelect"},xf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Hf=e("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64z"},null,-1),Mf=[Hf];function Cf(t,a,_,r,l,o){return n(),s("svg",xf,Mf)}var Vf=i(zf,[["render",Cf],["__file","semi-select.vue"]]),yf={name:"Service"},Bf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Lf=e("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0zM256 448a128 128 0 1 0 0 256V448zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128z"},null,-1),Af=[Lf];function bf(t,a,_,r,l,o){return n(),s("svg",Bf,Af)}var kf=i(yf,[["render",bf],["__file","service.vue"]]),Sf={name:"SetUp"},qf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ff=e("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64H224zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96z"},null,-1),Df=e("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Pf=e("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Tf=e("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),Rf=[Ff,Df,Pf,Tf];function Of(t,a,_,r,l,o){return n(),s("svg",qf,Rf)}var If=i(Sf,[["render",Of],["__file","set-up.vue"]]),Uf={name:"Setting"},Wf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Gf=e("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384zm0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256z"},null,-1),Ef=[Gf];function Nf(t,a,_,r,l,o){return n(),s("svg",Wf,Ef)}var jf=i(Uf,[["render",Nf],["__file","setting.vue"]]),Zf={name:"Share"},Kf={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Qf=e("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"},null,-1),Jf=[Qf];function Xf(t,a,_,r,l,o){return n(),s("svg",Kf,Jf)}var Yf=i(Zf,[["render",Xf],["__file","share.vue"]]),ew={name:"Ship"},tw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},_w=e("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216L512 386.88zm0-70.272 144.768-65.792L512 171.84v144.768zM512 512H148.864l18.24 64H856.96l18.24-64H512zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408z"},null,-1),aw=[_w];function rw(t,a,_,r,l,o){return n(),s("svg",tw,aw)}var lw=i(ew,[["render",rw],["__file","ship.vue"]]),ow={name:"Shop"},nw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},sw=e("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384v-64zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640l60.544 423.808z"},null,-1),iw=[sw];function uw(t,a,_,r,l,o){return n(),s("svg",nw,iw)}var dw=i(ow,[["render",uw],["__file","shop.vue"]]),vw={name:"ShoppingBag"},cw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},hw=e("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320H704zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32h160zm64 0h256a128 128 0 1 0-256 0z"},null,-1),pw=e("path",{fill:"currentColor",d:"M192 704h640v64H192z"},null,-1),fw=[hw,pw];function ww(t,a,_,r,l,o){return n(),s("svg",cw,fw)}var mw=i(vw,[["render",ww],["__file","shopping-bag.vue"]]),gw={name:"ShoppingCartFull"},$w={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},zw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),xw=e("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04z"},null,-1),Hw=[zw,xw];function Mw(t,a,_,r,l,o){return n(),s("svg",$w,Hw)}var Cw=i(gw,[["render",Mw],["__file","shopping-cart-full.vue"]]),Vw={name:"ShoppingCart"},yw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Bw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),Lw=[Bw];function Aw(t,a,_,r,l,o){return n(),s("svg",yw,Lw)}var bw=i(Vw,[["render",Aw],["__file","shopping-cart.vue"]]),kw={name:"ShoppingTrolley"},Sw={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},qw=e("path",{fill:"currentColor",d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833zm439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64h551zM256 192h622l-96 384H256V192zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833z"},null,-1),Fw=[qw];function Dw(t,a,_,r,l,o){return n(),s("svg",Sw,Fw)}var Pw=i(kw,[["render",Dw],["__file","shopping-trolley.vue"]]),Tw={name:"Smoking"},Rw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ow=e("path",{fill:"currentColor",d:"M256 576v128h640V576H256zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32z"},null,-1),Iw=e("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Uw=[Ow,Iw];function Ww(t,a,_,r,l,o){return n(),s("svg",Rw,Uw)}var Gw=i(Tw,[["render",Ww],["__file","smoking.vue"]]),Ew={name:"Soccer"},Nw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},jw=e("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24zm72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536L871.04 418.496zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152zm452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"},null,-1),Zw=[jw];function Kw(t,a,_,r,l,o){return n(),s("svg",Nw,Zw)}var Qw=i(Ew,[["render",Kw],["__file","soccer.vue"]]),Jw={name:"SoldOut"},Xw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Yw=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"},null,-1),em=[Yw];function tm(t,a,_,r,l,o){return n(),s("svg",Xw,em)}var _m=i(Jw,[["render",tm],["__file","sold-out.vue"]]),am={name:"SortDown"},rm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},lm=e("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0z"},null,-1),om=[lm];function nm(t,a,_,r,l,o){return n(),s("svg",rm,om)}var sm=i(am,[["render",nm],["__file","sort-down.vue"]]),im={name:"SortUp"},um={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},dm=e("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248z"},null,-1),vm=[dm];function cm(t,a,_,r,l,o){return n(),s("svg",um,vm)}var hm=i(im,[["render",cm],["__file","sort-up.vue"]]),pm={name:"Sort"},fm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},wm=e("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632V96zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"},null,-1),mm=[wm];function gm(t,a,_,r,l,o){return n(),s("svg",fm,mm)}var $m=i(pm,[["render",gm],["__file","sort.vue"]]),zm={name:"Stamp"},xm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Hm=e("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0zM128 896v-64h768v64H128z"},null,-1),Mm=[Hm];function Cm(t,a,_,r,l,o){return n(),s("svg",xm,Mm)}var Vm=i(zm,[["render",Cm],["__file","stamp.vue"]]),ym={name:"StarFilled"},Bm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Lm=e("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"},null,-1),Am=[Lm];function bm(t,a,_,r,l,o){return n(),s("svg",Bm,Am)}var km=i(ym,[["render",bm],["__file","star-filled.vue"]]),Sm={name:"Star"},qm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Fm=e("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72L512 747.84zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"},null,-1),Dm=[Fm];function Pm(t,a,_,r,l,o){return n(),s("svg",qm,Dm)}var Tm=i(Sm,[["render",Pm],["__file","star.vue"]]),Rm={name:"Stopwatch"},Om={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Im=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Um=e("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"},null,-1),Wm=[Im,Um];function Gm(t,a,_,r,l,o){return n(),s("svg",Om,Wm)}var Em=i(Rm,[["render",Gm],["__file","stopwatch.vue"]]),Nm={name:"SuccessFilled"},jm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Zm=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"},null,-1),Km=[Zm];function Qm(t,a,_,r,l,o){return n(),s("svg",jm,Km)}var Jm=i(Nm,[["render",Qm],["__file","success-filled.vue"]]),Xm={name:"Sugar"},Ym={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},eg=e("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904H252.928zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928h326.208zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"},null,-1),tg=[eg];function _g(t,a,_,r,l,o){return n(),s("svg",Ym,tg)}var ag=i(Xm,[["render",_g],["__file","sugar.vue"]]),rg={name:"SuitcaseLine"},lg={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},og=e("path",{fill:"currentColor",d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5zM384 128h256v64H384v-64zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128v384zm448 0H320V448h384v384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128v320zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320v64z"},null,-1),ng=[og];function sg(t,a,_,r,l,o){return n(),s("svg",lg,ng)}var ig=i(rg,[["render",sg],["__file","suitcase-line.vue"]]),ug={name:"Suitcase"},dg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},vg=e("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64v64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448H128zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),cg=e("path",{fill:"currentColor",d:"M384 128v64h256v-64H384zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64z"},null,-1),hg=[vg,cg];function pg(t,a,_,r,l,o){return n(),s("svg",dg,hg)}var fg=i(ug,[["render",pg],["__file","suitcase.vue"]]),wg={name:"Sunny"},mg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},gg=e("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32zM195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248zM64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32zm768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32zM195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0z"},null,-1),$g=[gg];function zg(t,a,_,r,l,o){return n(),s("svg",mg,$g)}var xg=i(wg,[["render",zg],["__file","sunny.vue"]]),Hg={name:"Sunrise"},Mg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Cg=e("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64zm129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32zm407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248z"},null,-1),Vg=[Cg];function yg(t,a,_,r,l,o){return n(),s("svg",Mg,Vg)}var Bg=i(Hg,[["render",yg],["__file","sunrise.vue"]]),Lg={name:"Sunset"},Ag={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},bg=e("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0H82.56zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),kg=[bg];function Sg(t,a,_,r,l,o){return n(),s("svg",Ag,kg)}var qg=i(Lg,[["render",Sg],["__file","sunset.vue"]]),Fg={name:"SwitchButton"},Dg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Pg=e("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"},null,-1),Tg=e("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32z"},null,-1),Rg=[Pg,Tg];function Og(t,a,_,r,l,o){return n(),s("svg",Dg,Rg)}var Ig=i(Fg,[["render",Og],["__file","switch-button.vue"]]),Ug={name:"SwitchFilled"},Wg={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},Gg=e("path",{fill:"currentColor",d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z"},null,-1),Eg=e("path",{fill:"currentColor",d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57v644.36zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z"},null,-1),Ng=[Gg,Eg];function jg(t,a,_,r,l,o){return n(),s("svg",Wg,Ng)}var Zg=i(Ug,[["render",jg],["__file","switch-filled.vue"]]),Kg={name:"Switch"},Qg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Jg=e("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32z"},null,-1),Xg=[Jg];function Yg(t,a,_,r,l,o){return n(),s("svg",Qg,Xg)}var e$=i(Kg,[["render",Yg],["__file","switch.vue"]]),t$={name:"TakeawayBox"},_$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},a$=e("path",{fill:"currentColor",d:"M832 384H192v448h640V384zM96 320h832V128H96v192zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32h-64zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64z"},null,-1),r$=[a$];function l$(t,a,_,r,l,o){return n(),s("svg",_$,r$)}var o$=i(t$,[["render",l$],["__file","takeaway-box.vue"]]),n$={name:"Ticket"},s$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},i$=e("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64v160zm0-416v192h64V416h-64z"},null,-1),u$=[i$];function d$(t,a,_,r,l,o){return n(),s("svg",s$,u$)}var v$=i(n$,[["render",d$],["__file","ticket.vue"]]),c$={name:"Tickets"},h$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},p$=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h192v64H320v-64zm0 384h384v64H320v-64z"},null,-1),f$=[p$];function w$(t,a,_,r,l,o){return n(),s("svg",h$,f$)}var m$=i(c$,[["render",w$],["__file","tickets.vue"]]),g$={name:"Timer"},$$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},z$=e("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),x$=e("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32z"},null,-1),H$=e("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0zm96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96z"},null,-1),M$=[z$,x$,H$];function C$(t,a,_,r,l,o){return n(),s("svg",$$,M$)}var V$=i(g$,[["render",C$],["__file","timer.vue"]]),y$={name:"ToiletPaper"},B$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},L$=e("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224zM736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64h416zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224z"},null,-1),A$=e("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96z"},null,-1),b$=[L$,A$];function k$(t,a,_,r,l,o){return n(),s("svg",B$,b$)}var S$=i(y$,[["render",k$],["__file","toilet-paper.vue"]]),q$={name:"Tools"},F$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},D$=e("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0z"},null,-1),P$=[D$];function T$(t,a,_,r,l,o){return n(),s("svg",F$,P$)}var R$=i(q$,[["render",T$],["__file","tools.vue"]]),O$={name:"TopLeft"},I$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},U$=e("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0V256z"},null,-1),W$=e("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"},null,-1),G$=[U$,W$];function E$(t,a,_,r,l,o){return n(),s("svg",I$,G$)}var N$=i(O$,[["render",E$],["__file","top-left.vue"]]),j$={name:"TopRight"},Z$={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},K$=e("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0V256z"},null,-1),Q$=e("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"},null,-1),J$=[K$,Q$];function X$(t,a,_,r,l,o){return n(),s("svg",Z$,J$)}var Y$=i(j$,[["render",X$],["__file","top-right.vue"]]),ez={name:"Top"},tz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},_z=e("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"},null,-1),az=[_z];function rz(t,a,_,r,l,o){return n(),s("svg",tz,az)}var lz=i(ez,[["render",rz],["__file","top.vue"]]),oz={name:"TrendCharts"},nz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},sz=e("path",{fill:"currentColor",d:"M128 896V128h768v768H128zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0z"},null,-1),iz=[sz];function uz(t,a,_,r,l,o){return n(),s("svg",nz,iz)}var dz=i(oz,[["render",uz],["__file","trend-charts.vue"]]),vz={name:"TrophyBase"},cz={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},hz=e("path",{fill:"currentColor",d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256v182.4zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4zm172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6z"},null,-1),pz=[hz];function fz(t,a,_,r,l,o){return n(),s("svg",cz,pz)}var wz=i(vz,[["render",fz],["__file","trophy-base.vue"]]),mz={name:"Trophy"},gz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},$z=e("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64h128zm224-448V128H320v320a192 192 0 1 0 384 0zm64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768v192zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448H256z"},null,-1),zz=[$z];function xz(t,a,_,r,l,o){return n(),s("svg",gz,zz)}var Hz=i(mz,[["render",xz],["__file","trophy.vue"]]),Mz={name:"TurnOff"},Cz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Vz=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),yz=e("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),Bz=[Vz,yz];function Lz(t,a,_,r,l,o){return n(),s("svg",Cz,Bz)}var Az=i(Mz,[["render",Lz],["__file","turn-off.vue"]]),bz={name:"Umbrella"},kz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Sz=e("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0zm570.688-320a384.128 384.128 0 0 0-757.376 0h757.376z"},null,-1),qz=[Sz];function Fz(t,a,_,r,l,o){return n(),s("svg",kz,qz)}var Dz=i(bz,[["render",Fz],["__file","umbrella.vue"]]),Pz={name:"Unlock"},Tz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Rz=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),Oz=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104l-59.456 23.808z"},null,-1),Iz=[Rz,Oz];function Uz(t,a,_,r,l,o){return n(),s("svg",Tz,Iz)}var Wz=i(Pz,[["render",Uz],["__file","unlock.vue"]]),Gz={name:"UploadFilled"},Ez={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Nz=e("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6H544z"},null,-1),jz=[Nz];function Zz(t,a,_,r,l,o){return n(),s("svg",Ez,jz)}var Kz=i(Gz,[["render",Zz],["__file","upload-filled.vue"]]),Qz={name:"Upload"},Jz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xz=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"},null,-1),Yz=[Xz];function ex(t,a,_,r,l,o){return n(),s("svg",Jz,Yz)}var tx=i(Qz,[["render",ex],["__file","upload.vue"]]),_x={name:"UserFilled"},ax={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},rx=e("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0zm544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"},null,-1),lx=[rx];function ox(t,a,_,r,l,o){return n(),s("svg",ax,lx)}var nx=i(_x,[["render",ox],["__file","user-filled.vue"]]),sx={name:"User"},ix={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},ux=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0z"},null,-1),dx=[ux];function vx(t,a,_,r,l,o){return n(),s("svg",ix,dx)}var cx=i(sx,[["render",vx],["__file","user.vue"]]),hx={name:"Van"},px={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},fx=e("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416h24.256zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672zm48.128-192-14.72-96H704v96h151.872zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160zm-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160z"},null,-1),wx=[fx];function mx(t,a,_,r,l,o){return n(),s("svg",px,wx)}var gx=i(hx,[["render",mx],["__file","van.vue"]]),$x={name:"VideoCameraFilled"},zx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},xx=e("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v96zM192 768v64h384v-64H192zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0zm64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288zm-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320zm64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0z"},null,-1),Hx=[xx];function Mx(t,a,_,r,l,o){return n(),s("svg",zx,Hx)}var Cx=i($x,[["render",Mx],["__file","video-camera-filled.vue"]]),Vx={name:"VideoCamera"},yx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Bx=e("path",{fill:"currentColor",d:"M704 768V256H128v512h576zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 71.552v176.896l128 64V359.552l-128 64zM192 320h192v64H192v-64z"},null,-1),Lx=[Bx];function Ax(t,a,_,r,l,o){return n(),s("svg",yx,Lx)}var bx=i(Vx,[["render",Ax],["__file","video-camera.vue"]]),kx={name:"VideoPause"},Sx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},qx=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32zm192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32z"},null,-1),Fx=[qx];function Dx(t,a,_,r,l,o){return n(),s("svg",Sx,Fx)}var Px=i(kx,[["render",Dx],["__file","video-pause.vue"]]),Tx={name:"VideoPlay"},Rx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Ox=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-48-247.616L668.608 512 464 375.616v272.768zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"},null,-1),Ix=[Ox];function Ux(t,a,_,r,l,o){return n(),s("svg",Rx,Ix)}var Wx=i(Tx,[["render",Ux],["__file","video-play.vue"]]),Gx={name:"View"},Ex={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Nx=e("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160z"},null,-1),jx=[Nx];function Zx(t,a,_,r,l,o){return n(),s("svg",Ex,jx)}var Kx=i(Gx,[["render",Zx],["__file","view.vue"]]),Qx={name:"WalletFilled"},Jx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},Xx=e("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160H688zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96zm-80-544 128 160H384l256-160z"},null,-1),Yx=[Xx];function eH(t,a,_,r,l,o){return n(),s("svg",Jx,Yx)}var tH=i(Qx,[["render",eH],["__file","wallet-filled.vue"]]),_H={name:"Wallet"},aH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},rH=e("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32v192z"},null,-1),lH=e("path",{fill:"currentColor",d:"M128 320v512h768V320H128zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32z"},null,-1),oH=e("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),nH=[rH,lH,oH];function sH(t,a,_,r,l,o){return n(),s("svg",aH,nH)}var iH=i(_H,[["render",sH],["__file","wallet.vue"]]),uH={name:"WarnTriangleFilled"},dH={xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},vH=e("path",{fill:"currentColor",d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03zM554.67 768h-85.33v-85.33h85.33V768zm0-426.67v298.66h-85.33V341.32l85.33.01z"},null,-1),cH=[vH];function hH(t,a,_,r,l,o){return n(),s("svg",dH,cH)}var pH=i(uH,[["render",hH],["__file","warn-triangle-filled.vue"]]),fH={name:"WarningFilled"},wH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},mH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4z"},null,-1),gH=[mH];function $H(t,a,_,r,l,o){return n(),s("svg",wH,gH)}var zH=i(fH,[["render",$H],["__file","warning-filled.vue"]]),xH={name:"Warning"},HH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},MH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),CH=[MH];function VH(t,a,_,r,l,o){return n(),s("svg",HH,CH)}var yH=i(xH,[["render",VH],["__file","warning.vue"]]),BH={name:"Watch"},LH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},AH=e("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),bH=e("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32z"},null,-1),kH=e("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm128-256V128H416v128h-64V64h320v192h-64zM416 768v128h192V768h64v192H352V768h64z"},null,-1),SH=[AH,bH,kH];function qH(t,a,_,r,l,o){return n(),s("svg",LH,SH)}var FH=i(BH,[["render",qH],["__file","watch.vue"]]),DH={name:"Watermelon"},PH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},TH=e("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248L683.072 600.32zm231.552 141.056a448 448 0 1 1-632-632l632 632z"},null,-1),RH=[TH];function OH(t,a,_,r,l,o){return n(),s("svg",PH,RH)}var IH=i(DH,[["render",OH],["__file","watermelon.vue"]]),UH={name:"WindPower"},WH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},GH=e("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32zm416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92l192-17.472zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96v226.368z"},null,-1),EH=[GH];function NH(t,a,_,r,l,o){return n(),s("svg",WH,EH)}var jH=i(UH,[["render",NH],["__file","wind-power.vue"]]),ZH={name:"ZoomIn"},KH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},QH=e("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"},null,-1),JH=[QH];function XH(t,a,_,r,l,o){return n(),s("svg",KH,JH)}var YH=i(ZH,[["render",XH],["__file","zoom-in.vue"]]),eM={name:"ZoomOut"},tM={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},_M=e("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),aM=[_M];function rM(t,a,_,r,l,o){return n(),s("svg",tM,aM)}var lM=i(eM,[["render",rM],["__file","zoom-out.vue"]]);const nM=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:A,Aim:P,AlarmClock:G,Apple:Q,ArrowDown:s2,ArrowDownBold:_2,ArrowLeft:$2,ArrowLeftBold:h2,ArrowRight:k2,ArrowRightBold:V2,ArrowUp:G2,ArrowUpBold:T2,Avatar:Q2,Back:a0,Baseball:u0,Basketball:f0,Bell:A0,BellFilled:x0,Bicycle:D0,Bottom:_1,BottomLeft:W0,BottomRight:Q0,Bowl:s1,Box:f1,Briefcase:x1,Brush:q1,BrushFilled:B1,Burger:O1,Calendar:N1,Camera:r4,CameraFilled:X1,CaretBottom:u4,CaretLeft:f4,CaretRight:x4,CaretTop:B4,Cellphone:q4,ChatDotRound:I4,ChatDotSquare:Z4,ChatLineRound:t6,ChatLineSquare:s6,ChatRound:h6,ChatSquare:$6,Check:V6,Checked:k6,Cherry:T6,Chicken:G6,ChromeFilled:X6,CircleCheck:d3,CircleCheckFilled:r3,CircleClose:M3,CircleCloseFilled:w3,CirclePlus:T3,CirclePlusFilled:A3,Clock:N3,Close:re,CloseBold:X3,Cloudy:ue,Coffee:xe,CoffeeCup:fe,Coin:Ae,ColdDrink:De,Collection:Ke,CollectionTag:Ue,Comment:t8,Compass:s8,Connection:p8,Coordinate:x8,CopyDocument:L8,Cpu:D8,CreditCard:W8,Crop:Q8,DArrowLeft:_t,DArrowRight:st,DCaret:ht,DataAnalysis:$t,DataBoard:Bt,DataLine:qt,Delete:e_,DeleteFilled:Ot,DeleteLocation:Zt,Dessert:o_,Discount:c_,Dish:C_,DishDot:g_,Document:na,DocumentAdd:b_,DocumentChecked:P_,DocumentCopy:W_,DocumentDelete:K_,DocumentRemove:ta,Download:ca,Drizzling:ga,Edit:ka,EditPen:Ca,Eleme:Ga,ElemeFilled:Ta,ElementPlus:Qa,Expand:_r,Failed:sr,Female:fr,Files:xr,Film:Lr,Filter:Fr,Finished:Ir,FirstAidKit:Zr,Flag:el,Fold:ol,Folder:Ul,FolderAdd:vl,FolderChecked:ml,FolderDelete:Ml,FolderOpened:Al,FolderRemove:Dl,Food:Zl,Football:t5,ForkSpoon:n5,Fries:c5,FullScreen:g5,Goblet:W5,GobletFull:C5,GobletSquare:P5,GobletSquareFull:b5,GoldMedal:Q5,Goods:so,GoodsFilled:_o,Grape:po,Grid:zo,Guide:Bo,Handbag:qo,Headset:Oo,Help:Xo,HelpFilled:No,Hide:l9,Histogram:d9,HomeFilled:w9,HotWater:H9,House:L9,IceCream:j9,IceCreamRound:F9,IceCreamSquare:I9,IceDrink:Y9,IceTea:ln,InfoFilled:vn,Iphone:mn,Key:Mn,KnifeFork:An,Lightning:Pn,Link:Wn,List:Kn,Loading:ts,Location:xs,LocationFilled:ns,LocationInformation:ps,Lock:Ls,Lollipop:Fs,MagicStick:Is,Magnet:js,Male:ti,Management:ni,MapLocation:hi,Medal:zi,Memo:Li,Menu:Fi,Message:Zi,MessageBox:Ii,Mic:eu,Microphone:ou,MilkTea:vu,Minus:mu,Money:Vu,Monitor:ku,Moon:Eu,MoonNight:Ru,More:ad,MoreFilled:Ju,MostlyCloudy:id,Mouse:fd,Mug:xd,Mute:Dd,MuteNotification:Ld,NoSmoking:Ud,Notebook:Kd,Notification:_v,Odometer:uv,OfficeBuilding:mv,Open:Cv,Operation:bv,Opportunity:Pv,Orange:Wv,Paperclip:Kv,PartlyCloudy:_7,Pear:s7,Phone:$7,PhoneFilled:h7,Picture:O7,PictureFilled:V7,PictureRounded:S7,PieChart:j7,Place:tc,Platform:nc,Plus:cc,Pointer:gc,Position:Cc,Postcard:kc,Pouring:Tc,Present:jc,PriceTag:eh,Printer:oh,Promotion:vh,QuartzWatch:$h,QuestionFilled:Vh,Rank:kh,Reading:Nh,ReadingLamp:Rh,Refresh:up,RefreshLeft:Xh,RefreshRight:rp,Refrigerator:fp,Remove:Lp,RemoveFilled:xp,Right:Fp,ScaleToOriginal:Ip,School:Kp,Scissor:tf,Search:nf,Select:hf,Sell:$f,SemiSelect:Vf,Service:kf,SetUp:If,Setting:jf,Share:Yf,Ship:lw,Shop:dw,ShoppingBag:mw,ShoppingCart:bw,ShoppingCartFull:Cw,ShoppingTrolley:Pw,Smoking:Gw,Soccer:Qw,SoldOut:_m,Sort:$m,SortDown:sm,SortUp:hm,Stamp:Vm,Star:Tm,StarFilled:km,Stopwatch:Em,SuccessFilled:Jm,Sugar:ag,Suitcase:fg,SuitcaseLine:ig,Sunny:xg,Sunrise:Bg,Sunset:qg,Switch:e$,SwitchButton:Ig,SwitchFilled:Zg,TakeawayBox:o$,Ticket:v$,Tickets:m$,Timer:V$,ToiletPaper:S$,Tools:R$,Top:lz,TopLeft:N$,TopRight:Y$,TrendCharts:dz,Trophy:Hz,TrophyBase:wz,TurnOff:Az,Umbrella:Dz,Unlock:Wz,Upload:tx,UploadFilled:Kz,User:cx,UserFilled:nx,Van:gx,VideoCamera:bx,VideoCameraFilled:Cx,VideoPause:Px,VideoPlay:Wx,View:Kx,Wallet:iH,WalletFilled:tH,WarnTriangleFilled:pH,Warning:yH,WarningFilled:zH,Watch:FH,Watermelon:IH,WindPower:jH,ZoomIn:YH,ZoomOut:lM},Symbol.toStringTag,{value:"Module"}));export{re as a,d3 as b,w3 as c,M3 as d,k2 as e,s2 as f,G2 as g,l9 as h,vn as i,ad as j,V7 as k,ts as l,mu as m,$2 as n,x4 as o,cc as p,nM as q,w9 as r,Jm as s,nf as t,Ju as u,Kx as v,zH as w}; diff --git a/packages/ide/example/assets/@floating-ui-4ed993c7.js b/packages/ide/example/assets/@floating-ui-4ed993c7.js new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/packages/ide/example/assets/@floating-ui-4ed993c7.js @@ -0,0 +1 @@ + diff --git a/packages/ide/example/assets/@popperjs-7c8154ca.js b/packages/ide/example/assets/@popperjs-7c8154ca.js new file mode 100644 index 000000000..750c73a73 --- /dev/null +++ b/packages/ide/example/assets/@popperjs-7c8154ca.js @@ -0,0 +1 @@ +var W="top",L="bottom",S="right",P="left",je="auto",fe=[W,L,S,P],Q="start",ae="end",mt="clippingParents",Ze="viewport",re="popper",ht="reference",Ve=fe.reduce(function(t,e){return t.concat([e+"-"+Q,e+"-"+ae])},[]),Ye=[].concat(fe,[je]).reduce(function(t,e){return t.concat([e,e+"-"+Q,e+"-"+ae])},[]),vt="beforeRead",gt="read",yt="afterRead",bt="beforeMain",xt="main",wt="afterMain",Ot="beforeWrite",jt="write",Et="afterWrite",At=[vt,gt,yt,bt,xt,wt,Ot,jt,Et];function T(t){return t?(t.nodeName||"").toLowerCase():null}function q(t){if(t==null)return window;if(t.toString()!=="[object Window]"){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function Z(t){var e=q(t).Element;return t instanceof e||t instanceof Element}function R(t){var e=q(t).HTMLElement;return t instanceof e||t instanceof HTMLElement}function Ee(t){if(typeof ShadowRoot=="undefined")return!1;var e=q(t).ShadowRoot;return t instanceof e||t instanceof ShadowRoot}function Dt(t){var e=t.state;Object.keys(e.elements).forEach(function(n){var r=e.styles[n]||{},o=e.attributes[n]||{},i=e.elements[n];!R(i)||!T(i)||(Object.assign(i.style,r),Object.keys(o).forEach(function(a){var s=o[a];s===!1?i.removeAttribute(a):i.setAttribute(a,s===!0?"":s)}))})}function kt(t){var e=t.state,n={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,n.popper),e.styles=n,e.elements.arrow&&Object.assign(e.elements.arrow.style,n.arrow),function(){Object.keys(e.elements).forEach(function(r){var o=e.elements[r],i=e.attributes[r]||{},a=Object.keys(e.styles.hasOwnProperty(r)?e.styles[r]:n[r]),s=a.reduce(function(f,c){return f[c]="",f},{});!R(o)||!T(o)||(Object.assign(o.style,s),Object.keys(i).forEach(function(f){o.removeAttribute(f)}))})}}var $e={name:"applyStyles",enabled:!0,phase:"write",fn:Dt,effect:kt,requires:["computeStyles"]};function N(t){return t.split("-")[0]}var J=Math.max,ge=Math.min,Y=Math.round;function $(t,e){e===void 0&&(e=!1);var n=t.getBoundingClientRect(),r=1,o=1;if(R(t)&&e){var i=t.offsetHeight,a=t.offsetWidth;a>0&&(r=Y(n.width)/a||1),i>0&&(o=Y(n.height)/i||1)}return{width:n.width/r,height:n.height/o,top:n.top/o,right:n.right/r,bottom:n.bottom/o,left:n.left/r,x:n.left/r,y:n.top/o}}function Ae(t){var e=$(t),n=t.offsetWidth,r=t.offsetHeight;return Math.abs(e.width-n)<=1&&(n=e.width),Math.abs(e.height-r)<=1&&(r=e.height),{x:t.offsetLeft,y:t.offsetTop,width:n,height:r}}function _e(t,e){var n=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(n&&Ee(n)){var r=e;do{if(r&&t.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function I(t){return q(t).getComputedStyle(t)}function Wt(t){return["table","td","th"].indexOf(T(t))>=0}function U(t){return((Z(t)?t.ownerDocument:t.document)||window.document).documentElement}function ye(t){return T(t)==="html"?t:t.assignedSlot||t.parentNode||(Ee(t)?t.host:null)||U(t)}function Ie(t){return!R(t)||I(t).position==="fixed"?null:t.offsetParent}function Pt(t){var e=navigator.userAgent.toLowerCase().indexOf("firefox")!==-1,n=navigator.userAgent.indexOf("Trident")!==-1;if(n&&R(t)){var r=I(t);if(r.position==="fixed")return null}var o=ye(t);for(Ee(o)&&(o=o.host);R(o)&&["html","body"].indexOf(T(o))<0;){var i=I(o);if(i.transform!=="none"||i.perspective!=="none"||i.contain==="paint"||["transform","perspective"].indexOf(i.willChange)!==-1||e&&i.willChange==="filter"||e&&i.filter&&i.filter!=="none")return o;o=o.parentNode}return null}function ce(t){for(var e=q(t),n=Ie(t);n&&Wt(n)&&I(n).position==="static";)n=Ie(n);return n&&(T(n)==="html"||T(n)==="body"&&I(n).position==="static")?e:n||Pt(t)||e}function De(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function oe(t,e,n){return J(t,ge(e,n))}function Bt(t,e,n){var r=oe(t,e,n);return r>n?n:r}function Fe(){return{top:0,right:0,bottom:0,left:0}}function et(t){return Object.assign({},Fe(),t)}function tt(t,e){return e.reduce(function(n,r){return n[r]=t,n},{})}var Ht=function(t,e){return t=typeof t=="function"?t(Object.assign({},e.rects,{placement:e.placement})):t,et(typeof t!="number"?t:tt(t,fe))};function Rt(t){var e,n=t.state,r=t.name,o=t.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=N(n.placement),f=De(s),c=[P,S].indexOf(s)>=0,p=c?"height":"width";if(!(!i||!a)){var h=Ht(o.padding,n),v=Ae(i),l=f==="y"?W:P,m=f==="y"?L:S,u=n.rects.reference[p]+n.rects.reference[f]-a[f]-n.rects.popper[p],g=a[f]-n.rects.reference[f],w=ce(i),y=w?f==="y"?w.clientHeight||0:w.clientWidth||0:0,j=u/2-g/2,d=h[l],b=y-v[p]-h[m],x=y/2-v[p]/2+j,O=oe(d,x,b),E=f;n.modifiersData[r]=(e={},e[E]=O,e.centerOffset=O-x,e)}}function Lt(t){var e=t.state,n=t.options,r=n.element,o=r===void 0?"[data-popper-arrow]":r;o!=null&&(typeof o=="string"&&(o=e.elements.popper.querySelector(o),!o)||!_e(e.elements.popper,o)||(e.elements.arrow=o))}var St={name:"arrow",enabled:!0,phase:"main",fn:Rt,effect:Lt,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function _(t){return t.split("-")[1]}var Ct={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Mt(t){var e=t.x,n=t.y,r=window,o=r.devicePixelRatio||1;return{x:Y(e*o)/o||0,y:Y(n*o)/o||0}}function Ue(t){var e,n=t.popper,r=t.popperRect,o=t.placement,i=t.variation,a=t.offsets,s=t.position,f=t.gpuAcceleration,c=t.adaptive,p=t.roundOffsets,h=t.isFixed,v=a.x,l=v===void 0?0:v,m=a.y,u=m===void 0?0:m,g=typeof p=="function"?p({x:l,y:u}):{x:l,y:u};l=g.x,u=g.y;var w=a.hasOwnProperty("x"),y=a.hasOwnProperty("y"),j=P,d=W,b=window;if(c){var x=ce(n),O="clientHeight",E="clientWidth";if(x===q(n)&&(x=U(n),I(x).position!=="static"&&s==="absolute"&&(O="scrollHeight",E="scrollWidth")),x=x,o===W||(o===P||o===S)&&i===ae){d=L;var D=h&&x===b&&b.visualViewport?b.visualViewport.height:x[O];u-=D-r.height,u*=f?1:-1}if(o===P||(o===W||o===L)&&i===ae){j=S;var k=h&&x===b&&b.visualViewport?b.visualViewport.width:x[E];l-=k-r.width,l*=f?1:-1}}var A=Object.assign({position:s},c&&Ct),C=p===!0?Mt({x:l,y:u}):{x:l,y:u};if(l=C.x,u=C.y,f){var B;return Object.assign({},A,(B={},B[d]=y?"0":"",B[j]=w?"0":"",B.transform=(b.devicePixelRatio||1)<=1?"translate("+l+"px, "+u+"px)":"translate3d("+l+"px, "+u+"px, 0)",B))}return Object.assign({},A,(e={},e[d]=y?u+"px":"",e[j]=w?l+"px":"",e.transform="",e))}function qt(t){var e=t.state,n=t.options,r=n.gpuAcceleration,o=r===void 0?!0:r,i=n.adaptive,a=i===void 0?!0:i,s=n.roundOffsets,f=s===void 0?!0:s,c={placement:N(e.placement),variation:_(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:o,isFixed:e.options.strategy==="fixed"};e.modifiersData.popperOffsets!=null&&(e.styles.popper=Object.assign({},e.styles.popper,Ue(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:a,roundOffsets:f})))),e.modifiersData.arrow!=null&&(e.styles.arrow=Object.assign({},e.styles.arrow,Ue(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:f})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})}var nt={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:qt,data:{}},he={passive:!0};function Nt(t){var e=t.state,n=t.instance,r=t.options,o=r.scroll,i=o===void 0?!0:o,a=r.resize,s=a===void 0?!0:a,f=q(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return i&&c.forEach(function(p){p.addEventListener("scroll",n.update,he)}),s&&f.addEventListener("resize",n.update,he),function(){i&&c.forEach(function(p){p.removeEventListener("scroll",n.update,he)}),s&&f.removeEventListener("resize",n.update,he)}}var rt={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Nt,data:{}},Tt={left:"right",right:"left",bottom:"top",top:"bottom"};function ve(t){return t.replace(/left|right|bottom|top/g,function(e){return Tt[e]})}var Vt={start:"end",end:"start"};function Xe(t){return t.replace(/start|end/g,function(e){return Vt[e]})}function ke(t){var e=q(t),n=e.pageXOffset,r=e.pageYOffset;return{scrollLeft:n,scrollTop:r}}function We(t){return $(U(t)).left+ke(t).scrollLeft}function It(t){var e=q(t),n=U(t),r=e.visualViewport,o=n.clientWidth,i=n.clientHeight,a=0,s=0;return r&&(o=r.width,i=r.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(a=r.offsetLeft,s=r.offsetTop)),{width:o,height:i,x:a+We(t),y:s}}function Ut(t){var e,n=U(t),r=ke(t),o=(e=t.ownerDocument)==null?void 0:e.body,i=J(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=J(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),s=-r.scrollLeft+We(t),f=-r.scrollTop;return I(o||n).direction==="rtl"&&(s+=J(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:a,x:s,y:f}}function Pe(t){var e=I(t),n=e.overflow,r=e.overflowX,o=e.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function ot(t){return["html","body","#document"].indexOf(T(t))>=0?t.ownerDocument.body:R(t)&&Pe(t)?t:ot(ye(t))}function ie(t,e){var n;e===void 0&&(e=[]);var r=ot(t),o=r===((n=t.ownerDocument)==null?void 0:n.body),i=q(r),a=o?[i].concat(i.visualViewport||[],Pe(r)?r:[]):r,s=e.concat(a);return o?s:s.concat(ie(ye(a)))}function Oe(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Xt(t){var e=$(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}function ze(t,e){return e===Ze?Oe(It(t)):Z(e)?Xt(e):Oe(Ut(U(t)))}function zt(t){var e=ie(ye(t)),n=["absolute","fixed"].indexOf(I(t).position)>=0,r=n&&R(t)?ce(t):t;return Z(r)?e.filter(function(o){return Z(o)&&_e(o,r)&&T(o)!=="body"}):[]}function Gt(t,e,n){var r=e==="clippingParents"?zt(t):[].concat(e),o=[].concat(r,[n]),i=o[0],a=o.reduce(function(s,f){var c=ze(t,f);return s.top=J(c.top,s.top),s.right=ge(c.right,s.right),s.bottom=ge(c.bottom,s.bottom),s.left=J(c.left,s.left),s},ze(t,i));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}function it(t){var e=t.reference,n=t.element,r=t.placement,o=r?N(r):null,i=r?_(r):null,a=e.x+e.width/2-n.width/2,s=e.y+e.height/2-n.height/2,f;switch(o){case W:f={x:a,y:e.y-n.height};break;case L:f={x:a,y:e.y+e.height};break;case S:f={x:e.x+e.width,y:s};break;case P:f={x:e.x-n.width,y:s};break;default:f={x:e.x,y:e.y}}var c=o?De(o):null;if(c!=null){var p=c==="y"?"height":"width";switch(i){case Q:f[c]=f[c]-(e[p]/2-n[p]/2);break;case ae:f[c]=f[c]+(e[p]/2-n[p]/2);break}}return f}function se(t,e){e===void 0&&(e={});var n=e,r=n.placement,o=r===void 0?t.placement:r,i=n.boundary,a=i===void 0?mt:i,s=n.rootBoundary,f=s===void 0?Ze:s,c=n.elementContext,p=c===void 0?re:c,h=n.altBoundary,v=h===void 0?!1:h,l=n.padding,m=l===void 0?0:l,u=et(typeof m!="number"?m:tt(m,fe)),g=p===re?ht:re,w=t.rects.popper,y=t.elements[v?g:p],j=Gt(Z(y)?y:y.contextElement||U(t.elements.popper),a,f),d=$(t.elements.reference),b=it({reference:d,element:w,strategy:"absolute",placement:o}),x=Oe(Object.assign({},w,b)),O=p===re?x:d,E={top:j.top-O.top+u.top,bottom:O.bottom-j.bottom+u.bottom,left:j.left-O.left+u.left,right:O.right-j.right+u.right},D=t.modifiersData.offset;if(p===re&&D){var k=D[o];Object.keys(E).forEach(function(A){var C=[S,L].indexOf(A)>=0?1:-1,B=[W,L].indexOf(A)>=0?"y":"x";E[A]+=k[B]*C})}return E}function Jt(t,e){e===void 0&&(e={});var n=e,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=f===void 0?Ye:f,p=_(r),h=p?s?Ve:Ve.filter(function(m){return _(m)===p}):fe,v=h.filter(function(m){return c.indexOf(m)>=0});v.length===0&&(v=h);var l=v.reduce(function(m,u){return m[u]=se(t,{placement:u,boundary:o,rootBoundary:i,padding:a})[N(u)],m},{});return Object.keys(l).sort(function(m,u){return l[m]-l[u]})}function Kt(t){if(N(t)===je)return[];var e=ve(t);return[Xe(t),e,Xe(e)]}function Qt(t){var e=t.state,n=t.options,r=t.name;if(!e.modifiersData[r]._skip){for(var o=n.mainAxis,i=o===void 0?!0:o,a=n.altAxis,s=a===void 0?!0:a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,h=n.rootBoundary,v=n.altBoundary,l=n.flipVariations,m=l===void 0?!0:l,u=n.allowedAutoPlacements,g=e.options.placement,w=N(g),y=w===g,j=f||(y||!m?[ve(g)]:Kt(g)),d=[g].concat(j).reduce(function(z,V){return z.concat(N(V)===je?Jt(e,{placement:V,boundary:p,rootBoundary:h,padding:c,flipVariations:m,allowedAutoPlacements:u}):V)},[]),b=e.rects.reference,x=e.rects.popper,O=new Map,E=!0,D=d[0],k=0;k=0,ee=F?"width":"height",H=se(e,{placement:A,boundary:p,rootBoundary:h,altBoundary:v,padding:c}),M=F?B?S:P:B?L:W;b[ee]>x[ee]&&(M=ve(M));var ue=ve(M),X=[];if(i&&X.push(H[C]<=0),s&&X.push(H[M]<=0,H[ue]<=0),X.every(function(z){return z})){D=A,E=!1;break}O.set(A,X)}if(E)for(var pe=m?3:1,be=function(z){var V=d.find(function(de){var ne=O.get(de);if(ne)return ne.slice(0,z).every(function(K){return K})});if(V)return D=V,"break"},te=pe;te>0;te--){var le=be(te);if(le==="break")break}e.placement!==D&&(e.modifiersData[r]._skip=!0,e.placement=D,e.reset=!0)}}var Zt={name:"flip",enabled:!0,phase:"main",fn:Qt,requiresIfExists:["offset"],data:{_skip:!1}};function Ge(t,e,n){return n===void 0&&(n={x:0,y:0}),{top:t.top-e.height-n.y,right:t.right-e.width+n.x,bottom:t.bottom-e.height+n.y,left:t.left-e.width-n.x}}function Je(t){return[W,S,L,P].some(function(e){return t[e]>=0})}function Yt(t){var e=t.state,n=t.name,r=e.rects.reference,o=e.rects.popper,i=e.modifiersData.preventOverflow,a=se(e,{elementContext:"reference"}),s=se(e,{altBoundary:!0}),f=Ge(a,r),c=Ge(s,o,i),p=Je(f),h=Je(c);e.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:h},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":h})}var $t={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Yt};function _t(t,e,n){var r=N(t),o=[P,W].indexOf(r)>=0?-1:1,i=typeof n=="function"?n(Object.assign({},e,{placement:t})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[P,S].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}function Ft(t){var e=t.state,n=t.options,r=t.name,o=n.offset,i=o===void 0?[0,0]:o,a=Ye.reduce(function(p,h){return p[h]=_t(h,e.rects,i),p},{}),s=a[e.placement],f=s.x,c=s.y;e.modifiersData.popperOffsets!=null&&(e.modifiersData.popperOffsets.x+=f,e.modifiersData.popperOffsets.y+=c),e.modifiersData[r]=a}var en={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:Ft};function tn(t){var e=t.state,n=t.name;e.modifiersData[n]=it({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})}var at={name:"popperOffsets",enabled:!0,phase:"read",fn:tn,data:{}};function nn(t){return t==="x"?"y":"x"}function rn(t){var e=t.state,n=t.options,r=t.name,o=n.mainAxis,i=o===void 0?!0:o,a=n.altAxis,s=a===void 0?!1:a,f=n.boundary,c=n.rootBoundary,p=n.altBoundary,h=n.padding,v=n.tether,l=v===void 0?!0:v,m=n.tetherOffset,u=m===void 0?0:m,g=se(e,{boundary:f,rootBoundary:c,padding:h,altBoundary:p}),w=N(e.placement),y=_(e.placement),j=!y,d=De(w),b=nn(d),x=e.modifiersData.popperOffsets,O=e.rects.reference,E=e.rects.popper,D=typeof u=="function"?u(Object.assign({},e.rects,{placement:e.placement})):u,k=typeof D=="number"?{mainAxis:D,altAxis:D}:Object.assign({mainAxis:0,altAxis:0},D),A=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,C={x:0,y:0};if(x){if(i){var B,F=d==="y"?W:P,ee=d==="y"?L:S,H=d==="y"?"height":"width",M=x[d],ue=M+g[F],X=M-g[ee],pe=l?-E[H]/2:0,be=y===Q?O[H]:E[H],te=y===Q?-E[H]:-O[H],le=e.elements.arrow,z=l&&le?Ae(le):{width:0,height:0},V=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:Fe(),de=V[F],ne=V[ee],K=oe(0,O[H],z[H]),st=j?O[H]/2-pe-K-de-k.mainAxis:be-K-de-k.mainAxis,ft=j?-O[H]/2+pe+K+ne+k.mainAxis:te+K+ne+k.mainAxis,xe=e.elements.arrow&&ce(e.elements.arrow),ct=xe?d==="y"?xe.clientTop||0:xe.clientLeft||0:0,He=(B=A==null?void 0:A[d])!=null?B:0,ut=M+st-He-ct,pt=M+ft-He,Re=oe(l?ge(ue,ut):ue,M,l?J(X,pt):X);x[d]=Re,C[d]=Re-M}if(s){var Le,lt=d==="x"?W:P,dt=d==="x"?L:S,G=x[b],me=b==="y"?"height":"width",Se=G+g[lt],Ce=G-g[dt],we=[W,P].indexOf(w)!==-1,Me=(Le=A==null?void 0:A[b])!=null?Le:0,qe=we?Se:G-O[me]-E[me]-Me+k.altAxis,Ne=we?G+O[me]+E[me]-Me-k.altAxis:Ce,Te=l&&we?Bt(qe,G,Ne):oe(l?qe:Se,G,l?Ne:Ce);x[b]=Te,C[b]=Te-G}e.modifiersData[r]=C}}var on={name:"preventOverflow",enabled:!0,phase:"main",fn:rn,requiresIfExists:["offset"]};function an(t){return{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}}function sn(t){return t===q(t)||!R(t)?ke(t):an(t)}function fn(t){var e=t.getBoundingClientRect(),n=Y(e.width)/t.offsetWidth||1,r=Y(e.height)/t.offsetHeight||1;return n!==1||r!==1}function cn(t,e,n){n===void 0&&(n=!1);var r=R(e),o=R(e)&&fn(e),i=U(e),a=$(t,o),s={scrollLeft:0,scrollTop:0},f={x:0,y:0};return(r||!r&&!n)&&((T(e)!=="body"||Pe(i))&&(s=sn(e)),R(e)?(f=$(e,!0),f.x+=e.clientLeft,f.y+=e.clientTop):i&&(f.x=We(i))),{x:a.left+s.scrollLeft-f.x,y:a.top+s.scrollTop-f.y,width:a.width,height:a.height}}function un(t){var e=new Map,n=new Set,r=[];t.forEach(function(i){e.set(i.name,i)});function o(i){n.add(i.name);var a=[].concat(i.requires||[],i.requiresIfExists||[]);a.forEach(function(s){if(!n.has(s)){var f=e.get(s);f&&o(f)}}),r.push(i)}return t.forEach(function(i){n.has(i.name)||o(i)}),r}function pn(t){var e=un(t);return At.reduce(function(n,r){return n.concat(e.filter(function(o){return o.phase===r}))},[])}function ln(t){var e;return function(){return e||(e=new Promise(function(n){Promise.resolve().then(function(){e=void 0,n(t())})})),e}}function dn(t){var e=t.reduce(function(n,r){var o=n[r.name];return n[r.name]=o?Object.assign({},o,r,{options:Object.assign({},o.options,r.options),data:Object.assign({},o.data,r.data)}):r,n},{});return Object.keys(e).map(function(n){return e[n]})}var Ke={placement:"bottom",modifiers:[],strategy:"absolute"};function Qe(){for(var t=arguments.length,e=new Array(t),n=0;ne.length)&&(r=e.length);for(var t=0,n=new Array(r);t-1&&r.splice(n,1)},pf=Object.prototype.hasOwnProperty,Q=function(r,t){return pf.call(r,t)},L=Array.isArray,Ur=function(r){return kr(r)==="[object Map]"},$r=function(r){return kr(r)==="[object Set]"},La=function(r){return kr(r)==="[object Date]"},gf=function(r){return kr(r)==="[object RegExp]"},z=function(r){return typeof r=="function"},fe=function(r){return typeof r=="string"},mt=function(r){return typeof r=="symbol"},ne=function(r){return r!==null&&typeof r=="object"},ua=function(r){return ne(r)&&z(r.then)&&z(r.catch)},Ri=Object.prototype.toString,kr=function(r){return Ri.call(r)},mf=function(r){return kr(r).slice(8,-1)},Fi=function(r){return kr(r)==="[object Object]"},fa=function(r){return fe(r)&&r!=="NaN"&&r[0]!=="-"&&""+parseInt(r,10)===r},ct=an(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),un=function(r){var t=Object.create(null);return function(n){var a=t[n];return a||(t[n]=r(n))}},bf=/-(\w)/g,Be=un(function(e){return e.replace(bf,function(r,t){return t?t.toUpperCase():""})}),yf=/\B([A-Z])/g,je=un(function(e){return e.replace(yf,"-$1").toLowerCase()}),fn=un(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Wt=un(function(e){return e?`on${fn(e)}`:""}),qr=function(r,t){return!Object.is(r,t)},Hr=function(r,t){for(var n=0;n1&&(r[n[0].trim()]=n[1].trim())}}),r}function on(e){var r="";if(fe(e))r=e;else if(L(e))for(var t=0;t`]=f,n},{})):$r(t)?he({},`Set(${t.size})`,Ba(t.values())):ne(t)&&!L(t)&&!Fi(t)?String(t):t};function Ff(e,r){return $f(e)||If(e,r)||sa(e,r)||Of()}function Of(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function If(e,r){var t=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(t!=null){var n,a,i,u,f=[],s=!0,o=!1;try{if(i=(t=t.call(e)).next,r===0){if(Object(t)!==t)return;s=!1}else for(;!(s=(n=i.call(t)).done)&&(f.push(n.value),f.length!==r);s=!0);}catch(c){o=!0,a=c}finally{try{if(!s&&t.return!=null&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw a}}return f}}function $f(e){if(Array.isArray(e))return e}function Mf(e,r,t){return r=Ii(r),r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function Ln(e,r){var t=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!t){if(Array.isArray(e)||(t=sa(e))||r&&e&&typeof e.length=="number"){t&&(e=t);var n=0,a=function(){};return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(o){throw o},f:a}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,u=!1,f;return{s:function(){t=t.call(e)},n:function(){var o=t.next();return i=o.done,o},e:function(o){u=!0,f=o},f:function(){try{!i&&t.return!=null&&t.return()}finally{if(u)throw f}}}}function Zt(e){return Lf(e)||Bf(e)||sa(e)||Nf()}function Nf(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function sa(e,r){if(e){if(typeof e=="string")return jn(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);if(t==="Object"&&e.constructor&&(t=e.constructor.name),t==="Map"||t==="Set")return Array.from(e);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return jn(e,r)}}function Bf(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Lf(e){if(Array.isArray(e))return jn(e)}function jn(e,r){(r==null||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t0&&arguments[0]!==void 0?arguments[0]:!1;Mr(this,e),this.detached=r,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Me,!r&&Me&&(this.index=(Me.scopes||(Me.scopes=[])).push(this)-1)}return Nr(e,[{key:"active",get:function(){return this._active}},{key:"run",value:function(t){if(this._active){var n=Me;try{return Me=this,t()}finally{Me=n}}}},{key:"on",value:function(){Me=this}},{key:"off",value:function(){Me=this.parent}},{key:"stop",value:function(t){if(this._active){var n,a;for(n=0,a=this.effects.length;n1&&arguments[1]!==void 0?arguments[1]:Me;r&&r.active&&r.effects.push(e)}function Df(){return Me}function Vl(e){Me&&Me.cleanups.push(e)}var oa=function(r){var t=new Set(r);return t.w=0,t.n=0,t},Ni=function(r){return(r.w&pr)>0},Bi=function(r){return(r.n&pr)>0},Uf=function(r){var t=r.deps;if(t.length)for(var n=0;n1&&arguments[1]!==void 0?arguments[1]:null,n=arguments.length>2?arguments[2]:void 0;Mr(this,e),this.fn=r,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,Mi(this,n)}return Nr(e,[{key:"run",value:function(){if(!this.active)return this.fn();for(var t=We,n=cr;t;){if(t===this)return;t=t.parent}try{return this.parent=We,We=this,cr=!0,pr=1<<++st,st<=Dn?Uf(this):Ua(this),this.fn()}finally{st<=Dn&&Hf(this),pr=1<<--st,We=this.parent,cr=n,this.parent=void 0,this.deferStop&&this.stop()}}},{key:"stop",value:function(){We===this?this.deferStop=!0:this.active&&(Ua(this),this.onStop&&this.onStop(),this.active=!1)}}]),e}();function Ua(e){var r=e.deps;if(r.length){for(var t=0;t=s)&&f.push(g)})}else switch(t!==void 0&&f.push(u.get(t)),r){case"add":L(e)?fa(t)&&f.push(u.get("length")):(f.push(u.get(xr)),Ur(e)&&f.push(u.get(Un)));break;case"delete":L(e)||(f.push(u.get(xr)),Ur(e)&&f.push(u.get(Un)));break;case"set":Ur(e)&&f.push(u.get(xr));break}if(f.length===1)f[0]&&Hn(f[0]);else{var o=[],c=Ln(f),h;try{for(c.s();!(h=c.n()).done;){var d=h.value;d&&o.push.apply(o,Zt(d))}}catch(g){c.e(g)}finally{c.f()}Hn(oa(o))}}}function Hn(e,r){var t=L(e)?e:Zt(e),n=Ln(t),a;try{for(n.s();!(a=n.n()).done;){var i=a.value;i.computed&&Ha(i,r)}}catch(o){n.e(o)}finally{n.f()}var u=Ln(t),f;try{for(u.s();!(f=u.n()).done;){var s=f.value;s.computed||Ha(s,r)}}catch(o){u.e(o)}finally{u.f()}}function Ha(e,r){(e!==We||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function Kf(e,r){var t;return(t=Qt.get(e))==null?void 0:t.get(r)}var Wf=an("__proto__,__v_isRef,__isVue"),Di=new Set(Object.getOwnPropertyNames(Symbol).filter(function(e){return e!=="arguments"&&e!=="caller"}).map(function(e){return Symbol[e]}).filter(mt)),Vf=vn(),zf=vn(!1,!0),qf=vn(!0),Yf=vn(!0,!0),Ka=Jf();function Jf(){var e={};return["includes","indexOf","lastIndexOf"].forEach(function(r){e[r]=function(){for(var t=J(this),n=0,a=this.length;n0&&arguments[0]!==void 0?arguments[0]:!1,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return function(n,a,i){if(a==="__v_isReactive")return!e;if(a==="__v_isReadonly")return e;if(a==="__v_isShallow")return r;if(a==="__v_raw"&&i===(e?r?qi:zi:r?Vi:Wi).get(n))return n;var u=L(n);if(!e){if(u&&Q(Ka,a))return Reflect.get(Ka,a,i);if(a==="hasOwnProperty")return Xf}var f=Reflect.get(n,a,i);return(mt(a)?Di.has(a):Wf(a))||(e||Oe(n,"get",a),r)?f:pe(f)?u&&fa(a)?f:f.value:ne(f)?e?Yi(f):ca(f):f}}var Zf=Ui(),Qf=Ui(!0);function Ui(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return function(t,n,a,i){var u=t[n];if(Yr(u)&&pe(u)&&!pe(a))return!1;if(!e&&(!Gt(a)&&!Yr(a)&&(u=J(u),a=J(a)),!L(t)&&pe(u)&&!pe(a)))return u.value=a,!0;var f=L(t)&&fa(n)?Number(n)2&&arguments[2]!==void 0?arguments[2]:!1,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;e=e.__v_raw;var a=J(e),i=J(r);t||(r!==i&&Oe(a,"get",r),Oe(a,"get",i));var u=dn(a),f=u.has,s=n?la:t?va:bt;if(f.call(a,r))return s(e.get(r));if(f.call(a,i))return s(e.get(i));e!==a&&e.get(r)}function $t(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,t=this.__v_raw,n=J(t),a=J(e);return r||(e!==a&&Oe(n,"has",e),Oe(n,"has",a)),e===a?t.has(e):t.has(e)||t.has(a)}function Mt(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return e=e.__v_raw,!r&&Oe(J(e),"iterate",xr),Reflect.get(e,"size",e)}function Wa(e){e=J(e);var r=J(this),t=dn(r),n=t.has.call(r,e);return n||(r.add(e),rr(r,"add",e,e)),this}function Va(e,r){r=J(r);var t=J(this),n=dn(t),a=n.has,i=n.get,u=a.call(t,e);u||(e=J(e),u=a.call(t,e));var f=i.call(t,e);return t.set(e,r),u?qr(r,f)&&rr(t,"set",e,r):rr(t,"add",e,r),this}function za(e){var r=J(this),t=dn(r),n=t.has,a=t.get,i=n.call(r,e);i||(e=J(e),i=n.call(r,e)),a&&a.call(r,e);var u=r.delete(e);return i&&rr(r,"delete",e,void 0),u}function qa(){var e=J(this),r=e.size!==0,t=e.clear();return r&&rr(e,"clear",void 0,void 0),t}function Nt(e,r){return function(n,a){var i=this,u=i.__v_raw,f=J(u),s=r?la:e?va:bt;return!e&&Oe(f,"iterate",xr),u.forEach(function(o,c){return n.call(a,s(o),s(c),i)})}}function Bt(e,r,t){return function(){var n=this.__v_raw,a=J(n),i=Ur(a),u=e==="entries"||e===Symbol.iterator&&i,f=e==="keys"&&i,s=n[e].apply(n,arguments),o=t?la:r?va:bt;return!r&&Oe(a,"iterate",f?Un:xr),Mf({next:function(){var h=s.next(),d=h.value,g=h.done;return g?{value:d,done:g}:{value:u?[o(d[0]),o(d[1])]:o(d),done:g}}},Symbol.iterator,function(){return this})}}function ur(e){return function(){return e==="delete"?!1:this}}function ns(){var e={get:function(u){return It(this,u)},get size(){return Mt(this)},has:$t,add:Wa,set:Va,delete:za,clear:qa,forEach:Nt(!1,!1)},r={get:function(u){return It(this,u,!1,!0)},get size(){return Mt(this)},has:$t,add:Wa,set:Va,delete:za,clear:qa,forEach:Nt(!1,!0)},t={get:function(u){return It(this,u,!0)},get size(){return Mt(this,!0)},has:function(u){return $t.call(this,u,!0)},add:ur("add"),set:ur("set"),delete:ur("delete"),clear:ur("clear"),forEach:Nt(!0,!1)},n={get:function(u){return It(this,u,!0,!0)},get size(){return Mt(this,!0)},has:function(u){return $t.call(this,u,!0)},add:ur("add"),set:ur("set"),delete:ur("delete"),clear:ur("clear"),forEach:Nt(!0,!0)},a=["keys","values","entries",Symbol.iterator];return a.forEach(function(i){e[i]=Bt(i,!1,!1),t[i]=Bt(i,!0,!1),r[i]=Bt(i,!1,!0),n[i]=Bt(i,!0,!0)}),[e,t,r,n]}var as=ns(),hn=Ff(as,4),is=hn[0],us=hn[1],fs=hn[2],ss=hn[3];function pn(e,r){var t=r?e?ss:fs:e?us:is;return function(n,a,i){return a==="__v_isReactive"?!e:a==="__v_isReadonly"?e:a==="__v_raw"?n:Reflect.get(Q(t,a)&&a in n?t:n,a,i)}}var os={get:pn(!1,!1)},ls={get:pn(!1,!0)},cs={get:pn(!0,!1)},vs={get:pn(!0,!0)},Wi=new WeakMap,Vi=new WeakMap,zi=new WeakMap,qi=new WeakMap;function ds(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function hs(e){return e.__v_skip||!Object.isExtensible(e)?0:ds(mf(e))}function ca(e){return Yr(e)?e:gn(e,!1,Hi,os,Wi)}function ps(e){return gn(e,!1,rs,ls,Vi)}function Yi(e){return gn(e,!0,Ki,cs,zi)}function Yl(e){return gn(e,!0,ts,vs,qi)}function gn(e,r,t,n,a){if(!ne(e)||e.__v_raw&&!(r&&e.__v_isReactive))return e;var i=a.get(e);if(i)return i;var u=hs(e);if(u===0)return e;var f=new Proxy(e,u===2?n:t);return a.set(e,f),f}function Kr(e){return Yr(e)?Kr(e.__v_raw):!!(e&&e.__v_isReactive)}function Yr(e){return!!(e&&e.__v_isReadonly)}function Gt(e){return!!(e&&e.__v_isShallow)}function Ji(e){return Kr(e)||Yr(e)}function J(e){var r=e&&e.__v_raw;return r?J(r):e}function Xi(e){return Yt(e,"__v_skip",!0),e}var bt=function(r){return ne(r)?ca(r):r},va=function(r){return ne(r)?Yi(r):r};function da(e){cr&&We&&(e=J(e),ji(e.dep||(e.dep=oa())))}function mn(e,r){e=J(e);var t=e.dep;t&&Hn(t)}function pe(e){return!!(e&&e.__v_isRef===!0)}function vt(e){return Zi(e,!1)}function Jl(e){return Zi(e,!0)}function Zi(e,r){return pe(e)?e:new gs(e,r)}var gs=function(){function e(r,t){Mr(this,e),this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?r:J(r),this._value=t?r:bt(r)}return Nr(e,[{key:"value",get:function(){return da(this),this._value},set:function(t){var n=this.__v_isShallow||Gt(t)||Yr(t);t=n?t:J(t),qr(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:bt(t),mn(this))}}]),e}();function Xl(e){mn(e)}function Qi(e){return pe(e)?e.value:e}function Zl(e){return z(e)?e():Qi(e)}var ms={get:function(r,t,n){return Qi(Reflect.get(r,t,n))},set:function(r,t,n,a){var i=r[t];return pe(i)&&!pe(n)?(i.value=n,!0):Reflect.set(r,t,n,a)}};function Gi(e){return Kr(e)?e:new Proxy(e,ms)}var bs=function(){function e(r){var t=this;Mr(this,e),this.dep=void 0,this.__v_isRef=!0;var n=r(function(){return da(t)},function(){return mn(t)}),a=n.get,i=n.set;this._get=a,this._set=i}return Nr(e,[{key:"value",get:function(){return this._get()},set:function(t){this._set(t)}}]),e}();function Ql(e){return new bs(e)}function Gl(e){var r=L(e)?new Array(e.length):{};for(var t in e)r[t]=ki(e,t);return r}var ys=function(){function e(r,t,n){Mr(this,e),this._object=r,this._key=t,this._defaultValue=n,this.__v_isRef=!0}return Nr(e,[{key:"value",get:function(){var t=this._object[this._key];return t===void 0?this._defaultValue:t},set:function(t){this._object[this._key]=t}},{key:"dep",get:function(){return Kf(J(this._object),this._key)}}]),e}(),_s=function(){function e(r){Mr(this,e),this._getter=r,this.__v_isRef=!0,this.__v_isReadonly=!0}return Nr(e,[{key:"value",get:function(){return this._getter()}}]),e}();function kl(e,r,t){return pe(e)?e:z(e)?new _s(e):ne(e)&&arguments.length>1?ki(e,r,t):vt(e)}function ki(e,r,t){var n=e[r];return pe(n)?n:new ys(e,r,t)}var Cs=function(){function e(r,t,n,a){var i=this;Mr(this,e),this._setter=t,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new cn(r,function(){i._dirty||(i._dirty=!0,mn(i))}),this.effect.computed=this,this.effect.active=this._cacheable=!a,this.__v_isReadonly=n}return Nr(e,[{key:"value",get:function(){var t=J(this);return da(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value},set:function(t){this._setter(t)}}]),e}();function Es(e,r){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,n,a,i=z(e);i?(n=e,a=Ze):(n=e.get,a=e.set);var u=new Cs(n,a,i||!a,t);return u}var k;function gr(e,r){return Ts(e)||As(e,r)||ha(e,r)||Ss()}function Ss(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function As(e,r){var t=e==null?null:typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(t!=null){var n,a,i,u,f=[],s=!0,o=!1;try{if(i=(t=t.call(e)).next,r===0){if(Object(t)!==t)return;s=!1}else for(;!(s=(n=i.call(t)).done)&&(f.push(n.value),f.length!==r);s=!0);}catch(c){o=!0,a=c}finally{try{if(!s&&t.return!=null&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw a}}return f}}function Ts(e){if(Array.isArray(e))return e}function ws(e,r){var t=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!t){if(Array.isArray(e)||(t=ha(e))||r&&e&&typeof e.length=="number"){t&&(e=t);var n=0,a=function(){};return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(o){throw o},f:a}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,u=!1,f;return{s:function(){t=t.call(e)},n:function(){var o=t.next();return i=o.done,o},e:function(o){u=!0,f=o},f:function(){try{!i&&t.return!=null&&t.return()}finally{if(u)throw f}}}}function ee(e,r,t){return r=Ps(r),r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function Ps(e){var r=xs(e,"string");return typeof r=="symbol"?r:String(r)}function xs(e,r){if(typeof e!="object"||e===null)return e;var t=e[Symbol.toPrimitive];if(t!==void 0){var n=t.call(e,r||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(r==="string"?String:Number)(e)}function De(e){return Os(e)||Fs(e)||ha(e)||Rs()}function Rs(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ha(e,r){if(e){if(typeof e=="string")return Kn(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);if(t==="Object"&&e.constructor&&(t=e.constructor.name),t==="Map"||t==="Set")return Array.from(e);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return Kn(e,r)}}function Fs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Os(e){if(Array.isArray(e))return Kn(e)}function Kn(e,r){(r==null||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t>>1,a=_t(Ee[n]);aXe&&Ee.splice(r,1)}function nu(e){L(e)?Rr.push.apply(Rr,De(e)):(!ke||!ke.includes(e,e.allowRecurse?Tr+1:Tr))&&Rr.push(e),tu()}function Ya(e){for(var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:yt?Xe+1:0;r2?n-2:0),i=2;i2&&arguments[2]!==void 0?arguments[2]:!1,n=r.emitsCache,a=n.get(e);if(a!==void 0)return a;var i=e.emits,u={},f=!1;if(!z(e)){var s=function(c){var h=iu(c,r,!0);h&&(f=!0,ae(u,h))};!t&&r.mixins.length&&r.mixins.forEach(s),e.extends&&s(e.extends),e.mixins&&e.mixins.forEach(s)}return!i&&!f?(ne(e)&&n.set(e,null),null):(L(i)?i.forEach(function(o){return u[o]=null}):ae(u,i),ne(e)&&n.set(e,u),u)}function yn(e,r){return!e||!wt(r)?!1:(r=r.slice(2).replace(/Once$/,""),Q(e,r[0].toLowerCase()+r.slice(1))||Q(e,je(r))||Q(e,r))}var ge=null,_n=null;function Ct(e){var r=ge;return ge=e,_n=e&&e.type.__scopeId||null,r}function tc(e){_n=e}function nc(){_n=null}var ac=function(r){return uu};function uu(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:ge;if(!r||e._n)return e;var t=function n(){n._d&&fi(-1);var a=Ct(r),i;try{i=e.apply(void 0,arguments)}finally{Ct(a),n._d&&fi(1)}return i};return t._n=!0,t._c=!0,t._d=!0,t}function Vt(e){var r=e.type,t=e.vnode,n=e.proxy,a=e.withProxy,i=e.props,u=gr(e.propsOptions,1),f=u[0],s=e.slots,o=e.attrs,c=e.emit,h=e.render,d=e.renderCache,g=e.data,_=e.setupState,x=e.ctx,O=e.inheritAttrs,B,I,y=Ct(e);try{if(t.shapeFlag&4){var S=a||n;B=Ne(h.call(S,S,d,i,_,g,x)),I=o}else{var p=r;B=Ne(p.length>1?p(i,{attrs:o,slots:s,emit:c}):p(i,null)),I=r.props?o:Ds(o)}}catch(T){pt.length=0,tt(T,e,1),B=ue(we)}var b=B;if(I&&O!==!1){var C=Object.keys(I),M=b,$=M.shapeFlag;C.length&&$&7&&(f&&C.some(aa)&&(I=Us(I,f)),b=tr(b,I))}return t.dirs&&(b=tr(b),b.dirs=b.dirs?b.dirs.concat(t.dirs):t.dirs),t.transition&&(b.transition=t.transition),B=b,Ct(y),B}function js(e){for(var r,t=0;t=0){if(s&1024)return!0;if(s&16)return n?Ja(n,u,o):!!u;if(s&8)for(var c=r.dynamicProps,h=0;h0?(Et(e,"onPending"),Et(e,"onFallback"),o(null,e.ssFallback,r,t,n,null,i,u),Wr(d,e.ssFallback)):d.resolve(!1,!0)}function Vs(e,r,t,n,a,i,u,f,s){var o=s.p,c=s.um,h=s.o.createElement,d=r.suspense=e.suspense;d.vnode=r,r.el=e.el;var g=r.ssContent,_=r.ssFallback,x=d.activeBranch,O=d.pendingBranch,B=d.isInFallback,I=d.isHydrating;if(O)d.pendingBranch=g,Ve(g,O)?(o(O,g,d.hiddenContainer,null,a,d,i,u,f),d.deps<=0?d.resolve():B&&(o(x,_,t,n,a,null,i,u,f),Wr(d,_))):(d.pendingId++,I?(d.isHydrating=!1,d.activeBranch=O):c(O,a,d),d.deps=0,d.effects.length=0,d.hiddenContainer=h("div"),B?(o(null,g,d.hiddenContainer,null,a,d,i,u,f),d.deps<=0?d.resolve():(o(x,_,t,n,a,null,i,u,f),Wr(d,_))):x&&Ve(g,x)?(o(x,g,t,n,a,d,i,u,f),d.resolve(!0)):(o(null,g,d.hiddenContainer,null,a,d,i,u,f),d.deps<=0&&d.resolve()));else if(x&&Ve(g,x))o(x,g,t,n,a,d,i,u,f),Wr(d,g);else if(Et(r,"onPending"),d.pendingBranch=g,d.pendingId++,o(null,g,d.hiddenContainer,null,a,d,i,u,f),d.deps<=0)d.resolve();else{var y=d.timeout,S=d.pendingId;y>0?setTimeout(function(){d.pendingId===S&&d.fallback(_)},y):y===0&&d.fallback(_)}}function ma(e,r,t,n,a,i,u,f,s,o){var c=arguments.length>10&&arguments[10]!==void 0?arguments[10]:!1,h=o.p,d=o.m,g=o.um,_=o.n,x=o.o,O=x.parentNode,B=x.remove,I,y=Ys(e);y&&r!=null&&r.pendingBranch&&(I=r.pendingId,r.deps++);var S=e.props?Xt(e.props.timeout):void 0,p={vnode:e,parent:r,parentComponent:t,isSVG:u,container:n,hiddenContainer:a,anchor:i,deps:0,pendingId:0,timeout:typeof S=="number"?S:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:c,isUnmounted:!1,effects:[],resolve:function(){var C=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,M=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,$=p.vnode,T=p.activeBranch,j=p.pendingBranch,U=p.pendingId,W=p.effects,G=p.parentComponent,Y=p.container;if(p.isHydrating)p.isHydrating=!1;else if(!C){var H=T&&j.transition&&j.transition.mode==="out-in";H&&(T.transition.afterLeave=function(){U===p.pendingId&&d(j,Y,ce,0)});var ce=p.anchor;T&&(ce=_(T),g(T,G,p,!0)),H||d(j,Y,ce,0)}Wr(p,j),p.pendingBranch=null,p.isInFallback=!1;for(var oe=p.parent,re=!1;oe;){if(oe.pendingBranch){var Pe;(Pe=oe.effects).push.apply(Pe,De(W)),re=!0;break}oe=oe.parent}re||nu(W),p.effects=[],y&&r&&r.pendingBranch&&I===r.pendingId&&(r.deps--,r.deps===0&&!M&&r.resolve()),Et($,"onResolve")},fallback:function(C){if(p.pendingBranch){var M=p.vnode,$=p.activeBranch,T=p.parentComponent,j=p.container,U=p.isSVG;Et(M,"onFallback");var W=_($),G=function(){p.isInFallback&&(h(null,C,j,W,T,null,U,f,s),Wr(p,C))},Y=C.transition&&C.transition.mode==="out-in";Y&&($.transition.afterLeave=G),p.isInFallback=!0,g($,T,null,!0),Y||G()}},move:function(C,M,$){p.activeBranch&&d(p.activeBranch,C,M,$),p.container=C},next:function(){return p.activeBranch&&_(p.activeBranch)},registerDep:function(C,M){var $=!!p.pendingBranch;$&&p.deps++;var T=C.vnode.el;C.asyncDep.catch(function(j){tt(j,C,0)}).then(function(j){if(!(C.isUnmounted||p.isUnmounted||p.pendingId!==C.suspenseId)){C.asyncResolved=!0;var U=C.vnode;Xn(C,j,!1),T&&(U.el=T);var W=!T&&C.subTree.el;M(C,U,O(T||C.subTree.el),T?null:_(C.subTree),p,u,s),W&&B(W),ga(C,U.el),$&&--p.deps===0&&p.resolve()}})},unmount:function(C,M){p.isUnmounted=!0,p.activeBranch&&g(p.activeBranch,t,C,M),p.pendingBranch&&g(p.pendingBranch,t,C,M)}};return p}function zs(e,r,t,n,a,i,u,f,s){var o=r.suspense=ma(r,n,t,e.parentNode,document.createElement("div"),null,a,i,u,f,!0),c=s(e,o.pendingBranch=r.ssContent,t,o,i,u);return o.deps===0&&o.resolve(!1,!0),c}function qs(e){var r=e.shapeFlag,t=e.children,n=r&32;e.ssContent=Xa(n?t.default:t),e.ssFallback=n?Xa(t.fallback):ue(we)}function Xa(e){var r;if(z(e)){var t=Or&&e._c;t&&(e._d=!1,Pa()),e=e(),t&&(e._d=!0,r=Fe,Pu())}if(L(e)){var n=js(e);e=n}return e=Ne(e),r&&!e.dynamicChildren&&(e.dynamicChildren=r.filter(function(a){return a!==e})),e}function su(e,r){if(r&&r.pendingBranch)if(L(e)){var t;(t=r.effects).push.apply(t,De(e))}else r.effects.push(e);else nu(e)}function Wr(e,r){e.activeBranch=r;var t=e.vnode,n=e.parentComponent,a=t.el=r.el;n&&n.subTree===t&&(n.vnode.el=a,ga(n,a))}function Ys(e){var r;return((r=e.props)==null?void 0:r.suspensible)!=null&&e.props.suspensible!==!1}function uc(e,r){return Pt(e,null,r)}function Js(e,r){return Pt(e,null,{flush:"post"})}function fc(e,r){return Pt(e,null,{flush:"sync"})}var jt={};function Vr(e,r,t){return Pt(e,r,t)}function Pt(e,r){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:te,n=t.immediate,a=t.deep,i=t.flush;t.onTrack,t.onTrigger;var u,f=Df()===((u=ve)==null?void 0:u.scope)?ve:null,s,o=!1,c=!1;if(pe(e)?(s=function(){return e.value},o=Gt(e)):Kr(e)?(s=function(){return e},a=!0):L(e)?(c=!0,o=e.some(function(p){return Kr(p)||Gt(p)}),s=function(){return e.map(function(b){if(pe(b))return b.value;if(Kr(b))return Pr(b);if(z(b))return vr(b,f,2)})}):z(e)?r?s=function(){return vr(e,f,2)}:s=function(){if(!(f&&f.isUnmounted))return d&&d(),Ue(e,f,3,[g])}:s=Ze,r&&a){var h=s;s=function(){return Pr(h())}}var d,g=function(b){d=y.onStop=function(){vr(b,f,4)}},_;if(Zr)if(g=Ze,r?n&&Ue(r,f,3,[s(),c?[]:void 0,g]):s(),i==="sync"){var x=Ko();_=x.__watcherHandles||(x.__watcherHandles=[])}else return Ze;var O=c?new Array(e.length).fill(jt):jt,B=function(){if(y.active)if(r){var b=y.run();(a||o||(c?b.some(function(C,M){return qr(C,O[M])}):qr(b,O)))&&(d&&d(),Ue(r,f,3,[b,O===jt?void 0:c&&O[0]===jt?[]:O,g]),O=b)}else y.run()};B.allowRecurse=!!r;var I;i==="sync"?I=B:i==="post"?I=function(){return be(B,f&&f.suspense)}:(B.pre=!0,f&&(B.id=f.uid),I=function(){return bn(B)});var y=new cn(s,I);r?n?B():O=y.run():i==="post"?be(y.run.bind(y),f&&f.suspense):y.run();var S=function(){y.stop(),f&&f.scope&&ia(f.scope.effects,y)};return _&&_.push(S),S}function Xs(e,r,t){var n=this.proxy,a=fe(e)?e.includes(".")?ou(n,e):function(){return n[e]}:e.bind(n,n),i;z(r)?i=r:(i=r.handler,t=r);var u=ve;mr(this);var f=Pt(a,i.bind(n),t);return u?mr(u):dr(),f}function ou(e,r){var t=r.split(".");return function(){for(var n=e,a=0;a1){var o=!1,c=ws(f),h;try{for(c.s();!(h=c.n()).done;){var d=h.value;if(d.type!==we){s=d,o=!0;break}}}catch(C){c.e(C)}finally{c.f()}}var g=J(r),_=g.mode;if(i.isLeaving)return Pn(s);var x=Za(s);if(!x)return Pn(s);var O=St(x,g,i,a);Jr(x,O);var B=a.subTree,I=B&&Za(B),y=!1,S=x.type.getTransitionKey;if(S){var p=S();u===void 0?u=p:p!==u&&(u=p,y=!0)}if(I&&I.type!==we&&(!Ve(x,I)||y)){var b=St(I,g,i,a);if(Jr(I,b),_==="out-in")return i.isLeaving=!0,b.afterLeave=function(){i.isLeaving=!1,a.update.active!==!1&&a.update()},Pn(s);_==="in-out"&&x.type!==we&&(b.delayLeave=function(C,M,$){var T=vu(i,I);T[String(I.key)]=I,C._leaveCb=function(){M(),C._leaveCb=void 0,delete O.delayedLeave},O.delayedLeave=$})}return s}}}},Qs=Zs;function vu(e,r){var t=e.leavingVNodes,n=t.get(r.type);return n||(n=Object.create(null),t.set(r.type,n)),n}function St(e,r,t,n){var a=r.appear,i=r.mode,u=r.persisted,f=u===void 0?!1:u,s=r.onBeforeEnter,o=r.onEnter,c=r.onAfterEnter,h=r.onEnterCancelled,d=r.onBeforeLeave,g=r.onLeave,_=r.onAfterLeave,x=r.onLeaveCancelled,O=r.onBeforeAppear,B=r.onAppear,I=r.onAfterAppear,y=r.onAppearCancelled,S=String(e.key),p=vu(t,e),b=function(T,j){T&&Ue(T,n,9,j)},C=function(T,j){var U=j[1];b(T,j),L(T)?T.every(function(W){return W.length<=1})&&U():T.length<=1&&U()},M={mode:i,persisted:f,beforeEnter:function(T){var j=s;if(!t.isMounted)if(a)j=O||s;else return;T._leaveCb&&T._leaveCb(!0);var U=p[S];U&&Ve(e,U)&&U.el._leaveCb&&U.el._leaveCb(),b(j,[T])},enter:function(T){var j=o,U=c,W=h;if(!t.isMounted)if(a)j=B||o,U=I||c,W=y||h;else return;var G=!1,Y=T._enterCb=function(H){G||(G=!0,H?b(W,[T]):b(U,[T]),M.delayedLeave&&M.delayedLeave(),T._enterCb=void 0)};j?C(j,[T,Y]):Y()},leave:function(T,j){var U=String(e.key);if(T._enterCb&&T._enterCb(!0),t.isUnmounting)return j();b(d,[T]);var W=!1,G=T._leaveCb=function(Y){W||(W=!0,j(),Y?b(x,[T]):b(_,[T]),T._leaveCb=void 0,p[U]===e&&delete p[U])};p[U]=e,g?C(g,[T,G]):G()},clone:function(T){return St(T,r,t,n)}};return M}function Pn(e){if(xt(e))return e=tr(e),e.children=null,e}function Za(e){return xt(e)?e.children?e.children[0]:void 0:e}function Jr(e,r){e.shapeFlag&6&&e.component?Jr(e.component.subTree,r):e.shapeFlag&128?(e.ssContent.transition=r.clone(e.ssContent),e.ssFallback.transition=r.clone(e.ssFallback)):e.transition=r}function ba(e){for(var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,t=arguments.length>2?arguments[2]:void 0,n=[],a=0,i=0;i1)for(var s=0;s1)return s=null,p;if(!Ir(b)||!(b.shapeFlag&4)&&!(b.shapeFlag&128))return s=null,b;var C=Fn(b),M=C.type,$=Qn(Fr(C)?C.type.__asyncResolved||{}:M),T=r.include,j=r.exclude,U=r.max;if(T&&(!$||!ot(T,$))||j&&$&&ot(j,$))return s=C,b;var W=C.key==null?M:C.key,G=u.get(W);return C.el&&(C=tr(C),b.shapeFlag&128&&(b.ssContent=C)),y=W,G?(C.el=G.el,C.component=G.component,C.transition&&Jr(C,C.transition),C.shapeFlag|=512,f.delete(W),f.add(W)):(f.add(W),U&&f.size>parseInt(U,10)&&I(f.values().next().value)),C.shapeFlag|=256,s=C,fu(b.type)?b:C}}},lc=Gs;function ot(e,r){return L(e)?e.some(function(t){return ot(t,r)}):fe(e)?e.split(",").includes(r):gf(e)?e.test(r):!1}function ks(e,r){hu(e,"a",r)}function eo(e,r){hu(e,"da",r)}function hu(e,r){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:ve,n=e.__wdc||(e.__wdc=function(){for(var i=t;i;){if(i.isDeactivated)return;i=i.parent}return e()});if(Cn(r,n,t),t)for(var a=t.parent;a&&a.parent;)xt(a.parent.vnode)&&ro(n,r,t,a),a=a.parent}function ro(e,r,t,n){var a=Cn(r,e,n,!0);Ca(function(){ia(n[r],a)},t)}function Rn(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Fn(e){return e.shapeFlag&128?e.ssContent:e}function Cn(e,r){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:ve,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(t){var a=t[e]||(t[e]=[]),i=r.__weh||(r.__weh=function(){if(!t.isUnmounted){et(),mr(t);for(var u=arguments.length,f=new Array(u),s=0;s1&&arguments[1]!==void 0?arguments[1]:ve;return(!Zr||r==="sp")&&Cn(r,function(){return t.apply(void 0,arguments)},n)}},to=nr("bm"),En=nr("m"),no=nr("bu"),ya=nr("u"),_a=nr("bum"),Ca=nr("um"),ao=nr("sp"),io=nr("rtg"),uo=nr("rtc");function fo(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:ve;Cn("ec",e,r)}var Ea="components",so="directives";function cc(e,r){return Sa(Ea,e,!0,r)||e}var pu=Symbol.for("v-ndc");function vc(e){return fe(e)?Sa(Ea,e,!1)||e:e||pu}function dc(e){return Sa(so,e)}function Sa(e,r){var t=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,n=ge||ve;if(n){var a=n.type;if(e===Ea){var i=Qn(a,!1);if(i&&(i===r||i===Be(r)||i===fn(Be(r))))return a}var u=Qa(n[e]||a[e],r)||Qa(n.appContext[e],r);return!u&&t?a:u}}function Qa(e,r){return e&&(e[r]||e[Be(r)]||e[fn(Be(r))])}function hc(e,r,t,n){var a,i=t&&t[n];if(L(e)||fe(e)){a=new Array(e.length);for(var u=0,f=e.length;u2&&arguments[2]!==void 0?arguments[2]:{},n=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0;if(ge.isCE||ge.parent&&Fr(ge.parent)&&ge.parent.isCE)return r!=="default"&&(t.name=r),ue("slot",t,n&&n());var i=e[r];i&&i._c&&(i._d=!1),Pa();var u=i&&gu(i(t)),f=Ru(Ce,{key:t.key||u&&u.key||`_${r}`},u||(n?n():[]),u&&e._===1?64:-2);return!a&&f.scopeId&&(f.slotScopeIds=[f.scopeId+"-s"]),i&&i._c&&(i._d=!0),f}function gu(e){return e.some(function(r){return Ir(r)?!(r.type===we||r.type===Ce&&!gu(r.children)):!0})?e:null}function mc(e,r){var t={};for(var n in e)t[r&&/[A-Z]/.test(n)?`on:${n}`:Wt(n)]=e[n];return t}var Ga=function e(r){return r?Mu(r)?An(r)||r.proxy:e(r.parent):null},dt=ae(Object.create(null),{$:function(r){return r},$el:function(r){return r.vnode.el},$data:function(r){return r.data},$props:function(r){return r.props},$attrs:function(r){return r.attrs},$slots:function(r){return r.slots},$refs:function(r){return r.refs},$parent:function(r){return Ga(r.parent)},$root:function(r){return Ga(r.root)},$emit:function(r){return r.emit},$options:function(r){return Aa(r)},$forceUpdate:function(r){return r.f||(r.f=function(){return bn(r.update)})},$nextTick:function(r){return r.n||(r.n=ru.bind(r.proxy))},$watch:function(r){return Xs.bind(r)}}),On=function(r,t){return r!==te&&!r.__isScriptSetup&&Q(r,t)},Vn={get:function(r,t){var n=r._,a=n.ctx,i=n.setupState,u=n.data,f=n.props,s=n.accessCache,o=n.type,c=n.appContext,h;if(t[0]!=="$"){var d=s[t];if(d!==void 0)switch(d){case 1:return i[t];case 2:return u[t];case 4:return a[t];case 3:return f[t]}else{if(On(i,t))return s[t]=1,i[t];if(u!==te&&Q(u,t))return s[t]=2,u[t];if((h=n.propsOptions[0])&&Q(h,t))return s[t]=3,f[t];if(a!==te&&Q(a,t))return s[t]=4,a[t];zn&&(s[t]=0)}}var g=dt[t],_,x;if(g)return t==="$attrs"&&Oe(n,"get",t),g(n);if((_=o.__cssModules)&&(_=_[t]))return _;if(a!==te&&Q(a,t))return s[t]=4,a[t];if(x=c.config.globalProperties,Q(x,t))return x[t]},set:function(r,t,n){var a=r._,i=a.data,u=a.setupState,f=a.ctx;return On(u,t)?(u[t]=n,!0):i!==te&&Q(i,t)?(i[t]=n,!0):Q(a.props,t)||t[0]==="$"&&t.slice(1)in a?!1:(f[t]=n,!0)},has:function(r,t){var n=r._,a=n.data,i=n.setupState,u=n.accessCache,f=n.ctx,s=n.appContext,o=n.propsOptions,c;return!!u[t]||a!==te&&Q(a,t)||On(i,t)||(c=o[0])&&Q(c,t)||Q(f,t)||Q(dt,t)||Q(s.config.globalProperties,t)},defineProperty:function(r,t,n){return n.get!=null?r._.accessCache[t]=0:Q(n,"value")&&this.set(r,t,n.value,null),Reflect.defineProperty(r,t,n)}},oo=ae({},Vn,{get:function(r,t){if(t!==Symbol.unscopables)return Vn.get(r,t,r)},has:function(r,t){var n=t[0]!=="_"&&!Cf(t);return n}});function bc(){return null}function yc(){return null}function _c(e){}function Cc(e){}function Ec(){return null}function Sc(){}function Ac(e,r){return null}function Tc(){return mu().slots}function wc(){return mu().attrs}function Pc(e,r,t){var n=yr();if(t&&t.local){var a=vt(e[r]);return Vr(function(){return e[r]},function(i){return a.value=i}),Vr(a,function(i){i!==e[r]&&n.emit(`update:${r}`,i)}),a}else return{__v_isRef:!0,get value(){return e[r]},set value(i){n.emit(`update:${r}`,i)}}}function mu(){var e=yr();return e.setupContext||(e.setupContext=Lu(e))}function At(e){return L(e)?e.reduce(function(r,t){return r[t]=null,r},{}):e}function xc(e,r){var t=At(e);for(var n in r)if(!n.startsWith("__skip")){var a=t[n];a?L(a)||z(a)?a=t[n]={type:a,default:r[n]}:a.default=r[n]:a===null&&(a=t[n]={default:r[n]}),a&&r[`__skip_${n}`]&&(a.skipFactory=!0)}return t}function Rc(e,r){return!e||!r?e||r:L(e)&&L(r)?e.concat(r):ae({},At(e),At(r))}function Fc(e,r){var t={},n=function(u){r.includes(u)||Object.defineProperty(t,u,{enumerable:!0,get:function(){return e[u]}})};for(var a in e)n(a);return t}function Oc(e){var r=yr(),t=e();return dr(),ua(t)&&(t=t.catch(function(n){throw mr(r),n})),[t,function(){return mr(r)}]}var zn=!0;function lo(e){var r=Aa(e),t=e.proxy,n=e.ctx;zn=!1,r.beforeCreate&&ka(r.beforeCreate,e,"bc");var a=r.data,i=r.computed,u=r.methods,f=r.watch,s=r.provide,o=r.inject,c=r.created,h=r.beforeMount,d=r.mounted,g=r.beforeUpdate,_=r.updated,x=r.activated,O=r.deactivated;r.beforeDestroy;var B=r.beforeUnmount;r.destroyed;var I=r.unmounted,y=r.render,S=r.renderTracked,p=r.renderTriggered,b=r.errorCaptured,C=r.serverPrefetch,M=r.expose,$=r.inheritAttrs,T=r.components,j=r.directives;if(r.filters,o&&co(o,n),u)for(var U in u){var W=u[U];z(W)&&(n[U]=W.bind(t))}if(a){var G=a.call(t,t);ne(G)&&(e.data=ca(G))}if(zn=!0,i){var Y=function(xe){var ie=i[xe],_r=z(ie)?ie.bind(t,t):z(ie.get)?ie.get.bind(t,t):Ze,Br=!z(ie)&&z(ie.set)?ie.set.bind(t):Ze,Ie=Do({get:_r,set:Br});Object.defineProperty(n,xe,{enumerable:!0,configurable:!0,get:function(){return Ie.value},set:function(de){return Ie.value=de}})};for(var H in i)Y(H)}if(f)for(var ce in f)bu(f[ce],n,t,ce);if(s){var oe=z(s)?s.call(t):s;Reflect.ownKeys(oe).forEach(function(me){bo(me,oe[me])})}c&&ka(c,e,"c");function re(me,xe){L(xe)?xe.forEach(function(ie){return me(ie.bind(t))}):xe&&me(xe.bind(t))}if(re(to,h),re(En,d),re(no,g),re(ya,_),re(ks,x),re(eo,O),re(fo,b),re(uo,S),re(io,p),re(_a,B),re(Ca,I),re(ao,C),L(M))if(M.length){var Pe=e.exposed||(e.exposed={});M.forEach(function(me){Object.defineProperty(Pe,me,{get:function(){return t[me]},set:function(ie){return t[me]=ie}})})}else e.exposed||(e.exposed={});y&&e.render===Ze&&(e.render=y),$!=null&&(e.inheritAttrs=$),T&&(e.components=T),j&&(e.directives=j)}function co(e,r){L(e)&&(e=qn(e));var t=function(){var i=e[n],u;ne(i)?"default"in i?u=zt(i.from||n,i.default,!0):u=zt(i.from||n):u=zt(i),pe(u)?Object.defineProperty(r,n,{enumerable:!0,configurable:!0,get:function(){return u.value},set:function(s){return u.value=s}}):r[n]=u};for(var n in e)t()}function ka(e,r,t){Ue(L(e)?e.map(function(n){return n.bind(r.proxy)}):e.bind(r.proxy),r,t)}function bu(e,r,t,n){var a=n.includes(".")?ou(t,n):function(){return t[n]};if(fe(e)){var i=r[e];z(i)&&Vr(a,i)}else if(z(e))Vr(a,e.bind(t));else if(ne(e))if(L(e))e.forEach(function(f){return bu(f,r,t,n)});else{var u=z(e.handler)?e.handler.bind(t):r[e.handler];z(u)&&Vr(a,u,e)}}function Aa(e){var r=e.type,t=r.mixins,n=r.extends,a=e.appContext,i=a.mixins,u=a.optionsCache,f=a.config.optionMergeStrategies,s=u.get(r),o;return s?o=s:!i.length&&!t&&!n?o=r:(o={},i.length&&i.forEach(function(c){return en(o,c,f,!0)}),en(o,r,f)),ne(r)&&u.set(r,o),o}function en(e,r,t){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,a=r.mixins,i=r.extends;i&&en(e,i,t,!0),a&&a.forEach(function(s){return en(e,s,t,!0)});for(var u in r)if(!(n&&u==="expose")){var f=vo[u]||t&&t[u];e[u]=f?f(e[u],r[u]):r[u]}return e}var vo={data:ei,props:ri,emits:ri,methods:lt,computed:lt,beforeCreate:Te,created:Te,beforeMount:Te,mounted:Te,beforeUpdate:Te,updated:Te,beforeDestroy:Te,beforeUnmount:Te,destroyed:Te,unmounted:Te,activated:Te,deactivated:Te,errorCaptured:Te,serverPrefetch:Te,components:lt,directives:lt,watch:po,provide:ei,inject:ho};function ei(e,r){return r?e?function(){return ae(z(e)?e.call(this,this):e,z(r)?r.call(this,this):r)}:r:e}function ho(e,r){return lt(qn(e),qn(r))}function qn(e){if(L(e)){for(var r={},t=0;t1&&arguments[1]!==void 0?arguments[1]:null;z(n)||(n=ae({},n)),a!=null&&!ne(a)&&(a=null);var i=yu(),u=new Set,f=!1,s=i.app={_uid:go++,_component:n,_props:a,_container:null,_context:i,_instance:null,version:Vo,get config(){return i.config},set config(o){},use:function(c){for(var h=arguments.length,d=new Array(h>1?h-1:0),g=1;g2&&arguments[2]!==void 0?arguments[2]:!1,n=ve||ge;if(n||Tt){var a=n?n.parent==null?n.vnode.appContext&&n.vnode.appContext.provides:n.parent.provides:Tt._context.provides;if(a&&e in a)return a[e];if(arguments.length>1)return t&&z(r)?r.call(n&&n.proxy):r}}function Ic(){return!!(ve||ge||Tt)}function yo(e,r,t){var n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,a={},i={};Yt(i,Sn,1),e.propsDefaults=Object.create(null),_u(e,r,a,i);for(var u in e.propsOptions[0])u in a||(a[u]=void 0);t?e.props=n?a:ps(a):e.type.props?e.props=a:e.props=i,e.attrs=i}function _o(e,r,t,n){var a=e.props,i=e.attrs,u=e.vnode.patchFlag,f=J(a),s=gr(e.propsOptions,1),o=s[0],c=!1;if((n||u>0)&&!(u&16)){if(u&8)for(var h=e.vnode.dynamicProps,d=0;d2&&arguments[2]!==void 0?arguments[2]:!1,n=r.propsCache,a=n.get(e);if(a)return a;var i=e.props,u={},f=[],s=!1;if(!z(e)){var o=function(S){s=!0;var p=Cu(S,r,!0),b=gr(p,2),C=b[0],M=b[1];ae(u,C),M&&f.push.apply(f,De(M))};!t&&r.mixins.length&&r.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!s)return ne(e)&&n.set(e,Dr),Dr;if(L(i))for(var c=0;c-1,x[1]=B<0||O-1||Q(x,"default"))&&f.push(g)}}}var I=[u,f];return ne(e)&&n.set(e,I),I}function ti(e){return e[0]!=="$"}function ni(e){var r=e&&e.toString().match(/^\s*(function|class) (\w+)/);return r?r[2]:e===null?"null":""}function ai(e,r){return ni(e)===ni(r)}function ii(e,r){return L(r)?r.findIndex(function(t){return ai(t,e)}):z(r)&&ai(r,e)?0:-1}var Eu=function(r){return r[0]==="_"||r==="$stable"},Ta=function(r){return L(r)?r.map(Ne):[Ne(r)]},Co=function(r,t,n){if(t._n)return t;var a=uu(function(){return Ta(t.apply(void 0,arguments))},n);return a._c=!1,a},Su=function(r,t,n){var a=r._ctx,i=function(){if(Eu(u))return"continue";var o=r[u];if(z(o))t[u]=Co(u,o,a);else if(o!=null){var c=Ta(o);t[u]=function(){return c}}};for(var u in r)var f=i()},Au=function(r,t){var n=Ta(t);r.slots.default=function(){return n}},Eo=function(r,t){if(r.vnode.shapeFlag&32){var n=t._;n?(r.slots=J(t),Yt(t,"_",n)):Su(t,r.slots={})}else r.slots={},t&&Au(r,t);Yt(r.slots,Sn,1)},So=function(r,t,n){var a=r.vnode,i=r.slots,u=!0,f=te;if(a.shapeFlag&32){var s=t._;s?n&&s===1?u=!1:(ae(i,t),!n&&s===1&&delete i._):(u=!t.$stable,Su(t,i)),f=t}else t&&(Au(r,t),f={default:1});if(u)for(var o in i)!Eu(o)&&!(o in f)&&delete i[o]};function rn(e,r,t,n){var a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(L(e)){e.forEach(function(x,O){return rn(x,r&&(L(r)?r[O]:r),t,n,a)});return}if(!(Fr(n)&&!a)){var i=n.shapeFlag&4?An(n.component)||n.component.proxy:n.el,u=a?null:i,f=e.i,s=e.r,o=r&&r.r,c=f.refs===te?f.refs={}:f.refs,h=f.setupState;if(o!=null&&o!==s&&(fe(o)?(c[o]=null,Q(h,o)&&(h[o]=null)):pe(o)&&(o.value=null)),z(s))vr(s,f,12,[u,c]);else{var d=fe(s),g=pe(s);if(d||g){var _=function(){if(e.f){var O=d?Q(h,s)?h[s]:c[s]:s.value;a?L(O)&&ia(O,i):L(O)?O.includes(i)||O.push(i):d?(c[s]=[i],Q(h,s)&&(h[s]=c[s])):(s.value=[i],e.k&&(c[e.k]=s.value))}else d?(c[s]=u,Q(h,s)&&(h[s]=u)):g&&(s.value=u,e.k&&(c[e.k]=u))};u?(_.id=-1,be(_,t)):_()}}}}var fr=!1,Dt=function(r){return/svg/.test(r.namespaceURI)&&r.tagName!=="foreignObject"},Ut=function(r){return r.nodeType===8};function Ao(e){var r=e.mt,t=e.p,n=e.o,a=n.patchProp,i=n.createText,u=n.nextSibling,f=n.parentNode,s=n.remove,o=n.insert,c=n.createComment,h=function(y,S){if(!S.hasChildNodes()){t(null,y,S),kt(),S._vnode=y;return}fr=!1,d(S.firstChild,y,null,null,null),kt(),S._vnode=y,fr&&console.error("Hydration completed but contains mismatches.")},d=function I(y,S,p,b,C){var M=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!1,$=Ut(y)&&y.data==="[",T=function(){return O(y,S,p,b,C,$)},j=S.type,U=S.ref,W=S.shapeFlag,G=S.patchFlag,Y=y.nodeType;S.el=y,G===-2&&(M=!1,S.dynamicChildren=null);var H=null;switch(j){case Xr:Y!==3?S.children===""?(o(S.el=i(""),f(y),y),H=y):H=T():(y.data!==S.children&&(fr=!0,y.data=S.children),H=u(y));break;case we:Y!==8||$?H=T():H=u(y);break;case zr:if($&&(y=u(y),Y=y.nodeType),Y===1||Y===3){H=y;for(var ce=!S.children.length,oe=0;oe3&&arguments[3]!==void 0?arguments[3]:null,A=arguments.length>4&&arguments[4]!==void 0?arguments[4]:null,P=arguments.length>5&&arguments[5]!==void 0?arguments[5]:null,N=arguments.length>6&&arguments[6]!==void 0?arguments[6]:!1,R=arguments.length>7&&arguments[7]!==void 0?arguments[7]:null,F=arguments.length>8&&arguments[8]!==void 0?arguments[8]:!!v.dynamicChildren;if(l!==v){l&&!Ve(l,v)&&(E=de(l),ie(l,A,P,!0),l=null),v.patchFlag===-2&&(F=!1,v.dynamicChildren=null);var w=v.type,q=v.ref,D=v.shapeFlag;switch(w){case Xr:B(l,v,m,E);break;case we:I(l,v,m,E);break;case zr:l==null&&y(v,m,E,N);break;case Ce:W(l,v,m,E,A,P,N,R,F);break;default:D&1?b(l,v,m,E,A,P,N,R,F):D&6?G(l,v,m,E,A,P,N,R,F):(D&64||D&128)&&w.process(l,v,m,E,A,P,N,R,F,qe)}q!=null&&A&&rn(q,l&&l.ref,P,v||l,!v)}},B=function(l,v,m,E){if(l==null)n(v.el=f(v.children),m,E);else{var A=v.el=l.el;v.children!==l.children&&o(A,v.children)}},I=function(l,v,m,E){l==null?n(v.el=s(v.children||""),m,E):v.el=l.el},y=function(l,v,m,E){var A=x(l.children,v,m,E,l.el,l.anchor),P=gr(A,2);l.el=P[0],l.anchor=P[1]},S=function(l,v,m){for(var E=l.el,A=l.anchor,P;E&&E!==A;)P=d(E),n(E,v,m),E=P;n(A,v,m)},p=function(l){for(var v=l.el,m=l.anchor,E;v&&v!==m;)E=d(v),a(v),v=E;a(m)},b=function(l,v,m,E,A,P,N,R,F){N=N||v.type==="svg",l==null?C(v,m,E,A,P,N,R,F):T(l,v,A,P,N,R,F)},C=function(l,v,m,E,A,P,N,R){var F,w,q=l.type,D=l.props,V=l.shapeFlag,Z=l.transition,le=l.dirs;if(F=l.el=u(l.type,P,D&&D.is,D),V&8?c(F,l.children):V&16&&$(l.children,F,null,E,A,P&&q!=="foreignObject",N,R),le&&Je(l,null,E,"created"),M(F,l,l.scopeId,N,E),D){for(var se in D)se!=="value"&&!ct(se)&&i(F,se,null,D[se],P,l.children,E,A,K);"value"in D&&i(F,"value",null,D.value),(w=D.onVnodeBeforeMount)&&Re(w,E,l)}le&&Je(l,null,E,"beforeMount");var ye=(!A||A&&!A.pendingBranch)&&Z&&!Z.persisted;ye&&Z.beforeEnter(F),n(F,v,m),((w=D&&D.onVnodeMounted)||ye||le)&&be(function(){w&&Re(w,E,l),ye&&Z.enter(F),le&&Je(l,null,E,"mounted")},A)},M=function X(l,v,m,E,A){if(m&&_(l,m),E)for(var P=0;P8&&arguments[8]!==void 0?arguments[8]:0,w=F;w0){if(F&16)U(R,v,D,V,m,E,A);else if(F&2&&D.class!==V.class&&i(R,"class",null,V.class,A),F&4&&i(R,"style",D.style,V.style,A),F&8)for(var se=v.dynamicProps,ye=0;ye0&&D&64&&V&&l.dynamicChildren?(j(l.dynamicChildren,V,m,A,P,N,R),(v.key!=null||A&&v===A.subTree)&&wa(l,v,!0)):re(l,v,m,q,A,P,N,R,F)},G=function(l,v,m,E,A,P,N,R,F){v.slotScopeIds=R,l==null?v.shapeFlag&512?A.ctx.activate(v,m,E,N,F):Y(v,m,E,A,P,N,F):H(l,v,F)},Y=function(l,v,m,E,A,P,N){var R=l.component=$u(l,E,A);if(xt(l)&&(R.ctx.renderer=qe),Nu(R),R.asyncDep){if(A&&A.registerDep(R,ce),!l.el){var F=R.subTree=ue(we);I(null,F,v,m)}return}ce(R,l,v,m,A,P,N)},H=function(l,v,m){var E=v.component=l.component;if(Hs(l,v,m))if(E.asyncDep&&!E.asyncResolved){oe(E,v,m);return}else E.next=v,Ms(E.update),E.update();else v.el=l.el,E.vnode=v},ce=function(l,v,m,E,A,P,N){var R=function(){if(l.isMounted){var Ae=l.next,$e=l.bu,nt=l.u,Er=l.parent,ir=l.vnode,Ot=Ae,Ye;Sr(l,!1),Ae?(Ae.el=ir.el,oe(l,Ae,N)):Ae=ir,$e&&Hr($e),(Ye=Ae.props&&Ae.props.onVnodeBeforeUpdate)&&Re(Ye,Er,Ae,ir),Sr(l,!0);var He=Vt(l),Ke=l.subTree;l.subTree=He,O(Ke,He,h(Ke.el),de(Ke),l,A,P),Ae.el=He.el,Ot===null&&ga(l,He.el),nt&&be(nt,A),(Ye=Ae.props&&Ae.props.onVnodeUpdated)&&be(function(){return Re(Ye,Er,Ae,ir)},A)}else{var D,V=v,Z=V.el,le=V.props,se=l.bm,ye=l.m,Se=l.parent,ar=Fr(v);if(Sr(l,!1),se&&Hr(se),!ar&&(D=le&&le.onVnodeBeforeMount)&&Re(D,Se,v),Sr(l,!0),Z&&Rt){var Cr=function(){l.subTree=Vt(l),Rt(Z,l.subTree,l,A,null)};ar?v.type.__asyncLoader().then(function(){return!l.isUnmounted&&Cr()}):Cr()}else{var Qe=l.subTree=Vt(l);O(null,Qe,m,E,l,A,P),v.el=Qe.el}if(ye&&be(ye,A),!ar&&(D=le&&le.onVnodeMounted)){var Ft=v;be(function(){return Re(D,Se,Ft)},A)}(v.shapeFlag&256||Se&&Fr(Se.vnode)&&Se.vnode.shapeFlag&256)&&l.a&&be(l.a,A),l.isMounted=!0,v=m=E=null}},F=l.effect=new cn(R,function(){return bn(w)},l.scope),w=l.update=function(){return F.run()};w.id=l.uid,Sr(l,!0),w()},oe=function(l,v,m){v.component=l;var E=l.vnode.props;l.vnode=v,l.next=null,_o(l,v.props,E,m),So(l,v.children,m),et(),Ya(),rt()},re=function(l,v,m,E,A,P,N,R){var F=arguments.length>8&&arguments[8]!==void 0?arguments[8]:!1,w=l&&l.children,q=l?l.shapeFlag:0,D=v.children,V=v.patchFlag,Z=v.shapeFlag;if(V>0){if(V&128){me(w,D,m,E,A,P,N,R,F);return}else if(V&256){Pe(w,D,m,E,A,P,N,R,F);return}}Z&8?(q&16&&K(w,A,P),D!==w&&c(m,D)):q&16?Z&16?me(w,D,m,E,A,P,N,R,F):K(w,A,P,!0):(q&8&&c(m,""),Z&16&&$(D,m,E,A,P,N,R,F))},Pe=function(l,v,m,E,A,P,N,R,F){l=l||Dr,v=v||Dr;var w=l.length,q=v.length,D=Math.min(w,q),V;for(V=0;Vq?K(l,A,P,!0,!1,D):$(v,m,E,A,P,N,R,F,D)},me=function(l,v,m,E,A,P,N,R,F){for(var w=0,q=v.length,D=l.length-1,V=q-1;w<=D&&w<=V;){var Z=l[w],le=v[w]=F?lr(v[w]):Ne(v[w]);if(Ve(Z,le))O(Z,le,m,null,A,P,N,R,F);else break;w++}for(;w<=D&&w<=V;){var se=l[D],ye=v[V]=F?lr(v[V]):Ne(v[V]);if(Ve(se,ye))O(se,ye,m,null,A,P,N,R,F);else break;D--,V--}if(w>D){if(w<=V)for(var Se=V+1,ar=SeV)for(;w<=D;)ie(l[w],A,P,!0),w++;else{var Cr=w,Qe=w,Ft=new Map;for(w=Qe;w<=V;w++){var Ae=v[w]=F?lr(v[w]):Ne(v[w]);Ae.key!=null&&Ft.set(Ae.key,w)}var $e,nt=0,Er=V-Qe+1,ir=!1,Ot=0,Ye=new Array(Er);for(w=0;w=Er){ie(He,A,P,!0);continue}var Ke=void 0;if(He.key!=null)Ke=Ft.get(He.key);else for($e=Qe;$e<=V;$e++)if(Ye[$e-Qe]===0&&Ve(He,v[$e])){Ke=$e;break}Ke===void 0?ie(He,A,P,!0):(Ye[Ke-Qe]=w+1,Ke>=Ot?Ot=Ke:ir=!0,O(He,v[Ke],m,null,A,P,N,R,F),nt++)}var Tn=ir?Po(Ye):Dr;for($e=Tn.length-1,w=Er-1;w>=0;w--){var wn=Qe+w,Ma=v[wn],Na=wn+14&&arguments[4]!==void 0?arguments[4]:null,P=l.el,N=l.type,R=l.transition,F=l.children,w=l.shapeFlag;if(w&6){X(l.component.subTree,v,m,E);return}if(w&128){l.suspense.move(v,m,E);return}if(w&64){N.move(l,v,m,qe);return}if(N===Ce){n(P,v,m);for(var q=0;q3&&arguments[3]!==void 0?arguments[3]:!1,A=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,P=l.type,N=l.props,R=l.ref,F=l.children,w=l.dynamicChildren,q=l.shapeFlag,D=l.patchFlag,V=l.dirs;if(R!=null&&rn(R,null,m,l,!0),q&256){v.ctx.deactivate(l);return}var Z=q&1&&V,le=!Fr(l),se;if(le&&(se=N&&N.onVnodeBeforeUnmount)&&Re(se,v,l),q&6)Ie(l.component,m,E);else{if(q&128){l.suspense.unmount(m,E);return}Z&&Je(l,null,v,"beforeUnmount"),q&64?l.type.remove(l,v,m,A,qe,E):w&&(P!==Ce||D>0&&D&64)?K(w,v,m,!1,!0):(P===Ce&&D&384||!A&&q&16)&&K(F,v,m),E&&_r(l)}(le&&(se=N&&N.onVnodeUnmounted)||Z)&&be(function(){se&&Re(se,v,l),Z&&Je(l,null,v,"unmounted")},m)},_r=function(l){var v=l.type,m=l.el,E=l.anchor,A=l.transition;if(v===Ce){Br(m,E);return}if(v===zr){p(l);return}var P=function(){a(m),A&&!A.persisted&&A.afterLeave&&A.afterLeave()};if(l.shapeFlag&1&&A&&!A.persisted){var N=A.leave,R=A.delayLeave,F=function(){return N(m,P)};R?R(l.el,P,F):F()}else P()},Br=function(l,v){for(var m;l!==v;)m=d(l),a(l),l=m;a(v)},Ie=function(l,v,m){var E=l.bum,A=l.scope,P=l.update,N=l.subTree,R=l.um;E&&Hr(E),A.stop(),P&&(P.active=!1,ie(N,l,v,m)),R&&be(R,v),be(function(){l.isUnmounted=!0},v),v&&v.pendingBranch&&!v.isUnmounted&&l.asyncDep&&!l.asyncResolved&&l.suspenseId===v.pendingId&&(v.deps--,v.deps===0&&v.resolve())},K=function(l,v,m){for(var E=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,A=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,P=arguments.length>5&&arguments[5]!==void 0?arguments[5]:0,N=P;N2&&arguments[2]!==void 0?arguments[2]:!1,n=e.children,a=r.children;if(L(n)&&L(a))for(var i=0;i>1,e[t[f]]0&&(r[n]=t[i-1]),t[i]=n)}}for(i=t.length,u=t[i-1];i-- >0;)t[i]=u,u=r[u];return t}var xo=function(r){return r.__isTeleport},ht=function(r){return r&&(r.disabled||r.disabled==="")},ui=function(r){return typeof SVGElement!="undefined"&&r instanceof SVGElement},Jn=function(r,t){var n=r&&r.to;if(fe(n))if(t){var a=t(n);return a}else return null;else return n},Ro={__isTeleport:!0,process:function(e){function r(t,n,a,i,u,f,s,o,c,h){return e.apply(this,arguments)}return r.toString=function(){return e.toString()},r}(function(e,r,t,n,a,i,u,f,s,o){var c=o.mc,h=o.pc,d=o.pbc,g=o.o,_=g.insert,x=g.querySelector,O=g.createText;g.createComment;var B=ht(r.props),I=r.shapeFlag,y=r.children,S=r.dynamicChildren;if(e==null){var p=r.el=O(""),b=r.anchor=O("");_(p,t,n),_(b,t,n);var C=r.target=Jn(r.props,x),M=r.targetAnchor=O("");C&&(_(M,C),u=u||ui(C));var $=function(oe,re){I&16&&c(y,oe,re,a,i,u,f,s)};B?$(t,b):C&&$(C,M)}else{r.el=e.el;var T=r.anchor=e.anchor,j=r.target=e.target,U=r.targetAnchor=e.targetAnchor,W=ht(e.props),G=W?t:j,Y=W?T:U;if(u=u||ui(j),S?(d(e.dynamicChildren,S,G,a,i,u,f),wa(e,r,!0)):s||h(e,r,G,Y,a,i,u,f,!1),B)W||Ht(r,t,T,o,1);else if((r.props&&r.props.to)!==(e.props&&e.props.to)){var H=r.target=Jn(r.props,x);H&&Ht(r,H,null,o,0)}else W&&Ht(r,j,U,o,1)}wu(r)}),remove:function(r,t,n,a,i,u){var f=i.um,s=i.o.remove,o=r.shapeFlag,c=r.children,h=r.anchor,d=r.targetAnchor,g=r.target,_=r.props;if(g&&s(d),(u||!ht(_))&&(s(h),o&16))for(var x=0;x4&&arguments[4]!==void 0?arguments[4]:2;u===0&&a(e.targetAnchor,r,t);var f=e.el,s=e.anchor,o=e.shapeFlag,c=e.children,h=e.props,d=u===2;if(d&&a(f,r,t),(!d||ht(h))&&o&16)for(var g=0;g0&&arguments[0]!==void 0?arguments[0]:!1;pt.push(Fe=e?null:[])}function Pu(){pt.pop(),Fe=pt[pt.length-1]||null}var Or=1;function fi(e){Or+=e}function xu(e){return e.dynamicChildren=Or>0?Fe||Dr:null,Pu(),Or>0&&Fe&&Fe.push(e),e}function Mc(e,r,t,n,a,i){return xu(Ou(e,r,t,n,a,i,!0))}function Ru(e,r,t,n,a){return xu(ue(e,r,t,n,a,!0))}function Ir(e){return e?e.__v_isVNode===!0:!1}function Ve(e,r){return e.type===r.type&&e.key===r.key}function Nc(e){}var Sn="__vInternal",Fu=function(r){var t=r.key;return t!=null?t:null},qt=function(r){var t=r.ref,n=r.ref_key,a=r.ref_for;return typeof t=="number"&&(t=""+t),t!=null?fe(t)||pe(t)||z(t)?{i:ge,r:t,k:n,f:!!a}:t:null};function Ou(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:null,i=arguments.length>5&&arguments[5]!==void 0?arguments[5]:e===Ce?0:1,u=arguments.length>6&&arguments[6]!==void 0?arguments[6]:!1,f=arguments.length>7&&arguments[7]!==void 0?arguments[7]:!1,s={__v_isVNode:!0,__v_skip:!0,type:e,props:r,key:r&&Fu(r),ref:r&&qt(r),scopeId:_n,slotScopeIds:null,children:t,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:n,dynamicProps:a,dynamicChildren:null,appContext:null,ctx:ge};return f?(xa(s,t),i&128&&e.normalize(s)):t&&(s.shapeFlag|=fe(t)?8:16),Or>0&&!u&&Fe&&(s.patchFlag>0||i&6)&&s.patchFlag!==32&&Fe.push(s),s}var ue=Oo;function Oo(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:null,i=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!1;if((!e||e===pu)&&(e=we),Ir(e)){var u=tr(e,r,!0);return t&&xa(u,t),Or>0&&!i&&Fe&&(u.shapeFlag&6?Fe[Fe.indexOf(e)]=u:Fe.push(u)),u.patchFlag|=-2,u}if(jo(e)&&(e=e.__vccOpts),r){r=Io(r);var f=r,s=f.class,o=f.style;s&&!fe(s)&&(r.class=on(s)),ne(o)&&(Ji(o)&&!L(o)&&(o=ae({},o)),r.style=sn(o))}var c=fe(e)?1:fu(e)?128:xo(e)?64:ne(e)?4:z(e)?2:0;return Ou(e,r,t,n,a,c,i,!0)}function Io(e){return e?Ji(e)||Sn in e?ae({},e):e:null}function tr(e,r){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,n=e.props,a=e.ref,i=e.patchFlag,u=e.children,f=r?$o(n||{},r):n,s={__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&Fu(f),ref:r&&r.ref?t&&a?L(a)?a.concat(qt(r)):[a,qt(r)]:qt(r):a,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:u,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:r&&e.type!==Ce?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&tr(e.ssContent),ssFallback:e.ssFallback&&tr(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return s}function Iu(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:" ",r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return ue(Xr,null,e,r)}function Bc(e,r){var t=ue(zr,null,e);return t.staticCount=r,t}function Lc(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return r?(Pa(),Ru(we,null,e)):ue(we,null,e)}function Ne(e){return e==null||typeof e=="boolean"?ue(we):L(e)?ue(Ce,null,e.slice()):typeof e=="object"?lr(e):ue(Xr,null,String(e))}function lr(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:tr(e)}function xa(e,r){var t=0,n=e.shapeFlag;if(r==null)r=null;else if(L(r))t=16;else if(typeof r=="object")if(n&65){var a=r.default;a&&(a._c&&(a._d=!1),xa(e,a()),a._c&&(a._d=!0));return}else{t=32;var i=r._;!i&&!(Sn in r)?r._ctx=ge:i===3&&ge&&(ge.slots._===1?r._=1:(r._=2,e.patchFlag|=1024))}else z(r)?(r={default:r,_ctx:ge},t=32):(r=String(r),n&64?(t=16,r=[Iu(r)]):t=8);e.children=r,e.shapeFlag|=t}function $o(){for(var e={},r=0;r3&&arguments[3]!==void 0?arguments[3]:null;Ue(e,r,7,[t,n])}var Mo=yu(),No=0;function $u(e,r,t){var n=e.type,a=(r?r.appContext:e.appContext)||Mo,i={uid:No++,vnode:e,type:n,parent:r,appContext:a,root:null,next:null,subTree:null,effect:null,update:null,scope:new $i(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:r?r.provides:Object.create(a.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Cu(n,a),emitsOptions:iu(n,a),emit:null,emitted:null,propsDefaults:te,inheritAttrs:n.inheritAttrs,ctx:te,data:te,props:te,attrs:te,slots:te,refs:te,setupState:te,setupContext:null,attrsProxy:null,slotsProxy:null,suspense:t,suspenseId:t?t.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 i.ctx={_:i},i.root=r?r.root:i,i.emit=Ls.bind(null,i),e.ce&&e.ce(i),i}var ve=null,yr=function(){return ve||ge},Ra,jr,si="__VUE_INSTANCE_SETTERS__";(jr=Bn()[si])||(jr=Bn()[si]=[]),jr.push(function(e){return ve=e}),Ra=function(r){jr.length>1?jr.forEach(function(t){return t(r)}):jr[0](r)};var mr=function(r){Ra(r),r.scope.on()},dr=function(){ve&&ve.scope.off(),Ra(null)};function Mu(e){return e.vnode.shapeFlag&4}var Zr=!1;function Nu(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;Zr=r;var t=e.vnode,n=t.props,a=t.children,i=Mu(e);yo(e,n,i,r),Eo(e,a);var u=i?Bo(e,r):void 0;return Zr=!1,u}function Bo(e,r){var t=e.type;e.accessCache=Object.create(null),e.proxy=Xi(new Proxy(e.ctx,Vn));var n=t.setup;if(n){var a=e.setupContext=n.length>1?Lu(e):null;mr(e),et();var i=vr(n,e,0,[e.props,a]);if(rt(),dr(),ua(i)){if(i.then(dr,dr),r)return i.then(function(u){Xn(e,u,r)}).catch(function(u){tt(u,e,0)});e.asyncDep=i}else Xn(e,i,r)}else Bu(e,r)}function Xn(e,r,t){z(r)?e.type.__ssrInlineRender?e.ssrRender=r:e.render=r:ne(r)&&(e.setupState=Gi(r)),Bu(e,t)}var tn,Zn;function jc(e){tn=e,Zn=function(t){t.render._rc&&(t.withProxy=new Proxy(t.ctx,oo))}}var Dc=function(){return!tn};function Bu(e,r,t){var n=e.type;if(!e.render){if(!r&&tn&&!n.render){var a=n.template||Aa(e).template;if(a){var i=e.appContext.config,u=i.isCustomElement,f=i.compilerOptions,s=n.delimiters,o=n.compilerOptions,c=ae(ae({isCustomElement:u,delimiters:s},f),o);n.render=tn(a,c)}}e.render=n.render||Ze,Zn&&Zn(e)}mr(e),et(),lo(e),rt(),dr()}function Lo(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get:function(t,n){return Oe(e,"get","$attrs"),t[n]}}))}function Lu(e){var r=function(n){e.exposed=n||{}};return{get attrs(){return Lo(e)},slots:e.slots,emit:e.emit,expose:r}}function An(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Gi(Xi(e.exposed)),{get:function(t,n){if(n in t)return t[n];if(n in dt)return dt[n](e)},has:function(t,n){return n in t||n in dt}}))}function Qn(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return z(e)?e.displayName||e.name:e.name||r&&e.__name}function jo(e){return z(e)&&"__vccOpts"in e}var Do=function(r,t){return Es(r,t,Zr)};function Uo(e,r,t){var n=arguments.length;return n===2?ne(r)&&!L(r)?Ir(r)?ue(e,null,[r]):ue(e,r):ue(e,null,r):(n>3?t=Array.prototype.slice.call(arguments,2):n===3&&Ir(t)&&(t=[t]),ue(e,r,t))}var Ho=Symbol.for("v-scx"),Ko=function(){{var r=zt(Ho);return r}};function Uc(){}function Hc(e,r,t,n){var a=t[n];if(a&&Wo(a,e))return a;var i=r();return i.memo=e.slice(),t[n]=i}function Wo(e,r){var t=e.memo;if(t.length!=r.length)return!1;for(var n=0;n0&&Fe&&Fe.push(e),!0}var Vo="3.3.4",zo={createComponentInstance:$u,setupComponent:Nu,renderComponentRoot:Vt,setCurrentRenderingInstance:Ct,isVNode:Ir,normalizeVNode:Ne},Kc=zo,Wc=null,Vc=null;function oi(e,r){var t=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!t){if(Array.isArray(e)||(t=Ia(e))||r&&e&&typeof e.length=="number"){t&&(e=t);var n=0,a=function(){};return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(o){throw o},f:a}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,u=!1,f;return{s:function(){t=t.call(e)},n:function(){var o=t.next();return i=o.done,o},e:function(o){u=!0,f=o},f:function(){try{!i&&t.return!=null&&t.return()}finally{if(u)throw f}}}}function li(e,r){for(var t=0;te.length)&&(r=e.length);for(var t=0,n=new Array(r);t${r}`:r;var s=ci.content;if(a){for(var o=s.firstChild;o.firstChild;)s.appendChild(o.firstChild);s.removeChild(o)}t.insertBefore(s,n)}return[f?f.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function ul(e,r,t){var n=e._vtc;n&&(r=(r?[r].concat(Qr(n)):Qr(n)).join(" ")),r==null?e.removeAttribute("class"):t?e.setAttribute("class",r):e.className=r}function fl(e,r,t){var n=e.style,a=fe(t);if(t&&!a){if(r&&!fe(r))for(var i in r)t[i]==null&&ea(n,i,"");for(var u in t)ea(n,u,t[u])}else{var f=n.display;a?r!==t&&(n.cssText=t):r&&e.removeAttribute("style"),"_vod"in e&&(n.display=f)}}var vi=/\s*!important$/;function ea(e,r,t){if(L(t))t.forEach(function(a){return ea(e,r,a)});else if(t==null&&(t=""),r.startsWith("--"))e.setProperty(r,t);else{var n=sl(e,r);vi.test(t)?e.setProperty(je(n),t.replace(vi,""),"important"):e[n]=t}}var di=["Webkit","Moz","ms"],In={};function sl(e,r){var t=In[r];if(t)return t;var n=Be(r);if(n!=="filter"&&n in e)return In[r]=n;n=fn(n);for(var a=0;a4&&arguments[4]!==void 0?arguments[4]:null,i=e._vei||(e._vei={}),u=i[r];if(n&&u)u.value=n;else{var f=dl(r),s=Qo(f,2),o=s[0],c=s[1];if(n){var h=i[r]=gl(n,a);er(e,o,h,c)}else u&&(cl(e,o,u,c),i[r]=void 0)}}var pi=/(?:Once|Passive|Capture)$/;function dl(e){var r;if(pi.test(e)){r={};for(var t;t=e.match(pi);)e=e.slice(0,e.length-t[0].length),r[t[0].toLowerCase()]=!0}var n=e[2]===":"?e.slice(3):je(e.slice(2));return[n,r]}var $n=0,hl=Promise.resolve(),pl=function(){return $n||(hl.then(function(){return $n=0}),$n=Date.now())};function gl(e,r){var t=function n(a){if(!a._vts)a._vts=Date.now();else if(a._vts<=n.attached)return;Ue(ml(a,n.value),r,5,[a])};return t.value=e,t.attached=pl(),t}function ml(e,r){if(L(r)){var t=e.stopImmediatePropagation;return e.stopImmediatePropagation=function(){t.call(e),e._stopped=!0},r.map(function(n){return function(a){return!a._stopped&&n&&n(a)}})}else return r}var gi=/^on[a-z]/,bl=function(r,t,n,a){var i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,u=arguments.length>5?arguments[5]:void 0,f=arguments.length>6?arguments[6]:void 0,s=arguments.length>7?arguments[7]:void 0,o=arguments.length>8?arguments[8]:void 0;t==="class"?ul(r,a,i):t==="style"?fl(r,n,a):wt(t)?aa(t)||vl(r,t,n,a,f):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):yl(r,t,a,i))?ll(r,t,a,u,f,s,o):(t==="true-value"?r._trueValue=a:t==="false-value"&&(r._falseValue=a),ol(r,t,a,i))};function yl(e,r,t,n){return n?!!(r==="innerHTML"||r==="textContent"||r in e&&gi.test(r)&&z(t)):r==="spellcheck"||r==="draggable"||r==="translate"||r==="form"||r==="list"&&e.tagName==="INPUT"||r==="type"&&e.tagName==="TEXTAREA"||gi.test(r)&&fe(t)?!1:r in e}function _l(e,r){var t=du(e),n=function(a){ju(u,a);var i=Du(u);function u(f){return Oa(this,u),i.call(this,t,f,r)}return Fa(u)}(El);return n.def=t,n}var zc=function(r){return _l(r,Ul)},Cl=typeof HTMLElement!="undefined"?HTMLElement:function(){function e(){Oa(this,e)}return Fa(e)}(),El=function(e){ju(t,e);var r=Du(t);function t(n){var a,i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},u=arguments.length>2?arguments[2]:void 0;return Oa(this,t),a=r.call(this),a._def=n,a._props=i,a._instance=null,a._connected=!1,a._resolved=!1,a._numberProps=null,a.shadowRoot&&u?u(a._createVNode(),a.shadowRoot):(a.attachShadow({mode:"open"}),a._def.__asyncLoader||a._resolveProps(a._def)),a}return Fa(t,[{key:"connectedCallback",value:function(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}},{key:"disconnectedCallback",value:function(){var a=this;this._connected=!1,ru(function(){a._connected||(wi(null,a.shadowRoot),a._instance=null)})}},{key:"_resolveDef",value:function(){var a=this;this._resolved=!0;for(var i=0;i1&&arguments[1]!==void 0?arguments[1]:!1,h=o.props,d=o.styles,g;if(h&&!L(h))for(var _ in h){var x=h[_];(x===Number||x&&x.type===Number)&&(_ in a._props&&(a._props[_]=Xt(a._props[_])),(g||(g=Object.create(null)))[Be(_)]=!0)}a._numberProps=g,c&&a._resolveProps(o),a._applyStyles(d),a._update()},f=this._def.__asyncLoader;f?f().then(function(s){return u(s,!0)}):u(this._def)}},{key:"_resolveProps",value:function(a){for(var i=this,u=a.props,f=L(u)?u:Object.keys(u||{}),s=0,o=Object.keys(this);s2&&arguments[2]!==void 0?arguments[2]:!0,f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0;i!==this._props[a]&&(this._props[a]=i,f&&this._instance&&this._update(),u&&(i===!0?this.setAttribute(je(a),""):typeof i=="string"||typeof i=="number"?this.setAttribute(je(a),i+""):i||this.removeAttribute(je(a))))}},{key:"_update",value:function(){wi(this._createVNode(),this.shadowRoot)}},{key:"_createVNode",value:function(){var a=this,i=ue(this._def,ae({},this._props));return this._instance||(i.ce=function(u){a._instance=u,u.isCE=!0;var f=function(c,h){a.dispatchEvent(new CustomEvent(c,{detail:h}))};u.emit=function(o){for(var c=arguments.length,h=new Array(c>1?c-1:0),d=1;d0&&arguments[0]!==void 0?arguments[0]:"$style";{var r=yr();if(!r)return te;var t=r.type.__cssModules;if(!t)return te;var n=t[e];return n||te}}function Yc(e){var r=yr();if(r){var t=r.ut=function(){var a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:e(r.proxy);Array.from(document.querySelectorAll(`[data-v-owner="${r.uid}"]`)).forEach(function(i){return ta(i,a)})},n=function(){var i=e(r.proxy);ra(r.subTree,i),t(i)};Js(n),En(function(){var a=new MutationObserver(n);a.observe(r.subTree.el.parentNode,{childList:!0}),Ca(function(){return a.disconnect()})})}}function ra(e,r){if(e.shapeFlag&128){var t=e.suspense;e=t.activeBranch,t.pendingBranch&&!t.isHydrating&&t.effects.push(function(){ra(t.activeBranch,r)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)ta(e.el,r);else if(e.type===Ce)e.children.forEach(function(u){return ra(u,r)});else if(e.type===zr)for(var n=e,a=n.el,i=n.anchor;a&&(ta(a,r),a!==i);)a=a.nextSibling}function ta(e,r){if(e.nodeType===1){var t=e.style;for(var n in r)t.setProperty(`--${n}`,r[n])}}var sr="transition",ut="animation",Uu=function(r,t){var n=t.slots;return Uo(Qs,Ku(r),n)};Uu.displayName="Transition";var Hu={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},Sl=Uu.props=ae({},cu,Hu),Ar=function(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[];L(r)?r.forEach(function(n){return n.apply(void 0,Qr(t))}):r&&r.apply(void 0,Qr(t))},mi=function(r){return r?L(r)?r.some(function(t){return t.length>1}):r.length>1:!1};function Ku(e){var r={};for(var t in e)t in Hu||(r[t]=e[t]);if(e.css===!1)return r;var n=e.name,a=n===void 0?"v":n,i=e.type,u=e.duration,f=e.enterFromClass,s=f===void 0?`${a}-enter-from`:f,o=e.enterActiveClass,c=o===void 0?`${a}-enter-active`:o,h=e.enterToClass,d=h===void 0?`${a}-enter-to`:h,g=e.appearFromClass,_=g===void 0?s:g,x=e.appearActiveClass,O=x===void 0?c:x,B=e.appearToClass,I=B===void 0?d:B,y=e.leaveFromClass,S=y===void 0?`${a}-leave-from`:y,p=e.leaveActiveClass,b=p===void 0?`${a}-leave-active`:p,C=e.leaveToClass,M=C===void 0?`${a}-leave-to`:C,$=Al(u),T=$&&$[0],j=$&&$[1],U=r.onBeforeEnter,W=r.onEnter,G=r.onEnterCancelled,Y=r.onLeave,H=r.onLeaveCancelled,ce=r.onBeforeAppear,oe=ce===void 0?U:ce,re=r.onAppear,Pe=re===void 0?W:re,me=r.onAppearCancelled,xe=me===void 0?G:me,ie=function(K,de,ze){or(K,de?I:d),or(K,de?O:c),ze&&ze()},_r=function(K,de){K._isLeaving=!1,or(K,S),or(K,M),or(K,b),de&&de()},Br=function(K){return function(de,ze){var qe=K?Pe:W,Lr=function(){return ie(de,K,ze)};Ar(qe,[de,Lr]),bi(function(){or(de,K?_:s),Ge(de,K?I:d),mi(qe)||yi(de,i,T,Lr)})}};return ae(r,{onBeforeEnter:function(K){Ar(U,[K]),Ge(K,s),Ge(K,c)},onBeforeAppear:function(K){Ar(oe,[K]),Ge(K,_),Ge(K,O)},onEnter:Br(!1),onAppear:Br(!0),onLeave:function(K,de){K._isLeaving=!0;var ze=function(){return _r(K,de)};Ge(K,S),Vu(),Ge(K,b),bi(function(){K._isLeaving&&(or(K,S),Ge(K,M),mi(Y)||yi(K,i,j,ze))}),Ar(Y,[K,ze])},onEnterCancelled:function(K){ie(K,!1),Ar(G,[K])},onAppearCancelled:function(K){ie(K,!0),Ar(xe,[K])},onLeaveCancelled:function(K){_r(K),Ar(H,[K])}})}function Al(e){if(e==null)return null;if(ne(e))return[Mn(e.enter),Mn(e.leave)];var r=Mn(e);return[r,r]}function Mn(e){var r=Xt(e);return r}function Ge(e,r){r.split(/\s+/).forEach(function(t){return t&&e.classList.add(t)}),(e._vtc||(e._vtc=new Set)).add(r)}function or(e,r){r.split(/\s+/).forEach(function(n){return n&&e.classList.remove(n)});var t=e._vtc;t&&(t.delete(r),t.size||(e._vtc=void 0))}function bi(e){requestAnimationFrame(function(){requestAnimationFrame(e)})}var Tl=0;function yi(e,r,t,n){var a=e._endId=++Tl,i=function(){a===e._endId&&n()};if(t)return setTimeout(i,t);var u=Wu(e,r),f=u.type,s=u.timeout,o=u.propCount;if(!f)return n();var c=f+"end",h=0,d=function(){e.removeEventListener(c,g),i()},g=function(x){x.target===e&&++h>=o&&d()};setTimeout(function(){h0&&(c=sr,h=u,d=i.length):r===ut?o>0&&(c=ut,h=o,d=s.length):(h=Math.max(u,o),c=h>0?u>o?sr:ut:null,d=c?c===sr?i.length:s.length:0);var g=c===sr&&/\b(transform|all)(,|$)/.test(n(`${sr}Property`).toString());return{type:c,timeout:h,propCount:d,hasTransform:g}}function _i(e,r){for(;e.length-1:$r(n)?e.checked=n.has(t.props.value):n!==a&&(e.checked=hr(n,Zu(e,!0)))}var Xu={created:function(r,t,n){var a=t.value;r.checked=hr(a,n.props.value),r._assign=br(n),er(r,"change",function(){r._assign(Gr(r))})},beforeUpdate:function(r,t,n){var a=t.value,i=t.oldValue;r._assign=br(n),a!==i&&(r.checked=hr(a,n.props.value))}},Il={deep:!0,created:function(r,t,n){var a=t.value,i=t.modifiers.number,u=$r(a);er(r,"change",function(){var f=Array.prototype.filter.call(r.options,function(s){return s.selected}).map(function(s){return i?Jt(Gr(s)):Gr(s)});r._assign(r.multiple?u?new Set(f):f:f[0])}),r._assign=br(n)},mounted:function(r,t){var n=t.value;Ai(r,n)},beforeUpdate:function(r,t,n){r._assign=br(n)},updated:function(r,t){var n=t.value;Ai(r,n)}};function Ai(e,r){var t=e.multiple;if(!(t&&!L(r)&&!$r(r))){for(var n=0,a=e.options.length;n-1:i.selected=r.has(u);else if(hr(Gr(i),r)){e.selectedIndex!==n&&(e.selectedIndex=n);return}}!t&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Gr(e){return"_value"in e?e._value:e.value}function Zu(e,r){var t=r?"_trueValue":"_falseValue";return t in e?e[t]:r}var $l={created:function(r,t,n){Kt(r,t,n,null,"created")},mounted:function(r,t,n){Kt(r,t,n,null,"mounted")},beforeUpdate:function(r,t,n,a){Kt(r,t,n,a,"beforeUpdate")},updated:function(r,t,n,a){Kt(r,t,n,a,"updated")}};function Qu(e,r){switch(e){case"SELECT":return Il;case"TEXTAREA":return na;default:switch(r){case"checkbox":return Ju;case"radio":return Xu;default:return na}}}function Kt(e,r,t,n,a){var i=Qu(e.tagName,t.props&&t.props.type),u=i[a];u&&u(e,r,t,n)}function Ml(){na.getSSRProps=function(e){var r=e.value;return{value:r}},Xu.getSSRProps=function(e,r){var t=e.value;if(r.props&&hr(r.props.value,t))return{checked:!0}},Ju.getSSRProps=function(e,r){var t=e.value;if(L(t)){if(r.props&&ln(t,r.props.value)>-1)return{checked:!0}}else if($r(t)){if(r.props&&t.has(r.props.value))return{checked:!0}}else if(t)return{checked:!0}},$l.getSSRProps=function(e,r){if(typeof r.type=="string"){var t=Qu(r.type.toUpperCase(),r.props&&r.props.type);if(t.getSSRProps)return t.getSSRProps(e,r)}}}var Nl=["ctrl","shift","alt","meta"],Bl={stop:function(r){return r.stopPropagation()},prevent:function(r){return r.preventDefault()},self:function(r){return r.target!==r.currentTarget},ctrl:function(r){return!r.ctrlKey},shift:function(r){return!r.shiftKey},alt:function(r){return!r.altKey},meta:function(r){return!r.metaKey},left:function(r){return"button"in r&&r.button!==0},middle:function(r){return"button"in r&&r.button!==1},right:function(r){return"button"in r&&r.button!==2},exact:function(r,t){return Nl.some(function(n){return r[`${n}Key`]&&!t.includes(n)})}},Xc=function(r,t){return function(n){for(var a=0;a1?u-1:0),s=1;snew Promise((r,o)=>{var c=a=>{try{s(n.next(a))}catch(u){o(u)}},l=a=>{try{s(n.throw(a))}catch(u){o(u)}},s=a=>a.done?r(a.value):Promise.resolve(a.value).then(c,l);s((n=n.apply(e,t)).next())});import{u as G,i as J,t as K,d as V,g as Q,e as U,f as W,h as N,n as Z,j as k,r as X,k as _,l as S,w as E}from"./@vue-062efada.js";function D(e){return Q()?(U(e),!0):!1}function O(e){return typeof e=="function"?e():G(e)}const A=typeof window!="undefined",Y=()=>{};function ee(...e){if(e.length!==1)return k(...e);const t=e[0];return typeof t=="function"?X(V(()=>({get:t,set:Y}))):_(t)}var te=Object.defineProperty,ne=Object.defineProperties,re=Object.getOwnPropertyDescriptors,j=Object.getOwnPropertySymbols,oe=Object.prototype.hasOwnProperty,ae=Object.prototype.propertyIsEnumerable,I=(e,t,n)=>t in e?te(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ie=(e,t)=>{for(var n in t||(t={}))oe.call(t,n)&&I(e,n,t[n]);if(j)for(var n of j(t))ae.call(t,n)&&I(e,n,t[n]);return e},ue=(e,t)=>ne(e,re(t));function le(e){if(!J(e))return K(e);const t=Array.isArray(e.value)?new Array(e.value.length):{};for(const n in e.value)t[n]=V(()=>({get(){return e.value[n]},set(r){if(Array.isArray(e.value)){const o=[...e.value];o[n]=r,e.value=o}else{const o=ue(ie({},e.value),{[n]:r});Object.setPrototypeOf(o,Object.getPrototypeOf(e.value)),e.value=o}}}));return t}function se(e,t=!0){W()?N(e):t?e():Z(e)}function ce(e,t,n={}){const{immediate:r=!0}=n,o=_(!1);let c=null;function l(){c&&(clearTimeout(c),c=null)}function s(){o.value=!1,l()}function a(...u){l(),o.value=!0,c=setTimeout(()=>{o.value=!1,c=null,e(...u)},O(t))}return r&&(o.value=!0,A&&a()),D(s),{isPending:X(o),start:a,stop:s}}function P(e){var t;const n=O(e);return(t=n==null?void 0:n.$el)!=null?t:n}const C=A?window:void 0,pe=A?window.document:void 0,fe=A?window.navigator:void 0;function h(...e){let t,n,r,o;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,o]=e,t=C):[t,n,r,o]=e,!t)return Y;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const c=[],l=()=>{c.forEach(f=>f()),c.length=0},s=(f,d,v,y)=>(f.addEventListener(d,v,y),()=>f.removeEventListener(d,v,y)),a=E(()=>[P(t),O(o)],([f,d])=>{l(),f&&c.push(...n.flatMap(v=>r.map(y=>s(f,v,y,d))))},{immediate:!0,flush:"post"}),u=()=>{a(),l()};return D(u),u}function ve(){const e=_(!1);return W()&&N(()=>{e.value=!0}),e}function M(e){const t=ve();return S(()=>(t.value,!!e()))}function Me(e={}){const{navigator:t=fe,read:n=!1,source:r,copiedDuring:o=1500,legacy:c=!1}=e,l=["copy","cut"],s=M(()=>t&&"clipboard"in t),a=S(()=>s.value||c),u=_(""),f=_(!1),d=ce(()=>f.value=!1,o);function v(){s.value?t.clipboard.readText().then(i=>{u.value=i}):u.value=m()}if(a.value&&n)for(const i of l)h(i,v);function y(){return T(this,arguments,function*(i=O(r)){a.value&&i!=null&&(s.value?yield t.clipboard.writeText(i):w(i),u.value=i,f.value=!0,d.start())})}function w(i){const g=document.createElement("textarea");g.value=i!=null?i:"",g.style.position="absolute",g.style.opacity="0",document.body.appendChild(g),g.select(),document.execCommand("copy"),g.remove()}function m(){var i,g,b;return(b=(g=(i=document==null?void 0:document.getSelection)==null?void 0:i.call(document))==null?void 0:g.toString())!=null?b:""}return{isSupported:a,text:u,copied:f,copy:y}}var z=Object.getOwnPropertySymbols,de=Object.prototype.hasOwnProperty,ye=Object.prototype.propertyIsEnumerable,me=(e,t)=>{var n={};for(var r in e)de.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&z)for(var r of z(e))t.indexOf(r)<0&&ye.call(e,r)&&(n[r]=e[r]);return n};function _e(e,t,n={}){const r=n,{window:o=C}=r,c=me(r,["window"]);let l;const s=M(()=>o&&"MutationObserver"in o),a=()=>{l&&(l.disconnect(),l=void 0)},u=E(()=>P(e),d=>{a(),s.value&&o&&d&&(l=new MutationObserver(t),l.observe(d,c))},{immediate:!0}),f=()=>{a(),u()};return D(f),{isSupported:s,stop:f}}var ge=Object.defineProperty,Oe=Object.defineProperties,we=Object.getOwnPropertyDescriptors,R=Object.getOwnPropertySymbols,be=Object.prototype.hasOwnProperty,he=Object.prototype.propertyIsEnumerable,B=(e,t,n)=>t in e?ge(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Pe=(e,t)=>{for(var n in t||(t={}))be.call(t,n)&&B(e,n,t[n]);if(R)for(var n of R(t))he.call(t,n)&&B(e,n,t[n]);return e},$e=(e,t)=>Oe(e,we(t));function Te(e,t={}){var n,r;const{pointerTypes:o,preventDefault:c,stopPropagation:l,exact:s,onMove:a,onEnd:u,onStart:f,initialValue:d,axis:v="both",draggingElement:y=C,handle:w=e}=t,m=_((n=O(d))!=null?n:{x:0,y:0}),i=_(),g=p=>o?o.includes(p.pointerType):!0,b=p=>{O(c)&&p.preventDefault(),O(l)&&p.stopPropagation()},q=p=>{if(!g(p)||O(s)&&p.target!==O(e))return;const $=O(e).getBoundingClientRect(),x={x:p.clientX-$.left,y:p.clientY-$.top};(f==null?void 0:f(x,p))!==!1&&(i.value=x,b(p))},F=p=>{if(!g(p)||!i.value)return;let{x:$,y:x}=m.value;(v==="x"||v==="both")&&($=p.clientX-i.value.x),(v==="y"||v==="both")&&(x=p.clientY-i.value.y),m.value={x:$,y:x},a==null||a(m.value,p),b(p)},H=p=>{g(p)&&i.value&&(i.value=void 0,u==null||u(m.value,p),b(p))};if(A){const p={capture:(r=t.capture)!=null?r:!0};h(w,"pointerdown",q,p),h(y,"pointermove",F,p),h(y,"pointerup",H,p)}return $e(Pe({},le(m)),{position:m,isDragging:S(()=>!!i.value),style:S(()=>`left:${m.value.x}px;top:${m.value.y}px;`)})}var L=Object.getOwnPropertySymbols,xe=Object.prototype.hasOwnProperty,Se=Object.prototype.propertyIsEnumerable,Ee=(e,t)=>{var n={};for(var r in e)xe.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&L)for(var r of L(e))t.indexOf(r)<0&&Se.call(e,r)&&(n[r]=e[r]);return n};function Ae(e,t,n={}){const r=n,{window:o=C}=r,c=Ee(r,["window"]);let l;const s=M(()=>o&&"ResizeObserver"in o),a=()=>{l&&(l.disconnect(),l=void 0)},u=S(()=>Array.isArray(e)?e.map(v=>P(v)):[P(e)]),f=E(u,v=>{if(a(),s.value&&o){l=new ResizeObserver(t);for(const y of v)y&&l.observe(y,c)}},{immediate:!0,flush:"post",deep:!0}),d=()=>{a(),f()};return D(d),{isSupported:s,stop:d}}function je(e,t={}){const{reset:n=!0,windowResize:r=!0,windowScroll:o=!0,immediate:c=!0}=t,l=_(0),s=_(0),a=_(0),u=_(0),f=_(0),d=_(0),v=_(0),y=_(0);function w(){const m=P(e);if(!m){n&&(l.value=0,s.value=0,a.value=0,u.value=0,f.value=0,d.value=0,v.value=0,y.value=0);return}const i=m.getBoundingClientRect();l.value=i.height,s.value=i.bottom,a.value=i.left,u.value=i.right,f.value=i.top,d.value=i.width,v.value=i.x,y.value=i.y}return Ae(e,w),E(()=>P(e),m=>!m&&w()),o&&h("scroll",w,{capture:!0,passive:!0}),r&&h("resize",w,{passive:!0}),se(()=>{c&&w()}),{height:l,bottom:s,left:a,right:u,top:f,width:d,x:v,y,update:w}}function Ie(e=null,t={}){var n,r;const{document:o=pe}=t,c=ee((n=e!=null?e:o==null?void 0:o.title)!=null?n:null),l=e&&typeof e=="function";function s(a){if(!("titleTemplate"in t))return a;const u=t.titleTemplate||"%s";return typeof u=="function"?u(a):O(u).replace(/%s/g,a)}return E(c,(a,u)=>{a!==u&&o&&(o.title=s(typeof a=="string"?a:""))},{immediate:!0}),t.observe&&!t.titleTemplate&&o&&!l&&_e((r=o.head)==null?void 0:r.querySelector("title"),()=>{o&&o.title!==c.value&&(c.value=s(o.title))},{childList:!0}),c}export{h as a,Ie as b,Te as c,Ae as d,Me as e,je as u}; diff --git a/packages/ide/example/assets/Editor-c713e86f-83fa9a14.js b/packages/ide/example/assets/Editor-c713e86f-83fa9a14.js new file mode 100644 index 000000000..22ca97399 --- /dev/null +++ b/packages/ide/example/assets/Editor-c713e86f-83fa9a14.js @@ -0,0 +1 @@ +import{W as C,a as M,b as z,c as R,d as Y,e as J}from"./monaco-editor-dada22c1.js";import{I as Q,k as X,h as F,n as x,Z as rr,w as er,o as tr,c as nr,R as or,a0 as ir}from"./@vue-062efada.js";function K(a,c){var u=Object.keys(a);if(Object.getOwnPropertySymbols){var f=Object.getOwnPropertySymbols(a);c&&(f=f.filter(function(w){return Object.getOwnPropertyDescriptor(a,w).enumerable})),u.push.apply(u,f)}return u}function ar(a){for(var c=1;c=0;--i){var o=this.tryEntries[i],p=o.completion;if(o.tryLoc==="root")return n("end");if(o.tryLoc<=this.prev){var y=u.call(o,"catchLoc"),g=u.call(o,"finallyLoc");if(y&&g){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&u.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===r)return this.complete(n.completion,n.afterLoc),A(n),h}},catch:function(r){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===r){var i=n.completion;if(i.type==="throw"){var o=i.arg;A(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(r,e,n){return this.delegate={iterator:I(r),resultName:e,nextLoc:n},this.method==="next"&&(this.arg=void 0),h}},a}function U(a,c,u,f,w,d,O){try{var s=a[d](O),v=s.value}catch(P){u(P);return}s.done?c(v):Promise.resolve(v).then(f,w)}function Z(a){return function(){var c=this,u=arguments;return new Promise(function(f,w){var d=a.apply(c,u);function O(v){U(d,f,w,O,s,"next",v)}function s(v){U(d,f,w,O,s,"throw",v)}O(void 0)})}}var pr=Q({__name:"Editor",props:{lang:{default:"typescript"},modelValue:{default:""},options:{default:function(){return{}}},height:{default:"300px"},readonly:{type:Boolean,default:!1},dark:{type:Boolean,default:!1},border:{type:Boolean},minimap:{type:Boolean,default:!1}},emits:["change","blur"],setup:function(c,u){var f=u.expose,w=u.emit,d=c;self.MonacoEnvironment={createTrustedTypesPolicy:void 0,getWorker:function(b,l){return l==="json"&&C?new C:["css","scss","less"].includes(l)&&M?new M:["html","handlebars","razor","vue"].includes(l)&&z?new z:["typescript","javascript"].includes(l)&&R?new R:Y?new Y:Promise.resolve({})}};var O=X(),s=null,v=function(){var h=Z(G().mark(function b(){var l;return G().wrap(function(m){for(;;)switch(m.prev=m.next){case 0:if(m.t0=s,!m.t0){m.next=5;break}return m.next=4,(l=s.getAction("editor.action.formatDocument"))===null||l===void 0?void 0:l.run();case 4:s.setValue(s.getValue());case 5:case"end":return m.stop()}},b)}));return function(){return h.apply(this,arguments)}}(),P=function(){var h=Z(G().mark(function b(){var l;return G().wrap(function(m){for(;;)switch(m.prev=m.next){case 0:return m.next=2,v();case 2:w("blur",(l=s)===null||l===void 0?void 0:l.getValue());case 3:case"end":return m.stop()}},b)}));return function(){return h.apply(this,arguments)}}(),S=function(){s=J.create(O.value,ar({value:d.modelValue,language:d.lang,readOnly:d.readonly,theme:d.dark?"vs-dark":"vs",automaticLayout:!0,minimap:{enabled:d.minimap}},d.options)),s.onDidChangeModelContent(function(b){var l;w("change",(l=s)===null||l===void 0?void 0:l.getValue(),b)}),s.onDidBlurEditorText(P)};return F(function(){x(S)}),rr(function(){s&&s.dispose()}),er(function(){return d.modelValue},function(h){s&&s.setValue(h)}),f({getEditor:function(){return s}}),function(h,b){return tr(),nr("div",{class:or(["vtj-code-editor",{"is-border":d.border}]),ref_key:"container",ref:O,style:ir({height:d.height})},null,6)}}});export{pr as default}; diff --git a/packages/ide/example/assets/async-validator-e3c32ad3.js b/packages/ide/example/assets/async-validator-e3c32ad3.js new file mode 100644 index 000000000..ce3a4ccbe --- /dev/null +++ b/packages/ide/example/assets/async-validator-e3c32ad3.js @@ -0,0 +1,12 @@ +function R(){return R=Object.assign?Object.assign.bind():function(i){for(var e=1;e1?e-1:0),n=1;n=s)return o;switch(o){case"%s":return String(r[t++]);case"%d":return Number(r[t++]);case"%j":try{return JSON.stringify(r[t++])}catch(p){return"[Circular]"}break;default:return o}});return a}return i}function ae(i){return i==="string"||i==="url"||i==="hex"||i==="email"||i==="date"||i==="pattern"}function v(i,e){return!!(i==null||e==="array"&&Array.isArray(i)&&!i.length||ae(e)&&typeof i=="string"&&!i)}function se(i,e,r){var n=[],t=0,s=i.length;function a(o){n.push.apply(n,o||[]),t++,t===s&&r(n)}i.forEach(function(o){e(o,a)})}function $(i,e,r){var n=0,t=i.length;function s(a){if(a&&a.length){r(a);return}var o=n;n=n+1,o()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},N={integer:function(e){return N.number(e)&&parseInt(e,10)===e},float:function(e){return N.number(e)&&!N.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(r){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!N.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&e.length<=320&&!!e.match(Z.email)},url:function(e){return typeof e=="string"&&e.length<=2048&&!!e.match(me())},hex:function(e){return typeof e=="string"&&!!e.match(Z.hex)}},ue=function(e,r,n,t,s){if(e.required&&r===void 0){z(e,r,n,t,s);return}var a=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;a.indexOf(o)>-1?N[o](r)||t.push(E(s.messages.types[o],e.fullField,e.type)):o&&typeof r!==e.type&&t.push(E(s.messages.types[o],e.fullField,e.type))},ge=function(e,r,n,t,s){var a=typeof e.len=="number",o=typeof e.min=="number",p=typeof e.max=="number",y=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,_=r,h=null,O=typeof r=="number",C=typeof r=="string",S=Array.isArray(r);if(O?h="number":C?h="string":S&&(h="array"),!h)return!1;S&&(_=r.length),C&&(_=r.replace(y,"_").length),a?_!==e.len&&t.push(E(s.messages[h].len,e.fullField,e.len)):o&&!p&&_e.max?t.push(E(s.messages[h].max,e.fullField,e.max)):o&&p&&(_e.max)&&t.push(E(s.messages[h].range,e.fullField,e.min,e.max))},x="enum",le=function(e,r,n,t,s){e[x]=Array.isArray(e[x])?e[x]:[],e[x].indexOf(r)===-1&&t.push(E(s.messages[x],e.fullField,e[x].join(", ")))},_e=function(e,r,n,t,s){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(r)||t.push(E(s.messages.pattern.mismatch,e.fullField,r,e.pattern));else if(typeof e.pattern=="string"){var a=new RegExp(e.pattern);a.test(r)||t.push(E(s.messages.pattern.mismatch,e.fullField,r,e.pattern))}}},c={required:z,whitespace:ce,type:ue,range:ge,enum:le,pattern:_e},ve=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r,"string")&&!e.required)return n();c.required(e,r,t,a,s,"string"),v(r,"string")||(c.type(e,r,t,a,s),c.range(e,r,t,a,s),c.pattern(e,r,t,a,s),e.whitespace===!0&&c.whitespace(e,r,t,a,s))}n(a)},ye=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&c.type(e,r,t,a,s)}n(a)},he=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(r===""&&(r=void 0),v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&(c.type(e,r,t,a,s),c.range(e,r,t,a,s))}n(a)},Oe=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&c.type(e,r,t,a,s)}n(a)},Pe=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),v(r)||c.type(e,r,t,a,s)}n(a)},Ee=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&(c.type(e,r,t,a,s),c.range(e,r,t,a,s))}n(a)},Se=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&(c.type(e,r,t,a,s),c.range(e,r,t,a,s))}n(a)},Ce=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(r==null&&!e.required)return n();c.required(e,r,t,a,s,"array"),r!=null&&(c.type(e,r,t,a,s),c.range(e,r,t,a,s))}n(a)},we=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&c.type(e,r,t,a,s)}n(a)},Ae="enum",De=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s),r!==void 0&&c[Ae](e,r,t,a,s)}n(a)},be=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r,"string")&&!e.required)return n();c.required(e,r,t,a,s),v(r,"string")||c.pattern(e,r,t,a,s)}n(a)},Fe=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r,"date")&&!e.required)return n();if(c.required(e,r,t,a,s),!v(r,"date")){var p;r instanceof Date?p=r:p=new Date(r),c.type(e,p,t,a,s),p&&c.range(e,p.getTime(),t,a,s)}}n(a)},Re=function(e,r,n,t,s){var a=[],o=Array.isArray(r)?"array":typeof r;c.required(e,r,t,a,s,o),n(a)},L=function(e,r,n,t,s){var a=e.type,o=[],p=e.required||!e.required&&t.hasOwnProperty(e.field);if(p){if(v(r,a)&&!e.required)return n();c.required(e,r,t,o,s,a),v(r,a)||c.type(e,r,t,o,s)}n(o)},xe=function(e,r,n,t,s){var a=[],o=e.required||!e.required&&t.hasOwnProperty(e.field);if(o){if(v(r)&&!e.required)return n();c.required(e,r,t,a,s)}n(a)},q={string:ve,method:ye,number:he,boolean:Oe,regexp:Pe,integer:Ee,float:Se,array:Ce,object:we,enum:De,pattern:be,date:Fe,url:L,hex:L,email:L,required:Re,any:xe};function H(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var G=H(),W=function(){function i(r){this.rules=null,this._messages=G,this.define(r)}var e=i.prototype;return e.define=function(n){var t=this;if(!n)throw new Error("Cannot configure a schema with no rules");if(typeof n!="object"||Array.isArray(n))throw new Error("Rules must be an object");this.rules={},Object.keys(n).forEach(function(s){var a=n[s];t.rules[s]=Array.isArray(a)?a:[a]})},e.messages=function(n){return n&&(this._messages=X(H(),n)),this._messages},e.validate=function(n,t,s){var a=this;t===void 0&&(t={}),s===void 0&&(s=function(){});var o=n,p=t,y=s;if(typeof p=="function"&&(y=p,p={}),!this.rules||Object.keys(this.rules).length===0)return y&&y(null,o),Promise.resolve(o);function _(d){var l=[],f={};function A(m){if(Array.isArray(m)){var g;l=(g=l).concat.apply(g,m)}else l.push(m)}for(var u=0;u!%}K-Q}GBIp@EhW5yX{CcB%3*zz;ZzhGV0JIV(c;|(0$cFy@DWA$@3 zuEzI!@qO17*YBRY>BAF4jA;)tmiqpleYah`^L<}MEd#~Dk<&O6~d_K;7 z9+=#V1JWhZU*PjGpm*=}H{SZQ=&LW`elIen9NBln6}w;ez{)Q&)_o&mq3zf2zI9Ie z6aGg0p2GQE`*&Y|)q8&NhnpA=AHlI-&fW0(8^5{fz4tP%KFpYZ0YlySAkM`5tFONL z3LmB;OaJ)Cf+INkjlX+h^JURh|H4dh#qH%!-%V#yiECfx!yN5m8k6WK{^;Hx<2Nxs z_(n$!{A29Z;Ct{pzAtCfOj^Hj^EPJh+kNAHmSOUe-xru8}}Dia-2uMavb4I zX&;sO0KcDw@$C!jJ9uB#F7IbHJDZ_u;Si4gn!l}AZ@7|uvAOHTSkSsGKLh{CjUc|Q^&xmbLZ6Wr=I_R#&?J;l7S?_ zNV-E#%HIv-I17CnM@hyHqJ%WYaXIu+e0T5<=QrQlytn!F<~Lh;^W+4zSm;8`(|lW_Am^mEFb;vNy2X*&XaI_C|J?y@kD%y@TD$-pTG` z?_&3}2iUvWgKVC?kG-FLfPIjCi2Wveh&{|cf^!~Wzr{YvKF&VDewTfQ{XTn~{ULi2 zy58rZw|s?tm3@tUoqdCSlYNW*2{ghN*x$2%WItj})?zQRpR#{u$JxKIU$B2;|IS`w zFSA#;#6w)+DmS>vV?4o=+~+Bt;aQ&Jd0yZ}-pk9p!mGTG_w!}YmWH6WE$5?roKNr? zpX7Dk;8T2>ui>ZhwR|04&(GqU_zd67&*5A7`FtC{fM3XW@JsnlKFcrTm-8$5mHcYH zmtV)P=Qr?M`EC3jeuy9DZ{ly}Z{=^}Z|Cpe_wxJsyZL+ggZzE`{rm&`L;N@R!~7%s z5&m2Jqx=Xz%6`E9f&CNvA-kAe!mecvb{(7LbL<*+J=?=BU=>zn|H|IP-p>AjKY;P; zv&-1uahW4~l?W{AAM z%iqP{$?s#2@)dj)m)X_)xB2hzNBJB0?fedYC%=o|%@48|+rn-3UjAW>?Ju#X*`Knf zph0eCGc3-&%zm5w4m+P+&R4VF!01n~-(#QU4lA-Q_P?0N=Q(HJXV0*2v%g?}j+yb7 z>^b(=?0f8Qp_Bd@zlHq~?`HQvXH}uQ>g;dWciCUDEc+b$Ir|x#VriCQXR#yfC_kN@ z$v5)z*dK$dkcRtz`(K0z5GM-&f3Qrzn*;*RwHu!Swt(_-0X~NE3IT8=*1S@H(Y03z z@Gg{B3-Fs!?h)WolzRoh!&vhg0ro4D*9w5IvF3FGY!k|T0{kJA*9-6sDEABSEhujg z04HS4IRWrQ);u7PD!_>zZx`SfqkM+|r#`t? zfK$J{OMqX3@_qqMef59X5 z7a-}{{D1&S-R1`cNV+yZBmf!3n!h0cX~mjEcK~vWHHj_&Bp7SbxB(!`So2{4NHx~{ zhydgpYd#_XNynPMB>vgXGHAVXR669SN?toca+$W_*)z62m)S@U-VAZuBZ=m{&&EFS*oMz3(1t76m^A7|dyIJ#d0+8aY`G*3K=d4L%4uE85%_jvQ z<5}~V0Hi%@eqI1_pEbWA01bdO|40D30Be3x09pZS{;>e`1J?YK06Pukmj$3Ru;y0; zpgpkWR|TL)u;$kUpi!{q*9D+ku;w=fpk=V;Qv%R8So2Q>pn0(7(*n>zSo0YHXd|ro zZ2{;dtodgG&`?39M`F#t6M(kFn$HVBZ(_{_ z0ccRH`GNp+Dc1aZ0ccgM`2zvySFHID0?@Qr^B)DEbFt<>2|)W|%^wOt4`aC^%NBs<%UV$Z z=)kPy2tXTVt(XAxV%Bm6pdquCC%`biT5$nr&8(FWfd0%{NdaimtmO+pr)I5`0JLk? zN(&I7S{VUo+^m%qfbPv&IRR+ltd$plKF(SN0chr|RTO}Z&RSgp(AHV2TL5}HYxM{~ zgJ-Rh0CaiQ>J?zn#qtrp zaH{)y0Zw(_Ai$~a8wEJk{R{!}_P5Ry;8gds1US`YlK`i>%m{F*%Vq&ibvavrQ(d+Q zaC-h$0Z#WjSAf&~&J*Btzw-q+-EW%!KL_On0-Wx#U4YZM7YcAXcZUF{b1xF$^!vpE zoPNJVfM1HT4Zahf+u*bK+y=i4pWEP<7eg(?i0{lvp^c%phMoGT`d@oA+4dB0SUojB=jz~6>)PJq81XN@@eZKY;R}0RIrmHwf_GKzX|We;DN*0{kN=?-byVpu9_f{}#%-1^7o%zEOZ5 zK}j?MV0W_?(FlMA&RRqx0Jb=55sd&?<*Y?C0$`uB)>{N%sk0W*3xLheT0}1Z);ntv zy#UzptVQ$!V9~P{(FAj`U3C^ zuolr5fQNv!h`s=P1+4X60eB5qYhD2U1J)wC1MCk_65Rp#6j+Ps4v;a^`k(;Cu3FRw z06Y$?MSTFUzeD+(0$fM=VFA7pK+|@KLZ9^%KB8iIVyW;Af(wegY72VlCVU(X1fDeVWJ|n>TQPMR4cTxVH06Z+L^;rSkjIt;Yq} zMwCQ%0Fgn~`kVl#zWPG}PW}Ic0DmXSCk5cKVXb2VjOg)s0los|7X#qdh-D0i37J#3Nwf;r` z9xvAVo&bDbto647>~fUf7l1#EwP+b~^jh!C| zz?a5a{~!Rb8f*Qd0P8~ePXh3?vDOa-n1}L50-WZ0QviNA)@ljBBga}V3cxqVT68@C zFCAq#Nto82#@EEezO9B+{ZoMo3FCuHbB0$mc z)~f>WERxC^06s?cB4|N?w~@Ul3Bd2jUJMDq1Ib>*oFTv$$zBW#z$?jK#PbO7PqG*B zJOVtG>_t3}0G}m$k)8*@d&yoj1mMSHFPZ}IXtEb00_-SCO8{O@_9Es0ft`smD!@0Q z#5f?p2g+W={2`DxH28ZEz4AkNe8&(Ic$7acWu#$gowQxLR=QJqxAds=4e9&ROQ9{H zBcW&IW%B*<^WkCqyEOc%@VAs})q*;!{!ml2{o3>T`;E=UyNxG|r_8unF&pM4^HTF> z^R4EC=40mfBaz5ldh#ya|L_E=x*qHcA;`@nTCO0M@Pri^m z?hpI7`bYdP`OTD)%B8lX=28!)zL9!9y(@ix`tgjM>B*d#*_*jHb0qVv%uCt6?56DN zvLDWVE&EDtd+xcsk?+l4ntvkyQel7LTSck3t$3_U?%LG#_O73HyWOXCpVz&=`)55) z&tT7)J@Y-!mbB7j=}2!^@4nvoaT2R=J+d@wV3>)??gV`$^hjYCfiXNETo?;U=8xH)2v+&=Q1<@WOF<@b)RAH8|> zdt>Xz-aq!&C~_?_dAjDKbPg$XuMn3$Z{HnDHw?GukoJTY;+w!C&v?Mt

Qk$}yZX}A^V81s#cQV5+`Q((p3u{-by?gDm z>o%`@c-_xV*G_Moe&^|rpZ@gezgVAKfAji}ZJ5~b?hVH`RyN+e@sTsMGa6^ip7Hn@ z-#O#?Ge3A1JFEAs51;jqo3?K{Hlxk#nz?W03!77$Z`}O!=3kthIeYr-*|YCC`}=oCnYO+BrYi+O_o)=O)j+|J>)!+j8EU&->!}ne%s@|J1g3Z~OGN zr!P2m!H>7g+m~&>ar=YYzjmQ<;Ri1~cHu8}OzyaN$D4N?+4230ZoKHoMbBQGx%fL5 zzjVp%mwfKho=Z1fdic^`?VQ|saObg|znq<(ef#VSmnoNRz3hj(PP_cHD}Hfh&y^dm zeC*2aUL{?XxoY24U%2|xtLLwN^y3t*=x66 zd-t{9xlX?BwCm=tdv0IvzV-V)yzdM9Ub?>T`g^W_c>k6ApS|Jc8-6@DHn$(M3Ui+# zobdU^;M z)d(q7E7i$5{#7T3r5;;K#Kp-fPD%{(+Qc-+<%zh$2m3ahx1leWwknra>{M>PzlVnm z+esMFd_oCHJv(I0a+5Jz(`?;~YxY~@SVT9&vKlrxH{+Rn#xoU7lf#A{iG|&GY1Nsl zO5S|`hQ7WH{oSh)MkZqnGZl`oL9FkSd ziQAdDVZ<}G;n|uj%c`D=a(8*AcU7shsyDNom=E|TxKakTaE5%EjQ}_U4 zLEhj7D*O~WYE+`@@qAogs@BC=6Ev%0MD+}FF;uSV^D1`3YJ9plK0RJ2;H~JT2ge4} z!P|p<`>w56^?I~8UTmLGOt*ha58`o4pXrl#x?UZxmFiWHqK<(Ww;?;Gxu00tVXwI< z$K6ld_2e4iH<cC+c+4Gu!P1ja9#1tEvh;E_g7nis2!i{QeUSL9mu?dD1h#-loFu zc76jbmOk>e&s@V3<2AotEvbIHk$9@Ql+3@b9ZN|2|5BsHu^*xz zYi;qi9NM|l-tv{NZ0U?y=o8Qq>O}dV4?4g94CmWtdneBOXF6{U2eo{n+tJxsd&`%< zyrplaz0=y_w$Fn%a6#M;qbC?g-yE?H^Ma9#$x(eo+^6s~&a(?%=YH+yuHoYt{g{60Z2P&7weP#gBeHldCQW_u z$tT)$&Z5lf+wjoE6bRQ ziK<`otBEL2_%)thd-aMVe0F=L{KJQ9OC{blBN^%r#gH~jQdkey!-f=T zgq0n#9+s|?ql17N|r#2NX%doZ ztX@?T@wz`*o2Zm}8ndQ0lg~eAhK%y*;b7^y90 zcgpoNV@lW0+;UDxmiUb4&fFK)b@^>pB$18!m6+Z&xa=Z_n_Fx*weg&&>vvP12)<*0 zu2I2#%O`3`G6@dZk*ir96*Exj!CHj!lByS1UCY&n(50 z^|8r`N{vR)Za)g)7^ZoAb;qLDDOL8V1 zPo&fRP9b4Px+-zW%J#RWP7QJs7xet~XC zih9tEh>9!cDN(b`Z&Fm#y5~Xbz3RAV0#9j1D4Zxb{jpfyOD6l{y;)0oAjCa4?ujPE zHY;et->Rx%?Rl^DUWK1%ix`6^+A@ZAbm**hXrCleSXs^M)FWysjwV!5Z6dphe4J+z z*?`7rPBf1@tM{pzr$+;8Bz^~%5Uup_t0n@H=rpm`|riFi7b^x7m(L|r1c z9$e5F7YfEj265U6j0@CbVpw|ZP-qjjdZN+=WC)?c|E@yWa8DWqR|KToF9u1$qY-m; z!mqg9*_b3M=qK9!pCQs^6RC`-t(-Kob_HXmGiJf9k0a8Zq{uXe{#X(^pc-g`rD|dv zgLI-)MKMts;InIrU5@3rJ%we<+<1AQ>cm~I(m0k$S&6Wmily^A*1Jwm+{xR-*)hg4 zkUhc=*st=GnzM~v9nXUDwt_WF4!UB{K}+m+*gGc)s@ zHV>h;oq^cw9iZE22`V)@%a+ta2qkgoL4M1A}&kSzqmy)Ev7NDqrVIGhaLzN|{-Ql1x6iLz@3p|>* zxEu9hJeT|cfLnVFfN zF&g^Jp~}t~*dH?sIm5{5^M)~>^E`W*ZW#K2)$qKTT?2})E6XmUM~i+Yo2UnQP?wPH z>X8b-eVAl5ngG*M1!|2gCH+L)PmoqXQd1e=%S)rfd^PVOW;qG5oWu-J>v0w3iEC;T z^~$sa?K$A+6O&`f9l4$&v>)Ezt;c*F7UtwspPotUg+49&I!O-8aSr=2Y-+A%hSIvC zo7~i`-cm+4Ek(z?EqJ_OIwoFR@d^`#-W3t9n<2fcQgzaa$iRx49g1k&96fEt?}SF= zFm5*zmMfZRY86?!Bx*tC>FHcrw+$oHTe2kFzKFZ09h`#uF7l2Hyo4rch2A*mUn1I% zqc>`$94x-$y0?HoaGeERUsyLk?^TGNLU%#-C^U>I^5lW9KxN4D5{+Xj6Dv8yH4SMP zxuhXN{{n}>ZEMgAVF#3IM5a6pE1CpS&#(j{)}HDb>T-%^f$Nn%E?ZD9N>ZfQQ;hIl zvuua^t4Lohn8oY;EZg;O+C#oWVY5e}kNd$0EkPq0KsM2MkO8~~xjSdTFMbZm4Cs*o z$XXV5GMW_#3lb1ylGNKJeJ8;It2#J->USFT+{tu3fm-VfsweG}y@j119dlXBh81Dk+r_jK zsBEd4U9gK8E9vN5R>CGkhpZYZyg(-Ak{sTkN5WxUQ6N@eB!qEK*$5jW7f#Q57v2Ho zJuE9SWJ1-9gtc%etb|luiRfVn7R^?ym=W#i?#iWOhOC8cEfPj4%eK5t;=1Z)tX!cG zRc#%ILyD%WayVp$RKqmzSX2Yg!eKeAg&^!qS^fJ9z1istm(W{7uGigUuM!Qw*Zi?! zi1ZpF8bq@~E-#Ro#H$}j1awL~>4Sa+PQ9XvZm447R7NDsGjZVvd}+|SsDey-wT)orXF&fdMni>j$uy)LFsEw(Z5z;`|h-zB~stiiVk|LXCzoZdeG_axw zNGC&7E1@to7DPpB!x4Q0QCba!B|!zzT1a`_Nm`krUHIJ{?#|U0mNYozKz-^?lrFln zyBo8Px>GYP89fDi4r2g45izUi74%Iwd@&ADw_-5JT0l~CtiC}uBRVLIv&s0QZk0_- zwTp$Em5FJj+X>z-L3Lmyk7=J#-Y6;ZxOSMs@1Z!bp4WB6Ws5Q_UmT%y> zB*pSkFS<~)p`~60CS{oy!>u^g+1|(`_Hqsx<}A4bif5gj!{Q?Y~U+FStUOVxlX8JFi3)L8!gYWGIn-;@o$sWV`nU@ zOZ+e*zC9PWtgIad530BoZ*RAivFy!s%(|F9g9bsJ;mP@9sxufrwRryA$PRNy1g^$s1H^A35HqfZ|>GJn{`$D_Dqn=UUP zFAY(%`WPm%pNx}ZTJA#dPtRr)6WbJJ#DBEd+;B1^gU*raGVS zEiI#*R6o4_$C8PA!?L77*qV0KFu|V_$(XE*u?bH30(esbt;84$0uaK( zjEeMNh>azy^YKzVUh1Q_4f(!2UZXSZ?>IOUrz80;v64*aO)5MJtC7PI=tn2?q5=;r z_8tWsh@@Y@a=~!}FAn+I6t#r-2b3pzZr~0P#ROSLqCP?B0lLxA0ogU+hAAc+<+5g? ztN=-93gPA9m~r%g5i`x0(SUv%GmP6{37{Z*8Jbm7T#$@576xS(0xRhN#U#QRM&)Sx z3Oc{@T5KEUF=@vhV%Is)3k(yyC}5w}?pk*O@SzTlC-8R6f}YUT6)hC3!q>U-%C88- zPEW%Ro!<_5Gu}GgodT!m$crR&vLq~%LGnn{iA+$yp`r2*2ugFj72|ip{vk5 ztKfElf4O?7G4B~U7vm?MHH@_|6buBxOfCH8xEHs}R`2ar*~Uk!a-=+>2fi#%Kc@df z82XE07-5*_pNL<1W!&oRy`}DHWm0n$j}2% zn)Ih}L=6H1B&43_@B;eL1Z1xy`NgcFIN@;IG88jq>$;uMBdVE=*|uI8C|;KGQdS@0 zSiEbb+e;Rb+=(W`j%`C5vW;BE@l4Yy_4uKX98W66n^RX`-QP;o^ zb8>BoGcKuZ9bQ|iY^S?HdQsbQ`PbKXWCZn%%BJe)g8GJvY4<;@Ft^$@b_QI;NrM_E z&rDx^RSJ>0MgERDCup5Tr_L}0mXfjUm^+2ud6YlKr~UOSu*xftOm58@N@FhaRgp5U#5&#E;cQ1)0UfVKWfrEX8|krnpa-6?H(hvLtE3A;gR8;8K(!KoJX_@ZYD$|$=wUe_;nmW-vj>mYMfq2MPbX6 ziSEuJFjg)fMdQmAUF|b;XEJ=qU4YLUcDA15iVGti_BhlzJx4ZrsIS{tr%vLchMUt- z%+d+erJXUNqDM>UM-T+wS=7!?AZn<9<>MPXF(;g?aK>oH!m!b&no@Yu8PT6!bdqw_ zxLa5D&Kuo*A>Eh+eU2Vn;^RE=ER)7#C&o`LRYkLFBDz1~Ox~rt2hpEzfKB7+Q zM<1eAkiH8a9(HmW!dM&(eCMarsz$_?P;CSe!2PEs8gH;+X@n(7LkY4&5V40-pi&>< zh~bP#MLy||E&4r$B>lLexY^;Hesb-KvYe}Ax^g4AWO?~;uNO+)WA(}5SUf64;)WYG zR88jFqG8=eylBFVxCK|YoKU5a;bE6&st6z^tBs&4o z-5rw6Fjv(9+qB%M?G4BMuv_Sj+Nr65NQWl}aV8J?Tn!^d41)ybY}-)_zC)H6LT`c1 zNw%R6ZA5$<;k9HvSw9}6vcOX!*UqfLQ?xVTIUZiiM6ru=FX}FHqaNp_zP?h^N=70{ zOL|m|`F>1&v=EkU!-CI8whUVieQyk8(!?Y=_F*w&n5ke&zM3FL4G$`T+AI;x4W-58FKTHTskUQrrV#=Hc@Q%*@zVD>6|dDNfAGn)=aIm zY$aUpLjP&o+73zH`ch4hG$2wgmRQ>E%*@Qf2`hWn6-Htpzp)~50keXvA|(2Z*Gah> z_n+84IJkXq#fm~JV3cz&j| zu{3*V-|F`D;&(`r()`T)!W$Q_Tl9&MXAgr=o!Yr`=fuRs{Os(`{)rk`im>6tdAMG! z;-}f;0PYd!gl+l@noNU*f}Ki}fncbOCl-lHq(#=F?~6_ll#V66GFl zxG2UaRPd8h0v6Zg4(T)4s0Ob~)m@*^jW?GNy3P$56Bov;1hInGG7u|ZFbO5*=ncuh z4k=(I*kuK`_>2@q7Sty$kuK$XO60y9HpW*v7DlqmjT0;-ts&_s7|CEcaDFSc9@%C@ zb2;KJf`&W-J`zH11H7po25OKqSA!Be<9XB3=%M5_kcEGt9#eNZ+UEDSuZb?X2839= zW+a!pG?_fyy%X2`m3a&fXmj1+_BF(>bl82+p3&oNz60h8(Q6|o0Aafzi3A}Gd8{B) z#sQsaX)1<;a2-+xI=mu|DAiv0s3I{y8n;bU~ z%!{I94GA_1J<@PiUJZrQW=7THaZ}5mo7ZK{4=G65M-~zCo@8ZrE|M+fA~`d!Yhi^> zbrT6KKdCvbU?triX%yDObK9Vm1W?oAqVp=+q4lBBr z&&aA7)nasuU}y_nB!iZc-b4PU1o#zY#U#jZA;tmQrB)V6wTb$HBbbFdj~sdBSN2s` z+1{oD@TkDggj`?mlj`Zw_1aBWjAHt==l*kxe(mjZ9%nHg7A#VhxOnW@MIbAJjt}!%LQZpl?QBNOC8Ktt{XCJ-j^!vP-cu{j* z)laMCu|dy@`(uWOgzLgb(CsUeLnK_<^BMJ$G1@4GF%+~`LE;p`r#?J6i86d`J`^yj z1?mmao}gOTVA;?DyxkJ_b@Of4ghRW@?e=vyqr|$q^mtiwtYy`tQdm~jql$mPCF50d z55Q_ep!Ha?rx1xm9c`HxGh@921r^KH#G2i6_0Bdp{lRg2E_dS`+-hpqLwMTlhg>)~iJ*vf|G3##!;v+-Ur)5po(A zlegjPjW^=^T5CR0S+BZ3+z1^TG>H!ZoWPcPh7Rw=$ zWFOa&YYEjGVcv0W{@NB(!xGM~YcjU(>VoTD*!7evPaJ}I7&+uyp}QZ)z;@j~caoro8-V`C;Wt~0tc{DPH+)QE5{+Pt9QVR!@Wv4&#mkRzJ6UE4?=F zk1XTSFdrT?OEAlwd`~`h-9?#l=HQ38Zl{s+k&eCtX&{llKDteRpLKr(x8a4N?H1E~ zAkr^IUDuKNaGP|&wYzd0_ld;v$lZ)ZB3>pl#(5@}9_o(8x`)#FHoeF<6c-tWFdQby z%R=rbXaVFFTO2q3Obq_X3q(%Fb^350<&78Y5zj+}DU4)3{b*Mez@hjDYY4jS_hErXL;`jOun5j|Z9M;KG=$QC{*XR~H67@?Q}#p-@ttj*u(jn`cl9^fMf_ zp}uEfo$4%i)U`QTQM7P)E1a-2#6<4vapQ=AmlF#8;e5z(LS9%?knRe zLWiSVMIo6^Vy<@vp_4Bf1u$4k&1dk|OtL z!9ZGz_w>_qUIST@jdlXkbI(-h+md^c--GG_Kk!NSLY{Z2wwS>*U!JQhR;5xtP+6=? z=X&zgw&@Ekky4>)P{)&pHE0 zJe~_Osh)eLGhW*Dhr46(`GSsQ;B}t9P;Si55)pz}*23Y&%nTH=j?W?kxheWWWG;ap zi^tb-C!%I&Qij0*CXc^=#eN}( zNqd3x4{WAD%_8+3A8PCLb<16=r<67fYqxbdY~k*~K?gQCLS0x-rKd}!$mQ1V*x+C{ zqH`9!!AsgtS}aUtuN0O1HBwCt0zdvQvmXi#X3h?O@Wp)A>7MWA=?{j_&J2b=l>L)N z*1&<2?m=@78WPq)2zPR@iivatehmnL!j0 zvjl^L`eK}X_w8;0gTSbr2?o5^@D>gnIB*d2cOjSpFYnoT2w4}#(-gcAbMOW58WXJs zC4_P-I63Jmi;JUFF^tD1KaotvI@HZ|-eVZ;x~ zkxC6`7deKI4hAi48n#k>vWlP^{!#pj(vTo0+LEPO|46dmsT87>;97{R|V7mHDTLBZe?~B z-0S2}S4XD8qSwe04eabHA~|HF{L7$q`svo-=Mf1xI%KUs-5T;5htM~|wxM;T#IriN zmSnvL;*E5!a3GW0-%(pghLuvSbky7F1+Q2B$(wa&J@0An0Q?I02wR=SkyGiQ#$;xSe;cG&n$=a z??`HB+$tw!Rg&d+m+9O61zd=9I$U_;pzfv54LhOXk}ONAoE=CFj(Bi(3w{(sJe>Fu zg0b~ZQbZv1Nk~^fC1;mOKMPMeQMK*ianX{ zFBJOou7^`H-gIgp8`Q2eG_+Wa4zCH;vo6CPcUw^hdLUAK$rBzdHlS2qtZs#32o5mj zBkKo?cdAGPg?@#EQr@G&nM?_dkc=37V0a{$unR>SYFZQvC={4zC>160`R-AtJL7*8X@WO|W2T?O3Ah%wK*kUpDzaf&D!%H- z2Tiyh)(%MEH5!a-B<`tEH5OGOA3ZcW>SQukAU~T2c5&bw#JbZ=UG(BRx4I$=-S9o$Wm6PdXWGe z_cBljJ9?t1H)R{r%ATb)4x+uJ@hd=Xw% z@q!lY!+?O0>L^#0IencMnpPgr^>vLyjm91XcIS1sXeIkB>zru5u+tkU3vHD&39nzB zmY@Q83sa3C;%v+ml6{ft)@Uy44X?!@!wWq~btIbDm@{eU`hDu>WvVy)2+0VCin)e0#-r7r}{&v!6?HA zyi+c@alWQqM>R!Aojw}g9!*<+KwH03(+=$Q)*ib~LyiMhF51xFp(!0T!Zz{)!geDX zokGrMV`e966!_4C^;8CY5IMwWmRKh6T-3=X!3?hl6@fts@k*nvWFrq3jN*a20-I!3 zeG|XMQMO%ukRMc?ty`VZwB0{|v>`Y-y@G$-c#>)wdMdxi2_2aCLe7+PR>oRpEwj@c zi&(li(WWEg$PY;4u?s7^+T$Oy5#ye^3z;GCad!qI^)e1pg=*t86V^7?LFLsSz--7L z()B|It&exdtkLdc!gn4qqEhVE57 z7t;C!Uhg!bArHFltP%^zTzT?lN8L7Jpz}u-XgxsiSEegyMM2Uz_uQy@@HT2jTlWok zU=%&O=nWFKD|}N}T+AERfxxYJbQXH*_Zng3KX^xuEX=sU;!`m;Jjiw{SZxQDn%1(l zX;0G(Oo1j4rW_UHe{%rK;N17QE1gE6P??{CNiq*ZXAtTy92ZmW`wE4HCt;90*${R} zFz&#GKvGbuij~VdXJ)zDbP`v&km{Ctl|)vgnAA!P#?_S)@0JE1*7Hg!I_9 z@8{pq_95E82;oFhW5G=z%+z6IsX&y`x`v=2ccY3g&=eu)c-2=(Lr^KDtWvcR{6&FF zu{;_Mkx~3u!NniPwhg8$+sK^{8D_i~Lw>!i8xEEe7)XG(idkKeW907E%PSqkwJbx9 zxQL2s3iR8E9+zS|%p+Y!rkN2|a-MDG^k@=}R7s~n<&)lV2SS6Z^%5ZX)99_rC%$3Px#)?XDKVrB=1HMUQytef@6Lg^5D#oj%Gm}$< z3T{|)2drE0FDQ7#nwzt3QS1W;Z0u3gzSizsOSVX`w?I&Mbj{7!BPS?6VjVbO-TFhi z{?<0_e~kGYJhLty85n^j_4!RRk#o&+f9veck@L;-Ufs0GJontEH*Yr2JCFDf_9Gc? z`*YfS(N9o7hZxW}{A}dg0ask)L?`rj(Il`U&Ai!BF4!f>H^3rR%|&LkH1O9LidIvR zuH(iwsAk|sNQ=f~oD6u5@7j#11ZAb}O;t###^ca8FdDHa9nSje0HV)?yx)@oX!|+r)EW z;*ePk!2nf-D3YLBz`ch@LP+GE*2naOu`i~~>fTmI-E)EBoS}Q4f1i;<)d`hDjyg3u8-lqmoq)a8Qj_XvMM zXN-`ZLMxJ|5W^(hx-?k>>p=nuba_R^M=Vzfm`Qw5odQ8?rCOy%EUB$;!xqO*2jV-p z61?6jWDL1JUM^sn4%~ejvZ-R06{E#Bus~%l6)4B<@XnnLEYuH4suY#Mfw<&h$!^#P zMYV9S2g4-ns|77;Vr3Q<)k@)b9RAM`cv%R$<&Yoq;dzhFr}c-pk``Ct4{Lj{Knu&e z!bVt!3m86t5G#*$=6fs4>biA6JMtqH&4S_HTRt2L& z;aVRcFFdqn6_#ie844o(=p89?jHgOo&W?voKdS4l7D_lyq^2P-i?!xfNd1OwL_)fj z$;A~jqUkZSL>av{T?9%-R4m+zMMA362vURX6wi5kLvds;hcraVVwupMNbEyl$&SPF zvK;3PAtTalM@$8$z~J2*af0itR5tz?hY+%rP$cFU?e;@@XnY8LyasuK7oz>()HI}# zlrsjK8-`&pxGB%sPXzhSph<0#a&`m_;L*l13uIoQ%~klbC;=WSWRP=(gaPH>s4`et zURV~AWy_IO7s(;M8IIdv>L_yADA!#RGBPgbds9a=qtg8@j8?4yYHpObTn+ET{-NBUx)GVItKe5z3aw54e1F~0E~Y?@3uvGAIurzG5VQ_3SOrKa=?I4fp)oAJ1f38v z!r~dJnxvp7k|c;Moy18R8sk0%Ln#++5`2-wY#`OH(JU-pv>erP^=Lqk_6Tt;HHqUv z+p&ytP<1S=Jp?dPY-%aSiE6l}iUCCRcjEb?RqV2gMXRf5eLJE^vtR)!8~bIcf-u2w z37+(jss$8K?C6KXn(bJs90|sZ?b)f$m^uATYTTh=5;djgigs6*E$&WZM#xOc!OUaM zOoC3x>1b0)xEg5?bci&WREb7pho3?ucq2}lGf>hz6vRkiK`SyhmJ(wmw>V`S z_{6^|LK(uQ&Z6C2u%&4KlTFY;FGbr$vLS^IX^v1wBLNY?HPTIM7&&5Rsoe5!01v_#;Wu$CSN;|<;7g)ixl3cnC@2DGY z*yZxn(L-ggj2BWQJn+m0#$`m;QH?lpz5}qRj@Yndrm(jFPODUAybs_sRL(<1amG@8 zBo?gH89rehRiIj-R`42=rA>)P!7!sCw1dCh$3FcxX@zcE`*u#%-B zCzv>kj0KGGzdn5+f0pu+6Y_^9)5qG3h4^@fmk`gTJU?19fru0I??CGgqP@YgSM2ge zS}-{X)H>D-lLM$WKDFH1D58&hv&*iriqYs~Y#=r;Sz5QRIBra?$&`l=c%=JW+`ath z+I?Nwyg8ehYg~UOIdU*`X%ORo*6ODJU878#3p*DfT?!s$?52Wbl|W6a!P7ihg$$^u z(D4*XvBky{=oh%2F`9yt6%vuO${Rk^Y4}{}N4(XsjSGIDJttt1;_#%8TjD2<{93n5 z!Dc8}@E%TDG2MjQS&4aSe?QWa6cwwxvEhW344c?)1wUA(jvcn(gN6bK=cpRO{|=@h ztxfHUrDIr5FB?vxe_7l?>XY7#XNOWTEHfRZT-{*}%efJPh`RYCR+hUm_LndvtcupP zgprR$k+T&wq9gF#$r%V#O~x)3vZomM8O(MszPsbunpdw=zuTe@PA({kxT7e{^m3p99!EaAg@kgOEi9QJS zFiMUS10CkH31nut5DwcW{LG;c7QcsdQdv!u*fE1^1t;mKx{Qd6g$-%2DI};D=1wwN z#Qp=}!brM*18q>*-?d_yA)2}#_G z^O#?CEjeTx{jzKftSF)`XtT)Ypf*QnpY)T~4Pj3P+JB@{#TpCRjse?A;tf16Dpgb( zAp=m2;9(C25msOzwtCFLSZE-YzH-JV)GJsGQwQaBn%xmF7PAI4|+y# zeY)Ojc!T-&_MO4~U-@Y$R8lP&;ssNm^eT8OU>RVAzb;d$qZgpS*+}`*c?cUgAWnuo zO+ZQ9Uc%lb*wHhIt{Gf0J(kOjO|KXX+`NIZ8R%9KSlR{X4Wsb%u0`Jd+2qGLX$3EW zH&xJq?5h%uh;i&}G&zC&0Wk0InUY(Oyf|5>L>&c(XoA6ng6OSOF_cQlxvGcZvjpjBbbK!J; zG?~rj3h8hz*|x(;Z%Ts8!T;IbLr@4rZ00n~ArPS;V$BosV*^(ttSBTAjvuIyI3z)+ zV}Ao4i$ES;Hs%J5n)M(LQ`QWLRQzkgd_9i`c(@l5m z(zIO~Tn_CzcVV6>lq-gn`;;a?iPBIb#vu%Rm8V}u?#XVexZa+zi@U6f)o}HfkAH4= zalJKD++BfdtP{t~1o!Fey8zcu=YCK%$)7`+R0R4Q+!kw>4?)GKRK$ni#>i?ZSMaY< zUP3FXA7w&jFs^CGGRQAzvHvk~mJ%@c^3T1pQ8tWn&O6jDXWM1PJ^pgJlcMw3F&zmJ z?$M*a7p&m(kfj~OXR)J#*!w`NeWpx9G=TJH!qU&P&}8rj&58bwQ!^^Zf_Jp#gn#_x zey_m}T8(*1)^>15a*xBvMXyul_R`NH_V$|N0}_ql#CWcf%T@G)G#+%gweRh$ODa^&%hbKY`_|NjR zU*)M!fP5B@fE24u1i8$^5>oCU=^*p*=%6H}0KDuqb+E$N5P<3+>xq!D`*O(mkQ!DE zFOCG|v?#+6_dx~Wb4CTRn#J;vt>Y*++@NTVrz4KFdv`bz0aM1tZkiU-(rGFox)l>? z&FEhtv+~FbDIgX|77K-;Az9Eh6dLU$=&F?9504y#hF@5$bx4TErSCs6aHF?Gin2C699RGJl4E|N* zK4Kj_4HSy3AlO+&YCAms7)^+*{N^o|hiw$HccIR(e~NcM*;p6Kj;BkOSE zjf6)E3)1X;Xod!)p|2QmMz9A0R{PFC_rYFc`nvfMy+^I}nKqU-VL)RCvCSUBG2Vh+ zF%rT$82*uY*xx{aZvk0ZKt!bePTbr0hlb+5x+ z3#B_j@t?qlE1bkQSRY5a+l2N`ed74Sh^=kctWjRmBQv&E8@;QdZ@XVn-f@xM@WWx> z3;TZfa9h_#Up<3y04tF!z>b@Z6sDQ5{KkT{e7RM4qZxa;EQbsBauZwsIuQ)kpr4Uq zltsxB1gD=JryDt8H;a2=KM)uDV00d{Lbx~QptuiQj`jm{|Nq14#U!viX!Vn*u4#LgZNt<9cf5NuTmn3w|Kfj zaVEjJx=pdxBToAiiVcPCl?@%Ssjw2&q?m}_wUcxEL&$GOR9+5Q z(d}Z^wUc-|e38}{<}l+oK*PZQ*kHrkjJ(hwdxIG98V(Z?>$|CwFuP!T!x>8IKp>0P za4Z)`j}nKVJj1{6OA%QaDOhGy#r_b`NTgXgmM;&w2&bjGV#xvq=WJQe>wXLicWW?mJJs>h7xU z>aOZg9ne4{HqcEH1V92rVkSqNgh`sAW|RmC1ezd*AOIqeLt4qkNV26F1qa%)Wd&P_ zmaLWKJ7rNb^mkkX!aPT)nu~zzOWXs2Oj|g$Ne6nQx$$4){v+K@F(tso%oQw zv}CXT!4zEX`L0)=>`q(ddfdwtUfp%x&PV(1fSFLu4`lAYKNCN8?8x!^$HwfoqT{+_ z_dAJ0_MMOtoA!*YdZOj|uC)x+^eK<;U>d}? z0~WI6H`n{^)m3|GZE9-zchB1wx=+6P0o^JWf~QOzJ91>~e%|{s|L+g!UKl^IiA4iz zG>mHz9K-eNTH2!c&0Cvv@{aSx|J^_T)|a-<=K`VoA-0&0Pm2d5>|@>cnBTmLz=dts z-I7PWh=1}iU2pR+4n=bO`QTKAz2W<2tv1oydy1$P)8BV1aG45t#jx&jzs>iR+DKfc zaMi(k^m@x!5w=xo60S_w%kPixcpq&$*lG`bpYS%H;U0Wms$E1Npi5EcaP9C&_&!&2 z6T%eAoAG%4{FiN0X_Md$1VsavYTYg*cFDo@yhML|hv$xaSHtJt;>pq<;ri{z>fF|L z;S;yL=Sw~7JM?|->9CqFNS$BiSzF`sX|B<&;*ZOhZ4+tHpoRdqz0zlG8`B$G&!Tp( zs2%)fzjformX67f@eA>vZfifyu?M|xZR?S72>~XoXF?q8>>6Ow2E7!taJq3hXCi7SSGeTb4sgG5?*enSxwy?tEPsI=8pYx zxbs`KIQl$){koNMV!y)wFMq-OLMq(3ZG1^=>lmC=7{ykqTZmmmZNO&ZP_M;2yt~Aa z0xh`6ykmzW5>YC)mRo+vicxM(6v4u)lsa;47Qyx{kyy8#CKHsKieWxO);Hs|f4j}7jFk}=BDjq@|E4c{owvw3s@;HWZSc_K{>BA7nMt*8ARnsPji(04}=B(oNR9E9Nxj7 zw;|3dnnt0*!oG~r5EmvdT)lez7BfJ26H%oEG<@rP{6j-MCKu9dP(Q#}p_Dgn5bgqU z_N2bfpARB?g!sC{lCPF{6>0GB79y16i-x2NE3aL)bYSceHN>oy3{im` zVDiAm7PuDXmT&1C z=_vUPx1s9cr}xIz=Y;^-_EK` zh7gCf2tOk7d10j85>Y;vo1M+YJJQ8`p#*wJw7g>vu;%yN-P1gfEr2|cE2b;QQ*A97 z!%2C4Bn+@{!Z6}iswHiLaPUa>fkZVDb<*vo>y~$SX4SFk=y;dPW{Yj&)?(a`b8mB7 ztCdRh>^=ZDp3Y|AoQo}+c4^5sgtnQ`9cZZxGV;#EVjX)%_jJU(Snv4J@!r_AmcHiZ zzLw76wzlC;npk&k)1RsgTB7!*y71fhb5-{e{(}y0Oo#m)5MlwQIhJXN1p>cBO^Ky4 zY=nPn17OmfSE&Q`fs{%fQwCoAi9LG~s{YA-_cqiqTv z1znl^u>yF7&H`lscW`#}dYiktntOW%q7p4(IHpCXBGDwG!<5J;@y=qN25brBQ6i#B zP>~lr9bAc2bKR2|;pMB~MfdXF`R;-+bl&oKbEo178_VI?YN1^v|6aT3n#Jx*Rszfma@QC5594H{2K0#odaEJynWxneH|)8YC>q> zlw>fHU(Ub9lJ9xVogg7dZVCQE+-kAWi8e4#O~SV;vApnXdisd^3HxoVEE`X@e60D8 zZsp^ji5FCQ@<$Sh9~nQ=*7nYo78csgHuK|>B@*DazCb-xEn$T5oq^A#X0K0uT}K}O z$TQD8`o{aVwfW|}Mz>24Jy8-R0<3DsCdVg_KmY8`XTR`lm47>*4QP9&>3?cEP!Kss zu7JFPi6fFa@}LA_ur{E7hU^`?$Bj)U?zvmO-SID9s$Sx6c6a>Q_~35+{QEoh@&c*agEph;UE6&QTyX| zdopdtGI$``J%`ZRq>Olc_r!ZJAo;w>UpM_7TG!*ezgaiAGYSgvhrsY(?H&;g1}Qn! z@F-OuwoEh>;!Pk5tAb=jE26e!*VrhM^H*9rvR&nra><|7Q!IDjq={cw)+srObR?Qh zgURC-dOOHcsc@wN*5rX~G80Xd-Q272d`Oi$bNPB3j8?V1F5EzO8xTkF^g+k&D7JMr z?`%$!NmD6jyp+rKknkyNpWVbX`?MTuvX8Gk!mrx>?cdw_e*<6}4Fcf5^EaBljfIrB zPCwqDu$O;%aSIU>oun)h-(eP6nggZ}Pmw`|V!$Om5(iMTJ-@@<;S|K@fkYE7jo zvLsA%tu#2n9P_dgy~RiCVZ?`wSpsg8o?#-kX)kt7KM=+X)vF$^|8w3+YsU`ju77#I+X>=8X-b=JrM=$2F4Z);(>s(~v7qq800`O~Rq;s3JW6_xdA^Sr<4Ge|#3+)a+9V@ClX?-p}IT`<)HTl`&R~fr}y`IF0oWm)SK{0$6 z=BEeM>K1JhuL4*KBvz9N+#{Md2j?6vkd z$L8kder0Ir(p0w461Td$?i=8Aujte4|N8s#)=^TdCY$+&&&A1>ywSzU_t)Kn|fsMBP z%myDt{0%{7lW@nLA5mt*i{!BSgma**O4?7tx0eZ#fW4|JDsjh`R=@Nula&`Z({1T2mZ|gWAZ+yvnxCp^qu&NWavGjeq_v` z3FIxPvse=8N$49C4g$)qFCI0#$tfb>5^sx+7JTPdRXT<(V)AAVG>hB>OqmbL;g3hT zx5T}m?^0n*h};e`Y!M?%H?hGmVNKh7NEjb7H>IOPJTHt7K|+81;&GxWNvM@0X|POX@|4N-s5y^vjMh{dp!BDp*Pp>@Wt5gj}oqhM*wV$+*i0^_L}pG+#xps!L@7G@H(n_y&GD73w@7#-BTzZR2lc%D!N^Ba+{Q(Z^&)0 zYW9#Bi>|=`Z0Wc}l+f?M+u%P;(+7G!^0xFgN%YdAP)L^5dbK9fpM`*klqd!w3^u;o zXAmuKb&LFnLSuA{Rhyl|zJmu>)kAg2a9AKAhW0chCsE4H9nY0>iI|0OR>-D1S{`fd zNM|>?GR-N6HOekxCM0ooJnN*IGxx{ADov$=pI?a+9*WS1nJXq~B^AM<@lxl`=7JrM z+lA(xolgNPn<{&lP(+qQreIY|Mk9}Ao3opL!8;2+w9v?I!HSpYSBb~-hp|Y&-BuMh zbyUwH5MeYyI3ljYaMd`Z#6DGcqwwIrnz9wXtGk`u379r3>J$hq(BTBAG*W0YW~0W` zZxwPkZ{ECM+4U?ZlDH^SC=%jB?6gEKNFXHrVC#9%f*nUJ1wDA2-P?4!=~B}VHhrY& z(~R~Y%m$l3Y9t+D!CW7MI}+!5I$~5~LI@C$OgwQZ(0-WM;?V7Ac>)E`SfDE*iU$i& zu{11ZJgr0#{SV|wt|4HHt6nKOzJ-85?icTq~v(43E#Kc<55i2xceHOBkG;qsp z&za4>T}O;rk-kJ87g`B4F%w1}-&B+WAMWl>xK`40yRAsGnedGF+U|hsCCP&lvxr@@ zk|5R6+y>E6<^WdMechx~hnH!Nkk8ReTJGl)eiTmvZ+*FA?Ds{)!cLBe)lox%Kn`%i zZBl8xHm#UL>`cV8TZ-6i!Ib)>=h)q;_)aH};VQOk#4xVddG|m(wHxE2GE(u~srW(X z{v&W&>c}BRn`K<2J|nwgXvgx-&UmWZcK*l@JxRw?*_ytqtiAsFYeCP1w-@h0;dO`; z6Z$B8zOVU~--rw|IxC#TJ{Fo!5UyR9yygCf7~>qrUJ%+NpKt%=3pI#~k1Z9>-xnA` z;uj%SZB|K9dBRx^-qP!8)8{zEl~PaO~v&MY@yuuZNcJxT}rZ3X8wss?~Lp z!8RT(-o2`}k05065|agr;OuPijYc$S#!?yJ`(H(JK|2;b-srs#?^kauk$Wp@WKxI5<0Y=d71)TL+Jy%hDemJxkMaj4QMBa!jA)5o zg|GChN1{orj%2AH(ej$+!vjBDi0&B1YhOgBav1B!kiNF1JjgnIPS3-Rw}lw~pxzPk zKY}x4(&mHQ$qzn;Txiu9Dhp=ncZ3_d=)A^xxW{??6(J41`Efb-eXkT^D5UAsO=w9~ ztiog3d@6$v!|4_Q*{1U->DldvB!%?Ck5U;M>8^>4kHSeJK~8SksZoM#PIKnrswpDu! z594@O@CO80UJw98s@0BfV*(F~w`6rhvPYK~d)MzXcYq5xY^vqNp!Y^=xVyZ&+}G)~ z?&*vgK!CRNl~w!j_0}EceQz{}t9D{}!|UwhobF-kw@`oqhGs-N_q3AAGtik^$fp&t zPT=Q@LA>fl;CUF~i~)dxH1S8U7I)1mGg+!CRT2dRtYopo_)U7&C6lf-J&9na9n-i~$>k3+D#G z29S1AA+mJSX8v64M-MhC5yg1eN{A^F2#*wq24Tafsc~nQ3JC@eb81*D6^KoYQ&C-t z8(|5@2AOm|#8WgF5`<1VjYq?_8xoij>OFvT z@cSivU!?mx-s!e?mN(jL4*gcr#G94RZ+oi^Wk%!S>xPwosV?093fsC++iv`^9Ac;q zh#!;p%E%h@liopf^~xaB>h8&tZf^f8M^F1~d^|HAf73(tK!@~SX-kdkD*0tt;6_UK zq|?_v`F^sg-HI<~=6(r5A#C?QWo{O<6sfft#GpV9g#jX(iajh;Vk=?{Zsgh$y=}R+ z-bBT#9Y~Sgd0Cam6UQrkk%@^&U*&jWe0((}d6~z@wfN$%`A*Z{ppQ)Rgt}f2h|)rT zs53iifKr)u!2suHGf_Aqtf;oCAM?_OU2i;_0lEZz^Wsjg=qBA~x`XR1?v zT1TRv4v&2xmrms{n2^4p^u2>_s&IIpn?h9+*coUSv5ETfnPf2*DI%28gzrGm;k`x5 z)jUX@ZDAa1frG)V8(3VgUIo1o@;xDti^y&op_TpPUT%Z^pr*G-JIL|))G=1T>)poxEn((%oQ43ZpZ3PMC$6I*BUm%~4xGHFE?ALF3cqL!J zVy|UtdiDk6c&$~FRxhxepl(5MANfyRUbUDjjvTa|qE~HA+_iDxt*2g{vxeUE^lMEn z@yEL8%v11d2a$npk7x2-5#fe0Ibuk_j9?9GeYTMo%^ZqRxMS!P?)5sc$Fo~OH(ixI z71g?D9MJMX6-#H+q$(|;Ya`zsAyot?6{9HZ%xH9=0N%@1jLoge;P{?OMK1hE48@%T zODwKx@kA80CD~0$`AWLdq?4K|1~k-GqPy;<1<;QUG0;Sbig1Qb>y91os&+V|3vhaRqwXn7Vvy`m2&up^ic(Z{LbQ~9OvW)9+$|U08(X4wmojr;lnL|2hfFxLrFdyPWnXQ$xqnTeV z)Hrwd-rZTpt>rTv+_1T&nd~JU54yVKq&m7f-o?S4!HLI7-~PdPS6BRlrbJmI%&~Of zV~K{f-a|l)(3Nm3C!s46(WNbJV+dfQ!ePNrj`%{O+6;0of!(LwJ!z6nY%yd2#yq+V z=Ho5pMLG{09Y|FsI$H*s%_?z&SA1u{fxPP^%B?shTDd`g*ODoT#J*jvna5 zBHcW=ukLt#S>Gvkkc%WCHSK}r!`a9i#gp&3Fef*Gpm zNHAkXZNfiIM-X)MEEbxgtebJ$j^7jq{F^s%?Ld(6^&%UmP7z^*rAM?Ve9)|rw(Eth zBsf<$BsKK7_=Dt-ctirqiCV+AlWQFw(GRzvdeQ@M^Du>?b9iZB(SQYf><&!P4WHS= z9v0@34BfWirpcZ%vUP;gDq~~iKlG)Df_9} z*}EwW?U)6EF!)FzpWn5s_)V_LmUDRpj)~%uZ~v41F`K_TPBY7#dHj4A@s`GZxb)`_38XW`_I{bSm-GfdUnZIA=8@4w05?p)2)C@61|B!64($_SqoO| z@h^0?5PbEOh2Uha`2I8}`&WRkkjQ!2oX7c_@80ycP!b;#3vEBFn11?5{ck5HQ;$6I z`3E0NJ^JY7`zMo+q#k+P$H&@Sx39?z6Z@GTi7Dx=;9K};8C@uAt!Y15GhPc4$!gR0 zG`+p)U5q~L%|xl!WwfK#@@J$lo+Xw%EwnJ+P8=RW4I$y}l0}1y z{Y8>Y+uatN;MfrQ5lhY+!UGrLtrc6P5mIt8&=H(AmBoH}(F7=-An979Tt}4=F|FMx92_jzI*SnQYzj%pjE+gPwG~H687F@2 zt)UioS#pj3W5R7tTju@y&~3O@JoeCzl-GvV$&9q+QchGokAfzRll3V3-RRCw^MBCb8@VO@W8>IM7b84E}?CI~|W& z11pkWQn7-QESf5l!EVVP#>kAPiol*)*(5?H>w&1#H#YvFZQ};}&JwJ$O-kwd? z-`Hw_la#d+S7Z4M&^BHy=_O-t(EbXzEa;)5zkrd|voSERAW;S8Rje)-Cnw!QJ@tK= zb}w5yxU>6!iay{>ItMeEj(beAK2h`ba}V6;f^oP*N7wDcayv=1wpbvv{ed=dG1?Lq zggDIxa`Zmh1XH3Oh0r<#?tt{k8m|oyB7)0Ef;!M<(uDe2R2mXDA-?V}T$_BvbO6vx z+NQ)cNL)D)C!e1@X-muKPb@YbD;>wuHR$DF2C_t_<450Ft9cU>7p{__EoFYu78SV% z=NK_;$y0+%yL}Q+M3zq=OeN}z3dzxwoOcNM zfdY<%;5&>G-wBkNHlaw;GHjc7KSyF;+%~R_9}*?Wp+inyseGT)yVvRQYR+)4v(JT( z#~fEf#PAY?V%o@Ek&? zsC`^yhbRh!utOH1m&7#4(Rw&YOEUFkV=Pozi@LHD&A73B`(kb;TBsD*h+D%_ZYxAG z&QLs_N`J}6PoML-gn;+Dm1gW!%8|SoX=#a=`ABmG-^}JnKJG?Zo1>+Q=T%D4<`!r~ zK9WbpBv*eNMu?yH`FE1x<=cFkY41LCMtjL1Hvwmj)4C_)gFz!Sj)8*uBM&21V5n&V zC(2jGj_5fEnb!+!$a{@hdbvd&*5=DX^#$+Rb^GMx=K+2|bHhl0Hzw@Xh&iVD+*fd~ z(Vri6dM-Xyb4I>UVrWSk(W?Zt*0znFoW9_TTx%Midv8>aqsMiZjyT_60iVoYyZo^u zc)P=*eexJFcw`hI#=&rxVJ`fk%m|qx)*gtp%#v^vX#?E1p3}p|Iphx_M$`ECG5aQ_ z=v44b^e))d+%Iw-<|GD@jHViP-jaInyS*p;VKkD?`Ls>r^hk8N&&i-q>;-7h_lxrl zTYlKm_IB0vt5a9a+EQIUHdJ{wE>rdEui8gLX5e z^$0%N)~Zza_*M8^nU!&zt z8X%Voum*x)xi|I%5KzERkzq5NZSQH%<=T${aRJ)XW?zcGZv`%C80`gC2w7TmeX(a! zVINVHcIAi_(!cLeYr#7f22foB>(%rDM$zX^S()!tXTd&>+fSo(G?6^1uEk6IZ0; z+}A=r>Oejd{g0oG3yy^mMkk?RkcF0jA8sXCb#qEBS1gc?PZNT@0x##X({b+3KmeS5^O$m<}{bo`d3b&LdR zcbqxXp|Ljn`$$eQxexxU;eAN!CtiWpK5p{K_douLPrUDaTUyHX^O?ocn?zapGW8Ja z6qIMI)Ga#B_Z_;U9`Ez(p+);phb#HAD$qRm8SPsI)F{4O;`=M6V+jbvkcS%G5&$Ch z6!sQH5z77&E=!PPR`juYkRUHo-XUn2iN3wrOg>TE@sK-&u{o-EtSaN_x7wj=I!c^)S>>q|<_DPBLAi$ePZ<5I?TfbIXkClkdr^46A zZhU59qL>B;WXh~WYNEgm^*CisZ9CDG)_tl75zG7>x`{3Q;ZZ&2zJ%g=TqiRU)hesr)m;!Eg`juEe3&Y0; zd-04+;NaRj_=mk-;-ivR>gfc}xy2rvOz++oIfXKDqLK}#!a$&%z){|f53!p)fIT31|YyZ9-6{mo&Uq?%C=FlodrGmMW5;)rF{N#A zsGiv=NnJ@YS~RjbfYZ_s+szLFjMmkh`)h9mXoo~1VxDkLluzt0dxS{>n`^Y}%GD;ex0LMG|keh41`(aE5T{2dDUVk^(r)klQNNei06f-?O^M%cIjWw?N%N@hz zM1IztZM|!}m>=sx#xKRtiS#=&>DND%J<2bqDH9F8>+gH?H*q zemnvSim^Il+;jioAKbQl^H;yx+)(lOa&|eslz8Iwn;thbuj2C(f=%oDhWS`bjAdba z{QspcMmCb>+b=X%MRB_f989G8spaKQxrM6*_XYf<(0oi? zLvn{LwxXY@-FyMf?)c`|_OT`g;9_6XG)4O`h%_yb*&9P$x7ZY~-t;jfZNCK|Gj4$aEG z-1d!9JcY=DF3P?#@ieg8gSBe~6|u9D=plmv0#gH6d9sy7HBcBtLgRw-c_V^gqR)vK zg@SBx4suV#$Pb$GNQ7a(KZJJ_bb~7Ga>U1=7v=)>i%%-0iF7l`FC6RkV>FsRrq4k@ zLD65}N0W1*6`TK|`fYoQ@YBw|>l8t;I9~jaN zjhK``ykSE=!Hz)p%#L2>fWJ+c#EBLqYe~#Z zvJ$|@Y73w5k_kN$;2mbvKkVDr-nTn>Fu8kI+rE8myL7Q{@6eD{0j$w3+nGM%{@85G z^<~&(XXVW#MK9;uTa)p!X(mz$z)54j9Nr?hTVK1}c)>0wx8H#Eb=&5oRnDcGO}DMB zABfZ>aH()4tTKGy(PfSBFKdd)NL&!&2Q??gRc*hdpUwhBiCYKTB1UN4Du?v&ELf3VDD)_yfXnHk0 zFc5PHQ>V1s{hzma-5BHkwSHu`w>x;`QF)|0pm|`Q zpK4QW+NRo#WQHc}dSSXNe%2PNK)-e>KjK!k(VB0-Mc0@Z5oZ!2CXZhf0 zceHi*0N*VKeFaK@f^j_463^JZyQ+zdRZ)?AtmDAlN9)n{gC~wWmx;9w9UAS5whkQ} zd6Tb%2~ag21B^9ChEgx?WzJw9->HiaqTyJ6XsYt@rsS|BC;!h_K7GGR1vbD}3(mrlUlrzMavCt{vk! zth9j23qGg>zX$}6{?8kWFA{3KA|zHeZ~}t+meY7u@p*ljtFc=OnkX0RvtM+FM$EB| zI2nXmWHOsp*~V|*0AS3-Z7`ki_nIx3+d+ZFF)>zfTUy)#7&Q0@QOaMG@aq^3t8NVZ z&sZdlS5XYWegaLS;L)%b&{o`>V+y32go9^d#KCncC{2SH(qf~OH&|YIE+DHdf-7W2 z*&D%FC3``mHLVu&-SS}EmHY=w6=L~cM~&y--LeEmcdH(*00F7^X5|F-bK8S;6*g(E z?`zJg5Jm`!Kp=W*thTw_&D@4Kh!W95QM{OM-rS@q(vQB6$!*t;Y+b7_2rnhNS;jy} z>vQ0qez@sVjDQ;U!zx-^viU;jhXjR4vM6AM853_W3HU&Bcg| z%{I5>B*~VQPR$a0jJ;^ljyJ2Ei$mN&^szXhS!AUk%Bx~Wy9z|ll4yr)6gas@J=e=P zStCY-*NR<=S66iy$HJF*CA?!%PHV8kDsbr}wQ_PZj zB7rX(mHl~?er!=ZA5Am9f<#I#1Aak@bT5BHfyoLlXtsMKDv2} zdw6F5@WWfoi7iJ-Ras{*Sg1E*^;)9-WqjF~=CS8J!0D zj2{U5!i5Lw&iJ^q=ny5%$n zf+j*UA}pNL+h0*xURhINwdo#f&=@QIzB5#Ix~Hl&XR_BVBwpL>vR$2ecs$js|9znO zQ2FAJQ|@l=c6%qCTJe0sE)Tio>SSV9vX&Z8)lyHD520rC?JPpG%E6lY2wBBX(`wp; zCoG2qcVNf!^$64i-%=th#MUVwT^L&qOH_o&!ngA+>@ETT$bzgrPp~n`o=ukKYRjHp z@IPDf6*7B9+;p;fsLG$RaZie;J9cL*+lY1yAJW0iU^0rKXq^8FfoucMWHA`MH`w<4 z!>XL`-P00xohU$utyry8&%t{R_WT``C>782b!Oslo)+p+ecS6k+w)$2NL&yAh>^!n z?se4v3HvF;ClH??J;F=E?q~^)aRDPF_&`^$-UxAs1T>jIaS2ZcKF602g@;OM?p8Rc z+UB@oTr#jqVV?`ziNVmftq51O;axy*n7lx`H;Fyx@4du!PEOV)Cy9QLaPV;v?xy_M z_jnRF#8cj8zsfTu53>KvUH*C|jGORhIw%b~6!2|4SyW$ohR8Hl7DiDfX>NJ)RaOnd zxIBD$N*>N$&9dpodzKY4Y$9}OUj;pfn*N4ymDE~e+6o6Yv;qX8TVwb@S?|prPVek; z-_^dOl)Y#4ohJ?-J_>Y7+tJP+DBjzenE8RJr-i?D7omak_j`5c^%LlJTh(X!-$WhtoWcV+C|SoZhw=BW-D7H zGm(|t_kQyM*uVrp{SM}Ol}#p7cC?5CBdSVUfx)jxf@{VSM>3@eg5ij4QW2o&$WK(n z{#%hV`5(8kyD|{8EnnXk$4=t6#}KETWEs$Nm|y7nu*^EyCcoe*oN56p0a9dYdHE`y zcpJ;7PTkUucvB+4dw?_ChDW2vxbH2<%6t3RL~2CsH8S?CQy$9NDeshh+1H}qlbp=rcd`?DENV2m7>1t=*$h3ENjRjdXjp(=#${-JK^bBUxxE5)IG^k@DBV|DR!FGK&A-#>Px#;ZwI`V=_?97yduQ z#$=EStqXV$`d)NTcsm62nDMDqgtA)jUo?UufZq^e%&3$f`6BdxbBje|@|0i^hx4I= z-9uvUcCykRZ+ckgS3qEpmAhLzMN1kIt(=2`;Vl6_svpmz;df*p*CF5xY3=Z>1SnU; z3g4X)0>bqK9Q&SiKuLQxwhi1YC*8 z4!PyAird}ge!9}?c6DDT^~GE?=5fXxSh&3pRGe!qzLcK4OV$VMhhSHT zbIM^6*=gXS;Jh-N>->ztP*LOn8$=8GWEpXevytdTqdww#M!b5Iz`sIvXD&5b8YhG( z3D$dW?p2+M9{~A1hT$<1eN{EWUE-1U`(m+lCrZ*pLhaqN$Mn3iT|4ZyyAu5ykByf` zQ|ZojRDgKuooJ8$T{04LYrOLDUNBpYNb4l7bEFE4;Syk)0(9<=PcV9XUANC$!>`JM zDdTece`ux806|a5mavKO*bA5BM|09Q;n?(LBk>d6iVpQPOjyVw++9YOmMwx`;hMz# zWH5mUp7?ss58)Q4ogA*vY~ktgwVOA;miYERvTxgGi|6%YK{^-_qfJL8!dpuU!P~&& zhfb2jSTR&?bCP7Okg+X}fzQ*5rJVib&|lt)CA39#h-g9{cc+RN7Zk zoD?y)oWSQ1jNMd}a4;7)WK4nlUB7m1|4aKc=FR&%#1*oFgTFXJc7@K2ET(ufLQb~v zo<0^}Gx7%7&doQa1+9>erDaEG<51W^4G@B8;%hE{y}9uzAA_*h1DVp_NmA($dNBOm zdM#(q%TLv`H3%yj>|;`#U2VrhfTq%VdO+g`#K`pVB%oZ zJee4X@%2chl59QF+Isx>4G%~T#@L2uU#-Un6TOxAV7&GOnUB($O6G~S7L0fP-0xEo zE$Lfg(R3i5vM!4a6l`D8H4PXtyM#S$kFe94OSc>v?L?_qPuJ5W)v|l<(R9mxgq%{k z?(Rqzjpq8m4?2JB{3Y4uD#IN`x4y$IHScOxKM&Gx+uk-V+~F3n1V(3zha zNFB6~xPF!~Dp3y*g+NOxK*J@eT`hP{WapuYblN*{-=2TR9-duN1NWZDr!)Hx)<5V! zq+`%&sU*AFv-<~2?vA=!?A`CRb|zb!GkXGmVOhJkxMx4+Y15`5ec_7%qT3P#2$@rw z>NDr`IulH35lOy9#L_KW(DkrWkUg3Yy{~_P_YiEz8wqcmBq;oOy%S{Xz{Dh;QDHv_ zPQA2&pkxW7#KR>wBA&)Il0IPTWyXlBtWK6ehhQN#3vL8<=O0d+Z=H5_<#zR!43*Ck zA1g_$($0Mmqxa z^Kkj8j{R=39zC3l++|1hB;D9xBzjjQHfQd#?8127uJ&~e#3qVW@R2%IIeIGD5{*}) z76yo9K5n+at z#SH$&@t9@3PW*abXQj>8B?0y_|MN&JHWJGuo=jx;4T~R*qjv^^1Fa%%>1Y;#>|K>Q(}n_;v>l}p)q%RVC8=16Kb5_R#|bE6{^NyKG{Y{Lh?5Ag%=wMdeY7n{-; z-2@y28E)VrN@f+bN)pc)C|@j`KY|H9*2U!SV)7GYApd>~RI10~DU`B_R1Vbgn1y>C zixF5N80-={GU?fG{{@@`kr82bsB2SGBo%AQq+Wz|;j)0}FYt>te0WUUzJ>?`-&@okU+C3`q<{!ER3~FyskXOJ zBmjGahgBJ5Fu!~E?Um4m0w$zc0&8w>(Hh-{0|XVVo0LcP?iD0iI*h9z)`jR;w3FW8KxEVs%fwM5IPZ za7p)}xtELud9I_c$BIl^gW5~pv^o)ooHAN3>>1uW#QYfvmS&eDg$|b?i6lTE3N=1yMv}QiYcnzlf|i*` zvX}6I=&0!SLCfHg@^0mri8oA(sspvb+wjbYdWK19{Ru^C#S8bT4`9l|u<9}VxJIfc zLG)5dQ>vIwfs2wLBXQh;CJ?SbEK1ZMLxa2#FgLUu5io>eN{ect$B6eI?J`qo!@$Xq zCIPgAYVa@;K9Y;je~7%eR7yW68jFLvD*z!Xj~PQ6UaH44kfYcXoEH%UXkDHKswi)z z>lm}Blp=)CQ?y-pEx-UYab^jhhPO3 z^7SDKu#_f$sITPKn1GK&_DMFyK_U5)q8Y|Lk5Zdk4j3Z)mGG9Rc1vP!mhyrn=z|=T zRiZX(4IPe1E=Ge}x<&!D8LJWVbxdPEjR7dbE%nmFeB}cEP@fGNvUZ_RW3wB`7oL$X z$?9Xsa-;u{{-9WJ5WJKDvE!0zcn#+ZT}vDJ;{TADM^n-zGAwFEJO4vn^1qME}L z3sg)ZQKsi%fJg@_Fj5x5F7bqlC3EDONC^A_OGqmIHaeI~7>j!TN?K3EM*QZO(F9a8 zEM=(hEP4;r1bSMGTkN5C{b?xOEzic@#ts8}F#|1POL|SN1qe2FSCral8X;$JGr5I~ zE+_#5JP*nVRb>(6PE0vLXk^Gs4M4-Rk7CkexRHsI$YN%IL3VnUU8#dm0+o0J1~)Vd zjCh7MZ;!Hp$r6BD3E&1Zg|W%5c+7$5Q1=A3>O3()b~BJiW(o)0lvheQ7>~_dB42du z_wz=KU3puo%)3gK7-(iXfGODKHl7W=dr6Y_IMoJ-nVy=!v92$@pwg^lX+hrWamN$_cWZaK7;N*fN z-Gp@ViO14WsI@c@x(;lx;5}J7MAhdL`?Q=ccn1=H=_9^tj*hhw$1F5DrNI~C-AVqt zw>ob<7@0B-op6Q@B}jLb_}fIp{%?O3`D5cJbA~rKmaf;4DE<5TzHULrsSst>SDysp zf-fpOed-ieaMHT~sb=|U9x8U**_^YtlRWX$Y_m7xnWmjK zGub%kTfd`nq?9vM^G+9ovH8txvDj5CHvFHpXp0w*w(qbEH%IDNIbxLB%0tC$qN6+G zCg0Loji7PDWt09CcFdPILmvQ)iJOu(@>5+5kX9)atAD~de%t}&BTQv*YsfvGJnjI4 z8n$x_^0Ro}{Jp0mCh>$nS7l2igL#)xs2X?HxL zmy{RPkxV~n0CLIqBkDA=Ij^hOMcod8 z*t1zhCOTAB*-}l^mr_kTsHOSaFI`JhI+Ybq?7f5J&3q7j(^-*kM59_0UcDr(hr~PV zFDl5z#y;`cfOn^@nE>V(Nu}Y1VHF8&6WJMy8p7G2g2e;K49l7*6nSS^F2}f)fN#`U z3hSkM#A$8GCu933FuOoK5>}z7yTz%n?@uABEChzybvNYxzH6#;cRGdMHl4R)-BqXi zH!E%`rJ|!rTFdUsSKj07N6Ja#4sif{dFT*i@EehOX-7Jm%(u2V`wzqmxC2^VZ&#~{ zC86>h4QCp=?~YoL$#<4I(y7ig&Ky;TxKP(|I^sP>IyHKx@MaWTY>Jm|-zpfq5a^uPPxL8NWr#3d2 zffy?JCInC;P6`GCiZ+R^-Pq7wrN1ol5;DZZ1Hh`*tlx=0nfZ!spOLPVE z)(|t?8>A{ ztTZt^J~L)2C}IE$$5lshsR6(#+5F&{^joXh-q+%>IC2bk~8sZ`2Hx+$1NmN6p{ zcc~7e#C0q)WfxGnv!*8aC0%mDv(>hBV$<@B=@(s-c5TK6=WCuwMpX)n5J*`H-N^NN^o#8G37fqKmNG>y)rSeK?d7i>6xu{ zYV-O2I%REDV)Mxi6Xal?FOKXO2Zp~z5?VE}U)gfsuETkrW!w29o%XHXsqqaBw=-@B zPqj};MJM?gM^lMrY@^2WHDQ8A2sU7d9)jHgfIw~^wgS3W2C&}}LN`ShC;B&0L{!0Jope7v;Df;2i&srj5 zB}3{x#FI0tsF;R|5WA;eKWRZ}DYWw_y0*%iq~Eze%rQK=BVEdsoH`L6j-bA-R}^ zXBreL7}%>uu-T(Whwd>oQF7xJz^Z|SUmpd^yQmBN-i|o^eA;zW2oPo0P50uAjXQP? zOM>ObzZ&3AKXKsK_D3drOS^JTy2q<`IN82ZN7=~_dO|N8aEKgnZuaL}LFLii4F*WW zP+;8EfyAs=8BH?QnP7S-iFQ%Yr13Q@2v;f@>*`~0aMcmm3dsay_|l*>7PMW|e*5Zs zp?7=nN)QV10jIOy2AOl9)9DzrJ38#a$WEiJ64_~1+RPo1wzkL)t5PYjIAx(%B&#PC zpUA_Q5u;h06t#2%t8S)o=k2unJKfF!kUn*x-}dBUYe%F~(YMj13kY8du?1;`d!-b zT1A6{^F;z|>7rm`E-(_%h`ZWyak)L-XNz7vxwG5U@XvHv# zRA@lMAQKibv*IIm;leeqEdf&Pcn*t_Hg{@2jD&= zUXayFBDgTXKs&Z@bhf-pFi$~z3B!sf|Kt>OeJ=5dtVGXA3?1=z{>_J%h_LAOX=V`|D;C`r1p8PL=f{qU+q7)4^#)iL3oL0qk%yM>Kj%93?Hqqfx%@# zV$EV@*j}F-+W@N4EouI+x)fRof&y0vKpqME+E%%_EugE7bW3|nx@(~8u2%Hb@qt{t zrB$1x{k3wduK%ohe%HEv_xeavQHOu}cF<2g+T=^L6{HeQAD}ql`!Qr{`2bO;Ubw9m zHjr_mS2S!FAZo&SHn(!HR<}1#?2dDSD{Pz&sn?dgrTroOt(QcTw(@fK=|vM$ZrzAE}9P+5fCGUFqt`mkomsM_r(7` zzH#mk-X!_L|H5%@{02A2`N8i?zQu3Cgdfn-i+M17f zFS^@MeS!dU0Q(+TdviGn=gn1cE*-Dno|vz|DFK$RQ5o)pY}(I1ofDQmSl4CT zN|f~pR`x4R?_t~`e2KxjfJRzOY)nN2d0s{wgZGK4(w~~X;(1Kge$#i>)Mts9Plt;i zl>sbIq$FV%*t<#?u@Y|Pg1HY}D++l4Gm}X?lq?qGh^akE z2((uQNu5!eMkD7$qk`fjmlGbyN?OsJj>i$(1^QVQZ)HrOF*V5-7tevD8%sE@xO1Tt z<8bspO8$_y)ZNihx3=;PZOw>8@)Gh#COb%rox{js?X{8}@D`%p6#E9eSJC8AMr2?O z6)t#@nT%!Or-i-}U8ao_65Ij^^>0S%H(~{>tJp!Zt}W)DtguuB4kZ&0=D=jCJEQo| zBi;G5xfeS^57NQ|%tRrATKEO_%#BJQR1C~(Z6grSwYHOL>H!QuD5A$z3V|6hIi)6Y-JPw? z1;pEOYiD<^Y^gWb4a*v)&CW5-d|DH}-+a@BZEuKk#MT=U{KJ@gsW(Jny2(I8q(u7A zJTyZUWNnS2ASR2^QqdA|ic>b*p$O)nZU=&`zk54m?Ki{Q37?1Vnz5h@Ml8+vV4Jby zrp1m6LkJeYkS(gjYFo&z{+AM@pr@chE2f zCrF4=^L{a3%RKBpQZo8Z9IvKE-r;Ztxm5-102By8L)LCSoAlMMNAm~8tRI)kzmlzrq6e}9y{gn^@$xx-oZt~D(;?WYe0H}BEliUrOX&`&)d_@jnAjvffxztqnl?TUoUx`H+? zt`f>tNtIF#oJgAdt67yJRw1tlc*Z9Mwv9Q|sw(Im#4g>bx>UESsvgy=YB&Y#P&?Hw zObTFwFs}yH9<^5usbRGbPnJL#>bSZ~y-J->cdL8Uz3M*v zT_)87>Ou98dKk}_SL6Hgm^!ImqaMcx=C$f|>hW%6Y{xEM+Z&uUlw3<<~s-e!P zIdxXet0&btwV=+cMYW`s)djVpR@ItXR~OYK^_04-uBh)(Z&7bmZ&Pnq?@-^XzE5qa zr`0>vyVSeY_p2XJ?@{l?rQuoiKJ|X}0rf%kgX)LW533(hSJjWIAH$0OVH*VQrFf0rhZBNvih?6*Xmc)ud1)8=hd&Nf1`d~{f7EY^>5X0seh+#sGI7y z)mPQ;sNYq;r+#1kf%-%BHT6g8->d(i{-gR&>VH>%to}sZQh%!c5A|p2&(&Y3zf^yv z{Pq_7u4UWzgPcV{e$`+>L1nrrT(Y-mio5(C!>iK zRcssDCjk>~9LFTvNE#`_F7oG#h23#b`AuMjJ_XI*d-E%jh<$ zMvu{J)Qq~Z!`Nx;GWv|&MnB#FgT@|XuQ6l{8~cnAW7HTk#*GPMzj44gXdEK?=ZJCC zIA$C-?jqyL3FB_#9^+o)KI494(s;ml(0Isr*m%TvwehI&m~qm0jq$kggz;MAb;j$B zHyCd;P8n0in~XOb)5d9I#+Wr4#u;PIIBU!sPa5Zp1>?N2Xe=4a#sy==ST)v+b>pIO z$#}}RY+NzE$9RkJR^x5P+l_Y^-)nrIv0*%IywiA>@owY$jUO=HW4zaR#(36vpYeX< z1I7o9A2fc*_+jHmjH||v8b4-y$oO&NCyWmpKWTi#_^9zQ7^3yYG^B1Sr8vUnN8q?>Nm*yAORwL81vlis*?EJ-sJ-xEB zbgBRJ(%RXqU!0j=nOSJ`&n{hBynW9?E*b8WPLd`ePw-xiZ?DUEw9G(M)EW- z-B{^gU0Yf<{c`*?WR|C{xw^2rFui(KHtns=s1#$T7p51_MNcm+%<{E#E-qi^r&rD; zPp?eRoNKJfMNU|5(26UG(<}3hGc(hx4N6PXvy|2>N|#m}E0NRdbMcw!g~sCS^om1a zp?`i6T0g%y=Wi{oug%drbFN(9zuH(_ou}s-iJ7yFnRES|AJZj&dtrWcEyec5m8C`9 zf}0!CdQNymx11er(Lyt4SC-B<`ezoFRvYPHTNeTzS5xeRvJz) zF3!v^EHq}lV2f37uF>!BOKsm5Zs_(6&-VNC_Otaq)4xBPO zr{@qT`SWJ`fzJ~k;YhBxY(GLYvmf3-{tAm)qXwC8p&{z zu_33(A?mPvIXSb^nB~Q0c(3RzLoOj-`ZeRT(`(bGWzftv7$ov~>9DlcubXG{$XeY$ zvNf6eVK2Bbb)H`6Uthe~SeZXF-Hbx5vyyB<^I!LxP2Rvz7)Ke zJ`N?>et3z;+u<{pmSeie!&c8h6gMXiuXAyJhFbC(E7ScK=Vu#Byw0|L;nw-3)AI`r zdv^ZJnSK_M#%xL#=jRro67-4eXL{*j=pR~XoTn1Oc`J=Y9>FBwJWE<$W`xWQN4}Vv z3)7c*gE%C3etC6%HPtx3ymq<&()=PTN>bBVziVTnMPw)S}_SJqNC>*r&lf~bXn+ytxME#embs;%d=-(U07W| z&6}++G>ZP_<@1b?bI^?y#?I2p6J!8%5?i&qa>x}brz?U#)Wl;w!c)&zQlgmiM2-Yj`L@QV7A|} zdv2+JZK;3e?DXPXW3_U};l;+K@L=Y}2OV~tT|cc~erZu&L2oUrrGw(UP(8?j>2Js8 z7M4yoZ2yVU;MUyA^y$+~0)Cgz_R9(x7Mb6Uzn5{iMyJH|7FV#|G*+^6D@*H4xXU!h znf|rQ%Z=1o+LhU^yDp|Ttg|#QogY2R(waWIv@(AM5(G6~VW7mQ>(W|me)06uQzk>0 zB_le&cxH(*Ou?GP&oW~tIlsCJ$wacejW2H@+Ut+({-~|U} zsC%uy0-ygnDxKH0rP7W(~+kvnuP}{ZjRqidV1s$@2S(aT8Uib9+0t0b< zZRyPXQ;E$zj-~=aZdO=@qq3D04o!v$`#4d`3)5>UU0PaUE=x1|6LW$7he-Knt*tZ~ z{(*JKsXotMfDP2}XQNWG z&rdH0LpDM&E?lgz=ZW);IcCJtV#5+%hWkaOPh*-CB+d)1TH~O3eqOlS)Om<1V?{G9 zQK9IW^Xm(1^UIJ>pE|Eb&#$jF;xd_K-r2gK$&p1-7E^n1sXr)27njx=S@{yix_=Ea zPYZE%uqVC*Nj)VN25}~tu<&~u;>DL&vbhQ!Jq?G23U0CPsk}Gtg(8EiN z4LV78|7wyogdXo_76VA?mwn#Y--t3~mTc${V`p)uv1(DIE@xvajk(5CX<1{D@>u#{ zZyPJ7zpZ~R^27#j!0HZ1#C5vNb;}Evx#2Q&d4X=`78FrZao+O!>RGu+Z=Y+-QccRT zFodPmvs7q#i3iA9%eBFB;Zt~Xg~8ZZ%dIReG4lPz%O_{aZMz~XaK|g_r!Obqr~0Q) zGo&nClE<(IF>L9QEhW9wuf|uWX<>N>zpxsW-{dMw8zbZlwR3_pa|iA(wFdD$OIKccuaHpJ}+OOY73Y!VRu0@g^+5=N1~7)#U}2 z-mTTc^>>8CJ>`Y%Y$5PN3AnlsQ= zrdg50^J!tO;KAVu^ed;VT@I@&3-wBPv(-ge`q#p0tgfxl=i#l`TAx`%%Mjk`;`GY= z^y!5Lw_2R(4|w3HY{U@i78;SY={b`gn`^Aa*QQs`3C&NS=xrczEH@k~g$4j#0r~H2 zYIAGm{A_x2gOzT6dePn7hK{a3*3mI8G3%k5^x3%-@Pi@^`{WOZ8^>}y%kADh= z5Q*PjJIl=B*(<9Q*Uz6`l~p0`7uT0#YmAlE*xCwpb7%&5w?HqnwI!>#yLn76vB}NN z^<``A(!8)$IpLl9nJ6%F9VU-qUz4gUA7%>j%1#f*()*O3F z0CmGI>DSk!nL%0<2^PS3xGe=O93(ED4|yd@fgos8WD@H&iy|~=kzrt5JRiM;lwn<( zUXktCrRlYqv-YL4^K1Tyq{#H@mvLc8vy{&1aof)*LQN~_QRZ%G=pJ^%m! literal 0 HcmV?d00001 diff --git a/packages/ide/example/assets/css.worker-bb872bbe.js b/packages/ide/example/assets/css.worker-bb872bbe.js new file mode 100644 index 000000000..b82a038d4 --- /dev/null +++ b/packages/ide/example/assets/css.worker-bb872bbe.js @@ -0,0 +1,86 @@ +var Bp=Object.defineProperty;var Ql=Object.getOwnPropertySymbols;var qp=Object.prototype.hasOwnProperty,$p=Object.prototype.propertyIsEnumerable;var is=(Me,ye,he)=>ye in Me?Bp(Me,ye,{enumerable:!0,configurable:!0,writable:!0,value:he}):Me[ye]=he,ss=(Me,ye)=>{for(var he in ye||(ye={}))qp.call(ye,he)&&is(Me,he,ye[he]);if(Ql)for(var he of Ql(ye))$p.call(ye,he)&&is(Me,he,ye[he]);return Me};var zn=(Me,ye,he)=>(is(Me,typeof ye!="symbol"?ye+"":ye,he),he);var Fe=(Me,ye,he)=>new Promise((Ln,It)=>{var wr=De=>{try{Qe(he.next(De))}catch(tn){It(tn)}},xr=De=>{try{Qe(he.throw(De))}catch(tn){It(tn)}},Qe=De=>De.done?Ln(De.value):Promise.resolve(De.value).then(wr,xr);Qe((he=he.apply(Me,ye)).next())});(function(){"use strict";class Me{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?Qe.isErrorNoTelemetry(e)?new Qe(e.message+` + +`+e.stack):new Error(e.message+` + +`+e.stack):e},0)}}emit(e){this.listeners.forEach(n=>{n(e)})}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}}const ye=new Me;function he(t){wr(t)||ye.onUnexpectedError(t)}function Ln(t){if(t instanceof Error){const{name:e,message:n}=t,r=t.stacktrace||t.stack;return{$isError:!0,name:e,message:n,stack:r,noTelemetry:Qe.isErrorNoTelemetry(t)}}return t}const It="Canceled";function wr(t){return t instanceof xr?!0:t instanceof Error&&t.name===It&&t.message===It}class xr extends Error{constructor(){super(It),this.name=this.message}}class Qe extends Error{constructor(e){super(e),this.name="CodeExpectedError"}static fromError(e){if(e instanceof Qe)return e;const n=new Qe;return n.message=e.message,n.stack=e.stack,n}static isErrorNoTelemetry(e){return e.name==="CodeExpectedError"}}class De extends Error{constructor(e){super(e||"An unexpected bug occurred."),Object.setPrototypeOf(this,De.prototype)}}function tn(t){const e=this;let n=!1,r;return function(){return n||(n=!0,r=t.apply(e,arguments)),r}}var Tn;(function(t){function e(w){return w&&typeof w=="object"&&typeof w[Symbol.iterator]=="function"}t.is=e;const n=Object.freeze([]);function r(){return n}t.empty=r;function*i(w){yield w}t.single=i;function s(w){return e(w)?w:i(w)}t.wrap=s;function a(w){return w||n}t.from=a;function o(w){return!w||w[Symbol.iterator]().next().done===!0}t.isEmpty=o;function l(w){return w[Symbol.iterator]().next().value}t.first=l;function c(w,S){for(const C of w)if(S(C))return!0;return!1}t.some=c;function h(w,S){for(const C of w)if(S(C))return C}t.find=h;function*u(w,S){for(const C of w)S(C)&&(yield C)}t.filter=u;function*f(w,S){let C=0;for(const I of w)yield S(I,C++)}t.map=f;function*m(...w){for(const S of w)for(const C of S)yield C}t.concat=m;function g(w,S,C){let I=C;for(const M of w)I=S(I,M);return I}t.reduce=g;function*v(w,S,C=w.length){for(S<0&&(S+=w.length),C<0?C+=w.length:C>w.length&&(C=w.length);S1)throw new AggregateError(e,"Encountered errors while disposing of store");return Array.isArray(t)?[]:t}else if(t)return t.dispose(),t}function Zl(...t){return nn(()=>os(t))}function nn(t){return{dispose:tn(()=>{t()})}}class kt{constructor(){this._toDispose=new Set,this._isDisposed=!1}dispose(){this._isDisposed||(this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(this._toDispose.size!==0)try{os(this._toDispose)}finally{this._toDispose.clear()}}add(e){if(!e)return e;if(e===this)throw new Error("Cannot register a disposable on itself!");return this._isDisposed?kt.DISABLE_DISPOSED_WARNING||console.warn(new Error("Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!").stack):this._toDispose.add(e),e}}kt.DISABLE_DISPOSED_WARNING=!1;class rn{constructor(){this._store=new kt,this._store}dispose(){this._store.dispose()}_register(e){if(e===this)throw new Error("Cannot register a disposable on itself!");return this._store.add(e)}}rn.None=Object.freeze({dispose(){}});let ae=class as{constructor(e){this.element=e,this.next=as.Undefined,this.prev=as.Undefined}};ae.Undefined=new ae(void 0);class ec{constructor(){this._first=ae.Undefined,this._last=ae.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===ae.Undefined}clear(){let e=this._first;for(;e!==ae.Undefined;){const n=e.next;e.prev=ae.Undefined,e.next=ae.Undefined,e=n}this._first=ae.Undefined,this._last=ae.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,n){const r=new ae(e);if(this._first===ae.Undefined)this._first=r,this._last=r;else if(n){const s=this._last;this._last=r,r.prev=s,s.next=r}else{const s=this._first;this._first=r,r.next=s,s.prev=r}this._size+=1;let i=!1;return()=>{i||(i=!0,this._remove(r))}}shift(){if(this._first!==ae.Undefined){const e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==ae.Undefined){const e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==ae.Undefined&&e.next!==ae.Undefined){const n=e.prev;n.next=e.next,e.next.prev=n}else e.prev===ae.Undefined&&e.next===ae.Undefined?(this._first=ae.Undefined,this._last=ae.Undefined):e.next===ae.Undefined?(this._last=this._last.prev,this._last.next=ae.Undefined):e.prev===ae.Undefined&&(this._first=this._first.next,this._first.prev=ae.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==ae.Undefined;)yield e.element,e=e.next}}const tc=globalThis.performance&&typeof globalThis.performance.now=="function";class On{static create(e){return new On(e)}constructor(e){this._now=tc&&e===!1?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}elapsed(){return this._stopTime!==-1?this._stopTime-this._startTime:this._now()-this._startTime}}var Sr;(function(t){t.None=()=>rn.None;function e(N,F){return h(N,()=>{},0,void 0,!0,void 0,F)}t.defer=e;function n(N){return(F,R=null,E)=>{let L=!1,B;return B=N(K=>{if(!L)return B?B.dispose():L=!0,F.call(R,K)},null,E),L&&B.dispose(),B}}t.once=n;function r(N,F,R){return c((E,L=null,B)=>N(K=>E.call(L,F(K)),null,B),R)}t.map=r;function i(N,F,R){return c((E,L=null,B)=>N(K=>{F(K),E.call(L,K)},null,B),R)}t.forEach=i;function s(N,F,R){return c((E,L=null,B)=>N(K=>F(K)&&E.call(L,K),null,B),R)}t.filter=s;function a(N){return N}t.signal=a;function o(...N){return(F,R=null,E)=>Zl(...N.map(L=>L(B=>F.call(R,B),null,E)))}t.any=o;function l(N,F,R,E){let L=R;return r(N,B=>(L=F(L,B),L),E)}t.reduce=l;function c(N,F){let R;const E={onWillAddFirstListener(){R=N(L.fire,L)},onDidRemoveLastListener(){R==null||R.dispose()}},L=new Ze(E);return F==null||F.add(L),L.event}function h(N,F,R=100,E=!1,L=!1,B,K){let se,D,_,A=0,z;const X={leakWarningThreshold:B,onWillAddFirstListener(){se=N(ee=>{A++,D=F(D,ee),E&&!_&&(G.fire(D),D=void 0),z=()=>{const $e=D;D=void 0,_=void 0,(!E||A>1)&&G.fire($e),A=0},typeof R=="number"?(clearTimeout(_),_=setTimeout(z,R)):_===void 0&&(_=0,queueMicrotask(z))})},onWillRemoveListener(){L&&A>0&&(z==null||z())},onDidRemoveLastListener(){z=void 0,se.dispose()}},G=new Ze(X);return K==null||K.add(G),G.event}t.debounce=h;function u(N,F=0,R){return t.debounce(N,(E,L)=>E?(E.push(L),E):[L],F,void 0,!0,void 0,R)}t.accumulate=u;function f(N,F=(E,L)=>E===L,R){let E=!0,L;return s(N,B=>{const K=E||!F(B,L);return E=!1,L=B,K},R)}t.latch=f;function m(N,F,R){return[t.filter(N,F,R),t.filter(N,E=>!F(E),R)]}t.split=m;function g(N,F=!1,R=[]){let E=R.slice(),L=N(se=>{E?E.push(se):K.fire(se)});const B=()=>{E==null||E.forEach(se=>K.fire(se)),E=null},K=new Ze({onWillAddFirstListener(){L||(L=N(se=>K.fire(se)))},onDidAddFirstListener(){E&&(F?setTimeout(B):B())},onDidRemoveLastListener(){L&&L.dispose(),L=null}});return K.event}t.buffer=g;class v{constructor(F){this.event=F,this.disposables=new kt}map(F){return new v(r(this.event,F,this.disposables))}forEach(F){return new v(i(this.event,F,this.disposables))}filter(F){return new v(s(this.event,F,this.disposables))}reduce(F,R){return new v(l(this.event,F,R,this.disposables))}latch(){return new v(f(this.event,void 0,this.disposables))}debounce(F,R=100,E=!1,L=!1,B){return new v(h(this.event,F,R,E,L,B,this.disposables))}on(F,R,E){return this.event(F,R,E)}once(F,R,E){return n(this.event)(F,R,E)}dispose(){this.disposables.dispose()}}function y(N){return new v(N)}t.chain=y;function w(N,F,R=E=>E){const E=(...se)=>K.fire(R(...se)),L=()=>N.on(F,E),B=()=>N.removeListener(F,E),K=new Ze({onWillAddFirstListener:L,onDidRemoveLastListener:B});return K.event}t.fromNodeEventEmitter=w;function S(N,F,R=E=>E){const E=(...se)=>K.fire(R(...se)),L=()=>N.addEventListener(F,E),B=()=>N.removeEventListener(F,E),K=new Ze({onWillAddFirstListener:L,onDidRemoveLastListener:B});return K.event}t.fromDOMEventEmitter=S;function C(N){return new Promise(F=>n(N)(F))}t.toPromise=C;function I(N,F){return F(void 0),N(R=>F(R))}t.runAndSubscribe=I;function M(N,F){let R=null;function E(B){R==null||R.dispose(),R=new kt,F(B,R)}E(void 0);const L=N(B=>E(B));return nn(()=>{L.dispose(),R==null||R.dispose()})}t.runAndSubscribeWithStore=M;class U{constructor(F,R){this._observable=F,this._counter=0,this._hasChanged=!1;const E={onWillAddFirstListener:()=>{F.addObserver(this)},onDidRemoveLastListener:()=>{F.removeObserver(this)}};this.emitter=new Ze(E),R&&R.add(this.emitter)}beginUpdate(F){this._counter++}handlePossibleChange(F){}handleChange(F,R){this._hasChanged=!0}endUpdate(F){this._counter--,this._counter===0&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}function q(N,F){return new U(N,F).emitter.event}t.fromObservable=q;function W(N){return F=>{let R=0,E=!1;const L={beginUpdate(){R++},endUpdate(){R--,R===0&&(N.reportChanges(),E&&(E=!1,F()))},handlePossibleChange(){},handleChange(){E=!0}};return N.addObserver(L),{dispose(){N.removeObserver(L)}}}}t.fromObservableLight=W})(Sr||(Sr={}));class zt{constructor(e){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${e}_${zt._idPool++}`,zt.all.add(this)}start(e){this._stopWatch=new On,this.listenerCount=e}stop(){if(this._stopWatch){const e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}}zt.all=new Set,zt._idPool=0;let nc=-1;class rc{constructor(e,n=Math.random().toString(18).slice(2,5)){this.threshold=e,this.name=n,this._warnCountdown=0}dispose(){var e;(e=this._stacks)===null||e===void 0||e.clear()}check(e,n){const r=this.threshold;if(r<=0||n{const s=this._stacks.get(e.value)||0;this._stacks.set(e.value,s-1)}}}class _r{static create(){var e;return new _r((e=new Error().stack)!==null&&e!==void 0?e:"")}constructor(e){this.value=e}print(){console.warn(this.value.split(` +`).slice(2).join(` +`))}}class Cr{constructor(e){this.value=e}}const ic=2;class Ze{constructor(e){var n,r,i,s,a;this._size=0,this._options=e,this._leakageMon=!((n=this._options)===null||n===void 0)&&n.leakWarningThreshold?new rc((i=(r=this._options)===null||r===void 0?void 0:r.leakWarningThreshold)!==null&&i!==void 0?i:nc):void 0,this._perfMon=!((s=this._options)===null||s===void 0)&&s._profName?new zt(this._options._profName):void 0,this._deliveryQueue=(a=this._options)===null||a===void 0?void 0:a.deliveryQueue}dispose(){var e,n,r,i;this._disposed||(this._disposed=!0,((e=this._deliveryQueue)===null||e===void 0?void 0:e.current)===this&&this._deliveryQueue.reset(),this._listeners&&(this._listeners=void 0,this._size=0),(r=(n=this._options)===null||n===void 0?void 0:n.onDidRemoveLastListener)===null||r===void 0||r.call(n),(i=this._leakageMon)===null||i===void 0||i.dispose())}get event(){var e;return(e=this._event)!==null&&e!==void 0||(this._event=(n,r,i)=>{var s,a,o,l,c;if(this._leakageMon&&this._size>this._leakageMon.threshold*3)return console.warn(`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far`),rn.None;if(this._disposed)return rn.None;r&&(n=n.bind(r));const h=new Cr(n);let u;this._leakageMon&&this._size>=Math.ceil(this._leakageMon.threshold*.2)&&(h.stack=_r.create(),u=this._leakageMon.check(h.stack,this._size+1)),this._listeners?this._listeners instanceof Cr?((c=this._deliveryQueue)!==null&&c!==void 0||(this._deliveryQueue=new sc),this._listeners=[this._listeners,h]):this._listeners.push(h):((a=(s=this._options)===null||s===void 0?void 0:s.onWillAddFirstListener)===null||a===void 0||a.call(s,this),this._listeners=h,(l=(o=this._options)===null||o===void 0?void 0:o.onDidAddFirstListener)===null||l===void 0||l.call(o,this)),this._size++;const f=nn(()=>{u==null||u(),this._removeListener(h)});return i instanceof kt?i.add(f):Array.isArray(i)&&i.push(f),f}),this._event}_removeListener(e){var n,r,i,s;if((r=(n=this._options)===null||n===void 0?void 0:n.onWillRemoveListener)===null||r===void 0||r.call(n,this),!this._listeners)return;if(this._size===1){this._listeners=void 0,(s=(i=this._options)===null||i===void 0?void 0:i.onDidRemoveLastListener)===null||s===void 0||s.call(i,this),this._size=0;return}const a=this._listeners,o=a.indexOf(e);if(o===-1)throw console.log("disposed?",this._disposed),console.log("size?",this._size),console.log("arr?",JSON.stringify(this._listeners)),new Error("Attempted to dispose unknown listener");this._size--,a[o]=void 0;const l=this._deliveryQueue.current===this;if(this._size*ic<=a.length){let c=0;for(let h=0;h0}}class sc{constructor(){this.i=-1,this.end=0}enqueue(e,n,r){this.i=0,this.end=r,this.current=e,this.value=n}reset(){this.i=this.end,this.current=void 0,this.value=void 0}}function ac(t){return typeof t=="string"}function oc(t){let e=[],n=Object.getPrototypeOf(t);for(;Object.prototype!==n;)e=e.concat(Object.getOwnPropertyNames(n)),n=Object.getPrototypeOf(n);return e}function kr(t){const e=[];for(const n of oc(t))typeof t[n]=="function"&&e.push(n);return e}function lc(t,e){const n=i=>function(){const s=Array.prototype.slice.call(arguments,0);return e(i,s)},r={};for(const i of t)r[i]=n(i);return r}let cc=typeof document!="undefined"&&document.location&&document.location.hash.indexOf("pseudo=true")>=0;function hc(t,e){let n;return e.length===0?n=t:n=t.replace(/\{(\d+)\}/g,(r,i)=>{const s=i[0],a=e[s];let o=r;return typeof a=="string"?o=a:(typeof a=="number"||typeof a=="boolean"||a===void 0||a===null)&&(o=String(a)),o}),cc&&(n="["+n.replace(/[aouei]/g,"$&$&")+"]"),n}function dc(t,e,...n){return hc(e,n)}function Jp(t){}var Er;const Lt="en";let Rr=!1,Fr=!1,Dr=!1,ls=!1,Wn,Ar=Lt,cs=Lt,uc,Ge;const Je=typeof self=="object"?self:typeof global=="object"?global:{};let xe;typeof Je.vscode!="undefined"&&typeof Je.vscode.process!="undefined"?xe=Je.vscode.process:typeof process!="undefined"&&(xe=process);const pc=typeof((Er=xe==null?void 0:xe.versions)===null||Er===void 0?void 0:Er.electron)=="string"&&(xe==null?void 0:xe.type)==="renderer";if(typeof navigator=="object"&&!pc)Ge=navigator.userAgent,Rr=Ge.indexOf("Windows")>=0,Fr=Ge.indexOf("Macintosh")>=0,(Ge.indexOf("Macintosh")>=0||Ge.indexOf("iPad")>=0||Ge.indexOf("iPhone")>=0)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>0,Dr=Ge.indexOf("Linux")>=0,(Ge==null?void 0:Ge.indexOf("Mobi"))>=0,ls=!0,dc({key:"ensureLoaderPluginIsLoaded",comment:["{Locked}"]},"_"),Wn=Lt,Ar=Wn,cs=navigator.language;else if(typeof xe=="object"){Rr=xe.platform==="win32",Fr=xe.platform==="darwin",Dr=xe.platform==="linux",Dr&&xe.env.SNAP&&xe.env.SNAP_REVISION,xe.env.CI||xe.env.BUILD_ARTIFACTSTAGINGDIRECTORY,Wn=Lt,Ar=Lt;const t=xe.env.VSCODE_NLS_CONFIG;if(t)try{const e=JSON.parse(t),n=e.availableLanguages["*"];Wn=e.locale,cs=e.osLocale,Ar=n||Lt,uc=e._translationsConfigFile}catch(e){}}else console.error("Unable to resolve platform.");const sn=Rr,mc=Fr;ls&&Je.importScripts;const et=Ge,fc=typeof Je.postMessage=="function"&&!Je.importScripts;(()=>{if(fc){const t=[];Je.addEventListener("message",n=>{if(n.data&&n.data.vscodeScheduleAsyncWork)for(let r=0,i=t.length;r{const r=++e;t.push({id:r,callback:n}),Je.postMessage({vscodeScheduleAsyncWork:r},"*")}}return t=>setTimeout(t)})();const gc=!!(et&&et.indexOf("Chrome")>=0);et&&et.indexOf("Firefox")>=0,!gc&&et&&et.indexOf("Safari")>=0,et&&et.indexOf("Edg/")>=0,et&&et.indexOf("Android")>=0;class bc{constructor(e){this.fn=e,this.lastCache=void 0,this.lastArgKey=void 0}get(e){const n=JSON.stringify(e);return this.lastArgKey!==n&&(this.lastArgKey=n,this.lastCache=this.fn(e)),this.lastCache}}class hs{constructor(e){this.executor=e,this._didRun=!1}get value(){if(!this._didRun)try{this._value=this.executor()}catch(e){this._error=e}finally{this._didRun=!0}if(this._error)throw this._error;return this._value}get rawValue(){return this._value}}var ds;function vc(t){return t.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g,"\\$&")}function yc(t){return t.split(/\r\n|\r|\n/)}function wc(t){for(let e=0,n=t.length;e=0;n--){const r=t.charCodeAt(n);if(r!==32&&r!==9)return n}return-1}function us(t){return t>=65&&t<=90}function Pr(t){return 55296<=t&&t<=56319}function Sc(t){return 56320<=t&&t<=57343}function _c(t,e){return(t-55296<<10)+(e-56320)+65536}function Cc(t,e,n){const r=t.charCodeAt(n);if(Pr(r)&&n+1JSON.parse('{"_common":[8232,32,8233,32,5760,32,8192,32,8193,32,8194,32,8195,32,8196,32,8197,32,8198,32,8200,32,8201,32,8202,32,8287,32,8199,32,8239,32,2042,95,65101,95,65102,95,65103,95,8208,45,8209,45,8210,45,65112,45,1748,45,8259,45,727,45,8722,45,10134,45,11450,45,1549,44,1643,44,8218,44,184,44,42233,44,894,59,2307,58,2691,58,1417,58,1795,58,1796,58,5868,58,65072,58,6147,58,6153,58,8282,58,1475,58,760,58,42889,58,8758,58,720,58,42237,58,451,33,11601,33,660,63,577,63,2429,63,5038,63,42731,63,119149,46,8228,46,1793,46,1794,46,42510,46,68176,46,1632,46,1776,46,42232,46,1373,96,65287,96,8219,96,8242,96,1370,96,1523,96,8175,96,65344,96,900,96,8189,96,8125,96,8127,96,8190,96,697,96,884,96,712,96,714,96,715,96,756,96,699,96,701,96,700,96,702,96,42892,96,1497,96,2036,96,2037,96,5194,96,5836,96,94033,96,94034,96,65339,91,10088,40,10098,40,12308,40,64830,40,65341,93,10089,41,10099,41,12309,41,64831,41,10100,123,119060,123,10101,125,65342,94,8270,42,1645,42,8727,42,66335,42,5941,47,8257,47,8725,47,8260,47,9585,47,10187,47,10744,47,119354,47,12755,47,12339,47,11462,47,20031,47,12035,47,65340,92,65128,92,8726,92,10189,92,10741,92,10745,92,119311,92,119355,92,12756,92,20022,92,12034,92,42872,38,708,94,710,94,5869,43,10133,43,66203,43,8249,60,10094,60,706,60,119350,60,5176,60,5810,60,5120,61,11840,61,12448,61,42239,61,8250,62,10095,62,707,62,119351,62,5171,62,94015,62,8275,126,732,126,8128,126,8764,126,65372,124,65293,45,120784,50,120794,50,120804,50,120814,50,120824,50,130034,50,42842,50,423,50,1000,50,42564,50,5311,50,42735,50,119302,51,120785,51,120795,51,120805,51,120815,51,120825,51,130035,51,42923,51,540,51,439,51,42858,51,11468,51,1248,51,94011,51,71882,51,120786,52,120796,52,120806,52,120816,52,120826,52,130036,52,5070,52,71855,52,120787,53,120797,53,120807,53,120817,53,120827,53,130037,53,444,53,71867,53,120788,54,120798,54,120808,54,120818,54,120828,54,130038,54,11474,54,5102,54,71893,54,119314,55,120789,55,120799,55,120809,55,120819,55,120829,55,130039,55,66770,55,71878,55,2819,56,2538,56,2666,56,125131,56,120790,56,120800,56,120810,56,120820,56,120830,56,130040,56,547,56,546,56,66330,56,2663,57,2920,57,2541,57,3437,57,120791,57,120801,57,120811,57,120821,57,120831,57,130041,57,42862,57,11466,57,71884,57,71852,57,71894,57,9082,97,65345,97,119834,97,119886,97,119938,97,119990,97,120042,97,120094,97,120146,97,120198,97,120250,97,120302,97,120354,97,120406,97,120458,97,593,97,945,97,120514,97,120572,97,120630,97,120688,97,120746,97,65313,65,119808,65,119860,65,119912,65,119964,65,120016,65,120068,65,120120,65,120172,65,120224,65,120276,65,120328,65,120380,65,120432,65,913,65,120488,65,120546,65,120604,65,120662,65,120720,65,5034,65,5573,65,42222,65,94016,65,66208,65,119835,98,119887,98,119939,98,119991,98,120043,98,120095,98,120147,98,120199,98,120251,98,120303,98,120355,98,120407,98,120459,98,388,98,5071,98,5234,98,5551,98,65314,66,8492,66,119809,66,119861,66,119913,66,120017,66,120069,66,120121,66,120173,66,120225,66,120277,66,120329,66,120381,66,120433,66,42932,66,914,66,120489,66,120547,66,120605,66,120663,66,120721,66,5108,66,5623,66,42192,66,66178,66,66209,66,66305,66,65347,99,8573,99,119836,99,119888,99,119940,99,119992,99,120044,99,120096,99,120148,99,120200,99,120252,99,120304,99,120356,99,120408,99,120460,99,7428,99,1010,99,11429,99,43951,99,66621,99,128844,67,71922,67,71913,67,65315,67,8557,67,8450,67,8493,67,119810,67,119862,67,119914,67,119966,67,120018,67,120174,67,120226,67,120278,67,120330,67,120382,67,120434,67,1017,67,11428,67,5087,67,42202,67,66210,67,66306,67,66581,67,66844,67,8574,100,8518,100,119837,100,119889,100,119941,100,119993,100,120045,100,120097,100,120149,100,120201,100,120253,100,120305,100,120357,100,120409,100,120461,100,1281,100,5095,100,5231,100,42194,100,8558,68,8517,68,119811,68,119863,68,119915,68,119967,68,120019,68,120071,68,120123,68,120175,68,120227,68,120279,68,120331,68,120383,68,120435,68,5024,68,5598,68,5610,68,42195,68,8494,101,65349,101,8495,101,8519,101,119838,101,119890,101,119942,101,120046,101,120098,101,120150,101,120202,101,120254,101,120306,101,120358,101,120410,101,120462,101,43826,101,1213,101,8959,69,65317,69,8496,69,119812,69,119864,69,119916,69,120020,69,120072,69,120124,69,120176,69,120228,69,120280,69,120332,69,120384,69,120436,69,917,69,120492,69,120550,69,120608,69,120666,69,120724,69,11577,69,5036,69,42224,69,71846,69,71854,69,66182,69,119839,102,119891,102,119943,102,119995,102,120047,102,120099,102,120151,102,120203,102,120255,102,120307,102,120359,102,120411,102,120463,102,43829,102,42905,102,383,102,7837,102,1412,102,119315,70,8497,70,119813,70,119865,70,119917,70,120021,70,120073,70,120125,70,120177,70,120229,70,120281,70,120333,70,120385,70,120437,70,42904,70,988,70,120778,70,5556,70,42205,70,71874,70,71842,70,66183,70,66213,70,66853,70,65351,103,8458,103,119840,103,119892,103,119944,103,120048,103,120100,103,120152,103,120204,103,120256,103,120308,103,120360,103,120412,103,120464,103,609,103,7555,103,397,103,1409,103,119814,71,119866,71,119918,71,119970,71,120022,71,120074,71,120126,71,120178,71,120230,71,120282,71,120334,71,120386,71,120438,71,1292,71,5056,71,5107,71,42198,71,65352,104,8462,104,119841,104,119945,104,119997,104,120049,104,120101,104,120153,104,120205,104,120257,104,120309,104,120361,104,120413,104,120465,104,1211,104,1392,104,5058,104,65320,72,8459,72,8460,72,8461,72,119815,72,119867,72,119919,72,120023,72,120179,72,120231,72,120283,72,120335,72,120387,72,120439,72,919,72,120494,72,120552,72,120610,72,120668,72,120726,72,11406,72,5051,72,5500,72,42215,72,66255,72,731,105,9075,105,65353,105,8560,105,8505,105,8520,105,119842,105,119894,105,119946,105,119998,105,120050,105,120102,105,120154,105,120206,105,120258,105,120310,105,120362,105,120414,105,120466,105,120484,105,618,105,617,105,953,105,8126,105,890,105,120522,105,120580,105,120638,105,120696,105,120754,105,1110,105,42567,105,1231,105,43893,105,5029,105,71875,105,65354,106,8521,106,119843,106,119895,106,119947,106,119999,106,120051,106,120103,106,120155,106,120207,106,120259,106,120311,106,120363,106,120415,106,120467,106,1011,106,1112,106,65322,74,119817,74,119869,74,119921,74,119973,74,120025,74,120077,74,120129,74,120181,74,120233,74,120285,74,120337,74,120389,74,120441,74,42930,74,895,74,1032,74,5035,74,5261,74,42201,74,119844,107,119896,107,119948,107,120000,107,120052,107,120104,107,120156,107,120208,107,120260,107,120312,107,120364,107,120416,107,120468,107,8490,75,65323,75,119818,75,119870,75,119922,75,119974,75,120026,75,120078,75,120130,75,120182,75,120234,75,120286,75,120338,75,120390,75,120442,75,922,75,120497,75,120555,75,120613,75,120671,75,120729,75,11412,75,5094,75,5845,75,42199,75,66840,75,1472,108,8739,73,9213,73,65512,73,1633,108,1777,73,66336,108,125127,108,120783,73,120793,73,120803,73,120813,73,120823,73,130033,73,65321,73,8544,73,8464,73,8465,73,119816,73,119868,73,119920,73,120024,73,120128,73,120180,73,120232,73,120284,73,120336,73,120388,73,120440,73,65356,108,8572,73,8467,108,119845,108,119897,108,119949,108,120001,108,120053,108,120105,73,120157,73,120209,73,120261,73,120313,73,120365,73,120417,73,120469,73,448,73,120496,73,120554,73,120612,73,120670,73,120728,73,11410,73,1030,73,1216,73,1493,108,1503,108,1575,108,126464,108,126592,108,65166,108,65165,108,1994,108,11599,73,5825,73,42226,73,93992,73,66186,124,66313,124,119338,76,8556,76,8466,76,119819,76,119871,76,119923,76,120027,76,120079,76,120131,76,120183,76,120235,76,120287,76,120339,76,120391,76,120443,76,11472,76,5086,76,5290,76,42209,76,93974,76,71843,76,71858,76,66587,76,66854,76,65325,77,8559,77,8499,77,119820,77,119872,77,119924,77,120028,77,120080,77,120132,77,120184,77,120236,77,120288,77,120340,77,120392,77,120444,77,924,77,120499,77,120557,77,120615,77,120673,77,120731,77,1018,77,11416,77,5047,77,5616,77,5846,77,42207,77,66224,77,66321,77,119847,110,119899,110,119951,110,120003,110,120055,110,120107,110,120159,110,120211,110,120263,110,120315,110,120367,110,120419,110,120471,110,1400,110,1404,110,65326,78,8469,78,119821,78,119873,78,119925,78,119977,78,120029,78,120081,78,120185,78,120237,78,120289,78,120341,78,120393,78,120445,78,925,78,120500,78,120558,78,120616,78,120674,78,120732,78,11418,78,42208,78,66835,78,3074,111,3202,111,3330,111,3458,111,2406,111,2662,111,2790,111,3046,111,3174,111,3302,111,3430,111,3664,111,3792,111,4160,111,1637,111,1781,111,65359,111,8500,111,119848,111,119900,111,119952,111,120056,111,120108,111,120160,111,120212,111,120264,111,120316,111,120368,111,120420,111,120472,111,7439,111,7441,111,43837,111,959,111,120528,111,120586,111,120644,111,120702,111,120760,111,963,111,120532,111,120590,111,120648,111,120706,111,120764,111,11423,111,4351,111,1413,111,1505,111,1607,111,126500,111,126564,111,126596,111,65259,111,65260,111,65258,111,65257,111,1726,111,64428,111,64429,111,64427,111,64426,111,1729,111,64424,111,64425,111,64423,111,64422,111,1749,111,3360,111,4125,111,66794,111,71880,111,71895,111,66604,111,1984,79,2534,79,2918,79,12295,79,70864,79,71904,79,120782,79,120792,79,120802,79,120812,79,120822,79,130032,79,65327,79,119822,79,119874,79,119926,79,119978,79,120030,79,120082,79,120134,79,120186,79,120238,79,120290,79,120342,79,120394,79,120446,79,927,79,120502,79,120560,79,120618,79,120676,79,120734,79,11422,79,1365,79,11604,79,4816,79,2848,79,66754,79,42227,79,71861,79,66194,79,66219,79,66564,79,66838,79,9076,112,65360,112,119849,112,119901,112,119953,112,120005,112,120057,112,120109,112,120161,112,120213,112,120265,112,120317,112,120369,112,120421,112,120473,112,961,112,120530,112,120544,112,120588,112,120602,112,120646,112,120660,112,120704,112,120718,112,120762,112,120776,112,11427,112,65328,80,8473,80,119823,80,119875,80,119927,80,119979,80,120031,80,120083,80,120187,80,120239,80,120291,80,120343,80,120395,80,120447,80,929,80,120504,80,120562,80,120620,80,120678,80,120736,80,11426,80,5090,80,5229,80,42193,80,66197,80,119850,113,119902,113,119954,113,120006,113,120058,113,120110,113,120162,113,120214,113,120266,113,120318,113,120370,113,120422,113,120474,113,1307,113,1379,113,1382,113,8474,81,119824,81,119876,81,119928,81,119980,81,120032,81,120084,81,120188,81,120240,81,120292,81,120344,81,120396,81,120448,81,11605,81,119851,114,119903,114,119955,114,120007,114,120059,114,120111,114,120163,114,120215,114,120267,114,120319,114,120371,114,120423,114,120475,114,43847,114,43848,114,7462,114,11397,114,43905,114,119318,82,8475,82,8476,82,8477,82,119825,82,119877,82,119929,82,120033,82,120189,82,120241,82,120293,82,120345,82,120397,82,120449,82,422,82,5025,82,5074,82,66740,82,5511,82,42211,82,94005,82,65363,115,119852,115,119904,115,119956,115,120008,115,120060,115,120112,115,120164,115,120216,115,120268,115,120320,115,120372,115,120424,115,120476,115,42801,115,445,115,1109,115,43946,115,71873,115,66632,115,65331,83,119826,83,119878,83,119930,83,119982,83,120034,83,120086,83,120138,83,120190,83,120242,83,120294,83,120346,83,120398,83,120450,83,1029,83,1359,83,5077,83,5082,83,42210,83,94010,83,66198,83,66592,83,119853,116,119905,116,119957,116,120009,116,120061,116,120113,116,120165,116,120217,116,120269,116,120321,116,120373,116,120425,116,120477,116,8868,84,10201,84,128872,84,65332,84,119827,84,119879,84,119931,84,119983,84,120035,84,120087,84,120139,84,120191,84,120243,84,120295,84,120347,84,120399,84,120451,84,932,84,120507,84,120565,84,120623,84,120681,84,120739,84,11430,84,5026,84,42196,84,93962,84,71868,84,66199,84,66225,84,66325,84,119854,117,119906,117,119958,117,120010,117,120062,117,120114,117,120166,117,120218,117,120270,117,120322,117,120374,117,120426,117,120478,117,42911,117,7452,117,43854,117,43858,117,651,117,965,117,120534,117,120592,117,120650,117,120708,117,120766,117,1405,117,66806,117,71896,117,8746,85,8899,85,119828,85,119880,85,119932,85,119984,85,120036,85,120088,85,120140,85,120192,85,120244,85,120296,85,120348,85,120400,85,120452,85,1357,85,4608,85,66766,85,5196,85,42228,85,94018,85,71864,85,8744,118,8897,118,65366,118,8564,118,119855,118,119907,118,119959,118,120011,118,120063,118,120115,118,120167,118,120219,118,120271,118,120323,118,120375,118,120427,118,120479,118,7456,118,957,118,120526,118,120584,118,120642,118,120700,118,120758,118,1141,118,1496,118,71430,118,43945,118,71872,118,119309,86,1639,86,1783,86,8548,86,119829,86,119881,86,119933,86,119985,86,120037,86,120089,86,120141,86,120193,86,120245,86,120297,86,120349,86,120401,86,120453,86,1140,86,11576,86,5081,86,5167,86,42719,86,42214,86,93960,86,71840,86,66845,86,623,119,119856,119,119908,119,119960,119,120012,119,120064,119,120116,119,120168,119,120220,119,120272,119,120324,119,120376,119,120428,119,120480,119,7457,119,1121,119,1309,119,1377,119,71434,119,71438,119,71439,119,43907,119,71919,87,71910,87,119830,87,119882,87,119934,87,119986,87,120038,87,120090,87,120142,87,120194,87,120246,87,120298,87,120350,87,120402,87,120454,87,1308,87,5043,87,5076,87,42218,87,5742,120,10539,120,10540,120,10799,120,65368,120,8569,120,119857,120,119909,120,119961,120,120013,120,120065,120,120117,120,120169,120,120221,120,120273,120,120325,120,120377,120,120429,120,120481,120,5441,120,5501,120,5741,88,9587,88,66338,88,71916,88,65336,88,8553,88,119831,88,119883,88,119935,88,119987,88,120039,88,120091,88,120143,88,120195,88,120247,88,120299,88,120351,88,120403,88,120455,88,42931,88,935,88,120510,88,120568,88,120626,88,120684,88,120742,88,11436,88,11613,88,5815,88,42219,88,66192,88,66228,88,66327,88,66855,88,611,121,7564,121,65369,121,119858,121,119910,121,119962,121,120014,121,120066,121,120118,121,120170,121,120222,121,120274,121,120326,121,120378,121,120430,121,120482,121,655,121,7935,121,43866,121,947,121,8509,121,120516,121,120574,121,120632,121,120690,121,120748,121,1199,121,4327,121,71900,121,65337,89,119832,89,119884,89,119936,89,119988,89,120040,89,120092,89,120144,89,120196,89,120248,89,120300,89,120352,89,120404,89,120456,89,933,89,978,89,120508,89,120566,89,120624,89,120682,89,120740,89,11432,89,1198,89,5033,89,5053,89,42220,89,94019,89,71844,89,66226,89,119859,122,119911,122,119963,122,120015,122,120067,122,120119,122,120171,122,120223,122,120275,122,120327,122,120379,122,120431,122,120483,122,7458,122,43923,122,71876,122,66293,90,71909,90,65338,90,8484,90,8488,90,119833,90,119885,90,119937,90,119989,90,120041,90,120197,90,120249,90,120301,90,120353,90,120405,90,120457,90,918,90,120493,90,120551,90,120609,90,120667,90,120725,90,5059,90,42204,90,71849,90,65282,34,65284,36,65285,37,65286,38,65290,42,65291,43,65294,46,65295,47,65296,48,65297,49,65298,50,65299,51,65300,52,65301,53,65302,54,65303,55,65304,56,65305,57,65308,60,65309,61,65310,62,65312,64,65316,68,65318,70,65319,71,65324,76,65329,81,65330,82,65333,85,65334,86,65335,87,65343,95,65346,98,65348,100,65350,102,65355,107,65357,109,65358,110,65361,113,65362,114,65364,116,65365,117,65367,119,65370,122,65371,123,65373,125,119846,109],"_default":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"cs":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"de":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"es":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"fr":[65374,126,65306,58,65281,33,8216,96,8245,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"it":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ja":[8211,45,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65292,44,65307,59],"ko":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pl":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"pt-BR":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"qps-ploc":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"ru":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,305,105,921,73,1009,112,215,120,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"tr":[160,32,8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],"zh-hans":[65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65288,40,65289,41],"zh-hant":[8211,45,65374,126,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65307,59]}')),Oe.cache=new bc(t=>{function e(c){const h=new Map;for(let u=0;u!c.startsWith("_")&&c in i);s.length===0&&(s=["_default"]);let a;for(const c of s){const h=e(i[c]);a=r(a,h)}const o=e(i._common),l=n(o,a);return new Oe(l)}),Oe._locales=new hs(()=>Object.keys(Oe.ambiguousCharacterData.value).filter(t=>!t.startsWith("_")));class ut{static getRawData(){return JSON.parse("[9,10,11,12,13,32,127,160,173,847,1564,4447,4448,6068,6069,6155,6156,6157,6158,7355,7356,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8234,8235,8236,8237,8238,8239,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,10240,12288,12644,65024,65025,65026,65027,65028,65029,65030,65031,65032,65033,65034,65035,65036,65037,65038,65039,65279,65440,65520,65521,65522,65523,65524,65525,65526,65527,65528,65532,78844,119155,119156,119157,119158,119159,119160,119161,119162,917504,917505,917506,917507,917508,917509,917510,917511,917512,917513,917514,917515,917516,917517,917518,917519,917520,917521,917522,917523,917524,917525,917526,917527,917528,917529,917530,917531,917532,917533,917534,917535,917536,917537,917538,917539,917540,917541,917542,917543,917544,917545,917546,917547,917548,917549,917550,917551,917552,917553,917554,917555,917556,917557,917558,917559,917560,917561,917562,917563,917564,917565,917566,917567,917568,917569,917570,917571,917572,917573,917574,917575,917576,917577,917578,917579,917580,917581,917582,917583,917584,917585,917586,917587,917588,917589,917590,917591,917592,917593,917594,917595,917596,917597,917598,917599,917600,917601,917602,917603,917604,917605,917606,917607,917608,917609,917610,917611,917612,917613,917614,917615,917616,917617,917618,917619,917620,917621,917622,917623,917624,917625,917626,917627,917628,917629,917630,917631,917760,917761,917762,917763,917764,917765,917766,917767,917768,917769,917770,917771,917772,917773,917774,917775,917776,917777,917778,917779,917780,917781,917782,917783,917784,917785,917786,917787,917788,917789,917790,917791,917792,917793,917794,917795,917796,917797,917798,917799,917800,917801,917802,917803,917804,917805,917806,917807,917808,917809,917810,917811,917812,917813,917814,917815,917816,917817,917818,917819,917820,917821,917822,917823,917824,917825,917826,917827,917828,917829,917830,917831,917832,917833,917834,917835,917836,917837,917838,917839,917840,917841,917842,917843,917844,917845,917846,917847,917848,917849,917850,917851,917852,917853,917854,917855,917856,917857,917858,917859,917860,917861,917862,917863,917864,917865,917866,917867,917868,917869,917870,917871,917872,917873,917874,917875,917876,917877,917878,917879,917880,917881,917882,917883,917884,917885,917886,917887,917888,917889,917890,917891,917892,917893,917894,917895,917896,917897,917898,917899,917900,917901,917902,917903,917904,917905,917906,917907,917908,917909,917910,917911,917912,917913,917914,917915,917916,917917,917918,917919,917920,917921,917922,917923,917924,917925,917926,917927,917928,917929,917930,917931,917932,917933,917934,917935,917936,917937,917938,917939,917940,917941,917942,917943,917944,917945,917946,917947,917948,917949,917950,917951,917952,917953,917954,917955,917956,917957,917958,917959,917960,917961,917962,917963,917964,917965,917966,917967,917968,917969,917970,917971,917972,917973,917974,917975,917976,917977,917978,917979,917980,917981,917982,917983,917984,917985,917986,917987,917988,917989,917990,917991,917992,917993,917994,917995,917996,917997,917998,917999]")}static getData(){return this._data||(this._data=new Set(ut.getRawData())),this._data}static isInvisibleCharacter(e){return ut.getData().has(e)}static get codePoints(){return ut.getData()}}ut._data=void 0;const Rc="$initialize";class Fc{constructor(e,n,r,i){this.vsWorker=e,this.req=n,this.method=r,this.args=i,this.type=0}}class ps{constructor(e,n,r,i){this.vsWorker=e,this.seq=n,this.res=r,this.err=i,this.type=1}}class Dc{constructor(e,n,r,i){this.vsWorker=e,this.req=n,this.eventName=r,this.arg=i,this.type=2}}class Ac{constructor(e,n,r){this.vsWorker=e,this.req=n,this.event=r,this.type=3}}class Pc{constructor(e,n){this.vsWorker=e,this.req=n,this.type=4}}class Nc{constructor(e){this._workerId=-1,this._handler=e,this._lastSentReq=0,this._pendingReplies=Object.create(null),this._pendingEmitters=new Map,this._pendingEvents=new Map}setWorkerId(e){this._workerId=e}sendMessage(e,n){const r=String(++this._lastSentReq);return new Promise((i,s)=>{this._pendingReplies[r]={resolve:i,reject:s},this._send(new Fc(this._workerId,r,e,n))})}listen(e,n){let r=null;const i=new Ze({onWillAddFirstListener:()=>{r=String(++this._lastSentReq),this._pendingEmitters.set(r,i),this._send(new Dc(this._workerId,r,e,n))},onDidRemoveLastListener:()=>{this._pendingEmitters.delete(r),this._send(new Pc(this._workerId,r)),r=null}});return i.event}handleMessage(e){!e||!e.vsWorker||this._workerId!==-1&&e.vsWorker!==this._workerId||this._handleMessage(e)}_handleMessage(e){switch(e.type){case 1:return this._handleReplyMessage(e);case 0:return this._handleRequestMessage(e);case 2:return this._handleSubscribeEventMessage(e);case 3:return this._handleEventMessage(e);case 4:return this._handleUnsubscribeEventMessage(e)}}_handleReplyMessage(e){if(!this._pendingReplies[e.seq]){console.warn("Got reply to unknown seq");return}const n=this._pendingReplies[e.seq];if(delete this._pendingReplies[e.seq],e.err){let r=e.err;e.err.$isError&&(r=new Error,r.name=e.err.name,r.message=e.err.message,r.stack=e.err.stack),n.reject(r);return}n.resolve(e.res)}_handleRequestMessage(e){const n=e.req;this._handler.handleMessage(e.method,e.args).then(i=>{this._send(new ps(this._workerId,n,i,void 0))},i=>{i.detail instanceof Error&&(i.detail=Ln(i.detail)),this._send(new ps(this._workerId,n,void 0,Ln(i)))})}_handleSubscribeEventMessage(e){const n=e.req,r=this._handler.handleEvent(e.eventName,e.arg)(i=>{this._send(new Ac(this._workerId,n,i))});this._pendingEvents.set(n,r)}_handleEventMessage(e){if(!this._pendingEmitters.has(e.req)){console.warn("Got event for unknown req");return}this._pendingEmitters.get(e.req).fire(e.event)}_handleUnsubscribeEventMessage(e){if(!this._pendingEvents.has(e.req)){console.warn("Got unsubscribe for unknown req");return}this._pendingEvents.get(e.req).dispose(),this._pendingEvents.delete(e.req)}_send(e){const n=[];if(e.type===0)for(let r=0;rfunction(){const o=Array.prototype.slice.call(arguments,0);return e(a,o)},i=a=>function(o){return n(a,o)},s={};for(const a of t){if(fs(a)){s[a]=i(a);continue}if(ms(a)){s[a]=n(a,void 0);continue}s[a]=r(a)}return s}class Ic{constructor(e,n){this._requestHandlerFactory=n,this._requestHandler=null,this._protocol=new Nc({sendMessage:(r,i)=>{e(r,i)},handleMessage:(r,i)=>this._handleMessage(r,i),handleEvent:(r,i)=>this._handleEvent(r,i)})}onmessage(e){this._protocol.handleMessage(e)}_handleMessage(e,n){if(e===Rc)return this.initialize(n[0],n[1],n[2],n[3]);if(!this._requestHandler||typeof this._requestHandler[e]!="function")return Promise.reject(new Error("Missing requestHandler or method: "+e));try{return Promise.resolve(this._requestHandler[e].apply(this._requestHandler,n))}catch(r){return Promise.reject(r)}}_handleEvent(e,n){if(!this._requestHandler)throw new Error("Missing requestHandler");if(fs(e)){const r=this._requestHandler[e].call(this._requestHandler,n);if(typeof r!="function")throw new Error(`Missing dynamic event ${e} on request handler.`);return r}if(ms(e)){const r=this._requestHandler[e];if(typeof r!="function")throw new Error(`Missing event ${e} on request handler.`);return r}throw new Error(`Malformed event name ${e}`)}initialize(e,n,r,i){this._protocol.setWorkerId(e);const o=Mc(i,(l,c)=>this._protocol.sendMessage(l,c),(l,c)=>this._protocol.listen(l,c));return this._requestHandlerFactory?(this._requestHandler=this._requestHandlerFactory(o),Promise.resolve(kr(this._requestHandler))):(n&&(typeof n.baseUrl!="undefined"&&delete n.baseUrl,typeof n.paths!="undefined"&&typeof n.paths.vs!="undefined"&&delete n.paths.vs,typeof n.trustedTypesPolicy!==void 0&&delete n.trustedTypesPolicy,n.catchError=!0,globalThis.require.config(n)),new Promise((l,c)=>{const h=globalThis.require;h([r],u=>{if(this._requestHandler=u.create(o),!this._requestHandler){c(new Error("No RequestHandler!"));return}l(kr(this._requestHandler))},c)}))}}class pt{constructor(e,n,r,i){this.originalStart=e,this.originalLength=n,this.modifiedStart=r,this.modifiedLength=i}getOriginalEnd(){return this.originalStart+this.originalLength}getModifiedEnd(){return this.modifiedStart+this.modifiedLength}}function gs(t,e){return(e<<5)-e+t|0}function zc(t,e){e=gs(149417,e);for(let n=0,r=t.length;n0||this.m_modifiedCount>0)&&this.m_changes.push(new pt(this.m_originalStart,this.m_originalCount,this.m_modifiedStart,this.m_modifiedCount)),this.m_originalCount=0,this.m_modifiedCount=0,this.m_originalStart=1073741824,this.m_modifiedStart=1073741824}AddOriginalElement(e,n){this.m_originalStart=Math.min(this.m_originalStart,e),this.m_modifiedStart=Math.min(this.m_modifiedStart,n),this.m_originalCount++}AddModifiedElement(e,n){this.m_originalStart=Math.min(this.m_originalStart,e),this.m_modifiedStart=Math.min(this.m_modifiedStart,n),this.m_modifiedCount++}getChanges(){return(this.m_originalCount>0||this.m_modifiedCount>0)&&this.MarkNextChange(),this.m_changes}getReverseChanges(){return(this.m_originalCount>0||this.m_modifiedCount>0)&&this.MarkNextChange(),this.m_changes.reverse(),this.m_changes}}class mt{constructor(e,n,r=null){this.ContinueProcessingPredicate=r,this._originalSequence=e,this._modifiedSequence=n;const[i,s,a]=mt._getElements(e),[o,l,c]=mt._getElements(n);this._hasStrings=a&&c,this._originalStringElements=i,this._originalElementsOrHash=s,this._modifiedStringElements=o,this._modifiedElementsOrHash=l,this.m_forwardHistory=[],this.m_reverseHistory=[]}static _isStringArray(e){return e.length>0&&typeof e[0]=="string"}static _getElements(e){const n=e.getElements();if(mt._isStringArray(n)){const r=new Int32Array(n.length);for(let i=0,s=n.length;i=e&&i>=r&&this.ElementsAreEqual(n,i);)n--,i--;if(e>n||r>i){let u;return r<=i?(Tt.Assert(e===n+1,"originalStart should only be one more than originalEnd"),u=[new pt(e,0,r,i-r+1)]):e<=n?(Tt.Assert(r===i+1,"modifiedStart should only be one more than modifiedEnd"),u=[new pt(e,n-e+1,r,0)]):(Tt.Assert(e===n+1,"originalStart should only be one more than originalEnd"),Tt.Assert(r===i+1,"modifiedStart should only be one more than modifiedEnd"),u=[]),u}const a=[0],o=[0],l=this.ComputeRecursionPoint(e,n,r,i,a,o,s),c=a[0],h=o[0];if(l!==null)return l;if(!s[0]){const u=this.ComputeDiffRecursive(e,c,r,h,s);let f=[];return s[0]?f=[new pt(c+1,n-(c+1)+1,h+1,i-(h+1)+1)]:f=this.ComputeDiffRecursive(c+1,n,h+1,i,s),this.ConcatenateChanges(u,f)}return[new pt(e,n-e+1,r,i-r+1)]}WALKTRACE(e,n,r,i,s,a,o,l,c,h,u,f,m,g,v,y,w,S){let C=null,I=null,M=new vs,U=n,q=r,W=m[0]-y[0]-i,N=-1073741824,F=this.m_forwardHistory.length-1;do{const R=W+e;R===U||R=0&&(c=this.m_forwardHistory[F],e=c[0],U=1,q=c.length-1)}while(--F>=-1);if(C=M.getReverseChanges(),S[0]){let R=m[0]+1,E=y[0]+1;if(C!==null&&C.length>0){const L=C[C.length-1];R=Math.max(R,L.getOriginalEnd()),E=Math.max(E,L.getModifiedEnd())}I=[new pt(R,f-R+1,E,v-E+1)]}else{M=new vs,U=a,q=o,W=m[0]-y[0]-l,N=1073741824,F=w?this.m_reverseHistory.length-1:this.m_reverseHistory.length-2;do{const R=W+s;R===U||R=h[R+1]?(u=h[R+1]-1,g=u-W-l,u>N&&M.MarkNextChange(),N=u+1,M.AddOriginalElement(u+1,g+1),W=R+1-s):(u=h[R-1],g=u-W-l,u>N&&M.MarkNextChange(),N=u,M.AddModifiedElement(u+1,g+1),W=R-1-s),F>=0&&(h=this.m_reverseHistory[F],s=h[0],U=1,q=h.length-1)}while(--F>=-1);I=M.getChanges()}return this.ConcatenateChanges(C,I)}ComputeRecursionPoint(e,n,r,i,s,a,o){let l=0,c=0,h=0,u=0,f=0,m=0;e--,r--,s[0]=0,a[0]=0,this.m_forwardHistory=[],this.m_reverseHistory=[];const g=n-e+(i-r),v=g+1,y=new Int32Array(v),w=new Int32Array(v),S=i-r,C=n-e,I=e-r,M=n-i,q=(C-S)%2===0;y[S]=e,w[C]=n,o[0]=!1;for(let W=1;W<=g/2+1;W++){let N=0,F=0;h=this.ClipDiagonalBound(S-W,W,S,v),u=this.ClipDiagonalBound(S+W,W,S,v);for(let E=h;E<=u;E+=2){E===h||EN+F&&(N=l,F=c),!q&&Math.abs(E-C)<=W-1&&l>=w[E])return s[0]=l,a[0]=c,L<=w[E]&&1447>0&&W<=1447+1?this.WALKTRACE(S,h,u,I,C,f,m,M,y,w,l,n,s,c,i,a,q,o):null}const R=(N-e+(F-r)-W)/2;if(this.ContinueProcessingPredicate!==null&&!this.ContinueProcessingPredicate(N,R))return o[0]=!0,s[0]=N,a[0]=F,R>0&&1447>0&&W<=1447+1?this.WALKTRACE(S,h,u,I,C,f,m,M,y,w,l,n,s,c,i,a,q,o):(e++,r++,[new pt(e,n-e+1,r,i-r+1)]);f=this.ClipDiagonalBound(C-W,W,C,v),m=this.ClipDiagonalBound(C+W,W,C,v);for(let E=f;E<=m;E+=2){E===f||E=w[E+1]?l=w[E+1]-1:l=w[E-1],c=l-(E-C)-M;const L=l;for(;l>e&&c>r&&this.ElementsAreEqual(l,c);)l--,c--;if(w[E]=l,q&&Math.abs(E-S)<=W&&l<=y[E])return s[0]=l,a[0]=c,L>=y[E]&&1447>0&&W<=1447+1?this.WALKTRACE(S,h,u,I,C,f,m,M,y,w,l,n,s,c,i,a,q,o):null}if(W<=1447){let E=new Int32Array(u-h+2);E[0]=S-h+1,Ot.Copy2(y,h,E,1,u-h+1),this.m_forwardHistory.push(E),E=new Int32Array(m-f+2),E[0]=C-f+1,Ot.Copy2(w,f,E,1,m-f+1),this.m_reverseHistory.push(E)}}return this.WALKTRACE(S,h,u,I,C,f,m,M,y,w,l,n,s,c,i,a,q,o)}PrettifyChanges(e){for(let n=0;n0,o=r.modifiedLength>0;for(;r.originalStart+r.originalLength=0;n--){const r=e[n];let i=0,s=0;if(n>0){const u=e[n-1];i=u.originalStart+u.originalLength,s=u.modifiedStart+u.modifiedLength}const a=r.originalLength>0,o=r.modifiedLength>0;let l=0,c=this._boundaryScore(r.originalStart,r.originalLength,r.modifiedStart,r.modifiedLength);for(let u=1;;u++){const f=r.originalStart-u,m=r.modifiedStart-u;if(fc&&(c=v,l=u)}r.originalStart-=l,r.modifiedStart-=l;const h=[null];if(n>0&&this.ChangesOverlap(e[n-1],e[n],h)){e[n-1]=h[0],e.splice(n,1),n++;continue}}if(this._hasStrings)for(let n=1,r=e.length;n0&&m>l&&(l=m,c=u,h=f)}return l>0?[c,h]:null}_contiguousSequenceScore(e,n,r){let i=0;for(let s=0;s=this._originalElementsOrHash.length-1?!0:this._hasStrings&&/^\s*$/.test(this._originalStringElements[e])}_OriginalRegionIsBoundary(e,n){if(this._OriginalIsBoundary(e)||this._OriginalIsBoundary(e-1))return!0;if(n>0){const r=e+n;if(this._OriginalIsBoundary(r-1)||this._OriginalIsBoundary(r))return!0}return!1}_ModifiedIsBoundary(e){return e<=0||e>=this._modifiedElementsOrHash.length-1?!0:this._hasStrings&&/^\s*$/.test(this._modifiedStringElements[e])}_ModifiedRegionIsBoundary(e,n){if(this._ModifiedIsBoundary(e)||this._ModifiedIsBoundary(e-1))return!0;if(n>0){const r=e+n;if(this._ModifiedIsBoundary(r-1)||this._ModifiedIsBoundary(r))return!0}return!1}_boundaryScore(e,n,r,i){const s=this._OriginalRegionIsBoundary(e,n)?1:0,a=this._ModifiedRegionIsBoundary(r,i)?1:0;return s+a}ConcatenateChanges(e,n){const r=[];if(e.length===0||n.length===0)return n.length>0?n:e;if(this.ChangesOverlap(e[e.length-1],n[0],r)){const i=new Array(e.length+n.length-1);return Ot.Copy(e,0,i,0,e.length-1),i[e.length-1]=r[0],Ot.Copy(n,1,i,e.length,n.length-1),i}else{const i=new Array(e.length+n.length);return Ot.Copy(e,0,i,0,e.length),Ot.Copy(n,0,i,e.length,n.length),i}}ChangesOverlap(e,n,r){if(Tt.Assert(e.originalStart<=n.originalStart,"Left change is not less than or equal to right change"),Tt.Assert(e.modifiedStart<=n.modifiedStart,"Left change is not less than or equal to right change"),e.originalStart+e.originalLength>=n.originalStart||e.modifiedStart+e.modifiedLength>=n.modifiedStart){const i=e.originalStart;let s=e.originalLength;const a=e.modifiedStart;let o=e.modifiedLength;return e.originalStart+e.originalLength>=n.originalStart&&(s=n.originalStart+n.originalLength-e.originalStart),e.modifiedStart+e.modifiedLength>=n.modifiedStart&&(o=n.modifiedStart+n.modifiedLength-e.modifiedStart),r[0]=new pt(i,s,a,o),!0}else return r[0]=null,!1}ClipDiagonalBound(e,n,r,i){if(e>=0&&e",npm_package_dependencies__vtj_assets:"workspace:*",npm_package_dependencies__vtj_deps:"workspace:*",npm_package_dependencies__vtj_engine:"workspace:*",npm_package_dependencies__vtj_icons:"workspace:*",npm_package_dependencies__vtj_runtime:"workspace:*",npm_package_dependencies__vtj_ui:"workspace:*",npm_package_dependencies__vtj_utils:"workspace:*",npm_package_description:"> TODO: description",npm_package_devDependencies__vtj_cli:"workspace:*",npm_package_devDependencies__vtj_serve:"workspace:*",npm_package_engines_node:">=16.0.0",npm_package_files_0:"dist",npm_package_homepage:"",npm_package_license:"ISC",npm_package_name:"@vtj/ide",npm_package_private:"false",npm_package_publishConfig_access:"public",npm_package_scripts_build:"npm run build:prod",npm_package_scripts_build_example:"vue-tsc && cross-env ENV_TYPE=uat vite build",npm_package_scripts_build_prod:"vue-tsc && cross-env ENV_TYPE=live vite build",npm_package_scripts_dev:"cross-env ENV_TYPE=local vite",npm_package_scripts_outdate:"npm outdate --registry=https://registry.npmmirror.com",npm_package_scripts_preview:"cross-env ENV_TYPE=live vite preview",npm_package_scripts_setup:"npm install --registry=https://registry.npmmirror.com",npm_package_version:"0.4.5",npm_package_vtj_project_id:"ide",npm_package_vtj_project_name:"IDE",npm_package_vtj_raw:"true",npm_package_vtj_service:"file",NPM_PREFIX_NPM_CLI_JS:"C:\\nvm\\nodejs\\node_modules\\npm\\bin\\npm-cli.js",NUMBER_OF_PROCESSORS:"8",NVM_HOME:"C:\\Users\\chc\\AppData\\Roaming\\nvm",NVM_SYMLINK:"C:\\nvm\\nodejs",OneDrive:"C:\\Users\\chc\\OneDrive",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",OS:"Windows_NT",Path:"D:\\vtj\\vtj\\packages\\ide\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\pnpm\\dist\\node-gyp-bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\node_modules\\.bin;D:\\node_modules\\.bin;C:\\Users\\chc\\AppData\\Roaming\\nvm\\v18.16.0\\node_modules\\npm\\node_modules\\@npmcli\\run-script\\lib\\node-gyp-bin;C:\\Program Files\\PowerShell\\7;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\TortoiseSVN\\bin;C:\\Users\\chc\\.windows-build-tools\\python27;C:\\Program Files\\Git\\cmd;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;D:\\Program Files\\Tencent\\微信web开发者工具\\dll;C:\\Program Files\\PowerShell\\7\\;C:\\Users\\chc\\AppData\\Local\\pnpm;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\mysql-8.0.21-winx64\\bin;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\Microsoft VS Code\\bin;D:\\Program Files\\JetBrains\\WebStorm 2020.1\\bin;C:\\Users\\chc\\AppData\\Roaming\\npm;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin",PATHEXT:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL",PNPM_HOME:"C:\\Users\\chc\\AppData\\Local\\pnpm",PNPM_SCRIPT_SRC_DIR:"D:\\vtj\\vtj\\packages\\ide",POWERSHELL_DISTRIBUTION_CHANNEL:"MSI:Windows 10 Home China",PROCESSOR_ARCHITECTURE:"AMD64",PROCESSOR_IDENTIFIER:"Intel64 Family 6 Model 142 Stepping 12, GenuineIntel",PROCESSOR_LEVEL:"6",PROCESSOR_REVISION:"8e0c",ProgramData:"C:\\ProgramData",ProgramFiles:"C:\\Program Files","ProgramFiles(x86)":"C:\\Program Files (x86)",ProgramW6432:"C:\\Program Files",PROMPT:"$P$G",PSModulePath:"C:\\Users\\chc\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules",PUBLIC:"C:\\Users\\Public",SystemDrive:"C:",SystemRoot:"C:\\WINDOWS",TEMP:"C:\\Users\\chc\\AppData\\Local\\Temp",TERM_PROGRAM:"vscode",TERM_PROGRAM_VERSION:"1.71.2",TMP:"C:\\Users\\chc\\AppData\\Local\\Temp",USERDOMAIN:"LAPTOP-RT2AJKTO",USERDOMAIN_ROAMINGPROFILE:"LAPTOP-RT2AJKTO",USERNAME:"chc",USERPROFILE:"C:\\Users\\chc",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"--ms-enable-electron-run-as-node",VSCODE_GIT_ASKPASS_MAIN:"d:\\Program Files\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js",VSCODE_GIT_ASKPASS_NODE:"D:\\Program Files\\Microsoft VS Code\\Code.exe",VSCODE_GIT_IPC_HANDLE:"\\\\.\\pipe\\vscode-git-b4c82d5764-sock",VSCODE_INJECTION:"1",WebStorm:"D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin;",windir:"C:\\WINDOWS",ZES_ENABLE_SYSMAN:"1",__COMPAT_LAYER:"RunAsAdmin Installer"}},cwd(){return{ENV_TYPE:"uat",ALLUSERSPROFILE:"C:\\ProgramData",ANDROID_HOME:"D:\\Android\\Sdk",APPDATA:"C:\\Users\\chc\\AppData\\Roaming",CHROME_CRASHPAD_PIPE_NAME:"\\\\.\\pipe\\crashpad_3264_PUAFSUXAHJEGHGWS",COLOR:"1",COLORTERM:"truecolor",CommonProgramFiles:"C:\\Program Files\\Common Files","CommonProgramFiles(x86)":"C:\\Program Files (x86)\\Common Files",CommonProgramW6432:"C:\\Program Files\\Common Files",COMPUTERNAME:"LAPTOP-RT2AJKTO",ComSpec:"C:\\WINDOWS\\system32\\cmd.exe",DriverData:"C:\\Windows\\System32\\Drivers\\DriverData",EDITOR:"C:\\WINDOWS\\notepad.exe",EMULATOR_AVD_ROOT:"D:\\Program Files\\MobileAppEngine\\emui",EMULATOR_SDK_ROOT:"D:\\Program Files\\MobileAppEngine\\EmulatorSdk",GIT_ASKPASS:"d:\\Program Files\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh",HOME:"C:\\Users\\chc",HOMEDRIVE:"C:",HOMEPATH:"\\Users\\chc",INIT_CWD:"D:\\vtj\\vtj",LANG:"zh_CN.UTF-8",LOCALAPPDATA:"C:\\Users\\chc\\AppData\\Local",LOGONSERVER:"\\\\LAPTOP-RT2AJKTO",MYSQL_HOME:"D:\\Program Files",NODE:"C:\\nvm\\nodejs\\node.exe",NODE_ENV:"production",NODE_EXE:"C:\\nvm\\nodejs\\\\node.exe",NPM_CLI_JS:"C:\\nvm\\nodejs\\node_modules\\npm\\bin\\npm-cli.js",npm_command:"run-script",npm_config_cache:"C:\\Users\\chc\\AppData\\Local\\npm-cache",npm_config_globalconfig:"C:\\nvm\\nodejs\\etc\\npmrc",npm_config_global_prefix:"C:\\nvm\\nodejs",npm_config_hamefully_hoist:"true",npm_config_hoist:"true",npm_config_init_module:"C:\\Users\\chc\\.npm-init.js",npm_config_local_prefix:"D:\\vtj\\vtj",npm_config_metrics_registry:"https://registry.npmjs.org/",npm_config_node_gyp:"C:\\Users\\chc\\AppData\\Roaming\\nvm\\v18.16.0\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js",npm_config_node_linker:"hoisted",npm_config_prefix:"C:\\nvm\\nodejs",npm_config_recursive:"true",npm_config_registry:"https://registry.npmjs.org/",npm_config_userconfig:"C:\\Users\\chc\\.npmrc",npm_config_user_agent:"pnpm/8.6.10 npm/? node/v18.16.0 win32 x64",npm_execpath:"D:\\vtj\\vtj\\node_modules\\pnpm\\bin\\pnpm.cjs",npm_lifecycle_event:"build:example",npm_lifecycle_script:"vue-tsc && cross-env ENV_TYPE=uat vite build",npm_node_execpath:"C:\\nvm\\nodejs\\node.exe",npm_package_author:"陈华春 ",npm_package_dependencies__vtj_assets:"workspace:*",npm_package_dependencies__vtj_deps:"workspace:*",npm_package_dependencies__vtj_engine:"workspace:*",npm_package_dependencies__vtj_icons:"workspace:*",npm_package_dependencies__vtj_runtime:"workspace:*",npm_package_dependencies__vtj_ui:"workspace:*",npm_package_dependencies__vtj_utils:"workspace:*",npm_package_description:"> TODO: description",npm_package_devDependencies__vtj_cli:"workspace:*",npm_package_devDependencies__vtj_serve:"workspace:*",npm_package_engines_node:">=16.0.0",npm_package_files_0:"dist",npm_package_homepage:"",npm_package_license:"ISC",npm_package_name:"@vtj/ide",npm_package_private:"false",npm_package_publishConfig_access:"public",npm_package_scripts_build:"npm run build:prod",npm_package_scripts_build_example:"vue-tsc && cross-env ENV_TYPE=uat vite build",npm_package_scripts_build_prod:"vue-tsc && cross-env ENV_TYPE=live vite build",npm_package_scripts_dev:"cross-env ENV_TYPE=local vite",npm_package_scripts_outdate:"npm outdate --registry=https://registry.npmmirror.com",npm_package_scripts_preview:"cross-env ENV_TYPE=live vite preview",npm_package_scripts_setup:"npm install --registry=https://registry.npmmirror.com",npm_package_version:"0.4.5",npm_package_vtj_project_id:"ide",npm_package_vtj_project_name:"IDE",npm_package_vtj_raw:"true",npm_package_vtj_service:"file",NPM_PREFIX_NPM_CLI_JS:"C:\\nvm\\nodejs\\node_modules\\npm\\bin\\npm-cli.js",NUMBER_OF_PROCESSORS:"8",NVM_HOME:"C:\\Users\\chc\\AppData\\Roaming\\nvm",NVM_SYMLINK:"C:\\nvm\\nodejs",OneDrive:"C:\\Users\\chc\\OneDrive",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",OS:"Windows_NT",Path:"D:\\vtj\\vtj\\packages\\ide\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\pnpm\\dist\\node-gyp-bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\node_modules\\.bin;D:\\node_modules\\.bin;C:\\Users\\chc\\AppData\\Roaming\\nvm\\v18.16.0\\node_modules\\npm\\node_modules\\@npmcli\\run-script\\lib\\node-gyp-bin;C:\\Program Files\\PowerShell\\7;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\TortoiseSVN\\bin;C:\\Users\\chc\\.windows-build-tools\\python27;C:\\Program Files\\Git\\cmd;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;D:\\Program Files\\Tencent\\微信web开发者工具\\dll;C:\\Program Files\\PowerShell\\7\\;C:\\Users\\chc\\AppData\\Local\\pnpm;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\mysql-8.0.21-winx64\\bin;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\Microsoft VS Code\\bin;D:\\Program Files\\JetBrains\\WebStorm 2020.1\\bin;C:\\Users\\chc\\AppData\\Roaming\\npm;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin",PATHEXT:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL",PNPM_HOME:"C:\\Users\\chc\\AppData\\Local\\pnpm",PNPM_SCRIPT_SRC_DIR:"D:\\vtj\\vtj\\packages\\ide",POWERSHELL_DISTRIBUTION_CHANNEL:"MSI:Windows 10 Home China",PROCESSOR_ARCHITECTURE:"AMD64",PROCESSOR_IDENTIFIER:"Intel64 Family 6 Model 142 Stepping 12, GenuineIntel",PROCESSOR_LEVEL:"6",PROCESSOR_REVISION:"8e0c",ProgramData:"C:\\ProgramData",ProgramFiles:"C:\\Program Files","ProgramFiles(x86)":"C:\\Program Files (x86)",ProgramW6432:"C:\\Program Files",PROMPT:"$P$G",PSModulePath:"C:\\Users\\chc\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules",PUBLIC:"C:\\Users\\Public",SystemDrive:"C:",SystemRoot:"C:\\WINDOWS",TEMP:"C:\\Users\\chc\\AppData\\Local\\Temp",TERM_PROGRAM:"vscode",TERM_PROGRAM_VERSION:"1.71.2",TMP:"C:\\Users\\chc\\AppData\\Local\\Temp",USERDOMAIN:"LAPTOP-RT2AJKTO",USERDOMAIN_ROAMINGPROFILE:"LAPTOP-RT2AJKTO",USERNAME:"chc",USERPROFILE:"C:\\Users\\chc",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"--ms-enable-electron-run-as-node",VSCODE_GIT_ASKPASS_MAIN:"d:\\Program Files\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js",VSCODE_GIT_ASKPASS_NODE:"D:\\Program Files\\Microsoft VS Code\\Code.exe",VSCODE_GIT_IPC_HANDLE:"\\\\.\\pipe\\vscode-git-b4c82d5764-sock",VSCODE_INJECTION:"1",WebStorm:"D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin;",windir:"C:\\WINDOWS",ZES_ENABLE_SYSMAN:"1",__COMPAT_LAYER:"RunAsAdmin Installer"}.VSCODE_CWD||process.cwd()}}:Wt={get platform(){return sn?"win32":mc?"darwin":"linux"},get arch(){},get env(){return{}},cwd(){return"/"}};const Un=Wt.cwd;Wt.env;const Tc=Wt.platform,Oc=65,Wc=97,Uc=90,Vc=122,ft=46,we=47,Ae=92,gt=58,jc=63;class ys extends Error{constructor(e,n,r){let i;typeof n=="string"&&n.indexOf("not ")===0?(i="must not be",n=n.replace(/^not /,"")):i="must be";const s=e.indexOf(".")!==-1?"property":"argument";let a=`The "${e}" ${s} ${i} of type ${n}`;a+=`. Received type ${typeof r}`,super(a),this.code="ERR_INVALID_ARG_TYPE"}}function Bc(t,e){if(t===null||typeof t!="object")throw new ys(e,"Object",t)}function le(t,e){if(typeof t!="string")throw new ys(e,"string",t)}const bt=Tc==="win32";function J(t){return t===we||t===Ae}function Nr(t){return t===we}function vt(t){return t>=Oc&&t<=Uc||t>=Wc&&t<=Vc}function Vn(t,e,n,r){let i="",s=0,a=-1,o=0,l=0;for(let c=0;c<=t.length;++c){if(c2){const h=i.lastIndexOf(n);h===-1?(i="",s=0):(i=i.slice(0,h),s=i.length-1-i.lastIndexOf(n)),a=c,o=0;continue}else if(i.length!==0){i="",s=0,a=c,o=0;continue}}e&&(i+=i.length>0?`${n}..`:"..",s=2)}else i.length>0?i+=`${n}${t.slice(a+1,c)}`:i=t.slice(a+1,c),s=c-a-1;a=c,o=0}else l===ft&&o!==-1?++o:o=-1}return i}function ws(t,e){Bc(e,"pathObject");const n=e.dir||e.root,r=e.base||`${e.name||""}${e.ext||""}`;return n?n===e.root?`${n}${r}`:`${n}${t}${r}`:r}const Ee={resolve(...t){let e="",n="",r=!1;for(let i=t.length-1;i>=-1;i--){let s;if(i>=0){if(s=t[i],le(s,"path"),s.length===0)continue}else e.length===0?s=Un():(s={ENV_TYPE:"uat",ALLUSERSPROFILE:"C:\\ProgramData",ANDROID_HOME:"D:\\Android\\Sdk",APPDATA:"C:\\Users\\chc\\AppData\\Roaming",CHROME_CRASHPAD_PIPE_NAME:"\\\\.\\pipe\\crashpad_3264_PUAFSUXAHJEGHGWS",COLOR:"1",COLORTERM:"truecolor",CommonProgramFiles:"C:\\Program Files\\Common Files","CommonProgramFiles(x86)":"C:\\Program Files (x86)\\Common Files",CommonProgramW6432:"C:\\Program Files\\Common Files",COMPUTERNAME:"LAPTOP-RT2AJKTO",ComSpec:"C:\\WINDOWS\\system32\\cmd.exe",DriverData:"C:\\Windows\\System32\\Drivers\\DriverData",EDITOR:"C:\\WINDOWS\\notepad.exe",EMULATOR_AVD_ROOT:"D:\\Program Files\\MobileAppEngine\\emui",EMULATOR_SDK_ROOT:"D:\\Program Files\\MobileAppEngine\\EmulatorSdk",GIT_ASKPASS:"d:\\Program Files\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass.sh",HOME:"C:\\Users\\chc",HOMEDRIVE:"C:",HOMEPATH:"\\Users\\chc",INIT_CWD:"D:\\vtj\\vtj",LANG:"zh_CN.UTF-8",LOCALAPPDATA:"C:\\Users\\chc\\AppData\\Local",LOGONSERVER:"\\\\LAPTOP-RT2AJKTO",MYSQL_HOME:"D:\\Program Files",NODE:"C:\\nvm\\nodejs\\node.exe",NODE_ENV:"production",NODE_EXE:"C:\\nvm\\nodejs\\\\node.exe",NPM_CLI_JS:"C:\\nvm\\nodejs\\node_modules\\npm\\bin\\npm-cli.js",npm_command:"run-script",npm_config_cache:"C:\\Users\\chc\\AppData\\Local\\npm-cache",npm_config_globalconfig:"C:\\nvm\\nodejs\\etc\\npmrc",npm_config_global_prefix:"C:\\nvm\\nodejs",npm_config_hamefully_hoist:"true",npm_config_hoist:"true",npm_config_init_module:"C:\\Users\\chc\\.npm-init.js",npm_config_local_prefix:"D:\\vtj\\vtj",npm_config_metrics_registry:"https://registry.npmjs.org/",npm_config_node_gyp:"C:\\Users\\chc\\AppData\\Roaming\\nvm\\v18.16.0\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js",npm_config_node_linker:"hoisted",npm_config_prefix:"C:\\nvm\\nodejs",npm_config_recursive:"true",npm_config_registry:"https://registry.npmjs.org/",npm_config_userconfig:"C:\\Users\\chc\\.npmrc",npm_config_user_agent:"pnpm/8.6.10 npm/? node/v18.16.0 win32 x64",npm_execpath:"D:\\vtj\\vtj\\node_modules\\pnpm\\bin\\pnpm.cjs",npm_lifecycle_event:"build:example",npm_lifecycle_script:"vue-tsc && cross-env ENV_TYPE=uat vite build",npm_node_execpath:"C:\\nvm\\nodejs\\node.exe",npm_package_author:"陈华春 ",npm_package_dependencies__vtj_assets:"workspace:*",npm_package_dependencies__vtj_deps:"workspace:*",npm_package_dependencies__vtj_engine:"workspace:*",npm_package_dependencies__vtj_icons:"workspace:*",npm_package_dependencies__vtj_runtime:"workspace:*",npm_package_dependencies__vtj_ui:"workspace:*",npm_package_dependencies__vtj_utils:"workspace:*",npm_package_description:"> TODO: description",npm_package_devDependencies__vtj_cli:"workspace:*",npm_package_devDependencies__vtj_serve:"workspace:*",npm_package_engines_node:">=16.0.0",npm_package_files_0:"dist",npm_package_homepage:"",npm_package_license:"ISC",npm_package_name:"@vtj/ide",npm_package_private:"false",npm_package_publishConfig_access:"public",npm_package_scripts_build:"npm run build:prod",npm_package_scripts_build_example:"vue-tsc && cross-env ENV_TYPE=uat vite build",npm_package_scripts_build_prod:"vue-tsc && cross-env ENV_TYPE=live vite build",npm_package_scripts_dev:"cross-env ENV_TYPE=local vite",npm_package_scripts_outdate:"npm outdate --registry=https://registry.npmmirror.com",npm_package_scripts_preview:"cross-env ENV_TYPE=live vite preview",npm_package_scripts_setup:"npm install --registry=https://registry.npmmirror.com",npm_package_version:"0.4.5",npm_package_vtj_project_id:"ide",npm_package_vtj_project_name:"IDE",npm_package_vtj_raw:"true",npm_package_vtj_service:"file",NPM_PREFIX_NPM_CLI_JS:"C:\\nvm\\nodejs\\node_modules\\npm\\bin\\npm-cli.js",NUMBER_OF_PROCESSORS:"8",NVM_HOME:"C:\\Users\\chc\\AppData\\Roaming\\nvm",NVM_SYMLINK:"C:\\nvm\\nodejs",OneDrive:"C:\\Users\\chc\\OneDrive",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",OS:"Windows_NT",Path:"D:\\vtj\\vtj\\packages\\ide\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\pnpm\\dist\\node-gyp-bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\vtj\\node_modules\\.bin;D:\\vtj\\node_modules\\.bin;D:\\node_modules\\.bin;C:\\Users\\chc\\AppData\\Roaming\\nvm\\v18.16.0\\node_modules\\npm\\node_modules\\@npmcli\\run-script\\lib\\node-gyp-bin;C:\\Program Files\\PowerShell\\7;C:\\Program Files\\Common Files\\Oracle\\Java\\javapath;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn\\;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files\\TortoiseSVN\\bin;C:\\Users\\chc\\.windows-build-tools\\python27;C:\\Program Files\\Git\\cmd;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;D:\\Program Files\\Tencent\\微信web开发者工具\\dll;C:\\Program Files\\PowerShell\\7\\;C:\\Users\\chc\\AppData\\Local\\pnpm;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\mysql-8.0.21-winx64\\bin;C:\\Users\\chc\\AppData\\Local\\Microsoft\\WindowsApps;D:\\Program Files\\Microsoft VS Code\\bin;D:\\Program Files\\JetBrains\\WebStorm 2020.1\\bin;C:\\Users\\chc\\AppData\\Roaming\\npm;C:\\Users\\chc\\AppData\\Roaming\\nvm;C:\\nvm\\nodejs;D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin",PATHEXT:".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL",PNPM_HOME:"C:\\Users\\chc\\AppData\\Local\\pnpm",PNPM_SCRIPT_SRC_DIR:"D:\\vtj\\vtj\\packages\\ide",POWERSHELL_DISTRIBUTION_CHANNEL:"MSI:Windows 10 Home China",PROCESSOR_ARCHITECTURE:"AMD64",PROCESSOR_IDENTIFIER:"Intel64 Family 6 Model 142 Stepping 12, GenuineIntel",PROCESSOR_LEVEL:"6",PROCESSOR_REVISION:"8e0c",ProgramData:"C:\\ProgramData",ProgramFiles:"C:\\Program Files","ProgramFiles(x86)":"C:\\Program Files (x86)",ProgramW6432:"C:\\Program Files",PROMPT:"$P$G",PSModulePath:"C:\\Users\\chc\\Documents\\PowerShell\\Modules;C:\\Program Files\\PowerShell\\Modules;c:\\program files\\powershell\\7\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules",PUBLIC:"C:\\Users\\Public",SystemDrive:"C:",SystemRoot:"C:\\WINDOWS",TEMP:"C:\\Users\\chc\\AppData\\Local\\Temp",TERM_PROGRAM:"vscode",TERM_PROGRAM_VERSION:"1.71.2",TMP:"C:\\Users\\chc\\AppData\\Local\\Temp",USERDOMAIN:"LAPTOP-RT2AJKTO",USERDOMAIN_ROAMINGPROFILE:"LAPTOP-RT2AJKTO",USERNAME:"chc",USERPROFILE:"C:\\Users\\chc",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"--ms-enable-electron-run-as-node",VSCODE_GIT_ASKPASS_MAIN:"d:\\Program Files\\Microsoft VS Code\\resources\\app\\extensions\\git\\dist\\askpass-main.js",VSCODE_GIT_ASKPASS_NODE:"D:\\Program Files\\Microsoft VS Code\\Code.exe",VSCODE_GIT_IPC_HANDLE:"\\\\.\\pipe\\vscode-git-b4c82d5764-sock",VSCODE_INJECTION:"1",WebStorm:"D:\\Program Files\\JetBrains\\WebStorm 2022.3.1\\bin;",windir:"C:\\WINDOWS",ZES_ENABLE_SYSMAN:"1",__COMPAT_LAYER:"RunAsAdmin Installer"}[`=${e}`]||Un(),(s===void 0||s.slice(0,2).toLowerCase()!==e.toLowerCase()&&s.charCodeAt(2)===Ae)&&(s=`${e}\\`));const a=s.length;let o=0,l="",c=!1;const h=s.charCodeAt(0);if(a===1)J(h)&&(o=1,c=!0);else if(J(h))if(c=!0,J(s.charCodeAt(1))){let u=2,f=u;for(;u2&&J(s.charCodeAt(2))&&(c=!0,o=3));if(l.length>0)if(e.length>0){if(l.toLowerCase()!==e.toLowerCase())continue}else e=l;if(r){if(e.length>0)break}else if(n=`${s.slice(o)}\\${n}`,r=c,c&&e.length>0)break}return n=Vn(n,!r,"\\",J),r?`${e}\\${n}`:`${e}${n}`||"."},normalize(t){le(t,"path");const e=t.length;if(e===0)return".";let n=0,r,i=!1;const s=t.charCodeAt(0);if(e===1)return Nr(s)?"\\":t;if(J(s))if(i=!0,J(t.charCodeAt(1))){let o=2,l=o;for(;o2&&J(t.charCodeAt(2))&&(i=!0,n=3));let a=n0&&J(t.charCodeAt(e-1))&&(a+="\\"),r===void 0?i?`\\${a}`:a:i?`${r}\\${a}`:`${r}${a}`},isAbsolute(t){le(t,"path");const e=t.length;if(e===0)return!1;const n=t.charCodeAt(0);return J(n)||e>2&&vt(n)&&t.charCodeAt(1)===gt&&J(t.charCodeAt(2))},join(...t){if(t.length===0)return".";let e,n;for(let s=0;s0&&(e===void 0?e=n=a:e+=`\\${a}`)}if(e===void 0)return".";let r=!0,i=0;if(typeof n=="string"&&J(n.charCodeAt(0))){++i;const s=n.length;s>1&&J(n.charCodeAt(1))&&(++i,s>2&&(J(n.charCodeAt(2))?++i:r=!1))}if(r){for(;i=2&&(e=`\\${e.slice(i)}`)}return Ee.normalize(e)},relative(t,e){if(le(t,"from"),le(e,"to"),t===e)return"";const n=Ee.resolve(t),r=Ee.resolve(e);if(n===r||(t=n.toLowerCase(),e=r.toLowerCase(),t===e))return"";let i=0;for(;ii&&t.charCodeAt(s-1)===Ae;)s--;const a=s-i;let o=0;for(;oo&&e.charCodeAt(l-1)===Ae;)l--;const c=l-o,h=ah){if(e.charCodeAt(o+f)===Ae)return r.slice(o+f+1);if(f===2)return r.slice(o+f)}a>h&&(t.charCodeAt(i+f)===Ae?u=f:f===2&&(u=3)),u===-1&&(u=0)}let m="";for(f=i+u+1;f<=s;++f)(f===s||t.charCodeAt(f)===Ae)&&(m+=m.length===0?"..":"\\..");return o+=u,m.length>0?`${m}${r.slice(o,l)}`:(r.charCodeAt(o)===Ae&&++o,r.slice(o,l))},toNamespacedPath(t){if(typeof t!="string"||t.length===0)return t;const e=Ee.resolve(t);if(e.length<=2)return t;if(e.charCodeAt(0)===Ae){if(e.charCodeAt(1)===Ae){const n=e.charCodeAt(2);if(n!==jc&&n!==ft)return`\\\\?\\UNC\\${e.slice(2)}`}}else if(vt(e.charCodeAt(0))&&e.charCodeAt(1)===gt&&e.charCodeAt(2)===Ae)return`\\\\?\\${e}`;return t},dirname(t){le(t,"path");const e=t.length;if(e===0)return".";let n=-1,r=0;const i=t.charCodeAt(0);if(e===1)return J(i)?t:".";if(J(i)){if(n=r=1,J(t.charCodeAt(1))){let o=2,l=o;for(;o2&&J(t.charCodeAt(2))?3:2,r=n);let s=-1,a=!0;for(let o=e-1;o>=r;--o)if(J(t.charCodeAt(o))){if(!a){s=o;break}}else a=!1;if(s===-1){if(n===-1)return".";s=n}return t.slice(0,s)},basename(t,e){e!==void 0&&le(e,"ext"),le(t,"path");let n=0,r=-1,i=!0,s;if(t.length>=2&&vt(t.charCodeAt(0))&&t.charCodeAt(1)===gt&&(n=2),e!==void 0&&e.length>0&&e.length<=t.length){if(e===t)return"";let a=e.length-1,o=-1;for(s=t.length-1;s>=n;--s){const l=t.charCodeAt(s);if(J(l)){if(!i){n=s+1;break}}else o===-1&&(i=!1,o=s+1),a>=0&&(l===e.charCodeAt(a)?--a===-1&&(r=s):(a=-1,r=o))}return n===r?r=o:r===-1&&(r=t.length),t.slice(n,r)}for(s=t.length-1;s>=n;--s)if(J(t.charCodeAt(s))){if(!i){n=s+1;break}}else r===-1&&(i=!1,r=s+1);return r===-1?"":t.slice(n,r)},extname(t){le(t,"path");let e=0,n=-1,r=0,i=-1,s=!0,a=0;t.length>=2&&t.charCodeAt(1)===gt&&vt(t.charCodeAt(0))&&(e=r=2);for(let o=t.length-1;o>=e;--o){const l=t.charCodeAt(o);if(J(l)){if(!s){r=o+1;break}continue}i===-1&&(s=!1,i=o+1),l===ft?n===-1?n=o:a!==1&&(a=1):n!==-1&&(a=-1)}return n===-1||i===-1||a===0||a===1&&n===i-1&&n===r+1?"":t.slice(n,i)},format:ws.bind(null,"\\"),parse(t){le(t,"path");const e={root:"",dir:"",base:"",ext:"",name:""};if(t.length===0)return e;const n=t.length;let r=0,i=t.charCodeAt(0);if(n===1)return J(i)?(e.root=e.dir=t,e):(e.base=e.name=t,e);if(J(i)){if(r=1,J(t.charCodeAt(1))){let u=2,f=u;for(;u0&&(e.root=t.slice(0,r));let s=-1,a=r,o=-1,l=!0,c=t.length-1,h=0;for(;c>=r;--c){if(i=t.charCodeAt(c),J(i)){if(!l){a=c+1;break}continue}o===-1&&(l=!1,o=c+1),i===ft?s===-1?s=c:h!==1&&(h=1):s!==-1&&(h=-1)}return o!==-1&&(s===-1||h===0||h===1&&s===o-1&&s===a+1?e.base=e.name=t.slice(a,o):(e.name=t.slice(a,s),e.base=t.slice(a,o),e.ext=t.slice(s,o))),a>0&&a!==r?e.dir=t.slice(0,a-1):e.dir=e.root,e},sep:"\\",delimiter:";",win32:null,posix:null},qc=(()=>{if(bt){const t=/\\/g;return()=>{const e=Un().replace(t,"/");return e.slice(e.indexOf("/"))}}return()=>Un()})(),Pe={resolve(...t){let e="",n=!1;for(let r=t.length-1;r>=-1&&!n;r--){const i=r>=0?t[r]:qc();le(i,"path"),i.length!==0&&(e=`${i}/${e}`,n=i.charCodeAt(0)===we)}return e=Vn(e,!n,"/",Nr),n?`/${e}`:e.length>0?e:"."},normalize(t){if(le(t,"path"),t.length===0)return".";const e=t.charCodeAt(0)===we,n=t.charCodeAt(t.length-1)===we;return t=Vn(t,!e,"/",Nr),t.length===0?e?"/":n?"./":".":(n&&(t+="/"),e?`/${t}`:t)},isAbsolute(t){return le(t,"path"),t.length>0&&t.charCodeAt(0)===we},join(...t){if(t.length===0)return".";let e;for(let n=0;n0&&(e===void 0?e=r:e+=`/${r}`)}return e===void 0?".":Pe.normalize(e)},relative(t,e){if(le(t,"from"),le(e,"to"),t===e||(t=Pe.resolve(t),e=Pe.resolve(e),t===e))return"";const n=1,r=t.length,i=r-n,s=1,a=e.length-s,o=io){if(e.charCodeAt(s+c)===we)return e.slice(s+c+1);if(c===0)return e.slice(s+c)}else i>o&&(t.charCodeAt(n+c)===we?l=c:c===0&&(l=0));let h="";for(c=n+l+1;c<=r;++c)(c===r||t.charCodeAt(c)===we)&&(h+=h.length===0?"..":"/..");return`${h}${e.slice(s+l)}`},toNamespacedPath(t){return t},dirname(t){if(le(t,"path"),t.length===0)return".";const e=t.charCodeAt(0)===we;let n=-1,r=!0;for(let i=t.length-1;i>=1;--i)if(t.charCodeAt(i)===we){if(!r){n=i;break}}else r=!1;return n===-1?e?"/":".":e&&n===1?"//":t.slice(0,n)},basename(t,e){e!==void 0&&le(e,"ext"),le(t,"path");let n=0,r=-1,i=!0,s;if(e!==void 0&&e.length>0&&e.length<=t.length){if(e===t)return"";let a=e.length-1,o=-1;for(s=t.length-1;s>=0;--s){const l=t.charCodeAt(s);if(l===we){if(!i){n=s+1;break}}else o===-1&&(i=!1,o=s+1),a>=0&&(l===e.charCodeAt(a)?--a===-1&&(r=s):(a=-1,r=o))}return n===r?r=o:r===-1&&(r=t.length),t.slice(n,r)}for(s=t.length-1;s>=0;--s)if(t.charCodeAt(s)===we){if(!i){n=s+1;break}}else r===-1&&(i=!1,r=s+1);return r===-1?"":t.slice(n,r)},extname(t){le(t,"path");let e=-1,n=0,r=-1,i=!0,s=0;for(let a=t.length-1;a>=0;--a){const o=t.charCodeAt(a);if(o===we){if(!i){n=a+1;break}continue}r===-1&&(i=!1,r=a+1),o===ft?e===-1?e=a:s!==1&&(s=1):e!==-1&&(s=-1)}return e===-1||r===-1||s===0||s===1&&e===r-1&&e===n+1?"":t.slice(e,r)},format:ws.bind(null,"/"),parse(t){le(t,"path");const e={root:"",dir:"",base:"",ext:"",name:""};if(t.length===0)return e;const n=t.charCodeAt(0)===we;let r;n?(e.root="/",r=1):r=0;let i=-1,s=0,a=-1,o=!0,l=t.length-1,c=0;for(;l>=r;--l){const h=t.charCodeAt(l);if(h===we){if(!o){s=l+1;break}continue}a===-1&&(o=!1,a=l+1),h===ft?i===-1?i=l:c!==1&&(c=1):i!==-1&&(c=-1)}if(a!==-1){const h=s===0&&n?1:s;i===-1||c===0||c===1&&i===a-1&&i===s+1?e.base=e.name=t.slice(h,a):(e.name=t.slice(h,i),e.base=t.slice(h,a),e.ext=t.slice(i,a))}return s>0?e.dir=t.slice(0,s-1):n&&(e.dir="/"),e},sep:"/",delimiter:":",win32:null,posix:null};Pe.win32=Ee.win32=Ee,Pe.posix=Ee.posix=Pe,bt?Ee.normalize:Pe.normalize,bt?Ee.resolve:Pe.resolve,bt?Ee.relative:Pe.relative,bt?Ee.dirname:Pe.dirname,bt?Ee.basename:Pe.basename,bt?Ee.extname:Pe.extname,bt?Ee.sep:Pe.sep;const $c=/^\w[\w\d+.-]*$/,Hc=/^\//,Gc=/^\/\//;function Jc(t,e){if(!t.scheme&&e)throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${t.authority}", path: "${t.path}", query: "${t.query}", fragment: "${t.fragment}"}`);if(t.scheme&&!$c.test(t.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(t.path){if(t.authority){if(!Hc.test(t.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(Gc.test(t.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}function Xc(t,e){return!t&&!e?"file":t}function Yc(t,e){switch(t){case"https":case"http":case"file":e?e[0]!==Xe&&(e=Xe+e):e=Xe;break}return e}const ie="",Xe="/",Kc=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;let Mr=class yr{static isUri(e){return e instanceof yr?!0:e?typeof e.authority=="string"&&typeof e.fragment=="string"&&typeof e.path=="string"&&typeof e.query=="string"&&typeof e.scheme=="string"&&typeof e.fsPath=="string"&&typeof e.with=="function"&&typeof e.toString=="function":!1}constructor(e,n,r,i,s,a=!1){typeof e=="object"?(this.scheme=e.scheme||ie,this.authority=e.authority||ie,this.path=e.path||ie,this.query=e.query||ie,this.fragment=e.fragment||ie):(this.scheme=Xc(e,a),this.authority=n||ie,this.path=Yc(this.scheme,r||ie),this.query=i||ie,this.fragment=s||ie,Jc(this,a))}get fsPath(){return Ir(this,!1)}with(e){if(!e)return this;let{scheme:n,authority:r,path:i,query:s,fragment:a}=e;return n===void 0?n=this.scheme:n===null&&(n=ie),r===void 0?r=this.authority:r===null&&(r=ie),i===void 0?i=this.path:i===null&&(i=ie),s===void 0?s=this.query:s===null&&(s=ie),a===void 0?a=this.fragment:a===null&&(a=ie),n===this.scheme&&r===this.authority&&i===this.path&&s===this.query&&a===this.fragment?this:new Ut(n,r,i,s,a)}static parse(e,n=!1){const r=Kc.exec(e);return r?new Ut(r[2]||ie,jn(r[4]||ie),jn(r[5]||ie),jn(r[7]||ie),jn(r[9]||ie),n):new Ut(ie,ie,ie,ie,ie)}static file(e){let n=ie;if(sn&&(e=e.replace(/\\/g,Xe)),e[0]===Xe&&e[1]===Xe){const r=e.indexOf(Xe,2);r===-1?(n=e.substring(2),e=Xe):(n=e.substring(2,r),e=e.substring(r)||Xe)}return new Ut("file",n,e,ie,ie)}static from(e,n){return new Ut(e.scheme,e.authority,e.path,e.query,e.fragment,n)}static joinPath(e,...n){if(!e.path)throw new Error("[UriError]: cannot call joinPath on URI without path");let r;return sn&&e.scheme==="file"?r=yr.file(Ee.join(Ir(e,!0),...n)).path:r=Pe.join(e.path,...n),e.with({path:r})}toString(e=!1){return zr(this,e)}toJSON(){return this}static revive(e){var n,r;if(e){if(e instanceof yr)return e;{const i=new Ut(e);return i._formatted=(n=e.external)!==null&&n!==void 0?n:null,i._fsPath=e._sep===xs&&(r=e.fsPath)!==null&&r!==void 0?r:null,i}}else return e}};const xs=sn?1:void 0;class Ut extends Mr{constructor(){super(...arguments),this._formatted=null,this._fsPath=null}get fsPath(){return this._fsPath||(this._fsPath=Ir(this,!1)),this._fsPath}toString(e=!1){return e?zr(this,!0):(this._formatted||(this._formatted=zr(this,!1)),this._formatted)}toJSON(){const e={$mid:1};return this._fsPath&&(e.fsPath=this._fsPath,e._sep=xs),this._formatted&&(e.external=this._formatted),this.path&&(e.path=this.path),this.scheme&&(e.scheme=this.scheme),this.authority&&(e.authority=this.authority),this.query&&(e.query=this.query),this.fragment&&(e.fragment=this.fragment),e}}const Ss={58:"%3A",47:"%2F",63:"%3F",35:"%23",91:"%5B",93:"%5D",64:"%40",33:"%21",36:"%24",38:"%26",39:"%27",40:"%28",41:"%29",42:"%2A",43:"%2B",44:"%2C",59:"%3B",61:"%3D",32:"%20"};function _s(t,e,n){let r,i=-1;for(let s=0;s=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57||a===45||a===46||a===95||a===126||e&&a===47||n&&a===91||n&&a===93||n&&a===58)i!==-1&&(r+=encodeURIComponent(t.substring(i,s)),i=-1),r!==void 0&&(r+=t.charAt(s));else{r===void 0&&(r=t.substr(0,s));const o=Ss[a];o!==void 0?(i!==-1&&(r+=encodeURIComponent(t.substring(i,s)),i=-1),r+=o):i===-1&&(i=s)}}return i!==-1&&(r+=encodeURIComponent(t.substring(i))),r!==void 0?r:t}function Qc(t){let e;for(let n=0;n1&&t.scheme==="file"?n=`//${t.authority}${t.path}`:t.path.charCodeAt(0)===47&&(t.path.charCodeAt(1)>=65&&t.path.charCodeAt(1)<=90||t.path.charCodeAt(1)>=97&&t.path.charCodeAt(1)<=122)&&t.path.charCodeAt(2)===58?e?n=t.path.substr(1):n=t.path[1].toLowerCase()+t.path.substr(2):n=t.path,sn&&(n=n.replace(/\//g,"\\")),n}function zr(t,e){const n=e?Qc:_s;let r="",{scheme:i,authority:s,path:a,query:o,fragment:l}=t;if(i&&(r+=i,r+=":"),(s||i==="file")&&(r+=Xe,r+=Xe),s){let c=s.indexOf("@");if(c!==-1){const h=s.substr(0,c);s=s.substr(c+1),c=h.lastIndexOf(":"),c===-1?r+=n(h,!1,!1):(r+=n(h.substr(0,c),!1,!1),r+=":",r+=n(h.substr(c+1),!1,!0)),r+="@"}s=s.toLowerCase(),c=s.lastIndexOf(":"),c===-1?r+=n(s,!1,!0):(r+=n(s.substr(0,c),!1,!0),r+=s.substr(c))}if(a){if(a.length>=3&&a.charCodeAt(0)===47&&a.charCodeAt(2)===58){const c=a.charCodeAt(1);c>=65&&c<=90&&(a=`/${String.fromCharCode(c+32)}:${a.substr(3)}`)}else if(a.length>=2&&a.charCodeAt(1)===58){const c=a.charCodeAt(0);c>=65&&c<=90&&(a=`${String.fromCharCode(c+32)}:${a.substr(2)}`)}r+=n(a,!0,!1)}return o&&(r+="?",r+=n(o,!1,!1)),l&&(r+="#",r+=e?l:_s(l,!1,!1)),r}function Cs(t){try{return decodeURIComponent(t)}catch(e){return t.length>3?t.substr(0,3)+Cs(t.substr(3)):t}}const ks=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function jn(t){return t.match(ks)?t.replace(ks,e=>Cs(e)):t}let tt=class Mt{constructor(e,n){this.lineNumber=e,this.column=n}with(e=this.lineNumber,n=this.column){return e===this.lineNumber&&n===this.column?this:new Mt(e,n)}delta(e=0,n=0){return this.with(this.lineNumber+e,this.column+n)}equals(e){return Mt.equals(this,e)}static equals(e,n){return!e&&!n?!0:!!e&&!!n&&e.lineNumber===n.lineNumber&&e.column===n.column}isBefore(e){return Mt.isBefore(this,e)}static isBefore(e,n){return e.lineNumberr||e===r&&n>i?(this.startLineNumber=r,this.startColumn=i,this.endLineNumber=e,this.endColumn=n):(this.startLineNumber=e,this.startColumn=n,this.endLineNumber=r,this.endColumn=i)}isEmpty(){return ue.isEmpty(this)}static isEmpty(e){return e.startLineNumber===e.endLineNumber&&e.startColumn===e.endColumn}containsPosition(e){return ue.containsPosition(this,e)}static containsPosition(e,n){return!(n.lineNumbere.endLineNumber||n.lineNumber===e.startLineNumber&&n.columne.endColumn)}static strictContainsPosition(e,n){return!(n.lineNumbere.endLineNumber||n.lineNumber===e.startLineNumber&&n.column<=e.startColumn||n.lineNumber===e.endLineNumber&&n.column>=e.endColumn)}containsRange(e){return ue.containsRange(this,e)}static containsRange(e,n){return!(n.startLineNumbere.endLineNumber||n.endLineNumber>e.endLineNumber||n.startLineNumber===e.startLineNumber&&n.startColumne.endColumn)}strictContainsRange(e){return ue.strictContainsRange(this,e)}static strictContainsRange(e,n){return!(n.startLineNumbere.endLineNumber||n.endLineNumber>e.endLineNumber||n.startLineNumber===e.startLineNumber&&n.startColumn<=e.startColumn||n.endLineNumber===e.endLineNumber&&n.endColumn>=e.endColumn)}plusRange(e){return ue.plusRange(this,e)}static plusRange(e,n){let r,i,s,a;return n.startLineNumbere.endLineNumber?(s=n.endLineNumber,a=n.endColumn):n.endLineNumber===e.endLineNumber?(s=n.endLineNumber,a=Math.max(n.endColumn,e.endColumn)):(s=e.endLineNumber,a=e.endColumn),new ue(r,i,s,a)}intersectRanges(e){return ue.intersectRanges(this,e)}static intersectRanges(e,n){let r=e.startLineNumber,i=e.startColumn,s=e.endLineNumber,a=e.endColumn;const o=n.startLineNumber,l=n.startColumn,c=n.endLineNumber,h=n.endColumn;return rc?(s=c,a=h):s===c&&(a=Math.min(a,h)),r>s||r===s&&i>a?null:new ue(r,i,s,a)}equalsRange(e){return ue.equalsRange(this,e)}static equalsRange(e,n){return!e&&!n?!0:!!e&&!!n&&e.startLineNumber===n.startLineNumber&&e.startColumn===n.startColumn&&e.endLineNumber===n.endLineNumber&&e.endColumn===n.endColumn}getEndPosition(){return ue.getEndPosition(this)}static getEndPosition(e){return new tt(e.endLineNumber,e.endColumn)}getStartPosition(){return ue.getStartPosition(this)}static getStartPosition(e){return new tt(e.startLineNumber,e.startColumn)}toString(){return"["+this.startLineNumber+","+this.startColumn+" -> "+this.endLineNumber+","+this.endColumn+"]"}setEndPosition(e,n){return new ue(this.startLineNumber,this.startColumn,e,n)}setStartPosition(e,n){return new ue(e,n,this.endLineNumber,this.endColumn)}collapseToStart(){return ue.collapseToStart(this)}static collapseToStart(e){return new ue(e.startLineNumber,e.startColumn,e.startLineNumber,e.startColumn)}collapseToEnd(){return ue.collapseToEnd(this)}static collapseToEnd(e){return new ue(e.endLineNumber,e.endColumn,e.endLineNumber,e.endColumn)}delta(e){return new ue(this.startLineNumber+e,this.startColumn,this.endLineNumber+e,this.endColumn)}static fromPositions(e,n=e){return new ue(e.lineNumber,e.column,n.lineNumber,n.column)}static lift(e){return e?new ue(e.startLineNumber,e.startColumn,e.endLineNumber,e.endColumn):null}static isIRange(e){return e&&typeof e.startLineNumber=="number"&&typeof e.startColumn=="number"&&typeof e.endLineNumber=="number"&&typeof e.endColumn=="number"}static areIntersectingOrTouching(e,n){return!(e.endLineNumbere.startLineNumber}toJSON(){return this}};var Es;(function(t){function e(i){return i<0}t.isLessThan=e;function n(i){return i>0}t.isGreaterThan=n;function r(i){return i===0}t.isNeitherLessOrGreaterThan=r,t.greaterThan=1,t.lessThan=-1,t.neitherLessOrGreaterThan=0})(Es||(Es={}));function Rs(t){return t<0?0:t>255?255:t|0}function Vt(t){return t<0?0:t>4294967295?4294967295:t|0}class Zc{constructor(e){this.values=e,this.prefixSum=new Uint32Array(e.length),this.prefixSumValidIndex=new Int32Array(1),this.prefixSumValidIndex[0]=-1}insertValues(e,n){e=Vt(e);const r=this.values,i=this.prefixSum,s=n.length;return s===0?!1:(this.values=new Uint32Array(r.length+s),this.values.set(r.subarray(0,e),0),this.values.set(r.subarray(e),e+s),this.values.set(n,e),e-1=0&&this.prefixSum.set(i.subarray(0,this.prefixSumValidIndex[0]+1)),!0)}setValue(e,n){return e=Vt(e),n=Vt(n),this.values[e]===n?!1:(this.values[e]=n,e-1=r.length)return!1;const s=r.length-e;return n>=s&&(n=s),n===0?!1:(this.values=new Uint32Array(r.length-n),this.values.set(r.subarray(0,e),0),this.values.set(r.subarray(e+n),e),this.prefixSum=new Uint32Array(this.values.length),e-1=0&&this.prefixSum.set(i.subarray(0,this.prefixSumValidIndex[0]+1)),!0)}getTotalSum(){return this.values.length===0?0:this._getPrefixSum(this.values.length-1)}getPrefixSum(e){return e<0?0:(e=Vt(e),this._getPrefixSum(e))}_getPrefixSum(e){if(e<=this.prefixSumValidIndex[0])return this.prefixSum[e];let n=this.prefixSumValidIndex[0]+1;n===0&&(this.prefixSum[0]=this.values[0],n++),e>=this.values.length&&(e=this.values.length-1);for(let r=n;r<=e;r++)this.prefixSum[r]=this.prefixSum[r-1]+this.values[r];return this.prefixSumValidIndex[0]=Math.max(this.prefixSumValidIndex[0],e),this.prefixSum[e]}getIndexOf(e){e=Math.floor(e),this.getTotalSum();let n=0,r=this.values.length-1,i=0,s=0,a=0;for(;n<=r;)if(i=n+(r-n)/2|0,s=this.prefixSum[i],a=s-this.values[i],e=s)n=i+1;else break;return new eh(i,e-a)}}class eh{constructor(e,n){this.index=e,this.remainder=n,this._prefixSumIndexOfResultBrand=void 0,this.index=e,this.remainder=n}}class th{constructor(e,n,r,i){this._uri=e,this._lines=n,this._eol=r,this._versionId=i,this._lineStarts=null,this._cachedTextValue=null}dispose(){this._lines.length=0}get version(){return this._versionId}getText(){return this._cachedTextValue===null&&(this._cachedTextValue=this._lines.join(this._eol)),this._cachedTextValue}onEvents(e){e.eol&&e.eol!==this._eol&&(this._eol=e.eol,this._lineStarts=null);const n=e.changes;for(const r of n)this._acceptDeleteRange(r.range),this._acceptInsertText(new tt(r.range.startLineNumber,r.range.startColumn),r.text);this._versionId=e.versionId,this._cachedTextValue=null}_ensureLineStarts(){if(!this._lineStarts){const e=this._eol.length,n=this._lines.length,r=new Uint32Array(n);for(let i=0;i/?";function rh(t=""){let e="(-?\\d*\\.\\d\\w*)|([^";for(const n of nh)t.indexOf(n)>=0||(e+="\\"+n);return e+="\\s]+)",new RegExp(e,"g")}const Fs=rh();function ih(t){let e=Fs;if(t&&t instanceof RegExp)if(t.global)e=t;else{let n="g";t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),e=new RegExp(t.source,n)}return e.lastIndex=0,e}const Ds=new ec;Ds.unshift({maxLen:1e3,windowSize:15,timeBudget:150});function Lr(t,e,n,r,i){if(i||(i=Tn.first(Ds)),n.length>i.maxLen){let c=t-i.maxLen/2;return c<0?c=0:r+=c,n=n.substring(c,t+i.maxLen/2),Lr(t,e,n,r,i)}const s=Date.now(),a=t-1-r;let o=-1,l=null;for(let c=1;!(Date.now()-s>=i.timeBudget);c++){const h=a-i.windowSize*c;e.lastIndex=Math.max(0,h);const u=sh(e,n,a,o);if(!u&&l||(l=u,h<=0))break;o=h}if(l){const c={word:l[0],startColumn:r+1+l.index,endColumn:r+1+l.index+l[0].length};return e.lastIndex=0,c}return null}function sh(t,e,n,r){let i;for(;i=t.exec(e);){const s=i.index||0;if(s<=n&&t.lastIndex>=n)return i;if(r>0&&s>r)return null}return null}class Tr{constructor(e){const n=Rs(e);this._defaultValue=n,this._asciiMap=Tr._createAsciiMap(n),this._map=new Map}static _createAsciiMap(e){const n=new Uint8Array(256);return n.fill(e),n}set(e,n){const r=Rs(n);e>=0&&e<256?this._asciiMap[e]=r:this._map.set(e,r)}get(e){return e>=0&&e<256?this._asciiMap[e]:this._map.get(e)||this._defaultValue}clear(){this._asciiMap.fill(this._defaultValue),this._map.clear()}}class ah{constructor(e,n,r){const i=new Uint8Array(e*n);for(let s=0,a=e*n;sn&&(n=l),o>r&&(r=o),c>r&&(r=c)}n++,r++;const i=new ah(r,n,0);for(let s=0,a=e.length;s=this._maxCharCode?0:this._states.get(e,n)}}let Or=null;function lh(){return Or===null&&(Or=new oh([[1,104,2],[1,72,2],[1,102,6],[1,70,6],[2,116,3],[2,84,3],[3,116,4],[3,84,4],[4,112,5],[4,80,5],[5,115,9],[5,83,9],[5,58,10],[6,105,7],[6,73,7],[7,108,8],[7,76,8],[8,101,9],[8,69,9],[9,58,10],[10,47,11],[11,47,12]])),Or}let an=null;function ch(){if(an===null){an=new Tr(0);const t=` <>'"、。。、,.:;‘〈「『〔([{「」}])〕』」〉’`~…`;for(let n=0;ni);if(i>0){const o=n.charCodeAt(i-1),l=n.charCodeAt(a);(o===40&&l===41||o===91&&l===93||o===123&&l===125)&&a--}return{range:{startLineNumber:r,startColumn:i+1,endLineNumber:r,endColumn:a+2},url:n.substring(i,a+1)}}static computeLinks(e,n=lh()){const r=ch(),i=[];for(let s=1,a=e.getLineCount();s<=a;s++){const o=e.getLineContent(s),l=o.length;let c=0,h=0,u=0,f=1,m=!1,g=!1,v=!1,y=!1;for(;c=0?(i+=r?1:-1,i<0?i=e.length-1:i%=e.length,e[i]):null}}Wr.INSTANCE=new Wr;const As=Object.freeze(function(t,e){const n=setTimeout(t.bind(e),0);return{dispose(){clearTimeout(n)}}});var qn;(function(t){function e(n){return n===t.None||n===t.Cancelled||n instanceof $n?!0:!n||typeof n!="object"?!1:typeof n.isCancellationRequested=="boolean"&&typeof n.onCancellationRequested=="function"}t.isCancellationToken=e,t.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:Sr.None}),t.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:As})})(qn||(qn={}));class $n{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?As:(this._emitter||(this._emitter=new Ze),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=null)}}class dh{constructor(e){this._token=void 0,this._parentListener=void 0,this._parentListener=e&&e.onCancellationRequested(this.cancel,this)}get token(){return this._token||(this._token=new $n),this._token}cancel(){this._token?this._token instanceof $n&&this._token.cancel():this._token=qn.Cancelled}dispose(e=!1){var n;e&&this.cancel(),(n=this._parentListener)===null||n===void 0||n.dispose(),this._token?this._token instanceof $n&&this._token.dispose():this._token=qn.None}}class Ur{constructor(){this._keyCodeToStr=[],this._strToKeyCode=Object.create(null)}define(e,n){this._keyCodeToStr[e]=n,this._strToKeyCode[n.toLowerCase()]=e}keyCodeToStr(e){return this._keyCodeToStr[e]}strToKeyCode(e){return this._strToKeyCode[e.toLowerCase()]||0}}const Hn=new Ur,Vr=new Ur,jr=new Ur,uh=new Array(230),ph=Object.create(null),mh=Object.create(null);(function(){const t="",e=[[1,0,"None",0,"unknown",0,"VK_UNKNOWN",t,t],[1,1,"Hyper",0,t,0,t,t,t],[1,2,"Super",0,t,0,t,t,t],[1,3,"Fn",0,t,0,t,t,t],[1,4,"FnLock",0,t,0,t,t,t],[1,5,"Suspend",0,t,0,t,t,t],[1,6,"Resume",0,t,0,t,t,t],[1,7,"Turbo",0,t,0,t,t,t],[1,8,"Sleep",0,t,0,"VK_SLEEP",t,t],[1,9,"WakeUp",0,t,0,t,t,t],[0,10,"KeyA",31,"A",65,"VK_A",t,t],[0,11,"KeyB",32,"B",66,"VK_B",t,t],[0,12,"KeyC",33,"C",67,"VK_C",t,t],[0,13,"KeyD",34,"D",68,"VK_D",t,t],[0,14,"KeyE",35,"E",69,"VK_E",t,t],[0,15,"KeyF",36,"F",70,"VK_F",t,t],[0,16,"KeyG",37,"G",71,"VK_G",t,t],[0,17,"KeyH",38,"H",72,"VK_H",t,t],[0,18,"KeyI",39,"I",73,"VK_I",t,t],[0,19,"KeyJ",40,"J",74,"VK_J",t,t],[0,20,"KeyK",41,"K",75,"VK_K",t,t],[0,21,"KeyL",42,"L",76,"VK_L",t,t],[0,22,"KeyM",43,"M",77,"VK_M",t,t],[0,23,"KeyN",44,"N",78,"VK_N",t,t],[0,24,"KeyO",45,"O",79,"VK_O",t,t],[0,25,"KeyP",46,"P",80,"VK_P",t,t],[0,26,"KeyQ",47,"Q",81,"VK_Q",t,t],[0,27,"KeyR",48,"R",82,"VK_R",t,t],[0,28,"KeyS",49,"S",83,"VK_S",t,t],[0,29,"KeyT",50,"T",84,"VK_T",t,t],[0,30,"KeyU",51,"U",85,"VK_U",t,t],[0,31,"KeyV",52,"V",86,"VK_V",t,t],[0,32,"KeyW",53,"W",87,"VK_W",t,t],[0,33,"KeyX",54,"X",88,"VK_X",t,t],[0,34,"KeyY",55,"Y",89,"VK_Y",t,t],[0,35,"KeyZ",56,"Z",90,"VK_Z",t,t],[0,36,"Digit1",22,"1",49,"VK_1",t,t],[0,37,"Digit2",23,"2",50,"VK_2",t,t],[0,38,"Digit3",24,"3",51,"VK_3",t,t],[0,39,"Digit4",25,"4",52,"VK_4",t,t],[0,40,"Digit5",26,"5",53,"VK_5",t,t],[0,41,"Digit6",27,"6",54,"VK_6",t,t],[0,42,"Digit7",28,"7",55,"VK_7",t,t],[0,43,"Digit8",29,"8",56,"VK_8",t,t],[0,44,"Digit9",30,"9",57,"VK_9",t,t],[0,45,"Digit0",21,"0",48,"VK_0",t,t],[1,46,"Enter",3,"Enter",13,"VK_RETURN",t,t],[1,47,"Escape",9,"Escape",27,"VK_ESCAPE",t,t],[1,48,"Backspace",1,"Backspace",8,"VK_BACK",t,t],[1,49,"Tab",2,"Tab",9,"VK_TAB",t,t],[1,50,"Space",10,"Space",32,"VK_SPACE",t,t],[0,51,"Minus",88,"-",189,"VK_OEM_MINUS","-","OEM_MINUS"],[0,52,"Equal",86,"=",187,"VK_OEM_PLUS","=","OEM_PLUS"],[0,53,"BracketLeft",92,"[",219,"VK_OEM_4","[","OEM_4"],[0,54,"BracketRight",94,"]",221,"VK_OEM_6","]","OEM_6"],[0,55,"Backslash",93,"\\",220,"VK_OEM_5","\\","OEM_5"],[0,56,"IntlHash",0,t,0,t,t,t],[0,57,"Semicolon",85,";",186,"VK_OEM_1",";","OEM_1"],[0,58,"Quote",95,"'",222,"VK_OEM_7","'","OEM_7"],[0,59,"Backquote",91,"`",192,"VK_OEM_3","`","OEM_3"],[0,60,"Comma",87,",",188,"VK_OEM_COMMA",",","OEM_COMMA"],[0,61,"Period",89,".",190,"VK_OEM_PERIOD",".","OEM_PERIOD"],[0,62,"Slash",90,"/",191,"VK_OEM_2","/","OEM_2"],[1,63,"CapsLock",8,"CapsLock",20,"VK_CAPITAL",t,t],[1,64,"F1",59,"F1",112,"VK_F1",t,t],[1,65,"F2",60,"F2",113,"VK_F2",t,t],[1,66,"F3",61,"F3",114,"VK_F3",t,t],[1,67,"F4",62,"F4",115,"VK_F4",t,t],[1,68,"F5",63,"F5",116,"VK_F5",t,t],[1,69,"F6",64,"F6",117,"VK_F6",t,t],[1,70,"F7",65,"F7",118,"VK_F7",t,t],[1,71,"F8",66,"F8",119,"VK_F8",t,t],[1,72,"F9",67,"F9",120,"VK_F9",t,t],[1,73,"F10",68,"F10",121,"VK_F10",t,t],[1,74,"F11",69,"F11",122,"VK_F11",t,t],[1,75,"F12",70,"F12",123,"VK_F12",t,t],[1,76,"PrintScreen",0,t,0,t,t,t],[1,77,"ScrollLock",84,"ScrollLock",145,"VK_SCROLL",t,t],[1,78,"Pause",7,"PauseBreak",19,"VK_PAUSE",t,t],[1,79,"Insert",19,"Insert",45,"VK_INSERT",t,t],[1,80,"Home",14,"Home",36,"VK_HOME",t,t],[1,81,"PageUp",11,"PageUp",33,"VK_PRIOR",t,t],[1,82,"Delete",20,"Delete",46,"VK_DELETE",t,t],[1,83,"End",13,"End",35,"VK_END",t,t],[1,84,"PageDown",12,"PageDown",34,"VK_NEXT",t,t],[1,85,"ArrowRight",17,"RightArrow",39,"VK_RIGHT","Right",t],[1,86,"ArrowLeft",15,"LeftArrow",37,"VK_LEFT","Left",t],[1,87,"ArrowDown",18,"DownArrow",40,"VK_DOWN","Down",t],[1,88,"ArrowUp",16,"UpArrow",38,"VK_UP","Up",t],[1,89,"NumLock",83,"NumLock",144,"VK_NUMLOCK",t,t],[1,90,"NumpadDivide",113,"NumPad_Divide",111,"VK_DIVIDE",t,t],[1,91,"NumpadMultiply",108,"NumPad_Multiply",106,"VK_MULTIPLY",t,t],[1,92,"NumpadSubtract",111,"NumPad_Subtract",109,"VK_SUBTRACT",t,t],[1,93,"NumpadAdd",109,"NumPad_Add",107,"VK_ADD",t,t],[1,94,"NumpadEnter",3,t,0,t,t,t],[1,95,"Numpad1",99,"NumPad1",97,"VK_NUMPAD1",t,t],[1,96,"Numpad2",100,"NumPad2",98,"VK_NUMPAD2",t,t],[1,97,"Numpad3",101,"NumPad3",99,"VK_NUMPAD3",t,t],[1,98,"Numpad4",102,"NumPad4",100,"VK_NUMPAD4",t,t],[1,99,"Numpad5",103,"NumPad5",101,"VK_NUMPAD5",t,t],[1,100,"Numpad6",104,"NumPad6",102,"VK_NUMPAD6",t,t],[1,101,"Numpad7",105,"NumPad7",103,"VK_NUMPAD7",t,t],[1,102,"Numpad8",106,"NumPad8",104,"VK_NUMPAD8",t,t],[1,103,"Numpad9",107,"NumPad9",105,"VK_NUMPAD9",t,t],[1,104,"Numpad0",98,"NumPad0",96,"VK_NUMPAD0",t,t],[1,105,"NumpadDecimal",112,"NumPad_Decimal",110,"VK_DECIMAL",t,t],[0,106,"IntlBackslash",97,"OEM_102",226,"VK_OEM_102",t,t],[1,107,"ContextMenu",58,"ContextMenu",93,t,t,t],[1,108,"Power",0,t,0,t,t,t],[1,109,"NumpadEqual",0,t,0,t,t,t],[1,110,"F13",71,"F13",124,"VK_F13",t,t],[1,111,"F14",72,"F14",125,"VK_F14",t,t],[1,112,"F15",73,"F15",126,"VK_F15",t,t],[1,113,"F16",74,"F16",127,"VK_F16",t,t],[1,114,"F17",75,"F17",128,"VK_F17",t,t],[1,115,"F18",76,"F18",129,"VK_F18",t,t],[1,116,"F19",77,"F19",130,"VK_F19",t,t],[1,117,"F20",78,"F20",131,"VK_F20",t,t],[1,118,"F21",79,"F21",132,"VK_F21",t,t],[1,119,"F22",80,"F22",133,"VK_F22",t,t],[1,120,"F23",81,"F23",134,"VK_F23",t,t],[1,121,"F24",82,"F24",135,"VK_F24",t,t],[1,122,"Open",0,t,0,t,t,t],[1,123,"Help",0,t,0,t,t,t],[1,124,"Select",0,t,0,t,t,t],[1,125,"Again",0,t,0,t,t,t],[1,126,"Undo",0,t,0,t,t,t],[1,127,"Cut",0,t,0,t,t,t],[1,128,"Copy",0,t,0,t,t,t],[1,129,"Paste",0,t,0,t,t,t],[1,130,"Find",0,t,0,t,t,t],[1,131,"AudioVolumeMute",117,"AudioVolumeMute",173,"VK_VOLUME_MUTE",t,t],[1,132,"AudioVolumeUp",118,"AudioVolumeUp",175,"VK_VOLUME_UP",t,t],[1,133,"AudioVolumeDown",119,"AudioVolumeDown",174,"VK_VOLUME_DOWN",t,t],[1,134,"NumpadComma",110,"NumPad_Separator",108,"VK_SEPARATOR",t,t],[0,135,"IntlRo",115,"ABNT_C1",193,"VK_ABNT_C1",t,t],[1,136,"KanaMode",0,t,0,t,t,t],[0,137,"IntlYen",0,t,0,t,t,t],[1,138,"Convert",0,t,0,t,t,t],[1,139,"NonConvert",0,t,0,t,t,t],[1,140,"Lang1",0,t,0,t,t,t],[1,141,"Lang2",0,t,0,t,t,t],[1,142,"Lang3",0,t,0,t,t,t],[1,143,"Lang4",0,t,0,t,t,t],[1,144,"Lang5",0,t,0,t,t,t],[1,145,"Abort",0,t,0,t,t,t],[1,146,"Props",0,t,0,t,t,t],[1,147,"NumpadParenLeft",0,t,0,t,t,t],[1,148,"NumpadParenRight",0,t,0,t,t,t],[1,149,"NumpadBackspace",0,t,0,t,t,t],[1,150,"NumpadMemoryStore",0,t,0,t,t,t],[1,151,"NumpadMemoryRecall",0,t,0,t,t,t],[1,152,"NumpadMemoryClear",0,t,0,t,t,t],[1,153,"NumpadMemoryAdd",0,t,0,t,t,t],[1,154,"NumpadMemorySubtract",0,t,0,t,t,t],[1,155,"NumpadClear",131,"Clear",12,"VK_CLEAR",t,t],[1,156,"NumpadClearEntry",0,t,0,t,t,t],[1,0,t,5,"Ctrl",17,"VK_CONTROL",t,t],[1,0,t,4,"Shift",16,"VK_SHIFT",t,t],[1,0,t,6,"Alt",18,"VK_MENU",t,t],[1,0,t,57,"Meta",91,"VK_COMMAND",t,t],[1,157,"ControlLeft",5,t,0,"VK_LCONTROL",t,t],[1,158,"ShiftLeft",4,t,0,"VK_LSHIFT",t,t],[1,159,"AltLeft",6,t,0,"VK_LMENU",t,t],[1,160,"MetaLeft",57,t,0,"VK_LWIN",t,t],[1,161,"ControlRight",5,t,0,"VK_RCONTROL",t,t],[1,162,"ShiftRight",4,t,0,"VK_RSHIFT",t,t],[1,163,"AltRight",6,t,0,"VK_RMENU",t,t],[1,164,"MetaRight",57,t,0,"VK_RWIN",t,t],[1,165,"BrightnessUp",0,t,0,t,t,t],[1,166,"BrightnessDown",0,t,0,t,t,t],[1,167,"MediaPlay",0,t,0,t,t,t],[1,168,"MediaRecord",0,t,0,t,t,t],[1,169,"MediaFastForward",0,t,0,t,t,t],[1,170,"MediaRewind",0,t,0,t,t,t],[1,171,"MediaTrackNext",124,"MediaTrackNext",176,"VK_MEDIA_NEXT_TRACK",t,t],[1,172,"MediaTrackPrevious",125,"MediaTrackPrevious",177,"VK_MEDIA_PREV_TRACK",t,t],[1,173,"MediaStop",126,"MediaStop",178,"VK_MEDIA_STOP",t,t],[1,174,"Eject",0,t,0,t,t,t],[1,175,"MediaPlayPause",127,"MediaPlayPause",179,"VK_MEDIA_PLAY_PAUSE",t,t],[1,176,"MediaSelect",128,"LaunchMediaPlayer",181,"VK_MEDIA_LAUNCH_MEDIA_SELECT",t,t],[1,177,"LaunchMail",129,"LaunchMail",180,"VK_MEDIA_LAUNCH_MAIL",t,t],[1,178,"LaunchApp2",130,"LaunchApp2",183,"VK_MEDIA_LAUNCH_APP2",t,t],[1,179,"LaunchApp1",0,t,0,"VK_MEDIA_LAUNCH_APP1",t,t],[1,180,"SelectTask",0,t,0,t,t,t],[1,181,"LaunchScreenSaver",0,t,0,t,t,t],[1,182,"BrowserSearch",120,"BrowserSearch",170,"VK_BROWSER_SEARCH",t,t],[1,183,"BrowserHome",121,"BrowserHome",172,"VK_BROWSER_HOME",t,t],[1,184,"BrowserBack",122,"BrowserBack",166,"VK_BROWSER_BACK",t,t],[1,185,"BrowserForward",123,"BrowserForward",167,"VK_BROWSER_FORWARD",t,t],[1,186,"BrowserStop",0,t,0,"VK_BROWSER_STOP",t,t],[1,187,"BrowserRefresh",0,t,0,"VK_BROWSER_REFRESH",t,t],[1,188,"BrowserFavorites",0,t,0,"VK_BROWSER_FAVORITES",t,t],[1,189,"ZoomToggle",0,t,0,t,t,t],[1,190,"MailReply",0,t,0,t,t,t],[1,191,"MailForward",0,t,0,t,t,t],[1,192,"MailSend",0,t,0,t,t,t],[1,0,t,114,"KeyInComposition",229,t,t,t],[1,0,t,116,"ABNT_C2",194,"VK_ABNT_C2",t,t],[1,0,t,96,"OEM_8",223,"VK_OEM_8",t,t],[1,0,t,0,t,0,"VK_KANA",t,t],[1,0,t,0,t,0,"VK_HANGUL",t,t],[1,0,t,0,t,0,"VK_JUNJA",t,t],[1,0,t,0,t,0,"VK_FINAL",t,t],[1,0,t,0,t,0,"VK_HANJA",t,t],[1,0,t,0,t,0,"VK_KANJI",t,t],[1,0,t,0,t,0,"VK_CONVERT",t,t],[1,0,t,0,t,0,"VK_NONCONVERT",t,t],[1,0,t,0,t,0,"VK_ACCEPT",t,t],[1,0,t,0,t,0,"VK_MODECHANGE",t,t],[1,0,t,0,t,0,"VK_SELECT",t,t],[1,0,t,0,t,0,"VK_PRINT",t,t],[1,0,t,0,t,0,"VK_EXECUTE",t,t],[1,0,t,0,t,0,"VK_SNAPSHOT",t,t],[1,0,t,0,t,0,"VK_HELP",t,t],[1,0,t,0,t,0,"VK_APPS",t,t],[1,0,t,0,t,0,"VK_PROCESSKEY",t,t],[1,0,t,0,t,0,"VK_PACKET",t,t],[1,0,t,0,t,0,"VK_DBE_SBCSCHAR",t,t],[1,0,t,0,t,0,"VK_DBE_DBCSCHAR",t,t],[1,0,t,0,t,0,"VK_ATTN",t,t],[1,0,t,0,t,0,"VK_CRSEL",t,t],[1,0,t,0,t,0,"VK_EXSEL",t,t],[1,0,t,0,t,0,"VK_EREOF",t,t],[1,0,t,0,t,0,"VK_PLAY",t,t],[1,0,t,0,t,0,"VK_ZOOM",t,t],[1,0,t,0,t,0,"VK_NONAME",t,t],[1,0,t,0,t,0,"VK_PA1",t,t],[1,0,t,0,t,0,"VK_OEM_CLEAR",t,t]],n=[],r=[];for(const i of e){const[s,a,o,l,c,h,u,f,m]=i;if(r[a]||(r[a]=!0,ph[o]=a,mh[o.toLowerCase()]=a),!n[l]){if(n[l]=!0,!c)throw new Error(`String representation missing for key code ${l} around scan code ${o}`);Hn.define(l,c),Vr.define(l,f||c),jr.define(l,m||f||c)}h&&(uh[h]=l)}})();var Ps;(function(t){function e(o){return Hn.keyCodeToStr(o)}t.toString=e;function n(o){return Hn.strToKeyCode(o)}t.fromString=n;function r(o){return Vr.keyCodeToStr(o)}t.toUserSettingsUS=r;function i(o){return jr.keyCodeToStr(o)}t.toUserSettingsGeneral=i;function s(o){return Vr.strToKeyCode(o)||jr.strToKeyCode(o)}t.fromUserSettings=s;function a(o){if(o>=98&&o<=113)return null;switch(o){case 16:return"Up";case 18:return"Down";case 15:return"Left";case 17:return"Right"}return Hn.keyCodeToStr(o)}t.toElectronAccelerator=a})(Ps||(Ps={}));function fh(t,e){const n=(e&65535)<<16>>>0;return(t|n)>>>0}class Ie extends We{constructor(e,n,r,i){super(e,n,r,i),this.selectionStartLineNumber=e,this.selectionStartColumn=n,this.positionLineNumber=r,this.positionColumn=i}toString(){return"["+this.selectionStartLineNumber+","+this.selectionStartColumn+" -> "+this.positionLineNumber+","+this.positionColumn+"]"}equalsSelection(e){return Ie.selectionsEqual(this,e)}static selectionsEqual(e,n){return e.selectionStartLineNumber===n.selectionStartLineNumber&&e.selectionStartColumn===n.selectionStartColumn&&e.positionLineNumber===n.positionLineNumber&&e.positionColumn===n.positionColumn}getDirection(){return this.selectionStartLineNumber===this.startLineNumber&&this.selectionStartColumn===this.startColumn?0:1}setEndPosition(e,n){return this.getDirection()===0?new Ie(this.startLineNumber,this.startColumn,e,n):new Ie(e,n,this.startLineNumber,this.startColumn)}getPosition(){return new tt(this.positionLineNumber,this.positionColumn)}getSelectionStart(){return new tt(this.selectionStartLineNumber,this.selectionStartColumn)}setStartPosition(e,n){return this.getDirection()===0?new Ie(e,n,this.endLineNumber,this.endColumn):new Ie(this.endLineNumber,this.endColumn,e,n)}static fromPositions(e,n=e){return new Ie(e.lineNumber,e.column,n.lineNumber,n.column)}static fromRange(e,n){return n===0?new Ie(e.startLineNumber,e.startColumn,e.endLineNumber,e.endColumn):new Ie(e.endLineNumber,e.endColumn,e.startLineNumber,e.startColumn)}static liftSelection(e){return new Ie(e.selectionStartLineNumber,e.selectionStartColumn,e.positionLineNumber,e.positionColumn)}static selectionsArrEqual(e,n){if(e&&!n||!e&&n)return!1;if(!e&&!n)return!0;if(e.length!==n.length)return!1;for(let r=0,i=e.length;r{this._tokenizationSupports.get(e)===n&&(this._tokenizationSupports.delete(e),this.handleChange([e]))})}get(e){return this._tokenizationSupports.get(e)||null}registerFactory(e,n){var r;(r=this._factories.get(e))===null||r===void 0||r.dispose();const i=new bh(this,e,n);return this._factories.set(e,i),nn(()=>{const s=this._factories.get(e);!s||s!==i||(this._factories.delete(e),s.dispose())})}getOrCreate(e){return Br(this,void 0,void 0,function*(){const n=this.get(e);if(n)return n;const r=this._factories.get(e);return!r||r.isResolved?null:(yield r.resolve(),this.get(e))})}isResolved(e){if(this.get(e))return!0;const r=this._factories.get(e);return!!(!r||r.isResolved)}setColorMap(e){this._colorMap=e,this._onDidChange.fire({changedLanguages:Array.from(this._tokenizationSupports.keys()),changedColorMap:!0})}getColorMap(){return this._colorMap}getDefaultBackground(){return this._colorMap&&this._colorMap.length>2?this._colorMap[2]:null}}class bh extends rn{get isResolved(){return this._isResolved}constructor(e,n,r){super(),this._registry=e,this._languageId=n,this._factory=r,this._isDisposed=!1,this._resolvePromise=null,this._isResolved=!1}dispose(){this._isDisposed=!0,super.dispose()}resolve(){return Br(this,void 0,void 0,function*(){return this._resolvePromise||(this._resolvePromise=this._create()),this._resolvePromise})}_create(){return Br(this,void 0,void 0,function*(){const e=yield this._factory.tokenizationSupport;this._isResolved=!0,e&&!this._isDisposed&&this._register(this._registry.register(this._languageId,e))})}}class vh{constructor(e,n,r){this.offset=e,this.type=n,this.language=r,this._tokenBrand=void 0}toString(){return"("+this.offset+", "+this.type+")"}}var Ms;(function(t){const e=new Map;e.set(0,V.symbolMethod),e.set(1,V.symbolFunction),e.set(2,V.symbolConstructor),e.set(3,V.symbolField),e.set(4,V.symbolVariable),e.set(5,V.symbolClass),e.set(6,V.symbolStruct),e.set(7,V.symbolInterface),e.set(8,V.symbolModule),e.set(9,V.symbolProperty),e.set(10,V.symbolEvent),e.set(11,V.symbolOperator),e.set(12,V.symbolUnit),e.set(13,V.symbolValue),e.set(15,V.symbolEnum),e.set(14,V.symbolConstant),e.set(15,V.symbolEnum),e.set(16,V.symbolEnumMember),e.set(17,V.symbolKeyword),e.set(27,V.symbolSnippet),e.set(18,V.symbolText),e.set(19,V.symbolColor),e.set(20,V.symbolFile),e.set(21,V.symbolReference),e.set(22,V.symbolCustomColor),e.set(23,V.symbolFolder),e.set(24,V.symbolTypeParameter),e.set(25,V.account),e.set(26,V.issues);function n(s){let a=e.get(s);return a||(console.info("No codicon found for CompletionItemKind "+s),a=V.symbolProperty),a}t.toIcon=n;const r=new Map;r.set("method",0),r.set("function",1),r.set("constructor",2),r.set("field",3),r.set("variable",4),r.set("class",5),r.set("struct",6),r.set("interface",7),r.set("module",8),r.set("property",9),r.set("event",10),r.set("operator",11),r.set("unit",12),r.set("value",13),r.set("constant",14),r.set("enum",15),r.set("enum-member",16),r.set("enumMember",16),r.set("keyword",17),r.set("snippet",27),r.set("text",18),r.set("color",19),r.set("file",20),r.set("reference",21),r.set("customcolor",22),r.set("folder",23),r.set("type-parameter",24),r.set("typeParameter",24),r.set("account",25),r.set("issue",26);function i(s,a){let o=r.get(s);return typeof o=="undefined"&&!a&&(o=9),o}t.fromString=i})(Ms||(Ms={}));var Is;(function(t){t[t.Automatic=0]="Automatic",t[t.Explicit=1]="Explicit"})(Is||(Is={}));var zs;(function(t){t[t.Invoke=1]="Invoke",t[t.TriggerCharacter=2]="TriggerCharacter",t[t.ContentChange=3]="ContentChange"})(zs||(zs={}));var Ls;(function(t){t[t.Text=0]="Text",t[t.Read=1]="Read",t[t.Write=2]="Write"})(Ls||(Ls={}));var Ts;(function(t){const e=new Map;e.set(0,V.symbolFile),e.set(1,V.symbolModule),e.set(2,V.symbolNamespace),e.set(3,V.symbolPackage),e.set(4,V.symbolClass),e.set(5,V.symbolMethod),e.set(6,V.symbolProperty),e.set(7,V.symbolField),e.set(8,V.symbolConstructor),e.set(9,V.symbolEnum),e.set(10,V.symbolInterface),e.set(11,V.symbolFunction),e.set(12,V.symbolVariable),e.set(13,V.symbolConstant),e.set(14,V.symbolString),e.set(15,V.symbolNumber),e.set(16,V.symbolBoolean),e.set(17,V.symbolArray),e.set(18,V.symbolObject),e.set(19,V.symbolKey),e.set(20,V.symbolNull),e.set(21,V.symbolEnumMember),e.set(22,V.symbolStruct),e.set(23,V.symbolEvent),e.set(24,V.symbolOperator),e.set(25,V.symbolTypeParameter);function n(r){let i=e.get(r);return i||(console.info("No codicon found for SymbolKind "+r),i=V.symbolProperty),i}t.toIcon=n})(Ts||(Ts={}));var Os;(function(t){function e(n){return!n||typeof n!="object"?!1:typeof n.id=="string"&&typeof n.title=="string"}t.is=e})(Os||(Os={}));var Ws;(function(t){t[t.Type=1]="Type",t[t.Parameter=2]="Parameter"})(Ws||(Ws={})),new gh;var Us;(function(t){t[t.Unknown=0]="Unknown",t[t.Disabled=1]="Disabled",t[t.Enabled=2]="Enabled"})(Us||(Us={}));var Vs;(function(t){t[t.Invoke=1]="Invoke",t[t.Auto=2]="Auto"})(Vs||(Vs={}));var js;(function(t){t[t.None=0]="None",t[t.KeepWhitespace=1]="KeepWhitespace",t[t.InsertAsSnippet=4]="InsertAsSnippet"})(js||(js={}));var Bs;(function(t){t[t.Method=0]="Method",t[t.Function=1]="Function",t[t.Constructor=2]="Constructor",t[t.Field=3]="Field",t[t.Variable=4]="Variable",t[t.Class=5]="Class",t[t.Struct=6]="Struct",t[t.Interface=7]="Interface",t[t.Module=8]="Module",t[t.Property=9]="Property",t[t.Event=10]="Event",t[t.Operator=11]="Operator",t[t.Unit=12]="Unit",t[t.Value=13]="Value",t[t.Constant=14]="Constant",t[t.Enum=15]="Enum",t[t.EnumMember=16]="EnumMember",t[t.Keyword=17]="Keyword",t[t.Text=18]="Text",t[t.Color=19]="Color",t[t.File=20]="File",t[t.Reference=21]="Reference",t[t.Customcolor=22]="Customcolor",t[t.Folder=23]="Folder",t[t.TypeParameter=24]="TypeParameter",t[t.User=25]="User",t[t.Issue=26]="Issue",t[t.Snippet=27]="Snippet"})(Bs||(Bs={}));var qs;(function(t){t[t.Deprecated=1]="Deprecated"})(qs||(qs={}));var $s;(function(t){t[t.Invoke=0]="Invoke",t[t.TriggerCharacter=1]="TriggerCharacter",t[t.TriggerForIncompleteCompletions=2]="TriggerForIncompleteCompletions"})($s||($s={}));var Hs;(function(t){t[t.EXACT=0]="EXACT",t[t.ABOVE=1]="ABOVE",t[t.BELOW=2]="BELOW"})(Hs||(Hs={}));var Gs;(function(t){t[t.NotSet=0]="NotSet",t[t.ContentFlush=1]="ContentFlush",t[t.RecoverFromMarkers=2]="RecoverFromMarkers",t[t.Explicit=3]="Explicit",t[t.Paste=4]="Paste",t[t.Undo=5]="Undo",t[t.Redo=6]="Redo"})(Gs||(Gs={}));var Js;(function(t){t[t.LF=1]="LF",t[t.CRLF=2]="CRLF"})(Js||(Js={}));var Xs;(function(t){t[t.Text=0]="Text",t[t.Read=1]="Read",t[t.Write=2]="Write"})(Xs||(Xs={}));var Ys;(function(t){t[t.None=0]="None",t[t.Keep=1]="Keep",t[t.Brackets=2]="Brackets",t[t.Advanced=3]="Advanced",t[t.Full=4]="Full"})(Ys||(Ys={}));var Ks;(function(t){t[t.acceptSuggestionOnCommitCharacter=0]="acceptSuggestionOnCommitCharacter",t[t.acceptSuggestionOnEnter=1]="acceptSuggestionOnEnter",t[t.accessibilitySupport=2]="accessibilitySupport",t[t.accessibilityPageSize=3]="accessibilityPageSize",t[t.ariaLabel=4]="ariaLabel",t[t.autoClosingBrackets=5]="autoClosingBrackets",t[t.screenReaderAnnounceInlineSuggestion=6]="screenReaderAnnounceInlineSuggestion",t[t.autoClosingDelete=7]="autoClosingDelete",t[t.autoClosingOvertype=8]="autoClosingOvertype",t[t.autoClosingQuotes=9]="autoClosingQuotes",t[t.autoIndent=10]="autoIndent",t[t.automaticLayout=11]="automaticLayout",t[t.autoSurround=12]="autoSurround",t[t.bracketPairColorization=13]="bracketPairColorization",t[t.guides=14]="guides",t[t.codeLens=15]="codeLens",t[t.codeLensFontFamily=16]="codeLensFontFamily",t[t.codeLensFontSize=17]="codeLensFontSize",t[t.colorDecorators=18]="colorDecorators",t[t.colorDecoratorsLimit=19]="colorDecoratorsLimit",t[t.columnSelection=20]="columnSelection",t[t.comments=21]="comments",t[t.contextmenu=22]="contextmenu",t[t.copyWithSyntaxHighlighting=23]="copyWithSyntaxHighlighting",t[t.cursorBlinking=24]="cursorBlinking",t[t.cursorSmoothCaretAnimation=25]="cursorSmoothCaretAnimation",t[t.cursorStyle=26]="cursorStyle",t[t.cursorSurroundingLines=27]="cursorSurroundingLines",t[t.cursorSurroundingLinesStyle=28]="cursorSurroundingLinesStyle",t[t.cursorWidth=29]="cursorWidth",t[t.disableLayerHinting=30]="disableLayerHinting",t[t.disableMonospaceOptimizations=31]="disableMonospaceOptimizations",t[t.domReadOnly=32]="domReadOnly",t[t.dragAndDrop=33]="dragAndDrop",t[t.dropIntoEditor=34]="dropIntoEditor",t[t.emptySelectionClipboard=35]="emptySelectionClipboard",t[t.experimentalWhitespaceRendering=36]="experimentalWhitespaceRendering",t[t.extraEditorClassName=37]="extraEditorClassName",t[t.fastScrollSensitivity=38]="fastScrollSensitivity",t[t.find=39]="find",t[t.fixedOverflowWidgets=40]="fixedOverflowWidgets",t[t.folding=41]="folding",t[t.foldingStrategy=42]="foldingStrategy",t[t.foldingHighlight=43]="foldingHighlight",t[t.foldingImportsByDefault=44]="foldingImportsByDefault",t[t.foldingMaximumRegions=45]="foldingMaximumRegions",t[t.unfoldOnClickAfterEndOfLine=46]="unfoldOnClickAfterEndOfLine",t[t.fontFamily=47]="fontFamily",t[t.fontInfo=48]="fontInfo",t[t.fontLigatures=49]="fontLigatures",t[t.fontSize=50]="fontSize",t[t.fontWeight=51]="fontWeight",t[t.fontVariations=52]="fontVariations",t[t.formatOnPaste=53]="formatOnPaste",t[t.formatOnType=54]="formatOnType",t[t.glyphMargin=55]="glyphMargin",t[t.gotoLocation=56]="gotoLocation",t[t.hideCursorInOverviewRuler=57]="hideCursorInOverviewRuler",t[t.hover=58]="hover",t[t.inDiffEditor=59]="inDiffEditor",t[t.inlineSuggest=60]="inlineSuggest",t[t.letterSpacing=61]="letterSpacing",t[t.lightbulb=62]="lightbulb",t[t.lineDecorationsWidth=63]="lineDecorationsWidth",t[t.lineHeight=64]="lineHeight",t[t.lineNumbers=65]="lineNumbers",t[t.lineNumbersMinChars=66]="lineNumbersMinChars",t[t.linkedEditing=67]="linkedEditing",t[t.links=68]="links",t[t.matchBrackets=69]="matchBrackets",t[t.minimap=70]="minimap",t[t.mouseStyle=71]="mouseStyle",t[t.mouseWheelScrollSensitivity=72]="mouseWheelScrollSensitivity",t[t.mouseWheelZoom=73]="mouseWheelZoom",t[t.multiCursorMergeOverlapping=74]="multiCursorMergeOverlapping",t[t.multiCursorModifier=75]="multiCursorModifier",t[t.multiCursorPaste=76]="multiCursorPaste",t[t.multiCursorLimit=77]="multiCursorLimit",t[t.occurrencesHighlight=78]="occurrencesHighlight",t[t.overviewRulerBorder=79]="overviewRulerBorder",t[t.overviewRulerLanes=80]="overviewRulerLanes",t[t.padding=81]="padding",t[t.pasteAs=82]="pasteAs",t[t.parameterHints=83]="parameterHints",t[t.peekWidgetDefaultFocus=84]="peekWidgetDefaultFocus",t[t.definitionLinkOpensInPeek=85]="definitionLinkOpensInPeek",t[t.quickSuggestions=86]="quickSuggestions",t[t.quickSuggestionsDelay=87]="quickSuggestionsDelay",t[t.readOnly=88]="readOnly",t[t.readOnlyMessage=89]="readOnlyMessage",t[t.renameOnType=90]="renameOnType",t[t.renderControlCharacters=91]="renderControlCharacters",t[t.renderFinalNewline=92]="renderFinalNewline",t[t.renderLineHighlight=93]="renderLineHighlight",t[t.renderLineHighlightOnlyWhenFocus=94]="renderLineHighlightOnlyWhenFocus",t[t.renderValidationDecorations=95]="renderValidationDecorations",t[t.renderWhitespace=96]="renderWhitespace",t[t.revealHorizontalRightPadding=97]="revealHorizontalRightPadding",t[t.roundedSelection=98]="roundedSelection",t[t.rulers=99]="rulers",t[t.scrollbar=100]="scrollbar",t[t.scrollBeyondLastColumn=101]="scrollBeyondLastColumn",t[t.scrollBeyondLastLine=102]="scrollBeyondLastLine",t[t.scrollPredominantAxis=103]="scrollPredominantAxis",t[t.selectionClipboard=104]="selectionClipboard",t[t.selectionHighlight=105]="selectionHighlight",t[t.selectOnLineNumbers=106]="selectOnLineNumbers",t[t.showFoldingControls=107]="showFoldingControls",t[t.showUnused=108]="showUnused",t[t.snippetSuggestions=109]="snippetSuggestions",t[t.smartSelect=110]="smartSelect",t[t.smoothScrolling=111]="smoothScrolling",t[t.stickyScroll=112]="stickyScroll",t[t.stickyTabStops=113]="stickyTabStops",t[t.stopRenderingLineAfter=114]="stopRenderingLineAfter",t[t.suggest=115]="suggest",t[t.suggestFontSize=116]="suggestFontSize",t[t.suggestLineHeight=117]="suggestLineHeight",t[t.suggestOnTriggerCharacters=118]="suggestOnTriggerCharacters",t[t.suggestSelection=119]="suggestSelection",t[t.tabCompletion=120]="tabCompletion",t[t.tabIndex=121]="tabIndex",t[t.unicodeHighlighting=122]="unicodeHighlighting",t[t.unusualLineTerminators=123]="unusualLineTerminators",t[t.useShadowDOM=124]="useShadowDOM",t[t.useTabStops=125]="useTabStops",t[t.wordBreak=126]="wordBreak",t[t.wordSeparators=127]="wordSeparators",t[t.wordWrap=128]="wordWrap",t[t.wordWrapBreakAfterCharacters=129]="wordWrapBreakAfterCharacters",t[t.wordWrapBreakBeforeCharacters=130]="wordWrapBreakBeforeCharacters",t[t.wordWrapColumn=131]="wordWrapColumn",t[t.wordWrapOverride1=132]="wordWrapOverride1",t[t.wordWrapOverride2=133]="wordWrapOverride2",t[t.wrappingIndent=134]="wrappingIndent",t[t.wrappingStrategy=135]="wrappingStrategy",t[t.showDeprecated=136]="showDeprecated",t[t.inlayHints=137]="inlayHints",t[t.editorClassName=138]="editorClassName",t[t.pixelRatio=139]="pixelRatio",t[t.tabFocusMode=140]="tabFocusMode",t[t.layoutInfo=141]="layoutInfo",t[t.wrappingInfo=142]="wrappingInfo",t[t.defaultColorDecorators=143]="defaultColorDecorators",t[t.colorDecoratorsActivatedOn=144]="colorDecoratorsActivatedOn"})(Ks||(Ks={}));var Qs;(function(t){t[t.TextDefined=0]="TextDefined",t[t.LF=1]="LF",t[t.CRLF=2]="CRLF"})(Qs||(Qs={}));var Zs;(function(t){t[t.LF=0]="LF",t[t.CRLF=1]="CRLF"})(Zs||(Zs={}));var ea;(function(t){t[t.Left=1]="Left",t[t.Right=2]="Right"})(ea||(ea={}));var ta;(function(t){t[t.None=0]="None",t[t.Indent=1]="Indent",t[t.IndentOutdent=2]="IndentOutdent",t[t.Outdent=3]="Outdent"})(ta||(ta={}));var na;(function(t){t[t.Both=0]="Both",t[t.Right=1]="Right",t[t.Left=2]="Left",t[t.None=3]="None"})(na||(na={}));var ra;(function(t){t[t.Type=1]="Type",t[t.Parameter=2]="Parameter"})(ra||(ra={}));var ia;(function(t){t[t.Automatic=0]="Automatic",t[t.Explicit=1]="Explicit"})(ia||(ia={}));var qr;(function(t){t[t.DependsOnKbLayout=-1]="DependsOnKbLayout",t[t.Unknown=0]="Unknown",t[t.Backspace=1]="Backspace",t[t.Tab=2]="Tab",t[t.Enter=3]="Enter",t[t.Shift=4]="Shift",t[t.Ctrl=5]="Ctrl",t[t.Alt=6]="Alt",t[t.PauseBreak=7]="PauseBreak",t[t.CapsLock=8]="CapsLock",t[t.Escape=9]="Escape",t[t.Space=10]="Space",t[t.PageUp=11]="PageUp",t[t.PageDown=12]="PageDown",t[t.End=13]="End",t[t.Home=14]="Home",t[t.LeftArrow=15]="LeftArrow",t[t.UpArrow=16]="UpArrow",t[t.RightArrow=17]="RightArrow",t[t.DownArrow=18]="DownArrow",t[t.Insert=19]="Insert",t[t.Delete=20]="Delete",t[t.Digit0=21]="Digit0",t[t.Digit1=22]="Digit1",t[t.Digit2=23]="Digit2",t[t.Digit3=24]="Digit3",t[t.Digit4=25]="Digit4",t[t.Digit5=26]="Digit5",t[t.Digit6=27]="Digit6",t[t.Digit7=28]="Digit7",t[t.Digit8=29]="Digit8",t[t.Digit9=30]="Digit9",t[t.KeyA=31]="KeyA",t[t.KeyB=32]="KeyB",t[t.KeyC=33]="KeyC",t[t.KeyD=34]="KeyD",t[t.KeyE=35]="KeyE",t[t.KeyF=36]="KeyF",t[t.KeyG=37]="KeyG",t[t.KeyH=38]="KeyH",t[t.KeyI=39]="KeyI",t[t.KeyJ=40]="KeyJ",t[t.KeyK=41]="KeyK",t[t.KeyL=42]="KeyL",t[t.KeyM=43]="KeyM",t[t.KeyN=44]="KeyN",t[t.KeyO=45]="KeyO",t[t.KeyP=46]="KeyP",t[t.KeyQ=47]="KeyQ",t[t.KeyR=48]="KeyR",t[t.KeyS=49]="KeyS",t[t.KeyT=50]="KeyT",t[t.KeyU=51]="KeyU",t[t.KeyV=52]="KeyV",t[t.KeyW=53]="KeyW",t[t.KeyX=54]="KeyX",t[t.KeyY=55]="KeyY",t[t.KeyZ=56]="KeyZ",t[t.Meta=57]="Meta",t[t.ContextMenu=58]="ContextMenu",t[t.F1=59]="F1",t[t.F2=60]="F2",t[t.F3=61]="F3",t[t.F4=62]="F4",t[t.F5=63]="F5",t[t.F6=64]="F6",t[t.F7=65]="F7",t[t.F8=66]="F8",t[t.F9=67]="F9",t[t.F10=68]="F10",t[t.F11=69]="F11",t[t.F12=70]="F12",t[t.F13=71]="F13",t[t.F14=72]="F14",t[t.F15=73]="F15",t[t.F16=74]="F16",t[t.F17=75]="F17",t[t.F18=76]="F18",t[t.F19=77]="F19",t[t.F20=78]="F20",t[t.F21=79]="F21",t[t.F22=80]="F22",t[t.F23=81]="F23",t[t.F24=82]="F24",t[t.NumLock=83]="NumLock",t[t.ScrollLock=84]="ScrollLock",t[t.Semicolon=85]="Semicolon",t[t.Equal=86]="Equal",t[t.Comma=87]="Comma",t[t.Minus=88]="Minus",t[t.Period=89]="Period",t[t.Slash=90]="Slash",t[t.Backquote=91]="Backquote",t[t.BracketLeft=92]="BracketLeft",t[t.Backslash=93]="Backslash",t[t.BracketRight=94]="BracketRight",t[t.Quote=95]="Quote",t[t.OEM_8=96]="OEM_8",t[t.IntlBackslash=97]="IntlBackslash",t[t.Numpad0=98]="Numpad0",t[t.Numpad1=99]="Numpad1",t[t.Numpad2=100]="Numpad2",t[t.Numpad3=101]="Numpad3",t[t.Numpad4=102]="Numpad4",t[t.Numpad5=103]="Numpad5",t[t.Numpad6=104]="Numpad6",t[t.Numpad7=105]="Numpad7",t[t.Numpad8=106]="Numpad8",t[t.Numpad9=107]="Numpad9",t[t.NumpadMultiply=108]="NumpadMultiply",t[t.NumpadAdd=109]="NumpadAdd",t[t.NUMPAD_SEPARATOR=110]="NUMPAD_SEPARATOR",t[t.NumpadSubtract=111]="NumpadSubtract",t[t.NumpadDecimal=112]="NumpadDecimal",t[t.NumpadDivide=113]="NumpadDivide",t[t.KEY_IN_COMPOSITION=114]="KEY_IN_COMPOSITION",t[t.ABNT_C1=115]="ABNT_C1",t[t.ABNT_C2=116]="ABNT_C2",t[t.AudioVolumeMute=117]="AudioVolumeMute",t[t.AudioVolumeUp=118]="AudioVolumeUp",t[t.AudioVolumeDown=119]="AudioVolumeDown",t[t.BrowserSearch=120]="BrowserSearch",t[t.BrowserHome=121]="BrowserHome",t[t.BrowserBack=122]="BrowserBack",t[t.BrowserForward=123]="BrowserForward",t[t.MediaTrackNext=124]="MediaTrackNext",t[t.MediaTrackPrevious=125]="MediaTrackPrevious",t[t.MediaStop=126]="MediaStop",t[t.MediaPlayPause=127]="MediaPlayPause",t[t.LaunchMediaPlayer=128]="LaunchMediaPlayer",t[t.LaunchMail=129]="LaunchMail",t[t.LaunchApp2=130]="LaunchApp2",t[t.Clear=131]="Clear",t[t.MAX_VALUE=132]="MAX_VALUE"})(qr||(qr={}));var $r;(function(t){t[t.Hint=1]="Hint",t[t.Info=2]="Info",t[t.Warning=4]="Warning",t[t.Error=8]="Error"})($r||($r={}));var Hr;(function(t){t[t.Unnecessary=1]="Unnecessary",t[t.Deprecated=2]="Deprecated"})(Hr||(Hr={}));var sa;(function(t){t[t.Inline=1]="Inline",t[t.Gutter=2]="Gutter"})(sa||(sa={}));var aa;(function(t){t[t.UNKNOWN=0]="UNKNOWN",t[t.TEXTAREA=1]="TEXTAREA",t[t.GUTTER_GLYPH_MARGIN=2]="GUTTER_GLYPH_MARGIN",t[t.GUTTER_LINE_NUMBERS=3]="GUTTER_LINE_NUMBERS",t[t.GUTTER_LINE_DECORATIONS=4]="GUTTER_LINE_DECORATIONS",t[t.GUTTER_VIEW_ZONE=5]="GUTTER_VIEW_ZONE",t[t.CONTENT_TEXT=6]="CONTENT_TEXT",t[t.CONTENT_EMPTY=7]="CONTENT_EMPTY",t[t.CONTENT_VIEW_ZONE=8]="CONTENT_VIEW_ZONE",t[t.CONTENT_WIDGET=9]="CONTENT_WIDGET",t[t.OVERVIEW_RULER=10]="OVERVIEW_RULER",t[t.SCROLLBAR=11]="SCROLLBAR",t[t.OVERLAY_WIDGET=12]="OVERLAY_WIDGET",t[t.OUTSIDE_EDITOR=13]="OUTSIDE_EDITOR"})(aa||(aa={}));var oa;(function(t){t[t.TOP_RIGHT_CORNER=0]="TOP_RIGHT_CORNER",t[t.BOTTOM_RIGHT_CORNER=1]="BOTTOM_RIGHT_CORNER",t[t.TOP_CENTER=2]="TOP_CENTER"})(oa||(oa={}));var la;(function(t){t[t.Left=1]="Left",t[t.Center=2]="Center",t[t.Right=4]="Right",t[t.Full=7]="Full"})(la||(la={}));var ca;(function(t){t[t.Left=0]="Left",t[t.Right=1]="Right",t[t.None=2]="None",t[t.LeftOfInjectedText=3]="LeftOfInjectedText",t[t.RightOfInjectedText=4]="RightOfInjectedText"})(ca||(ca={}));var ha;(function(t){t[t.Off=0]="Off",t[t.On=1]="On",t[t.Relative=2]="Relative",t[t.Interval=3]="Interval",t[t.Custom=4]="Custom"})(ha||(ha={}));var da;(function(t){t[t.None=0]="None",t[t.Text=1]="Text",t[t.Blocks=2]="Blocks"})(da||(da={}));var ua;(function(t){t[t.Smooth=0]="Smooth",t[t.Immediate=1]="Immediate"})(ua||(ua={}));var pa;(function(t){t[t.Auto=1]="Auto",t[t.Hidden=2]="Hidden",t[t.Visible=3]="Visible"})(pa||(pa={}));var Gr;(function(t){t[t.LTR=0]="LTR",t[t.RTL=1]="RTL"})(Gr||(Gr={}));var ma;(function(t){t[t.Invoke=1]="Invoke",t[t.TriggerCharacter=2]="TriggerCharacter",t[t.ContentChange=3]="ContentChange"})(ma||(ma={}));var fa;(function(t){t[t.File=0]="File",t[t.Module=1]="Module",t[t.Namespace=2]="Namespace",t[t.Package=3]="Package",t[t.Class=4]="Class",t[t.Method=5]="Method",t[t.Property=6]="Property",t[t.Field=7]="Field",t[t.Constructor=8]="Constructor",t[t.Enum=9]="Enum",t[t.Interface=10]="Interface",t[t.Function=11]="Function",t[t.Variable=12]="Variable",t[t.Constant=13]="Constant",t[t.String=14]="String",t[t.Number=15]="Number",t[t.Boolean=16]="Boolean",t[t.Array=17]="Array",t[t.Object=18]="Object",t[t.Key=19]="Key",t[t.Null=20]="Null",t[t.EnumMember=21]="EnumMember",t[t.Struct=22]="Struct",t[t.Event=23]="Event",t[t.Operator=24]="Operator",t[t.TypeParameter=25]="TypeParameter"})(fa||(fa={}));var ga;(function(t){t[t.Deprecated=1]="Deprecated"})(ga||(ga={}));var ba;(function(t){t[t.Hidden=0]="Hidden",t[t.Blink=1]="Blink",t[t.Smooth=2]="Smooth",t[t.Phase=3]="Phase",t[t.Expand=4]="Expand",t[t.Solid=5]="Solid"})(ba||(ba={}));var va;(function(t){t[t.Line=1]="Line",t[t.Block=2]="Block",t[t.Underline=3]="Underline",t[t.LineThin=4]="LineThin",t[t.BlockOutline=5]="BlockOutline",t[t.UnderlineThin=6]="UnderlineThin"})(va||(va={}));var ya;(function(t){t[t.AlwaysGrowsWhenTypingAtEdges=0]="AlwaysGrowsWhenTypingAtEdges",t[t.NeverGrowsWhenTypingAtEdges=1]="NeverGrowsWhenTypingAtEdges",t[t.GrowsOnlyWhenTypingBefore=2]="GrowsOnlyWhenTypingBefore",t[t.GrowsOnlyWhenTypingAfter=3]="GrowsOnlyWhenTypingAfter"})(ya||(ya={}));var wa;(function(t){t[t.None=0]="None",t[t.Same=1]="Same",t[t.Indent=2]="Indent",t[t.DeepIndent=3]="DeepIndent"})(wa||(wa={}));class on{static chord(e,n){return fh(e,n)}}on.CtrlCmd=2048,on.Shift=1024,on.Alt=512,on.WinCtrl=256;function yh(){return{editor:void 0,languages:void 0,CancellationTokenSource:dh,Emitter:Ze,KeyCode:qr,KeyMod:on,Position:tt,Range:We,Selection:Ie,SelectionDirection:Gr,MarkerSeverity:$r,MarkerTag:Hr,Uri:Mr,Token:vh}}var xa;(function(t){t[t.Left=1]="Left",t[t.Center=2]="Center",t[t.Right=4]="Right",t[t.Full=7]="Full"})(xa||(xa={}));var Sa;(function(t){t[t.Left=1]="Left",t[t.Right=2]="Right"})(Sa||(Sa={}));var _a;(function(t){t[t.Inline=1]="Inline",t[t.Gutter=2]="Gutter"})(_a||(_a={}));var Ca;(function(t){t[t.Both=0]="Both",t[t.Right=1]="Right",t[t.Left=2]="Left",t[t.None=3]="None"})(Ca||(Ca={}));function wh(t,e,n,r,i){if(r===0)return!0;const s=e.charCodeAt(r-1);if(t.get(s)!==0||s===13||s===10)return!0;if(i>0){const a=e.charCodeAt(r);if(t.get(a)!==0)return!0}return!1}function xh(t,e,n,r,i){if(r+i===n)return!0;const s=e.charCodeAt(r+i);if(t.get(s)!==0||s===13||s===10)return!0;if(i>0){const a=e.charCodeAt(r+i-1);if(t.get(a)!==0)return!0}return!1}function Sh(t,e,n,r,i){return wh(t,e,n,r,i)&&xh(t,e,n,r,i)}class _h{constructor(e,n){this._wordSeparators=e,this._searchRegex=n,this._prevMatchStartIndex=-1,this._prevMatchLength=0}reset(e){this._searchRegex.lastIndex=e,this._prevMatchStartIndex=-1,this._prevMatchLength=0}next(e){const n=e.length;let r;do{if(this._prevMatchStartIndex+this._prevMatchLength===n||(r=this._searchRegex.exec(e),!r))return null;const i=r.index,s=r[0].length;if(i===this._prevMatchStartIndex&&s===this._prevMatchLength){if(s===0){Cc(e,n,this._searchRegex.lastIndex)>65535?this._searchRegex.lastIndex+=2:this._searchRegex.lastIndex+=1;continue}return null}if(this._prevMatchStartIndex=i,this._prevMatchLength=s,!this._wordSeparators||Sh(this._wordSeparators,e,n,i,s))return r}while(r);return null}}function Ch(t,e="Unreachable"){throw new Error(e)}function Jr(t){if(!t()){debugger;t(),he(new De("Assertion Failed"))}}function ka(t,e){let n=0;for(;n0){const N=S.charCodeAt(I-1);Pr(N)&&I--}if(M+1=N){u=!0;break e}h.push(new We(y,I+1,y,M+1))}}while(f)}return{ranges:h,hasMore:u,ambiguousCharacterCount:m,invisibleCharacterCount:g,nonBasicAsciiCharacterCount:v}}static computeUnicodeHighlightReason(e,n){const r=new Ea(n);switch(r.shouldHighlightNonBasicASCII(e,null)){case 0:return null;case 2:return{kind:1};case 3:{const s=e.codePointAt(0),a=r.ambiguousCharacters.getPrimaryConfusable(s),o=Oe.getLocales().filter(l=>!Oe.getInstance(new Set([...n.allowedLocales,l])).isAmbiguous(s));return{kind:0,confusableWith:String.fromCodePoint(a),notAmbiguousInLocales:o}}case 1:return{kind:2}}}}function Eh(t,e){return`[${vc(t.map(r=>String.fromCodePoint(r)).join(""))}]`}class Ea{constructor(e){this.options=e,this.allowedCodePoints=new Set(e.allowedCodePoints),this.ambiguousCharacters=Oe.getInstance(new Set(e.allowedLocales))}getCandidateCodePoints(){if(this.options.nonBasicASCII)return"allNonBasicAscii";const e=new Set;if(this.options.invisibleCharacters)for(const n of ut.codePoints)Ra(String.fromCodePoint(n))||e.add(n);if(this.options.ambiguousCharacters)for(const n of this.ambiguousCharacters.getConfusableCodePoints())e.add(n);for(const n of this.allowedCodePoints)e.delete(n);return e}shouldHighlightNonBasicASCII(e,n){const r=e.codePointAt(0);if(this.allowedCodePoints.has(r))return 0;if(this.options.nonBasicASCII)return 1;let i=!1,s=!1;if(n)for(const a of n){const o=a.codePointAt(0),l=Ec(a);i=i||l,!l&&!this.ambiguousCharacters.isAmbiguous(o)&&!ut.isInvisibleCharacter(o)&&(s=!0)}return!i&&s?0:this.options.invisibleCharacters&&!Ra(e)&&ut.isInvisibleCharacter(r)?2:this.options.ambiguousCharacters&&this.ambiguousCharacters.isAmbiguous(r)?3:0}}function Ra(t){return t===" "||t===` +`||t===" "}class ce{static fromRange(e){return new ce(e.startLineNumber,e.endLineNumber)}static subtract(e,n){return n?e.startLineNumber=o.startLineNumber?a=new ce(a.startLineNumber,Math.max(a.endLineNumberExclusive,o.endLineNumberExclusive)):(r.push(a),a=o)}return a!==null&&r.push(a),r}static ofLength(e,n){return new ce(e,e+n)}static deserialize(e){return new ce(e[0],e[1])}constructor(e,n){if(e>n)throw new De(`startLineNumber ${e} cannot be after endLineNumberExclusive ${n}`);this.startLineNumber=e,this.endLineNumberExclusive=n}contains(e){return this.startLineNumber<=e&&e${this.modifiedRange.toString()}}`}get changedLineCount(){return Math.max(this.originalRange.length,this.modifiedRange.length)}flip(){var e;return new yt(this.modifiedRange,this.originalRange,(e=this.innerChanges)===null||e===void 0?void 0:e.map(n=>n.flip()))}}class Gn{constructor(e,n){this.originalRange=e,this.modifiedRange=n}toString(){return`{${this.originalRange.toString()}->${this.modifiedRange.toString()}}`}flip(){return new Gn(this.modifiedRange,this.originalRange)}}class Xr{constructor(e,n){this.originalRange=e,this.modifiedRange=n}toString(){return`{${this.originalRange.toString()}->${this.modifiedRange.toString()}}`}flip(){return new Xr(this.modifiedRange,this.originalRange)}}class Yr{constructor(e,n){this.lineRangeMapping=e,this.changes=n}flip(){return new Yr(this.lineRangeMapping.flip(),this.changes.map(e=>e.flip()))}}const Rh=3;class Fh{computeDiff(e,n,r){var i;const a=new Ph(e,n,{maxComputationTime:r.maxComputationTimeMs,shouldIgnoreTrimWhitespace:r.ignoreTrimWhitespace,shouldComputeCharChanges:!0,shouldMakePrettyDiff:!0,shouldPostProcessCharChanges:!0}).computeDiff(),o=[];let l=null;for(const c of a.changes){let h;c.originalEndLineNumber===0?h=new ce(c.originalStartLineNumber+1,c.originalStartLineNumber+1):h=new ce(c.originalStartLineNumber,c.originalEndLineNumber+1);let u;c.modifiedEndLineNumber===0?u=new ce(c.modifiedStartLineNumber+1,c.modifiedStartLineNumber+1):u=new ce(c.modifiedStartLineNumber,c.modifiedEndLineNumber+1);let f=new yt(h,u,(i=c.charChanges)===null||i===void 0?void 0:i.map(m=>new Gn(new We(m.originalStartLineNumber,m.originalStartColumn,m.originalEndLineNumber,m.originalEndColumn),new We(m.modifiedStartLineNumber,m.modifiedStartColumn,m.modifiedEndLineNumber,m.modifiedEndColumn))));l&&(l.modifiedRange.endLineNumberExclusive===f.modifiedRange.startLineNumber||l.originalRange.endLineNumberExclusive===f.originalRange.startLineNumber)&&(f=new yt(l.originalRange.join(f.originalRange),l.modifiedRange.join(f.modifiedRange),l.innerChanges&&f.innerChanges?l.innerChanges.concat(f.innerChanges):void 0),o.pop()),o.push(f),l=f}return Jr(()=>ka(o,(c,h)=>h.originalRange.startLineNumber-c.originalRange.endLineNumberExclusive===h.modifiedRange.startLineNumber-c.modifiedRange.endLineNumberExclusive&&c.originalRange.endLineNumberExclusive(e===10?"\\n":String.fromCharCode(e))+`-(${this._lineNumbers[n]},${this._columns[n]})`).join(", ")+"]"}_assertIndex(e,n){if(e<0||e>=n.length)throw new Error("Illegal index")}getElements(){return this._charCodes}getStartLineNumber(e){return e>0&&e===this._lineNumbers.length?this.getEndLineNumber(e-1):(this._assertIndex(e,this._lineNumbers),this._lineNumbers[e])}getEndLineNumber(e){return e===-1?this.getStartLineNumber(e+1):(this._assertIndex(e,this._lineNumbers),this._charCodes[e]===10?this._lineNumbers[e]+1:this._lineNumbers[e])}getStartColumn(e){return e>0&&e===this._columns.length?this.getEndColumn(e-1):(this._assertIndex(e,this._columns),this._columns[e])}getEndColumn(e){return e===-1?this.getStartColumn(e+1):(this._assertIndex(e,this._columns),this._charCodes[e]===10?1:this._columns[e]+1)}}class jt{constructor(e,n,r,i,s,a,o,l){this.originalStartLineNumber=e,this.originalStartColumn=n,this.originalEndLineNumber=r,this.originalEndColumn=i,this.modifiedStartLineNumber=s,this.modifiedStartColumn=a,this.modifiedEndLineNumber=o,this.modifiedEndColumn=l}static createFromDiffChange(e,n,r){const i=n.getStartLineNumber(e.originalStart),s=n.getStartColumn(e.originalStart),a=n.getEndLineNumber(e.originalStart+e.originalLength-1),o=n.getEndColumn(e.originalStart+e.originalLength-1),l=r.getStartLineNumber(e.modifiedStart),c=r.getStartColumn(e.modifiedStart),h=r.getEndLineNumber(e.modifiedStart+e.modifiedLength-1),u=r.getEndColumn(e.modifiedStart+e.modifiedLength-1);return new jt(i,s,a,o,l,c,h,u)}}function Ah(t){if(t.length<=1)return t;const e=[t[0]];let n=e[0];for(let r=1,i=t.length;r0&&n.originalLength<20&&n.modifiedLength>0&&n.modifiedLength<20&&s()){const m=r.createCharSequence(e,n.originalStart,n.originalStart+n.originalLength-1),g=i.createCharSequence(e,n.modifiedStart,n.modifiedStart+n.modifiedLength-1);if(m.getElements().length>0&&g.getElements().length>0){let v=Da(m,g,s,!0).changes;o&&(v=Ah(v)),f=[];for(let y=0,w=v.length;y1&&v>1;){const y=f.charCodeAt(g-2),w=m.charCodeAt(v-2);if(y!==w)break;g--,v--}(g>1||v>1)&&this._pushTrimWhitespaceCharChange(i,s+1,1,g,a+1,1,v)}{let g=Qr(f,1),v=Qr(m,1);const y=f.length+1,w=m.length+1;for(;g!0;const e=Date.now();return()=>Date.now()-en))return new ne(e,n)}constructor(e,n){if(this.start=e,this.endExclusive=n,e>n)throw new De(`Invalid range: ${this.toString()}`)}get isEmpty(){return this.start===this.endExclusive}delta(e){return new ne(this.start+e,this.endExclusive+e)}get length(){return this.endExclusive-this.start}toString(){return`[${this.start}, ${this.endExclusive})`}equals(e){return this.start===e.start&&this.endExclusive===e.endExclusive}containsRange(e){return this.start<=e.start&&e.endExclusive<=this.endExclusive}join(e){return new ne(Math.min(this.start,e.start),Math.max(this.endExclusive,e.endExclusive))}intersect(e){const n=Math.max(this.start,e.start),r=Math.min(this.endExclusive,e.endExclusive);if(n<=r)return new ne(n,r)}}class st{static trivial(e,n){return new st([new Ne(new ne(0,e.length),new ne(0,n.length))],!1)}static trivialTimedOut(e,n){return new st([new Ne(new ne(0,e.length),new ne(0,n.length))],!0)}constructor(e,n){this.diffs=e,this.hitTimeout=n}}class Ne{constructor(e,n){this.seq1Range=e,this.seq2Range=n}reverse(){return new Ne(this.seq2Range,this.seq1Range)}toString(){return`${this.seq1Range} <-> ${this.seq2Range}`}join(e){return new Ne(this.seq1Range.join(e.seq1Range),this.seq2Range.join(e.seq2Range))}delta(e){return e===0?this:new Ne(this.seq1Range.delta(e),this.seq2Range.delta(e))}}class cn{isValid(){return!0}}cn.instance=new cn;class Nh{constructor(e){if(this.timeout=e,this.startTime=Date.now(),this.valid=!0,e<=0)throw new De("timeout must be positive")}isValid(){if(!(Date.now()-this.startTime0&&v>0&&a.get(g-1,v-1)===3&&(S+=o.get(g-1,v-1)),S+=i?i(g,v):1):S=-1;const C=Math.max(y,w,S);if(C===S){const I=g>0&&v>0?o.get(g-1,v-1):0;o.set(g,v,I+1),a.set(g,v,3)}else C===y?(o.set(g,v,0),a.set(g,v,1)):C===w&&(o.set(g,v,0),a.set(g,v,2));s.set(g,v,C)}const l=[];let c=e.length,h=n.length;function u(g,v){(g+1!==c||v+1!==h)&&l.push(new Ne(new ne(g+1,c),new ne(v+1,h))),c=g,h=v}let f=e.length-1,m=n.length-1;for(;f>=0&&m>=0;)a.get(f,m)===3?(u(f,m),f--,m--):a.get(f,m)===1?f--:m--;return u(-1,-1),l.reverse(),new st(l,!1)}}function Na(t,e,n){let r=n;return r=zh(t,e,r),r=Lh(t,e,r),r}function Ih(t,e,n){const r=[];for(const i of n){const s=r[r.length-1];if(!s){r.push(i);continue}i.seq1Range.start-s.seq1Range.endExclusive<=2||i.seq2Range.start-s.seq2Range.endExclusive<=2?r[r.length-1]=new Ne(s.seq1Range.join(i.seq1Range),s.seq2Range.join(i.seq2Range)):r.push(i)}return r}function zh(t,e,n){const r=[];n.length>0&&r.push(n[0]);for(let s=1;s0&&(o=o.delta(c))}i.push(o)}return r.length>0&&i.push(r[r.length-1]),i}function Lh(t,e,n){if(!t.getBoundaryScore||!e.getBoundaryScore)return n;for(let r=0;r0?n[r-1]:void 0,s=n[r],a=r+1=r.start&&t.seq2Range.start-a>=i.start&&n.getElement(t.seq2Range.start-a)===n.getElement(t.seq2Range.endExclusive-a)&&a<100;)a++;a--;let o=0;for(;t.seq1Range.start+oc&&(c=g,l=h)}return t.delta(l)}class Th{compute(e,n,r=cn.instance){if(e.length===0||n.length===0)return st.trivial(e,n);function i(m,g){for(;me.length||S>n.length)continue;const C=i(w,S);a.set(l,C);const I=w===v?o.get(l+1):o.get(l-1);if(o.set(l,C!==w?new Ia(I,w,S,C-w):I),a.get(l)===e.length&&a.get(l)-l===n.length)break e}}let c=o.get(l);const h=[];let u=e.length,f=n.length;for(;;){const m=c?c.x+c.length:0,g=c?c.y+c.length:0;if((m!==u||g!==f)&&h.push(new Ne(new ne(m,u),new ne(g,f))),!c)break;u=c.x,f=c.y,c=c.prev}return h.reverse(),new st(h,!1)}}class Ia{constructor(e,n,r,i){this.prev=e,this.x=n,this.y=r,this.length=i}}class Oh{constructor(){this.positiveArr=new Int32Array(10),this.negativeArr=new Int32Array(10)}get(e){return e<0?(e=-e-1,this.negativeArr[e]):this.positiveArr[e]}set(e,n){if(e<0){if(e=-e-1,e>=this.negativeArr.length){const r=this.negativeArr;this.negativeArr=new Int32Array(r.length*2),this.negativeArr.set(r)}this.negativeArr[e]=n}else{if(e>=this.positiveArr.length){const r=this.positiveArr;this.positiveArr=new Int32Array(r.length*2),this.positiveArr.set(r)}this.positiveArr[e]=n}}}class Wh{constructor(){this.positiveArr=[],this.negativeArr=[]}get(e){return e<0?(e=-e-1,this.negativeArr[e]):this.positiveArr[e]}set(e,n){e<0?(e=-e-1,this.negativeArr[e]=n):this.positiveArr[e]=n}}class Uh{constructor(){this.dynamicProgrammingDiffing=new Mh,this.myersDiffingAlgorithm=new Th}computeDiff(e,n,r){const i=r.maxComputationTimeMs===0?cn.instance:new Nh(r.maxComputationTimeMs),s=!r.ignoreTrimWhitespace,a=new Map;function o(M){let U=a.get(M);return U===void 0&&(U=a.size,a.set(M,U)),U}const l=e.map(M=>o(M.trim())),c=n.map(M=>o(M.trim())),h=new La(l,e),u=new La(c,n),f=(()=>h.length+u.length<1500?this.dynamicProgrammingDiffing.compute(h,u,i,(M,U)=>e[M]===n[U]?n[U].length===0?.1:1+Math.log(1+n[U].length):.99):this.myersDiffingAlgorithm.compute(h,u))();let m=f.diffs,g=f.hitTimeout;m=Na(h,u,m);const v=[],y=M=>{if(s)for(let U=0;UM.seq1Range.start-w===M.seq2Range.start-S);const U=M.seq1Range.start-w;y(U),w=M.seq1Range.endExclusive,S=M.seq2Range.endExclusive;const q=this.refineDiff(e,n,M,i,s);q.hitTimeout&&(g=!0);for(const W of q.mappings)v.push(W)}y(e.length-w);const C=za(v,e,n),I=[];if(r.computeMoves){const M=C.filter(q=>q.modifiedRange.isEmpty&&q.originalRange.length>=3).map(q=>new ja(q.originalRange,e)),U=new Set(C.filter(q=>q.originalRange.isEmpty&&q.modifiedRange.length>=3).map(q=>new ja(q.modifiedRange,n)));for(const q of M){let W=-1,N;for(const F of U){const R=q.computeSimilarity(F);R>W&&(W=R,N=F)}if(W>.9&&N){const F=this.refineDiff(e,n,new Ne(new ne(q.range.startLineNumber-1,q.range.endLineNumberExclusive-1),new ne(N.range.startLineNumber-1,N.range.endLineNumberExclusive-1)),i,s),R=za(F.mappings,e,n,!0);U.delete(N),I.push(new Yr(new Xr(q.range,N.range),R))}}}return new Fa(C,I,g)}refineDiff(e,n,r,i,s){const a=new Oa(e,r.seq1Range,s),o=new Oa(n,r.seq2Range,s),l=a.length+o.length<500?this.dynamicProgrammingDiffing.compute(a,o,i):this.myersDiffingAlgorithm.compute(a,o,i);let c=l.diffs;return c=Na(a,o,c),c=Vh(a,o,c),c=Ih(a,o,c),{mappings:c.map(u=>new Gn(a.translateRange(u.seq1Range),o.translateRange(u.seq2Range))),hitTimeout:l.hitTimeout}}}function Vh(t,e,n){const r=[];let i;function s(){if(!i)return;const o=i.s1Range.length-i.deleted;i.s2Range.length-i.added,Math.max(i.deleted,i.added)+(i.count-1)>o&&r.push(new Ne(i.s1Range,i.s2Range)),i=void 0}for(const o of n){let l=function(m,g){var v,y,w,S;if(!i||!i.s1Range.containsRange(m)||!i.s2Range.containsRange(g))if(i&&!(i.s1Range.endExclusive0||e.length>0;){const r=t[0],i=e[0];let s;r&&(!i||r.seq1Range.start0&&n[n.length-1].seq1Range.endExclusive>=s.seq1Range.start?n[n.length-1]=n[n.length-1].join(s):n.push(s)}return n}function za(t,e,n,r=!1){const i=[];for(const s of qh(t.map(a=>Bh(a,e,n)),(a,o)=>a.originalRange.overlapOrTouch(o.originalRange)||a.modifiedRange.overlapOrTouch(o.modifiedRange))){const a=s[0],o=s[s.length-1];i.push(new yt(a.originalRange.join(o.originalRange),a.modifiedRange.join(o.modifiedRange),s.map(l=>l.innerChanges[0])))}return Jr(()=>!r&&i.length>0&&i[0].originalRange.startLineNumber!==i[0].modifiedRange.startLineNumber?!1:ka(i,(s,a)=>a.originalRange.startLineNumber-s.originalRange.endLineNumberExclusive===a.modifiedRange.startLineNumber-s.modifiedRange.endLineNumberExclusive&&s.originalRange.endLineNumberExclusive=n[t.modifiedRange.startLineNumber-1].length&&t.originalRange.startColumn-1>=e[t.originalRange.startLineNumber-1].length&&t.originalRange.startLineNumber<=t.originalRange.endLineNumber+i&&t.modifiedRange.startLineNumber<=t.modifiedRange.endLineNumber+i&&(r=1);const s=new ce(t.originalRange.startLineNumber+r,t.originalRange.endLineNumber+1+i),a=new ce(t.modifiedRange.startLineNumber+r,t.modifiedRange.endLineNumber+1+i);return new yt(s,a,[t])}function*qh(t,e){let n,r;for(const i of t)r!==void 0&&e(r,i)?n.push(i):(n&&(yield n),n=[i]),r=i;n&&(yield n)}class La{constructor(e,n){this.trimmedHash=e,this.lines=n}getElement(e){return this.trimmedHash[e]}get length(){return this.trimmedHash.length}getBoundaryScore(e){const n=e===0?0:Ta(this.lines[e-1]),r=e===this.lines.length?0:Ta(this.lines[e]);return 1e3-(n+r)}}function Ta(t){let e=0;for(;e0&&n.endExclusive>=e.length&&(n=new ne(n.start-1,n.endExclusive),i=!0),this.lineRange=n;for(let s=this.lineRange.start;sString.fromCharCode(e)).join("")}getElement(e){return this.elements[e]}get length(){return this.elements.length}getBoundaryScore(e){const n=Ua(e>0?this.elements[e-1]:-1),r=Ua(ee?r=s:n=s+1}const i=n===0?0:this.firstCharOffsetByLineMinusOne[n-1];return new tt(this.lineRange.start+n+1,e-i+1+this.offsetByLine[n])}translateRange(e){return We.fromPositions(this.translateOffset(e.start),this.translateOffset(e.endExclusive))}findWordContaining(e){if(e<0||e>=this.elements.length||!ei(this.elements[e]))return;let n=e;for(;n>0&&ei(this.elements[n-1]);)n--;let r=e;for(;r=97&&t<=122||t>=65&&t<=90||t>=48&&t<=57}const $h={0:0,1:0,2:0,3:10,4:2,5:3,6:10,7:10};function Wa(t){return $h[t]}function Ua(t){return t===10?7:t===13?6:Hh(t)?5:t>=97&&t<=122?0:t>=65&&t<=90?1:t>=48&&t<=57?2:t===-1?3:4}function Hh(t){return t===32||t===9}const ti=new Map;function Va(t){let e=ti.get(t);return e===void 0&&(e=ti.size,ti.set(t,e)),e}class ja{constructor(e,n){this.range=e,this.lines=n,this.histogram=[];let r=0;for(let i=e.startLineNumber-1;inew Fh,getAdvanced:()=>new Uh};function wt(t,e){const n=Math.pow(10,e);return Math.round(t*n)/n}class be{constructor(e,n,r,i=1){this._rgbaBrand=void 0,this.r=Math.min(255,Math.max(0,e))|0,this.g=Math.min(255,Math.max(0,n))|0,this.b=Math.min(255,Math.max(0,r))|0,this.a=wt(Math.max(Math.min(1,i),0),3)}static equals(e,n){return e.r===n.r&&e.g===n.g&&e.b===n.b&&e.a===n.a}}class Ue{constructor(e,n,r,i){this._hslaBrand=void 0,this.h=Math.max(Math.min(360,e),0)|0,this.s=wt(Math.max(Math.min(1,n),0),3),this.l=wt(Math.max(Math.min(1,r),0),3),this.a=wt(Math.max(Math.min(1,i),0),3)}static equals(e,n){return e.h===n.h&&e.s===n.s&&e.l===n.l&&e.a===n.a}static fromRGBA(e){const n=e.r/255,r=e.g/255,i=e.b/255,s=e.a,a=Math.max(n,r,i),o=Math.min(n,r,i);let l=0,c=0;const h=(o+a)/2,u=a-o;if(u>0){switch(c=Math.min(h<=.5?u/(2*h):u/(2-2*h),1),a){case n:l=(r-i)/u+(r1&&(r-=1),r<1/6?e+(n-e)*6*r:r<1/2?n:r<2/3?e+(n-e)*(2/3-r)*6:e}static toRGBA(e){const n=e.h/360,{s:r,l:i,a:s}=e;let a,o,l;if(r===0)a=o=l=i;else{const c=i<.5?i*(1+r):i+r-i*r,h=2*i-c;a=Ue._hue2rgb(h,c,n+1/3),o=Ue._hue2rgb(h,c,n),l=Ue._hue2rgb(h,c,n-1/3)}return new be(Math.round(a*255),Math.round(o*255),Math.round(l*255),s)}}class Bt{constructor(e,n,r,i){this._hsvaBrand=void 0,this.h=Math.max(Math.min(360,e),0)|0,this.s=wt(Math.max(Math.min(1,n),0),3),this.v=wt(Math.max(Math.min(1,r),0),3),this.a=wt(Math.max(Math.min(1,i),0),3)}static equals(e,n){return e.h===n.h&&e.s===n.s&&e.v===n.v&&e.a===n.a}static fromRGBA(e){const n=e.r/255,r=e.g/255,i=e.b/255,s=Math.max(n,r,i),a=Math.min(n,r,i),o=s-a,l=s===0?0:o/s;let c;return o===0?c=0:s===n?c=((r-i)/o%6+6)%6:s===r?c=(i-n)/o+2:c=(n-r)/o+4,new Bt(Math.round(c*60),l,s,e.a)}static toRGBA(e){const{h:n,s:r,v:i,a:s}=e,a=i*r,o=a*(1-Math.abs(n/60%2-1)),l=i-a;let[c,h,u]=[0,0,0];return n<60?(c=a,h=o):n<120?(c=o,h=a):n<180?(h=a,u=o):n<240?(h=o,u=a):n<300?(c=o,u=a):n<=360&&(c=a,u=o),c=Math.round((c+l)*255),h=Math.round((h+l)*255),u=Math.round((u+l)*255),new be(c,h,u,s)}}let pe=class He{static fromHex(e){return He.Format.CSS.parseHex(e)||He.red}static equals(e,n){return!e&&!n?!0:!e||!n?!1:e.equals(n)}get hsla(){return this._hsla?this._hsla:Ue.fromRGBA(this.rgba)}get hsva(){return this._hsva?this._hsva:Bt.fromRGBA(this.rgba)}constructor(e){if(e)if(e instanceof be)this.rgba=e;else if(e instanceof Ue)this._hsla=e,this.rgba=Ue.toRGBA(e);else if(e instanceof Bt)this._hsva=e,this.rgba=Bt.toRGBA(e);else throw new Error("Invalid color ctor argument");else throw new Error("Color needs a value")}equals(e){return!!e&&be.equals(this.rgba,e.rgba)&&Ue.equals(this.hsla,e.hsla)&&Bt.equals(this.hsva,e.hsva)}getRelativeLuminance(){const e=He._relativeLuminanceForComponent(this.rgba.r),n=He._relativeLuminanceForComponent(this.rgba.g),r=He._relativeLuminanceForComponent(this.rgba.b),i=.2126*e+.7152*n+.0722*r;return wt(i,4)}static _relativeLuminanceForComponent(e){const n=e/255;return n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4)}isLighter(){return(this.rgba.r*299+this.rgba.g*587+this.rgba.b*114)/1e3>=128}isLighterThan(e){const n=this.getRelativeLuminance(),r=e.getRelativeLuminance();return n>r}isDarkerThan(e){const n=this.getRelativeLuminance(),r=e.getRelativeLuminance();return n0)for(const i of r){const s=i.filter(c=>c!==void 0),a=s[1],o=s[2];if(!o)continue;let l;if(a==="rgb"){const c=/^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm;l=$a(hn(t,i),dn(o,c),!1)}else if(a==="rgba"){const c=/^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;l=$a(hn(t,i),dn(o,c),!0)}else if(a==="hsl"){const c=/^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm;l=Ha(hn(t,i),dn(o,c),!1)}else if(a==="hsla"){const c=/^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;l=Ha(hn(t,i),dn(o,c),!0)}else a==="#"&&(l=Gh(hn(t,i),a+o));l&&e.push(l)}return e}function Xh(t){return!t||typeof t.getValue!="function"||typeof t.positionAt!="function"?[]:Jh(t)}var xt=function(t,e,n,r){function i(s){return s instanceof n?s:new n(function(a){a(s)})}return new(n||(n=Promise))(function(s,a){function o(h){try{c(r.next(h))}catch(u){a(u)}}function l(h){try{c(r.throw(h))}catch(u){a(u)}}function c(h){h.done?s(h.value):i(h.value).then(o,l)}c((r=r.apply(t,e||[])).next())})};class Yh extends th{get uri(){return this._uri}get eol(){return this._eol}getValue(){return this.getText()}findMatches(e){const n=[];for(let r=0;rthis._lines.length)n=this._lines.length,r=this._lines[n-1].length+1,i=!0;else{const s=this._lines[n-1].length+1;r<1?(r=1,i=!0):r>s&&(r=s,i=!0)}return i?{lineNumber:n,column:r}:e}}class Et{constructor(e,n){this._host=e,this._models=Object.create(null),this._foreignModuleFactory=n,this._foreignModule=null}dispose(){this._models=Object.create(null)}_getModel(e){return this._models[e]}_getModels(){const e=[];return Object.keys(this._models).forEach(n=>e.push(this._models[n])),e}acceptNewModel(e){this._models[e.url]=new Yh(Mr.parse(e.url),e.lines,e.EOL,e.versionId)}acceptModelChanged(e,n){if(!this._models[e])return;this._models[e].onEvents(n)}acceptRemovedModel(e){this._models[e]&&delete this._models[e]}computeUnicodeHighlights(e,n,r){return xt(this,void 0,void 0,function*(){const i=this._getModel(e);return i?kh.computeUnicodeHighlights(i,n,r):{ranges:[],hasMore:!1,ambiguousCharacterCount:0,invisibleCharacterCount:0,nonBasicAsciiCharacterCount:0}})}computeDiff(e,n,r,i){return xt(this,void 0,void 0,function*(){const s=this._getModel(e),a=this._getModel(n);return!s||!a?null:Et.computeDiff(s,a,r,i)})}static computeDiff(e,n,r,i){const s=i==="advanced"?Ba.getAdvanced():Ba.getLegacy(),a=e.getLinesContent(),o=n.getLinesContent(),l=s.computeDiff(a,o,r),c=l.changes.length>0?!1:this._modelsAreIdentical(e,n);function h(u){return u.map(f=>{var m;return[f.originalRange.startLineNumber,f.originalRange.endLineNumberExclusive,f.modifiedRange.startLineNumber,f.modifiedRange.endLineNumberExclusive,(m=f.innerChanges)===null||m===void 0?void 0:m.map(g=>[g.originalRange.startLineNumber,g.originalRange.startColumn,g.originalRange.endLineNumber,g.originalRange.endColumn,g.modifiedRange.startLineNumber,g.modifiedRange.startColumn,g.modifiedRange.endLineNumber,g.modifiedRange.endColumn])]})}return{identical:c,quitEarly:l.hitTimeout,changes:h(l.changes),moves:l.moves.map(u=>[u.lineRangeMapping.originalRange.startLineNumber,u.lineRangeMapping.originalRange.endLineNumberExclusive,u.lineRangeMapping.modifiedRange.startLineNumber,u.lineRangeMapping.modifiedRange.endLineNumberExclusive,h(u.changes)])}}static _modelsAreIdentical(e,n){const r=e.getLineCount(),i=n.getLineCount();if(r!==i)return!1;for(let s=1;s<=r;s++){const a=e.getLineContent(s),o=n.getLineContent(s);if(a!==o)return!1}return!0}computeMoreMinimalEdits(e,n,r){return xt(this,void 0,void 0,function*(){const i=this._getModel(e);if(!i)return n;const s=[];let a;n=n.slice(0).sort((o,l)=>{if(o.range&&l.range)return We.compareRangesUsingStarts(o.range,l.range);const c=o.range?0:1,h=l.range?0:1;return c-h});for(let{range:o,text:l,eol:c}of n){if(typeof c=="number"&&(a=c),We.isEmpty(o)&&!l)continue;const h=i.getValueInRange(o);if(l=l.replace(/\r\n|\n|\r/g,i.eol),h===l)continue;if(Math.max(l.length,h.length)>Et._diffLimit){s.push({range:o,text:l});continue}const u=Lc(h,l,r),f=i.offsetAt(We.lift(o).getStartPosition());for(const m of u){const g=i.positionAt(f+m.originalStart),v=i.positionAt(f+m.originalStart+m.originalLength),y={text:l.substr(m.modifiedStart,m.modifiedLength),range:{startLineNumber:g.lineNumber,startColumn:g.column,endLineNumber:v.lineNumber,endColumn:v.column}};i.getValueInRange(y.range)!==y.text&&s.push(y)}}return typeof a=="number"&&s.push({eol:a,text:"",range:{startLineNumber:0,startColumn:0,endLineNumber:0,endColumn:0}}),s})}computeLinks(e){return xt(this,void 0,void 0,function*(){const n=this._getModel(e);return n?hh(n):null})}computeDefaultDocumentColors(e){return xt(this,void 0,void 0,function*(){const n=this._getModel(e);return n?Xh(n):null})}textualSuggest(e,n,r,i){return xt(this,void 0,void 0,function*(){const s=new On,a=new RegExp(r,i),o=new Set;e:for(const l of e){const c=this._getModel(l);if(c){for(const h of c.words(a))if(!(h===n||!isNaN(Number(h)))&&(o.add(h),o.size>Et._suggestionsLimit))break e}}return{words:Array.from(o),duration:s.elapsed()}})}computeWordRanges(e,n,r,i){return xt(this,void 0,void 0,function*(){const s=this._getModel(e);if(!s)return Object.create(null);const a=new RegExp(r,i),o=Object.create(null);for(let l=n.startLineNumber;lthis._host.fhr(o,l)),getMirrorModels:()=>this._getModels()};return this._foreignModuleFactory?(this._foreignModule=this._foreignModuleFactory(a,n),Promise.resolve(kr(this._foreignModule))):Promise.reject(new Error("Unexpected usage"))}fmr(e,n){if(!this._foreignModule||typeof this._foreignModule[e]!="function")return Promise.reject(new Error("Missing requestHandler or method: "+e));try{return Promise.resolve(this._foreignModule[e].apply(this._foreignModule,n))}catch(r){return Promise.reject(r)}}}Et._diffLimit=1e5,Et._suggestionsLimit=1e4,typeof importScripts=="function"&&(globalThis.monaco=yh());let ri=!1;function Ga(t){if(ri)return;ri=!0;const e=new Ic(n=>{globalThis.postMessage(n)},n=>new Et(n,t));globalThis.onmessage=n=>{e.onmessage(n.data)}}globalThis.onmessage=t=>{ri||Ga(null)};/*!----------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Version: 0.40.0(83b3cf23ca80c94cccca7c5b3e48351b220f8e35) + * Released under the MIT license + * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt + *-----------------------------------------------------------------------------*/var p;(function(t){t[t.Ident=0]="Ident",t[t.AtKeyword=1]="AtKeyword",t[t.String=2]="String",t[t.BadString=3]="BadString",t[t.UnquotedString=4]="UnquotedString",t[t.Hash=5]="Hash",t[t.Num=6]="Num",t[t.Percentage=7]="Percentage",t[t.Dimension=8]="Dimension",t[t.UnicodeRange=9]="UnicodeRange",t[t.CDO=10]="CDO",t[t.CDC=11]="CDC",t[t.Colon=12]="Colon",t[t.SemiColon=13]="SemiColon",t[t.CurlyL=14]="CurlyL",t[t.CurlyR=15]="CurlyR",t[t.ParenthesisL=16]="ParenthesisL",t[t.ParenthesisR=17]="ParenthesisR",t[t.BracketL=18]="BracketL",t[t.BracketR=19]="BracketR",t[t.Whitespace=20]="Whitespace",t[t.Includes=21]="Includes",t[t.Dashmatch=22]="Dashmatch",t[t.SubstringOperator=23]="SubstringOperator",t[t.PrefixOperator=24]="PrefixOperator",t[t.SuffixOperator=25]="SuffixOperator",t[t.Delim=26]="Delim",t[t.EMS=27]="EMS",t[t.EXS=28]="EXS",t[t.Length=29]="Length",t[t.Angle=30]="Angle",t[t.Time=31]="Time",t[t.Freq=32]="Freq",t[t.Exclamation=33]="Exclamation",t[t.Resolution=34]="Resolution",t[t.Comma=35]="Comma",t[t.Charset=36]="Charset",t[t.EscapedJavaScript=37]="EscapedJavaScript",t[t.BadEscapedJavaScript=38]="BadEscapedJavaScript",t[t.Comment=39]="Comment",t[t.SingleLineComment=40]="SingleLineComment",t[t.EOF=41]="EOF",t[t.CustomToken=42]="CustomToken"})(p||(p={}));var Ja=function(){function t(e){this.source=e,this.len=e.length,this.position=0}return t.prototype.substring=function(e,n){return n===void 0&&(n=this.position),this.source.substring(e,n)},t.prototype.eos=function(){return this.len<=this.position},t.prototype.pos=function(){return this.position},t.prototype.goBackTo=function(e){this.position=e},t.prototype.goBack=function(e){this.position-=e},t.prototype.advance=function(e){this.position+=e},t.prototype.nextChar=function(){return this.source.charCodeAt(this.position++)||0},t.prototype.peekChar=function(e){return e===void 0&&(e=0),this.source.charCodeAt(this.position+e)||0},t.prototype.lookbackChar=function(e){return e===void 0&&(e=0),this.source.charCodeAt(this.position-e)||0},t.prototype.advanceIfChar=function(e){return e===this.source.charCodeAt(this.position)?(this.position++,!0):!1},t.prototype.advanceIfChars=function(e){if(this.position+e.length>this.source.length)return!1;for(var n=0;n=un&&n<=pn?(this.stream.advance(e+1),this.stream.advanceWhileChar(function(r){return r>=un&&r<=pn||e===0&&r===so}),!0):!1},t.prototype._newline=function(e){var n=this.stream.peekChar();switch(n){case $t:case fn:case qt:return this.stream.advance(1),e.push(String.fromCharCode(n)),n===$t&&this.stream.advanceIfChar(qt)&&e.push(` +`),!0}return!1},t.prototype._escape=function(e,n){var r=this.stream.peekChar();if(r===si){this.stream.advance(1),r=this.stream.peekChar();for(var i=0;i<6&&(r>=un&&r<=pn||r>=Jn&&r<=Xa||r>=Xn&&r<=Ka);)this.stream.advance(1),r=this.stream.peekChar(),i++;if(i>0){try{var s=parseInt(this.stream.substring(this.stream.pos()-i),16);s&&e.push(String.fromCharCode(s))}catch(a){}return r===ai||r===oi?this.stream.advance(1):this._newline([]),!0}if(r!==$t&&r!==fn&&r!==qt)return this.stream.advance(1),e.push(String.fromCharCode(r)),!0;if(n)return this._newline(e)}return!1},t.prototype._stringChar=function(e,n){var r=this.stream.peekChar();return r!==0&&r!==e&&r!==si&&r!==$t&&r!==fn&&r!==qt?(this.stream.advance(1),n.push(String.fromCharCode(r)),!0):!1},t.prototype._string=function(e){if(this.stream.peekChar()===io||this.stream.peekChar()===ro){var n=this.stream.nextChar();for(e.push(String.fromCharCode(n));this._stringChar(n,e)||this._escape(e,!0););return this.stream.peekChar()===n?(this.stream.nextChar(),e.push(String.fromCharCode(n)),p.String):p.BadString}return null},t.prototype._unquotedChar=function(e){var n=this.stream.peekChar();return n!==0&&n!==si&&n!==io&&n!==ro&&n!==eo&&n!==to&&n!==ai&&n!==oi&&n!==qt&&n!==fn&&n!==$t?(this.stream.advance(1),e.push(String.fromCharCode(n)),!0):!1},t.prototype._unquotedString=function(e){for(var n=!1;this._unquotedChar(e)||this._escape(e);)n=!0;return n},t.prototype._whitespace=function(){var e=this.stream.advanceWhileChar(function(n){return n===ai||n===oi||n===qt||n===fn||n===$t});return e>0},t.prototype._name=function(e){for(var n=!1;this._identChar(e)||this._escape(e);)n=!0;return n},t.prototype.ident=function(e){var n=this.stream.pos(),r=this._minus(e);if(r){if(this._minus(e)||this._identFirstChar(e)||this._escape(e)){for(;this._identChar(e)||this._escape(e););return!0}}else if(this._identFirstChar(e)||this._escape(e)){for(;this._identChar(e)||this._escape(e););return!0}return this.stream.goBackTo(n),!1},t.prototype._identFirstChar=function(e){var n=this.stream.peekChar();return n===Za||n>=Jn&&n<=Ya||n>=Xn&&n<=Qa||n>=128&&n<=65535?(this.stream.advance(1),e.push(String.fromCharCode(n)),!0):!1},t.prototype._minus=function(e){var n=this.stream.peekChar();return n===Rt?(this.stream.advance(1),e.push(String.fromCharCode(n)),!0):!1},t.prototype._identChar=function(e){var n=this.stream.peekChar();return n===Za||n===Rt||n>=Jn&&n<=Ya||n>=Xn&&n<=Qa||n>=un&&n<=pn||n>=128&&n<=65535?(this.stream.advance(1),e.push(String.fromCharCode(n)),!0):!1},t.prototype._unicodeRange=function(){if(this.stream.advanceIfChar(md)){var e=function(i){return i>=un&&i<=pn||i>=Jn&&i<=Xa||i>=Xn&&i<=Ka},n=this.stream.advanceWhileChar(e)+this.stream.advanceWhileChar(function(i){return i===pd});if(n>=1&&n<=6)if(this.stream.advanceIfChar(Rt)){var r=this.stream.advanceWhileChar(e);if(r>=1&&r<=6)return!0}else return!0}return!1},t}();function fe(t,e){if(t.length0?t.lastIndexOf(e)===n:n===0?t===e:!1}function fd(t,e,n){n===void 0&&(n=4);var r=Math.abs(t.length-e.length);if(r>n)return 0;var i=[],s=[],a,o;for(a=0;a0;)(e&1)===1&&(n+=t),t+=t,e=e>>>1;return n}var T=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),b;(function(t){t[t.Undefined=0]="Undefined",t[t.Identifier=1]="Identifier",t[t.Stylesheet=2]="Stylesheet",t[t.Ruleset=3]="Ruleset",t[t.Selector=4]="Selector",t[t.SimpleSelector=5]="SimpleSelector",t[t.SelectorInterpolation=6]="SelectorInterpolation",t[t.SelectorCombinator=7]="SelectorCombinator",t[t.SelectorCombinatorParent=8]="SelectorCombinatorParent",t[t.SelectorCombinatorSibling=9]="SelectorCombinatorSibling",t[t.SelectorCombinatorAllSiblings=10]="SelectorCombinatorAllSiblings",t[t.SelectorCombinatorShadowPiercingDescendant=11]="SelectorCombinatorShadowPiercingDescendant",t[t.Page=12]="Page",t[t.PageBoxMarginBox=13]="PageBoxMarginBox",t[t.ClassSelector=14]="ClassSelector",t[t.IdentifierSelector=15]="IdentifierSelector",t[t.ElementNameSelector=16]="ElementNameSelector",t[t.PseudoSelector=17]="PseudoSelector",t[t.AttributeSelector=18]="AttributeSelector",t[t.Declaration=19]="Declaration",t[t.Declarations=20]="Declarations",t[t.Property=21]="Property",t[t.Expression=22]="Expression",t[t.BinaryExpression=23]="BinaryExpression",t[t.Term=24]="Term",t[t.Operator=25]="Operator",t[t.Value=26]="Value",t[t.StringLiteral=27]="StringLiteral",t[t.URILiteral=28]="URILiteral",t[t.EscapedValue=29]="EscapedValue",t[t.Function=30]="Function",t[t.NumericValue=31]="NumericValue",t[t.HexColorValue=32]="HexColorValue",t[t.RatioValue=33]="RatioValue",t[t.MixinDeclaration=34]="MixinDeclaration",t[t.MixinReference=35]="MixinReference",t[t.VariableName=36]="VariableName",t[t.VariableDeclaration=37]="VariableDeclaration",t[t.Prio=38]="Prio",t[t.Interpolation=39]="Interpolation",t[t.NestedProperties=40]="NestedProperties",t[t.ExtendsReference=41]="ExtendsReference",t[t.SelectorPlaceholder=42]="SelectorPlaceholder",t[t.Debug=43]="Debug",t[t.If=44]="If",t[t.Else=45]="Else",t[t.For=46]="For",t[t.Each=47]="Each",t[t.While=48]="While",t[t.MixinContentReference=49]="MixinContentReference",t[t.MixinContentDeclaration=50]="MixinContentDeclaration",t[t.Media=51]="Media",t[t.Keyframe=52]="Keyframe",t[t.FontFace=53]="FontFace",t[t.Import=54]="Import",t[t.Namespace=55]="Namespace",t[t.Invocation=56]="Invocation",t[t.FunctionDeclaration=57]="FunctionDeclaration",t[t.ReturnStatement=58]="ReturnStatement",t[t.MediaQuery=59]="MediaQuery",t[t.MediaCondition=60]="MediaCondition",t[t.MediaFeature=61]="MediaFeature",t[t.FunctionParameter=62]="FunctionParameter",t[t.FunctionArgument=63]="FunctionArgument",t[t.KeyframeSelector=64]="KeyframeSelector",t[t.ViewPort=65]="ViewPort",t[t.Document=66]="Document",t[t.AtApplyRule=67]="AtApplyRule",t[t.CustomPropertyDeclaration=68]="CustomPropertyDeclaration",t[t.CustomPropertySet=69]="CustomPropertySet",t[t.ListEntry=70]="ListEntry",t[t.Supports=71]="Supports",t[t.SupportsCondition=72]="SupportsCondition",t[t.NamespacePrefix=73]="NamespacePrefix",t[t.GridLine=74]="GridLine",t[t.Plugin=75]="Plugin",t[t.UnknownAtRule=76]="UnknownAtRule",t[t.Use=77]="Use",t[t.ModuleConfiguration=78]="ModuleConfiguration",t[t.Forward=79]="Forward",t[t.ForwardVisibility=80]="ForwardVisibility",t[t.Module=81]="Module",t[t.UnicodeRange=82]="UnicodeRange"})(b||(b={}));var Y;(function(t){t[t.Mixin=0]="Mixin",t[t.Rule=1]="Rule",t[t.Variable=2]="Variable",t[t.Function=3]="Function",t[t.Keyframe=4]="Keyframe",t[t.Unknown=5]="Unknown",t[t.Module=6]="Module",t[t.Forward=7]="Forward",t[t.ForwardVisibility=8]="ForwardVisibility"})(Y||(Y={}));function li(t,e){var n=null;return!t||et.end?null:(t.accept(function(r){return r.offset===-1&&r.length===-1?!0:r.offset<=e&&r.end>=e?(n?r.length<=n.length&&(n=r):n=r,!0):!1}),n)}function ci(t,e){for(var n=li(t,e),r=[];n;)r.unshift(n),n=n.parent;return r}function bd(t){var e=t.findParent(b.Declaration),n=e&&e.getValue();return n&&n.encloses(t)?e:null}var O=function(){function t(e,n,r){e===void 0&&(e=-1),n===void 0&&(n=-1),this.parent=null,this.offset=e,this.length=n,r&&(this.nodeType=r)}return Object.defineProperty(t.prototype,"end",{get:function(){return this.offset+this.length},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"type",{get:function(){return this.nodeType||b.Undefined},set:function(e){this.nodeType=e},enumerable:!1,configurable:!0}),t.prototype.getTextProvider=function(){for(var e=this;e&&!e.textProvider;)e=e.parent;return e?e.textProvider:function(){return"unknown"}},t.prototype.getText=function(){return this.getTextProvider()(this.offset,this.length)},t.prototype.matches=function(e){return this.length===e.length&&this.getTextProvider()(this.offset,this.length)===e},t.prototype.startsWith=function(e){return this.length>=e.length&&this.getTextProvider()(this.offset,e.length)===e},t.prototype.endsWith=function(e){return this.length>=e.length&&this.getTextProvider()(this.end-e.length,e.length)===e},t.prototype.accept=function(e){if(e(this)&&this.children)for(var n=0,r=this.children;n=0&&e.parent.children.splice(r,1)}e.parent=this;var i=this.children;return i||(i=this.children=[]),n!==-1?i.splice(n,0,e):i.push(e),e},t.prototype.attachTo=function(e,n){return n===void 0&&(n=-1),e&&e.adoptChild(this,n),this},t.prototype.collectIssues=function(e){this.issues&&e.push.apply(e,this.issues)},t.prototype.addIssue=function(e){this.issues||(this.issues=[]),this.issues.push(e)},t.prototype.hasIssue=function(e){return Array.isArray(this.issues)&&this.issues.some(function(n){return n.getRule()===e})},t.prototype.isErroneous=function(e){return e===void 0&&(e=!1),this.issues&&this.issues.length>0?!0:e&&Array.isArray(this.children)&&this.children.some(function(n){return n.isErroneous(!0)})},t.prototype.setNode=function(e,n,r){return r===void 0&&(r=-1),n?(n.attachTo(this,r),this[e]=n,!0):!1},t.prototype.addChild=function(e){return e?(this.children||(this.children=[]),e.attachTo(this),this.updateOffsetAndLength(e),!0):!1},t.prototype.updateOffsetAndLength=function(e){(e.offsetthis.end||this.length===-1)&&(this.length=n-this.offset)},t.prototype.hasChildren=function(){return!!this.children&&this.children.length>0},t.prototype.getChildren=function(){return this.children?this.children.slice(0):[]},t.prototype.getChild=function(e){return this.children&&e=0;r--)if(n=this.children[r],n.offset<=e)return n}return null},t.prototype.findChildAtOffset=function(e,n){var r=this.findFirstChildBeforeOffset(e);return r&&r.end>=e?n&&r.findChildAtOffset(e,!0)||r:null},t.prototype.encloses=function(e){return this.offset<=e.offset&&this.offset+this.length>=e.offset+e.length},t.prototype.getParent=function(){for(var e=this.parent;e instanceof Se;)e=e.parent;return e},t.prototype.findParent=function(e){for(var n=this;n&&n.type!==e;)n=n.parent;return n},t.prototype.findAParent=function(){for(var e=[],n=0;n{let s=i[0];return typeof e[s]!="undefined"?e[s]:r}),n}function Qd(t,e,...n){return Kd(e,n)}function Ye(t){return Qd}var Q=Ye(),Z=function(){function t(e,n){this.id=e,this.message=n}return t}(),x={NumberExpected:new Z("css-numberexpected",Q("expected.number","number expected")),ConditionExpected:new Z("css-conditionexpected",Q("expected.condt","condition expected")),RuleOrSelectorExpected:new Z("css-ruleorselectorexpected",Q("expected.ruleorselector","at-rule or selector expected")),DotExpected:new Z("css-dotexpected",Q("expected.dot","dot expected")),ColonExpected:new Z("css-colonexpected",Q("expected.colon","colon expected")),SemiColonExpected:new Z("css-semicolonexpected",Q("expected.semicolon","semi-colon expected")),TermExpected:new Z("css-termexpected",Q("expected.term","term expected")),ExpressionExpected:new Z("css-expressionexpected",Q("expected.expression","expression expected")),OperatorExpected:new Z("css-operatorexpected",Q("expected.operator","operator expected")),IdentifierExpected:new Z("css-identifierexpected",Q("expected.ident","identifier expected")),PercentageExpected:new Z("css-percentageexpected",Q("expected.percentage","percentage expected")),URIOrStringExpected:new Z("css-uriorstringexpected",Q("expected.uriorstring","uri or string expected")),URIExpected:new Z("css-uriexpected",Q("expected.uri","URI expected")),VariableNameExpected:new Z("css-varnameexpected",Q("expected.varname","variable name expected")),VariableValueExpected:new Z("css-varvalueexpected",Q("expected.varvalue","variable value expected")),PropertyValueExpected:new Z("css-propertyvalueexpected",Q("expected.propvalue","property value expected")),LeftCurlyExpected:new Z("css-lcurlyexpected",Q("expected.lcurly","{ expected")),RightCurlyExpected:new Z("css-rcurlyexpected",Q("expected.rcurly","} expected")),LeftSquareBracketExpected:new Z("css-rbracketexpected",Q("expected.lsquare","[ expected")),RightSquareBracketExpected:new Z("css-lbracketexpected",Q("expected.rsquare","] expected")),LeftParenthesisExpected:new Z("css-lparentexpected",Q("expected.lparen","( expected")),RightParenthesisExpected:new Z("css-rparentexpected",Q("expected.rparent",") expected")),CommaExpected:new Z("css-commaexpected",Q("expected.comma","comma expected")),PageDirectiveOrDeclarationExpected:new Z("css-pagedirordeclexpected",Q("expected.pagedirordecl","page directive or declaraton expected")),UnknownAtRule:new Z("css-unknownatrule",Q("unknown.atrule","at-rule unknown")),UnknownKeyword:new Z("css-unknownkeyword",Q("unknown.keyword","unknown keyword")),SelectorExpected:new Z("css-selectorexpected",Q("expected.selector","selector expected")),StringLiteralExpected:new Z("css-stringliteralexpected",Q("expected.stringliteral","string literal expected")),WhitespaceExpected:new Z("css-whitespaceexpected",Q("expected.whitespace","whitespace expected")),MediaQueryExpected:new Z("css-mediaqueryexpected",Q("expected.mediaquery","media query expected")),IdentifierOrWildcardExpected:new Z("css-idorwildcardexpected",Q("expected.idorwildcard","identifier or wildcard expected")),WildcardExpected:new Z("css-wildcardexpected",Q("expected.wildcard","wildcard expected")),IdentifierOrVariableExpected:new Z("css-idorvarexpected",Q("expected.idorvar","identifier or variable expected"))},So;(function(t){t.MIN_VALUE=-2147483648,t.MAX_VALUE=2147483647})(So||(So={}));var er;(function(t){t.MIN_VALUE=0,t.MAX_VALUE=2147483647})(er||(er={}));var Re;(function(t){function e(r,i){return r===Number.MAX_VALUE&&(r=er.MAX_VALUE),i===Number.MAX_VALUE&&(i=er.MAX_VALUE),{line:r,character:i}}t.create=e;function n(r){var i=r;return k.objectLiteral(i)&&k.uinteger(i.line)&&k.uinteger(i.character)}t.is=n})(Re||(Re={}));var te;(function(t){function e(r,i,s,a){if(k.uinteger(r)&&k.uinteger(i)&&k.uinteger(s)&&k.uinteger(a))return{start:Re.create(r,i),end:Re.create(s,a)};if(Re.is(r)&&Re.is(i))return{start:r,end:i};throw new Error("Range#create called with invalid arguments["+r+", "+i+", "+s+", "+a+"]")}t.create=e;function n(r){var i=r;return k.objectLiteral(i)&&Re.is(i.start)&&Re.is(i.end)}t.is=n})(te||(te={}));var Sn;(function(t){function e(r,i){return{uri:r,range:i}}t.create=e;function n(r){var i=r;return k.defined(i)&&te.is(i.range)&&(k.string(i.uri)||k.undefined(i.uri))}t.is=n})(Sn||(Sn={}));var _o;(function(t){function e(r,i,s,a){return{targetUri:r,targetRange:i,targetSelectionRange:s,originSelectionRange:a}}t.create=e;function n(r){var i=r;return k.defined(i)&&te.is(i.targetRange)&&k.string(i.targetUri)&&(te.is(i.targetSelectionRange)||k.undefined(i.targetSelectionRange))&&(te.is(i.originSelectionRange)||k.undefined(i.originSelectionRange))}t.is=n})(_o||(_o={}));var wi;(function(t){function e(r,i,s,a){return{red:r,green:i,blue:s,alpha:a}}t.create=e;function n(r){var i=r;return k.numberRange(i.red,0,1)&&k.numberRange(i.green,0,1)&&k.numberRange(i.blue,0,1)&&k.numberRange(i.alpha,0,1)}t.is=n})(wi||(wi={}));var Co;(function(t){function e(r,i){return{range:r,color:i}}t.create=e;function n(r){var i=r;return te.is(i.range)&&wi.is(i.color)}t.is=n})(Co||(Co={}));var ko;(function(t){function e(r,i,s){return{label:r,textEdit:i,additionalTextEdits:s}}t.create=e;function n(r){var i=r;return k.string(i.label)&&(k.undefined(i.textEdit)||H.is(i))&&(k.undefined(i.additionalTextEdits)||k.typedArray(i.additionalTextEdits,H.is))}t.is=n})(ko||(ko={}));var Eo;(function(t){t.Comment="comment",t.Imports="imports",t.Region="region"})(Eo||(Eo={}));var Ro;(function(t){function e(r,i,s,a,o){var l={startLine:r,endLine:i};return k.defined(s)&&(l.startCharacter=s),k.defined(a)&&(l.endCharacter=a),k.defined(o)&&(l.kind=o),l}t.create=e;function n(r){var i=r;return k.uinteger(i.startLine)&&k.uinteger(i.startLine)&&(k.undefined(i.startCharacter)||k.uinteger(i.startCharacter))&&(k.undefined(i.endCharacter)||k.uinteger(i.endCharacter))&&(k.undefined(i.kind)||k.string(i.kind))}t.is=n})(Ro||(Ro={}));var xi;(function(t){function e(r,i){return{location:r,message:i}}t.create=e;function n(r){var i=r;return k.defined(i)&&Sn.is(i.location)&&k.string(i.message)}t.is=n})(xi||(xi={}));var tr;(function(t){t.Error=1,t.Warning=2,t.Information=3,t.Hint=4})(tr||(tr={}));var Fo;(function(t){t.Unnecessary=1,t.Deprecated=2})(Fo||(Fo={}));var Do;(function(t){function e(n){var r=n;return r!=null&&k.string(r.href)}t.is=e})(Do||(Do={}));var nr;(function(t){function e(r,i,s,a,o,l){var c={range:r,message:i};return k.defined(s)&&(c.severity=s),k.defined(a)&&(c.code=a),k.defined(o)&&(c.source=o),k.defined(l)&&(c.relatedInformation=l),c}t.create=e;function n(r){var i,s=r;return k.defined(s)&&te.is(s.range)&&k.string(s.message)&&(k.number(s.severity)||k.undefined(s.severity))&&(k.integer(s.code)||k.string(s.code)||k.undefined(s.code))&&(k.undefined(s.codeDescription)||k.string((i=s.codeDescription)===null||i===void 0?void 0:i.href))&&(k.string(s.source)||k.undefined(s.source))&&(k.undefined(s.relatedInformation)||k.typedArray(s.relatedInformation,xi.is))}t.is=n})(nr||(nr={}));var Xt;(function(t){function e(r,i){for(var s=[],a=2;a0&&(o.arguments=s),o}t.create=e;function n(r){var i=r;return k.defined(i)&&k.string(i.title)&&k.string(i.command)}t.is=n})(Xt||(Xt={}));var H;(function(t){function e(s,a){return{range:s,newText:a}}t.replace=e;function n(s,a){return{range:{start:s,end:s},newText:a}}t.insert=n;function r(s){return{range:s,newText:""}}t.del=r;function i(s){var a=s;return k.objectLiteral(a)&&k.string(a.newText)&&te.is(a.range)}t.is=i})(H||(H={}));var Yt;(function(t){function e(r,i,s){var a={label:r};return i!==void 0&&(a.needsConfirmation=i),s!==void 0&&(a.description=s),a}t.create=e;function n(r){var i=r;return i!==void 0&&k.objectLiteral(i)&&k.string(i.label)&&(k.boolean(i.needsConfirmation)||i.needsConfirmation===void 0)&&(k.string(i.description)||i.description===void 0)}t.is=n})(Yt||(Yt={}));var Ce;(function(t){function e(n){var r=n;return typeof r=="string"}t.is=e})(Ce||(Ce={}));var St;(function(t){function e(s,a,o){return{range:s,newText:a,annotationId:o}}t.replace=e;function n(s,a,o){return{range:{start:s,end:s},newText:a,annotationId:o}}t.insert=n;function r(s,a){return{range:s,newText:"",annotationId:a}}t.del=r;function i(s){var a=s;return H.is(a)&&(Yt.is(a.annotationId)||Ce.is(a.annotationId))}t.is=i})(St||(St={}));var _n;(function(t){function e(r,i){return{textDocument:r,edits:i}}t.create=e;function n(r){var i=r;return k.defined(i)&&ir.is(i.textDocument)&&Array.isArray(i.edits)}t.is=n})(_n||(_n={}));var Cn;(function(t){function e(r,i,s){var a={kind:"create",uri:r};return i!==void 0&&(i.overwrite!==void 0||i.ignoreIfExists!==void 0)&&(a.options=i),s!==void 0&&(a.annotationId=s),a}t.create=e;function n(r){var i=r;return i&&i.kind==="create"&&k.string(i.uri)&&(i.options===void 0||(i.options.overwrite===void 0||k.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||k.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||Ce.is(i.annotationId))}t.is=n})(Cn||(Cn={}));var kn;(function(t){function e(r,i,s,a){var o={kind:"rename",oldUri:r,newUri:i};return s!==void 0&&(s.overwrite!==void 0||s.ignoreIfExists!==void 0)&&(o.options=s),a!==void 0&&(o.annotationId=a),o}t.create=e;function n(r){var i=r;return i&&i.kind==="rename"&&k.string(i.oldUri)&&k.string(i.newUri)&&(i.options===void 0||(i.options.overwrite===void 0||k.boolean(i.options.overwrite))&&(i.options.ignoreIfExists===void 0||k.boolean(i.options.ignoreIfExists)))&&(i.annotationId===void 0||Ce.is(i.annotationId))}t.is=n})(kn||(kn={}));var En;(function(t){function e(r,i,s){var a={kind:"delete",uri:r};return i!==void 0&&(i.recursive!==void 0||i.ignoreIfNotExists!==void 0)&&(a.options=i),s!==void 0&&(a.annotationId=s),a}t.create=e;function n(r){var i=r;return i&&i.kind==="delete"&&k.string(i.uri)&&(i.options===void 0||(i.options.recursive===void 0||k.boolean(i.options.recursive))&&(i.options.ignoreIfNotExists===void 0||k.boolean(i.options.ignoreIfNotExists)))&&(i.annotationId===void 0||Ce.is(i.annotationId))}t.is=n})(En||(En={}));var Si;(function(t){function e(n){var r=n;return r&&(r.changes!==void 0||r.documentChanges!==void 0)&&(r.documentChanges===void 0||r.documentChanges.every(function(i){return k.string(i.kind)?Cn.is(i)||kn.is(i)||En.is(i):_n.is(i)}))}t.is=e})(Si||(Si={}));var rr=function(){function t(e,n){this.edits=e,this.changeAnnotations=n}return t.prototype.insert=function(e,n,r){var i,s;if(r===void 0?i=H.insert(e,n):Ce.is(r)?(s=r,i=St.insert(e,n,r)):(this.assertChangeAnnotations(this.changeAnnotations),s=this.changeAnnotations.manage(r),i=St.insert(e,n,s)),this.edits.push(i),s!==void 0)return s},t.prototype.replace=function(e,n,r){var i,s;if(r===void 0?i=H.replace(e,n):Ce.is(r)?(s=r,i=St.replace(e,n,r)):(this.assertChangeAnnotations(this.changeAnnotations),s=this.changeAnnotations.manage(r),i=St.replace(e,n,s)),this.edits.push(i),s!==void 0)return s},t.prototype.delete=function(e,n){var r,i;if(n===void 0?r=H.del(e):Ce.is(n)?(i=n,r=St.del(e,n)):(this.assertChangeAnnotations(this.changeAnnotations),i=this.changeAnnotations.manage(n),r=St.del(e,i)),this.edits.push(r),i!==void 0)return i},t.prototype.add=function(e){this.edits.push(e)},t.prototype.all=function(){return this.edits},t.prototype.clear=function(){this.edits.splice(0,this.edits.length)},t.prototype.assertChangeAnnotations=function(e){if(e===void 0)throw new Error("Text edit change is not configured to manage change annotations.")},t}(),Ao=function(){function t(e){this._annotations=e===void 0?Object.create(null):e,this._counter=0,this._size=0}return t.prototype.all=function(){return this._annotations},Object.defineProperty(t.prototype,"size",{get:function(){return this._size},enumerable:!1,configurable:!0}),t.prototype.manage=function(e,n){var r;if(Ce.is(e)?r=e:(r=this.nextId(),n=e),this._annotations[r]!==void 0)throw new Error("Id "+r+" is already in use.");if(n===void 0)throw new Error("No annotation provided for id "+r);return this._annotations[r]=n,this._size++,r},t.prototype.nextId=function(){return this._counter++,this._counter.toString()},t}();(function(){function t(e){var n=this;this._textEditChanges=Object.create(null),e!==void 0?(this._workspaceEdit=e,e.documentChanges?(this._changeAnnotations=new Ao(e.changeAnnotations),e.changeAnnotations=this._changeAnnotations.all(),e.documentChanges.forEach(function(r){if(_n.is(r)){var i=new rr(r.edits,n._changeAnnotations);n._textEditChanges[r.textDocument.uri]=i}})):e.changes&&Object.keys(e.changes).forEach(function(r){var i=new rr(e.changes[r]);n._textEditChanges[r]=i})):this._workspaceEdit={}}return Object.defineProperty(t.prototype,"edit",{get:function(){return this.initDocumentChanges(),this._changeAnnotations!==void 0&&(this._changeAnnotations.size===0?this._workspaceEdit.changeAnnotations=void 0:this._workspaceEdit.changeAnnotations=this._changeAnnotations.all()),this._workspaceEdit},enumerable:!1,configurable:!0}),t.prototype.getTextEditChange=function(e){if(ir.is(e)){if(this.initDocumentChanges(),this._workspaceEdit.documentChanges===void 0)throw new Error("Workspace edit is not configured for document changes.");var n={uri:e.uri,version:e.version},r=this._textEditChanges[n.uri];if(!r){var i=[],s={textDocument:n,edits:i};this._workspaceEdit.documentChanges.push(s),r=new rr(i,this._changeAnnotations),this._textEditChanges[n.uri]=r}return r}else{if(this.initChanges(),this._workspaceEdit.changes===void 0)throw new Error("Workspace edit is not configured for normal text edit changes.");var r=this._textEditChanges[e];if(!r){var i=[];this._workspaceEdit.changes[e]=i,r=new rr(i),this._textEditChanges[e]=r}return r}},t.prototype.initDocumentChanges=function(){this._workspaceEdit.documentChanges===void 0&&this._workspaceEdit.changes===void 0&&(this._changeAnnotations=new Ao,this._workspaceEdit.documentChanges=[],this._workspaceEdit.changeAnnotations=this._changeAnnotations.all())},t.prototype.initChanges=function(){this._workspaceEdit.documentChanges===void 0&&this._workspaceEdit.changes===void 0&&(this._workspaceEdit.changes=Object.create(null))},t.prototype.createFile=function(e,n,r){if(this.initDocumentChanges(),this._workspaceEdit.documentChanges===void 0)throw new Error("Workspace edit is not configured for document changes.");var i;Yt.is(n)||Ce.is(n)?i=n:r=n;var s,a;if(i===void 0?s=Cn.create(e,r):(a=Ce.is(i)?i:this._changeAnnotations.manage(i),s=Cn.create(e,r,a)),this._workspaceEdit.documentChanges.push(s),a!==void 0)return a},t.prototype.renameFile=function(e,n,r,i){if(this.initDocumentChanges(),this._workspaceEdit.documentChanges===void 0)throw new Error("Workspace edit is not configured for document changes.");var s;Yt.is(r)||Ce.is(r)?s=r:i=r;var a,o;if(s===void 0?a=kn.create(e,n,i):(o=Ce.is(s)?s:this._changeAnnotations.manage(s),a=kn.create(e,n,i,o)),this._workspaceEdit.documentChanges.push(a),o!==void 0)return o},t.prototype.deleteFile=function(e,n,r){if(this.initDocumentChanges(),this._workspaceEdit.documentChanges===void 0)throw new Error("Workspace edit is not configured for document changes.");var i;Yt.is(n)||Ce.is(n)?i=n:r=n;var s,a;if(i===void 0?s=En.create(e,r):(a=Ce.is(i)?i:this._changeAnnotations.manage(i),s=En.create(e,r,a)),this._workspaceEdit.documentChanges.push(s),a!==void 0)return a},t})();var Po;(function(t){function e(r){return{uri:r}}t.create=e;function n(r){var i=r;return k.defined(i)&&k.string(i.uri)}t.is=n})(Po||(Po={}));var _i;(function(t){function e(r,i){return{uri:r,version:i}}t.create=e;function n(r){var i=r;return k.defined(i)&&k.string(i.uri)&&k.integer(i.version)}t.is=n})(_i||(_i={}));var ir;(function(t){function e(r,i){return{uri:r,version:i}}t.create=e;function n(r){var i=r;return k.defined(i)&&k.string(i.uri)&&(i.version===null||k.integer(i.version))}t.is=n})(ir||(ir={}));var No;(function(t){function e(r,i,s,a){return{uri:r,languageId:i,version:s,text:a}}t.create=e;function n(r){var i=r;return k.defined(i)&&k.string(i.uri)&&k.string(i.languageId)&&k.integer(i.version)&&k.string(i.text)}t.is=n})(No||(No={}));var je;(function(t){t.PlainText="plaintext",t.Markdown="markdown"})(je||(je={})),function(t){function e(n){var r=n;return r===t.PlainText||r===t.Markdown}t.is=e}(je||(je={}));var Ci;(function(t){function e(n){var r=n;return k.objectLiteral(n)&&je.is(r.kind)&&k.string(r.value)}t.is=e})(Ci||(Ci={}));var $;(function(t){t.Text=1,t.Method=2,t.Function=3,t.Constructor=4,t.Field=5,t.Variable=6,t.Class=7,t.Interface=8,t.Module=9,t.Property=10,t.Unit=11,t.Value=12,t.Enum=13,t.Keyword=14,t.Snippet=15,t.Color=16,t.File=17,t.Reference=18,t.Folder=19,t.EnumMember=20,t.Constant=21,t.Struct=22,t.Event=23,t.Operator=24,t.TypeParameter=25})($||($={}));var Le;(function(t){t.PlainText=1,t.Snippet=2})(Le||(Le={}));var Ft;(function(t){t.Deprecated=1})(Ft||(Ft={}));var Mo;(function(t){function e(r,i,s){return{newText:r,insert:i,replace:s}}t.create=e;function n(r){var i=r;return i&&k.string(i.newText)&&te.is(i.insert)&&te.is(i.replace)}t.is=n})(Mo||(Mo={}));var Io;(function(t){t.asIs=1,t.adjustIndentation=2})(Io||(Io={}));var zo;(function(t){function e(n){return{label:n}}t.create=e})(zo||(zo={}));var Lo;(function(t){function e(n,r){return{items:n||[],isIncomplete:!!r}}t.create=e})(Lo||(Lo={}));var sr;(function(t){function e(r){return r.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}t.fromPlainText=e;function n(r){var i=r;return k.string(i)||k.objectLiteral(i)&&k.string(i.language)&&k.string(i.value)}t.is=n})(sr||(sr={}));var To;(function(t){function e(n){var r=n;return!!r&&k.objectLiteral(r)&&(Ci.is(r.contents)||sr.is(r.contents)||k.typedArray(r.contents,sr.is))&&(n.range===void 0||te.is(n.range))}t.is=e})(To||(To={}));var Oo;(function(t){function e(n,r){return r?{label:n,documentation:r}:{label:n}}t.create=e})(Oo||(Oo={}));var Wo;(function(t){function e(n,r){for(var i=[],s=2;s=0;h--){var u=l[h],f=s.offsetAt(u.range.start),m=s.offsetAt(u.range.end);if(m<=c)o=o.substring(0,f)+u.newText+o.substring(m,o.length);else throw new Error("Overlapping edit");c=f}return o}t.applyEdits=r;function i(s,a){if(s.length<=1)return s;var o=s.length/2|0,l=s.slice(0,o),c=s.slice(o);i(l,a),i(c,a);for(var h=0,u=0,f=0;h0&&e.push(n.length),this._lineOffsets=e}return this._lineOffsets},t.prototype.positionAt=function(e){e=Math.max(Math.min(e,this._content.length),0);var n=this.getLineOffsets(),r=0,i=n.length;if(i===0)return Re.create(0,e);for(;re?i=s:r=s+1}var a=r-1;return Re.create(a,e-n[a])},t.prototype.offsetAt=function(e){var n=this.getLineOffsets();if(e.line>=n.length)return this._content.length;if(e.line<0)return 0;var r=n[e.line],i=e.line+1t?r=s:n=s+1}let i=n-1;return{line:i,character:t-e[i]}}offsetAt(t){let e=this.getLineOffsets();if(t.line>=e.length)return this._content.length;if(t.line<0)return 0;let n=e[t.line],r=t.line+1{let f=h.range.start.line-u.range.start.line;return f===0?h.range.start.character-u.range.start.character:f}),l=0;const c=[];for(const h of o){let u=i.offsetAt(h.range.start);if(ul&&c.push(a.substring(l,u)),h.newText.length&&c.push(h.newText),l=i.offsetAt(h.range.end)}return c.push(a.substr(l)),c.join("")}t.applyEdits=r})(Ri||(Ri={}));function Fi(t,e){if(t.length<=1)return t;const n=t.length/2|0,r=t.slice(0,n),i=t.slice(n);Fi(r,e),Fi(i,e);let s=0,a=0,o=0;for(;sn.line||e.line===n.line&&e.character>n.character?{start:n,end:e}:t}function eu(t){const e=Yo(t.range);return e!==t.range?{newText:t.newText,range:e}:t}var Ko;(function(t){t.LATEST={textDocument:{completion:{completionItem:{documentationFormat:[je.Markdown,je.PlainText]}},hover:{contentFormat:[je.Markdown,je.PlainText]}}}})(Ko||(Ko={}));var Rn;(function(t){t[t.Unknown=0]="Unknown",t[t.File=1]="File",t[t.Directory=2]="Directory",t[t.SymbolicLink=64]="SymbolicLink"})(Rn||(Rn={}));var Qo={E:"Edge",FF:"Firefox",S:"Safari",C:"Chrome",IE:"IE",O:"Opera"};function Zo(t){switch(t){case"experimental":return`⚠️ Property is experimental. Be cautious when using it.️ + +`;case"nonstandard":return`🚨️ Property is nonstandard. Avoid using it. + +`;case"obsolete":return`🚨️️️ Property is obsolete. Avoid using it. + +`;default:return""}}function _t(t,e,n){var r;if(e?r={kind:"markdown",value:nu(t,n)}:r={kind:"plaintext",value:tu(t,n)},r.value!=="")return r}function lr(t){return t=t.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&"),t.replace(//g,">")}function tu(t,e){if(!t.description||t.description==="")return"";if(typeof t.description!="string")return t.description.value;var n="";if((e==null?void 0:e.documentation)!==!1){t.status&&(n+=Zo(t.status)),n+=t.description;var r=el(t.browsers);r&&(n+=` +(`+r+")"),"syntax"in t&&(n+=` + +Syntax: `.concat(t.syntax))}return t.references&&t.references.length>0&&(e==null?void 0:e.references)!==!1&&(n.length>0&&(n+=` + +`),n+=t.references.map(function(i){return"".concat(i.name,": ").concat(i.url)}).join(" | ")),n}function nu(t,e){if(!t.description||t.description==="")return"";var n="";if((e==null?void 0:e.documentation)!==!1){t.status&&(n+=Zo(t.status)),typeof t.description=="string"?n+=lr(t.description):n+=t.description.kind===je.Markdown?t.description.value:lr(t.description.value);var r=el(t.browsers);r&&(n+=` + +(`+lr(r)+")"),"syntax"in t&&t.syntax&&(n+=` + +Syntax: `.concat(lr(t.syntax)))}return t.references&&t.references.length>0&&(e==null?void 0:e.references)!==!1&&(n.length>0&&(n+=` + +`),n+=t.references.map(function(i){return"[".concat(i.name,"](").concat(i.url,")")}).join(" | ")),n}function el(t){return t===void 0&&(t=[]),t.length===0?null:t.map(function(e){var n="",r=e.match(/([A-Z]+)(\d+)?/),i=r[1],s=r[2];return i in Qo&&(n+=Qo[i]),s&&(n+=" "+s),n}).join(", ")}var Fn=Ye(),ru=[{func:"rgb($red, $green, $blue)",desc:Fn("css.builtin.rgb","Creates a Color from red, green, and blue values.")},{func:"rgba($red, $green, $blue, $alpha)",desc:Fn("css.builtin.rgba","Creates a Color from red, green, blue, and alpha values.")},{func:"hsl($hue, $saturation, $lightness)",desc:Fn("css.builtin.hsl","Creates a Color from hue, saturation, and lightness values.")},{func:"hsla($hue, $saturation, $lightness, $alpha)",desc:Fn("css.builtin.hsla","Creates a Color from hue, saturation, lightness, and alpha values.")},{func:"hwb($hue $white $black)",desc:Fn("css.builtin.hwb","Creates a Color from hue, white and black.")}],cr={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rebeccapurple:"#663399",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},tl={currentColor:"The value of the 'color' property. The computed value of the 'currentColor' keyword is the computed value of the 'color' property. If the 'currentColor' keyword is set on the 'color' property itself, it is treated as 'color:inherit' at parse time.",transparent:"Fully transparent. This keyword can be considered a shorthand for rgba(0,0,0,0) which is its computed value."};function Ct(t,e){var n=t.getText(),r=n.match(/^([-+]?[0-9]*\.?[0-9]+)(%?)$/);if(r){r[2]&&(e=100);var i=parseFloat(r[1])/e;if(i>=0&&i<=1)return i}throw new Error}function nl(t){var e=t.getText(),n=e.match(/^([-+]?[0-9]*\.?[0-9]+)(deg|rad|grad|turn)?$/);if(n)switch(n[2]){case"deg":return parseFloat(e)%360;case"rad":return parseFloat(e)*180/Math.PI%360;case"grad":return parseFloat(e)*.9%360;case"turn":return parseFloat(e)*360%360;default:if(typeof n[2]=="undefined")return parseFloat(e)%360}throw new Error}function iu(t){var e=t.getName();return e?/^(rgb|rgba|hsl|hsla|hwb)$/gi.test(e):!1}var rl=48,su=57,au=65,hr=97,ou=102;function de(t){return t=hr&&t<=ou?t-hr+10:0)}function il(t){if(t[0]!=="#")return null;switch(t.length){case 4:return{red:de(t.charCodeAt(1))*17/255,green:de(t.charCodeAt(2))*17/255,blue:de(t.charCodeAt(3))*17/255,alpha:1};case 5:return{red:de(t.charCodeAt(1))*17/255,green:de(t.charCodeAt(2))*17/255,blue:de(t.charCodeAt(3))*17/255,alpha:de(t.charCodeAt(4))*17/255};case 7:return{red:(de(t.charCodeAt(1))*16+de(t.charCodeAt(2)))/255,green:(de(t.charCodeAt(3))*16+de(t.charCodeAt(4)))/255,blue:(de(t.charCodeAt(5))*16+de(t.charCodeAt(6)))/255,alpha:1};case 9:return{red:(de(t.charCodeAt(1))*16+de(t.charCodeAt(2)))/255,green:(de(t.charCodeAt(3))*16+de(t.charCodeAt(4)))/255,blue:(de(t.charCodeAt(5))*16+de(t.charCodeAt(6)))/255,alpha:(de(t.charCodeAt(7))*16+de(t.charCodeAt(8)))/255}}return null}function sl(t,e,n,r){if(r===void 0&&(r=1),t=t/60,e===0)return{red:n,green:n,blue:n,alpha:r};var i=function(o,l,c){for(;c<0;)c+=6;for(;c>=6;)c-=6;return c<1?(l-o)*c+o:c<3?l:c<4?(l-o)*(4-c)+o:o},s=n<=.5?n*(e+1):n+e-n*e,a=n*2-s;return{red:i(a,s,t+2),green:i(a,s,t),blue:i(a,s,t-2),alpha:r}}function al(t){var e=t.red,n=t.green,r=t.blue,i=t.alpha,s=Math.max(e,n,r),a=Math.min(e,n,r),o=0,l=0,c=(a+s)/2,h=s-a;if(h>0){switch(l=Math.min(c<=.5?h/(2*c):h/(2-2*c),1),s){case e:o=(n-r)/h+(n=1){var i=e/(e+n);return{red:i,green:i,blue:i,alpha:r}}var s=sl(t,1,.5,r),a=s.red;a*=1-e-n,a+=e;var o=s.green;o*=1-e-n,o+=e;var l=s.blue;return l*=1-e-n,l+=e,{red:a,green:o,blue:l,alpha:r}}function cu(t){var e=al(t),n=Math.min(t.red,t.green,t.blue),r=1-Math.max(t.red,t.green,t.blue);return{h:e.h,w:n,b:r,a:e.a}}function hu(t){if(t.type===b.HexColorValue){var e=t.getText();return il(e)}else if(t.type===b.Function){var n=t,r=n.getName(),i=n.getArguments().getChildren();if(i.length===1){var s=i[0].getChildren();if(s.length===1&&s[0].type===b.Expression&&(i=s[0].getChildren(),i.length===3)){var a=i[2];if(a instanceof fi){var o=a.getLeft(),l=a.getRight(),c=a.getOperator();o&&l&&c&&c.matches("/")&&(i=[i[0],i[1],o,l])}}}if(!r||i.length<3||i.length>4)return null;try{var h=i.length===4?Ct(i[3],1):1;if(r==="rgb"||r==="rgba")return{red:Ct(i[0],255),green:Ct(i[1],255),blue:Ct(i[2],255),alpha:h};if(r==="hsl"||r==="hsla"){var u=nl(i[0]),f=Ct(i[1],100),m=Ct(i[2],100);return sl(u,f,m,h)}else if(r==="hwb"){var u=nl(i[0]),g=Ct(i[1],100),v=Ct(i[2],100);return lu(u,g,v,h)}}catch(I){return null}}else if(t.type===b.Identifier){if(t.parent&&t.parent.type!==b.Term)return null;var y=t.parent;if(y&&y.parent&&y.parent.type===b.BinaryExpression){var w=y.parent;if(w.parent&&w.parent.type===b.ListEntry&&w.parent.key===w)return null}var S=t.getText().toLowerCase();if(S==="none")return null;var C=cr[S];if(C)return il(C)}return null}var ol={bottom:"Computes to ‘100%’ for the vertical position if one or two values are given, otherwise specifies the bottom edge as the origin for the next offset.",center:"Computes to ‘50%’ (‘left 50%’) for the horizontal position if the horizontal position is not otherwise specified, or ‘50%’ (‘top 50%’) for the vertical position if it is.",left:"Computes to ‘0%’ for the horizontal position if one or two values are given, otherwise specifies the left edge as the origin for the next offset.",right:"Computes to ‘100%’ for the horizontal position if one or two values are given, otherwise specifies the right edge as the origin for the next offset.",top:"Computes to ‘0%’ for the vertical position if one or two values are given, otherwise specifies the top edge as the origin for the next offset."},ll={"no-repeat":"Placed once and not repeated in this direction.",repeat:"Repeated in this direction as often as needed to cover the background painting area.","repeat-x":"Computes to ‘repeat no-repeat’.","repeat-y":"Computes to ‘no-repeat repeat’.",round:"Repeated as often as will fit within the background positioning area. If it doesn’t fit a whole number of times, it is rescaled so that it does.",space:"Repeated as often as will fit within the background positioning area without being clipped and then the images are spaced out to fill the area."},cl={dashed:"A series of square-ended dashes.",dotted:"A series of round dots.",double:"Two parallel solid lines with some space between them.",groove:"Looks as if it were carved in the canvas.",hidden:"Same as ‘none’, but has different behavior in the border conflict resolution rules for border-collapsed tables.",inset:"Looks as if the content on the inside of the border is sunken into the canvas.",none:"No border. Color and width are ignored.",outset:"Looks as if the content on the inside of the border is coming out of the canvas.",ridge:"Looks as if it were coming out of the canvas.",solid:"A single line segment."},du=["medium","thick","thin"],hl={"border-box":"The background is painted within (clipped to) the border box.","content-box":"The background is painted within (clipped to) the content box.","padding-box":"The background is painted within (clipped to) the padding box."},dl={"margin-box":"Uses the margin box as reference box.","fill-box":"Uses the object bounding box as reference box.","stroke-box":"Uses the stroke bounding box as reference box.","view-box":"Uses the nearest SVG viewport as reference box."},ul={initial:"Represents the value specified as the property’s initial value.",inherit:"Represents the computed value of the property on the element’s parent.",unset:"Acts as either `inherit` or `initial`, depending on whether the property is inherited or not."},pl={"var()":"Evaluates the value of a custom variable.","calc()":"Evaluates an mathematical expression. The following operators can be used: + - * /."},ml={"url()":"Reference an image file by URL","image()":"Provide image fallbacks and annotations.","-webkit-image-set()":"Provide multiple resolutions. Remember to use unprefixed image-set() in addition.","image-set()":"Provide multiple resolutions of an image and const the UA decide which is most appropriate in a given situation.","-moz-element()":"Use an element in the document as an image. Remember to use unprefixed element() in addition.","element()":"Use an element in the document as an image.","cross-fade()":"Indicates the two images to be combined and how far along in the transition the combination is.","-webkit-gradient()":"Deprecated. Use modern linear-gradient() or radial-gradient() instead.","-webkit-linear-gradient()":"Linear gradient. Remember to use unprefixed version in addition.","-moz-linear-gradient()":"Linear gradient. Remember to use unprefixed version in addition.","-o-linear-gradient()":"Linear gradient. Remember to use unprefixed version in addition.","linear-gradient()":"A linear gradient is created by specifying a straight gradient line, and then several colors placed along that line.","-webkit-repeating-linear-gradient()":"Repeating Linear gradient. Remember to use unprefixed version in addition.","-moz-repeating-linear-gradient()":"Repeating Linear gradient. Remember to use unprefixed version in addition.","-o-repeating-linear-gradient()":"Repeating Linear gradient. Remember to use unprefixed version in addition.","repeating-linear-gradient()":"Same as linear-gradient, except the color-stops are repeated infinitely in both directions, with their positions shifted by multiples of the difference between the last specified color-stop’s position and the first specified color-stop’s position.","-webkit-radial-gradient()":"Radial gradient. Remember to use unprefixed version in addition.","-moz-radial-gradient()":"Radial gradient. Remember to use unprefixed version in addition.","radial-gradient()":"Colors emerge from a single point and smoothly spread outward in a circular or elliptical shape.","-webkit-repeating-radial-gradient()":"Repeating radial gradient. Remember to use unprefixed version in addition.","-moz-repeating-radial-gradient()":"Repeating radial gradient. Remember to use unprefixed version in addition.","repeating-radial-gradient()":"Same as radial-gradient, except the color-stops are repeated infinitely in both directions, with their positions shifted by multiples of the difference between the last specified color-stop’s position and the first specified color-stop’s position."},fl={ease:"Equivalent to cubic-bezier(0.25, 0.1, 0.25, 1.0).","ease-in":"Equivalent to cubic-bezier(0.42, 0, 1.0, 1.0).","ease-in-out":"Equivalent to cubic-bezier(0.42, 0, 0.58, 1.0).","ease-out":"Equivalent to cubic-bezier(0, 0, 0.58, 1.0).",linear:"Equivalent to cubic-bezier(0.0, 0.0, 1.0, 1.0).","step-end":"Equivalent to steps(1, end).","step-start":"Equivalent to steps(1, start).","steps()":"The first parameter specifies the number of intervals in the function. The second parameter, which is optional, is either the value “start” or “end”.","cubic-bezier()":"Specifies a cubic-bezier curve. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2).","cubic-bezier(0.6, -0.28, 0.735, 0.045)":"Ease-in Back. Overshoots.","cubic-bezier(0.68, -0.55, 0.265, 1.55)":"Ease-in-out Back. Overshoots.","cubic-bezier(0.175, 0.885, 0.32, 1.275)":"Ease-out Back. Overshoots.","cubic-bezier(0.6, 0.04, 0.98, 0.335)":"Ease-in Circular. Based on half circle.","cubic-bezier(0.785, 0.135, 0.15, 0.86)":"Ease-in-out Circular. Based on half circle.","cubic-bezier(0.075, 0.82, 0.165, 1)":"Ease-out Circular. Based on half circle.","cubic-bezier(0.55, 0.055, 0.675, 0.19)":"Ease-in Cubic. Based on power of three.","cubic-bezier(0.645, 0.045, 0.355, 1)":"Ease-in-out Cubic. Based on power of three.","cubic-bezier(0.215, 0.610, 0.355, 1)":"Ease-out Cubic. Based on power of three.","cubic-bezier(0.95, 0.05, 0.795, 0.035)":"Ease-in Exponential. Based on two to the power ten.","cubic-bezier(1, 0, 0, 1)":"Ease-in-out Exponential. Based on two to the power ten.","cubic-bezier(0.19, 1, 0.22, 1)":"Ease-out Exponential. Based on two to the power ten.","cubic-bezier(0.47, 0, 0.745, 0.715)":"Ease-in Sine.","cubic-bezier(0.445, 0.05, 0.55, 0.95)":"Ease-in-out Sine.","cubic-bezier(0.39, 0.575, 0.565, 1)":"Ease-out Sine.","cubic-bezier(0.55, 0.085, 0.68, 0.53)":"Ease-in Quadratic. Based on power of two.","cubic-bezier(0.455, 0.03, 0.515, 0.955)":"Ease-in-out Quadratic. Based on power of two.","cubic-bezier(0.25, 0.46, 0.45, 0.94)":"Ease-out Quadratic. Based on power of two.","cubic-bezier(0.895, 0.03, 0.685, 0.22)":"Ease-in Quartic. Based on power of four.","cubic-bezier(0.77, 0, 0.175, 1)":"Ease-in-out Quartic. Based on power of four.","cubic-bezier(0.165, 0.84, 0.44, 1)":"Ease-out Quartic. Based on power of four.","cubic-bezier(0.755, 0.05, 0.855, 0.06)":"Ease-in Quintic. Based on power of five.","cubic-bezier(0.86, 0, 0.07, 1)":"Ease-in-out Quintic. Based on power of five.","cubic-bezier(0.23, 1, 0.320, 1)":"Ease-out Quintic. Based on power of five."},gl={"circle()":"Defines a circle.","ellipse()":"Defines an ellipse.","inset()":"Defines an inset rectangle.","polygon()":"Defines a polygon."},bl={length:["em","rem","ex","px","cm","mm","in","pt","pc","ch","vw","vh","vmin","vmax"],angle:["deg","rad","grad","turn"],time:["ms","s"],frequency:["Hz","kHz"],resolution:["dpi","dpcm","dppx"],percentage:["%","fr"]},uu=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","const","video","wbr"],pu=["circle","clipPath","cursor","defs","desc","ellipse","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","foreignObject","g","hatch","hatchpath","image","line","linearGradient","marker","mask","mesh","meshpatch","meshrow","metadata","mpath","path","pattern","polygon","polyline","radialGradient","rect","set","solidcolor","stop","svg","switch","symbol","text","textPath","tspan","use","view"],mu=["@bottom-center","@bottom-left","@bottom-left-corner","@bottom-right","@bottom-right-corner","@left-bottom","@left-middle","@left-top","@right-bottom","@right-middle","@right-top","@top-center","@top-left","@top-left-corner","@top-right","@top-right-corner"];function dr(t){return Object.keys(t).map(function(e){return t[e]})}function Be(t){return typeof t!="undefined"}var vl=function(t,e,n){if(n||arguments.length===2)for(var r=0,i=e.length,s;re.offset?s-e.offset:0}return e},t.prototype.markError=function(e,n,r,i){this.token!==this.lastErrorToken&&(e.addIssue(new xo(e,n,ze.Error,void 0,this.token.offset,this.token.len)),this.lastErrorToken=this.token),(r||i)&&this.resync(r,i)},t.prototype.parseStylesheet=function(e){var n=e.version,r=e.getText(),i=function(s,a){if(e.version!==n)throw new Error("Underlying model has changed, AST is no longer valid");return r.substr(s,a)};return this.internalParse(r,this._parseStylesheet,i)},t.prototype.internalParse=function(e,n,r){this.scanner.setSource(e),this.token=this.scanner.scan();var i=n.bind(this)();return i&&(r?i.textProvider=r:i.textProvider=function(s,a){return e.substr(s,a)}),i},t.prototype._parseStylesheet=function(){for(var e=this.create(yd);e.addChild(this._parseStylesheetStart()););var n=!1;do{var r=!1;do{r=!1;var i=this._parseStylesheetStatement();for(i&&(e.addChild(i),r=!0,n=!1,!this.peek(p.EOF)&&this._needsSemicolonAfter(i)&&!this.accept(p.SemiColon)&&this.markError(e,x.SemiColonExpected));this.accept(p.SemiColon)||this.accept(p.CDO)||this.accept(p.CDC);)r=!0,n=!1}while(r);if(this.peek(p.EOF))break;n||(this.peek(p.AtKeyword)?this.markError(e,x.UnknownAtRule):this.markError(e,x.RuleOrSelectorExpected),n=!0),this.consumeToken()}while(!this.peek(p.EOF));return this.finish(e)},t.prototype._parseStylesheetStart=function(){return this._parseCharset()},t.prototype._parseStylesheetStatement=function(e){return e===void 0&&(e=!1),this.peek(p.AtKeyword)?this._parseStylesheetAtStatement(e):this._parseRuleset(e)},t.prototype._parseStylesheetAtStatement=function(e){return e===void 0&&(e=!1),this._parseImport()||this._parseMedia(e)||this._parsePage()||this._parseFontFace()||this._parseKeyframe()||this._parseSupports(e)||this._parseViewPort()||this._parseNamespace()||this._parseDocument()||this._parseUnknownAtRule()},t.prototype._tryParseRuleset=function(e){var n=this.mark();if(this._parseSelector(e)){for(;this.accept(p.Comma)&&this._parseSelector(e););if(this.accept(p.CurlyL))return this.restoreAtMark(n),this._parseRuleset(e)}return this.restoreAtMark(n),null},t.prototype._parseRuleset=function(e){e===void 0&&(e=!1);var n=this.create(Ht),r=n.getSelectors();if(!r.addChild(this._parseSelector(e)))return null;for(;this.accept(p.Comma);)if(!r.addChild(this._parseSelector(e)))return this.finish(n,x.SelectorExpected);return this._parseBody(n,this._parseRuleSetDeclaration.bind(this))},t.prototype._parseRuleSetDeclarationAtStatement=function(){return this._parseUnknownAtRule()},t.prototype._parseRuleSetDeclaration=function(){return this.peek(p.AtKeyword)?this._parseRuleSetDeclarationAtStatement():this._parseDeclaration()},t.prototype._needsSemicolonAfter=function(e){switch(e.type){case b.Keyframe:case b.ViewPort:case b.Media:case b.Ruleset:case b.Namespace:case b.If:case b.For:case b.Each:case b.While:case b.MixinDeclaration:case b.FunctionDeclaration:case b.MixinContentDeclaration:return!1;case b.ExtendsReference:case b.MixinContentReference:case b.ReturnStatement:case b.MediaQuery:case b.Debug:case b.Import:case b.AtApplyRule:case b.CustomPropertyDeclaration:return!0;case b.VariableDeclaration:return e.needsSemicolon;case b.MixinReference:return!e.getContent();case b.Declaration:return!e.getNestedProperties()}return!1},t.prototype._parseDeclarations=function(e){var n=this.create(hi);if(!this.accept(p.CurlyL))return null;for(var r=e();n.addChild(r)&&!this.peek(p.CurlyR);){if(this._needsSemicolonAfter(r)&&!this.accept(p.SemiColon))return this.finish(n,x.SemiColonExpected,[p.SemiColon,p.CurlyR]);for(r&&this.prevToken&&this.prevToken.type===p.SemiColon&&(r.semicolonPosition=this.prevToken.offset);this.accept(p.SemiColon););r=e()}return this.accept(p.CurlyR)?this.finish(n):this.finish(n,x.RightCurlyExpected,[p.CurlyR,p.SemiColon])},t.prototype._parseBody=function(e,n){return e.setDeclarations(this._parseDeclarations(n))?this.finish(e):this.finish(e,x.LeftCurlyExpected,[p.CurlyR,p.SemiColon])},t.prototype._parseSelector=function(e){var n=this.create(bn),r=!1;for(e&&(r=n.addChild(this._parseCombinator()));n.addChild(this._parseSimpleSelector());)r=!0,n.addChild(this._parseCombinator());return r?this.finish(n):null},t.prototype._parseDeclaration=function(e){var n=this._tryParseCustomPropertyDeclaration(e);if(n)return n;var r=this.create(rt);return r.setProperty(this._parseProperty())?this.accept(p.Colon)?(this.prevToken&&(r.colonPosition=this.prevToken.offset),r.setValue(this._parseExpr())?(r.addChild(this._parsePrio()),this.peek(p.SemiColon)&&(r.semicolonPosition=this.token.offset),this.finish(r)):this.finish(r,x.PropertyValueExpected)):this.finish(r,x.ColonExpected,[p.Colon],e||[p.SemiColon]):null},t.prototype._tryParseCustomPropertyDeclaration=function(e){if(!this.peekRegExp(p.Ident,/^--/))return null;var n=this.create(xd);if(!n.setProperty(this._parseProperty()))return null;if(!this.accept(p.Colon))return this.finish(n,x.ColonExpected,[p.Colon]);this.prevToken&&(n.colonPosition=this.prevToken.offset);var r=this.mark();if(this.peek(p.CurlyL)){var i=this.create(wd),s=this._parseDeclarations(this._parseRuleSetDeclaration.bind(this));if(i.setDeclarations(s)&&!s.isErroneous(!0)&&(i.addChild(this._parsePrio()),this.peek(p.SemiColon)))return this.finish(i),n.setPropertySet(i),n.semicolonPosition=this.token.offset,this.finish(n);this.restoreAtMark(r)}var a=this._parseExpr();return a&&!a.isErroneous(!0)&&(this._parsePrio(),this.peekOne.apply(this,vl(vl([],e||[],!1),[p.SemiColon,p.EOF],!1)))?(n.setValue(a),this.peek(p.SemiColon)&&(n.semicolonPosition=this.token.offset),this.finish(n)):(this.restoreAtMark(r),n.addChild(this._parseCustomPropertyValue(e)),n.addChild(this._parsePrio()),Be(n.colonPosition)&&this.token.offset===n.colonPosition+1?this.finish(n,x.PropertyValueExpected):this.finish(n))},t.prototype._parseCustomPropertyValue=function(e){var n=this;e===void 0&&(e=[p.CurlyR]);var r=this.create(O),i=function(){return a===0&&o===0&&l===0},s=function(){return e.indexOf(n.token.type)!==-1},a=0,o=0,l=0;e:for(;;){switch(this.token.type){case p.SemiColon:if(i())break e;break;case p.Exclamation:if(i())break e;break;case p.CurlyL:a++;break;case p.CurlyR:if(a--,a<0){if(s()&&o===0&&l===0)break e;return this.finish(r,x.LeftCurlyExpected)}break;case p.ParenthesisL:o++;break;case p.ParenthesisR:if(o--,o<0){if(s()&&l===0&&a===0)break e;return this.finish(r,x.LeftParenthesisExpected)}break;case p.BracketL:l++;break;case p.BracketR:if(l--,l<0)return this.finish(r,x.LeftSquareBracketExpected);break;case p.BadString:break e;case p.EOF:var c=x.RightCurlyExpected;return l>0?c=x.RightSquareBracketExpected:o>0&&(c=x.RightParenthesisExpected),this.finish(r,c)}this.consumeToken()}return this.finish(r)},t.prototype._tryToParseDeclaration=function(e){var n=this.mark();return this._parseProperty()&&this.accept(p.Colon)?(this.restoreAtMark(n),this._parseDeclaration(e)):(this.restoreAtMark(n),null)},t.prototype._parseProperty=function(){var e=this.create(ui),n=this.mark();return(this.acceptDelim("*")||this.acceptDelim("_"))&&this.hasWhitespace()?(this.restoreAtMark(n),null):e.setIdentifier(this._parsePropertyIdentifier())?this.finish(e):null},t.prototype._parsePropertyIdentifier=function(){return this._parseIdent()},t.prototype._parseCharset=function(){if(!this.peek(p.Charset))return null;var e=this.create(O);return this.consumeToken(),this.accept(p.String)?this.accept(p.SemiColon)?this.finish(e):this.finish(e,x.SemiColonExpected):this.finish(e,x.IdentifierExpected)},t.prototype._parseImport=function(){if(!this.peekKeyword("@import"))return null;var e=this.create(pi);return this.consumeToken(),!e.addChild(this._parseURILiteral())&&!e.addChild(this._parseStringLiteral())?this.finish(e,x.URIOrStringExpected):(!this.peek(p.SemiColon)&&!this.peek(p.EOF)&&e.setMedialist(this._parseMediaQueryList()),this.finish(e))},t.prototype._parseNamespace=function(){if(!this.peekKeyword("@namespace"))return null;var e=this.create(Md);return this.consumeToken(),!e.addChild(this._parseURILiteral())&&(e.addChild(this._parseIdent()),!e.addChild(this._parseURILiteral())&&!e.addChild(this._parseStringLiteral()))?this.finish(e,x.URIExpected,[p.SemiColon]):this.accept(p.SemiColon)?this.finish(e):this.finish(e,x.SemiColonExpected)},t.prototype._parseFontFace=function(){if(!this.peekKeyword("@font-face"))return null;var e=this.create(ho);return this.consumeToken(),this._parseBody(e,this._parseRuleSetDeclaration.bind(this))},t.prototype._parseViewPort=function(){if(!this.peekKeyword("@-ms-viewport")&&!this.peekKeyword("@-o-viewport")&&!this.peekKeyword("@viewport"))return null;var e=this.create(Fd);return this.consumeToken(),this._parseBody(e,this._parseRuleSetDeclaration.bind(this))},t.prototype._parseKeyframe=function(){if(!this.peekRegExp(p.AtKeyword,this.keyframeRegex))return null;var e=this.create(po),n=this.create(O);return this.consumeToken(),e.setKeyword(this.finish(n)),n.matches("@-ms-keyframes")&&this.markError(n,x.UnknownKeyword),e.setIdentifier(this._parseKeyframeIdent())?this._parseBody(e,this._parseKeyframeSelector.bind(this)):this.finish(e,x.IdentifierExpected,[p.CurlyR])},t.prototype._parseKeyframeIdent=function(){return this._parseIdent([Y.Keyframe])},t.prototype._parseKeyframeSelector=function(){var e=this.create(mo);if(!e.addChild(this._parseIdent())&&!this.accept(p.Percentage))return null;for(;this.accept(p.Comma);)if(!e.addChild(this._parseIdent())&&!this.accept(p.Percentage))return this.finish(e,x.PercentageExpected);return this._parseBody(e,this._parseRuleSetDeclaration.bind(this))},t.prototype._tryParseKeyframeSelector=function(){var e=this.create(mo),n=this.mark();if(!e.addChild(this._parseIdent())&&!this.accept(p.Percentage))return null;for(;this.accept(p.Comma);)if(!e.addChild(this._parseIdent())&&!this.accept(p.Percentage))return this.restoreAtMark(n),null;return this.peek(p.CurlyL)?this._parseBody(e,this._parseRuleSetDeclaration.bind(this)):(this.restoreAtMark(n),null)},t.prototype._parseSupports=function(e){if(e===void 0&&(e=!1),!this.peekKeyword("@supports"))return null;var n=this.create(mi);return this.consumeToken(),n.addChild(this._parseSupportsCondition()),this._parseBody(n,this._parseSupportsDeclaration.bind(this,e))},t.prototype._parseSupportsDeclaration=function(e){return e===void 0&&(e=!1),e?this._tryParseRuleset(!0)||this._tryToParseDeclaration()||this._parseStylesheetStatement(!0):this._parseStylesheetStatement(!1)},t.prototype._parseSupportsCondition=function(){var e=this.create(yn);if(this.acceptIdent("not"))e.addChild(this._parseSupportsConditionInParens());else if(e.addChild(this._parseSupportsConditionInParens()),this.peekRegExp(p.Ident,/^(and|or)$/i))for(var n=this.token.text.toLowerCase();this.acceptIdent(n);)e.addChild(this._parseSupportsConditionInParens());return this.finish(e)},t.prototype._parseSupportsConditionInParens=function(){var e=this.create(yn);if(this.accept(p.ParenthesisL))return this.prevToken&&(e.lParent=this.prevToken.offset),!e.addChild(this._tryToParseDeclaration([p.ParenthesisR]))&&!this._parseSupportsCondition()?this.finish(e,x.ConditionExpected):this.accept(p.ParenthesisR)?(this.prevToken&&(e.rParent=this.prevToken.offset),this.finish(e)):this.finish(e,x.RightParenthesisExpected,[p.ParenthesisR],[]);if(this.peek(p.Ident)){var n=this.mark();if(this.consumeToken(),!this.hasWhitespace()&&this.accept(p.ParenthesisL)){for(var r=1;this.token.type!==p.EOF&&r!==0;)this.token.type===p.ParenthesisL?r++:this.token.type===p.ParenthesisR&&r--,this.consumeToken();return this.finish(e)}else this.restoreAtMark(n)}return this.finish(e,x.LeftParenthesisExpected,[],[p.ParenthesisL])},t.prototype._parseMediaDeclaration=function(e){return e===void 0&&(e=!1),e?this._tryParseRuleset(!0)||this._tryToParseDeclaration()||this._parseStylesheetStatement(!0):this._parseStylesheetStatement(!1)},t.prototype._parseMedia=function(e){if(e===void 0&&(e=!1),!this.peekKeyword("@media"))return null;var n=this.create(fo);return this.consumeToken(),n.addChild(this._parseMediaQueryList())?this._parseBody(n,this._parseMediaDeclaration.bind(this,e)):this.finish(n,x.MediaQueryExpected)},t.prototype._parseMediaQueryList=function(){var e=this.create(go);if(!e.addChild(this._parseMediaQuery()))return this.finish(e,x.MediaQueryExpected);for(;this.accept(p.Comma);)if(!e.addChild(this._parseMediaQuery()))return this.finish(e,x.MediaQueryExpected);return this.finish(e)},t.prototype._parseMediaQuery=function(){var e=this.create(bo),n=this.mark();if(this.acceptIdent("not"),this.peek(p.ParenthesisL))this.restoreAtMark(n),e.addChild(this._parseMediaCondition());else{if(this.acceptIdent("only"),!e.addChild(this._parseIdent()))return null;this.acceptIdent("and")&&e.addChild(this._parseMediaCondition())}return this.finish(e)},t.prototype._parseRatio=function(){var e=this.mark(),n=this.create(Vd);return this._parseNumeric()?this.acceptDelim("/")?this._parseNumeric()?this.finish(n):this.finish(n,x.NumberExpected):(this.restoreAtMark(e),null):null},t.prototype._parseMediaCondition=function(){var e=this.create(zd);this.acceptIdent("not");for(var n=!0;n;){if(!this.accept(p.ParenthesisL))return this.finish(e,x.LeftParenthesisExpected,[],[p.CurlyL]);if(this.peek(p.ParenthesisL)||this.peekIdent("not")?e.addChild(this._parseMediaCondition()):e.addChild(this._parseMediaFeature()),!this.accept(p.ParenthesisR))return this.finish(e,x.RightParenthesisExpected,[],[p.CurlyL]);n=this.acceptIdent("and")||this.acceptIdent("or")}return this.finish(e)},t.prototype._parseMediaFeature=function(){var e=this,n=[p.ParenthesisR],r=this.create(Ld),i=function(){return e.acceptDelim("<")||e.acceptDelim(">")?(e.hasWhitespace()||e.acceptDelim("="),!0):!!e.acceptDelim("=")};if(r.addChild(this._parseMediaFeatureName())){if(this.accept(p.Colon)){if(!r.addChild(this._parseMediaFeatureValue()))return this.finish(r,x.TermExpected,[],n)}else if(i()){if(!r.addChild(this._parseMediaFeatureValue()))return this.finish(r,x.TermExpected,[],n);if(i()&&!r.addChild(this._parseMediaFeatureValue()))return this.finish(r,x.TermExpected,[],n)}}else if(r.addChild(this._parseMediaFeatureValue())){if(!i())return this.finish(r,x.OperatorExpected,[],n);if(!r.addChild(this._parseMediaFeatureName()))return this.finish(r,x.IdentifierExpected,[],n);if(i()&&!r.addChild(this._parseMediaFeatureValue()))return this.finish(r,x.TermExpected,[],n)}else return this.finish(r,x.IdentifierExpected,[],n);return this.finish(r)},t.prototype._parseMediaFeatureName=function(){return this._parseIdent()},t.prototype._parseMediaFeatureValue=function(){return this._parseRatio()||this._parseTermExpression()},t.prototype._parseMedium=function(){var e=this.create(O);return e.addChild(this._parseIdent())?this.finish(e):null},t.prototype._parsePageDeclaration=function(){return this._parsePageMarginBox()||this._parseRuleSetDeclaration()},t.prototype._parsePage=function(){if(!this.peekKeyword("@page"))return null;var e=this.create(Td);if(this.consumeToken(),e.addChild(this._parsePageSelector())){for(;this.accept(p.Comma);)if(!e.addChild(this._parsePageSelector()))return this.finish(e,x.IdentifierExpected)}return this._parseBody(e,this._parsePageDeclaration.bind(this))},t.prototype._parsePageMarginBox=function(){if(!this.peek(p.AtKeyword))return null;var e=this.create(Od);return this.acceptOneKeyword(mu)||this.markError(e,x.UnknownAtRule,[],[p.CurlyL]),this._parseBody(e,this._parseRuleSetDeclaration.bind(this))},t.prototype._parsePageSelector=function(){if(!this.peek(p.Ident)&&!this.peek(p.Colon))return null;var e=this.create(O);return e.addChild(this._parseIdent()),this.accept(p.Colon)&&!e.addChild(this._parseIdent())?this.finish(e,x.IdentifierExpected):this.finish(e)},t.prototype._parseDocument=function(){if(!this.peekKeyword("@-moz-document"))return null;var e=this.create(Id);return this.consumeToken(),this.resync([],[p.CurlyL]),this._parseBody(e,this._parseStylesheetStatement.bind(this))},t.prototype._parseUnknownAtRule=function(){if(!this.peek(p.AtKeyword))return null;var e=this.create(yo);e.addChild(this._parseUnknownAtRuleName());var n=function(){return i===0&&s===0&&a===0},r=0,i=0,s=0,a=0;e:for(;;){switch(this.token.type){case p.SemiColon:if(n())break e;break;case p.EOF:return i>0?this.finish(e,x.RightCurlyExpected):a>0?this.finish(e,x.RightSquareBracketExpected):s>0?this.finish(e,x.RightParenthesisExpected):this.finish(e);case p.CurlyL:r++,i++;break;case p.CurlyR:if(i--,r>0&&i===0){if(this.consumeToken(),a>0)return this.finish(e,x.RightSquareBracketExpected);if(s>0)return this.finish(e,x.RightParenthesisExpected);break e}if(i<0){if(s===0&&a===0)break e;return this.finish(e,x.LeftCurlyExpected)}break;case p.ParenthesisL:s++;break;case p.ParenthesisR:if(s--,s<0)return this.finish(e,x.LeftParenthesisExpected);break;case p.BracketL:a++;break;case p.BracketR:if(a--,a<0)return this.finish(e,x.LeftSquareBracketExpected);break}this.consumeToken()}return e},t.prototype._parseUnknownAtRuleName=function(){var e=this.create(O);return this.accept(p.AtKeyword)?this.finish(e):e},t.prototype._parseOperator=function(){if(this.peekDelim("/")||this.peekDelim("*")||this.peekDelim("+")||this.peekDelim("-")||this.peek(p.Dashmatch)||this.peek(p.Includes)||this.peek(p.SubstringOperator)||this.peek(p.PrefixOperator)||this.peek(p.SuffixOperator)||this.peekDelim("=")){var e=this.createNode(b.Operator);return this.consumeToken(),this.finish(e)}else return null},t.prototype._parseUnaryOperator=function(){if(!this.peekDelim("+")&&!this.peekDelim("-"))return null;var e=this.create(O);return this.consumeToken(),this.finish(e)},t.prototype._parseCombinator=function(){if(this.peekDelim(">")){var e=this.create(O);this.consumeToken();var n=this.mark();if(!this.hasWhitespace()&&this.acceptDelim(">")){if(!this.hasWhitespace()&&this.acceptDelim(">"))return e.type=b.SelectorCombinatorShadowPiercingDescendant,this.finish(e);this.restoreAtMark(n)}return e.type=b.SelectorCombinatorParent,this.finish(e)}else if(this.peekDelim("+")){var e=this.create(O);return this.consumeToken(),e.type=b.SelectorCombinatorSibling,this.finish(e)}else if(this.peekDelim("~")){var e=this.create(O);return this.consumeToken(),e.type=b.SelectorCombinatorAllSiblings,this.finish(e)}else if(this.peekDelim("/")){var e=this.create(O);this.consumeToken();var n=this.mark();if(!this.hasWhitespace()&&this.acceptIdent("deep")&&!this.hasWhitespace()&&this.acceptDelim("/"))return e.type=b.SelectorCombinatorShadowPiercingDescendant,this.finish(e);this.restoreAtMark(n)}return null},t.prototype._parseSimpleSelector=function(){var e=this.create(Gt),n=0;for(e.addChild(this._parseElementName())&&n++;(n===0||!this.hasWhitespace())&&e.addChild(this._parseSimpleSelectorBody());)n++;return n>0?this.finish(e):null},t.prototype._parseSimpleSelectorBody=function(){return this._parsePseudo()||this._parseHash()||this._parseClass()||this._parseAttrib()},t.prototype._parseSelectorIdent=function(){return this._parseIdent()},t.prototype._parseHash=function(){if(!this.peek(p.Hash)&&!this.peekDelim("#"))return null;var e=this.createNode(b.IdentifierSelector);if(this.acceptDelim("#")){if(this.hasWhitespace()||!e.addChild(this._parseSelectorIdent()))return this.finish(e,x.IdentifierExpected)}else this.consumeToken();return this.finish(e)},t.prototype._parseClass=function(){if(!this.peekDelim("."))return null;var e=this.createNode(b.ClassSelector);return this.consumeToken(),this.hasWhitespace()||!e.addChild(this._parseSelectorIdent())?this.finish(e,x.IdentifierExpected):this.finish(e)},t.prototype._parseElementName=function(){var e=this.mark(),n=this.createNode(b.ElementNameSelector);return n.addChild(this._parseNamespacePrefix()),!n.addChild(this._parseSelectorIdent())&&!this.acceptDelim("*")?(this.restoreAtMark(e),null):this.finish(n)},t.prototype._parseNamespacePrefix=function(){var e=this.mark(),n=this.createNode(b.NamespacePrefix);return!n.addChild(this._parseIdent())&&this.acceptDelim("*"),this.acceptDelim("|")?this.finish(n):(this.restoreAtMark(e),null)},t.prototype._parseAttrib=function(){if(!this.peek(p.BracketL))return null;var e=this.create(Ud);return this.consumeToken(),e.setNamespacePrefix(this._parseNamespacePrefix()),e.setIdentifier(this._parseIdent())?(e.setOperator(this._parseOperator())&&(e.setValue(this._parseBinaryExpr()),this.acceptIdent("i"),this.acceptIdent("s")),this.accept(p.BracketR)?this.finish(e):this.finish(e,x.RightSquareBracketExpected)):this.finish(e,x.IdentifierExpected)},t.prototype._parsePseudo=function(){var e=this,n=this._tryParsePseudoIdentifier();if(n){if(!this.hasWhitespace()&&this.accept(p.ParenthesisL)){var r=function(){var i=e.create(O);if(!i.addChild(e._parseSelector(!1)))return null;for(;e.accept(p.Comma)&&i.addChild(e._parseSelector(!1)););return e.peek(p.ParenthesisR)?e.finish(i):null};if(n.addChild(this.try(r)||this._parseBinaryExpr()),!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected)}return this.finish(n)}return null},t.prototype._tryParsePseudoIdentifier=function(){if(!this.peek(p.Colon))return null;var e=this.mark(),n=this.createNode(b.PseudoSelector);return this.consumeToken(),this.hasWhitespace()?(this.restoreAtMark(e),null):(this.accept(p.Colon),this.hasWhitespace()||!n.addChild(this._parseIdent())?this.finish(n,x.IdentifierExpected):this.finish(n))},t.prototype._tryParsePrio=function(){var e=this.mark(),n=this._parsePrio();return n||(this.restoreAtMark(e),null)},t.prototype._parsePrio=function(){if(!this.peek(p.Exclamation))return null;var e=this.createNode(b.Prio);return this.accept(p.Exclamation)&&this.acceptIdent("important")?this.finish(e):null},t.prototype._parseExpr=function(e){e===void 0&&(e=!1);var n=this.create(vo);if(!n.addChild(this._parseBinaryExpr()))return null;for(;;){if(this.peek(p.Comma)){if(e)return this.finish(n);this.consumeToken()}else if(!this.hasWhitespace())break;if(!n.addChild(this._parseBinaryExpr()))break}return this.finish(n)},t.prototype._parseUnicodeRange=function(){if(!this.peekIdent("u"))return null;var e=this.create(vd);return this.acceptUnicodeRange()?this.finish(e):null},t.prototype._parseNamedLine=function(){if(!this.peek(p.BracketL))return null;var e=this.createNode(b.GridLine);for(this.consumeToken();e.addChild(this._parseIdent()););return this.accept(p.BracketR)?this.finish(e):this.finish(e,x.RightSquareBracketExpected)},t.prototype._parseBinaryExpr=function(e,n){var r=this.create(fi);if(!r.setLeft(e||this._parseTerm()))return null;if(!r.setOperator(n||this._parseOperator()))return this.finish(r);if(!r.setRight(this._parseTerm()))return this.finish(r,x.TermExpected);r=this.finish(r);var i=this._parseOperator();return i&&(r=this._parseBinaryExpr(r,i)),this.finish(r)},t.prototype._parseTerm=function(){var e=this.create(Wd);return e.setOperator(this._parseUnaryOperator()),e.setExpression(this._parseTermExpression())?this.finish(e):null},t.prototype._parseTermExpression=function(){return this._parseURILiteral()||this._parseUnicodeRange()||this._parseFunction()||this._parseIdent()||this._parseStringLiteral()||this._parseNumeric()||this._parseHexColor()||this._parseOperation()||this._parseNamedLine()},t.prototype._parseOperation=function(){if(!this.peek(p.ParenthesisL))return null;var e=this.create(O);return this.consumeToken(),e.addChild(this._parseExpr()),this.accept(p.ParenthesisR)?this.finish(e):this.finish(e,x.RightParenthesisExpected)},t.prototype._parseNumeric=function(){if(this.peek(p.Num)||this.peek(p.Percentage)||this.peek(p.Resolution)||this.peek(p.Length)||this.peek(p.EMS)||this.peek(p.EXS)||this.peek(p.Angle)||this.peek(p.Time)||this.peek(p.Dimension)||this.peek(p.Freq)){var e=this.create(bi);return this.consumeToken(),this.finish(e)}return null},t.prototype._parseStringLiteral=function(){if(!this.peek(p.String)&&!this.peek(p.BadString))return null;var e=this.createNode(b.StringLiteral);return this.consumeToken(),this.finish(e)},t.prototype._parseURILiteral=function(){if(!this.peekRegExp(p.Ident,/^url(-prefix)?$/i))return null;var e=this.mark(),n=this.createNode(b.URILiteral);return this.accept(p.Ident),this.hasWhitespace()||!this.peek(p.ParenthesisL)?(this.restoreAtMark(e),null):(this.scanner.inURL=!0,this.consumeToken(),n.addChild(this._parseURLArgument()),this.scanner.inURL=!1,this.accept(p.ParenthesisR)?this.finish(n):this.finish(n,x.RightParenthesisExpected))},t.prototype._parseURLArgument=function(){var e=this.create(O);return!this.accept(p.String)&&!this.accept(p.BadString)&&!this.acceptUnquotedString()?null:this.finish(e)},t.prototype._parseIdent=function(e){if(!this.peek(p.Ident))return null;var n=this.create(Ve);return e&&(n.referenceTypes=e),n.isCustomProperty=this.peekRegExp(p.Ident,/^--/),this.consumeToken(),this.finish(n)},t.prototype._parseFunction=function(){var e=this.mark(),n=this.create(vn);if(!n.setIdentifier(this._parseFunctionIdentifier()))return null;if(this.hasWhitespace()||!this.accept(p.ParenthesisL))return this.restoreAtMark(e),null;if(n.getArguments().addChild(this._parseFunctionArgument()))for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)n.getArguments().addChild(this._parseFunctionArgument())||this.markError(n,x.ExpressionExpected);return this.accept(p.ParenthesisR)?this.finish(n):this.finish(n,x.RightParenthesisExpected)},t.prototype._parseFunctionIdentifier=function(){if(!this.peek(p.Ident))return null;var e=this.create(Ve);if(e.referenceTypes=[Y.Function],this.acceptIdent("progid")){if(this.accept(p.Colon))for(;this.accept(p.Ident)&&this.acceptDelim("."););return this.finish(e)}return this.consumeToken(),this.finish(e)},t.prototype._parseFunctionArgument=function(){var e=this.create(Jt);return e.setValue(this._parseExpr(!0))?this.finish(e):null},t.prototype._parseHexColor=function(){if(this.peekRegExp(p.Hash,/^#([A-Fa-f0-9]{3}|[A-Fa-f0-9]{4}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})$/g)){var e=this.create(gi);return this.consumeToken(),this.finish(e)}else return null},t}();function fu(t,e){var n=0,r=t.length;if(r===0)return 0;for(;ne+n||this.offset===e&&this.length===n?this.findInScope(e,n):null},t.prototype.findInScope=function(e,n){n===void 0&&(n=0);var r=e+n,i=fu(this.children,function(a){return a.offset>r});if(i===0)return this;var s=this.children[i-1];return s.offset<=e&&s.offset+s.length>=e+n?s.findInScope(e,n):this},t.prototype.addSymbol=function(e){this.symbols.push(e)},t.prototype.getSymbol=function(e,n){for(var r=0;r{var t={470:r=>{function i(o){if(typeof o!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(o))}function s(o,l){for(var c,h="",u=0,f=-1,m=0,g=0;g<=o.length;++g){if(g2){var v=h.lastIndexOf("/");if(v!==h.length-1){v===-1?(h="",u=0):u=(h=h.slice(0,v)).length-1-h.lastIndexOf("/"),f=g,m=0;continue}}else if(h.length===2||h.length===1){h="",u=0,f=g,m=0;continue}}l&&(h.length>0?h+="/..":h="..",u=2)}else h.length>0?h+="/"+o.slice(f+1,g):h=o.slice(f+1,g),u=g-f-1;f=g,m=0}else c===46&&m!==-1?++m:m=-1}return h}var a={resolve:function(){for(var o,l="",c=!1,h=arguments.length-1;h>=-1&&!c;h--){var u;h>=0?u=arguments[h]:(o===void 0&&(o=process.cwd()),u=o),i(u),u.length!==0&&(l=u+"/"+l,c=u.charCodeAt(0)===47)}return l=s(l,!c),c?l.length>0?"/"+l:"/":l.length>0?l:"."},normalize:function(o){if(i(o),o.length===0)return".";var l=o.charCodeAt(0)===47,c=o.charCodeAt(o.length-1)===47;return(o=s(o,!l)).length!==0||l||(o="."),o.length>0&&c&&(o+="/"),l?"/"+o:o},isAbsolute:function(o){return i(o),o.length>0&&o.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var o,l=0;l0&&(o===void 0?o=c:o+="/"+c)}return o===void 0?".":a.normalize(o)},relative:function(o,l){if(i(o),i(l),o===l||(o=a.resolve(o))===(l=a.resolve(l)))return"";for(var c=1;cg){if(l.charCodeAt(f+y)===47)return l.slice(f+y+1);if(y===0)return l.slice(f+y)}else u>g&&(o.charCodeAt(c+y)===47?v=y:y===0&&(v=0));break}var w=o.charCodeAt(c+y);if(w!==l.charCodeAt(f+y))break;w===47&&(v=y)}var S="";for(y=c+v+1;y<=h;++y)y!==h&&o.charCodeAt(y)!==47||(S.length===0?S+="..":S+="/..");return S.length>0?S+l.slice(f+v):(f+=v,l.charCodeAt(f)===47&&++f,l.slice(f))},_makeLong:function(o){return o},dirname:function(o){if(i(o),o.length===0)return".";for(var l=o.charCodeAt(0),c=l===47,h=-1,u=!0,f=o.length-1;f>=1;--f)if((l=o.charCodeAt(f))===47){if(!u){h=f;break}}else u=!1;return h===-1?c?"/":".":c&&h===1?"//":o.slice(0,h)},basename:function(o,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');i(o);var c,h=0,u=-1,f=!0;if(l!==void 0&&l.length>0&&l.length<=o.length){if(l.length===o.length&&l===o)return"";var m=l.length-1,g=-1;for(c=o.length-1;c>=0;--c){var v=o.charCodeAt(c);if(v===47){if(!f){h=c+1;break}}else g===-1&&(f=!1,g=c+1),m>=0&&(v===l.charCodeAt(m)?--m==-1&&(u=c):(m=-1,u=g))}return h===u?u=g:u===-1&&(u=o.length),o.slice(h,u)}for(c=o.length-1;c>=0;--c)if(o.charCodeAt(c)===47){if(!f){h=c+1;break}}else u===-1&&(f=!1,u=c+1);return u===-1?"":o.slice(h,u)},extname:function(o){i(o);for(var l=-1,c=0,h=-1,u=!0,f=0,m=o.length-1;m>=0;--m){var g=o.charCodeAt(m);if(g!==47)h===-1&&(u=!1,h=m+1),g===46?l===-1?l=m:f!==1&&(f=1):l!==-1&&(f=-1);else if(!u){c=m+1;break}}return l===-1||h===-1||f===0||f===1&&l===h-1&&l===c+1?"":o.slice(l,h)},format:function(o){if(o===null||typeof o!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof o);return function(l,c){var h=c.dir||c.root,u=c.base||(c.name||"")+(c.ext||"");return h?h===c.root?h+u:h+"/"+u:u}(0,o)},parse:function(o){i(o);var l={root:"",dir:"",base:"",ext:"",name:""};if(o.length===0)return l;var c,h=o.charCodeAt(0),u=h===47;u?(l.root="/",c=1):c=0;for(var f=-1,m=0,g=-1,v=!0,y=o.length-1,w=0;y>=c;--y)if((h=o.charCodeAt(y))!==47)g===-1&&(v=!1,g=y+1),h===46?f===-1?f=y:w!==1&&(w=1):f!==-1&&(w=-1);else if(!v){m=y+1;break}return f===-1||g===-1||w===0||w===1&&f===g-1&&f===m+1?g!==-1&&(l.base=l.name=m===0&&u?o.slice(1,g):o.slice(m,g)):(m===0&&u?(l.name=o.slice(1,f),l.base=o.slice(1,g)):(l.name=o.slice(m,f),l.base=o.slice(m,g)),l.ext=o.slice(f,g)),m>0?l.dir=o.slice(0,m-1):u&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};a.posix=a,r.exports=a},447:(r,i,s)=>{var a;if(s.r(i),s.d(i,{URI:()=>S,Utils:()=>L}),typeof process=="object")a=process.platform==="win32";else if(typeof navigator=="object"){var o=navigator.userAgent;a=o.indexOf("Windows")>=0}var l,c,h=(l=function(D,_){return(l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(A,z){A.__proto__=z}||function(A,z){for(var X in z)Object.prototype.hasOwnProperty.call(z,X)&&(A[X]=z[X])})(D,_)},function(D,_){if(typeof _!="function"&&_!==null)throw new TypeError("Class extends value "+String(_)+" is not a constructor or null");function A(){this.constructor=D}l(D,_),D.prototype=_===null?Object.create(_):(A.prototype=_.prototype,new A)}),u=/^\w[\w\d+.-]*$/,f=/^\//,m=/^\/\//;function g(D,_){if(!D.scheme&&_)throw new Error('[UriError]: Scheme is missing: {scheme: "", authority: "'.concat(D.authority,'", path: "').concat(D.path,'", query: "').concat(D.query,'", fragment: "').concat(D.fragment,'"}'));if(D.scheme&&!u.test(D.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(D.path){if(D.authority){if(!f.test(D.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(m.test(D.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}var v="",y="/",w=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/,S=function(){function D(_,A,z,X,G,ee){ee===void 0&&(ee=!1),typeof _=="object"?(this.scheme=_.scheme||v,this.authority=_.authority||v,this.path=_.path||v,this.query=_.query||v,this.fragment=_.fragment||v):(this.scheme=function($e,ke){return $e||ke?$e:"file"}(_,ee),this.authority=A||v,this.path=function($e,ke){switch($e){case"https":case"http":case"file":ke?ke[0]!==y&&(ke=y+ke):ke=y}return ke}(this.scheme,z||v),this.query=X||v,this.fragment=G||v,g(this,ee))}return D.isUri=function(_){return _ instanceof D||!!_&&typeof _.authority=="string"&&typeof _.fragment=="string"&&typeof _.path=="string"&&typeof _.query=="string"&&typeof _.scheme=="string"&&typeof _.fsPath=="string"&&typeof _.with=="function"&&typeof _.toString=="function"},Object.defineProperty(D.prototype,"fsPath",{get:function(){return W(this,!1)},enumerable:!1,configurable:!0}),D.prototype.with=function(_){if(!_)return this;var A=_.scheme,z=_.authority,X=_.path,G=_.query,ee=_.fragment;return A===void 0?A=this.scheme:A===null&&(A=v),z===void 0?z=this.authority:z===null&&(z=v),X===void 0?X=this.path:X===null&&(X=v),G===void 0?G=this.query:G===null&&(G=v),ee===void 0?ee=this.fragment:ee===null&&(ee=v),A===this.scheme&&z===this.authority&&X===this.path&&G===this.query&&ee===this.fragment?this:new I(A,z,X,G,ee)},D.parse=function(_,A){A===void 0&&(A=!1);var z=w.exec(_);return z?new I(z[2]||v,E(z[4]||v),E(z[5]||v),E(z[7]||v),E(z[9]||v),A):new I(v,v,v,v,v)},D.file=function(_){var A=v;if(a&&(_=_.replace(/\\/g,y)),_[0]===y&&_[1]===y){var z=_.indexOf(y,2);z===-1?(A=_.substring(2),_=y):(A=_.substring(2,z),_=_.substring(z)||y)}return new I("file",A,_,v,v)},D.from=function(_){var A=new I(_.scheme,_.authority,_.path,_.query,_.fragment);return g(A,!0),A},D.prototype.toString=function(_){return _===void 0&&(_=!1),N(this,_)},D.prototype.toJSON=function(){return this},D.revive=function(_){if(_){if(_ instanceof D)return _;var A=new I(_);return A._formatted=_.external,A._fsPath=_._sep===C?_.fsPath:null,A}return _},D}(),C=a?1:void 0,I=function(D){function _(){var A=D!==null&&D.apply(this,arguments)||this;return A._formatted=null,A._fsPath=null,A}return h(_,D),Object.defineProperty(_.prototype,"fsPath",{get:function(){return this._fsPath||(this._fsPath=W(this,!1)),this._fsPath},enumerable:!1,configurable:!0}),_.prototype.toString=function(A){return A===void 0&&(A=!1),A?N(this,!0):(this._formatted||(this._formatted=N(this,!1)),this._formatted)},_.prototype.toJSON=function(){var A={$mid:1};return this._fsPath&&(A.fsPath=this._fsPath,A._sep=C),this._formatted&&(A.external=this._formatted),this.path&&(A.path=this.path),this.scheme&&(A.scheme=this.scheme),this.authority&&(A.authority=this.authority),this.query&&(A.query=this.query),this.fragment&&(A.fragment=this.fragment),A},_}(S),M=((c={})[58]="%3A",c[47]="%2F",c[63]="%3F",c[35]="%23",c[91]="%5B",c[93]="%5D",c[64]="%40",c[33]="%21",c[36]="%24",c[38]="%26",c[39]="%27",c[40]="%28",c[41]="%29",c[42]="%2A",c[43]="%2B",c[44]="%2C",c[59]="%3B",c[61]="%3D",c[32]="%20",c);function U(D,_){for(var A=void 0,z=-1,X=0;X=97&&G<=122||G>=65&&G<=90||G>=48&&G<=57||G===45||G===46||G===95||G===126||_&&G===47)z!==-1&&(A+=encodeURIComponent(D.substring(z,X)),z=-1),A!==void 0&&(A+=D.charAt(X));else{A===void 0&&(A=D.substr(0,X));var ee=M[G];ee!==void 0?(z!==-1&&(A+=encodeURIComponent(D.substring(z,X)),z=-1),A+=ee):z===-1&&(z=X)}}return z!==-1&&(A+=encodeURIComponent(D.substring(z))),A!==void 0?A:D}function q(D){for(var _=void 0,A=0;A1&&D.scheme==="file"?"//".concat(D.authority).concat(D.path):D.path.charCodeAt(0)===47&&(D.path.charCodeAt(1)>=65&&D.path.charCodeAt(1)<=90||D.path.charCodeAt(1)>=97&&D.path.charCodeAt(1)<=122)&&D.path.charCodeAt(2)===58?_?D.path.substr(1):D.path[1].toLowerCase()+D.path.substr(2):D.path,a&&(A=A.replace(/\//g,"\\")),A}function N(D,_){var A=_?q:U,z="",X=D.scheme,G=D.authority,ee=D.path,$e=D.query,ke=D.fragment;if(X&&(z+=X,z+=":"),(G||X==="file")&&(z+=y,z+=y),G){var Te=G.indexOf("@");if(Te!==-1){var Nt=G.substr(0,Te);G=G.substr(Te+1),(Te=Nt.indexOf(":"))===-1?z+=A(Nt,!1):(z+=A(Nt.substr(0,Te),!1),z+=":",z+=A(Nt.substr(Te+1),!1)),z+="@"}(Te=(G=G.toLowerCase()).indexOf(":"))===-1?z+=A(G,!1):(z+=A(G.substr(0,Te),!1),z+=G.substr(Te))}if(ee){if(ee.length>=3&&ee.charCodeAt(0)===47&&ee.charCodeAt(2)===58)(dt=ee.charCodeAt(1))>=65&&dt<=90&&(ee="/".concat(String.fromCharCode(dt+32),":").concat(ee.substr(3)));else if(ee.length>=2&&ee.charCodeAt(1)===58){var dt;(dt=ee.charCodeAt(0))>=65&&dt<=90&&(ee="".concat(String.fromCharCode(dt+32),":").concat(ee.substr(2)))}z+=A(ee,!0)}return $e&&(z+="?",z+=A($e,!1)),ke&&(z+="#",z+=_?ke:U(ke,!1)),z}function F(D){try{return decodeURIComponent(D)}catch(_){return D.length>3?D.substr(0,3)+F(D.substr(3)):D}}var R=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function E(D){return D.match(R)?D.replace(R,function(_){return F(_)}):D}var L,B=s(470),K=function(D,_,A){if(A||arguments.length===2)for(var z,X=0,G=_.length;X{for(var s in i)n.o(i,s)&&!n.o(r,s)&&Object.defineProperty(r,s,{enumerable:!0,get:i[s]})},n.o=(r,i)=>Object.prototype.hasOwnProperty.call(r,i),n.r=r=>{typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(r,"__esModule",{value:!0})},n(447)})();var{URI:Pi,Utils:Ni}=xl,yu=function(t,e,n){if(n||arguments.length===2)for(var r=0,i=e.length,s;r0&&s[s.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!s||c[1]>s[0]&&c[1]0&&s[s.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!s||c[1]>s[0]&&c[1]=0;a--){var o=this.nodePath[a];if(o instanceof ui)this.getCompletionsForDeclarationProperty(o.getParent(),s);else if(o instanceof vo)o.parent instanceof vi?this.getVariableProposals(null,s):this.getCompletionsForExpression(o,s);else if(o instanceof Gt){var l=o.findAParent(b.ExtendsReference,b.Ruleset);if(l)if(l.type===b.ExtendsReference)this.getCompletionsForExtendsReference(l,o,s);else{var c=l;this.getCompletionsForSelector(c,c&&c.isNested(),s)}}else if(o instanceof Jt)this.getCompletionsForFunctionArgument(o,o.getParent(),s);else if(o instanceof hi)this.getCompletionsForDeclarations(o,s);else if(o instanceof Qn)this.getCompletionsForVariableDeclaration(o,s);else if(o instanceof Ht)this.getCompletionsForRuleSet(o,s);else if(o instanceof vi)this.getCompletionsForInterpolation(o,s);else if(o instanceof Kn)this.getCompletionsForFunctionDeclaration(o,s);else if(o instanceof Zn)this.getCompletionsForMixinReference(o,s);else if(o instanceof vn)this.getCompletionsForFunctionArgument(null,o,s);else if(o instanceof mi)this.getCompletionsForSupports(o,s);else if(o instanceof yn)this.getCompletionsForSupportsCondition(o,s);else if(o instanceof wn)this.getCompletionsForExtendsReference(o,null,s);else if(o.type===b.URILiteral)this.getCompletionForUriLiteralValue(o,s);else if(o.parent===null)this.getCompletionForTopLevel(s);else if(o.type===b.StringLiteral&&this.isImportPathParent(o.parent.type))this.getCompletionForImportPath(o,s);else continue;if(s.items.length>0||this.offset>o.offset)return this.finalize(s)}return this.getCompletionsForStylesheet(s),s.items.length===0&&this.variablePrefix&&this.currentWord.indexOf(this.variablePrefix)===0&&this.getVariableProposals(null,s),this.finalize(s)}finally{this.position=null,this.currentWord=null,this.textDocument=null,this.styleSheet=null,this.symbolContext=null,this.defaultReplaceRange=null,this.nodePath=null}},t.prototype.isImportPathParent=function(e){return e===b.Import},t.prototype.finalize=function(e){return e},t.prototype.findInNodePath=function(){for(var e=[],n=0;n=0;r--){var i=this.nodePath[r];if(e.indexOf(i.type)!==-1)return i}return null},t.prototype.getCompletionsForDeclarationProperty=function(e,n){return this.getPropertyProposals(e,n)},t.prototype.getPropertyProposals=function(e,n){var r=this,i=this.isTriggerPropertyValueCompletionEnabled,s=this.isCompletePropertyWithSemicolonEnabled,a=this.cssDataManager.getProperties();return a.forEach(function(o){var l,c,h=!1;e?(l=r.getCompletionRange(e.getProperty()),c=o.name,Be(e.colonPosition)||(c+=": ",h=!0)):(l=r.getCompletionRange(null),c=o.name+": ",h=!0),!e&&s&&(c+="$0;"),e&&!e.semicolonPosition&&s&&r.offset>=r.textDocument.offsetAt(l.end)&&(c+="$0;");var u={label:o.name,documentation:_t(o,r.doesSupportMarkdown()),tags:Dn(o)?[Ft.Deprecated]:[],textEdit:H.replace(l,c),insertTextFormat:Le.Snippet,kind:$.Property};o.restrictions||(h=!1),i&&h&&(u.command=Cl);var f=typeof o.relevance=="number"?Math.min(Math.max(o.relevance,0),99):50,m=(255-f).toString(16),g=fe(o.name,"-")?it.VendorPrefixed:it.Normal;u.sortText=g+"_"+m,n.items.push(u)}),this.completionParticipants.forEach(function(o){o.onCssProperty&&o.onCssProperty({propertyName:r.currentWord,range:r.defaultReplaceRange})}),n},Object.defineProperty(t.prototype,"isTriggerPropertyValueCompletionEnabled",{get:function(){var e,n;return(n=(e=this.documentSettings)===null||e===void 0?void 0:e.triggerPropertyValueCompletion)!==null&&n!==void 0?n:!0},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isCompletePropertyWithSemicolonEnabled",{get:function(){var e,n;return(n=(e=this.documentSettings)===null||e===void 0?void 0:e.completePropertyWithSemicolon)!==null&&n!==void 0?n:!0},enumerable:!1,configurable:!0}),t.prototype.getCompletionsForDeclarationValue=function(e,n){for(var r=this,i=e.getFullPropertyName(),s=this.cssDataManager.getProperty(i),a=e.getValue()||null;a&&a.hasChildren();)a=a.findChildAtOffset(this.offset,!1);if(this.completionParticipants.forEach(function(g){g.onCssPropertyValue&&g.onCssPropertyValue({propertyName:i,propertyValue:r.currentWord,range:r.getCompletionRange(a)})}),s){if(s.restrictions)for(var o=0,l=s.restrictions;o=e.offset+2&&this.getVariableProposals(null,n),n},t.prototype.getVariableProposals=function(e,n){for(var r=this.getSymbolContext().findSymbolsAtOffset(this.offset,Y.Variable),i=0,s=r;i0){var s=this.currentWord.match(/^-?\d[\.\d+]*/);s&&(i=s[0],r.isIncomplete=i.length===this.currentWord.length)}else this.currentWord.length===0&&(r.isIncomplete=!0);if(n&&n.parent&&n.parent.type===b.Term&&(n=n.getParent()),e.restrictions)for(var a=0,o=e.restrictions;a=r.end;if(i)return this.getCompletionForTopLevel(n);var s=!r||this.offset<=r.offset;return s?this.getCompletionsForSelector(e,e.isNested(),n):this.getCompletionsForDeclarations(e.getDeclarations(),n)},t.prototype.getCompletionsForSelector=function(e,n,r){var i=this,s=this.findInNodePath(b.PseudoSelector,b.IdentifierSelector,b.ClassSelector,b.ElementNameSelector);!s&&this.hasCharacterAtPosition(this.offset-this.currentWord.length-1,":")&&(this.currentWord=":"+this.currentWord,this.hasCharacterAtPosition(this.offset-this.currentWord.length-1,":")&&(this.currentWord=":"+this.currentWord),this.defaultReplaceRange=te.create(Re.create(this.position.line,this.position.character-this.currentWord.length),this.position));var a=this.cssDataManager.getPseudoClasses();a.forEach(function(y){var w=Qt(y.name),S={label:y.name,textEdit:H.replace(i.getCompletionRange(s),w),documentation:_t(y,i.doesSupportMarkdown()),tags:Dn(y)?[Ft.Deprecated]:[],kind:$.Function,insertTextFormat:y.name!==w?at:void 0};fe(y.name,":-")&&(S.sortText=it.VendorPrefixed),r.items.push(S)});var o=this.cssDataManager.getPseudoElements();if(o.forEach(function(y){var w=Qt(y.name),S={label:y.name,textEdit:H.replace(i.getCompletionRange(s),w),documentation:_t(y,i.doesSupportMarkdown()),tags:Dn(y)?[Ft.Deprecated]:[],kind:$.Function,insertTextFormat:y.name!==w?at:void 0};fe(y.name,"::-")&&(S.sortText=it.VendorPrefixed),r.items.push(S)}),!n){for(var l=0,c=uu;l0){var w=g.substr(y.offset,y.length);return w.charAt(0)==="."&&!m[w]&&(m[w]=!0,r.items.push({label:w,textEdit:H.replace(i.getCompletionRange(s),w),kind:$.Keyword})),!1}return!0}),e&&e.isNested()){var v=e.getSelectors().findFirstChildBeforeOffset(this.offset);v&&e.getSelectors().getChildren().indexOf(v)===0&&this.getPropertyProposals(null,r)}return r},t.prototype.getCompletionsForDeclarations=function(e,n){if(!e||this.offset===e.offset)return n;var r=e.findFirstChildBeforeOffset(this.offset);if(!r)return this.getCompletionsForDeclarationProperty(null,n);if(r instanceof di){var i=r;if(!Be(i.colonPosition)||this.offset<=i.colonPosition)return this.getCompletionsForDeclarationProperty(i,n);if(Be(i.semicolonPosition)&&i.semicolonPositione.colonPosition&&this.getVariableProposals(e.getValue(),n),n},t.prototype.getCompletionsForExpression=function(e,n){var r=e.getParent();if(r instanceof Jt)return this.getCompletionsForFunctionArgument(r,r.getParent(),n),n;var i=e.findParent(b.Declaration);if(!i)return this.getTermProposals(void 0,null,n),n;var s=e.findChildAtOffset(this.offset,!0);return s?s instanceof bi||s instanceof Ve?this.getCompletionsForDeclarationValue(i,n):n:this.getCompletionsForDeclarationValue(i,n)},t.prototype.getCompletionsForFunctionArgument=function(e,n,r){var i=n.getIdentifier();return i&&i.matches("var")&&(!n.getArguments().hasChildren()||n.getArguments().getChild(0)===e)&&this.getVariableProposalsForCSSVarFunction(r),r},t.prototype.getCompletionsForFunctionDeclaration=function(e,n){var r=e.getDeclarations();return r&&this.offset>r.offset&&this.offsete.lParent&&(!Be(e.rParent)||this.offset<=e.rParent)?this.getCompletionsForDeclarationProperty(null,n):n},t.prototype.getCompletionsForSupports=function(e,n){var r=e.getDeclarations(),i=!r||this.offset<=r.offset;if(i){var s=e.findFirstChildBeforeOffset(this.offset);return s instanceof yn?this.getCompletionsForSupportsCondition(s,n):n}return this.getCompletionForTopLevel(n)},t.prototype.getCompletionsForExtendsReference=function(e,n,r){return r},t.prototype.getCompletionForUriLiteralValue=function(e,n){var r,i,s;if(e.hasChildren()){var o=e.getChild(0);r=o.getText(),i=this.position,s=this.getCompletionRange(o)}else{r="",i=this.position;var a=this.textDocument.positionAt(e.offset+4);s=te.create(a,a)}return this.completionParticipants.forEach(function(l){l.onCssURILiteralValue&&l.onCssURILiteralValue({uriValue:r,position:i,range:s})}),n},t.prototype.getCompletionForImportPath=function(e,n){var r=this;return this.completionParticipants.forEach(function(i){i.onCssImportPath&&i.onCssImportPath({pathValue:e.getText(),position:r.position,range:r.getCompletionRange(e)})}),n},t.prototype.hasCharacterAtPosition=function(e,n){var r=this.textDocument.getText();return e>=0&&e=0&&` +\r":{[()]},*>+`.indexOf(r.charAt(n))===-1;)n--;return r.substring(n+1,e)}function kl(t){return t.toLowerCase()in cr||/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t)}var El=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),Nu=Ye(),Oi=function(){function t(){this.parent=null,this.children=null,this.attributes=null}return t.prototype.findAttribute=function(e){if(this.attributes)for(var n=0,r=this.attributes;n"),this.writeLine(n,i.join(""))},t}(),ot;(function(t){function e(r,i){return i+n(r)+i}t.ensure=e;function n(r){var i=r.match(/^['"](.*)["']$/);return i?i[1]:r}t.remove=n})(ot||(ot={}));var Fl=function(){function t(){this.id=0,this.attr=0,this.tag=0}return t}();function Dl(t,e){for(var n=new Oi,r=0,i=t.getChildren();r1){var c=e.cloneWithParent();n.addChild(c.findRoot()),n=c}n.append(a[l])}}break;case b.SelectorPlaceholder:if(s.matches("@at-root"))return n;case b.ElementNameSelector:var h=s.getText();n.addAttr("name",h==="*"?"element":qe(h));break;case b.ClassSelector:n.addAttr("class",qe(s.getText().substring(1)));break;case b.IdentifierSelector:n.addAttr("id",qe(s.getText().substring(1)));break;case b.MixinDeclaration:n.addAttr("class",s.getName());break;case b.PseudoSelector:n.addAttr(qe(s.getText()),"");break;case b.AttributeSelector:var u=s,f=u.getIdentifier();if(f){var m=u.getValue(),g=u.getOperator(),v=void 0;if(m&&g)switch(qe(g.getText())){case"|=":v="".concat(ot.remove(qe(m.getText())),"-…");break;case"^=":v="".concat(ot.remove(qe(m.getText())),"…");break;case"$=":v="…".concat(ot.remove(qe(m.getText())));break;case"~=":v=" … ".concat(ot.remove(qe(m.getText()))," … ");break;case"*=":v="…".concat(ot.remove(qe(m.getText())),"…");break;default:v=ot.remove(qe(m.getText()));break}n.addAttr(qe(f.getText()),v)}break}}return n}function qe(t){var e=new gn;e.setSource(t);var n=e.scanUnquotedString();return n?n.text:t}var Mu=function(){function t(e){this.cssDataManager=e}return t.prototype.selectorToMarkedString=function(e){var n=Lu(e);if(n){var r=new Rl('"').print(n);return r.push(this.selectorToSpecificityMarkedString(e)),r}else return[]},t.prototype.simpleSelectorToMarkedString=function(e){var n=Dl(e),r=new Rl('"').print(n);return r.push(this.selectorToSpecificityMarkedString(e)),r},t.prototype.isPseudoElementIdentifier=function(e){var n=e.match(/^::?([\w-]+)/);return n?!!this.cssDataManager.getPseudoElement("::"+n[1]):!1},t.prototype.selectorToSpecificityMarkedString=function(e){var n=this,r=function(s){var a=new Fl;e:for(var o=0,l=s.getChildren();o0){for(var u=new Fl,f=0,m=c.getChildren();fu.id){u=S;continue}else if(S.idu.attr){u=S;continue}else if(S.attru.tag){u=S;continue}}}a.id+=u.id,a.attr+=u.attr,a.tag+=u.tag;continue e}a.attr++;break}if(c.getChildren().length>0){var S=r(c);a.id+=S.id,a.attr+=S.attr,a.tag+=S.tag}}return a},i=r(e);return Nu("specificity","[Selector Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity): ({0}, {1}, {2})",i.id,i.attr,i.tag)},t}(),Iu=function(){function t(e){this.prev=null,this.element=e}return t.prototype.processSelector=function(e){var n=null;if(!(this.element instanceof Zt)&&e.getChildren().some(function(h){return h.hasChildren()&&h.getChild(0).type===b.SelectorCombinator})){var r=this.element.findRoot();r.parent instanceof Zt&&(n=this.element,this.element=r.parent,this.element.removeChild(r),this.prev=null)}for(var i=0,s=e.getChildren();i=0;a--){var o=n[a].getSelectors().getChild(0);o&&s.processSelector(o)}return s.processSelector(t),e}var Ui=function(){function t(e,n){this.clientCapabilities=e,this.cssDataManager=n,this.selectorPrinting=new Mu(n)}return t.prototype.configure=function(e){this.defaultSettings=e},t.prototype.doHover=function(e,n,r,i){i===void 0&&(i=this.defaultSettings);function s(y){return te.create(e.positionAt(y.offset),e.positionAt(y.end))}for(var a=e.offsetAt(n),o=ci(r,a),l=null,c=0;c0&&s[s.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!s||c[1]>s[0]&&c[1]=s.length/2&&a.push({property:w.name,score:S})}),a.sort(function(w,S){return S.score-w.score||w.property.localeCompare(S.property)});for(var o=3,l=0,c=a;l=0;l--){var c=o[l];if(c instanceof rt){var h=c.getProperty();if(h&&h.offset===s&&h.end===a){this.getFixesForUnknownProperty(e,h,r,i);return}}}},t}(),qu=function(){function t(e){this.fullPropertyName=e.getFullPropertyName().toLowerCase(),this.node=e}return t}();function Nn(t,e,n,r){var i=t[e];i.value=n,n&&(yl(i.properties,r)||i.properties.push(r))}function $u(t,e,n){Nn(t,"top",e,n),Nn(t,"right",e,n),Nn(t,"bottom",e,n),Nn(t,"left",e,n)}function _e(t,e,n,r){e==="top"||e==="right"||e==="bottom"||e==="left"?Nn(t,e,n,r):$u(t,n,r)}function Bi(t,e,n){switch(e.length){case 1:_e(t,void 0,e[0],n);break;case 2:_e(t,"top",e[0],n),_e(t,"bottom",e[0],n),_e(t,"right",e[1],n),_e(t,"left",e[1],n);break;case 3:_e(t,"top",e[0],n),_e(t,"right",e[1],n),_e(t,"left",e[1],n),_e(t,"bottom",e[2],n);break;case 4:_e(t,"top",e[0],n),_e(t,"right",e[1],n),_e(t,"bottom",e[2],n),_e(t,"left",e[3],n);break}}function qi(t,e){for(var n=0,r=e;n0)for(var v=this.fetch(r,"float"),y=0;y0)for(var v=this.fetch(r,"vertical-align"),y=0;y1)for(var U=0;U")||this.peekDelim("<")||this.peekIdent("and")||this.peekIdent("or")||this.peekDelim("%")){var n=this.createNode(b.Operator);return this.consumeToken(),this.finish(n)}return t.prototype._parseOperator.call(this)},e.prototype._parseUnaryOperator=function(){if(this.peekIdent("not")){var n=this.create(O);return this.consumeToken(),this.finish(n)}return t.prototype._parseUnaryOperator.call(this)},e.prototype._parseRuleSetDeclaration=function(){return this.peek(p.AtKeyword)?this._parseKeyframe()||this._parseImport()||this._parseMedia(!0)||this._parseFontFace()||this._parseWarnAndDebug()||this._parseControlStatement()||this._parseFunctionDeclaration()||this._parseExtends()||this._parseMixinReference()||this._parseMixinContent()||this._parseMixinDeclaration()||this._parseRuleset(!0)||this._parseSupports(!0)||t.prototype._parseRuleSetDeclarationAtStatement.call(this):this._parseVariableDeclaration()||this._tryParseRuleset(!0)||t.prototype._parseRuleSetDeclaration.call(this)},e.prototype._parseDeclaration=function(n){var r=this._tryParseCustomPropertyDeclaration(n);if(r)return r;var i=this.create(rt);if(!i.setProperty(this._parseProperty()))return null;if(!this.accept(p.Colon))return this.finish(i,x.ColonExpected,[p.Colon],n||[p.SemiColon]);this.prevToken&&(i.colonPosition=this.prevToken.offset);var s=!1;if(i.setValue(this._parseExpr())&&(s=!0,i.addChild(this._parsePrio())),this.peek(p.CurlyL))i.setNestedProperties(this._parseNestedProperties());else if(!s)return this.finish(i,x.PropertyValueExpected);return this.peek(p.SemiColon)&&(i.semicolonPosition=this.token.offset),this.finish(i)},e.prototype._parseNestedProperties=function(){var n=this.create(uo);return this._parseBody(n,this._parseDeclaration.bind(this))},e.prototype._parseExtends=function(){if(this.peekKeyword("@extend")){var n=this.create(wn);if(this.consumeToken(),!n.getSelectors().addChild(this._parseSimpleSelector()))return this.finish(n,x.SelectorExpected);for(;this.accept(p.Comma);)n.getSelectors().addChild(this._parseSimpleSelector());return this.accept(p.Exclamation)&&!this.acceptIdent("optional")?this.finish(n,x.UnknownKeyword):this.finish(n)}return null},e.prototype._parseSimpleSelectorBody=function(){return this._parseSelectorCombinator()||this._parseSelectorPlaceholder()||t.prototype._parseSimpleSelectorBody.call(this)},e.prototype._parseSelectorCombinator=function(){if(this.peekDelim("&")){var n=this.createNode(b.SelectorCombinator);for(this.consumeToken();!this.hasWhitespace()&&(this.acceptDelim("-")||this.accept(p.Num)||this.accept(p.Dimension)||n.addChild(this._parseIdent())||this.acceptDelim("&")););return this.finish(n)}return null},e.prototype._parseSelectorPlaceholder=function(){if(this.peekDelim("%")){var n=this.createNode(b.SelectorPlaceholder);return this.consumeToken(),this._parseIdent(),this.finish(n)}else if(this.peekKeyword("@at-root")){var n=this.createNode(b.SelectorPlaceholder);return this.consumeToken(),this.finish(n)}return null},e.prototype._parseElementName=function(){var n=this.mark(),r=t.prototype._parseElementName.call(this);return r&&!this.hasWhitespace()&&this.peek(p.ParenthesisL)?(this.restoreAtMark(n),null):r},e.prototype._tryParsePseudoIdentifier=function(){return this._parseInterpolation()||t.prototype._tryParsePseudoIdentifier.call(this)},e.prototype._parseWarnAndDebug=function(){if(!this.peekKeyword("@debug")&&!this.peekKeyword("@warn")&&!this.peekKeyword("@error"))return null;var n=this.createNode(b.Debug);return this.consumeToken(),n.addChild(this._parseExpr()),this.finish(n)},e.prototype._parseControlStatement=function(n){return n===void 0&&(n=this._parseRuleSetDeclaration.bind(this)),this.peek(p.AtKeyword)?this._parseIfStatement(n)||this._parseForStatement(n)||this._parseEachStatement(n)||this._parseWhileStatement(n):null},e.prototype._parseIfStatement=function(n){return this.peekKeyword("@if")?this._internalParseIfStatement(n):null},e.prototype._internalParseIfStatement=function(n){var r=this.create(_d);if(this.consumeToken(),!r.setExpression(this._parseExpr(!0)))return this.finish(r,x.ExpressionExpected);if(this._parseBody(r,n),this.acceptKeyword("@else")){if(this.peekIdent("if"))r.setElseClause(this._internalParseIfStatement(n));else if(this.peek(p.CurlyL)){var i=this.create(Rd);this._parseBody(i,n),r.setElseClause(i)}}return this.finish(r)},e.prototype._parseForStatement=function(n){if(!this.peekKeyword("@for"))return null;var r=this.create(Cd);return this.consumeToken(),r.setVariable(this._parseVariable())?this.acceptIdent("from")?r.addChild(this._parseBinaryExpr())?!this.acceptIdent("to")&&!this.acceptIdent("through")?this.finish(r,Yi.ThroughOrToExpected,[p.CurlyR]):r.addChild(this._parseBinaryExpr())?this._parseBody(r,n):this.finish(r,x.ExpressionExpected,[p.CurlyR]):this.finish(r,x.ExpressionExpected,[p.CurlyR]):this.finish(r,Yi.FromExpected,[p.CurlyR]):this.finish(r,x.VariableNameExpected,[p.CurlyR])},e.prototype._parseEachStatement=function(n){if(!this.peekKeyword("@each"))return null;var r=this.create(kd);this.consumeToken();var i=r.getVariables();if(!i.addChild(this._parseVariable()))return this.finish(r,x.VariableNameExpected,[p.CurlyR]);for(;this.accept(p.Comma);)if(!i.addChild(this._parseVariable()))return this.finish(r,x.VariableNameExpected,[p.CurlyR]);return this.finish(i),this.acceptIdent("in")?r.addChild(this._parseExpr())?this._parseBody(r,n):this.finish(r,x.ExpressionExpected,[p.CurlyR]):this.finish(r,Yi.InExpected,[p.CurlyR])},e.prototype._parseWhileStatement=function(n){if(!this.peekKeyword("@while"))return null;var r=this.create(Ed);return this.consumeToken(),r.addChild(this._parseBinaryExpr())?this._parseBody(r,n):this.finish(r,x.ExpressionExpected,[p.CurlyR])},e.prototype._parseFunctionBodyDeclaration=function(){return this._parseVariableDeclaration()||this._parseReturnStatement()||this._parseWarnAndDebug()||this._parseControlStatement(this._parseFunctionBodyDeclaration.bind(this))},e.prototype._parseFunctionDeclaration=function(){if(!this.peekKeyword("@function"))return null;var n=this.create(Kn);if(this.consumeToken(),!n.setIdentifier(this._parseIdent([Y.Function])))return this.finish(n,x.IdentifierExpected,[p.CurlyR]);if(!this.accept(p.ParenthesisL))return this.finish(n,x.LeftParenthesisExpected,[p.CurlyR]);if(n.getParameters().addChild(this._parseParameterDeclaration())){for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getParameters().addChild(this._parseParameterDeclaration()))return this.finish(n,x.VariableNameExpected)}return this.accept(p.ParenthesisR)?this._parseBody(n,this._parseFunctionBodyDeclaration.bind(this)):this.finish(n,x.RightParenthesisExpected,[p.CurlyR])},e.prototype._parseReturnStatement=function(){if(!this.peekKeyword("@return"))return null;var n=this.createNode(b.ReturnStatement);return this.consumeToken(),n.addChild(this._parseExpr())?this.finish(n):this.finish(n,x.ExpressionExpected)},e.prototype._parseMixinDeclaration=function(){if(!this.peekKeyword("@mixin"))return null;var n=this.create(xn);if(this.consumeToken(),!n.setIdentifier(this._parseIdent([Y.Mixin])))return this.finish(n,x.IdentifierExpected,[p.CurlyR]);if(this.accept(p.ParenthesisL)){if(n.getParameters().addChild(this._parseParameterDeclaration())){for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getParameters().addChild(this._parseParameterDeclaration()))return this.finish(n,x.VariableNameExpected)}if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected,[p.CurlyR])}return this._parseBody(n,this._parseRuleSetDeclaration.bind(this))},e.prototype._parseParameterDeclaration=function(){var n=this.create(Yn);return n.setIdentifier(this._parseVariable())?(this.accept(vr),this.accept(p.Colon)&&!n.setDefaultValue(this._parseExpr(!0))?this.finish(n,x.VariableValueExpected,[],[p.Comma,p.ParenthesisR]):this.finish(n)):null},e.prototype._parseMixinContent=function(){if(!this.peekKeyword("@content"))return null;var n=this.create($d);if(this.consumeToken(),this.accept(p.ParenthesisL)){if(n.getArguments().addChild(this._parseFunctionArgument())){for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getArguments().addChild(this._parseFunctionArgument()))return this.finish(n,x.ExpressionExpected)}if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected)}return this.finish(n)},e.prototype._parseMixinReference=function(){if(!this.peekKeyword("@include"))return null;var n=this.create(Zn);this.consumeToken();var r=this._parseIdent([Y.Mixin]);if(!n.setIdentifier(r))return this.finish(n,x.IdentifierExpected,[p.CurlyR]);if(!this.hasWhitespace()&&this.acceptDelim(".")&&!this.hasWhitespace()){var i=this._parseIdent([Y.Mixin]);if(!i)return this.finish(n,x.IdentifierExpected,[p.CurlyR]);var s=this.create(wo);r.referenceTypes=[Y.Module],s.setIdentifier(r),n.setIdentifier(i),n.addChild(s)}if(this.accept(p.ParenthesisL)){if(n.getArguments().addChild(this._parseFunctionArgument())){for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getArguments().addChild(this._parseFunctionArgument()))return this.finish(n,x.ExpressionExpected)}if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected)}return(this.peekIdent("using")||this.peek(p.CurlyL))&&n.setContent(this._parseMixinContentDeclaration()),this.finish(n)},e.prototype._parseMixinContentDeclaration=function(){var n=this.create(Hd);if(this.acceptIdent("using")){if(!this.accept(p.ParenthesisL))return this.finish(n,x.LeftParenthesisExpected,[p.CurlyL]);if(n.getParameters().addChild(this._parseParameterDeclaration())){for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getParameters().addChild(this._parseParameterDeclaration()))return this.finish(n,x.VariableNameExpected)}if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected,[p.CurlyL])}return this.peek(p.CurlyL)&&this._parseBody(n,this._parseMixinReferenceBodyStatement.bind(this)),this.finish(n)},e.prototype._parseMixinReferenceBodyStatement=function(){return this._tryParseKeyframeSelector()||this._parseRuleSetDeclaration()},e.prototype._parseFunctionArgument=function(){var n=this.create(Jt),r=this.mark(),i=this._parseVariable();if(i)if(this.accept(p.Colon))n.setIdentifier(i);else{if(this.accept(vr))return n.setValue(i),this.finish(n);this.restoreAtMark(r)}return n.setValue(this._parseExpr(!0))?(this.accept(vr),n.addChild(this._parsePrio()),this.finish(n)):n.setValue(this._tryParsePrio())?this.finish(n):null},e.prototype._parseURLArgument=function(){var n=this.mark(),r=t.prototype._parseURLArgument.call(this);if(!r||!this.peek(p.ParenthesisR)){this.restoreAtMark(n);var i=this.create(O);return i.addChild(this._parseBinaryExpr()),this.finish(i)}return r},e.prototype._parseOperation=function(){if(!this.peek(p.ParenthesisL))return null;var n=this.create(O);for(this.consumeToken();n.addChild(this._parseListElement());)this.accept(p.Comma);return this.accept(p.ParenthesisR)?this.finish(n):this.finish(n,x.RightParenthesisExpected)},e.prototype._parseListElement=function(){var n=this.create(Gd),r=this._parseBinaryExpr();if(!r)return null;if(this.accept(p.Colon)){if(n.setKey(r),!n.setValue(this._parseBinaryExpr()))return this.finish(n,x.ExpressionExpected)}else n.setValue(r);return this.finish(n)},e.prototype._parseUse=function(){if(!this.peekKeyword("@use"))return null;var n=this.create(Dd);if(this.consumeToken(),!n.addChild(this._parseStringLiteral()))return this.finish(n,x.StringLiteralExpected);if(!this.peek(p.SemiColon)&&!this.peek(p.EOF)){if(!this.peekRegExp(p.Ident,/as|with/))return this.finish(n,x.UnknownKeyword);if(this.acceptIdent("as")&&!n.setIdentifier(this._parseIdent([Y.Module]))&&!this.acceptDelim("*"))return this.finish(n,x.IdentifierOrWildcardExpected);if(this.acceptIdent("with")){if(!this.accept(p.ParenthesisL))return this.finish(n,x.LeftParenthesisExpected,[p.ParenthesisR]);if(!n.getParameters().addChild(this._parseModuleConfigDeclaration()))return this.finish(n,x.VariableNameExpected);for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getParameters().addChild(this._parseModuleConfigDeclaration()))return this.finish(n,x.VariableNameExpected);if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected)}}return!this.accept(p.SemiColon)&&!this.accept(p.EOF)?this.finish(n,x.SemiColonExpected):this.finish(n)},e.prototype._parseModuleConfigDeclaration=function(){var n=this.create(Ad);return n.setIdentifier(this._parseVariable())?!this.accept(p.Colon)||!n.setValue(this._parseExpr(!0))?this.finish(n,x.VariableValueExpected,[],[p.Comma,p.ParenthesisR]):this.accept(p.Exclamation)&&(this.hasWhitespace()||!this.acceptIdent("default"))?this.finish(n,x.UnknownKeyword):this.finish(n):null},e.prototype._parseForward=function(){if(!this.peekKeyword("@forward"))return null;var n=this.create(Pd);if(this.consumeToken(),!n.addChild(this._parseStringLiteral()))return this.finish(n,x.StringLiteralExpected);if(this.acceptIdent("with")){if(!this.accept(p.ParenthesisL))return this.finish(n,x.LeftParenthesisExpected,[p.ParenthesisR]);if(!n.getParameters().addChild(this._parseModuleConfigDeclaration()))return this.finish(n,x.VariableNameExpected);for(;this.accept(p.Comma)&&!this.peek(p.ParenthesisR);)if(!n.getParameters().addChild(this._parseModuleConfigDeclaration()))return this.finish(n,x.VariableNameExpected);if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected)}if(!this.peek(p.SemiColon)&&!this.peek(p.EOF)){if(!this.peekRegExp(p.Ident,/as|hide|show/))return this.finish(n,x.UnknownKeyword);if(this.acceptIdent("as")){var r=this._parseIdent([Y.Forward]);if(!n.setIdentifier(r))return this.finish(n,x.IdentifierExpected);if(this.hasWhitespace()||!this.acceptDelim("*"))return this.finish(n,x.WildcardExpected)}if((this.peekIdent("hide")||this.peekIdent("show"))&&!n.addChild(this._parseForwardVisibility()))return this.finish(n,x.IdentifierOrVariableExpected)}return!this.accept(p.SemiColon)&&!this.accept(p.EOF)?this.finish(n,x.SemiColonExpected):this.finish(n)},e.prototype._parseForwardVisibility=function(){var n=this.create(Nd);for(n.setIdentifier(this._parseIdent());n.addChild(this._parseVariable()||this._parseIdent());)this.accept(p.Comma);return n.getChildren().length>1?n:null},e.prototype._parseSupportsCondition=function(){return this._parseInterpolation()||t.prototype._parseSupportsCondition.call(this)},e}(Di),lp=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),P=Ye(),cp=function(t){lp(e,t);function e(n,r){var i=t.call(this,"$",n,r)||this;return Bl(e.scssModuleLoaders),Bl(e.scssModuleBuiltIns),i}return e.prototype.isImportPathParent=function(n){return n===b.Forward||n===b.Use||t.prototype.isImportPathParent.call(this,n)},e.prototype.getCompletionForImportPath=function(n,r){var i=n.getParent().type;if(i===b.Forward||i===b.Use)for(var s=0,a=e.scssModuleBuiltIns;s0){var n=typeof e.documentation=="string"?{kind:"markdown",value:e.documentation}:{kind:"markdown",value:e.documentation.value};n.value+=` + +`,n.value+=e.references.map(function(r){return"[".concat(r.name,"](").concat(r.url,")")}).join(" | "),e.documentation=n}})}var hp=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),ql="/".charCodeAt(0),dp=` +`.charCodeAt(0),up="\r".charCodeAt(0),pp="\f".charCodeAt(0),Ki="`".charCodeAt(0),Qi=".".charCodeAt(0),mp=p.CustomToken,Zi=mp++,$l=function(t){hp(e,t);function e(){return t!==null&&t.apply(this,arguments)||this}return e.prototype.scanNext=function(n){var r=this.escapedJavaScript();return r!==null?this.finishToken(n,r):this.stream.advanceIfChars([Qi,Qi,Qi])?this.finishToken(n,Zi):t.prototype.scanNext.call(this,n)},e.prototype.comment=function(){return t.prototype.comment.call(this)?!0:!this.inURL&&this.stream.advanceIfChars([ql,ql])?(this.stream.advanceWhileChar(function(n){switch(n){case dp:case up:case pp:return!1;default:return!0}}),!0):!1},e.prototype.escapedJavaScript=function(){var n=this.stream.peekChar();return n===Ki?(this.stream.advance(1),this.stream.advanceWhileChar(function(r){return r!==Ki}),this.stream.advanceIfChar(Ki)?p.EscapedJavaScript:p.BadEscapedJavaScript):null},e}(gn),fp=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),gp=function(t){fp(e,t);function e(){return t.call(this,new $l)||this}return e.prototype._parseStylesheetStatement=function(n){return n===void 0&&(n=!1),this.peek(p.AtKeyword)?this._parseVariableDeclaration()||this._parsePlugin()||t.prototype._parseStylesheetAtStatement.call(this,n):this._tryParseMixinDeclaration()||this._tryParseMixinReference()||this._parseFunction()||this._parseRuleset(!0)},e.prototype._parseImport=function(){if(!this.peekKeyword("@import")&&!this.peekKeyword("@import-once"))return null;var n=this.create(pi);if(this.consumeToken(),this.accept(p.ParenthesisL)){if(!this.accept(p.Ident))return this.finish(n,x.IdentifierExpected,[p.SemiColon]);do if(!this.accept(p.Comma))break;while(this.accept(p.Ident));if(!this.accept(p.ParenthesisR))return this.finish(n,x.RightParenthesisExpected,[p.SemiColon])}return!n.addChild(this._parseURILiteral())&&!n.addChild(this._parseStringLiteral())?this.finish(n,x.URIOrStringExpected,[p.SemiColon]):(!this.peek(p.SemiColon)&&!this.peek(p.EOF)&&n.setMedialist(this._parseMediaQueryList()),this.finish(n))},e.prototype._parsePlugin=function(){if(!this.peekKeyword("@plugin"))return null;var n=this.createNode(b.Plugin);return this.consumeToken(),n.addChild(this._parseStringLiteral())?this.accept(p.SemiColon)?this.finish(n):this.finish(n,x.SemiColonExpected):this.finish(n,x.StringLiteralExpected)},e.prototype._parseMediaQuery=function(){var n=t.prototype._parseMediaQuery.call(this);if(!n){var r=this.create(bo);return r.addChild(this._parseVariable())?this.finish(r):null}return n},e.prototype._parseMediaDeclaration=function(n){return n===void 0&&(n=!1),this._tryParseRuleset(n)||this._tryToParseDeclaration()||this._tryParseMixinDeclaration()||this._tryParseMixinReference()||this._parseDetachedRuleSetMixin()||this._parseStylesheetStatement(n)},e.prototype._parseMediaFeatureName=function(){return this._parseIdent()||this._parseVariable()},e.prototype._parseVariableDeclaration=function(n){n===void 0&&(n=[]);var r=this.create(Qn),i=this.mark();if(!r.setVariable(this._parseVariable(!0)))return null;if(this.accept(p.Colon)){if(this.prevToken&&(r.colonPosition=this.prevToken.offset),r.setValue(this._parseDetachedRuleSet()))r.needsSemicolon=!1;else if(!r.setValue(this._parseExpr()))return this.finish(r,x.VariableValueExpected,[],n);r.addChild(this._parsePrio())}else return this.restoreAtMark(i),null;return this.peek(p.SemiColon)&&(r.semicolonPosition=this.token.offset),this.finish(r)},e.prototype._parseDetachedRuleSet=function(){var n=this.mark();if(this.peekDelim("#")||this.peekDelim("."))if(this.consumeToken(),!this.hasWhitespace()&&this.accept(p.ParenthesisL)){var r=this.create(xn);if(r.getParameters().addChild(this._parseMixinParameter()))for(;(this.accept(p.Comma)||this.accept(p.SemiColon))&&!this.peek(p.ParenthesisR);)r.getParameters().addChild(this._parseMixinParameter())||this.markError(r,x.IdentifierExpected,[],[p.ParenthesisR]);if(!this.accept(p.ParenthesisR))return this.restoreAtMark(n),null}else return this.restoreAtMark(n),null;if(!this.peek(p.CurlyL))return null;var i=this.create(oe);return this._parseBody(i,this._parseDetachedRuleSetBody.bind(this)),this.finish(i)},e.prototype._parseDetachedRuleSetBody=function(){return this._tryParseKeyframeSelector()||this._parseRuleSetDeclaration()},e.prototype._addLookupChildren=function(n){if(!n.addChild(this._parseLookupValue()))return!1;for(var r=!1;this.peek(p.BracketL)&&(r=!0),!!n.addChild(this._parseLookupValue());)r=!1;return!r},e.prototype._parseLookupValue=function(){var n=this.create(O),r=this.mark();return this.accept(p.BracketL)?(n.addChild(this._parseVariable(!1,!0))||n.addChild(this._parsePropertyIdentifier()))&&this.accept(p.BracketR)||this.accept(p.BracketR)?n:(this.restoreAtMark(r),null):(this.restoreAtMark(r),null)},e.prototype._parseVariable=function(n,r){n===void 0&&(n=!1),r===void 0&&(r=!1);var i=!n&&this.peekDelim("$");if(!this.peekDelim("@")&&!i&&!this.peek(p.AtKeyword))return null;for(var s=this.create(yi),a=this.mark();this.acceptDelim("@")||!n&&this.acceptDelim("$");)if(this.hasWhitespace())return this.restoreAtMark(a),null;return!this.accept(p.AtKeyword)&&!this.accept(p.Ident)?(this.restoreAtMark(a),null):!r&&this.peek(p.BracketL)&&!this._addLookupChildren(s)?(this.restoreAtMark(a),null):s},e.prototype._parseTermExpression=function(){return this._parseVariable()||this._parseEscaped()||t.prototype._parseTermExpression.call(this)||this._tryParseMixinReference(!1)},e.prototype._parseEscaped=function(){if(this.peek(p.EscapedJavaScript)||this.peek(p.BadEscapedJavaScript)){var n=this.createNode(b.EscapedValue);return this.consumeToken(),this.finish(n)}if(this.peekDelim("~")){var n=this.createNode(b.EscapedValue);return this.consumeToken(),this.accept(p.String)||this.accept(p.EscapedJavaScript)?this.finish(n):this.finish(n,x.TermExpected)}return null},e.prototype._parseOperator=function(){var n=this._parseGuardOperator();return n||t.prototype._parseOperator.call(this)},e.prototype._parseGuardOperator=function(){if(this.peekDelim(">")){var n=this.createNode(b.Operator);return this.consumeToken(),this.acceptDelim("="),n}else if(this.peekDelim("=")){var n=this.createNode(b.Operator);return this.consumeToken(),this.acceptDelim("<"),n}else if(this.peekDelim("<")){var n=this.createNode(b.Operator);return this.consumeToken(),this.acceptDelim("="),n}return null},e.prototype._parseRuleSetDeclaration=function(){return this.peek(p.AtKeyword)?this._parseKeyframe()||this._parseMedia(!0)||this._parseImport()||this._parseSupports(!0)||this._parseDetachedRuleSetMixin()||this._parseVariableDeclaration()||t.prototype._parseRuleSetDeclarationAtStatement.call(this):this._tryParseMixinDeclaration()||this._tryParseRuleset(!0)||this._tryParseMixinReference()||this._parseFunction()||this._parseExtend()||t.prototype._parseRuleSetDeclaration.call(this)},e.prototype._parseKeyframeIdent=function(){return this._parseIdent([Y.Keyframe])||this._parseVariable()},e.prototype._parseKeyframeSelector=function(){return this._parseDetachedRuleSetMixin()||t.prototype._parseKeyframeSelector.call(this)},e.prototype._parseSimpleSelectorBody=function(){return this._parseSelectorCombinator()||t.prototype._parseSimpleSelectorBody.call(this)},e.prototype._parseSelector=function(n){var r=this.create(bn),i=!1;for(n&&(i=r.addChild(this._parseCombinator()));r.addChild(this._parseSimpleSelector());){i=!0;var s=this.mark();if(r.addChild(this._parseGuard())&&this.peek(p.CurlyL))break;this.restoreAtMark(s),r.addChild(this._parseCombinator())}return i?this.finish(r):null},e.prototype._parseSelectorCombinator=function(){if(this.peekDelim("&")){var n=this.createNode(b.SelectorCombinator);for(this.consumeToken();!this.hasWhitespace()&&(this.acceptDelim("-")||this.accept(p.Num)||this.accept(p.Dimension)||n.addChild(this._parseIdent())||this.acceptDelim("&")););return this.finish(n)}return null},e.prototype._parseSelectorIdent=function(){if(!this.peekInterpolatedIdent())return null;var n=this.createNode(b.SelectorInterpolation),r=this._acceptInterpolatedIdent(n);return r?this.finish(n):null},e.prototype._parsePropertyIdentifier=function(n){n===void 0&&(n=!1);var r=/^[\w-]+/;if(!this.peekInterpolatedIdent()&&!this.peekRegExp(this.token.type,r))return null;var i=this.mark(),s=this.create(Ve);s.isCustomProperty=this.acceptDelim("-")&&this.acceptDelim("-");var a=!1;return n?s.isCustomProperty?a=s.addChild(this._parseIdent()):a=s.addChild(this._parseRegexp(r)):s.isCustomProperty?a=this._acceptInterpolatedIdent(s):a=this._acceptInterpolatedIdent(s,r),a?(!n&&!this.hasWhitespace()&&(this.acceptDelim("+"),this.hasWhitespace()||this.acceptIdent("_")),this.finish(s)):(this.restoreAtMark(i),null)},e.prototype.peekInterpolatedIdent=function(){return this.peek(p.Ident)||this.peekDelim("@")||this.peekDelim("$")||this.peekDelim("-")},e.prototype._acceptInterpolatedIdent=function(n,r){for(var i=this,s=!1,a=function(){var l=i.mark();return i.acceptDelim("-")&&(i.hasWhitespace()||i.acceptDelim("-"),i.hasWhitespace())?(i.restoreAtMark(l),null):i._parseInterpolation()},o=r?function(){return i.acceptRegexp(r)}:function(){return i.accept(p.Ident)};(o()||n.addChild(this._parseInterpolation()||this.try(a)))&&(s=!0,!this.hasWhitespace()););return s},e.prototype._parseInterpolation=function(){var n=this.mark();if(this.peekDelim("@")||this.peekDelim("$")){var r=this.createNode(b.Interpolation);return this.consumeToken(),this.hasWhitespace()||!this.accept(p.CurlyL)?(this.restoreAtMark(n),null):r.addChild(this._parseIdent())?this.accept(p.CurlyR)?this.finish(r):this.finish(r,x.RightCurlyExpected):this.finish(r,x.IdentifierExpected)}return null},e.prototype._tryParseMixinDeclaration=function(){var n=this.mark(),r=this.create(xn);if(!r.setIdentifier(this._parseMixinDeclarationIdentifier())||!this.accept(p.ParenthesisL))return this.restoreAtMark(n),null;if(r.getParameters().addChild(this._parseMixinParameter()))for(;(this.accept(p.Comma)||this.accept(p.SemiColon))&&!this.peek(p.ParenthesisR);)r.getParameters().addChild(this._parseMixinParameter())||this.markError(r,x.IdentifierExpected,[],[p.ParenthesisR]);return this.accept(p.ParenthesisR)?(r.setGuard(this._parseGuard()),this.peek(p.CurlyL)?this._parseBody(r,this._parseMixInBodyDeclaration.bind(this)):(this.restoreAtMark(n),null)):(this.restoreAtMark(n),null)},e.prototype._parseMixInBodyDeclaration=function(){return this._parseFontFace()||this._parseRuleSetDeclaration()},e.prototype._parseMixinDeclarationIdentifier=function(){var n;if(this.peekDelim("#")||this.peekDelim(".")){if(n=this.create(Ve),this.consumeToken(),this.hasWhitespace()||!n.addChild(this._parseIdent()))return null}else if(this.peek(p.Hash))n=this.create(Ve),this.consumeToken();else return null;return n.referenceTypes=[Y.Mixin],this.finish(n)},e.prototype._parsePseudo=function(){if(!this.peek(p.Colon))return null;var n=this.mark(),r=this.create(wn);return this.consumeToken(),this.acceptIdent("extend")?this._completeExtends(r):(this.restoreAtMark(n),t.prototype._parsePseudo.call(this))},e.prototype._parseExtend=function(){if(!this.peekDelim("&"))return null;var n=this.mark(),r=this.create(wn);return this.consumeToken(),this.hasWhitespace()||!this.accept(p.Colon)||!this.acceptIdent("extend")?(this.restoreAtMark(n),null):this._completeExtends(r)},e.prototype._completeExtends=function(n){if(!this.accept(p.ParenthesisL))return this.finish(n,x.LeftParenthesisExpected);var r=n.getSelectors();if(!r.addChild(this._parseSelector(!0)))return this.finish(n,x.SelectorExpected);for(;this.accept(p.Comma);)if(!r.addChild(this._parseSelector(!0)))return this.finish(n,x.SelectorExpected);return this.accept(p.ParenthesisR)?this.finish(n):this.finish(n,x.RightParenthesisExpected)},e.prototype._parseDetachedRuleSetMixin=function(){if(!this.peek(p.AtKeyword))return null;var n=this.mark(),r=this.create(Zn);return r.addChild(this._parseVariable(!0))&&(this.hasWhitespace()||!this.accept(p.ParenthesisL))?(this.restoreAtMark(n),null):this.accept(p.ParenthesisR)?this.finish(r):this.finish(r,x.RightParenthesisExpected)},e.prototype._tryParseMixinReference=function(n){n===void 0&&(n=!0);for(var r=this.mark(),i=this.create(Zn),s=this._parseMixinDeclarationIdentifier();s;){this.acceptDelim(">");var a=this._parseMixinDeclarationIdentifier();if(a)i.getNamespaces().addChild(s),s=a;else break}if(!i.setIdentifier(s))return this.restoreAtMark(r),null;var o=!1;if(this.accept(p.ParenthesisL)){if(o=!0,i.getArguments().addChild(this._parseMixinArgument())){for(;(this.accept(p.Comma)||this.accept(p.SemiColon))&&!this.peek(p.ParenthesisR);)if(!i.getArguments().addChild(this._parseMixinArgument()))return this.finish(i,x.ExpressionExpected)}if(!this.accept(p.ParenthesisR))return this.finish(i,x.RightParenthesisExpected);s.referenceTypes=[Y.Mixin]}else s.referenceTypes=[Y.Mixin,Y.Rule];return this.peek(p.BracketL)?n||this._addLookupChildren(i):i.addChild(this._parsePrio()),!o&&!this.peek(p.SemiColon)&&!this.peek(p.CurlyR)&&!this.peek(p.EOF)?(this.restoreAtMark(r),null):this.finish(i)},e.prototype._parseMixinArgument=function(){var n=this.create(Jt),r=this.mark(),i=this._parseVariable();return i&&(this.accept(p.Colon)?n.setIdentifier(i):this.restoreAtMark(r)),n.setValue(this._parseDetachedRuleSet()||this._parseExpr(!0))?this.finish(n):(this.restoreAtMark(r),null)},e.prototype._parseMixinParameter=function(){var n=this.create(Yn);if(this.peekKeyword("@rest")){var r=this.create(O);return this.consumeToken(),this.accept(Zi)?(n.setIdentifier(this.finish(r)),this.finish(n)):this.finish(n,x.DotExpected,[],[p.Comma,p.ParenthesisR])}if(this.peek(Zi)){var i=this.create(O);return this.consumeToken(),n.setIdentifier(this.finish(i)),this.finish(n)}var s=!1;return n.setIdentifier(this._parseVariable())&&(this.accept(p.Colon),s=!0),!n.setDefaultValue(this._parseDetachedRuleSet()||this._parseExpr(!0))&&!s?null:this.finish(n)},e.prototype._parseGuard=function(){if(!this.peekIdent("when"))return null;var n=this.create(Jd);if(this.consumeToken(),n.isNegated=this.acceptIdent("not"),!n.getConditions().addChild(this._parseGuardCondition()))return this.finish(n,x.ConditionExpected);for(;this.acceptIdent("and")||this.accept(p.Comma);)if(!n.getConditions().addChild(this._parseGuardCondition()))return this.finish(n,x.ConditionExpected);return this.finish(n)},e.prototype._parseGuardCondition=function(){if(!this.peek(p.ParenthesisL))return null;var n=this.create(Xd);return this.consumeToken(),n.addChild(this._parseExpr()),this.accept(p.ParenthesisR)?this.finish(n):this.finish(n,x.RightParenthesisExpected)},e.prototype._parseFunction=function(){var n=this.mark(),r=this.create(vn);if(!r.setIdentifier(this._parseFunctionIdentifier()))return null;if(this.hasWhitespace()||!this.accept(p.ParenthesisL))return this.restoreAtMark(n),null;if(r.getArguments().addChild(this._parseMixinArgument())){for(;(this.accept(p.Comma)||this.accept(p.SemiColon))&&!this.peek(p.ParenthesisR);)if(!r.getArguments().addChild(this._parseMixinArgument()))return this.finish(r,x.ExpressionExpected)}return this.accept(p.ParenthesisR)?this.finish(r):this.finish(r,x.RightParenthesisExpected)},e.prototype._parseFunctionIdentifier=function(){if(this.peekDelim("%")){var n=this.create(Ve);return n.referenceTypes=[Y.Function],this.consumeToken(),this.finish(n)}return t.prototype._parseFunctionIdentifier.call(this)},e.prototype._parseURLArgument=function(){var n=this.mark(),r=t.prototype._parseURLArgument.call(this);if(!r||!this.peek(p.ParenthesisR)){this.restoreAtMark(n);var i=this.create(O);return i.addChild(this._parseBinaryExpr()),this.finish(i)}return r},e}(Di),bp=function(){var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,i){r.__proto__=i}||function(r,i){for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=i[s])},t(e,n)};return function(e,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(e,n);function r(){this.constructor=e}e.prototype=n===null?Object.create(n):(r.prototype=n.prototype,new r)}}(),j=Ye(),vp=function(t){bp(e,t);function e(n,r){return t.call(this,"@",n,r)||this}return e.prototype.createFunctionProposals=function(n,r,i,s){for(var a=0,o=n;a 50%"),example:"percentage(@number);",type:"percentage"},{name:"round",description:j("less.builtin.round","rounds a number to a number of places"),example:"round(number, [places: 0]);"},{name:"sqrt",description:j("less.builtin.sqrt","calculates square root of a number"),example:"sqrt(number);"},{name:"sin",description:j("less.builtin.sin","sine function"),example:"sin(number);"},{name:"tan",description:j("less.builtin.tan","tangent function"),example:"tan(number);"},{name:"atan",description:j("less.builtin.atan","arctangent - inverse of tangent function"),example:"atan(number);"},{name:"pi",description:j("less.builtin.pi","returns pi"),example:"pi();"},{name:"pow",description:j("less.builtin.pow","first argument raised to the power of the second argument"),example:"pow(@base, @exponent);"},{name:"mod",description:j("less.builtin.mod","first argument modulus second argument"),example:"mod(number, number);"},{name:"min",description:j("less.builtin.min","returns the lowest of one or more values"),example:"min(@x, @y);"},{name:"max",description:j("less.builtin.max","returns the lowest of one or more values"),example:"max(@x, @y);"}],e.colorProposals=[{name:"argb",example:"argb(@color);",description:j("less.builtin.argb","creates a #AARRGGBB")},{name:"hsl",example:"hsl(@hue, @saturation, @lightness);",description:j("less.builtin.hsl","creates a color")},{name:"hsla",example:"hsla(@hue, @saturation, @lightness, @alpha);",description:j("less.builtin.hsla","creates a color")},{name:"hsv",example:"hsv(@hue, @saturation, @value);",description:j("less.builtin.hsv","creates a color")},{name:"hsva",example:"hsva(@hue, @saturation, @value, @alpha);",description:j("less.builtin.hsva","creates a color")},{name:"hue",example:"hue(@color);",description:j("less.builtin.hue","returns the `hue` channel of `@color` in the HSL space")},{name:"saturation",example:"saturation(@color);",description:j("less.builtin.saturation","returns the `saturation` channel of `@color` in the HSL space")},{name:"lightness",example:"lightness(@color);",description:j("less.builtin.lightness","returns the `lightness` channel of `@color` in the HSL space")},{name:"hsvhue",example:"hsvhue(@color);",description:j("less.builtin.hsvhue","returns the `hue` channel of `@color` in the HSV space")},{name:"hsvsaturation",example:"hsvsaturation(@color);",description:j("less.builtin.hsvsaturation","returns the `saturation` channel of `@color` in the HSV space")},{name:"hsvvalue",example:"hsvvalue(@color);",description:j("less.builtin.hsvvalue","returns the `value` channel of `@color` in the HSV space")},{name:"red",example:"red(@color);",description:j("less.builtin.red","returns the `red` channel of `@color`")},{name:"green",example:"green(@color);",description:j("less.builtin.green","returns the `green` channel of `@color`")},{name:"blue",example:"blue(@color);",description:j("less.builtin.blue","returns the `blue` channel of `@color`")},{name:"alpha",example:"alpha(@color);",description:j("less.builtin.alpha","returns the `alpha` channel of `@color`")},{name:"luma",example:"luma(@color);",description:j("less.builtin.luma","returns the `luma` value (perceptual brightness) of `@color`")},{name:"saturate",example:"saturate(@color, 10%);",description:j("less.builtin.saturate","return `@color` 10% points more saturated")},{name:"desaturate",example:"desaturate(@color, 10%);",description:j("less.builtin.desaturate","return `@color` 10% points less saturated")},{name:"lighten",example:"lighten(@color, 10%);",description:j("less.builtin.lighten","return `@color` 10% points lighter")},{name:"darken",example:"darken(@color, 10%);",description:j("less.builtin.darken","return `@color` 10% points darker")},{name:"fadein",example:"fadein(@color, 10%);",description:j("less.builtin.fadein","return `@color` 10% points less transparent")},{name:"fadeout",example:"fadeout(@color, 10%);",description:j("less.builtin.fadeout","return `@color` 10% points more transparent")},{name:"fade",example:"fade(@color, 50%);",description:j("less.builtin.fade","return `@color` with 50% transparency")},{name:"spin",example:"spin(@color, 10);",description:j("less.builtin.spin","return `@color` with a 10 degree larger in hue")},{name:"mix",example:"mix(@color1, @color2, [@weight: 50%]);",description:j("less.builtin.mix","return a mix of `@color1` and `@color2`")},{name:"greyscale",example:"greyscale(@color);",description:j("less.builtin.greyscale","returns a grey, 100% desaturated color")},{name:"contrast",example:"contrast(@color1, [@darkcolor: black], [@lightcolor: white], [@threshold: 43%]);",description:j("less.builtin.contrast","return `@darkcolor` if `@color1 is> 43% luma` otherwise return `@lightcolor`, see notes")},{name:"multiply",example:"multiply(@color1, @color2);"},{name:"screen",example:"screen(@color1, @color2);"},{name:"overlay",example:"overlay(@color1, @color2);"},{name:"softlight",example:"softlight(@color1, @color2);"},{name:"hardlight",example:"hardlight(@color1, @color2);"},{name:"difference",example:"difference(@color1, @color2);"},{name:"exclusion",example:"exclusion(@color1, @color2);"},{name:"average",example:"average(@color1, @color2);"},{name:"negation",example:"negation(@color1, @color2);"}],e}(Li);function yp(t,e){var n=wp(t);return xp(n,e)}function wp(t){function e(u){return t.positionAt(u.offset).line}function n(u){return t.positionAt(u.offset+u.len).line}function r(){switch(t.languageId){case"scss":return new jl;case"less":return new $l;default:return new gn}}function i(u,f){var m=e(u),g=n(u);return m!==g?{startLine:m,endLine:g,kind:f}:null}var s=[],a=[],o=r();o.ignoreComment=!1,o.setSource(t.getText());for(var l=o.scan(),c=null,h=function(){switch(l.type){case p.CurlyL:case br:{a.push({line:e(l),type:"brace",isStart:!0});break}case p.CurlyR:{if(a.length!==0){var u=Hl(a,"brace");if(!u)break;var f=n(l);u.type==="brace"&&(c&&n(c)!==f&&f--,u.line!==f&&s.push({startLine:u.line,endLine:f,kind:void 0}))}break}case p.Comment:{var m=function(w){return w==="#region"?{line:e(l),type:"comment",isStart:!0}:{line:n(l),type:"comment",isStart:!1}},g=function(w){var S=w.text.match(/^\s*\/\*\s*(#region|#endregion)\b\s*(.*?)\s*\*\//);if(S)return m(S[1]);if(t.languageId==="scss"||t.languageId==="less"){var C=w.text.match(/^\s*\/\/\s*(#region|#endregion)\b\s*(.*?)\s*/);if(C)return m(C[1])}return null},v=g(l);if(v)if(v.isStart)a.push(v);else{var u=Hl(a,"comment");if(!u)break;u.type==="comment"&&u.line!==v.line&&s.push({startLine:u.line,endLine:v.line,kind:"region"})}else{var y=i(l,"comment");y&&s.push(y)}break}}c=l,l=o.scan()};l.type!==p.EOF;)h();return s}function Hl(t,e){if(t.length===0)return null;for(var n=t.length-1;n>=0;n--)if(t[n].type===e&&t[n].isStart)return t.splice(n,1)[0];return null}function xp(t,e){var n=e&&e.rangeLimit||Number.MAX_VALUE,r=t.sort(function(a,o){var l=a.startLine-o.startLine;return l===0&&(l=a.endLine-o.endLine),l}),i=[],s=-1;return r.forEach(function(a){a.startLine=0;c--)if(this.__items[c].match(l))return!0;return!1},s.prototype.set_indent=function(l,c){this.is_empty()&&(this.__indent_count=l||0,this.__alignment_count=c||0,this.__character_count=this.__parent.get_indent_size(this.__indent_count,this.__alignment_count))},s.prototype._set_wrap_point=function(){this.__parent.wrap_line_length&&(this.__wrap_point_index=this.__items.length,this.__wrap_point_character_count=this.__character_count,this.__wrap_point_indent_count=this.__parent.next_line.__indent_count,this.__wrap_point_alignment_count=this.__parent.next_line.__alignment_count)},s.prototype._should_wrap=function(){return this.__wrap_point_index&&this.__character_count>this.__parent.wrap_line_length&&this.__wrap_point_character_count>this.__parent.next_line.__character_count},s.prototype._allow_wrap=function(){if(this._should_wrap()){this.__parent.add_new_line();var l=this.__parent.current_line;return l.set_indent(this.__wrap_point_indent_count,this.__wrap_point_alignment_count),l.__items=this.__items.slice(this.__wrap_point_index),this.__items=this.__items.slice(0,this.__wrap_point_index),l.__character_count+=this.__character_count-this.__wrap_point_character_count,this.__character_count=this.__wrap_point_character_count,l.__items[0]===" "&&(l.__items.splice(0,1),l.__character_count-=1),!0}return!1},s.prototype.is_empty=function(){return this.__items.length===0},s.prototype.last=function(){return this.is_empty()?null:this.__items[this.__items.length-1]},s.prototype.push=function(l){this.__items.push(l);var c=l.lastIndexOf(` +`);c!==-1?this.__character_count=l.length-c:this.__character_count+=l.length},s.prototype.pop=function(){var l=null;return this.is_empty()||(l=this.__items.pop(),this.__character_count-=l.length),l},s.prototype._remove_indent=function(){this.__indent_count>0&&(this.__indent_count-=1,this.__character_count-=this.__parent.indent_size)},s.prototype._remove_wrap_indent=function(){this.__wrap_point_indent_count>0&&(this.__wrap_point_indent_count-=1)},s.prototype.trim=function(){for(;this.last()===" ";)this.__items.pop(),this.__character_count-=1},s.prototype.toString=function(){var l="";return this.is_empty()?this.__parent.indent_empty_lines&&(l=this.__parent.get_indent_string(this.__indent_count)):(l=this.__parent.get_indent_string(this.__indent_count,this.__alignment_count),l+=this.__items.join("")),l};function a(l,c){this.__cache=[""],this.__indent_size=l.indent_size,this.__indent_string=l.indent_char,l.indent_with_tabs||(this.__indent_string=new Array(l.indent_size+1).join(l.indent_char)),c=c||"",l.indent_level>0&&(c=new Array(l.indent_level+1).join(this.__indent_string)),this.__base_string=c,this.__base_string_length=c.length}a.prototype.get_indent_size=function(l,c){var h=this.__base_string_length;return c=c||0,l<0&&(h=0),h+=l*this.__indent_size,h+=c,h},a.prototype.get_indent_string=function(l,c){var h=this.__base_string;return c=c||0,l<0&&(l=0,h=""),c+=l*this.__indent_size,this.__ensure_cache(c),h+=this.__cache[c],h},a.prototype.__ensure_cache=function(l){for(;l>=this.__cache.length;)this.__add_column()},a.prototype.__add_column=function(){var l=this.__cache.length,c=0,h="";this.__indent_size&&l>=this.__indent_size&&(c=Math.floor(l/this.__indent_size),l-=c*this.__indent_size,h=new Array(c+1).join(this.__indent_string)),l&&(h+=new Array(l+1).join(" ")),this.__cache.push(h)};function o(l,c){this.__indent_cache=new a(l,c),this.raw=!1,this._end_with_newline=l.end_with_newline,this.indent_size=l.indent_size,this.wrap_line_length=l.wrap_line_length,this.indent_empty_lines=l.indent_empty_lines,this.__lines=[],this.previous_line=null,this.current_line=null,this.next_line=new s(this),this.space_before_token=!1,this.non_breaking_space=!1,this.previous_token_wrapped=!1,this.__add_outputline()}o.prototype.__add_outputline=function(){this.previous_line=this.current_line,this.current_line=this.next_line.clone_empty(),this.__lines.push(this.current_line)},o.prototype.get_line_number=function(){return this.__lines.length},o.prototype.get_indent_string=function(l,c){return this.__indent_cache.get_indent_string(l,c)},o.prototype.get_indent_size=function(l,c){return this.__indent_cache.get_indent_size(l,c)},o.prototype.is_empty=function(){return!this.previous_line&&this.current_line.is_empty()},o.prototype.add_new_line=function(l){return this.is_empty()||!l&&this.just_added_newline()?!1:(this.raw||this.__add_outputline(),!0)},o.prototype.get_code=function(l){this.trim(!0);var c=this.current_line.pop();c&&(c[c.length-1]===` +`&&(c=c.replace(/\n+$/g,"")),this.current_line.push(c)),this._end_with_newline&&this.__add_outputline();var h=this.__lines.join(` +`);return l!==` +`&&(h=h.replace(/[\n]/g,l)),h},o.prototype.set_wrap_point=function(){this.current_line._set_wrap_point()},o.prototype.set_indent=function(l,c){return l=l||0,c=c||0,this.next_line.set_indent(l,c),this.__lines.length>1?(this.current_line.set_indent(l,c),!0):(this.current_line.set_indent(),!1)},o.prototype.add_raw_token=function(l){for(var c=0;c1&&this.current_line.is_empty();)this.__lines.pop(),this.current_line=this.__lines[this.__lines.length-1],this.current_line.trim();this.previous_line=this.__lines.length>1?this.__lines[this.__lines.length-2]:null},o.prototype.just_added_newline=function(){return this.current_line.is_empty()},o.prototype.just_added_blankline=function(){return this.is_empty()||this.current_line.is_empty()&&this.previous_line.is_empty()},o.prototype.ensure_empty_line_above=function(l,c){for(var h=this.__lines.length-2;h>=0;){var u=this.__lines[h];if(u.is_empty())break;if(u.item(0).indexOf(l)!==0&&u.item(-1)!==c){this.__lines.splice(h+1,0,new s(this)),this.previous_line=this.__lines[this.__lines.length-2];break}h--}},i.exports.Output=o},,,,function(i){function s(l,c){this.raw_options=a(l,c),this.disabled=this._get_boolean("disabled"),this.eol=this._get_characters("eol","auto"),this.end_with_newline=this._get_boolean("end_with_newline"),this.indent_size=this._get_number("indent_size",4),this.indent_char=this._get_characters("indent_char"," "),this.indent_level=this._get_number("indent_level"),this.preserve_newlines=this._get_boolean("preserve_newlines",!0),this.max_preserve_newlines=this._get_number("max_preserve_newlines",32786),this.preserve_newlines||(this.max_preserve_newlines=0),this.indent_with_tabs=this._get_boolean("indent_with_tabs",this.indent_char===" "),this.indent_with_tabs&&(this.indent_char=" ",this.indent_size===1&&(this.indent_size=4)),this.wrap_line_length=this._get_number("wrap_line_length",this._get_number("max_char")),this.indent_empty_lines=this._get_boolean("indent_empty_lines"),this.templating=this._get_selection_list("templating",["auto","none","django","erb","handlebars","php","smarty"],["auto"])}s.prototype._get_array=function(l,c){var h=this.raw_options[l],u=c||[];return typeof h=="object"?h!==null&&typeof h.concat=="function"&&(u=h.concat()):typeof h=="string"&&(u=h.split(/[^a-zA-Z0-9_\/\-]+/)),u},s.prototype._get_boolean=function(l,c){var h=this.raw_options[l],u=h===void 0?!!c:!!h;return u},s.prototype._get_characters=function(l,c){var h=this.raw_options[l],u=c||"";return typeof h=="string"&&(u=h.replace(/\\r/,"\r").replace(/\\n/,` +`).replace(/\\t/," ")),u},s.prototype._get_number=function(l,c){var h=this.raw_options[l];c=parseInt(c,10),isNaN(c)&&(c=0);var u=parseInt(h,10);return isNaN(u)&&(u=c),u},s.prototype._get_selection=function(l,c,h){var u=this._get_selection_list(l,c,h);if(u.length!==1)throw new Error("Invalid Option Value: The option '"+l+`' can only be one of the following values: +`+c+` +You passed in: '`+this.raw_options[l]+"'");return u[0]},s.prototype._get_selection_list=function(l,c,h){if(!c||c.length===0)throw new Error("Selection list cannot be empty.");if(h=h||[c[0]],!this._is_valid_selection(h,c))throw new Error("Invalid Default Value!");var u=this._get_array(l,h);if(!this._is_valid_selection(u,c))throw new Error("Invalid Option Value: The option '"+l+`' can contain only the following values: +`+c+` +You passed in: '`+this.raw_options[l]+"'");return u},s.prototype._is_valid_selection=function(l,c){return l.length&&c.length&&!l.some(function(h){return c.indexOf(h)===-1})};function a(l,c){var h={};l=o(l);var u;for(u in l)u!==c&&(h[u]=l[u]);if(c&&l[c])for(u in l[c])h[u]=l[c][u];return h}function o(l){var c={},h;for(h in l){var u=h.replace(/-/g,"_");c[u]=l[h]}return c}i.exports.Options=s,i.exports.normalizeOpts=o,i.exports.mergeOpts=a},,function(i){var s=RegExp.prototype.hasOwnProperty("sticky");function a(o){this.__input=o||"",this.__input_length=this.__input.length,this.__position=0}a.prototype.restart=function(){this.__position=0},a.prototype.back=function(){this.__position>0&&(this.__position-=1)},a.prototype.hasNext=function(){return this.__position=0&&o=0&&l=o.length&&this.__input.substring(l-o.length,l).toLowerCase()===o},i.exports.InputScanner=a},,,,,function(i){function s(a,o){a=typeof a=="string"?a:a.source,o=typeof o=="string"?o:o.source,this.__directives_block_pattern=new RegExp(a+/ beautify( \w+[:]\w+)+ /.source+o,"g"),this.__directive_pattern=/ (\w+)[:](\w+)/g,this.__directives_end_ignore_pattern=new RegExp(a+/\sbeautify\signore:end\s/.source+o,"g")}s.prototype.get_directives=function(a){if(!a.match(this.__directives_block_pattern))return null;var o={};this.__directive_pattern.lastIndex=0;for(var l=this.__directive_pattern.exec(a);l;)o[l[1]]=l[2],l=this.__directive_pattern.exec(a);return o},s.prototype.readIgnored=function(a){return a.readUntilAfter(this.__directives_end_ignore_pattern)},i.exports.Directives=s},,function(i,s,a){var o=a(16).Beautifier,l=a(17).Options;function c(h,u){var f=new o(h,u);return f.beautify()}i.exports=c,i.exports.defaultOptions=function(){return new l}},function(i,s,a){var o=a(17).Options,l=a(2).Output,c=a(8).InputScanner,h=a(13).Directives,u=new h(/\/\*/,/\*\//),f=/\r\n|[\r\n]/,m=/\r\n|[\r\n]/g,g=/\s/,v=/(?:\s|\n)+/g,y=/\/\*(?:[\s\S]*?)((?:\*\/)|$)/g,w=/\/\/(?:[^\n\r\u2028\u2029]*)/g;function S(C,I){this._source_text=C||"",this._options=new o(I),this._ch=null,this._input=null,this.NESTED_AT_RULE={"@page":!0,"@font-face":!0,"@keyframes":!0,"@media":!0,"@supports":!0,"@document":!0},this.CONDITIONAL_GROUP_RULE={"@media":!0,"@supports":!0,"@document":!0}}S.prototype.eatString=function(C){var I="";for(this._ch=this._input.next();this._ch;){if(I+=this._ch,this._ch==="\\")I+=this._input.next();else if(C.indexOf(this._ch)!==-1||this._ch===` +`)break;this._ch=this._input.next()}return I},S.prototype.eatWhitespace=function(C){for(var I=g.test(this._input.peek()),M=0;g.test(this._input.peek());)this._ch=this._input.next(),C&&this._ch===` +`&&(M===0||M0&&this._indentLevel--},S.prototype.beautify=function(){if(this._options.disabled)return this._source_text;var C=this._source_text,I=this._options.eol;I==="auto"&&(I=` +`,C&&f.test(C||"")&&(I=C.match(f)[0])),C=C.replace(m,` +`);var M=C.match(/^[\t ]*/)[0];this._output=new l(this._options,M),this._input=new c(C),this._indentLevel=0,this._nestedLevel=0,this._ch=null;for(var U=0,q=!1,W=!1,N=!1,F=!1,R=!1,E=this._ch,L,B,K;L=this._input.read(v),B=L!=="",K=E,this._ch=this._input.next(),this._ch==="\\"&&this._input.hasNext()&&(this._ch+=this._input.next()),E=this._ch,this._ch;)if(this._ch==="/"&&this._input.peek()==="*"){this._output.add_new_line(),this._input.back();var se=this._input.read(y),D=u.get_directives(se);D&&D.ignore==="start"&&(se+=u.readIgnored(this._input)),this.print_string(se),this.eatWhitespace(!0),this._output.add_new_line()}else if(this._ch==="/"&&this._input.peek()==="/")this._output.space_before_token=!0,this._input.back(),this.print_string(this._input.read(w)),this.eatWhitespace(!0);else if(this._ch==="@")if(this.preserveSingleSpace(B),this._input.peek()==="{")this.print_string(this._ch+this.eatString("}"));else{this.print_string(this._ch);var _=this._input.peekUntilAfter(/[: ,;{}()[\]\/='"]/g);_.match(/[ :]$/)&&(_=this.eatString(": ").replace(/\s$/,""),this.print_string(_),this._output.space_before_token=!0),_=_.replace(/\s$/,""),_==="extend"?F=!0:_==="import"&&(R=!0),_ in this.NESTED_AT_RULE?(this._nestedLevel+=1,_ in this.CONDITIONAL_GROUP_RULE&&(N=!0)):!q&&U===0&&_.indexOf(":")!==-1&&(W=!0,this.indent())}else this._ch==="#"&&this._input.peek()==="{"?(this.preserveSingleSpace(B),this.print_string(this._ch+this.eatString("}"))):this._ch==="{"?(W&&(W=!1,this.outdent()),N?(N=!1,q=this._indentLevel>=this._nestedLevel):q=this._indentLevel>=this._nestedLevel-1,this._options.newline_between_rules&&q&&this._output.previous_line&&this._output.previous_line.item(-1)!=="{"&&this._output.ensure_empty_line_above("/",","),this._output.space_before_token=!0,this._options.brace_style==="expand"?(this._output.add_new_line(),this.print_string(this._ch),this.indent(),this._output.set_indent(this._indentLevel)):(this.indent(),this.print_string(this._ch)),this.eatWhitespace(!0),this._output.add_new_line()):this._ch==="}"?(this.outdent(),this._output.add_new_line(),K==="{"&&this._output.trim(!0),R=!1,F=!1,W&&(this.outdent(),W=!1),this.print_string(this._ch),q=!1,this._nestedLevel&&this._nestedLevel--,this.eatWhitespace(!0),this._output.add_new_line(),this._options.newline_between_rules&&!this._output.just_added_blankline()&&this._input.peek()!=="}"&&this._output.add_new_line(!0)):this._ch===":"?(q||N)&&!(this._input.lookBack("&")||this.foundNestedPseudoClass())&&!this._input.lookBack("(")&&!F&&U===0?(this.print_string(":"),W||(W=!0,this._output.space_before_token=!0,this.eatWhitespace(!0),this.indent())):(this._input.lookBack(" ")&&(this._output.space_before_token=!0),this._input.peek()===":"?(this._ch=this._input.next(),this.print_string("::")):this.print_string(":")):this._ch==='"'||this._ch==="'"?(this.preserveSingleSpace(B),this.print_string(this._ch+this.eatString(this._ch)),this.eatWhitespace(!0)):this._ch===";"?U===0?(W&&(this.outdent(),W=!1),F=!1,R=!1,this.print_string(this._ch),this.eatWhitespace(!0),this._input.peek()!=="/"&&this._output.add_new_line()):(this.print_string(this._ch),this.eatWhitespace(!0),this._output.space_before_token=!0):this._ch==="("?this._input.lookBack("url")?(this.print_string(this._ch),this.eatWhitespace(),U++,this.indent(),this._ch=this._input.next(),this._ch===")"||this._ch==='"'||this._ch==="'"?this._input.back():this._ch&&(this.print_string(this._ch+this.eatString(")")),U&&(U--,this.outdent()))):(this.preserveSingleSpace(B),this.print_string(this._ch),this.eatWhitespace(),U++,this.indent()):this._ch===")"?(U&&(U--,this.outdent()),this.print_string(this._ch)):this._ch===","?(this.print_string(this._ch),this.eatWhitespace(!0),this._options.selector_separator_newline&&!W&&U===0&&!R&&!F?this._output.add_new_line():this._output.space_before_token=!0):(this._ch===">"||this._ch==="+"||this._ch==="~")&&!W&&U===0?this._options.space_around_combinator?(this._output.space_before_token=!0,this.print_string(this._ch),this._output.space_before_token=!0):(this.print_string(this._ch),this.eatWhitespace(),this._ch&&g.test(this._ch)&&(this._ch="")):this._ch==="]"?this.print_string(this._ch):this._ch==="["?(this.preserveSingleSpace(B),this.print_string(this._ch)):this._ch==="="?(this.eatWhitespace(),this.print_string("="),g.test(this._ch)&&(this._ch="")):this._ch==="!"&&!this._input.lookBack("\\")?(this.print_string(" "),this.print_string(this._ch)):(this.preserveSingleSpace(B),this.print_string(this._ch));var A=this._output.get_code(I);return A},i.exports.Beautifier=S},function(i,s,a){var o=a(6).Options;function l(c){o.call(this,c,"css"),this.selector_separator_newline=this._get_boolean("selector_separator_newline",!0),this.newline_between_rules=this._get_boolean("newline_between_rules",!0);var h=this._get_boolean("space_around_selector_separator");this.space_around_combinator=this._get_boolean("space_around_combinator")||h;var u=this._get_selection_list("brace_style",["collapse","expand","end-expand","none","preserve-inline"]);this.brace_style="collapse";for(var f=0;f0&&Yl(r,c-1);)c--;c===0||Xl(r,c-1)?l=c:c0){var v=n.insertSpaces?co(" ",o*s):co(" ",s);g=g.split(` +`).join(` +`+v),e.start.character===0&&(g=v+g)}return[{range:e,newText:g}]}function Jl(t){return t.replace(/^\s+/,"")}var Cp="{".charCodeAt(0),kp="}".charCodeAt(0);function Ep(t,e){for(;e>=0;){var n=t.charCodeAt(e);if(n===Cp)return!0;if(n===kp)return!1;e--}return!1}function ht(t,e,n){if(t&&t.hasOwnProperty(e)){var r=t[e];if(r!==null)return r}return n}function Rp(t,e,n){for(var r=e,i=0,s=n.tabSize||4;r && ]#",relevance:50,description:"@counter-style descriptor. Specifies the symbols used by the marker-construction algorithm specified by the system descriptor. Needs to be specified if the counter system is 'additive'.",restrictions:["integer","string","image","identifier"]},{name:"align-content",values:[{name:"center",description:"Lines are packed toward the center of the flex container."},{name:"flex-end",description:"Lines are packed toward the end of the flex container."},{name:"flex-start",description:"Lines are packed toward the start of the flex container."},{name:"space-around",description:"Lines are evenly distributed in the flex container, with half-size spaces on either end."},{name:"space-between",description:"Lines are evenly distributed in the flex container."},{name:"stretch",description:"Lines stretch to take up the remaining space."}],syntax:"normal | | | ? ",relevance:62,description:"Aligns a flex container’s lines within the flex container when there is extra space in the cross-axis, similar to how 'justify-content' aligns individual items within the main-axis.",restrictions:["enum"]},{name:"align-items",values:[{name:"baseline",description:"If the flex item’s inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment."},{name:"center",description:"The flex item’s margin box is centered in the cross axis within the line."},{name:"flex-end",description:"The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line."},{name:"flex-start",description:"The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line."},{name:"stretch",description:"If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."}],syntax:"normal | stretch | | [ ? ]",relevance:85,description:"Aligns flex items along the cross axis of the current line of the flex container.",restrictions:["enum"]},{name:"justify-items",values:[{name:"auto"},{name:"normal"},{name:"end"},{name:"start"},{name:"flex-end",description:'"Flex items are packed toward the end of the line."'},{name:"flex-start",description:'"Flex items are packed toward the start of the line."'},{name:"self-end",description:"The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis."},{name:"self-start",description:"The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.."},{name:"center",description:"The items are packed flush to each other toward the center of the of the alignment container."},{name:"left"},{name:"right"},{name:"baseline"},{name:"first baseline"},{name:"last baseline"},{name:"stretch",description:"If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."},{name:"save"},{name:"unsave"},{name:"legacy"}],syntax:"normal | stretch | | ? [ | left | right ] | legacy | legacy && [ left | right | center ]",relevance:53,description:"Defines the default justify-self for all items of the box, giving them the default way of justifying each box along the appropriate axis",restrictions:["enum"]},{name:"justify-self",values:[{name:"auto"},{name:"normal"},{name:"end"},{name:"start"},{name:"flex-end",description:'"Flex items are packed toward the end of the line."'},{name:"flex-start",description:'"Flex items are packed toward the start of the line."'},{name:"self-end",description:"The item is packed flush to the edge of the alignment container of the end side of the item, in the appropriate axis."},{name:"self-start",description:"The item is packed flush to the edge of the alignment container of the start side of the item, in the appropriate axis.."},{name:"center",description:"The items are packed flush to each other toward the center of the of the alignment container."},{name:"left"},{name:"right"},{name:"baseline"},{name:"first baseline"},{name:"last baseline"},{name:"stretch",description:"If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."},{name:"save"},{name:"unsave"}],syntax:"auto | normal | stretch | | ? [ | left | right ]",relevance:53,description:"Defines the way of justifying a box inside its container along the appropriate axis.",restrictions:["enum"]},{name:"align-self",values:[{name:"auto",description:"Computes to the value of 'align-items' on the element’s parent, or 'stretch' if the element has no parent. On absolutely positioned elements, it computes to itself."},{name:"baseline",description:"If the flex item’s inline axis is the same as the cross axis, this value is identical to 'flex-start'. Otherwise, it participates in baseline alignment."},{name:"center",description:"The flex item’s margin box is centered in the cross axis within the line."},{name:"flex-end",description:"The cross-end margin edge of the flex item is placed flush with the cross-end edge of the line."},{name:"flex-start",description:"The cross-start margin edge of the flex item is placed flush with the cross-start edge of the line."},{name:"stretch",description:"If the cross size property of the flex item computes to auto, and neither of the cross-axis margins are auto, the flex item is stretched."}],syntax:"auto | normal | stretch | | ? ",relevance:72,description:"Allows the default alignment along the cross axis to be overridden for individual flex items.",restrictions:["enum"]},{name:"all",browsers:["E79","FF27","S9.1","C37","O24"],values:[],syntax:"initial | inherit | unset | revert",relevance:53,references:[{name:"MDN Reference",url:"https://developer.mozilla.org/docs/Web/CSS/all"}],description:"Shorthand that resets all properties except 'direction' and 'unicode-bidi'.",restrictions:["enum"]},{name:"alt",browsers:["S9"],values:[],relevance:50,references:[{name:"MDN Reference",url:"https://developer.mozilla.org/docs/Web/CSS/alt"}],description:"Provides alternative text for assistive technology to replace the generated content of a ::before or ::after element.",restrictions:["string","enum"]},{name:"animation",values:[{name:"alternate",description:"The animation cycle iterations that are odd counts are played in the normal direction, and the animation cycle iterations that are even counts are played in a reverse direction."},{name:"alternate-reverse",description:"The animation cycle iterations that are odd counts are played in the reverse direction, and the animation cycle iterations that are even counts are played in a normal direction."},{name:"backwards",description:"The beginning property value (as defined in the first @keyframes at-rule) is applied before the animation is displayed, during the period defined by 'animation-delay'."},{name:"both",description:"Both forwards and backwards fill modes are applied."},{name:"forwards",description:"The final property value (as defined in the last @keyframes at-rule) is maintained after the animation completes."},{name:"infinite",description:"Causes the animation to repeat forever."},{name:"none",description:"No animation is performed"},{name:"normal",description:"Normal playback."},{name:"reverse",description:"All iterations of the animation are played in the reverse direction from the way they were specified."}],syntax:"#",relevance:82,references:[{name:"MDN Reference",url:"https://developer.mozilla.org/docs/Web/CSS/animation"}],description:"Shorthand property combines six of the animation properties into a single property.",restrictions:["time","timing-function","enum","identifier","number"]},{name:"animation-delay",syntax:"